
/*** ESSENTIAL STYLES ***/
.dropdown, .dropdown * {
	margin:			0;
	padding:		0;
	list-style:		none;
	vertical-align: middle;
}
.dropdown {
	line-height:	1.0;
}
.dropdown ul {
	position:		absolute;
	top:			-999em;
	width:			100%;/*10em;  left offset of submenus need to match (see below) */
}
.dropdown ul li {
	width:			100%;
}
.dropdown li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.dropdown li {
	float:			left;
	position:		relative;
}
.dropdown a {
	display:		block;
	position:		relative;
}
.dropdown li:hover ul,
.dropdown li.sfHover ul {
	left:			0;
	top:			3.5em; /* match top ul list item height */
	z-index:		99;
}
ul.dropdown li:hover li ul,
ul.dropdown li.sfHover li ul {
	top:			-999em;
}
ul.dropdown li li:hover ul,
ul.dropdown li li.sfHover ul {
	left:			100%; /* 10em; match ul width */
	top:			0;
}
ul.dropdown li li:hover li ul,
ul.dropdown li li.sfHover li ul {
	top:			-999em;
}
ul.dropdown li li li:hover ul,
ul.dropdown li li li.sfHover ul {
	left:			100%; /* 10em; match ul width */
	top:			0;
}

ul.dropdown li ul li{
	height: 40px;
	width: 200px;
	
	/* left:			-30%; */
}

ul.dropdown li ul li.codes{width: 250px;}

/*** DEMO SKIN ***/
.dropdown {
	float:			left;
/*	margin-bottom:	1em;*/
}
/*.dropdown ul {
	box-shadow: 2px 2px 6px rgba(0,0,0,.2);
}*/
.dropdown a {
	/* border-left:	1px solid #fff;
	border-top:		1px solid #FFF; */
	top: 20%;
	padding: 		0em 0em 0em 0em;
	text-decoration:none;
}
/*.dropdown a.fl{border-left:0px;}*/
.dropdown a, .dropdown a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#fff;
}
.dropdown li {
	background:		#EE3E33;
}
.dropdown li li {
	background:		#EE3E33;
}
.dropdown li li li {
	background:		#EE3E33;
}
.dropdown li:hover, .dropdown li.sfHover{
	background:		#AC241C;
	outline:		0;
}

/* .dropdown a.maincat:focus, .dropdown a.maincat:hover, .dropdown a.maincat:active {
	background:		#EE3E33;
} */

/*** arrows **/
.dropdown a.sf-with-ul {
	padding-right: 	2.24em;
	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/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:			.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 */
.dropdown ul .sf-sub-indicator { background-position:  -10px 0; }
.dropdown ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.dropdown ul a:focus > .sf-sub-indicator,
.dropdown ul a:hover > .sf-sub-indicator,
.dropdown ul a:active > .sf-sub-indicator,
.dropdown ul li:hover > a > .sf-sub-indicator,
.dropdown ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}
