/* root element for scrollable */
div.scrollable.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 300px;
	width: 523px;

}

/* root element for scrollable items */
div.scrollable.vertical div.items {
	position:absolute;
	/* this time we have very large space for height */	
	height:2000em;
	margin: 0px;
	left: 3px;
	top: -1px;
}

/* override item style defined in scrollable.css */
div.scrollable div.items div {
	float:none;
	margin:0px 0px;
}

/* single scrollable item */
div.scrollable div.items div {
		float:left;
	
	/* background image */
	background: #9d2127;
	
	
	/* text/font settings */
	color:#999;

	width:510px;
/*	height:86px;*/
	padding:8px 7px;
	font-size:70px;
	margin-right: 10px;	
	cursor:pointer;
}


/* mouseover state */
div.scrollable div.items div:hover {	
	background-position:-150px 0px;
}

/* clicked state */
div.scrollable div.items div:active {	
	background-position:-356px 0;
}

/* active item */
div.scrollable div.items div.active {	
	background-position:-220px 0;
	cursor:default;
}
/* 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(top.jpg) no-repeat;
	float:left;
	margin:0px 0px 0px 5px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px 0px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(bottom.jpg);
	clear:right;	
	margin:260px 0px 0px 5px;
}
/////////////////////////////////
/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin:200px 10px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(nav.jpg) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px; 
	background:url(nav.jpg) 0 0 no-repeat;     
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	

.content_table {
border:dashed;
border-color:#b02a31;
border-width:1.5px;
}
.content_table_text {
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	color: #ffa5aa;
	line-height:15px;
	text-align:justify;
}
.read_more {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	color: #fdb913;
	text-align:right;
}
.read_more a:link, a:visited, a:active {
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	color: #fdb913;
	text-decoration:none;
}
.read_more a:hover{
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	color: #fdb913;
	text-decoration:underline;
}

