/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/

.scrollable {

    /* required settings */
    position:relative;
    overflow:hidden;
    width: 862px;
    height:310px;


    background:url("../images/rotat-centr.jpg") repeat-x;
    /* custom decorations */

}

.scrollable_left {

    /* required settings */

    width: 39px;
    height:310px;
    float: left;

    background:url("../images/rotat-left.jpg") no-repeat;
    /* custom decorations */

}

.scrollable_right {

    /* required settings */

    width: 39px;
    height:310px;
    float: left;
    text-align: right;
    background:url("../images/rotat-right.jpg") no-repeat;
    /* custom decorations */

}

.scrollable .items {
    /* this cannot be too large */
    width:20000em;
    position:absolute;
    clear:both;
}

.items div {
    float:left;
    width:860px;

}


.scrollable .items ul{
    margin:0;
    padding:0;
}


.scrollable .items ul li{
    /* this cannot be too large */
    width: 175px;
    float: left;
    font-size:12px;
    text-align:center;
    list-style: none outside none;
    padding:20px;
    height: 310px;
}


.scrollable .items a{
    color: #676767;
}

.scrollable .items a:hover{
    color: #000;
    text-decoration: none;
}


.scrollable .items ul li:hover{
    background:#c7c7c7;
}

.scrollable .items ul li:hover img{

}



/* single scrollable item */
.scrollable img {
    border:0;


}

/* 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:17px;
    height:51px;
    float:left;
    margin:126px 0 0 14px;
    cursor:pointer;
    font-size:1px;
}

/* right */
a.right 			{ background:url(../images/a-right.jpg) no-repeat; clear:right; margin-right: 0px;}
a.right:hover 		{ background:url(../images/a-right_on.jpg) no-repeat; }
a.right:active  	{ background:url(../images/a-right.jpg) no-repeat; }


/* left */
a.left				{ background:url(../images/a-left.jpg) no-repeat;margin-right: 13px; }
a.left:hover  		{ background:url(../images/a-left_on.jpg) no-repeat; }
a.left:active  	{ background:url(../images/a-left.jpg) no-repeat; }

/* up and down */
/*a.up, a.down		{*/
/*    background:url(../img/scrollable/arrow/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 {
    visibility:hidden !important;
}





