/* css reset */
body {
	font:12px 'Inter',Arial, Helvetica, sans-serif;
	min-width: 1000px;
	background:#eee;
	color:#000;
	margin:0;
}
img {border-style:none;}
a {
	text-decoration:none;
	color:#00f;
}
a:hover {text-decoration:underline;}
input,
textarea,
select {
	font:100% Arial, Helvetica, sans-serif;
	vertical-align:middle;
	color:#000;
}
form, fieldset {
	margin:0;
	padding:0;
	border-style:none;
}
/* widget styles */
.widget {
	border: 1px solid #bababa;
	border-radius: 5px;
	background: #fff;
	font-size: 14px;
	margin: 100px auto;
	padding: 10px;
	width: 900px;
}
.widget .control-links {
	border-top: 1px dotted #ddd;
	text-align: center;
	overflow: hidden;
	margin: 10px 0 0;
	padding: 10px 1px 0;
}
.widget .control-links .switcher-holder {
	display: inline-block;
}
.widget .btn-prev, .widget .btn-next {
	border-radius: 5px;
	border: 1px solid #ccc;
	width: 26px;
	height: 26px;
	color: #ccc;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	float: left;
}
.widget .btn-next {
	float: right;
}
.widget .btn-prev:hover, .widget .btn-next:hover {
	text-decoration: none;
	border-color: #000;
	color: #000;
}
.widget .btn-prev:active, .widget .btn-next:active {
	margin: 1px -1px -1px 1px;
}
.widget .switcher {
	overflow: hidden;
	list-style: none;
	padding: 0;
	margin: 0;
}
.widget .switcher li {
	margin: 0 5px 0 0;
	float: left;
}
.widget .switcher li a { 
	border: 1px solid transparent;
	border-radius: 5px;
	text-align: center;
	float: left;
	color: #000;
	padding: 0 10px;
	height: 26px;
	line-height: 26px;
}
.widget .switcher li a:hover {
	border-color: #eee;
	text-decoration: none;
}
.widget .switcher li a:active {
	line-height: 28px;
}
.widget .switcher .active a {
	background: #777;
	color: #fff;
}
.widget .switcher .active a:hover {
	border-color: transparent;
}
.widget .switcher .lava-item a {
	text-indent: -9999px;
	display: block;
	float: none;
}
.widget .switcher .lava-anim-to a {
	border-color: transparent !important;
}
/* slideset styles */
.widget .slideset {
	position: relative;
	list-style: none;
	height: 256px;
	padding: 0;
	margin: 0;
}
.widget .slideset li {
	position: absolute;
	overflow: hidden;
	background: #fff;
	height: 256px;
	top: 0;
	left: 0;
	z-index: 1;
	-webkit-transition: opacity 1.5s;
	-o-transition: opacity 1.5s;
	transition: opacity 1.5s;
	opacity: 0;
}
.widget .slideset li.active {
	z-index: 2;
	opacity:1;
}
.widget .slideset li img {
	margin: 0 0 0 25px;
	width: 256px;
	height: auto;
}
.widget .slideset .description {
	border: 1px dotted #ccc;
	border-radius: 5px;
	background: #f5f5f5;
	padding: 20px;
	float: right;
	width: 60%;
}
