@charset "utf-8";
/* CSS Document */
body   {
	padding: 0px;
	margin: 0px;
}
/* Full-width input fields */
input[type=text], input[type=password] {
	width: 100%;
	padding: 12px 20px;
	margin: 6px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
	background-color: #FFF;
}
.content {
	height: 650px;
	width: 1200px;
	background-position: center;
	background-color: #6F9;
	position: relative;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	box-sizing: border-box;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 0px;
}
.header {
	height: 100px;
	padding: 3%;
	margin: 0px;
	float: left;
	width: 100%;
	position: relative;
	box-sizing: border-box;
	left: 0px;
	top: 0px;
}
.imgcontainer {
	text-align: center;
	position: relative;
	float: left;
	margin-top: 12px;
	margin-right: 0;
	margin-bottom: 12px;
	margin-left: 0;
}
.PUContainer {
	padding: 16px;
	background-color: rgba(255,255,255,1);
	box-sizing: border-box;
	float: left;
	position: relative;
}
/* Set a style for all buttons */
button {
	background-color: #0066FF;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;
}

button:hover {
    opacity: 0.8;
}
/* The Modal (background) */
.modal {
	/*  display: none;  Hidden by default */
	position: absolute; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 2px;
	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.1);  Black w/ opacity */
	padding-top: 60px;
}
.modal-content {
	background-color: #fefefe; /* 5% from the top, 15% from the bottom and centered */
	border: 1px solid #888;
	width: 40%;
	position: relative;
	margin-top: 10%;
	margin-right: 30%;
	margin-left: 30%;
	float: left;
}
/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 1s;
    animation: animatezoom 1s
}

@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
}
    
@keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

