
/* STYLE FOR HORIZONTAL MenuOne WITH FLYOUT */
/* IE6: FLYOUT WILL ONLY WORK WITH THE SUPPORT OF "menu-ie6.js" - READ INSTRUCTIONS IN FILE FOR CUSTOM CLASS NAMES */
/* IE6/IE7: CONDITIONALS ARE SET WITHIN THEIR OWN CSS FILES */

/* defaults */
#menuOne li {
position:relative;
list-style-type: none;
margin: 0 !important;
padding: 0;
float:left;
}
#menuOne ul {
margin: 0;
padding:0;
}
#menuOne ul li {
float: none;
}

/* label style */
#menuOne a {
display: block;
padding: 16px 15px 14px 15px;
color: #000;
text-decoration: none;
line-height:14px;
font-size: 14px; /* Need to be set here for IE */
letter-spacing:0.03em;
border-right:1px dotted #949599;
}
#menuOne a:hover {
color:#949599 !important;
}


/* Marker style */
/* For horizontal bar */
#menuOne li.show a {
	background-image:url(../images/bgd-marker-navbar.gif);
	background-position:top center;
	background-repeat:no-repeat;
color: #6E528E;
}
#menuOne li.show li a {
	background-image:none;
color: #000;
}

#menuOne li.show:hover,
#menuOne li.showh { 
}
#menuOne li.show a:hover { 
}

#menuOne li.show.parent:hover a,
#menuOne li.showh.parenth a { 
}
#menuOne li.show.parent a:hover { 
}

/* For pull-down and fly-out */
#menuOne li li.show {
}
#menuOne li li a.marker {
	background-image:url(../images/bgd-marker-pulldown.gif);
	background-position:0px center;
	background-repeat:no-repeat;
color: #6E528E;
}


/* Pull-down trigger style */
#menuOne .parent {
}
#menuOne .parent:hover,
#menuOne .parenth {
background-color: #f6efd6;;
}
#menuOne .parent:hover a,
#menuOne .parenth a {
}
/* Fly-out trigger style */
#menuOne li li.parent {
background-image: url(../images/bgd-flyer-trigger.gif);
background-position:99% center;
background-repeat:no-repeat;
background-color:transparent;
}
#menuOne li li.parent.show {
}

#menuOne li ul .parent:hover,
#menuOne li ul .parenth {
}


/* Pull-down box: positioning */
#menuOne ul {
position: absolute; 
top:44px;
left:-1px;
width:14em;
z-index:200;
}
/* Fly-out box: positioning */
#menuOne ul ul {
position: absolute; 
top:3px;
left:94%;
z-index:300;
}
/* Pull-down and fly-out boxes: style */
#menuOne ul {
background-color: #f6efd6;;
border-bottom:3px solid #d3bd7a;
}
#menuOne ul ul {
background-color: #f2e9cc;
}
#menuOne ul li a {
border:1px dotted #949599;
border-top:none;
font-size:13px;
padding-top:5px;
padding-bottom:5px;
}
#menuOne ul li a:hover {
border-bottom:1px solid #000;
}

/* Pull-down/Fly-out are hidden by default. */
/* Set to work for up to a 3 level menu, but can be increased unlimited */
#menuOne ul,
#menuOne li:hover ul ul,
#menuOne li:hover ul ul ul, 
#menuOne li.parenth ul ul, 
#menuOne li.parenth ul ul ul, 
#menuOne li.showh ul ul, 
#menuOne li.showh ul ul ul { 
display: none; 
}

/* Pull-down/Fly-out will display on hover of label */
#menuOne li:hover ul, 
#menuOne ul li:hover ul, 
#menuOne ul ul li:hover ul,
#menuOne li.parenth ul, 
#menuOne ul li.parenth ul, 
#menuOne ul ul li.parenth ul, 
#menuOne li.showh ul, 
#menuOne ul li.showh ul, 
#menuOne ul ul li.showh ul { 
display: block; 
}

