/*******************************************************************************
- screen.css
- Contains main 'screen' styles for template
- All other required styles wil be imported whwn this style sheet is loaded by
  the browser
********************************************************************************/

/*******************************************************************************
Color List
#020836 - Very Dark BLue
#061152 - Darker Blue (Menu Button Colour)
#0b196c - Dark Blue
#7273bf - medium blue
********************************************************************************/

/*******************************************************************************
import all other required style sheets
********************************************************************************/
/*main navigation styles*/
@import url('./menu.css') screen;

* {padding: 0; margin: 0;}

body {
	height: 100%;
	font-size: 12px;
	font-family: lucida sans, "verdana", arial, helvetica, sans-serif;
	text-align: center;
	background: #020836 url(./img/wrapper.png) top center repeat-y scroll;
	margin: 0 0 20px 0;

}
/*generic tag styles*/
p {
	margin-bottom: 10px;
	text-indent: 15px;
}
	p:first-line {
		text-indent: 10px;
	}
div {
	text-align: left;
}
/*******************************************************************************
page layout
********************************************************************************/
/*page wrapper*/
#wrapper {
	width: 800px;
	text-align: center;
	margin: 0 auto;
	background: #ffffff url(./img/sidebar.png) repeat-y;
	border-right: 2px solid #061152;
	border-left: 2px solid #061152;
}
/*page header*/
#header {
	height: 250px;
	background: transparent url(./img/header.png) top center no-repeat;
}
	#header h1 {
		font-size: 50px;
		padding-top: 20px;
	}
	#header h3 {
		font-size: 30px;
	}
	#header h1, #header h3 {
		color: #ffffff;
		text-transform: uppercase;
	}
/*login/logout box*/
#login_box, #logout_box {
	width: 100%;
	font-size: 10px;
	height: 25px;
	text-align: left;
}
	#login_box td {
		width: 50%;
	}
	#login_box td, #logout_box td {
		padding: 5px;
	}
/*page content holders*/
#righthand, #centre {
	padding: 10px;
}
#lefthand, #righthand {}
/*left hand div*/
#lefthand {
	width: 200px;
	float: left;
}
/*right hand div*/
#righthand {
	text-align: center;
	float: right;
}
/*centre div*/
#centre {
	margin: 0 0 0 210px;
	min-height: 500px;
	background: transparent url(./img/content.png) 100% 25px no-repeat;
}
	#centre ul {
		padding-left: 25px;
	}
	#centre ul ul {
		padding-left: 5px;
	}
/*page navBox*/
#navBox {
	width: 200px;
	text-align: center;
	background: #0b196c;
	margin-bottom: 10px;
}
/*page footer*/
#footer {
	min-height: 50px;
	padding: 5px;
	text-align: center;
	color: #FFFFFF;
	background: #020836 url(./img/footer.jpg);
	clear: both;
}