
/*** ESSENTIAL STYLES ***/
.cl-menu, .cl-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.cl-menu {
	line-height:	1.0;
}
.cl-menu ul {
	position:		absolute;
	top:			-999em;
	width:			198px; /* left offset of submenus need to match (see below) */

}
.cl-menu ul li {
	width:			100%;
}
.cl-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.cl-menu li {
	float:			left;
	position:		relative;
}
.cl-menu a {
	display:		block;
	position:		relative;
}
.cl-menu li:hover ul,
.cl-menu li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
	z-index:		99;
}
ul.cl-menu li:hover li ul,
ul.cl-menu li.sfHover li ul {
	top:			-999em;
}
ul.cl-menu li li:hover ul,
ul.cl-menu li li.sfHover ul {
	left:			198px; /* match ul width */
	top:			0;
}
ul.cl-menu li li:hover li ul,
ul.cl-menu li li.sfHover li ul {
	top:			-999em;
}
ul.cl-menu li li li:hover ul,
ul.cl-menu li li li.sfHover ul {
	left:			198px; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.cl-menu {
	float:			left;
	background-color:#8F8D82;
}
.cl-menu a {
	border-bottom: 4px solid #37352F;
	padding: 		6px;
	color:#000000;
	text-decoration:none;
}
.cl-menu a, .cl-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#000000;
}
.cl-menu li {

}
.cl-menu li li {
	background:		#201A04;
}
.cl-menu li li li {
	background:		#201A04;
}
.cl-menu li:hover, .cl-menu li.sfHover,
.cl-menu a:focus, .cl-menu a:hover, .cl-menu a:active {
	background:		#A6A59C;
	outline:		0;
}

/*** arrows **/
.cl-menu a.cl-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.cl-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			4px; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('../images/arrows-000000.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .cl-sub-indicator {  /* give all except IE6 the correct values */
	top:			4px;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .cl-sub-indicator,
a:hover > .cl-sub-indicator,
a:active > .cl-sub-indicator,
li:hover > a > .cl-sub-indicator,
li.sfHover > a > .cl-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

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

/*** shadows for all but IE6 ***/
.cl-shadow ul {
	background:	url('../images/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;
}
.cl-shadow ul.cl-shadow-off {
	background: transparent;
}


/*** adding sf-vertical in addition to sf-menu creates a vertical menu ***/
.cl-vertical, .cl-vertical li {
	width:	198px;
	
}
/* this lacks ul at the start of the selector, so the styles from the main CSS file override it where needed */
.cl-vertical li:hover ul,
.cl-vertical li.sfHover ul {
	left:	200px; /* match ul width */
	top:	0;
}

/*** alter arrow directions ***/
.cl-vertical .cl-sub-indicator { background-position: -10px 0; } /* IE6 gets solid image only */
.cl-vertical a > .cl-sub-indicator { background-position: 0 0; } /* use translucent arrow for modern browsers*/

/* hover arrow direction for modern browsers*/
.cl-vertical a:focus > .cl-sub-indicator,
.cl-vertical a:hover > .cl-sub-indicator,
.cl-vertical a:active > .cl-sub-indicator,
.cl-vertical li:hover > a > .cl-sub-indicator,
.cl-vertical li.sfHover > a > .cl-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}