﻿/**********************/
/* Logo Master Styles */
/**********************/
html, body
{
    background-color:#F0EEE7;
	color: #000000;
	margin: 0;
	padding: 0;
	background-image: url(../Images/login_pg_bg.png);
	background-repeat: repeat-x;
}

.loginWrapper
{
	/* Align to center */
	margin-left: auto; 
	margin-right: auto;	 
	width:635px;
}

.loginHeader 
{	
	height: 85px;
	background-image: url(../Images/login_hdr_bg.png);
	background-repeat: repeat-x;
	
	/* Set header borders */
	border-left: solid 1px #000;
	border-right: solid 1px #000;
	border-top: solid 1px #000;	
	-moz-border-radius-topleft: 20px;	
	-moz-border-radius-topright: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	margin:0 auto;

}

.loginContent
{
	/* Set content borders */
	border-left: solid 1px #000;
	border-right: solid 1px #000;
	border-bottom: solid 1px #000;
	border-top: solid 1px #000;
	-moz-border-radius-bottomleft: 20px;
	-moz-border-radius-bottomright: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	background-color:#fff;
	position:relative;
	margin:0 auto;
	height:100%;
}