@charset "utf-8";
/* CSS Document */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
}

/* Selections */

::selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

::-moz-selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

/* Basics */

html, body {
	width: 100%;
	height: 100%;
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	color: #444;
	-webkit-font-smoothing: antialiased;
	background: #f0f0f0;
}

#logo 
{
    position: absolute;
	width: 230px;
	height:80px;
    top: 50%;
	left: 50%;
	margin-top: -230px;
	margin-left: -110px;
}

#container {
	position: absolute;
	width: 280px;
	top: 50%;
	left: 50%;
	margin-top: -120px;
	margin-left: -160px;
	background: #fff;
	border-radius: 3px;
	border: 3px solid #ccc;
	box-shadow: 0 0 14px 14px rgba(255, 111, 0, .2);

}

#instructions
{
    font-size:12px;
    line-height:16px;
    background-color:#ECF2F5;
    color:#333;
    padding: 12px 12px 12px 18px;
    margin:0px 0px 10px 0px;
    border-bottom: solid 1px #ccc;
}

#message 
{
    font-size:12px;
    line-height:16px;
    background-color:#e80b0b;
    color:#fff;
    padding: 12px 12px 12px 18px;
    margin:0px 0px 10px 0px;
    border-bottom: solid 1px #ccc;
}

#message a {color:#fff;}

form {
	margin: 0 auto;
	margin-top: 0px;
}

label {
	color: #555;
	display: inline-block;
	margin-left: 18px;
	padding-top: 10px;
	font-size: 14px;
}

.link {
	font-size: 11px;
	color: #aaa;
	float: right;
	margin-top: -13px;
	margin-right: 20px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

.link a:hover {
	color: #555;
}

.hint {
	font-size: 11px;
	color: #999;
	padding-left: 10px;
	margin: 10px;
	margin-top: 0px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

input {
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	font-size: 18px;
	outline: none;
}

input[type=text],
input[type=password],
input[type=file] {
	color: #555;
	padding-left: 10px;
	margin: 10px;
	margin-top: 12px;
	margin-left: 18px;
	width: 200px;
	height: 35px;
	border: 1px solid #c7d0d2;
	border-radius: 2px;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #f5f7f8;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

input[type=text]:hover,
input[type=password]:hover,
input[type=file]:hover {
	border: 1px solid #b6bfc0 opacity:0.4;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #ffcda6;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=file]:focus {
	border: 1px solid #f5b480;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #ff6f00;
}

#lower {
	background: #ecf2f5;
	width: 100%;
	height: 69px;
	margin-top: 20px;
	box-shadow: inset 0 1px 1px #fff;
	border-top: 1px solid #ccc;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

input[type=checkbox] {
	margin-left: 20px;
	margin-top: 30px;
}

.check {
	margin-left: 3px;
	font-size: 11px;
	color: #444;
	text-shadow: 0 1px 0 #fff;
}

input[type=submit] {
	float: right;
	margin-right: 20px;
	margin-top: 20px;
    padding-left:20px;
    padding-right:20px;    
	height: 30px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background-color: #acd6ef; /*IE fallback*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#52c0f1), to(#3b8db2));
	background-image: -moz-linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
	background-image: linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
	border-radius: 5px;
	border: 1px solid #66add6;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
	cursor: pointer;
}

input[type=submit]:hover {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#8fdbfd), to(#328fb9));
	background-image: -moz-linear-gradient(top, #8fdbfd, #328fb9);
	background-image: linear-gradient(top, #8fdbfd, #328fb9);
}

input[type=submit]:active {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#328fb9), to(#8fdbfd));
	background-image: -moz-linear-gradient(top, #328fb9, #8fdbfd);
	background-image: linear-gradient(top, #328fb9, #8fdbfd);
}

