/* CSS Document */

/* div {
	border:solid #00ee66 1px;
}
*/
/* html {height:100%;}  allows us to stretch the main div later - removed to get rid of v scrollbar  */
body {height:100%;} /* allows us to stretch the main div later */
* { 
margin: 0px 0px; 
padding: 0px 0px;
border:none;
}


body {
	background-color: #fff;
	background-image: url(img/grey.jpg);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	font-size: small;  /*Font size value for IE4/5 on Windows*/
	voice-family: "\"}\"";  /*IE4/5 in Windows will not understand this and believe the rule is over. */
	voice-family:inherit;  /*Allows the rest of browsers to get on with rule*/
	font-size: medium; /*proper value for browsers that implement keywords correctly*/

}
	html>body {
	
	font-size:medium; /* opera rule */
}
	
	
/* site wide text alignment */
h1, h2, h3, h4, h5, h6 {

	margin:10px 10px;
	line-height:1.3em;
	color:#0076b3;
}

h1 {
	font-size: 120%;
}

h2 {
	font-size: 100%;
}

h3 {
	font-size: 90%;
}

h4 {
	font-size: 80%;
}

a{
	color: #000;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
/* overrides decoration from previous rule for hovered links */

/*************************************************************
*
*  generic page layout divs
*
**************************************************************/

#container {
	position: relative;
	width: 800px;
	margin:5px auto;
	background-image:url(img/blue_bk.gif);
	background-repeat:repeat-y;
	border:1px solid #666;
}

#header{
	float:right;
	width: 585px;
	\width: 597px;  /* for IE5/Win */
  	w\idth: 585px;  /* for good browsers */
	display:inline;  /* ie/win double margin bug fix */
	height: 136px;
	background-position: top right;
	background-image: url(img/header_left.jpg);
}

#header_left{
	width:215px;
	height: 136px;
	float:left;
}

#navbar{
	clear:both;
	width: 100%;
	height: 20px;
	background-color:#FFFFFF;
	border-bottom:2px solid #80b8d1;
}

#image_bin{
	position: relative;
	width: 100%;
	background-position:bottom left;
	background-repeat:no-repeat;
}

#centrepanel {
	float: right;
	width: 585px;
	\width: 597px;  /* for IE5/Win */
  	w\idth: 585px;  /* for good browsers */
	display:inline;  /* ie/win double margin bug fix */
}

#leftpanel {
	float: left;
	width:215px;
	height:auto;
	display:inline;  /* ie/win double margin bug fix */
	}

#footer{
	clear: both;
	width: 800px;
	height: 20px;
	background-color: #0076B3;
}

#popup {
	display:none;
	position:absolute;
	top:20px;
	left:220px;
	width:660px;
	height:500px;
	background-color:#FFFFFF;
	border:1px solid #111;
	
}

.content {	
	width:90%;
}

/*************************************************************
*
*  font styling
*
**************************************************************/

#centrepanel p{
	font-size:70%;
	margin:10px 10px;
	line-height:1.3em;
}

#header h1{
	text-indent: -5000px;
}

#leftpanel p{
	font-size:70%;
	margin:10px 10px;
	line-height:1.3em;
	padding:3px 3px;
	background-color:#f3f3f3;
	border:1px solid #91a6d4;
}

#footer p{
	font-size:70%;
	color:#fff;
	text-align:right;
	margin:5px 10px 0px 0px;
}

#footer a{
	color:#fff;
}

#centrepanel p.byline{
	font-size:80%;
	font-weight:bold;
	color:#0076b3;
	padding-bottom:2px;
	border-bottom:#087fbf 1px dotted;
}

#centrepanel p.disclaimer{
	font-size:55%;
	font-weight:normal;
	color:#666;
}
#centrepanel h1{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size:160%;
}
/*************************************************************
*
*  Navigation styling
*
**************************************************************/

#navbar ul{
	font-size:80%;
	width:98%;
	list-style: none;
	margin:3px 0px 0px 15px;		
}

#navbar li{
	display:inline;
	font-weight:bold;
	margin:0px 10px 0px 0px;
}

#navbar li a{
	color:#0076B3;
}

#navbar li a:hover{
	color:#000;
}

#leftpanel ul{
	width:200px;
	list-style: none;
	margin:3px 0px 0px 3px;		
}

#leftpanel li{	
	font-size:90%;
	text-align:right;
	margin:5px 0px 0px 0px;
	width:100%;
}

#leftpanel li a{
	display: block;
	font-weight:bold;
	color:#0076b3;
	padding:1px 10px;
	text-decoration:none;
	border-right:3px solid #0076b3;
}

#leftpanel li a:hover{
	color:#f77633;
	border-right:3px solid #e77633;
}

#leftpanel ul ul{
	width:100%;
	margin:3px 0px 0px 0px;
	list-style:none;
	background-color:#e2f1f3;
}

#leftpanel ul ul li{
	font-size:70%;
	text-align:right;
	margin:2px 0px 0px 0px;
}

#leftpanel ul ul li a{
	display: block;
	font-weight:normal;
	color:#000;
	padding:1px 6px;
	text-decoration:none;
	border-right:2px solid #555;
}

#leftpanel ul ul li a:hover{
	color:#f77633;
	border-right:2px solid #f77633;
}

/*************************************************************
*
*  Image styling
*
**************************************************************/
.content img{
	float:right;
	margin:10px 10px;
}