@charset "UTF-8";
/* Clear margins and padding, a good start to any CSS */
* {margin:0;padding:0;}
#contentbox {
	font-size: 10px;
}

/* START STAGING */
html {
background:#ecf5fb url(../images/background.jpg) repeat-x;
/* Height is 100%, so the body can be 100% */
height:100%;
}

body {
	background:url(../images/landingbg.jpg) no-repeat;
	background-position: 50% 0;
	margin:0;
	padding:0;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Tahoma, sans-serif;
	font-size: 14px;
	/* Height is 100%, so the tiled BG will tile all the way down
the page, not just as far down as the page's content
(when the content's height < window's height) */
height:100%;
	color: #333333;
}
/*
Hackety-hack-hack...
FF2, with the above code, will only display the repeat-y image for as
high as the window's viewport is; higher content (upon
scrolling) will not have the bg.
This "hack" makes the tiled background work properly in FF2.
This type of "advanced selector" is not understood by IE6...dunno
'bout IE7.
*/
html>body {
min-height:100%;
height:auto;
}

/* END STAGING */


/* START FUNCTIONALS */

#container {
	width: 950px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
}

a {
	color: #FFF;
}
a:link, a:visited, a:active { text-decoration: none; }
a:hover { text-decoration: underline; }
a.more {
	white-space: nowrap;
	padding-right: 10px;
	zoom: 1;
	background-image: url(../images/morearrow_08white.gif);
	background-repeat: no-repeat;
	background-position: 100% 50%;
}

a.before {
	white-space: nowrap;
	padding-left: 25px;
	zoom: 1;
	background-image: url(../images/newcoursesbullet.gif);
	background-repeat: no-repeat;
	background-position: 0% 50%;
}

/* begin header stuff*/

div.header {
	height: 88px;
	z-index: 20;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

div.header {
	margin: 0;
	width: 950px;
}

a.button {
	display: block;
	text-align: left;
	text-indent: -9999px;
}

#logo {
	height: 60px;
	width: 954px;
	position: absolute;
	margin-top: 16px;
	margin-left: -4px;
}
#loginbg {
	background-image: url(../images/loginbackground.jpg);
	height: 750px;
	width: 700px;
	margin-top: 47px;
	background-repeat: no-repeat;
}
.box {
	padding-top: 170px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 250px;
	font-size: 24px;
	color: #FFFFFF;
	line-height: 1.9em;
	font-weight: normal;
}

.box #inputArea
{
	font-size: 24px;
	background-color: #FFFFFF;
	padding: 3px;
}

.box #inputArea input[type="text"], #inputArea textarea
{
	font-size: 20px;
	margin-bottom: 5px;
	display: block;
	padding: 4px;
	border: solid 1px #85b1de;
	width: 200px;
}
.logintext {
	padding-top: 0px;
	padding-left: 0px;
	font-size: 14px;
	font-weight: normal;
	margin-top: -5px;
	width: 600px;
	line-height: 1.2em;
}
.languagetext {
	font-size: 12px;
	margin-top: -6px;
	text-align: left;
	padding-left: 320px;
	width:200px;
}

#footer {
	background-color: #ECF5FB;
	margin-top: 500px;
	padding-right: 28px;
	padding-bottom: 0;
	padding-left: 20px;
	margin-right: 0px;
	text-align: right;
	font-size: 10px;
	color: #90B6D7;
} 

#footer a { color: #90B6D7; }
#footer a:link, a:visited, a:active { text-decoration: none; }
#footer a:hover { text-decoration: underline; }
#footer p {
	padding-top: 10px;
	padding-right: 10;
	padding-bottom: 10px;
	margin: 0;
}
