@charset "UTF-8";

/* root element for scrollable */
.vertical {
	/* required settings */
	position: relative;
	overflow: hidden;
	height: 690px;
	width: 960px;
	/*	border-top:1px solid #ddd;*/
	margin-right: auto;
	margin-left: auto;
}

/* root element for scrollable items */
.items {
	position: absolute;
	height: 20000em;
	margin: 0 0 0 10px;
}

/* single scrollable item */
.item {
	/*	border-bottom:1px solid #ddd;*/
	padding: 20px;
	font-size: 90%;
	height: 180px;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
}
.item p {
	font-size: 100%;
}

/* elements inside single item */
.item img {
	float: left;
	margin-right: 20px;
	height: 180px;
	width: 240px;
	-webkit-box-shadow: 3px 3px 4px #333;
	-moz--box-shadow: 3px 3px 4px #333;
	box-shadow: 3px 3px 4px #333;
}
.item h3 {
	margin: 0 0 5px 0;
	font-size: 120%;
	color: #666;
	font-weight: normal;
}

/* the action buttons above the scrollable */
#actions {
	width: 300px;
	margin-bottom: 4px;
	margin-top: 3px;
	margin-right: 130px;
	float: right;
}

#actions a {
	font-size: 14px;
	cursor: pointer;
	color: #900;
	letter-spacing: 0.1em;
        text-decoration: underline;
}

#actions a:hover {
	text-decoration: none;
	color: #900;
}

.disabled {
	visibility: hidden;
}

.next {
	float: right;
}
.prev {
	float: left;
}
/* position and dimensions of the navigator */
.navi {
	width: 100px;
	height: 20px;
	float: right;
	position: absolute;
	left: 849px;
	top: 204px;
}

/* items inside navigator */
.navi a {
	width: 8px;
	height: 8px;
	float: left;
	margin: 3px;
	display: block;
	font-size: 1px;
	background-image: url(../_images/nav.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

/* mouseover state */
.navi a:hover {
	background-position: 0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position: 0 -16px;     
}
