/*CSS File For Sign-In webpage*/
#body-color
{ 
background-color:#fff;
}

#Sign-In
{
margin-top: -11px;
margin-bottom: 45px;
margin-right: 140px;
margin-left: -20px;
border:0px solid #a1a1a1;
padding: 20px 11px;
background: rgba(0, 0, 0, .85);
width:400px;
border-radius:10px;
box-shadow: 0px 0px 0px; } 

#button
{
border-radius:0px;
width: 85px;
height: 30px;
background: #BA9D58;
font-weight:bold;
font-size: 18px;
}

.modalDialog1 {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}
.modalDialog1:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog1 > div {
	width: 400px;
	position: relative;
	margin: 7% auto;
	padding: 10px 20px 13px 20px;
	border-radius: 10px;
	background: rgba(0, 0, 0, .85);
}

.close1 {
	background: #606061;
	color: #FFFFFF;
	line-height: 23px;
	position: absolute;
	left: -12px;
	text-align: center;
	top: -10px;
	width: 24px !important;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close1:hover { background: #00d9ff; }