/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 

#scrollable_center {
	position: relative;
	display: block;
	margin: 0 auto;
	height: 380px;
	width: 560px;
}

div.scrollable { 
 
    /* required settings */ 
    position:relative;
	display: block;
    overflow:hidden;
    width: 480px; 
    height:360px; 
	float:left;
} 
.scrollable img.wiersz{
clear: left;
} 
.scrollable img {
	
}

/* 
    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 width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    /*position:absolute; */
	position:relative;
	}

div.panel1
{
	float: left;
	height: 360px;
	width: 480px;
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items { 
    float:left;
	
} 
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}

div.ramka
{
	text-align: center;
	width: 140px;
	height: 100px;
	margin:10px;
	background: url(partner_bg.png) no-repeat;
	/*
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	*/
	cursor:pointer;
	font-size: 10px;
	float:left;
}

div.image {
	width: 140px; 
	height:100px;
	vertical-align: bottom;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	/* background:url(arrows_button.png) no-repeat;*/
	background:url(nawi_scrollable.png) no-repeat center;
	/*background-color: #b0afae;*/
	display:block;
	width:30px;
	height:100px;
	float:left;
	margin:0px 5px;
	cursor:pointer;
	font-size:1px;
	margin-top: 130px;
}

/* right */
a.right 				{  background-position: -90px 0px; clear:right; margin-right: 0px;}
a.right:hover 		{  background-position:  -60px 0px; }
a.right:active 	{ background-position: -90px 0px; } 


/* left */
a.left				{ background-position: 0px 0px; margin-left: 0px; } 
a.left:hover  		{ background-position: -30px 0px; }
a.left:active  	{ background-position: 0px 0px; }
