/* The Modal (background) */
.modal 
{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  /*padding-top: 70px;  Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  z-index:100;
}
/* Modal Content */
.modalContent
{
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding-top:0;  
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
.modalTitle
{				
	color: white; 
	font-family: 'times new roman'; 
	font-size: 140%;
}
.modalHeader 
{
	padding: 10px;
	background-color:#5cb85c;/* #5cb85c*/
	color: white;
	font-weight:bold;
}

.modalBody 
{				
	height:88%;
	margin-left: auto;
	margin-right: auto;
	padding-top:15px;
}
.modalFooter 
{
	padding: 0px;
	background-color:#5cb85c;/* #5cb85c*/
	color: white;
	font-weight:bold;	
	font-size: 120%;
}
/* The Close Button */
.close 
{
	color: red;
	float: right;
	font-size: 32px;
	font-weight: bold;
	margin-top:-5px;
}

.close:hover
{
  color: #922B21;
  cursor: pointer;
}