
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	/*position:absolute;
	left: 40px;
	overflow:hidden;
	width: 460px;
	height:50px;*/
	
	position			:absolute;
	height				: 39px;
	width				: 540px;
	text-align			: center;
	font-weight			: bold;
	overflow			: hidden;
	margin-left: 85px;
	margin-top: 1px;
	vertical-align:middle;
}

/*
	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;
	vertical-align:middle;
}

/* single scrollable item */
.scrollable p {
	float:left;
	margin:4px 7px 0px 7px;
	padding:2px;
	padding-bottom: 5px;
	border:0px solid #ccc;
	border-bottom:0px solid #575A5D;
	cursor:pointer;
	width:160px;
	height:25px;
	color:#575A5D;
	font-family:Arial,Helvetica,sans-serif;
	font-size:12px;
	line-height:10px;
	font-weight: bold;
	text-align: center;
	vertical-align:middle;
}

.iconActive {
	display: inline;
	margin-right: 5px;
}
.iconInactive {
	display: inline;
	margin-right: 5px;
}

.scrollable .iconActive {
	visibility:hidden;
	display: none;
}
.scrollable .iconInactive {
	visibility:visible;
	display: inline;
}

.scrollable p:hover{
	border-bottom:3px solid #e31818;
}

.scrollable p:hover .iconActive {
	visibility:visible;
	display: inline;
}
.scrollable p:hover .iconInactive {
	visibility:hidden;
	display: none;
}

/* active item */
.scrollable .active {
	border-bottom:3px solid #e31818;
	z-index:9999;
	position:relative;
}

/* active item */
.scrollable .active .iconInactive {
	visibility:hidden;
	display: none;
}

/* active item */
.scrollable .active .iconActive {
	visibility:visible;
	display: inline;
}

.leftScroll {
	float:left;
	margin-top: 3px;
}
.rightScroll {
	float:right;
	margin-top: 3px;
}



