
/*Style switcher*/
.style-switcher{
	position: fixed;
	top: 15%;
	right: 0;
	z-index: 990;
	text-align: center;
	display: none;


	transition: right 1s ease;
	-moz-transition: right 1s ease;
	-webkit-transition: right 1s ease;
	-o-transition: right 1s ease;
}
@media only screen and (min-width:1024px){
	.style-switcher{display: block;}
}
.style-switcher.collapsed{right: -209px;} /* Class will be added by javascript*/
.style-switcher .opener{
	border:1px solid #d1d1d1;
	color: #000;
	font: 14px/16px Helvetica, Arial, sans-serif;
	padding: 12px 10px 12px 60px;
	background:#f9f9f9 url("../bg/icon-theme-switcher.png") no-repeat 8px 50%;
	width: 187px;
	margin: 0 0 0 -50px;
	cursor: pointer;
}
.switcher-style-options-list{
	float: right;
	background: #f9f9f9;
	width: 207px;
	border:solid #d1d1d1;
	border-width:0 1px 1px;
}
.switcher-style-option-item > *{
	border-top:1px solid #d1d1d1;
	margin: 0;
	padding: 13px 10px;
}
.switcher-style-option-item > *:first-child{border:none;}
.switcher-style-option-item > *.white{background: #fff;}
.switcher-style-options-list h3,
.switcher-style-options-list h4{
	font: 11px/14px Helvetica, Arial, sans-serif;
	color: #000;
}
.switcher-style-options-list h3{
	padding-top: 19px;
	padding-bottom: 19px;
}
.switcher-style-options-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
ul.switcher-color-scheme {
	margin: -8px 0 0;
}
.switcher-color-scheme li{
	display: inline-block;
	line-height: 0;
	margin: 8px 5px 0 5px;
}
.switcher-color-scheme a{
	display: block;
	width: 35px;
	height: 35px;
	text-indent: -9999px;
	overflow: hidden;
	background-color: #F96E5B;
}
.switcher-color-scheme a.blue{background-color: #00ADEF;}
.switcher-color-scheme a.green{background-color: #00C8C2;}
.switcher-color-scheme a.orange{background-color: #EF6500;}
.switcher-color-scheme a.violet{background-color: #D900FF;}
.switcher-color-scheme a.yellow{background-color: #DBA628;}
.switcher-layouts li{
	display: inline-block;
	line-height: 0;
	margin: 0 5px;
}
.switcher-layouts a{
	display: block;
	font: 11px/17px Helvetica, Arial, sans-serif;
	color: #000;
	padding: 0 5px 0 15px;
	border:1px solid #d1d1d1;
	min-width: 50px;
	position: relative;
}
.switcher-layouts a:after{
	content: "";
	position: absolute;
	left:3px;
	top:3px;
	border:1px solid #d1d1d1;
	background: #dedede;
	width: 9px;
	height: 9px;
	overflow: hidden;
}
.switcher-layouts a.active:after{
	background: #333;
}