/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	height:250px;
	width:448px;
	float:left;
		

	/* 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:20000em;
	position:absolute;
	clear:both;
}

.itemCont {float:left; height:204px; border:1px solid #ccc; margin-right:5px; display:inline; padding:5px; overflow:hidden; width:133px}

/* single scrollable item */
.scrollable img {
	border:1px solid #ccc;

}

/* active item */
.scrollable .active {
	
	z-index:9999;
	position:relative;
}

/*BUTTONS*/

/* this makes it possible to add next button beside scrollable */


/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/sliderArrows.gif) no-repeat;
	display:block;
	width:13px;
	height:30px;
	float:left;
	margin:100px 0 0;
	cursor:auto;
	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 {
} 	

/*NAVIGATOR*/

/* position and dimensions of the navigator */
.navi {
	margin:auto;
	width:60px;
	height:16px;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	text-align:center;
	cursor:auto
	
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}


/*TABS*/



/*Piyasalar*/

/* root element for tabs  */
#Piyasalar ul.css-tabs {height:15px}

/* single tab */
#Piyasalar ul.css-tabs li {  
	margin: 0 0 0 4px;
	border:1px solid #ccc;
	border-bottom:0;
cursor:hand

}

/* link inside the tab. uses a background image */
#Piyasalar ul.css-tabs a { 
	padding:0 3px;	
	text-decoration:none;
	
	
	
	
}

#Piyasalar ul.css-tabs a:hover {
	background-color:#faebd7;

	
	
}
	
/* selected tab */
#Piyasalar ul.css-tabs a.current {
	background-color:#faebd7;
	cursor:default;
	color:black;
	
}

	
/* tab pane */
#Piyasalar div.css-panes div {
	display:none;
	border:1px solid #ccc;
	border-top:2px solid #fc9;
	height:105px;
	padding:0;
}

/*Genel*/

/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:20px;
}


/* single tab */
ul.css-tabs li {  
	float:left;	 
	margin:3px 3px 0;
	width:108px;
	list-style-type:none;
		
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	text-decoration:none;
	color:#999; padding:0;
}

ul.css-tabs a:hover {
	color:#666
}
	
/* selected tab */
ul.css-tabs a.current {
	cursor:default;
	color:#4169e1;
}

	
/* tab pane */
div.css-panes div {
padding-top:5px

	}

/*Kategoriler*/

/* root element for tabs  */
.katCont ul.css-tabs {  
	border-bottom:1px solid #ccc
}



