﻿/* Styles Switcher
====================================================================== */

	#style-switcher h3 {
		color: #848688;
		font-size: 14px;
		margin: 5px 0 0px 1px;
		
		text-align:center;	
	}
	
	#style-switcher {
		background-color: #fff;
		width: 205px;
		position:fixed;
		top: 96px;
		z-index: 999;
		border-radius: 0 0 3px 0;
		left: -206px;
		border: 1px solid #e4e4e4;
		border-left: 0;
		border-top: 0;
		box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
	}
	
	#style-switcher div {
		padding: 2px 18px 10px 18px;
	}
	
	#style-switcher h2 {
		background-color: #fff;
		color: #333;
		font-weight: bold;
		font-size: 16px;
		padding: 5px 0 5px 0px;
		border-top:1px solid #eee;		
	   text-transform:uppercase;
		text-align:center;	
       
		
	}
	
	#style-switcher h2 a {
		background: url("../img/switcher.gif") no-repeat 10px center transparent;
		background-color: #fff;
		display: block;
		height: 44px;
		position: absolute;
		right: -44px;
		text-indent: -9999px;
		top: 0;
		width: 44px;
		border-radius: 0 2px 2px 0;
		border-top:1px solid #eee;
		border-right:1px solid #eee;
		border-bottom:1px solid #eee;
		border-left:0px solid #eee;



	}
	
	.colors {
		list-style:none;
		margin: 0 0px 10px 0;
		overflow: hidden;
	}
	
	.colors li {
		float:left;
		margin: 4px 4px 0 2px;
	}
	
	.colors li a {
		display: block;
		width: 36px;
		height: 36px;
		cursor: pointer;
		border-radius: 2px;
	} 
	
	.layout-style select,
	.header-style select {
		width: 164px;
		padding: 5px;
		color: #848688;
		cursor: pointer;
		border-radius: 2px;
		font-size: 13px;
		margin: 2px 0 10px 2px;
	}
	
	.layout-style,
	.header-style { padding: 0 !important; }
	
	.blue     { background: #50d2f5; }
	.orange   { background: #f56450; }
	.green    { background: #2dcd73; }	
	.yellow   { background: #f5d250; }
    .red      { background: #cd2323; }
	.cyan     { background: #28cdbe; }
	.pink     { background: #f58cc8; }	
	.gray     { background: #9ba5af; }
	
	
input[type="button"] {
	background: transparent;
	border: 1px solid #f0f0f0;
	color: #999;
	text-transform: uppercase;
	padding:0 20px;
	font-size: 12px;
	line-height: 36px;
	width: 170px;
	text-align: center;
	letter-spacing:0px;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	cursor:pointer;
	height:36px;
	margin-top:5px
}
input[type="button"]:hover {
	background: #0079ff;
	border: 1px solid #0079ff;
	color:#FFF;
}
	
	
	@media only screen and (max-width: 1023px) { #style-switcher { display: none; } }
	   
