#tooltip {
	z-index:5;
	display:none;
	background:transparent url(../images/jquery/black_arrow.png);
	font-size:12px;
	height:70px;
	width:160px;
	padding:25px;
	color:#fff;	
}

#scrollerWrapper {
	display: block;
	z-index:1;
	overflow:hidden;
	position:absolute;
	left: 8px;
	top: -30px;
	padding: 0;
	margin: 0;
	width: 750px;
	height: 370px;
	background: none;
}

/* override the root element to enable scrolling */ 
#scrollerBox {
    position:relative;
    clear:both; 
} 
 
/* override single pane */ 
#scrollerBox div.item { 
	margin: 30px 0px 0px 0px;
    float:left; 
	overflow: visible;
    display:block; 
    width:769px; 
} 
 
/* our additional wrapper element for the items */ 
#scrollerBox .items { 
    width:20000em; 
    position:absolute; 
    clear:both; 
    margin:0; 
    padding:0; 
} 

#browserWrapper {
	float:left;
	text-align: left;
	display: block;
	z-index:1;
	overflow:hidden;
	padding: 0;
	margin: 0;
	background: none;
}

#scrollerBox .less, #scrollerBox .less a { 
    color:#999 !important; 
    font-size:11px; 
}

/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow: hidden; 
    width: 234px; 
    height:176px; 
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}

/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
