/* Start : Top Horizontal menu */
/* style the outer div to give it width */
.nav {
	height:26px; 
	position:relative; 
	font-family:"Trebuchet MS",Arial,Helvetica,sans-serif; 
	font-size:10px; 
	width:970px; 
	z-index:500;
	color:#e5ba47;
	float:left;
	text-align:left;
	border-bottom:2px solid #e2e2e2;	
}

.menu img {
	border:0;
}

.menu {
	height:26px; 
	font-family:"Trebuchet MS",Arial,Helvetica,sans-serif; 
	font-size:10px; 
	color:#e5ba47;
	float:left;
	text-align:left;
	margin:0 0 0 220px;
	background: url(../_media/images/menu-bkg.gif) no-repeat #f5af32; 
	width:710px;
	padding-left:40px;	
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none; 
	height:26px; 
}

/* style the sub-level lists */
/*.menu ul ul {
	width:15em;
}*/

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu ul li {
	float:left;
	height:26px;
	line-height:26px;
	padding:0;	
	font-family:"Trebuchet MS",Arial,Helvetica,sans-serif; 
	font-size: 10px;
	color:#FFFFFF;	
	/*font-weight:bold		*/
}

/* style the sub level list items */
.menu ul ul li {
	display:block;
	width:12em;
	height:auto;
	position:relative;
	line-height:1em;	
}
.menu_selected {
	color:#FFFFFF;
}


/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	float:left;
	height:100%;
	text-decoration:none;
	background:#f5af32;
	padding:0;
	font-family:"Trebuchet MS",Arial,Helvetica,sans-serif; 
	font-size:11px;
	color:#643228;
	padding:0 10px 0 10px;
	text-transform:uppercase;	
}

.menu a.multi, .menu a.multi:visited {
	background:#f5af32 url(/_media/images/arrow-menu.gif) no-repeat right;
}

#company.menu li a.multi {
	color:#ff0000;
	background:#643228 url(/_media/images/arrow-menu-hover.gif) no-repeat right;
}

/* style the sub level links */
.menu ul ul a, .menu ul ul a:visited {
	display:block;
	background:#643228; /*sub color*/
	width:150px; /* width of sub menu*/
	height:100%;
	line-height:1.2em; 
	/*padding:0.5em 1em;*/
	padding:5px 5px 5px 12px;
	font-family:"Trebuchet MS",Arial,Helvetica,sans-serif; 
	font-size:12px;
	color:#fff; 
	font-weight:normal;
	border-bottom:1px #BD8947 solid;
	text-transform:capitalize;
}

.menu ul ul a.multi2, .menu ul ul a.multi2:visited {
	background:#643228 url(/_media/images/arrow-menu-sub2.gif) no-repeat right;
}

.menu ul li a.selected {
	color:#fff;
	background:#643228;
}

.menu ul table ul a, .menu ul table ul a:visited  {
	width:15em; /* width of sub menu*/
	w\idth:15em;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position:absolute; 
	left:0; 
	top:0; 
	font-size:1em; 
	z-index:-1;
}

.menu ul ul table {
	lef\t:-1px;
}

.menu ul ul table ul.left {
	margin-lef\t:2px;
}

.menu li:hover {
	position:relative;
}

* html .menu a:hover {
	position:relative;
}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#643228;
}

/* style the fourth level background */
.menu ul ul ul ul a, .menu ul ul ul ul a:visited {
	background:#ddd;
}

/* style the sub level 1 background */
.menu ul :hover a.sub1 {
	background:#ccc;
}

/* style the sub level 2 background */
.menu ul ul :hover a.sub2 {
	background:#ddd;
}

/* style the level hovers */
/* first */
.menu a:hover {
	color:#fff;
	background:#643228;
}

.menu :hover > a {
	color:#fff;
	background:#643228;
}

.menu :hover > a.multi {
	color:#fff;
	background:#643228 url(/_media/images/arrow-menu-hover.gif) no-repeat right;
	/*padding-right:10px;*/
}

