
body {
	font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana,arial;		
}

/* outmost wrapper element */
div.scrollable {
    /* required 
     */
    position: relative;
    overflow: hidden;
    width:    713px;
    height:   50px;
    
    /* custom 
     */
	background-color:      #000;
	border:                1px solid #555;
    float:                 left;
    margin:                0px 0px 0px 5px;
    padding:               7px 0px 7px 0px;
	-moz-border-radius:    5px;
	-webkit-border-radius: 5px;
}

/* container for the scrollable items
 */
div.scrollable div.items {
    position: absolute;
    width:    20000em;
    height:   50px;
    clear:    both;
}

/* single item 
 */
div.items a, div.noitems a {
	width:  127px;
	height: 40px;
    
	border:        1px solid #555;
	color:         #555;
	cursor:        pointer;
    display:       block;
	font-family:   verdana;
    font-size:     12px;
	padding-left:  2px;
	padding-right: 2px;
	padding-top:   6px;
    text-align:      center;
	text-decoration: none;
    
    -moz-border-radius:    5px;
	-webkit-border-radius: 5px;
}

div.items a {
	float:       left;
    margin-left: 8px;
}

div.items a:hover, div.noitems a:hover {
   	border-color:#999;
	color:#999;	
}

div.item a:hover {
	color:#ccc;	
}

div.items a.active, div.noitems a.active {
	border-color:#0b71b1;
	color:#0b71b1;
	cursor:default;
	font-weight: bold;
}

/* next / prev buttons 
 */
a.prev, a.next {
	width: 18px;
	height:18px;
    
	border:     1px solid #555;
	color:      #555;
    cursor:     pointer;
    display:    block;
    font-size:  10pt;	
    margin-top: 23px;
    text-align: center;
    
    -moz-border-radius:    5px;
	-webkit-border-radius: 5px;
}
a.prev {
    float: left;
}
a.next {
    float: right;
}
a.prev:hover, a.next:hover {
	border-color: #999;
	color:        #999;
}
a.disabled {
	border-color: #222;
	color:        #222;
}
a.disabled:hover {
	border-color: #222;
	color:        #222;
    cursor: default;
}
