/*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
InLogin Core Structure
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
*/

BODY {
    background-color: white;
    padding: 0;
    margin: 0;
    border-style: none;
	font-family: "Segoe UI", Arial,Helvetica,sans-serif;
}

FORM {
    margin: 0px;
    padding: 0px;
} 
 
*{
	 box-sizing : border-box;
 } 


/* 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX	
InLogin Backgrounds
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX	
*/


/* Div Backgrounds */

DIV.LoginPage {
    width: 502px;
    height: 550px;
	border: 1px solid rgb(150,150,150);
    background-image: url('Login.gif');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position-x: 50%;	
    background-position-y: top;		
    background-color: transparent;	
    position: absolute;
    top: 0;
    left: 0;
	padding-top: 150px;
	padding-bottom: 20px;
}

/*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Error Message
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
*/

DIV.ErrorMessage {
    width: 350px;
	margin: 0 auto 30px auto;
    height: auto;
    color: #fb0b0c;
    border: 1px solid #fb0b0c;
    font: normal 11px/16px "Segoe UI", Arial, Helvetica, sans-serif;
    text-align: right;
	background-image: url('icon_error.gif');
    background-repeat: no-repeat;
    background-color: #FFFFFF;	
    background-position-x: 7px;	
    background-position-y: 8px;		
    padding: 2px 10px 5px 20px;
    z-index: 2;
}


/*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Login Label and Value Combos
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
*/

DIV.LoginEnterInfo {
    width: 350px;
	margin: 0 auto 30px auto;
}

DIV.info-Value {
	margin-bottom: 10px;
}

DIV.info-Value LABEL {
	text-align: right;
	width: 80px;
	float: left;
}

DIV.info-Value, DIV.info-Value-Enter {
    text-align: center;
    font-size: 12px;
    color: #808080;
}

DIV.info-Value-Enter {
    text-align: center;
	margin-bottom: 15px;
}

INPUT, SELECT {
    width: 175px;
    margin-left: 10px;
    font-size: 12px;
    position: relative;
}

DIV.RelativeFields {
    position: inherit;
    width: auto;
    height: auto;
}

	
/*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Buttons
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
*/

DIV.LoginLogo {
	margin: 30px 0 20px 0;
}

DIV.LoginLogo IMG {
	margin: 0 auto 0 auto;
	display: block;
}

DIV.LoginVerNum {
    text-align: center;
    height: auto;
    font-size: 10px;
    color: rgb(27, 36, 46);
	margin: 0 0 5px 0;
}

DIV.LoginCopyright {
    text-align: center;
	margin-top: 10px;
    font-size: 10px;
    color: #808080;
	margin: 0;
}

/* Button Normal Size Style */

DIV.BtnLoginStyle {
    text-align: center;
	margin: 30px auto 0 auto;
	width: 350px;
	clear: both;
}

.button {
    text-decoration: none;
    width: 100px;
    height: auto;
    display: inline-block;
    text-align: center;
    margin: 0;
    margin-left: 5px;
    background-color: rgb(0,150,220);
    border: 0;
    padding: 8px 15px 8px 15px;
    color: white;
    font-size: 10px;
    font-family: "Segoe UI", Arial,Helvetica,sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 3px;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
	background-color: rgba(0,150,220,0.8);
}