/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 730px;	 
	height:420px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#post {	
	position:absolute;
	width:20000em;	
	clear:both;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:314px;	
}



/* single item */
#post div {
	float:left;
	width:730px;
	height:320px;
	cursor:pointer;
}

/* style when mouse is over the item */
#post div.hover {
}

/* style when element is active (clicked) */
#post div.active {
	cursor:default;
}

#post h3, #post p, #post span {
}

#post h3 em {
	font-style:normal;
}

.leftP {
width:150px;
height:308px;
overflow:auto;
border:1px solid #000000;
float:left;
margin-right:10px;
padding:5px;
}
.rightP {
width:150px;
height:308px;
overflow:auto;
border:1px solid #000000;
float:left;
margin-left:10px;
padding:5px;
}
.leftImg {
width:185px;
height:320px;
float:left;
}
