.vertical {  	
	/* required settings */
	position:relative;
	overflow:hidden;	
	float: left;
	/* vertical scrollers have typically larger height than width */	
	height: 645px;	 
	width: 700px;
	border-top:1px solid #ddd;	
	left:25px;	
}

p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:17px;
}

.menu {
	position: relative;
	float:left;
	border-left: #ddd 1px solid;
	margin-left:100px;
	width: 175px;
	padding-left: 20px;
}

.menu p {
	background-color:#FFF;
	color:#333;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:17px;
}

.menu a {
	text-decoration: none;
	color: #CC6714;
}

.menu a:hover {
	text-decoration: underline;
	color: #CC6714;	
}

.menu a:visited {
	text-decoration: none;
	color: #CC6714;	
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:17px;
}

.items div:hover {
	background: #ffffee;
}


/* single scrollable item */
.items div {
	border-bottom:1px solid #ddd;
	margin:0px 0;
	padding:15px;
	font-size:12px;
	height:180px;
}

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

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

.items a {
	text-decoration: none;
	color: #CC6714;
}

.items a:hover {
	text-decoration: underline;
	color: #CC6714;	
}

.items a:visited {
	text-decoration: none;
	color: #CC6714;	
}

/* the action buttons above the scrollable */
#actions {
	position:relative;
	width:700px;
	margin:30px 0 10px 0;
	left: 25px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:19px;
}

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

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

.disabled {
	visibility:hidden;
}


.nextPage {
	float:right;
}	



/* the overlayed element */
div.overlay {
	/* growing background image */
	background-image:url(http://static.flowplayer.org/img/overlay/white.png);
	
	/* dimensions after the growing animation finishes  */
	width:650px;
	height:500px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(http://static.flowplayer.org/img/overlay/close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
	padding:-10px;
}


#overlay {
	background-image:url(http://static.flowplayer.org/img/overlay/white.png);
	height:500px;
}


/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	height:500px;
	overflow-y:auto;
}