/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.AWCSSscrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 660px;
	height:90px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.AWCSSscrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.AWCSSscrollable .items > div {
	float:left;
	
	width: 660px;
	height:90px;
	
}


/*
A default nav bar setup
*/
ul.AWCSSNavBar {
	width: 660px;
	float: left;
	margin: 0 0 3em 0;
	padding: 0;
	list-style: none;
	background-color: #eee;

	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
}
ul.AWCSSNavBar li {
	float: left;
}
ul.AWCSSNavBar li a {
	display: block;
	padding: 8px 15px;
	text-decoration: none;
	font-weight: bold;
	border-right: 1px solid #ccc;
}
ul.AWCSSNavBar li a.hover {
	color: #999;
	background-color: #fff;
}

ul.AWCSSNavBar li.normal {
	color: #333;
	background-color: #eee;
}

ul.AWCSSNavBar li.active {
	color: #fff;
	background-color: #333;
}
ul.AWCSSNavBar li a {
	color: inherit;
}


