#picSlider{
	width:768px;
	float:right;
	height:115px;
	position:relative;
	margin-TOP:10px;
}

#wrap #middle #container #content #multContainer #picSlider div.scrollable{
	width:599px;
	height:75px;
}

#wrap #middle #container #content #multContainer #picSlider a.prevPage{
	width:15px;
	height:60px;
	padding-top:16px;
	padding-left:5px;
	display:block;
	font-size:30px;
	color:#58595B;
	position:absolute;
	cursor:pointer;
	left:0px;
	background:url(../img/bg_linkSlider.jpg) left top repeat-y;
}

#wrap #middle #container #content #multContainer #picSlider a.nextPage{
	width:15px;
	height:60px;
	padding-top:16px;
	padding-left:5px;
	display:block;
	font-size:30px;
	color:#58595B;
	position:absolute;
	cursor:pointer;
	right:0px;
	background:url(../img/bg_linkSlider.jpg) right top repeat-y;
}


/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 770px; 
    height:115px;
	float: right;
} 
 
/* 
    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 width and height for the root element and 
    not for this element. 
*/ 
div.scrollable ul.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 

div.scrollable ul.items li{
	width:182px;
	height:103px;
	overflow:hidden;
	list-style:none;
	float:left;
	margin-right:15px;
}
div.scrollable ul.items li img{ 
    float:left; 
	width:182px;
	cursor: pointer;
} 
div.scrollable ul.items img.last{ 
	float: right;
}
div.scrollable ul.items li h4{
	font-size:12px;
	font-weight:bold;
	color:#514D30;
	margin-bottom:5px;
} 

div.scrollable ul.items li div.newsInfo{
	width:100%;
	display:table;
	margin-bottom:5px;
}

div.scrollable ul.items li div.newsInfo span.date{
	width:auto;
	padding:4px;
	background:#514D30;
	display:block;
	font-size:10px;
	color:#fff;
	float:left;
}

div.scrollable ul.items li div.newsInfo span.day{
	font-size:11px;
	color:#514D30;
	display:block;
	width:auto;
	padding-top:2px;
	float:right;
}

div.scrollable ul.items li p{
	font-size:11px;
	line-height:14px;
	color:#929497;
}
 
/* you may want to setup some decorations to active the item */ 
ul.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}

