@charset "utf-8";
body {
	font: 100% 'IM Fell DW Pica', serif;
	background:url(images/texture.jpg) repeat;
	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: #000;
}
h1 {
	margin-top: 21px;
	margin-bottom: 2px;
}
body h1, h2, h3, h4, h5 {
	font-family: 'Podkova', sans-serif;
}
img {
	border-style:none;
}
#container {
	width: 48em; 
	background: none;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header { 
	/* background-image: url(images/header.png);
	background-repeat: no-repeat;*/
	width: 768px;
	height: 64px;
	margin: 0px 5px;
	text-align:center;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: 'Homemade Apple', cursive;
	font-size:50px;
	line-height:64px;
	text-shadow: 4px 4px 2px #000, 6px 6px 2px #000, 8px 8px 2px #000;
	color: #F0A117;
}
#sidebar {
	margin-top: 21px;
	float: left; /* since this element is floated, a width must be given */
	width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 10px;
	text-align: center;
}
#mainContent {
	margin-left: 250px;
	padding: 0 20px;
	background: none;
}

#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
#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 */
}

#menubar {
	font-family: 'Podkova', sans-serif;
	background: #333;
	padding: 0;
	text-align:center;
	height:1.4em;
}

ul.MenuBar
{
	margin:0;
	padding:0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
}

ul.MenuBar a
{
	cursor: pointer;
	text-decoration: none;
	color: #000;
}

ul.MenuBar a.selected {
	font-weight:bold;
}

ul.MenuBar a:hover, ul.MenuBar a:focus
{
	/*font-size: 110%;*/
	color: #F0A117;
}

.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;
}

.subtitle {
	font: italic 125% 'Podkova', sans-serif;
}
