/* ------------------------------ General ------------------------------*/
/* Sets all the site content to default & alligns everything to the top */
/* -------------------------------------------------------------------- */
body,h1,h2,h3,h4,h5,h6,span,div,ul,li,ol{
	padding:0;
	margin:0;
	border:0;
}

body{
	background-color:#000000; /*background color = black*/
}

table tr{
	vertical-align:top;
}

/* ------------------------- Website Container --------------------------*/
/* Styles the content throughout the entire site					     */
/* --------------------------------------------------------------------- */
#website_container,#website_container table,#website_container table table,#login_box form table,
#back_home_msg,#log_footer{
	font-family:arial;
	font-size:11px;
	color:white;
	line-height:18px;
}

/* Styles all links throughout the entire website */

a{
	color:white;
	text-decoration:underline;
}

a:hover{
	text-decoration:none;
}

/* --------------------------- Top Navigation ---------------------------*/
/* Styles the top main navigation of the website					     */
/* --------------------------------------------------------------------- */
#top_nav td{
	text-align:center;
}

.mainpage_down{ /*sets the downstages of the top navigation*/
	text-decoration:underline;
}

/* -------------------------- Content Overflow --------------------------*/
/* Allows scrollbars in the main product content of the website		     */
/* --------------------------------------------------------------------- */
#content_scroll{
	width:400px;
	height:220px;
	overflow:auto;
	padding:0 10px 0 0; /*puts a 10px spacing between the right hand side of content and the scrollbar*/
}

/* -------------------------- Website Headers --------------------------*/
/* Styles all the website headers		     							*/
/* -------------------------------------------------------------------- */
h1{
	font-size:15px;
}

h2,h3,h4,h5,h6{
	font-size:13px;
}

/* -------------------------- Content Links --------------------------*/
/* Styles certian links that work differently from rest content links */
/* ------------------------------------------------------------------ */
.read_more{
	text-align:right;
}

a.skip_link{
	font-size:12px;
}

/* -------------------------- Form Styles --------------------------*/
/* Applies to all the forms used within the website					*/
/* ---------------------------------------------------------------- */
.error { /* Error fields on all the forms */
    color:#FF0000;
    font-weight: bold;
}

form input,form select{
	border:none;
	font-size:11px;
	color:#013F55;
}

/* ------------------------------- auth.php ------------------------------- */
/* Styles the login page. auth.php											*/
/* ------------------------------------------------------------------------ */
#login_box{
	width:1015px;
	height:611px;
	background-image:url(../images/general/auth.jpg);
}

#login_box form table{
	padding:0 0 0 10px;
}

#back_home_msg{
	padding:0 0 0 20px;
}

#log_footer{
	width:750px;
	text-align:right;
	position:relative;
	top:-55px;
	left:200px;
}

/* -------------------------- Application Form Hintbox -------------------------*/
/* Styles the hintbox used on some of the application forms						*/
/* ---------------------------------------------------------------------------- */
#hintbox{ /*CSS for pop up hint box */
	position:absolute;
	top: 0;
	background-color: lightyellow;
	width: 150px; /*Default width of hint.*/ 
	padding: 3px;
	border:1px solid black;
	font:normal 11px Verdana;
	line-height:18px;
	z-index:100;
	border-right: 3px solid black;
	border-bottom: 3px solid black;
	visibility: hidden;
}

.hintanchor{ /*CSS for link that shows hint onmouseover*/
	font-weight: bold;
	color:white;
	margin: 3px 8px;
}

/* --------------------------- Footer --------------------------*/
/* Styles the website footer									*/
/* ------------------------------------------------------------ */
#footer_bg{
	background-image:url(../images/home/bottom.jpg);
	height:60px;
}

.smlwhite {
	font-size: 10px;
	color: #FFFFFF;
}

.bldwhite {
	font-size: 11px;
	color: #FFFFFF;
	font-weight: bold;
}

