@charset "utf-8";
/* THIS IS THE MENU 
---------------------------------------------------------*/

/* Overall Box Properties */
#menu {
	float: left;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 13px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* Type of Menu (Vertical vs. Horizontal) */
#menu ul {
	display: block;
	list-style: none;
	margin: 0;
	float: left;
	padding:6px 0px 0px 0px
	
}

/* Position of menu elements */
#menu ul li {
	position: relative;
	color: #fff;
	display: inline;
	padding: 0;
	float: left;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #e4dcd2;
}

/* Edit look of 1st level menu items */
#menu ul li a {
	display: block;
	float: left;
	color: #b3300e;
	padding:0px 9px 0px;
	text-decoration: none;
	font-weight: normal;
	font-size: 14px;
}

/* Added specifically for Internet Explorer */
* html #menu ul li a {
	padding-top: 0px;
	padding-right: 9px;
	padding-bottom: 0px;
	padding-left: 9px;
	}

/* Sometimes Needed to Change Internet Explorer Hover */
#menu ul li a:hover {
	color: #000;
}

/* Position of Drop Down Elements */
#menu ul li ul {
	position: absolute;
	display: none;
}

/* Hover of the Main Menu */
#menu ul li:hover {
	position: relative;
	color: #fff;
}

/* Added specifically for Internet Explorer Hover */
#menu ul li:hover > a,
#menu li a:hover,
* html #menu li a:hover {
	color: #000000;
}

/* For Top Level Hover when on the second level (I think) */
#menu ul li:hover ul {
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
	width: 211px;
	height: auto;
	margin: 0;
	padding: 0;
	z-index: 2000;
	border-right: none; 
	background: #faf3e9 url(images/bg-drop.gif) repeat-x bottom;
}

/* Added specifically for Internet Explorer */
* html #menu ul li:hover ul {
	background-image: url(images/bg-drop.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#menu ul li ul li,
#menu ul li.more ul li {
	width: 211px;
	padding: 0;
	background-repeat: repeat-x;
	background-position: bottom;
}

/* Edit look of drop down 2nd level menu items */
#menu ul li ul li a {
	padding: 8px 0px 8px 10px;
	width: 200px;
	font-variant: normal;
	font-weight: normal;
	font-size: 12px;
	float: none;
	background-image: url(images/bg-drop-line.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
}

#menu ul li ul li:hover {
	background-image: url(images/bg-drop-line.gif);
	background-repeat: no-repeat;
	background-position: center bottom;

}

#menu ul li ul li a:hover {
	color: #000000;
	background: none;
	padding: 8px 0px 8px 10px;
}

#menu ul li ul li:hover > a {
	background: none;
	padding: 8px 0px 8px 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#menu ul li ul li ul,
#menu ul li:hover ul li ul { 
	display: none; 
}

#menu ul li ul li:hover ul,
#menu li.exp:hover ul,
#menu ul li:hover ul li:hover ul {
	position: absolute;
	display: block;
	left: 100%;
	top: 0px;
	z-index: 300;
	border-right: none;
	width: 211px;
}

#menu ul li:hover ul li:hover ul li,
* html #menu ul li ul li a { 
	width: 211px; 
}

#menu ul li:hover ul li:hover ul li a {
}

/* THIS IS THE MENU */
