
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;


	/* custom decorations 
	border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;*/
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/

.nav_block {display:none;}
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	margin: 10px 0 10px 0;
}

.items .in_div {
	float:left;
	/* width:780px; */
}

/* single scrollable item */
.scrollable img {
	/* float:left; */
	margin-left:10px;
	margin-right:3px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	/*
	width:100px;
	height:75px; */
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
.over_div{
	float:left;
}
.br_r{
	/*border-left: 1px solid #BF6162; 
    padding-left: 20px;*/
}
.post_cont{
	/* float:right; */
	/* width:200px; */
	padding-left:10px;
	padding-right: 10px;
	overflow: hidden;
    margin-right: 11px;
}
.post_wimg{
	padding-left:10px;
	padding-right: 10px;
	overflow: hidden;
}
.p_title{
font-size: 14px;
font-weight: bold;

}
.p_meta {
font-size: 10px;
}
.p_content{
    font-size: 12px;
    padding-top:5px;
    padding-right: 15px;
}
.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;
}
#actions{
	width: 100px;
	float:right;
	margin-right:40px;
	}
.next {
	float:right;
	cursor:pointer;
}	
