/* CSS Document */

body{
	background:#070707 url(/images/top-tail.gif) top repeat-x;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
}


td, th {
	font-family: Lucida Grand, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	line-height: 15px;
	color: #CCCCCC;
}

a {
	color: #8bc90a;
}

a:hover{
	color: #8bc90a;
	text-decoration: none;
}

.contentbox {
	background-color: #181818;
	background-image: url(/images/box-top.gif);
	background-repeat: repeat-x;
	background-position: top;
	padding-top: 15px;
	padding-right: 60px;
	padding-bottom: 15px;
	padding-left: 60px;
}

.footer {
	background-color: 0C0C0C;
	padding: 15px;
}
	
/* ============================= Headings CSS ===========================*/

h1 {color:#DFDFDF; font-size:17px;	margin-bottom:7px;}
h2 {
	color:#fff;
	font-size:15px;
	font-weight:bold;
	line-height:1em;
	margin-top: -2px;
	margin-right: 0;
	margin-bottom: 7px;
	margin-left: 0;
	padding-left:19px;
}
h3 {color:#8ccb0a; font-size:12px; margin-bottom:7px;}
h4 {color:#fff; font-size:12px; font-weight:normal;}

/* ============================= Menu CSS ===========================*/

#menu {
	width: auto;
}

#menu ul {
	list-style: none;   /* padding to buttons */
	margin: 0;   /* indent from outside div */
	padding: 0;
}

#menu li {
 float: left;     /* left for horizonal menu, otherwise its vertical. */
}

#menu a, #menu a:visited {
	text-align: center;  /* position text within li button */
	width: 110px;	/* button outside dimensions */
	height: 39px;
	font-weight: bold;
	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 */ 
	color: #FFFFFF;
	padding: 0;	/* padding of text within button */
	margin: 0;   /* padding of button within list item */
	z-index: 2;
	text-transform: capitalize;
	background-image: url(/images/button.jpg);
	background-repeat: no-repeat;
}

#menu a:hover {  /* override as neccesary for mouse over effects */
	color: #FFFFFF;
	background-image: url(/images/button-over.jpg);
}

#menu currentpage a {
	color: #FFFFFF;
	background-image: url(/images/button-over.jpg);
}


#menu ul ul {  /* this one is the dropdown */
	position: absolute; /* so we can hide it */
	left: -999em;  /* by default it is hidden */
	width: 110px;  /* 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: capitalize;
}

#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: 110px;   /* width is based on the containing block */
}

#menu ul ul a, #menu ul ul a:visited  {  /* override colours for drop down buttons */
	color: #FFFFFF;
	width: 110px;
	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:0;
	margin: 0;
	font-weight: normal;
}

#menu li ul a:hover {  /* override colours for drop down buttons */
	color: #333333;
}


#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;
}