body {
	/*padding:150px 50px;
	font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana;*/
}

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}


/* root element for scrollable */
.vertical {  	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 350px;	 
	width: 360px;
	border-top:0px solid blue;			
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:100px;	
	margin: 0px;	
}

/* single scrollable item */
.items div {
	border:0px solid red;
	margin:0px 0px 30px 0px;
	padding:15px;
	font-size:10px;
	font-family:Verdana;
	height:120px;	
	width:325px;
	background-image:url("./_Imagini/newsdiv.png");
    background-repeat:no-repeat;      
}
.items h3 {
	margin:0 0 0 0;
	font-size:14px;
	color:#ff6600;
	font-weight:bold;
	font-family:Verdana;
}
.items img {
	border:0px solid red;
}


