/* ########################################## */
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(/images/left.png) no-repeat;
	float:left;
	text-align:center;
	cursor:pointer;
	font-size:1px;
	margin-left:2px;
	margin-right:2px;
}

/* 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/right.png);
	clear:right;
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	text-align:center;
	padding-top:7px;

	width:177px;
	height:20px;
	float:left;
}


/* items inside navigator */
div.navi a {
    text-align:center;
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}
div.navi a:first-child {
    margin-left:70px;
}
/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;
}

/* root element for the whole scrollable setup */
div.scrollable {
	position:relative;
	overflow:hidden;
	width: 440px;
	height:705px;
}

/* root element for scrollable items */
div.scrollable div.items {
    position:absolute;

    /* this time we have very large space for the height */
    height:20000em;
}
/*
	root element for scrollable items. It is
	absolutely positioned with large width.
*/

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:5px;
}


#thumbs {
    position:absolute;
    width:221px;    <!-- the width is equal the width of #thumbs div -!>
    clear:both;
    
    
}

#thumbs div {
    width:221px;
    background:#333;
    color:#fff;
    cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#444;
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#066;
	cursor:default;
}

#thumbs h3, #thumbs p, #thumbs span {
	
	color:#fff;
}

#thumbs h3 em {
	font-style:normal;
	color:yellow;
}

.form{
	text-align:center;
	padding:10px;
}
.form li{
 margin:5px;
}
.form label{
	font-weight:bold;
}
.top_button{
	text-align:right;
	float:right;
	color:white;
	font-size:12px;
	margin:2px;
	font-weight:bold;
}

.top_button a{
	text-align:right;
	color:white;
}