@charset "utf-8";
/* CSS Document */

/* style the outer div to give it width */
.menu { 
	clear: both;
	width: 948px;
	font-size: 1.1em;
	text-align: left;
	float: left;
}
	/* remove all the bullets, borders and padding from the default list styling */
	.menu ul { 
			margin: 0px;
			padding: 10px 5px 10px 0px;
	}

	/* style the sub-level lists */
	.menu ul ul { width: 150px;}

	/* 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 { line-height:3em;
		float:left;
		padding: 0px 10px 0px 5px;
		list-style: none;
	}

	/* style the sub level list items */
	.menu ul ul li { display:block; line-height:1.2em; height:auto;
		width: 150px;
		}

/* style the links for the top level */
.menu a, .menu a:visited {display:block; float:left;
			padding: 0px 0px 0px 10px;
			text-decoration: none;
			}

/* style the sub level links */
.menu ul ul a, .menu ul ul a:visited {display:block;height:100%;line-height:1.5em;}
* html .menu ul ul a, * html .menu ul ul a:visited  {width:14em; w\idth:12em;}


.bullet1  {
	background-image: url(../../images/bullet1.gif);
	background-repeat: no-repeat;
	background-position: 0px 12px;
	}
	.bullet1 a:link, .bullet1 a:visited  {
		color: #000000;
		}
	.bullet1 a:hover, .bullet1 a:active  {
		color: #a62a58;
		}
.bullet2  {
	background-image: url(../../images/bullet2.gif);
	background-repeat: no-repeat;
	background-position: 0px 12px;
	}
	.bullet2 a:link, .bullet2 a:visited  {
		color: #000000;
		}
	.bullet2 a:hover, .bullet2 a:active  {
		color: #882287;
		}
.bullet3  {
	background-image: url(../../images/bullet3.gif);
	background-repeat: no-repeat;
	background-position: 0px 12px;
	}
	.bullet3 a:link, .bullet3 a:visited  {
		color: #000000;
		}
	.bullet3 a:hover, .bullet3 a:active  {
		color: #c3b484;
		}
.bullet4  {
	background-image: url(../../images/bullet4.gif);
	background-repeat: no-repeat;
	background-position: 0px 12px;
	}
	.bullet4 a:link, .bullet4 a:visited  {
		color: #000000;
		}
	.bullet4 a:hover, .bullet4 a:active  {
		color: #668172;
		}


/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; left:1px; top:0; width:0; height:0; font-size:1em; z-index:-1;}


/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited { /* background:#FFFFFF; */}

.bullet1 ul li, .bullet1 ul ul li {background-color:#edd4dd;}
.bullet1 ul li:hover, .bullet1 ul ul li:hover {background-color:#a62a58;}

.bullet2 ul li, .bullet2 ul ul li {background-color:#e7d3e7;}
.bullet2 ul li:hover, .bullet2 ul ul li:hover {background-color:#882287;}

.bullet3 ul li, .bullet3 ul ul li {background-color:#efe9d4;}
.bullet3 ul li:hover, .bullet3 ul ul li:hover {background-color:#c3b484;}

.bullet4 ul li, .bullet4 ul ul li {background-color:#e0e6e3;}
.bullet4 ul li:hover, .bullet4 ul ul li:hover {background-color:#668172;}


/* style the level hovers */
/* first */
* html .menu a:hover {color:#000; position:relative; z-index:100;}
.menu li:hover {position:relative;}
.menu :hover > a {color:#000;}
/* second */
* html .menu ul ul a:hover {color:#000; position:relative; z-index:110;}
.menu ul ul li:hover {position:relative;}
.menu ul ul :hover > a {color:#000;}
/* third */
* html .menu ul ul ul a:hover { position:relative; z-index:120;}
.menu ul ul ul :hover > a {/*background:#c4ceac;*/}



/* 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:1.8em;left:0;width:auto;}

/* position the third level flyout menu */
.menu ul ul ul{ left:12em;top:0;width:auto;}


/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{visibility:visible; height:auto; padding-bottom:0px;}
/* 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;}

