
/*

	CSS Template

	CONTENTS ----------

		1.Over all styles
		2.Layout
		3.Search
		4.Menu(s)
		5.ARD Tables

    -------------------

	COLOURS ----------

		Text #3D3D3D
		
		A #1b367a 

		A:hover #738db9

		H1 #505050
		
		H2 #738db9

    -------------------

 */
 
/* Zero down margin and paddin on all elements */
* {
  margin: 0;
  padding: 0;
}
/* Make scroll bar always visibale IMPORTANT in FF */
HTMl { overflow: scroll; }


 /* 1.Over all styles
---------------------------------------------------------------*/
body {
margin:20px 0;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #3D3D3D;
	background-color:#7f9abb;
	background-image:url(../images/bodybg.jpg); background-repeat:repeat-x; background-position:top;
	}
	img { border:0; }
P, td, th, div { line-height: 17px; }
H1 { font: 24px/26px bold Arial, Helvetica, sans-serif; color:#1b367a;}
H2 { font-size: 18px; font-weight: bold; color: #738db9;  }
H3 { font-size: 16px; font-weight: bold; color: #738db9; }
H4 { font-size: 14px; color: #505050; line-height: 17px; }
H5 { font-size: 14px; color: #505050; line-height: 17px; }
H5 A { text-decoration: none; }
A { color: #1b367a; text-decoration: underline; }
A:hover { color: #738db9; text-decoration: none; cursor:pointer; }
A.noline { color: #000; text-decoration: none; }
A.noline:hover { color: #000; text-decoration: none; }
.white { color:#FFFFFF; }
/* 2.Layout
---------------------------------------------------------------*/

#content p, #content h1, #content h2, #content h4, #content h5 { margin-bottom:15px; }
#content h3 { margin-bottom:10px; }
#content ul, #content ol { margin:0 0 15px 20px; }
#content table { margin-bottom:15px; }

.clearfloat { clear:both; height:0; font-size:1px; line-height:0px; }
#footer { }

#wrapper {
  width: 900px; 
  margin: 0 auto;
  padding:20px; 
  text-align: left;
  background-color:#FFFFFF; 
}


#branding {
	height: 100px;
	background-color:#FFFFFF;
	background-image:url(../images/brandingBg.gif);
	background-repeat: no-repeat;
	position:relative;
}
#logo { float:right; }
#brandingLinks { 
	position:absolute;
	left: 0px;
	top: 0px;
	text-align:left; color:#FFFFFF; }
#mainBanner { height:178px; width:900px; position:relative; margin-bottom:20px; }
.pageLink { position:absolute; bottom:20px; left:20px; color:#FFFFFF; font-size:22px; }
#contentContainer {
	width: 900px;
	background-image: url(../images/contentVertTile.gif);
	background-repeat: repeat-y;
	background-position: left top;
	display: block;
	clear: both;
	overflow: auto;
	height:100%;
	margin-bottom:10px;
	background-color:#FFFFFF;
}
#contentContainerFull {
	width: 900px;
	background-image: url(../images/contentVertLine.gif);
	background-repeat: repeat-y;
	background-position: left top;
	display: block;
	clear: both;
	overflow: auto;
	height:100%;
	margin-bottom:10px;
	background-color:#FFFFFF;
}
#flashBanner { width:100%; border-top: 1px solid #000000; border-bottom: 5px solid #000066; }
#content { 
  width: 425px;
  float: left;
  padding:20px;
  background:#FFFFFF; 
}
.full { width:610px; }
#content p { margin-bottom:10px; }

#column { 
  width: 190px; 
  float: left;
  padding: 10px 30px 10px 10px;
}

#footer {
margin: 0 auto;
width:900px;
border-top: 1px solid #7f9abb; 
  clear: both;
  padding: 0 20px 0 20px; 
  height:69px;
  background-image:url(../images/footerbg.jpg);
} 
#footer p { color:#1b367a; font-size:11px; margin-bottom:10px; }
#footerPrimary { 
  width: 300px;
  float: left;
  height:30px;
  line-height:30px;
}

#footerSecondary {
margin-top:10px; 
  width: 420px; 
  float: right; 
  text-align:right;
} 

/* 3.Search
---------------------------------------------------------------*/
input.searchfield { width: 160px; padding: 6px; border: 2px solid #ccc; font-size: 11px; }
input.searchbutton { background: #1f497c; border: 0; padding: 6px; color: #fff; font-weight: bold; font-size: 11px; }

/* 4.Menu
---------------------------------------------------------------*/
menuWrap {
	clear: both;
	position:relative;
	display:block;
	background:#892929; /* add background (this can be added directly to the #menu */
	position:relative;
	z-index:100;/* this makes sure that the menu appears on top of all elements of the page mainly things like JS banners and flash files */
	width:192px; /*set width of menu*/
	margin:20px 0 20px 20px;
	
	}
#menu, #menu ul{
	margin:0;
	padding:0;
	list-style-type:none;
	list-style-position:outside;
	position:relative;
	line-height:1.5em; /*set line height DONT use height*/
	font-family:Arial,Verdana,Helvitica,sans-serif;
	font-weight:normal;
	font-size:20px;
	margin-bottom:20px;
	}

#menu li { 
	list-style: none; 
	position:relative;
	border:0;
	}
#menu a{
	display: inline-block;
	width:160px; /*Width of menu minus the padding*/
	padding:0px 22px 0 10px;
	line-height:44px; /*set line height DONT use height*/
	color:#6e768c;
	text-decoration:none;
	border-bottom:1px solid #FFFFFF;
	}

#menu a:hover{
	background-color: #e2e4e8; /*hover background colour*/
	color:#6e768c;
	}

