/* login-window.css ----------------------
	A CSS for decorating the login window.
	Authors: mwong & dpula
*/

body {
	background-color:#F7F7F7;
	color:#000000;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
}

/* Layout blocks. */
#container {
	width:768px;
	height:370px;
	margin:170px auto;
}

#header {
	height:100px;
	background: url(../images/login/brandx_header.jpg) center no-repeat;
}

#bottom {
	background: url(../images/login/portal_bottom.jpg) center no-repeat;
	height:32px;
	text-align: center;
}
#middle {
	background: url(../images/login/middle.jpg) center no-repeat;
	height:169px;
	padding-top:80px;
}

#language {
	float:right;
	width:250px;
	height:36px;
	text-align:right;
	margin:26px 10px 0px 0px;
	padding-right:14px;
}

/* A dynamic style for the currently used language. */
#current_language {
	color: #ef382a;
}

/* Hyperlink decoration. */
a {
	text-decoration:none;
	color:#000000;
}

a:hover {
	color:#000000;
	text-decoration: underline;
}