
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:18px;
	height:18px;
	float:right;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background:url(arrow/right_dark.png) no-repeat; background-position: 0 -18px; margin-left: 5px;}
a.right:hover 		{ background-position: 0px 0px; }


/* left */
a.left				{ background:url(arrow/left_dark.png) no-repeat; background-position: 0 -18px; margin-left: 0px; } 
a.left:hover  		{ background-position:0px 0px; }

/* up and down */
a.up, a.down		{ 
	background:url(../img/scrollable/arrow/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* 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 {
		
} 	

/*Scrollable*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 620px;
	height:245px;
	border-bottom: #dbdbdb 1px solid;
	margin-bottom: 10px;
}
.scrollable_nav { width: 620px; border-bottom: #dbdbdb 1px solid; padding: 5px 0px;}
.scrollable .right { float: right !important; }

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	top: 37px;
}
.scrollable .naslov_h2 a {
	font-size: 20px; color: #333; font-weight: bold;
}
.scrollable .naslov_h2 {
    margin-bottom: 10px;
}
.scrollable .item {
	/* this cannot be too large */
	width:621px;
	position: relative;
	float: left;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.items div {
	float:left;
}

/*SCROLL IZDVOJENI ADRESAR DNO
	/* main vertical scroll */
	#main2 {
		position:relative;
		overflow:hidden;
		height: 450px;
	}
	
	/* root element for pages */
	#pages2 {
		position:absolute;
		height:20000em;
	}
	
	/* single page */
	.page2 {
		padding:10px;
		height: 450px;
		background:#222 url(http://static.flowplayer.org/img/global/gradient/h600.png) 0 0 repeat-x;
		width:520px;
	}
	
	/* root element for horizontal scrollables */
	.scrollable2 {
		position:relative;
		overflow:hidden;
		width: 510px;
		height: 450px;
	}
	
	/* root element for scrollable items */
	.scrollable2 .item2 {
		width:20000em;
		position:absolute;
		clear:both;
	}
	
	/* single scrollable item */
	.item2 {
		float:left;
		cursor:pointer;
		width:500px;
		height:450px;
		padding:10px;
	}
	
	/* main navigator */
	#main_navi2 {
		float:left;
		padding:0px !important;
		margin:0px !important;
	}
	
	#main_navi2 li {
		background-color:#333;
		border-top:1px solid #666;
		clear:both;
		color:#FFFFFF;
		font-size:12px;
		height:75px;
		list-style-type:none;
		padding:10px;
		width:190px;
		cursor:pointer;
	}
	
	#main_navi2 li:hover {
		background-color:#444;
	}
	
	#main_navi2 li.active {
		background-color:#555;
	}
	
	#main_navi2 img {
		float:left;
		margin-right:10px;
	}
	
	#main_navi2 strong {
		display:block;
	}
	
	#main2 div.navi2 {
		margin-left:250px;
		cursor:pointer;
	}
	
