/*****************************************************************************************************/
/* DROPDOWN */
#container #navigation ul.sf-menu ul {
	background-color: #1A7EC1;
	padding: 0;
	z-index: 50 !important;
}

ul.sf-menu ul li {
	padding: 0;
	background: none;
	margin: 0;
	border: 0 !important;
	height: auto !important;
}

#container #navigation ul.sf-menu ul a:hover {
	background: #77b0d4 !important;
	font-weight: normal !important;
}

#container #navigation ul.sf-menu ul a {
	background: #5ea8d9;
	z-index: 180 !important;
	padding: 12px !important;
	color: #fff !important;
	text-shadow:  -1px -1px #0071BC !important;
	font-size: 12px;
	border-bottom: 1px solid #91C1E1 !important;
	text-transform: none !important;
	font-weight: normal;
	text-align: left;
	width: 150px !important;
	min-height: 13px !important;
	height: auto !important;
	display: block !important;
}

/*** ESSENTIAL STYLES ***/
.sf-menu li ul {
	position: absolute !important;
	top:			-999em;
	background: none !important;
}

.sf-menu ul li {
}

.sf-menu li:hover { /* fixes IE7 'sticky bug' */
visibility: inherit;
}
.sf-menu li {
}
.sf-menu a {
}

#container #navigation .sf-menu li:hover ul,
#container #navigation .sf-menu li.sfHover ul {
	left:			0;
	top:			30px; /* match top ul list item height */
	z-index:		100 !important;
}
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 {
	position: absolute;
	left: 179px; /* match ul width */
	top: 0;
	z-index: 199 !important;
}
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;
}

/*** DEMO SKIN ***/
.sf-menu li li {
}
.sf-menu li li li {
}

/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	0;
	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;
}
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*/
}

/*** shadows for all but IE6 ***/
.sf-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;
}
.sf-shadow ul.sf-shadow-off {
	/*background: transparent;*/
}

.sf-sub-indicator {
	display: none !important;
}


/*****************************************************************************************/

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 850px;
	height:40px;

	/* custom decorations */
	border:1px solid #ccc;
	
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:850px;
	overflow: auto;
	padding: 10px 0 12px 0;
}

/* single scrollable item */
.scrollable p {
	float:left;
	text-align: center;
	margin: 0 !important;
	font-size: 19px;
	text-transform: uppercase;
	color: #333;
	border-right: 1px dotted #D9D9D9;
	padding: 2px 15px;
}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:25px !important;
	height:38px;
	margin-top: 2px;
	cursor:pointer;
	font-size:1px;
}

a.browse:hover {
	opacity: 0.7;
	filter:alpha(opacity=70);
}

/* right */
a.right 				{ position: relative; display: inline; float: left; background: transparent url('images/ico-right3.png') right top no-repeat; width:25px !important;}
a.right:hover 		{  }
a.right:active 	{  } 


/* left */
a.left				{ position: relative; display: inline; float: left; background: transparent url('images/ico-left3.png') left top no-repeat; width:25px !important; } 
a.left:hover  		{ ; }
a.left:active  	{  }


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	