body {
	font-family: Lucida Grand, Arial, Helvetica, sans-serif;
	margin: 0;
	font-size: 10pt;
	line-height: 15px;
	color: #525252;
	background-image:url(/images/bg-tile.gif);
	background-color: #C9DEE9;
	scrollbar-3dlight-color:#ffd700;
	scrollbar-arrow-color:#FFFFFF;
	scrollbar-base-color:#ff6347;
	scrollbar-darkshadow-color:#ffa500;
	scrollbar-face-color:#E68D00;
	scrollbar-highlight-color:#E68D00;
	scrollbar-shadow-color:#FFFFFF;
	scrollbar-track-color:#FFFFFF;
}

td, th {
	font-family: Lucida Grand, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	line-height: 15px;
	color: #525252;
}

a {
	color: #E68D00;
}

a:hover{
	color: #003366;
}

#info {
	position:absolute;
	width:605px;
	z-index:1;
	overflow: auto;
	height: 345px;
	border: 1px solid #CCCCCC;
	background-color: #FFFFFF;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

.contentbox {
	font-family: Lucida Grand, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	line-height: 15px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
}

h1 {
	font-size: 18px;
	line-height: 18px;
	margin: 0px;
	color: #525252;
	font-style: normal;
	font-weight: normal;
}

h2 {
	font-size: 14px;
	padding: 10px 0px 0px 0px;
	margin: 0px;
	color: #525252;
}

h3 {
	font-size: 10px;
	font-weight: bold;
	color: #525252;
}

.sidebar {
	background-color: #FFFAF3;
	text-align: center;
	vertical-align:baseline;
	padding-top: 25px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

.footer {
	background-color: #FFFAF3;
	text-align: right;
	font-size: 8px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 0px;
}

.footer a{
	background-color: #FFFAF3;
	text-align: right;
	font-size: 8px;
}

.footer a:hover{
	font-size: 8px;
	color: #E68D00;
	background-color: #FFFAF3;
}


.lefttile {
	background-image: url(/images/left-tile.png);
	background-repeat: repeat-y;
	background-position: left;
}

.righttile {
	background-image: url(/images/right-tile.png);
	background-repeat: repeat-y;
	background-position: right;
}

/** Menu CSS **/

#menu {
 width: 100%;
}

#menu ul {
	list-style: none;   /* padding to buttons */
	margin: 0;   /* indent from outside div */
	padding-top: 4px;
	padding-right: 12px;
	padding-bottom: 4px;
	padding-left: 12px;
}

#menu li {
 float: left;     /* left for horizonal menu, otherwise its vertical. */
}

#menu a, #menu a:visited {
	text-align: center;  /* position text within li button */
	font-weight: normal;
	text-decoration: none; /* remove typical underline */
	font-size: 10pt;    /* menu text size */
	display: block;    /* treats layout of buttons like they're table cells rather than list items */
	/*width: 130px;   /* button outside dimensions */
	color: #FFFFFF;  /* link text colour */
	background-color: #E68D00;
	padding-top: 4px;	/* padding of text within button */
	padding-right: 12px;
	padding-bottom: 4px;
	padding-left: 12px;
	margin: 1;   /* padding of button within list item */
	z-index: 2;
	text-transform: uppercase;
}

#menu a:hover {  /* override as neccesary for mouse over effects */
 color: #003366; 
 background-color: #E68D00;
}


#menu ul ul {  /* this one is the dropdown */
	position: absolute; /* so we can hide it */
	left: -999em;  /* by default it is hidden */
	width: 130px;  /* relative position of the menu to the button... 0=tight on bottom.. */
	padding: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	z-index: 2;
	text-transform: uppercase;
}

#menu ul ul ul {
	position: absolute;
	top: auto;  /* auto means that it will be in the typicall indented list position below the first menu */
	left: 15px;   /* 0 */
	margin: -20 150;       /* adjust the margins to position the 2nd level popout menu to the right*/
	width: 130px;   /* width is based on the containing block */
}

#menu ul ul a, #menu ul ul a:visited  {  /* override colours for drop down buttons */
	background-color:#F0C791;
	color: #003366;
	width: 130px;
	text-align:center;
	font-size: 10pt;
	border-top: 1px  solid #FFFFFF;
	border-left: 4px  solid #F0C791;
	border-right: 4px  solid #F0C791;
	border-bottom: 1px  solid #F0C791;
	padding:2;
	margin: 0;
	font-weight: normal;
}

#menu li ul a:hover {  /* override colours for drop down buttons */
 color: #003366;
 background-color: #F0C791;
}


#menu li:hover ul ul, 
#menu li:hover ul ul ul, 
#menu li.sfhover ul ul, 
#menu li.sfhover ul ul ul 
{
 left: -999em;
}

#menu li:hover ul, 
#menu li li:hover ul, 
#menu li li li:hover ul, 
#menu li.sfhover ul, 
#menu li li.sfhover ul, 
#menu li li li.sfhover ul {
 left: auto;
}