/************* navigator ******************/

/* position and dimensions of the navigator */
.navi {
	position:absolute;
	margin:307px 0px 0px 100px;
	width:125px;
	height:20px;
	z-index:100
}

* html .navi {margin:307px 0px 0px -160px;}

/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/flashBox/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;     
}



/**************** buttons **********************/

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/flashBox/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	cursor:pointer;
	font-size:1px;
	margin:300px 20px 40px 134px
}
* html a.browse {margin:300px 20px 40px 30px}
/* right */
a.right{ background-position: 0 -30px; clear:right; margin-right: 0px;}
* html a.right{ margin-left:95px}
a.right:hover{ background-position:-30px -30px; }
a.right:active{ background-position:-60px -30px; } 


/* left */
a.left{ margin-left: 40px; } 
a.left:hover{ background-position:-30px 0; }
a.left:active{ background-position:-60px 0; }


/* up */
a.up:hover{ background-position:-30px 0; }
a.up:active{ background-position:-60px 0; }

/* down */
a.down{ background-position: 0 -30px; }
a.down:hover{ background-position:-30px -30px; }
a.down:active { background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


/**************** horizontal **********************/

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	background:#fff url(../images/flashBox/panel.gif) no-repeat top left;
	width:295px;
	height:362px;
}

/*
	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 the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.scrollable .items span{
	/* this cannot be too large */
	width:277px;
	height:161px;
	float:left;
	padding:0px 6px
}

.scrollable img.hover {
	background-color:#123;	
}

/* single scrollable item */
.scrollable img {
	float:left;
	cursor:pointer;
	width:277px;
	height:161px;
	display:block;
	margin:7px 5px 20px 0px;
	padding:0px;
	border:3px solid #a9c3e8;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;


}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}


.scrollable .items p.header{color:#4581C9; font-size:15px; text-transform:capitalize; font-weight:bold; padding:0 3px; margin:0px;  font-family:Arial, Helvetica, sans-serif;}
* html .scrollable .items p.header{ margin-top:0px}
.scrollable .items p{color:#333; font-size:11px; text-align:left; padding:0px 3px; line-height:1.4; margin:0px;  font-family:Arial, Helvetica, sans-serif;}
* html .scrollable .items p{ margin-top:0px}




