/* 
    root element for the gallery. 
    when scrolling occurs this element stays still. 
*/ 
div.gallery { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 480px;
    height: 200px;
}

div.shoutbox { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 478px;
    height: 290px;
} 
 
/* 
    root element for gallery items. Must be absolutely positioned 
    and it should have a super large width to accomodate gallery items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.gallery div.items, div.shoutbox div.items { 
    /* this cannot be too large */ 
    width: 20000em; 
    position: absolute; 
} 
 
/* 
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.gallery div.items div { 
	float:left;
	width: 160px;
	height: 200px;
	padding-right: 3px;
}

div.shoutbox div.items div.item {
	width: 478px;
	height: 290px;
} 
 
/* you may want to setup some decorations to active item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}

/*********** prev/next ***********/


/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(/images/v4/jquery/navigator/arrow/left.png) no-repeat;
	float:left;
	cursor: pointer;
	margin: -20px 0 0 150px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/images/v4/jquery/navigator/arrow/right.png);
	float: right;
	margin: -20px 150px 0 0;
}

/*********** shoutbox_navi ***********/

#shoutbox_navi {
	border-top: 1px solid #A6C9E2;
	margin: 0 0;
	padding:  0 0;
}

#shoutbox_navi span {
	cursor: pointer;
	/*padding: 5px 7px;*/
}

	#shoutbox_navi div.row1 {
		background: #eee;
		padding: 2px 15px;
	}
	
	#shoutbox_navi div.row2 {
		background: #ccc;
		padding: 2px 15px;
	}

	#shoutbox_navi div.active a {
		font-weight: bold;
		font-size: 10px;
	}

/*********** gallery_navi ***********/

/* position and dimensions of the navigator */
#gallery_navi {
	/*margin-left:328px;*/
	float: center;
	width:70px;
	margin: 0 auto;
	height: 20px;
}

/* items inside navigator */
#gallery_navi a {
	width: 8px;
	height: 8px;
	float: left;
	margin: 3px;
	background: url(/images/v4/jquery/navigator/arrow/navigator.png) 0 0 no-repeat;     
	cursor: pointer;	
}

/* mouseover state */
#gallery_navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
#gallery_navi a.active {
	background-position:0 -16px;     
}

