/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/flyoutt.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* 
dpj - change inherited styling to accommodate leftnav. Basically restyle .content so it behaves like
the .subcontent. Content width changed to 200px, subcontent width change to be wider.
*/

.content {
	width:200px;
}
.content ul li {
	background:#fff;
	margin:0;
	padding:0;
}
/* make content narrower */
.content-1col {
	background-color:#f7f5e5;
	padding-bottom:20px;  /*added padding here for IE, it didn't like the margin on the bottom of .menu below */
	margin-bottom:0;
}
.corner-content-1col-top {
	background: #fff url(../img/bg_corner_subcontent_top_right.gif) no-repeat;
	width:200px;
}
.corner-content-1col-bottom {
	background:#fff url(../img/bg_corner_subcontent_bottom_right.gif) no-repeat;
	width:200px;
}
/* now make subcontent wider, this will be the main window */
.subcontent {
	width:750px;
}
.subcontent-box {
	width: 750px;
}
.corner-subcontent-top {
	background:url(../img/bg_corner_subcontent_top-wide.gif) no-repeat;
	width:750px;
}
.corner-subcontent-bottom {
	background:url(../img/bg_corner_subcontent_bottom-wide.gif) no-repeat;
	width:750px;
}



/* common styling */

.menu {
	font-family: arial, sans-serif;
/*	width:106px; */
/*	height:150px; */
	position:relative;
	margin:25px 5px 0 20px; /* changed margin-bottom to 0 for IE */
	font-size:11px;
	padding-bottom:20px;
}
.menu ul li a, .menu ul li a:visited {
	display:block;
/*	text-decoration:none; */
	color:#000;
	width:150px; 
	height:20px;
	text-align:left;
	border:1px solid #ccc;
	border-width:1px;
	background:#f7f5e5 url(../img/bg_bullet_arrow.gif) no-repeat 95%;
	line-height:19px;
	font-size:11px;
	padding-left:10px;
}
.menu ul {
	padding:0;
	margin:0;
	list-style-type: none;
}
.menu ul li {
	float:left;
	margin-right:1px;
	position:relative;
	list-style:none;
}
.menu ul li ul {
	display: none;
}
/* specific to non IE browsers */
.menu ul li:hover a {
	color:#fff;
	background:#89aab3;
}
.menu ul li:hover ul {
	display:block;
	position:absolute;
	top:0;
	left:161px;
	width:105px;
	z-index:10; /* to make flyout menu is displayed on top of other page content */
}
.menu ul li:hover ul li a.hide {
	background:#89aab3;
	color:#000;
}
.menu ul li:hover ul li:hover a.hide {
	width:150px;
}
.menu ul li:hover ul li ul {
	display: none;
}
.menu ul li:hover ul li a {
	display:block;
	background:#fff;
	color:#000;
	width:150px;
}
.menu ul li:hover ul li a:hover {
	background:#89aab3;
	color:#fff;
}
.menu ul li:hover ul li:hover ul {
	display:block;
	position:absolute;
	left:151px;
	top:0;
	color:#000;
}
.menu ul li:hover ul li:hover ul li a {
	display:block;
	width:200px;
	background:#dfc184;
	color:#000;
}
.menu ul li:hover ul li:hover ul li a:hover {
	background:#bd8d5e;
	color:#fff;
}
