/* CSS Document */
*{
	padding:0;
	margin:0;
}

a { color: #990000;}
a:visited { color: #2255FF;}

ul, ol{
	margin:30px;
}

body{ /*The area in the central text area*/
	background: #CECFC1;
	background-image:url('images/bg/new_bestiarybg.jpg');
	font-size:0.9em;
	font-family:Verdana;
	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: #000000;
}


.oneColElsCtrHdr #container {
	background: #F7F7F5;
	background-image:url('images/bg/main_bg.jpg');
	margin-left: 2%;
	margin-right: 2%;
	margin: 20 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

h1 { 
	font-size:20.0pt;
	font-weight: bold;
}
h2 { 
	font-size:18.0pt;
	font-weight: normal;
}

ul#nav{
	margin:0 0 20px 0;
	height:40px;
	line-height:45px;
	font-size:1.6em;
	font-family:"Times New Roman";
	overflow:hidden;
}
ul#nav li{
	display:inline;
	list-style-type:none;
	text-transform:uppercase;
	margin:0 20px 0 0;
}
ul#nav li a:link, ul#nav li a:visited{
	color:#993300;
	text-decoration:none;
}
ul#nav li a:hover{
	color:#3f3e3a;
}
ul#nav li.selected{
	border-bottom:1px dotted #8b7f73;
}
ul#footerNav{
	font-family:"Times New Roman", serif;
	font-size:1em;
	text-transform:uppercase;
	margin:0 0 10px 0;
}
ul#footerNav li{
	display:inline;
	margin:0;
	padding:0 10px 0 5px;
	border-right:1px solid #958d83;
}
ul#footerNav li.last{
	border-right:none;
}
ul#footerNav li a:link, ul#footerNav li a:visited{
	color:#5e534f;
	text-decoration:none;
}
ul#footerNav li a:hover{
	color:#453e3b;
}



.oneColElsCtrHdr #header { 
	background: #e7e5d2; # Header for the page title
	padding: 0 10px 0 20px;  /* 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. */
} 
.oneColElsCtrHdr #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 */
}
.oneColElsCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.oneColElsCtrHdr #footer { 
	padding: 10px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	} 
.oneColElsCtrHdr #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 */
}
