
/* container for slides */
#tabs-preview {
	position: relative;
	display: block;
	background-color: transparent;
	float: left;
	width: 200px;
	height: 350px;
	overflow: hidden;
}
.tabs-layer {
	display: block;
	cursor: pointer;
	background-color: transparent;
	float: left;
	width: 100%;
	height: auto;
}
.tabs-layer img {
	width: 200px;
	height: 350px;
}

/* single slide */
.tabs-layer div {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0px;
	padding: 0px;
}
/* tabs (those little circles below slides) */
.tabs {
	position: absolute;
	z-index: 1000;
	width: 100%;
	height: auto;
	display: none;
}
.tabs div {
	float: right;
	padding: 10px;
}
.tabs a {
	width: 9px;
	height: 9px;
	float: left;
	margin: 4px;
	display: block;
	background-color: #F0E8D0;
}

/* mouseover state */
.tabs a:hover {
	background-color: #E5D8AF;
}

/* active state (current page state) */
.tabs a.current {
	background-color: #c7a94a;
}
