/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 315px;	 
	width: 550px;
	top: -10px;
	margin-bottom: -16px;
	position: relative;
	z-index: 1;
}

.verticalOuter {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 330px;	 
	width: 550px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	width: 550px;
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

.itemsOuter {	
	position:absolute;
	width: 550px;
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	padding:5px;
	font-size:12px;
	height:150px;
}

.items div h2 {
	margin-top: 15px;
}

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

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
}

.items ul {
	margin-left: 165px;
}

/* the action buttons above the scrollable */
#actions {
	width:540px;
	height: 15px;
	position: relative;
	z-index: 10;
}

#actionsOuter {
	margin-left: 10px;
}

#actionsOuter a {
	font-size: 10px;		
	cursor: pointer;
}

#actionsOuter a.disabled {
	color: #282828;
	font-size: 11px;
}

#actionsOuter p a:hover.disabled {
	text-decoration:none;
	cursor: default;
}

#contentWrapper ul {
	padding-left: 19px;
}

#contentWrapper li {
	margin-top: 4px;
	margin-bottom: 4px;
}

#contentWrapper li a {
	margin-left: -3px;
	font-size: 10px;
}

#contentWrapper li, #contentWrapper li a {
	color: #a1a1a1;
}

#contentWrapper h2 {
	color: #009f54;
}

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

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

#actions a.disabled {
	text-decoration:none;
	color:#999;
}

#actions a:hover.disabled {
	text-decoration:none;
	cursor: default;
	color:#999;
}

.prevPage {
	float:right;
}

.nextPage {
	float:right;
}	

/* position and dimensions of the navigator */ 
.navi { 
    margin-left:328px; 
    width:200px; 
    height:20px; 
} 
 
 
/* items inside navigator */ 
.navi a { 
    width:8px; 
    height:8px; 
    float:left; 
    margin:3px; 
    background:url(file:///F|/0/Web%20Sites/Strahan%20Advertising/Fisher%20Mfg/Design/noleadfaucet/img/scrollable/arrow/navigator.png) 0 0 no-repeat; 
    display:block; 
    font-size:1px; 
} 
 
/* mouseover state */ 
.navi a:hover { 
    background-position:0 -8px;       
} 
 
/* active state (current page state) */ 
.navi a.active { 
    background-position:0 -16px;      
}
