body {
	font-family: Lucida Grand, Arial, Helvetica, sans-serif;
	margin: 10px;
	font-size: 10pt;
	line-height: 15px;
}

td, th {
	font-family: Lucida Grand, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	line-height: 15px;
	color: #525252;
}

a {
	color: #9900CC;
}

a:hover{
	color: #333333;
}

.contentbox {
	font-family: Lucida Grand, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	background-color: #FFFFFF;
	line-height: 15px;
	padding: 15px;
	background-image: url(/images/body-top.png);
	background-repeat: no-repeat;
}

.gradient {
	background-image: url(/images/body-tile.png);
	background-color: #333333;
	background-repeat: repeat-x;
}
	

h1, contentH1Wrapper {
	font-size: 18px;
	line-height: 18px;
	margin: 0px;
	color: #9900CC;
	font-style: normal;
	font-weight: normal;
}

h2 {
	font-size: 14px;
	padding: 0px 0px 0px 0px;
	margin: 0px;
	color: #9900CC;
}

h3 {
	font-size: 10px;
	font-weight: bold;
	color: #525252;
}

.footer {
	background-color: #FFFFFF;
	text-align: center;
	font-size: 8px;
	padding-bottom: 10px;
	background-image: url(/images/footer-bottom.png);
	background-repeat: no-repeat;
	background-position: bottom;
}

.footer a{
	text-align: center;
	font-size: 8px;
}

.footer a:hover{
	font-size: 8px;
	color: #333333;
}


.lefttile {
	background-image: url(/images/l-shadow.png);
	background-repeat: repeat-y;
	background-position: right;
}

.righttile {
	background-image: url(/images/r-shadow.png);
	background-repeat: repeat-y;
	background-position: left;
}

/** Menu CSS **/

#menu {
	width: 100%;
}

#menu ul {
	list-style: none;   /* padding to buttons */
	margin: 0;   /* indent from outside div */
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
	background-position: center;
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #333333;
}

#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 */
	padding-top: 0px;	/* padding of text within button */
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
	margin: 1;   /* padding of button within list item */
	z-index: 2;
	text-transform: lowercase;
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #333333;
}

#menu a:hover {  /* override as neccesary for mouse over effects */
	color: #333333;
}


#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 */
	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: #CCCCCC;
}


#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;
}