/*
------------------------------------------------------------
PLATT COLLEGE DROPDOWN CSS
------------------------------------------------------------
------------------------------------------------------------
By: Dante Ferrarini for KOSA MINORE ( www.kosaminore.com )
------------------------------------------------------------
*/

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


/* DROPDOWN SKIN */
.sf-menu {
	padding: 0px;
	margin: 0px;
}
.sf-menu a {
	padding-right: 24px;
	padding-left: 12px;
	display: block;
	height: 21px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #807E75;
	padding-top: 9px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 12px;
	margin-bottom: 2px;
	white-space: nowrap;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #E2D7B3;
	font-weight: normal;
	letter-spacing: 0.2ex;
	font-style: normal;
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color: #332F27;
}
.sf-menu a.last {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}



.sf-menu li {
	float: left;
	list-style-type: none;
	background-repeat: repeat-x;
	background-position: 0px 0px;
	display: block;
	height: 30px;
}
.sf-menu li.first {
	background-repeat: repeat-x;
	background-position: 0px -120px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #807E75;
}
.sf-menu li.last {
	background-repeat: no-repeat;
	background-position: right -240px;
	padding-right: 4px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #807E75;
}


.sf-menu li li {
	height: 30px;
	border-top-width: 1px;
	border-top-style: none;
	border-top-color: #CCCCCC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}

.sf-menu li li a {
	font-size: 11px;
	line-height: 11px;
	color: #000000;
	height: 21px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #F6F0E1;
}


.sf-menu li:hover, .sf-menu li.sfHover {
	outline: 0;
	color: #bc2328; /* red: FF2D32  */
	text-decoration: none;
	background-position: 0px -40px;
	background-color: #e9dbba;
}
.sf-menu li:hover a.top {
	color: #bc2328; /* red: FF2D32  */
}

.sf-menu li:active, .sf-menu a:active {
	background-position: 0px -80px;
}

.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	outline: 0;
	color: #bc2328; /* red: FF2D32  */
	text-decoration: none;
	background-color: #e9dbba;
}
.sf-menu li.first:hover, .sf-menu li.first.sfHover {
	background-position: 0px -160px !important;
}
.sf-menu li.last:hover, .sf-menu li.last.sfHover {
	background-position: right -280px!important;
}
.sf-menu li.first:active {
	background-position: 0px -200px !important;
}
.sf-menu li.last:active {
	background-position: right -320px!important;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	37px;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			0.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background-image: url(../layout/header_nav_arrows.png); /* 8-bit indexed alpha png. IE6 gets solid image only */
	background-repeat: no-repeat;
	background-position: -10px -100px;
}
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*/
	color: #FFFFFF;
}

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

