@charset "utf-8";

.small {
	font-size: 9px;
}
/* CSS Document */

/* THIS IS THE MENU 
---------------------------------------------------------*/

/* Overall Box Properties */
#menu {
	font-family:"Lucida", Lucida Sans, Lucida Grande, Arial, Helvetica, sans-serif;
	width: 920px;
	margin: 0;
	border-bottom: 1px solid #FFFFFF;
	float: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 40px;
}

/* Type of Menu (Vertical vs. Horizontal) */
#menu ul {
	display: block;
	list-style: none;
	margin: 0;
	float: left;
	padding: 0;
}

/* Position of menu elements */
#menu ul li {
	position: relative;
	color: #fff;
	display: inline;
	float: left;
	margin-right: 18px;
	padding: 0;
}

/* Edit look of 1st level menu items */
#menu ul li a {
	display: block;
	float: left;
	text-decoration: none;
	font-size: 14px;
	color: #6e1f0e;
	/*background-color: #e9dedb;*/
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #6e1f0e;
	padding-top: 5px;
	padding-right: 35px;
	padding-bottom: 5px;
	padding-left: 5px;
}

#menu  ul li.end  {
	background-image: none;
}

/* Added specifically for Internet Explorer */
* html #menu ul li a {
	padding-top: 5px;
	padding-right: 35px;
	padding-bottom: 5px;
	padding-left: 5px;
	}

/* Sometimes Needed to Change Internet Explorer Hover */
#menu ul li a:hover {}

/* 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 {
	background-color: #e9dedb;
	color: #722a1b;
	background-image: none;
	padding-top: 5px;
	padding-right: 35px;
	padding-bottom: 5px;
	padding-left: 5px;

}

/* 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: 150px;
	height: auto;
	margin: 0;
	z-index: 2000;
	/*padding:10px 0px 0px 0px;	*/
}

/* Added specifically for Internet Explorer */
* html #menu ul li:hover ul {
	background: none;
}

#menu ul li ul li,
#menu ul li.more ul li {
	width: 150px;
	padding: 0;
	background-image: none;
	/*background-color: #FFFFFF;*/
	/*opacity: .7;
	filter: alpha(opacity=70);*/

}

/* Edit look of drop down 2nd level menu items */
#menu ul li ul li a {
	width: 150px;
	font-variant: normal;
	font-weight: normal;
	font-size: 11px;
	color: #6E1F0E;
	float: none;
	background-image: none;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 10px;
	background:white;
	/*opacity: .9;
	filter: alpha(opacity=90);*/
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	
}

#menu ul li ul li:hover {
	background-color: #fffffe;
	background-image: none;
}

#menu ul li ul li a:hover {
	background-color: #f6e8e5;
	background-image: none;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 10px;
}

#menu ul li ul li:hover > a {
	color: #722a1b;
	background-color: #f6e8e5;
	background-image: none;
	/*opacity: 1;
	filter: alpha(opacity=100);*/
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 10px;
}

#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: 150px;
}

#menu ul li:hover ul li:hover ul li,
* html #menu ul li ul li a { 
	width: 150px; 
}

#menu ul li:hover ul li:hover ul li a {
}

/* THIS IS THE MENU */
