@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #4A025C;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
/*BODY {
	FONT-FAMILY: verdana, arial, helvetica; 
	FONT-SIZE: 10pt;
	margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;

}*/
.oneColFixCtr #container {
	width: 876px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #4A025C;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position:relative
}
.oneColFixCtr #mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
a {
	color: #FBDCFB;
	background-color: transparent;
	TEXT-DECORATION: none
}
a:hover {
	color: yellow;
	background-color: transparent;
	text-decoration: underline;
}
a.contentlink {
	color: #000099;
	background-color: transparent;
	TEXT-DECORATION: none;
	font-weight:bold
}
a.contentlink:hover {
	color: #FF0099;
	background-color: transparent;
	TEXT-DECORATION: underline
}
<!--Text and headers etc.-- > 

H1, H2, H3 {
	font-family: arial, trebuchet ms;
	text-decoration: underline;
	color: navy;
}
/*  13 font size --><!-- this is the blue header used in the schedule page  -->*/
.header {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18pt;
	font-weight: normal;
	color: #000099;
}/*#000099 = blue color*/
/*<!--  12.5 font size -->*/
.subHeader {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13pt;
	font-weight: normal;
	color: #000000;
} /*<!-- black color --> */
/*<!--  12 font size -->*/
.textbold {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
}
.TableTitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
}
.text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
}
.navigation {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #003366;
	text-decoration: none;
}
.textMsg {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: red;
}
/*<!--  11 font size -->*/
.title {
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 11pt;
	font-style: normal
}
.error {
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FF0000;
}
/*<!--  10 font size -->*/
.footerlink {
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
}
/*<!--  8 font size -->
.smallies {font-family: verdana, arial, helvetica, sans-serif; font-size: 8pt; font-style: normal}
.smalliesItalicPurple{font-family: verdana, arial, helvetica, sans-serif; font-size: 8pt; font-style: italic;color: #990099;}

/*<!-- to center align the tables -->*/
table.center {
	margin-left:auto;
	margin-right:auto;
}
/*<!-- for the navigation menu -->*/
/*<!--  <style type="text/css"> -->*/
			
			.treemenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
/*Top level list items*/
			.treemenu ul li {
	position: relative;
	display: inline;
	float: left;
	background-color: #9933cc; /*overall menu background color*/
}
/*Top level menu link items style*/
			.treemenu ul li a {
	display: block;
	width: 70px; /*Width of top level menu link items*/
	padding: 2px 8px;
	border: 0px solid white;
	border-left-width: 0px;
	text-decoration: none;
	color: white;
	font-size: 12px;/*added by rajni on 8may2009 so that the menu fonts are in certain size*/
}
/*1st sub level menu*/
			.treemenu ul li ul {
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
}
/*Sub level menu list items (undo style from Top level List Items)*/
			.treemenu ul li ul li {
	/*display: list-item ;*/
			float: none;
}
/*All subsequent sub menu levels offset after 1st level sub menu */
			.treemenu ul li ul li ul {
	left: 159px; /* no need to change, as true value set by script */
	top: 0;
}
/* Sub level menu links style */
			.treemenu ul li ul li a {
	display: block;
	width: 300px; /*width of sub menu levels*/
	color: navy;
	text-decoration: none;
	padding: 1px 5px;
	border: 1px solid #9dafe8;
}
.treemenu ul li a:hover {
	background-color: #9933cc;
	color: YELLOW;
}
/*Background image for top level menu list links */
			.treemenu .mainfoldericon {
	background: #9933cc url(images/goldarrow.gif) no-repeat center left;
}
/*Background image for subsequent level menu list links */
			/*not used at the moment
			.treemenu .subfoldericon{
			background: blue url(media/arrow-right.gif) no-repeat center right;
			}*/
			
			* html p#iepara { /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
	padding-top: 1em;
}
/* Holly Hack for IE \*/
			* html .treemenu ul li {
	float: left;
	height: 1%;
}
* html .treemenu ul li a {
	height: 1%;
}
/* End */
			
			.treemenu .text {
	font-size: 11.5px;
}
		/*<-- 	/style> -->*/
			
		/*	<!-- for the navigation menu ends -->*/

