.carousel {
width: 300px;
position: fixed;
z-index: 999;
top: 65px;
height: 100%;
background-color: #FFF;
-moz-user-select: none;
}

.carousel > .window {
overflow: hidden;
position: relative;
height: 70%;
}

.carousel ul {
list-style: none outside none;
margin: 0px;
height: 10000px;
top: 0px;
left: 24px;
position: absolute;
width: 100%;
}
}

.carousel li {
	margin: 3px 0 0;
}

.carousel li:first-child {
	margin: 0;
}

.carousel img {
	display: block;
}

.carousel > a {
	display: block;
width: 300px;
height: 37px;
background-color: rgba(255, 255, 255, 0.9);
background-image: url('index.png');
background-repeat: no-repeat;
background-position: 50% 11px;
text-indent: -9999px;
cursor: pointer;
}

.carousel > .next {
	background-position: 50% -45px;
	margin-top: 5px;
}

.carousel > .disabled {
	opacity: 0.4;
	-moz-opacity: 0.4;
	filter:alpha(opacity=40);
}



