/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 440px;	
	height:192px;	
	
	/* custom decorations */
	padding:4px 0;
/*	border:1px outset #ccc;
	background-color:#efefef;		*/		
}

/* 
	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.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:5px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:100px;
	padding:0px;
/*	background-color: #ddd;*/
	margin-right: 10px;	
	/*-moz-border-radius:5px;*/
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	/*background-color:#fff;*/
}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}
div.scrollable div.items div.name a{
	/*color:#fff;*/
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:10px;
	height:28px;
	background:url(img/left_arrow.png) no-repeat;
	float:left;
	margin:44px 0;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -28px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(img/right_arrow.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../img/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	

/**************** right menu - categories *********************/
p {
  line-height: 1.5em;
}

ul#fincast, ul#fincast ul {
  list-style-type:none;
  margin: 0;
  padding: 0;
  width: 100%;
}

ul#fincast a {
  display: block;
  text-decoration: none;	
}

ul#fincast li {
  margin-top: 1px;
}

ul#fincast li a {
  color: #AD1818;	
  padding: 0.5em;
  font-weight:bold;
}

ul#fincast li a:hover {
  background: #E5E5E5;
}

ul#fincast li ul li a {
  color: #000;
  padding-left: 20px;
  font-weight:normal;
}

ul#fincast li ul li a:hover {
  background: #E5E5E5;
  border-left: 5px #E5E5E5 solid;
  padding-left: 15px;
}

.code { border: 1px solid #ccc; list-style-type: decimal-leading-zero; padding: 5px; margin: 0; }
.code code { display: block; padding: 3px; margin-bottom: 0; }
.code li { background: #E5E5E5; border: 1px solid #ccc; margin: 0 0 2px 2.2em; }
.indent1 { padding-left: 1em; }
.indent2 { padding-left: 2em; }

a.more { color:#fff !important}

/*********************** fincast *********************************/
.fincast .image { float:left; margin:0 10px 0 0}
.fincast .image { width:120px; height:120px; overflow:hidden}
.fincast h2 {font:Arial, Helvetica, sans-serif; font-size:12px}
.fincast .details {
	float:left;
	padding-top:5px;
	font:Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:140%;
	color:#000000;
	width:300px;
	margin-bottom:20px;
 
}

.fincast .company { /*color:#FFF*/}
.fincast .name { margin-bottom:10px}
.fincast .name a { /*color:#fff;*/ font-weight:bold}

.fincast-live-list { list-style:decimal; margin-left:0px}
.fincast-live-list li { margin-bottom:10px}
.fincast-live-list li a{ /*color:#FFF;*/}
.fincast-live-list li a:hover { text-decoration:underline; color:#DDD}
