/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 4000px;
	height:286px;

	/* custom decorations */
}

/*
	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:2000px; position:absolute; clear:both; 
}

.itemCont {float:left; height:100px; margin-right:4px; display:inline}

/* single scrollable item */
.scrollable img {
}

/* active item */
.scrollable .active {
	
	z-index:9999;
	position:relative;
}

/*BUTTONS*/

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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(hori_large.png) no-repeat;
	display:block;
	width:11px;
	height:30px;
	float:left;
	margin:60px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right { background-position: 0 -30px; clear:right; margin-right: 0px;}


/* left */
a.left { margin-left: 0px; } 

/* up and down */
a.up, a.down { 
	background:url(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 {
	visibility:hidden !important;		
} 	

/*NAVIGATOR*/

/* position and dimensions of the navigator */
.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(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;     
}

/*TABS*/


/* root element for tabs  */
ul.css-tabs {margin:3px 0 0 0; height:19px}

/* single tab */
ul.css-tabs li {  
	margin: 0 0 0 2px;
float:left;

}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	padding:4px 5px;	
	text-decoration:none;
	background:url(../images/urunbg.jpg);
	color:white;
}

 ul.css-tabs a:hover {
	background:url(../images/urunbg1.jpg);
	}
	
/* selected tab */
ul.css-tabs a.current {
	background:url(../images/urunbg1.jpg);

}

	
/* tab pane */
div.css-panes div {
	display:none;
	height:430px;
	padding:7px;
	border:1px solid #adadad;
	background:white
}

/*BANNER*/

div#nav {
float : left;
clear : both;
width : 530px;
height : 17px;
margin : 0 0;
}
div#nav ul {
float : left;
width : 400px;
height : 17px;
list-style-type : none;
}
div#nav ul li {
float : left;
height : 16px;
}
div#nav ul li a {
border : 0;
height : 17px;
display : block;
line-height : 16px;
text-indent : -9999px;
}

div#slide-holder {
z-index : 40;
width : 530px;
height : 250px;
position : absolute;
}
div#slide-holder div#slide-runner {
top : 0;
left : 0;
width : 530px;
height : 250px;
overflow : hidden;
position : absolute;
}
div#slide-holder img {
margin : 0;
display : none;
position : absolute;
border:0
}
div#slide-holder div#slide-controls {
left : 0;
bottom : 220px;
width : 530px;
height : 22px;
display : none;
position : absolute;
background : url(../images/slide-bg.png) 0 0;
}
div#slide-holder div#slide-controls p.text {
float : left;
color : #fff;
display : inline;
font-size : 10px;
line-height : 16px;
margin : 3px 0 0 10px;
text-transform : uppercase;
}
div#slide-holder div#slide-controls p#slide-nav {
position:absolute;
height : 15px;
display : inline;
top:210px;
left:270px
}
div#slide-holder div#slide-controls p#slide-nav a {
float : left;
width : 15px;
height : 15px;
display : inline;
font-size : 10px;
margin : 0 4px 0;
line-height : 15px;
font-weight : bold;
text-align : center;
text-decoration : none;
background-position : 0 0;
background-repeat : no-repeat;
color:white;
}
div#slide-holder div#slide-controls p#slide-nav a.on {
background-position : 0 -15px;
}
div#slide-holder div#slide-controls p#slide-nav a {
background-image : url(../images/silde-nav.png);
}
div#nav ul li a {
background : url(../images/nav.png) no-repeat 0;
}