/* CSS FOR LOGIN PAGE */
*, document, body{
	margin: 0;
	padding: 0;
	border: 0; 
}

#loginContainer{
	position: absolute;
	width: 700px;
	height: 450px;
	top: 50%;
	left: 50%;
	margin-top: -225px;
	margin-left: -350px;
	background-color: #EEE;
}

#logo200{
	width: 200px;
	height: 43px;
	/*background: url("../images/logo200.png");*/
	/*
	background: url("../images/logo800.png");
	background-repeat: no-repeat;
    background-size: 200px 43px;
    */
    /* image-rendering: optimizeSpeed;             *//* STOP SMOOTHING, GIVE ME SPEED  */
    /* image-rendering: -moz-crisp-edges;          *//* Firefox                        */
    /* image-rendering: -o-crisp-edges;            *//* Opera                          */
    /* image-rendering: -webkit-optimize-contrast; *//* Chrome (and eventually Safari) */
    /* image-rendering: pixelated; *//* Chrome */
    /* image-rendering: optimize-contrast;         *//* CSS3 Proposed                  */
    /* -ms-interpolation-mode: nearest-neighbor;   *//* IE8+                           */
	/*background-color: blue;*/
	float: left;
	margin-left: 20px;
	margin-top: 20px;
}

#logo80{
	width: 80px;
	height: 43px;
	background: url("../images/ture80.png");
	/*background-color: #F0F;*/
	float: right;
	margin-top: 20px;
}

#versionHolder{
	width: 150px;
	height: 43px;
	float: right;
	font-family: Arial, sans-serif;
	font-size: 32px;
	font-weight: bold;
	/*color: #0F408E;*/
	color: #014C56;
	line-height: 43px;
	text-align: right;
	margin-top: 20px;
	margin-right: 20px;
}

#inputLine1, #inputLine2{
	float: left;
	width: 630px;
	height: 32px;
	margin-left: 35px;
}

#inputLine1{
	margin-top: 97px;
	/*background-color: #CF0;*/
}

#inputLine2{
	margin-top: 64px;
	/*background-color: #C0F;*/
}

#inputLine1 p{
	float: left;
	font-family: Arial, sans-serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 32px;
}

#inputLine2 p{
	float: left;
	font-family: Arial, sans-serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 32px;
}

#inputLine2 input[type=password]{
	float: right;
	line-height: 32px;
	height: 32px;
	width: 500px;
	background-color: #FFF;
	padding-left: 10px;
	padding-right: 10px;
	font-family: Arial, sans-serif;
	font-size: 26px;
}

#inputLine1 input[type=text]{
	float: right;
	line-height: 32px;
	height: 32px;
	width: 500px;
	background-color: #FFF;
	padding-left: 10px;
	padding-right: 10px;
	font-family: Arial, sans-serif;
	font-size: 18px;
}

#inputBox{
	width: 150px;
	height: 50px;
	/*background-color: #0F408E;*/
	background-color: #014C56;
	float: right;
	margin-right: 35px;
	margin-top: 76px;
	text-align: center;
	line-height: 50px;
	font-family: Arial, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
	cursor: pointer;
	/* Firefox */
	-moz-transition: background-color 0.5s ease;
	/* WebKit */
	-webkit-transition: background-color 0.5s ease;
	/* Opera */
	-o-transition: background-color 0.5s ease;
	/* Standard */
	transition: background-color 0.5s ease;
}

#inputBox:hover{
	/*background-color: #6289BD;*/
	background-color: #6D9DA7;
	cursor: pointer;
}

#errorBox{
	width: 300px;
	height: 20px;
	/*background-color: green;*/
	color: red;
	float: left;
	line-height: 20px;
	font-family: Arial, sans-serif;
	font-size: 16px;
	margin-left: 35px;
	margin-top: 76px;
	font-weight: bold;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#forgotpassBox{
	width: 150px;
	height: 22px;
	position: absolute;
	margin-left: 110px;
	margin-top: 40px;
	line-height: 22px;
	font-family: Arial, sans-serif;
	font-size: 16px;
	cursor: pointer;
	/*color: #0F408E;*/
	color: #014C56;
	font-weight: bold;
}

@-webkit-keyframes autofill {
    to {
        color: #000;
        background: #FFF;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}