#menu ul {
	position:absolute; /* Menu uses position ab to set drop downs so left: needs to be the same height as the menu */
	display:none; /*display none so menu is not visable until user hovers over the li*/
	width:194px; /* Width will need to be updated inline with all the padding on the menus */
	left:192px;
	top:0;
	background-color:#e2e4e8;
	font-size:14px;
	}

#menu li ul a{
	width:162px; /*update width inline with all the overs*/
	display:block;
	line-height:44px;
	float:left;
	border:0;
	border-bottom:1px solid #FFFFFF; 
	}
	#menu li ul a:hover{
	width:162px; /*update width inline with all the overs*/
	display:block;
	line-height:44px;
	float:left;
	border:0;
	border-bottom:1px solid #FFFFFF;
	background-color:#c9ced6;
	color:#4a546f;
	}
#menu ul li { 
	float:left; /*float important*/
	display:inline;
	}

#menu li ul li ul {
	left:184px; /*position ab in herited from above left needs to be set to width on drop downs*/
	margin:0px 0 0 10px;
	width:204px;
	top:auto; /*should defalut to top of LI as long as float left is used on LI*/

	}
#menu li ul ul a { 
	width:160px; /*update width inline with all the overs*/
	}
#menu li:hover ul ul, #menu li:hover ul ul ul, #menu li:hover ul ul ul ul{
	display:none;
	}
#menu li:hover ul, #menu li li:hover ul, #menu li li li:hover ul, #menu li li li li:hover ul{
	display:block; /*IMPORTANT set drowns downs to show on hover*/
	}
	
/* 5.RHC
---------------------------------------------------------------*/	
#rhc { float:right; width:172px; }
#RHCAcc_1_DIV, #RHCAcc_2_DIV, #RHCAcc_3_DIV, #RHCAcc_4_DIV {
	font-family:Arial, Helvetica, sans-serif;
	color:#3d3d3d;
	font-size:11px;
	margin: 0;
	padding: 10px;
	width:auto;
	min-height:50px;
	height:auto !important;
	height:50px;/*Needs to match the min height pixels above*/
	border-bottom: 5px solid #FFFFFF;
}
.RightPanelBody { margin: 0; padding:0; }
#RHC_Body { margin:0; padding:0; background:none; width:172px; }