
/*** ESSENTIAL STYLES ***/
.dsf-dropdownMenu, .dsf-dropdownMenu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.dsf-dropdownMenu {
	line-height:	1.0;
	font-family: Arial;
	font-size:12px;
}
.dsf-dropdownMenu ul {
	position:		absolute;
	top:			-999em;
	width:			22em; /* left offset of submenus need to match (see below) */
}
.dsf-dropdownMenu ul li {
	width:			100%;
}
.dsf-dropdownMenu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.dsf-dropdownMenu li {
	float:			left;
	position:		relative;
}
.dsf-dropdownMenu a {
	display:		block;
	position:		relative;
}
.dsf-dropdownMenu li:hover ul,
.dsf-dropdownMenu li.sfHover ul {
	left:			0;
	top:			1.5em; /* match top ul list item height */
	z-index:		99;
}
ul.dsf-dropdownMenu li:hover li ul,
ul.dsf-dropdownMenu li.sfHover li ul {
	top:			-999em;
}
ul.dsf-dropdownMenu li li:hover ul,
ul.dsf-dropdownMenu li li.sfHover ul {
	left:			22em; /* match ul width */
	top:			-5em;
}
ul.dsf-dropdownMenu li li:hover li ul,
ul.dsf-dropdownMenu li li.sfHover li ul {
	top:			-999em;
}
ul.dsf-dropdownMenu li li li:hover ul,
ul.dsf-dropdownMenu li li li.sfHover ul {
	left:			22em; /* match ul width */
	top:			-100%;
}

/*** DEMO SKIN ***/
.dsf-dropdownMenu {
	float:			left;
	margin-bottom:	1em;
}
.dsf-dropdownMenu a {
	border-left:	0px solid #fff;
	border-top:		0px solid #CFDEFF;
	padding: 		.25em 1em .25em 1em;
	text-decoration:none;
}
.dsf-dropdownMenu a, .dsf-dropdownMenu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#606060;
	font-weight:	bold;
}
.dsf-dropdownMenu li li a {
	padding: 		0.6em 1.1em 0.6em 1.1em;
}
.dsf-dropdownMenu li li a, .dsf-dropdownMenu li li a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#333;
	font-weight:	normal;
}

.dsf-dropdownMenu li {
	/* background:		#FFFFFF;
	 * 
	 */
	
}
.dsf-dropdownMenu li li {
	background:		#e7e7e7;
	font-size:		10px;
	/*
	height:         2.5em;
	//*/
	line-height:	1.5em;
	border-bottom: 1px solid #d3d3d3;
}
.dsf-dropdownMenu li li li {
	background:		#e0e0e0;
}
.dsf-dropdownMenu li:hover, .dsf-dropdownMenu li.sfHover,
.dsf-dropdownMenu a:focus, .dsf-dropdownMenu a:hover, .dsf-dropdownMenu a:active {
	/*
	background:		#e7e7e7;
	/**/
	color: 			#000000;
	outline:		0;
}

.dsf-dropdownMenu li li:hover, .dsf-dropdownMenu li li.sfHover,
.dsf-dropdownMenu li li a:focus, .dsf-dropdownMenu li li a:hover, .dsf-dropdownMenu li li a:active {
	background:		#e0e0e0;
	color: 			#000033;
	outline:		0;
}

.dsf-dropdownMenu li li li:hover, .dsf-dropdownMenu li li li.sfHover,
.dsf-dropdownMenu li li li a:focus, .dsf-dropdownMenu li li li a:hover, .dsf-dropdownMenu li li li a:active {
	background:		#efefef;
	color: 			#000033;
	outline:		0;
}

/*** arrows **/
.dsf-dropdownMenu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.25em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('arrows-ffffff.png') 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:			.45em;
	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 */
.dsf-dropdownMenu ul .sf-sub-indicator { background-position:  -10px 0; top: 0.75em; }
.dsf-dropdownMenu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.dsf-dropdownMenu ul a:focus > .sf-sub-indicator,
.dsf-dropdownMenu ul a:hover > .sf-sub-indicator,
.dsf-dropdownMenu ul a:active > .sf-sub-indicator,
.dsf-dropdownMenu ul li:hover > a > .sf-sub-indicator,
.dsf-dropdownMenu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.dsf-menuShadow ul {
	background:	url('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;
}
.dsf-menuShadow ul.dsf-menuShadow-off {
	background: transparent;
}
