@charset "UTF-8";
/* CSS Document */

body {
	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: #512410;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	background-image: url(images/pattern_bg.jpg);
}
#container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #FFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#header {
	background-color: #FFF;
	height: 162px;
}
#header h1 {
	margin: 0; 
	color: #E3C585;
}
#mainContent {
	background: #FFF;
	line-height: 1.8em;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}

#mainContent img {
	padding: 5px;
}


#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF;
}
#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 */
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.7em;
	color: #9EA3A9;
	
}

#footer a {
	color: #9EA3A9;
}


#navcontainer ul
{
	padding-left: 0;
	margin: 0px;
	background-color: #CBDCDD;
	color: #512410;
	float: left;
	width: 100%;
	font-family: arial, helvetica, sans-serif;
}

#navcontainer ul li { display: inline; }

#navcontainer ul li a
{
	background-color: #CBDCDD;
	color: #512410;
	text-decoration: none;
	float: left;
	border-right: 1px solid #fff;
	padding-top: 0.2em;
	padding-right: .6em;
	padding-bottom: 0.2em;
	padding-left: .6em;
}

#navcontainer ul li a:hover
{
	background-color: #512410;
	color: #FFF;
}

h1 {
	font-size: 1.2em;
	font-family:"Times New Roman", Times, serif;
	color: #512410;
}

h2 {
	font-size: 1.2em;
	font-style: italic;
	font-family:"Times New Roman", Times, serif;
	line-height: .9em;
	color: #512410;
}

h3 {
	font-size: .8em;
	color: #512410;
}
 #bioTable td {
	 vertical-align: top;
	 padding-bottom: 20px;
 }
 
  #eventTable {
	padding-bottom: 25px;
 }
 
 #eventTable .title {
	 background-color: #512410;
	 font-weight: bold;
	 font-size: 1.1em;
	 padding-left: 8px;
	 color: #fff;
 }
 
  #eventTable .date {
	 background-color: #CBDCDD;
	 font-size: .9em;
	 padding-left: 8px;
 }
 
   #eventTable .location {
	 font-size: .75em;
	 padding-left: 38px;
	 font-style:italic;
	 color: #512410;
 }
 
    #eventTable .box {
	 border: 1px solid #CBDCDD;
 }
 
 a {
	color:  #512410;
 }
 
 #pricingTable td {
	 vertical-align: top;
	 border-bottom: 1px dotted #CBDCDD;
 }

