@charset "utf-8";
/* CSS Document */

/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
	margin:0 15px;
	/* vertical scrollers have typically larger height than width */	
	height: 566px;	 
	/*width: 700px;*/
	border-top:1px solid #bbb;	
	border-bottom:1px solid #bbb;
	background-image:url(../img/scroll_background_2.jpg);
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	border-bottom:1px solid #ddd;
	/*margin:10px 0;*/
	padding:15px 5px;
	font-size:1em;
	/*height:180px;*/
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.items h3 {
	margin:5px 0;
	font-size:2em;
	color:#456;
	font-weight:normal;
}
.items h4 {
	margin:5px 0;
	font-size:1.8em;
	color:#456;
	font-weight:normal;
}
.items h5 {
	margin:5px 0;
	font-size:1.4em;
	color:#000;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	/*width:700px;*/
	margin:5px 0 10px;
	padding:0 15px;
}

#actions a {
	font-size:.9em;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	
.prevPage {
	float:left;
}	

.scrollHover{
background-color:#DDD;
cursor:pointer;
}

/* the overlayed element */ 
.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    /*z-index:10000;*/ 
     
    /* styling */ 
    /*background-color:#333;*/ 
    background-image:url(../img/transparent4.png); 
    color:#efefef; 
    height:450px; 
	padding:40px;
	width:576px;
 
    /*width:655px;*/     
    /*min-height:200px;*/ 
    /*border:1px solid #666;*/ 
	
	/*left:0 !important;*/
	/*padding:10px;*/
     
    /* CSS3 styling for latest browsers */ 
    /*-moz-box-shadow:0 0 90px 5px #000;*/ 
    /*-webkit-box-shadow: 0 0 90px #000;*/     
} 
 
/* close button positioned on upper right corner */ 
.simple_overlay .close { 
    background-image:url(../img/close.png); 
    position:absolute; 
    right:5px; 
    top:5px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}
/* styling for elements inside overlay */ 
.details { 
	padding-top:5px;
    font-size:1.1em; 
	line-height:1.4em;
    color:#fff; 
    height:441px; 
    overflow-y:auto; 
} 
 
.details h3 { 
    color:#aba; 
    font-size:2em; 
	margin-bottom:20px;
}
.details h4 { 
    font-size:1.2em; 
	margin-bottom:7px;
}
.details h5 { 
    font-size:1.1em; 
}
.details a{
color:#FF9900;
text-decoration:none;
}
.details a:hover {
text-decoration:underline;
}