body {font-family: Arial, Helvetica, sans-serif;}

body {
	font-family: Arial, Helvetica, sans-serif;
}

#headDIV {
	height:50px;
	background-color:#FFFFFF;
	text-shadow: 5px 5px 10px rgb(77, 74, 74);
}

.navbar {
	overflow: hidden;
	background-color: #1a037e;
}

.navbar a {
	float: left;
	font-size: 16px;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.navbar a:hover {
	background-color: rgb(74, 13, 243);
	float: left;
	font-size: 16px;
	color: white;
	text-align: center;        
	padding: 14px 16px;
	text-decoration: none;
	border: none;
}

.dropdown {
	float: left;
	overflow: hidden;
}

.dropdown .dropbtn {
	font-size: 16px;  
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

.dropdown:hover .dropbtn {
background-color: rgb(74, 13, 243);
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: rgb(74, 13, 243);
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	float: none;
	color: white;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: rgb(121, 77, 241);
}

.dropdown:hover .dropdown-content {
	display: block;
}

.right {
	position: absolute;
	right: 0px;        
	border: none;
	height:30px;
}
#form {
	background-color: #FFF;
	height: 600px;
	width: 600px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	padding: 0px;
	text-align:center;
}
label {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	color: #333;
	height: 20px;
	width: 200px;
	margin-top: 10px;
	margin-left: 10px;
	text-align: right;
	clear: both;
	float:left;
	margin-right:15px;
}
input {
	height: 20px;
	width: 300px;
	border: 1px solid #000;
	margin-top: 10px;
	float: left;
}
input[type=button] {
	float:none;
}
select {
	height: 20px;
	width: 300px;
	border: 1px solid #000;
	margin-top: 10px;
	float: left;
}

/* Full-width input fields */
/* input[type=text], input[type=password] {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
} */

/* Set a style for all buttons */
button {
	background-color: #04AA6D;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;
}

button:hover {
	opacity: 0.8;
}

/* Extra styles for the cancel button */
.okbtn {
	width: auto;
	padding: 10px 18px;
	background-color: #04AA6D;
}

.cancelbtn {
	width: auto;
	padding: 10px 18px;
	background-color: #f44336;
}

/* Center the image and position the close button */
.imgcontainer {
	text-align: center;
	margin: 24px 0 12px 0;
	position: relative;
}

img.avatar {
	width: 40%;
	border-radius: 50%;
} 

.container {
	padding: 16px;
}

span.psw {
	float: right;
	padding-top: 16px;
}


/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
	border: 1px solid #888;
	width: 80%; /* Could be more or less, depending on screen size */
}		

/* The Close Button (x) */
.close {
	position: absolute;
	right: 25px;
	top: 0;
	color: #000;
	font-size: 35px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: red;
	cursor: pointer;
}

/* Add Zoom Animation */
.animate {
	-webkit-animation: animatezoom 0.6s;
	animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
	from {-webkit-transform: scale(0)} 
	to {-webkit-transform: scale(1)}
}
	
@keyframes animatezoom {
	from {transform: scale(0)} 
	to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
	span.psw {
		display: block;
		float: none;
	}
	.cancelbtn {
		width: 100%;
	}
}