/* CSS Document */
* {
	margin: 0px;
	padding: 0px;
	border: none;
}
body{
	margin: 0px;
	padding: 0px;
	color:#000;
	font-family:Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	background-color: #F2EBD9;
	background-image: url(images/parchment_bg.jpg);
	background-attachment: scroll;
	background-repeat: repeat-x;
	background-position: center;
}

div, img {
	margin: 0px;
	padding: 0px;
	border: none;
}
#container {
	width: 940px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-color: #FFFEFF;
}
#header {
	height: 30px;
    width: 670px;
    float: left;
	padding-top: 30px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	background-color: #FFFEFF;
	color: #F5F2EE;
    float:right;
   
} 
#logobox  {
	color: #F5F2EE;
}

#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 */
	font-family: Arial, Helvetica, sans-serif;
	color: #544838;
	font-size: 2.1em;
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
*/
#sidebar1 {
	float: left;
	width: 200px; /* top and bottom padding create visual space within this div  */
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
}
#sidebar1 h3, #sidebar1 p {
	margin-left: 10px;
	margin-right: 10px;
	font-family: Verdana, Geneva, sans-serif;
	color: #630;
	text-indent: 1.1em;
}
#menu {
	width: 200px;
	float: left;
	padding-top: 30px;
	padding-bottom: 10px;
}
#nav {
	list-style-type: none;
	width: 180px;
	font-size: 1em;
	float: left;
	list-style-image: none;
}

#nav li {
	float: left;
	display: block;
	position: relative;
	margin-top: 3px;
}
#nav li a {
	text-decoration: none;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 20px;
	display: block;
	width: 160px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #630;
	font-weight: bold;
	border-bottom-color: #630;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	margin-left: 10px;
}

#nav li a:hover {
	color: #CCC;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #600;
	text-decoration: none;
	background-color: #d4f357;
}

#nav li a:link {
	color: #630;
	display: block;
	text-decoration: none;
	}

#mainContent {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	height: auto;
	width: 660px;
	margin-left: 18px;
	float: right;
	padding-top: 65px;
} 
#mainContent p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1em;
	color: #333;
	line-height: 1.5em;
}

#footer {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #930;
	height: 40px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
#footer p {
	margin: 0;
	padding: 10px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	font-weight: normal;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 2em;
	font-weight: bold;
	color: #544838;
	line-height: 2.2em;
}

.h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	font-weight: bold;
	color: #544838;
	line-height: 2em;
}

.h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	font-weight: bold;
	color: #544838;
	line-height: 2em;
}
.h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	color: #544838;
	line-height: 2em;
}
.anchorlink {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	line-height: 1.1em;
	font-weight: bold;
	color: #930;
	text-decoration: none;
}
.img {margin: 10px;
 }