@charset "utf-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	background: #715942;
	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: #624E39;
}

a:link	{
	color: #180A01;
	text-decoration: underline;
}

a:visited	{
	color: #180A01;
	text-decoration: underline;
}

a:hover	{
	color: #F6F4F5;
	text-decoration: underline;
}

a:active	{
	color: #180A01;
	text-decoration: underline;
}

#container	{
	width: 950px;
	margin: 0 auto;
	text-align: left;
	background-color: #D7C9BB;

}

#header	{
	width: 950px;
	float: left;
	background-color:#CCFFFF;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
}

#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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#menu	{
	width: 950px;
	height: 20px;
	float: left;
	background-color:#AA8B6C;
	text-align: center;
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
}


#menu ul {
	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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#links	{
	width: 930px;
	float: left;
	background-color:#D7C9BB;
	padding: 10px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#624E39;
}


#content	{
	width: 940px;
	float: left;
	padding: 5px;
	background-color:#D7C9BB;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#624E39;
}

#footer1	{	
	width: 930px;
	float: left;
	background-color:#180A01;
	padding: 10px;
	text-align: center;
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
}

#footer1 p {
	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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#footer2	{
	width: 950px;
	float: left;
	background-color:#AA8B6C;
	text-align: center;
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
	/*display: none; */
}
#footer2 a {
	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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}



/*  multiple columns fit into a container for the main content area */
#column-container		{
	width: 930px;
	float: left;
	background-color:#D7C9BB;
	padding: 0px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
}

#column-container p {
	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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#column		{
	width: 290px;
	float: left;
	background-color:#D7C9BB;
	padding: 10px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#624E39;
}
/*  End of multiple columns fit into a container for the main content area */














/* Horizontal - Menu */
ul#menu-navlist
{
margin-left: 0;
padding-left: 0;
white-space: nowrap;
}

#menu-navlist li
{
display: inline;
list-style-type: none;
}

#menu-navlist a { 
padding: 0px 4px 2px 4px; 
}

#menu-navlist a:link, #menu-navlist a:visited
{
	color: #402020;
	background-color: #AA8B6C;
	text-decoration: none;
	font-weight:normal;
}

#menu-navlist a:hover
{
	color: #402020;
	background-color: #CCBAA8;
	text-decoration: none;
}







/* Vertical - Links */
#links-navcontainer { width: 250px; }

#links-navcontainer ul
{
margin-left: 0;
padding-left: 0;
list-style-type: none;
font-family: Arial, Helvetica, sans-serif;
}

#links-navcontainer a
{
	display: block;
	padding: 2px 2px 2px 10px;
	width: 225px;
	background-color: #AA8B6C;
	border: 0px solid #000;
}

#links-navcontainer a:link, #links-navlist a:visited
{
	color: #402020;
	text-decoration: none;
	font-weight:normal;
}

#links-navcontainer a:hover
{
background-color: #CCBAA8;
color: #402020;
}







/* =Hoverbox Code
----------------------------------------------------------------------*/

.hoverbox
{
	cursor: default;
	list-style: none;
}

.hoverbox a
{
	cursor: default;
}

.hoverbox a .preview
{
	display: none;
}

.hoverbox a:hover .preview
{
	display: block;
	position: absolute;
	top: -10px;
	left: -100px;
	z-index: 1;
}

.hoverbox img
{
	background: #fff;
	border-color: #aaa #ccc #ddd #bbb;
	border-style: solid;
	border-width: 1px;
	color: inherit;
	padding: 2px;
	vertical-align: top;
	width: 240px;
	height: 135px;
}

.hoverbox li
{
	background: #eee;
	border-color: #ddd #bbb #aaa #ccc;
	border-style: solid;
	border-width: 1px;
	color: inherit;
	display: inline;
	float: left;
	margin: 15px;
	padding: 5px;
	position: relative;
}

.hoverbox .preview
{
	border-color: #000;
	width: 400px;
	height: 225px;
}

/* =Internet Explorer Fixes
----------------------------------------------------------------------*/

.hoverbox a
{
	position: relative;
}

.hoverbox a:hover
{
	display: block;
	font-size: 100%;
	z-index: 1;
}

.hoverbox a:hover .preview
{
	top: -10px;
	left: -100px;
}

.hoverbox li
{
	position: static;
}
