@charset "utf-8";
/* CSS Document */

/* root element for scrollable */
.vertical {

    /* required settings */
    position:relative;
    overflow:hidden;

    /* vertical scrollers have typically larger height than width */
    height: 392px;
    width: 582px;
    /*border-top:1px solid #ddd;*/
background: #cdddf0; /* Old browsers */
background: -moz-linear-gradient(left, #cdddf0 0%, #e8ecf0 86%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#cdddf0), color-stop(86%,#e8ecf0)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, #cdddf0 0%,#e8ecf0 86%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, #cdddf0 0%,#e8ecf0 86%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, #cdddf0 0%,#e8ecf0 86%); /* IE10+ */
background: linear-gradient(to right, #cdddf0 0%,#e8ecf0 86%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdddf0', endColorstr='#e8ecf0',GradientType=1 ); /* IE6-9 */
	   /* background-color:#cdddf0;*/
}

/* root element for scrollable items */
.items {
    position:absolute;

    /* this time we have very large space for height */
    height:20000em;
    margin: 0px;
}

/* single scrollable item */
.item {
	/*border-bottom:1px solid #ddd;*/
    margin:0;
	padding:15px;
	font-size:12px;
	height:165px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FFF;
}

/* elements inside single item */
.item img {
    float:left;
    margin-right:20px;
    height:160px;
    width:220px;
	border:4px solid #fff;
}

.item h3 {
    margin:0 0 5px 0;
	background:#e8ecf0;
    
}




/* the action buttons above the scrollable */
#actions {
    width:582px;
    /*margin:10px 0 10px 0;*/
}

#actions a {
    font-size:11px;
    cursor:pointer;
    color:#666;
}

#actions a:hover {
    text-decoration:underline;
    color:#000;
}

.disabled {
    visibility:hidden;
}

.next {
    float:right;
}