/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	40px;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			1.6em;
	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:			.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 */
.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*/
}

/* ------- Search ------- */
li.sf-search {
	float:right !important;
	margin:0 !important;
	padding:0 !important;
	width:22%;
}
li.sf-search input {
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0, .1);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0, .1);
	box-shadow: 0 1px 3px rgba(0,0,0, .1);
	-moz-border-radius: 5px;
  	-webkit-border-radius: 5px;
	border-radius: 5px;
	background:#D2CFBA none no-repeat scroll left center;
	border:1px solid #ABA58D;
	color:#ABA58D;
	font-size:11px;
	margin-top:0.5em;
	padding:3px 5px;
	width:150px;
}
li.sf-search input:focus, li.sf-search input:hover {
	background-color:#dfddcf;
	color:#5F5F5F;
}
li.sf-search input#search_btn {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background:transparent url(bg_search_btn.png) no-repeat scroll center top;
	border:medium none;
	height:22px;
	text-indent:-9999px;
	width:39px;
}
li.sf-search input#search_btn:hover {
	background-position:center bottom;
}

/*-- CSS3 Dropdown Menu from http://www.webdesignerwall.com/ -- */
.sf-contener {
	margin:0;
	padding:0;
	background:#337dbb;
	position:relative;
	z-index:1;
}
.sf-menu{
	line-height:100%;
	margin:0 auto;
	padding:0;
	width:985px;
}
.sf-menu li {
	margin:0 /*40px 0 0*/;
	padding: 0;
	float: left;
	font-size:15px;
	color:#Fff;
	position: relative;
	list-style: none;
	text-transform:uppercase;
}

/* main level link */
.sf-menu a {
	color:#fff;
	display:block;
	font-weight:normal;
	margin:0;
	padding:13px 17px 12px;
	text-decoration:none;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:700;
}
.sf-menu a:hover {
	color:#00b5ea;
	text-decoration:none;
}

/* main level link hover */
.sf-menu  .current a {
	color:#00b5ea;
	text-shadow:0 1px 0 #dedbcd;
}
.sf-menu li:hover > a {
	color:#00b5ea;
}

/* sub levels link hover */
.sf-menu a:hover{
	color:#00b5ea;
}
.sf-menu ul a:hover {
	color:#00b5ea;
}

/* dropdown */
.sf-menu li:hover > ul {
	display: block;
}

/* level 2 list */
.sf-menu ul {
	display: none;
	margin: 0;
	padding: 0;
	width: 185px;
	position: absolute;
	top: 39px;
	left: 0;
	background: #337DBB;
	 box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	z-index: 99999;
}
.sf-menu ul li {
	float: none;
	margin: 0;
	padding: 0;
	color:#4D4A3D;
}
.sf-menu ul a {
	font-family: Verdana,Arial;
    font-size: 12px;
    font-weight: 100;
    height: auto;
    line-height: 1em;
    padding: 7px 10px 8px 17px;
    text-transform: none;
    width: 160px;
}

/* level 3+ list */
.sf-menu ul ul {
	left: 181px;
	top: -3px;
}


/* clearfix */
.sf-menu:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.sf-menu { display: inline-block; } 
html[xmlns] .sf-menu { display: block; }
 
* html .sf-menu { height: 1%; }