/* CSS Document */

a	{
	color: #77513B;
	text-decoration: none;
	}
	
a:hover {
	color: #2d190b;
	}
	
a:visited {
	color: #77513B;
	}
	

	
	
	
/* Navigation Layout
--------------------------------------------------------------------------------------- */
#navigation_box
	{
	position: relative;
	float: left;
	background-color: #2d190b;
	width: 778px;
	height: 34px;
	}
	
#navigation
	{
	position: absolute;
	top: 5px;
	left: 60px;
	}

.menus ul
	{
	list-style-type: none;
	padding: 0;
	margin: 0;
	}
	
/* make the top level links horizontal and position relative so that we can position the sub level */
.menus li
	{
	float: left;
	position: relative;
	z-index: 100;
	}

/* use the table to position the dropdown list */
.menus table
	{
	position: absolute;
	border-collapse: collapse;
	z-index: 80;
	left: 0;
	top: 25px;
	}

/* style all the links */
.menus a, .menus :visited 
	{
	display: block;
	font-size: 10px;
	padding: 7px 0;
	font: bold 11px/11px "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #d2dcc4;
	background: #2d190b;
	text-decoration: none;
	padding-right: 50px;
	text-align: left;
	}

/* style the links hover */
.menus :hover
	{
	color: #a88a60;
	background: #2d190a;
	}

/* hide the sub level links */
.menus ul ul 
	{
	visibility: hidden;
	position: absolute;
	height: 0;
	}
/* make the sub level visible on hover list or link */
.menus ul :hover ul
	{
	visibility: visible;
	}
	
.sub
	{
	width: 180px;
	overflow: hidden;
	}
	