#ramka {
	width: 967px;
	min-height: 150px;
	background-color: #787777;
	margin: 0 auto;
	text-align: center;
	overflow: auto;
	padding-bottom: 5px;
	}
#naglowek {
	width: 955;
	height: 50px;
	margin: 5px;
	padding-top: 0px;
}
#blok1 {
	width: 230px;
	font-size: 14px;
	min-height: 240px;
	background-color: #ffffff;
	float: left;
	font-family: Arial;
	margin-left: 5px;
	padding-top: 5px;
	text-align: left;
	padding-left: 5px;
}
#blok1 img{text-align:right;}
a.stopka {
    color: #000000;
    }
a.stopka:hover{ color: #ff6600; }

/*
    root element for the scrollable.
    when scrolling occurs this element stays still.
*/
.scrollable {

    /* required settings */
    position:relative;
    overflow:hidden;
    width: 890px;
    height:60px;

    /* custom decorations */

    background-color: #787777;
}

/*
    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;
}

.items div {
	float:left;
	width:890px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px 5px 0px 5px;
	background-color:#fff;
	padding:2px;



	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}


/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin-top:12px;
	cursor:pointer;
	font-size:1px;
    background:url(../images/hori_large.png) no-repeat;
    color: black;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; }


/* left */
a.left				{ margin-left: 0px; }
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }


/* up and down */
a.up, a.down		{
	background:url(../images/vert_large.png) no-repeat;
	float: none;
	margin: 0px 0px;
}

/* up */
a.up:hover  		{  }
a.up:active  		{  }

/* down */
a.down 				{ }
a.down:hover  		{ }
a.down:active  	{  }


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}


