/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#box_advertisement .scrollable
{
	/* required settings */
	position: relative;
	overflow: hidden;
	width: 612px;
	height: 210px; /* custom decorations */
	border: none;
}

/*
	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.
*/
#box_advertisement .scrollable .items
{
	/* this cannot be too large */
	width: 20000em;
	position: absolute;
	clear: both;
}

/* single scrollable item */
#box_advertisement .scrollable div
{
	/*cursor: pointer;*/
}

/* active item */
#box_advertisement .scrollable .active
{
	border: 2px solid #000;
	z-index: 9999;
	position: relative;
}

#box_advertisement .items div
{
	width: 612px;
	height: 210px;
	float: left;
	position: relative;
}

#box_advertisement .scrollable h1
{
	width: 140px;
	position: absolute;
	left: 350px;
	margin-top: 70px;
	color: #fefd8c;
	z-index: 2;
	border: none;
}

#box_advertisement .scrollable h2
{
	width: 140px;
	position: absolute;
	left: 360px;
	margin-top: 70px;
	color: #FFF;
	z-index: 2;
	font-weight:bolder;
}

/* navigation */

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


/* items inside navigator */
#box_advertisement .navi a
{
	width: 15px;
	height: 15px;
	float: left;
	margin: 3px 0 3px 0;
	background: url(../images/navigator.png) 0px 0px no-repeat;
	display: block;
	font-size: 1px;
	/*border:1px solid #FF0000;*/
}

/* mouseover state */
#box_advertisement .navi a:hover
{
	background-position: 0 -15px;
	cursor:pointer;
}

/* active state (current page state) */
#box_advertisement .navi a.active
{
	background-position: 0 -30px;
	cursor:pointer;
}



/* butonlar */

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

#box_advertisement #naviBrowse
{
	position: absolute;
	left: 588px;
	top:5px;
	margin: 0px;
	padding: 5px 0 0 0;
	width: 15px;
	z-index: 2;
	/*border:1px solid #00FF00;*/
}

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

/* right */
#box_advertisement a.right
{
	background-position: 0px -15px;
	margin: 3px 0px 0px 0px;
	/*border:1px solid #FF33CC;*/
}
#box_advertisement a.right:hover
{
	background-position: -15px -15px;
}
#box_advertisement a.right:active
{
	background-position: -30px -15px;
}


/* left */
#box_advertisement a.left
{
	margin: 0px 0px 3px 0px;
}
#box_advertisement a.left:hover
{
	background-position: -15px 0;
}
#box_advertisement a.left:active
{
	background-position: -30px 0;
}

/* disabled navigational button */
#box_advertisement a.disabled
{
}


.navigatorLinks
{
	float: left;
}