/* second */
.menu ul ul a:hover{color:#fff;background:#BD8947;}
.menu ul ul :hover > a {color:#fff;background:#BD8947;}

/*.menu ul ul a.multi2:hover{color:#fff;background:#BD8947 url(/_media/images/arrow-menu-sub2.gif) no-repeat right;}*/
.menu ul ul :hover > a.multi2 {color:#fff;background:#BD8947 url(/_media/images/arrow-menu-sub2.gif) no-repeat right;}

/* third */
.menu ul ul ul a:hover {background:#BD8947;}
.menu ul ul ul :hover > a {background:#BD8947;}

/* fourth */
.menu ul ul ul ul a:hover {background:#eee;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	/*height:0;*/
	top:26px;
	left:0;
	width:150px;
	padding:0;
	margin:0;
}

/* position the third level flyout menu */
.menu ul ul ul{
	left:165px;
	top:0;
	width:14em;
}

.menu ul ul ul a, .menu ul ul ul a:visited {
	border:1px #BD8947 solid;
	border-width:0 1px 1px 1px;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-14em;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility:visible; 
	height:auto; 
	padding-bottom:3em; 
	/*background:transparent url(images/trans.gif);*/
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}

/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{visibility:hidden;}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{visibility:visible;}

/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {visibility:visible;}

/* End : Top Horizontal menu */


/** START : TABBED MENU **/

#main {
	border: 1px solid #C8C7C3;
	clear: both;
}

#contents {
	padding: 1em;
	background: #FFFFFF;
	min-height:60px;
}

#header {
	position: relative;
	width: 100%;
	height: 3em;
	 /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

#header ul#primary {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: -1px;
/* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

#header ul#primary li  {
	display: inline;
	list-style: none;
}

#header ul#primary a,#header ul#primary span,#header ul#primary a.current {
	width: 8em;
	display: block;
	float: left;
	/*padding: 4px 0;*/
	margin: 1px 2px 0 0;
	text-align: center;
	font-family: tahoma, verdana, sans-serif;
	font-size: 100%;
	text-decoration: none;
	color: #333;
}

#header ul#primary span,#header ul#primary a.current,#header ul#primary a.current:hover {
	border: 1px solid #C8C7C3;
	border-bottom: none;
	background: #FFFFFF;
	padding:0 0 2px 2px;
	margin-top: 0;
	text-align:center !important;
	width: 8em;
	display: block;	
	float: left;	
}


#header ul#primary a.current:hover {
	border: 1px solid #C8C7C3;
	border-bottom: none;
	background: #FFFFFF;
	padding:0 0 2px 2px;
	margin-top: 0;
	text-align:center !important;
	width: 8em;
	display: block;	
	float: left;
	color:#000000;	
}

#header ul#primary a {
	background: #FFFADB;
	border: 1px solid #C8C7C3;
	border-bottom: none;
}

#header ul#primary a:hover {
	margin-top: 0;
	border-color: #C8C7C3;
	background: #BD8947;
	padding-bottom: 2px;
	color:#ffffff;
}

/** END : TABBED MENU **/


/*Start : Home page left nav*/
.navleft {
	width:225px;
	height:195px;
	background-color:#643228;
	float:left;
	z-index:1000;
	padding-top:5px;
}
/* remove all the bullets, borders and padding from the default list styling */
.navleft ul {
	padding:0;
	margin:0;
	list-style-type:none;
	width:225px;
}
/* position relative so that you can position the sub levels */
.navleft li {
	position:relative;
	background:#643228 url(../_media/images/menu-border.gif) bottom no-repeat;
	height:26px;
	^height:24px;
}
.navleft ul ul li a{text-transform:capitalize !important;}
/* style the links */
.navleft a, .navleft a:visited {
	display:block;
	text-decoration:none;
	height:25px;
	line-height:25px;
	^height:23px;
	^line-height:23px;
	width:225px;
	color:#fff;
	text-indent:13px;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	font-size:11px;
}
/* style the link hover */
.navleft a:hover {
	color:#fff;
	background:#643228;
}

.navleft a.sub:hover {
	color:#fff;
	/*background:#643228 url(../_media/images/menu-arrow.gif) right no-repeat;*/
	background:#643228 url(../_media/images/menu-arrow.gif) 5px no-repeat;
	^background:#643228 url(../_media/images/menu-arrow.gif) 5px 0px no-repeat;
}

.navleft :hover > a {
	color:#fff;
	background:#643228;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.navleft ul ul {
	visibility:hidden;
	position:absolute;
	top:0;
	left:225px;
}
/* make the second level visible when hover on first level list OR link */
.navleft ul li:hover ul, .navleft ul a:hover ul {
	visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.navleft ul :hover ul ul {
	visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.navleft ul :hover ul :hover ul ul {
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.navleft ul :hover ul :hover ul {
	visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.navleft ul :hover ul :hover ul :hover ul {
	visibility:visible;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.navleft ul ul {
	visibility:hidden;
	position:absolute;
	top:0;
	left:225px;
	background:url(../_media/images/menu-level-2-bg.png) repeat-y;
	z-index:10000;
}
.navleft ul ul li{background-color:transparent;z-index:10000;}
/*End : Home page left nav*/
