/* CSS Document */

body,
html {
    margin:0;
    padding:0;
    background:#ddd;
    color:#000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
    }
body {
    min-width:768px;
    }
#wrap {
    background:#fff;
    margin:0 auto;
    width:768px;
    }
	
#header {
	background: #fff url("images/banner.jpg") no-repeat;
	height:100px;
	margin:0;
    }

#main {
    background:#fff;
    float:left;
    width:400px;
    }
#sidebar {
    background:#a5312b;
    float:right;
    width:340px;
    }
	
#footer {
    background:#000;
    clear:both;
    }
	
#main h3, #main p {
    padding:0 15px;
    }

.events {
    padding:0 30px;
    }

.partition {margin-left:15px;}

#main h2 {
padding:10px 5px 0 15px;
font-family:Georgia, "Times New Roman", Times, serif;
color:#8c501e;
font-size: 24px;
margin:0;
}
#sidebar ul {
    margin-bottom:0;
    }
#sidebar h3, #sidebar p {
    padding:0 0 0 15px;
	color:#fff;
    }
#footer p {
    padding:10px 0 10px 15px;
    margin:0;
	color: #e3cbaf;
    }
#navcontainer 
{
position:relative;
padding-bottom:2px;
margin: 0px;
}


#nav a:link#current, #nav a:visited#current
{
background-color: #8c501e;
color: #fff;
}

a:link { color:#a5312b;}
a:hover { color:#e3cbaf}

ul#nav {position:relative;top:0px;left:0px;margin:0 0 0 10px;padding:0;z-index:300;
padding-bottom:2px;
background-color: #fff;
color: #e3cbaf;
width: 755px;
text-align:left;
font-family: arial, helvetica, sans-serif;
}

ul#nav li {
list-style-type:none; 
margin:0;
padding:0;
float:left;
display: inline;
}


ul#nav  a
{
text-decoration:none;
display:block;
color: #000;
margin:0;
padding:4px 13px;
}

ul#nav li.active a, ul#nav li a:hover {
background-color: #8c501e;

  color: #fff;
  }
/*  Submenu Navigation  **************************************************************/


/*Clears the floated menu items.
Assigned to a BR tag placed just before
menuwrapper's closing DIV tag*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}
/*
nav is the root UL and nav ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/
#nav, #nav ul {
	padding: 0;
	margin: 0;
}

/*
Sets width for Sub-Menu box and the List Items inside - in proportional em units. 
This allows the sub-menu width to expand if users resize the text in their browsers.
*/
#nav li ul, #nav ul li  {
	width: 18em;
	background-color: #fff;
}
/*
The sub-menu links. We set color and turn off the right border, which
would otherwise be inherited from the root link rule. We set top and 
bottom padding less than the root items and increas the left padding
to indent the sub-menu links a small amount in from the root links.
*/
#nav ul li a  {
	color: #565656;
	border-right: 0;
	padding: 1px 12px 1px 16px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#nav li ul {
	position: absolute;
	display: none;
	background-color: #fff;
	border: 1px solid #8c501e;

}

/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#nav li:hover ul, #nav li.p7hvr ul {
	display: block;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #nav ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#nav li:hover ul a, #nav li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#nav ul a:hover {
	background-color: #8c501e!important;
	color: #fff!important;
}
/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#nav li {width: auto;}
