@charset "utf-8";
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background: #ffffff;
	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;
}
#container {
	width: 820px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
  color: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #990066;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 10px;
}
#header {
	height: 120px;
	width: 818px;
	text-align: center;
	border: 1px solid #990066;
}
#header h1 {
	position: absolute;
	top: -100px;
	color: #990066;
}
#mainContent h1 {
	text-align:center;
	color: #990066;
	padding: 10px;
	font-family: "Script MT Bold", Verdana, "Times New Roman", Arial;
	font-size: xx-large;
}
#mainContent h2 {
	font-size: x-large;
	text-align:center;
	color: #990066;
	padding: 10px;
	font-family: "Script MT Bold", Verdana, "Times New Roman", Arial;
}
#mainContent h3 {
	font-size: 18px;
	text-align:center;
	color: #990066;
	padding: 10px;
	font-family: "Script MT Bold", Verdana, "Times New Roman", Arial;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
	color: #990066;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	clear: both;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}
#homePageLH {
	float: left;
	width: 150px;
	padding: 20px 0 0 0;
}
#homePageMID {
	float: left;
	width: 390px;
	padding: 20px 30px 20px 30px;
	text-align: justify;
}
#homePageRH {
	float: right;
	width: 220px;
	text-align: right;
	margin-right: 0px;
	padding: 20px 0 0 0;
}
#pageContentDiv {
	float: left;
	margin: 0 0 0 0;
	width: 800px;
	padding: 20px 10px 10px 10px;
}
#menuBar {
	float: left;
	width: 820px;
	height: 30px;
	padding: 0px;
	background-image: url(../images/banner/menuBar.png);
	background-repeat: repeat-x;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	}
	
#menuBar ul {
	margin: 0px;
	line-height: normal;
	list-style-type: none;
	padding: 0px;
	float: left;
}

#menuBar li {
	padding: 0px;
	display: block;
	float: left;
	margin-right: 1px;
}

#menuBar li a {
	padding:6px 10px 4px 10px;
	width:61px;
	height: 20px;
	display: block;
	float: left;
	text-decoration: none;
	color: #FFFFFF;
	text-align: center;
}

#menuBar li a:hover {
	color: #FFFFFF;
	background-image: url(../images/banner/menuBarFade.png);
	background-repeat: repeat-x;
}

#menuBar li.active a {
	color: #FFFFFF;
	background-image: url(../images/banner/menuBarFade.png);
	background-repeat: repeat-x;
}	

.permission {
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
}	

.pointer {
	cursor: pointer;
	}

