/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
.sf-menu > li {
	float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
	left: 100%;
}


/*** DEMO SKIN ***/
.sf-menu {
	/*float: left;
	margin-bottom: 1em;*/
}
.sf-menu ul {
	/*box-shadow: 2px 2px 6px rgba(0,0,0,.2);*/
	/*min-width: 12em; *//* allow long menu items to determine submenu width */
	/**width: 12em; *//* no auto sub width for IE7, see white-space comment below */
}
.sf-menu a {
	/*border-left: 1px solid #fff;*/
	/*border-top: 1px solid #dFeEFF; *//* fallback colour must use full shorthand */
	/*border-top: 1px solid rgba(255,255,255,.5);
	padding: .75em 1em;*/
	/*text-decoration: none;*/
	zoom: 1; /* IE7 */
}
.sf-menu a {
	/*color: #13a;*/
}
.sf-menu li {
	/*white-space: nowrap; /* no need for Supersubs plugin */
	/**white-space: normal; *//* ...unless you support IE7 (let it wrap) */
	/*-webkit-transition: background .2s;
	transition: background .2s;*/
	background-image: url(../images/sub_navi.gif);
	height: 30px;
	width: 156px;
	list-style-position: inside;
	list-style-type: none;
	font-weight: bold;
	text-align: center;
	padding-top: 10px;
	background-position: center bottom;
}
.sf-menu li .current a:hover {
	background-image: url(../images/sub_navi.gif);
	height: 30px;
	width: 156px;
	-webkit-transition: none;
	transition: none;
	background-position: center center;
	padding-top: 10px;
}
.sf-menu li .sub {
	/**white-space: normal; /* ...unless you support IE7 (let it wrap) */
	/*-webkit-transition: background .2s;
	transition: background .2s;*/
	background-image: url(../images/sub_navi.png);
	height:24px;
	width: 190px;
	list-style-position: inside;
	list-style-type: none;
	font-weight: bold;
	text-align: center;
	background-position: center top;
	padding-top: 5px;
	background-repeat: no-repeat;
	padding-bottom: 5px;
	margin: 0px;
}
.sf-menu li .sub a:hover {
	background-image: url(../images/sub_navi_h.png);
	height: 29px;
	width: 190px;
	-webkit-transition: none;
	transition: none;
	background-position: center top;
	padding-top: 5px;
	text-align: center;
	padding-bottom: 0px;
	margin-top: -5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}


