/*** ESSENTIAL STYLES ***/
#menud {
	margin: 0;
	padding: 30px 20px 0 0;
	text-align: right;
	font-family: "Trebuchet MS", Verdana, Arial, Sans-Serif;
	font-size: 13px;
	color: #fff;
}
#menud a {
	text-decoration: none;
	color: #fff;
}
#menud ul, #menud ul * {
	margin:			0;
	padding:		1px;
	list-style:		none;
	font-size: 		13px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
#menud ul ul {
	position:		absolute;
	top:			-999em;
	width:			175px; /* left offset of submenus need to match (see below) */
}
#menud ul ul li {
	width:			100%;
}
#menud ul li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
#menud ul li {
	float:			left;
	position:		relative;
}
#menud ul a {
	display:		block;
	position:		relative;
}
#menud ul li:hover ul,
#menud ul li.sfHover ul {
	left:			0;
	top:			1.5em; /* match top ul list item height */
	z-index:		99;
}
#menud ul li:hover li ul,
#menud ul li.sfHover li ul {
	top:			-999em;
}
#menud ul li li:hover ul,
#menud ul li li.sfHover ul {
	left:			175px; /* match ul width */
	top:			0;
}
#menud ul li li:hover li ul,
#menud ul li li.sfHover li ul {
	top:			-999em;
}
#menud ul li li li:hover ul,
#menud ul li li li.sfHover ul {
	left:			175px; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
#menud ul {
	float:			left;
	margin-bottom:	15px;
}
#menud ul a {
	text-decoration:none;
	color:			#fff;
}
#menud ul a, #menud ul a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#fff;
}
#menud ul li {
	background-image: url(../img/p.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding: 0 18px 0 22px;
}
#menud ul li li {
	background:		#317697;
	background-image: url(../img/p.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding: 0 18px 0 18px;
	border: 1px #ddd solid;
	text-align: left;
}
#menud ul li li li {
	background:		#317697;
	background-image: url(../img/p.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding: 0 18px 0 18px;
	border: 1px #ddd solid;
	text-align: left;
}
#menud ul li:hover, #menud ul li.sfHover {
	background-image: url(../img/p.gif);
	background-repeat: no-repeat;
	background-position: left center;
	outline:		0;
}
#menud ul a:focus, #menud ul a:hover, #menud ul a:active {
	outline:		0;
}
/*** arrows **/
#menud ul a.sf-with-ul {
	padding-right: 	0;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('img/del.gif') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
#menud ul ul .sf-sub-indicator { background-position:  -10px 0; }
#menud ul ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
#menud ul ul a:focus > .sf-sub-indicator,
#menud ul ul a:hover > .sf-sub-indicator,
#menud ul ul a:active > .sf-sub-indicator,
#menud ul ul li:hover > a > .sf-sub-indicator,
#menud ul ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url('../img/shadow.png') no-repeat bottom right;
	padding: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}
