/* root element for scrollable */

a {
color: white;
text-decoration: none;
}

#thebox {
margin: 0 auto;
height: 200px;
width: 980px;
margin-top: 10px;
margin-bottom: 10px;
}

#tweetnews {
padding-left: 20px;
background: #E8751A;
font-family: Arial;
height: 200px;
overflow: hidden;
font-size: 12px;
width: 335px;
}

#tweetnews a:hover {
text-decoration: underline;
}

.vertical {
    border-right: 2px solid white;
    color: white;  
    background: #E8751A;
	font-family: Arial;
	position:relative;
	overflow:hidden;	
	height: 200px;	 
	width: 608px;
}


.vertical a:hover {
text-decoration: underline;
}

/* root element for scrollable items */
.items {	
	position:absolute;	
	height:20em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	
	margin-left: 0px;
	padding:15px;
	font-size:12px;
	height:180px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:120px;
	width:200px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:700px;
	margin:30px 0 10px 0;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

