/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
/*
#scrollable_center {

	
}
*/
p.content_1 {
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #404040;
  margin-left: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 10px;
  line-height: 1.3em;
  text-align: justify;	
}

div.scrollable { 
	position:relative;
	display: block;
    overflow:hidden;
    width: 390px; 
    height:100px; 
	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 { 
    
    width:20000em; 
  position:relative;
	}


div.panel1
{
	float: left;
	height: 100px;
	width: 390px;
} 

/* 
    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; 
}

/* 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: #ffffff;
	/*position: relative;*/
	/*display: block;*/
	/*float: left;*/
	margin: 0px 5px;
	cursor: pointer;
	font-size: 10px;
	color: #cc0000;
	border: 1px solid #cc0000;
	padding: 2px 4px;
	height: 20px;
}

div.browse_1 {
position: relative;
float: left;
left: 160px;
}

/* right */
a.right 				{  background-position: -90px 0px; 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; }
