/*
	style.css
	
	Handles all the other CSS includes, and site specific styles.
	
	Part of the CSS framework developed by InfiniteNetworks - infinite.net.au
*/

@import url(reset.css);
@import url(type.css);


body {
	background: url(../images/branding_background.png) repeat-x;
	
}

#header h1 {
	padding: 0;
	margin: 0;
	height: 153px;
	text-indent: -10000px;
	background: url(../images/header.png) no-repeat;
}





#navMain {
	color: #fff;
	background: #fefefe url(../images/navMain_left.png) no-repeat top right;
	position: absolute;
	top: 0px;
	left: 408px;
	padding-right: 7px;
}
html > body #navMain {
	padding-right: 9px;
}

#navMain li {
	float: left;
	background: #2e46a0 url(../images/navMain_tab.png) no-repeat;
	width: 126px;
	margin: 0 2px 0 0;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	
}

#navMain li:hover {
	background-image: url(../images/navMain_tab_hover.png);
}

#navMain a {
	color: #fff;
	display: block;
	width: 126px;
}

#navMain a:active, #navMain a:hover {
	text-decoration: none;
	color: #C5CCE4;
}





#contentwrap {
	width: 950px;
	background: url(../images/menu_bg.png) repeat-y;
	
}

#navMenu{
	width: 200px;
	float: left;
}

#content {
	width: 710px;
	float: right;
	padding: 20px;
}




#navMenu h3 {
	background: #d3d3d5 url(../images/navSup_heading.png) repeat-x;
	padding: 0 0 0 9px;
	color: #fff;
	font-size: 12px;
	/*line-height: 2em; */
	margin-right: -1px;
	margin-left: -4px;
}



#navMenu a {
	color: #5b5b5b;
	font-size: 11px;
	
}

#navMenu a:visited {
	color: #3b3b3b;
}

#navMenu a:active, #navSup a:hover {
	color: #2e46a0;
}

#navMenu ul {
	margin: 0 0 -1px 0;
	padding-bottom: 20px;
	background: #f6f6f6;
	border-bottom: 1px solid #f2f2f2;
	list-style: none;
}




#siteinfo  {
}


#content h2 {
	margin: 15px 0 0 0;
	padding: 0;
}

#content p {
	margin: 0 0 10px 0;
}

#content ul, #content ol {
	
	list-style: outside circle;
}

#content ul.school {
	padding-left: 96px;
	margin: 0 0 -1px 48px;
	border-bottom: 1px dotted #dedede;
	list-style: none;
}

#contentMain ol.options {
	list-style: none;
	margin-left: 0;
}

#contentMain ol.options li {
	margin: 0;
}

#contentMain ol.options li p {
	margin-top: 0;
}

#content p.note {
	border: .1em solid #dedede;
	background: #fafafa;
	margin: 1.8em 50px 0 50px;
	padding: 1em;
	font-weight: bold;
	text-align: center;
}





.formfield {
	border: 1px solid #ccc;
	background-color: #fcfcfc;
	
}

.error {
	color: red;
}

.errorbox {
	color: red;
	border: 1px dashed red;
	background-color: #fffcfc;
	padding: 8px;
	margin: 20px;
}
.successbox {
	color: green;
	border: 1px dashed green;
	background-color: #fcfffc;
	padding: 8px;
	margin: 20px;
}

.pendingbox {
	color: orange;
	border: 1px dashed orange;
	background-color: #fffcfc;
	padding: 8px;
	margin: 20px;
}

.req { color: red; }