/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 905px;	
	height:210px;	
	/* custom decorations */
	padding:10px 0;		
	margin: 0 auto;
	margin-bottom:10px;
	border-bottom: dotted 2px #ffd204;margin-top: 10px;
	
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.scrollable_items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:0px;
}

/* single scrollable item */
div.scrollable div.scrollable_items div.course {
	width:274px;
	float:left;padding-left: 13px;padding-right: 15px;margin-top: 5px;
	border-right: dotted 2px #ffd204;
	position:relative;
	height: 210px;
}

/* active item */
div.scrollable div.scrollable_items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(/images/scrollable/left.png) no-repeat;
	float:left;
	margin: 100px 0 0 10px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/images/scrollable/right.png);
	clear:right;	
}

#courseboxes {clear:both;overflow:hidden;}

.course {
position:relative;
overflow:hidden;
}

.scrollable_items .course, 
{


	float:left;
	padding-left: 23px;
	padding-right: 25px;
	margin-top: 21px;
	border-bottom: dotted 2px #ffd204;
	position:relative;
}
.scrollable_items .course .coursetitle a, .coursedemo a {color:#03C;font-weight:bold;text-decoration:underline;}
.scrollable_items .course .coursedesc {font-size: 11px;	line-height: 150%;}
.courseprice {position: absolute;font-family:Arial-narrow, Helvetica, sans-serif;bottom: 30px;right: 10px;color: #a5a7ab;font-size: 45px;font-weight:bold;letter-spacing: -1px;}
.courseprice .dollarsign {font-size: 32px;}
.coursedetailslink {margin-top: 2px;color: #000000;font-size:11px;font-weight:bold;}
.courseenrollnow {position: absolute;left: 5px;bottom: 3px;}
.courseenrollnow a {display:block;width: 136px;height: 32px;background: url(/images/mastersprite.png) no-repeat;background-position:-935px -199px;}
.coursedemo {position: absolute;right: 22px;bottom: 12px;font-size: 11px;}
.coursedemo a {color:#990000;}




/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin: 0px auto;
	height:20px;
	width: 150px; 
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/images/scrollable/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	



