@charset "utf-8";
/* CSS Document */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-image:url(../images/purpleBGlarge.jpg);
	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: 1001px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #663399; /* the auto margins (in conjunction with a width) center the page */
	border:5px ridge #fdd700;
	padding: 20px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	/*text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
	background: #663399; 
	padding: 10px 10px 10px 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
/*       L A Y E R S      */

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* remember that padding is the space inside the div box and margin is the space outside the div box */
/*
#mainContent {
	padding: 20px 20px; 
	background: #663399; 	
}
*/

#mainContent {
	padding: 10px 9px; 
	background: #663399; 	
}


#footer {
	padding: 10px 9px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #663399; 	
}

/*       N A V A G A T I O N      */

#centeredmenu 
{
   float: left;
   width: 100%;
   background:  #663399; 
   border-bottom: #000;
/*   background:#8B64B3;
   border-bottom:4px solid #AD0307;*/
   overflow: hidden;
/*   position:relative;*/   
}

#centeredmenu ul 
{
   clear: left;
   float: left;
   list-style: none;
   margin: 0;
   padding: 0;
   position: relative;
   left: 50%;
   text-align: center;
}

#centeredmenu ul li 
{
   display:block;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   right:50%;
}

#centeredmenu ul li a 
{
   display: block;
   margin: 0 0 0 1px;
   padding: 3px 10px;
   background: #663399; 
   color: #FFF;
   text-decoration: none;
   line-height: 1.3em;
}

#centeredmenu ul li a:hover 
{
   background: #8B64B3;
   color: #000;
}

#centeredmenu ul li a.active
{
   color: #FFF;
   background: #8B64B3;
   font-weight: normal;
}

#centeredmenu ul li a.active:hover 
{
   color: #000;
   background: #8B64B3;
   font-weight: normal;
   font-style:italic;
}

#layerNav ul 
{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#layerNav ul li
{
	display:inline;
	float:left;
}

#layerNav ul li a
{
	display: block;
	text-decoration: none;
	background: #663399; 
    color: #FFF;
	margin: 0 0 0 1px;
    padding: 3px 10px;
	line-height: 1.3em;			
}

