/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	/* height: 222px;	 */
	
	border-top:1px solid #bf6162;	
}

/* root element for scrollable items */
.scrollable .items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.scrollable .item {
	border-bottom:1px solid #ddd;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:180px;
}

/* elements inside single item */
.scrollable .item img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.scrollable .item h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	margin:30px 0 10px 0;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
	cursor:pointer;
}	
.post_cont{
	/* float:right; */
	width:200px;
	padding:10px;
}
.p_title{
font-size: 14px;
font-weight: bold;
border-bottom:1px solid #fcfcfc;
}
.p_meta {
font-size: 10px;
}
.p_content{
font-size: 12px;
}
.clearfix{
	clear:both;
}
.fl_l{
	float:left;
}
.fl_r{
	float:right;
}
.mar_10{
	margin:10px;
}
.prev{
	float: right;
	padding-right: 5px;
	border-right: 1px solid #bf6162;
	margin-right: 5px;
	margin-bottom: 10px;
	cursor:pointer;
}