/**
 * Palette: http://www.colourlovers.com/palette/2883386/meta
 */
body {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 10pt;
	font-weight: 400;
	padding: 0px;
	margin: 0px;
	height: 100%;
	border: none;
	-webkit-box-shadow: inset 0px 0px 85px rgba(0,0,0,0.4);
	-moz-box-shadow:    inset 0px 0px 85px rgba(0,0,0,0.4);
	box-shadow:         inset 0px 0px 85px rgba(0,0,0,0.4);
}

html {
	margin: 0px;
	padding: 0px;
	height: 100%;
	border: none;
	background: transparent;
}

.background {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 0;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='resources/images/afs_background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='resources/images/afs_background.jpg', sizingMethod='scale')";
	-webkit-filter: blur(5px) contrast(1.1) brightness(1.0);
	-moz-filter: blur(5px) contrast(1.1) brightness(1.0);
	-o-filter: blur(5px) contrast(1.1) brightness(1.0);
	-ms-filter: blur(5px) contrast(1.1) brightness(1.0);
	filter: blur(5px) contrast(1.1) brightness(1.0);
}
html:not([ie8andbelow]) .background {
	background-image: url('../images/afs_background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

.header {
	display: none;
}

/* Login box + animation */
@-webkit-keyframes fadeIn {
	from { opacity:0; }
	to { opacity:0.9; }
}
@-moz-keyframes fadeIn {
	from { opacity:0; }
	to { opacity:0.9; }
}
@keyframes fadeIn {
	from { opacity:0; }
	to { opacity:0.9; }
}
.loginBox {
	opacity: 0;
	background: #FAFAFA;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 400px;
	height: 290px;
	margin-left: -200px;
	margin-top: -180px;
	padding-top: 40px;
	box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.10), 0 5px 20px -10px rgba(0, 0, 0, .030);
	border: 1px solid #CCCCCC;
	-webkit-animation: fadeIn ease-in 1;
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 0.75s;
	-moz-animation-duration: 0.75s;
	animation-duration: 0.75s;
	border-radius: 5px;
}

.loginInnerHeader {
	clear: both;
	text-align: left;
	margin: 0px;
	padding: 0px;
	margin-bottom: 10px;
	display: block;
	width: 300px;
	color: #000000;
	font-size: 34px;
	font-weight: 500;
	line-height: 34px;
}

.loginInnerHeader:before {
	content: "AGUA";
	color: #003366;
}
.loginInnerHeader:after {
	content: "Portal ";
	color: #6699CC;
}

.loginInnerBox {
	width: 300px;
	clear: both;
	text-align: left;
	display: block;
	padding: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #000000;
}

.logo {
	display: none;
}

.credInput {
	width: 100%;
	padding: 7px 2px 7px 2px;
	margin-top: 3px;
	color: #000000;
	font-size: 18px;
	border-radius: 3px;
	border: 1px solid #E2E2E2;
	-webkit-box-shadow: 1px 1px 1px 0px rgba(255,255,255,1);
	-moz-box-shadow: 1px 1px 1px 0px rgba(255,255,255,1);
	box-shadow: 1px 1px 1px 0px rgba(255,255,255,1);
}

.credLabel {
	font-size: 18px;
	font-weight: 300;
}

.loginButton {
	display: block;
	font-size: 14px;
	text-align: center;
	width: 100%;
	padding: 5px 3px 5px 3px;
	margin: 0px -5px 0px 0px;
	width: 125px;
	float: right;
	height: 32px;
	border-radius: 3px;
	border: 1px solid #E2E2E2;
	background: #FFFFFF;
	color: #000000;
	-webkit-box-shadow: 1px 1px 1px 0px rgba(255,255,255,1);
	-moz-box-shadow: 1px 1px 1px 0px rgba(255,255,255,1);
	box-shadow: 1px 1px 1px 0px rgba(255,255,255,1);
}

.loginButton:hover {
	background: #6699CC;
	color: #FFFFFF;
	border: 1px solid #6699CC;
}

.loginHint {
	display: block;
	padding: 20px 0px 60px 0px;
	color: #999999;
	text-shadow: 0px 1px 0px #FAFAFA;
	text-align: center;
}

.footer {
	margin-top: 5px;
}