@charset "utf-8";
/* CSS Document */
#news {
/* The line position:relative is necessary.  It is an
 * IE hack to make overflow:hidden work for old IEs
 * http://stackoverflow.com/questions/2403011/ie6-ie7-css-problem-with-overflow-hidden-position-relative-combo
 */
      position:relative;
	width: 260px;
	height: 328px;
	padding: 0px;
	margin-top: 10px;
	overflow: auto;
}
#news dt {
	font-size: 12px;
	font-weight: bold;
	padding: 0px;
        margin: 0px;
	position: relative;
}
#news dd {
//	padding: 8px 0px 15px 0px;
        padding: 2px 0px 10px 0px;
	margin-left: 0px;
	position: relative;
        font-size: 12px;
}
#nextbtn{
      position:absolute;
      top:17px;
      right:35px;
}
#prevbtn{
      position:absolute;
      top:17px;
      right:10px;
}
.nextbutton {
	background-image: url(/images/buttons.png);
	float: left;
	width: 21px;
	height: 22px;	
	background-position: -21px 0px;
	cursor: pointer;
}
.prevbutton {
	background-image: url(/images/buttons.png);
	float: left;
	width: 21px;
	height: 22px;
	background-position: -63px 0px;
	cursor: pointer;
}

a.nextbutton:hover {
	background-position: -21px -22px;
}
a.prevbutton:hover {
	background-position: -63px -22px;
}

a.nextbutton:active {
	background-position: -21px -44px;
}
a.prevbutton:active {
	background-position: -63px -44px;
}
