#control-panel {
	position: fixed;
    top: 95px;
    left: -190px;
    z-index: 99999;
    padding: 15px 10px;
    width: 170px;
	-webkit-border-radius: 0 3px 3px 0;
	   -moz-border-radius: 0 3px 3px 0;
			border-radius: 0 3px 3px 0;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	   -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
			box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    background-color: #fafafa;
    color: #3d3d3d;
	display:none;
}

	#control-label {
		position: absolute;
		top: 20px;
		right: -30px;
		width: 31px;
		height: 30px;
		background-color: #fafafa;
		text-align: center;
		-webkit-border-radius: 0 3px 3px 0;
		   -moz-border-radius: 0 3px 3px 0;
				border-radius: 0 3px 3px 0;
	}
	
	#control-label i:before {
		font-size: 18px;
		text-align: center;
		line-height: 30px;
		text-shadow: 1px 1px #fff;
	}
	
	#control-label i:hover:before { 
		-webkit-animation: animate .7s linear; 
		   -moz-animation: animate .7s linear; 
			-ms-animation: animate .7s linear; 
			 -o-animation: animate .7s linear; 
				animation: animate .7s linear; 
	}
	
	@-webkit-keyframes animate { 25% {  -webkit-transform: rotate(25deg); } }
	@-moz-keyframes animate    { 25% {     -moz-transform: rotate(25deg); } }
	@-ms-keyframes animate     { 25% {		-ms-transform: rotate(25deg); } }
	@-o-keyframes animate      { 25% {		 -o-transform: rotate(25deg); } }
	@keyframes animate		   { 25% {		  transform:   rotate(25deg); } }

	.style-block { 
		position: relative;
		margin-bottom: 20px;
	}
	
		.style-block h6 { 
			font-weight: 400;
			font-size: 13px; 
		}
	
		.style-block span {
			display: block;
			margin-bottom: 10px;
			font-size: 11px;
			font-style: italic;
			line-height: 1.3;
		}
	
	.style-block ul {
		overflow: hidden;
		padding-bottom: 5px;
	}

		.style-block li {
			float: left;
			margin: 2px;
		}

			.style-block li a {
				display: block;
				width: 30px;
				height: 30px;
				font: 0/0 a;
				
				-webkit-border-radius: 3px;
				   -moz-border-radius: 3px;
						border-radius: 3px;
				-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,.1), inset 0 0 0 1px rgba(0,0,0,.1);
				   -moz-box-shadow: 0 0 0 0 rgba(0,0,0,.1), inset 0 0 0 1px rgba(0,0,0,.1);
						box-shadow: 0 0 0 0 rgba(0,0,0,.1), inset 0 0 0 1px rgba(0,0,0,.1);	
				-webkit-transition: all .25s linear;
				   -moz-transition: all .25s linear;
					-ms-transition: all .25s linear;
					 -o-transition: all .25s linear;
						transition: all .25s linear;
			}	

			.style-block .active a { 
				-webkit-border-radius: 50%;
				   -moz-border-radius: 50%;
						border-radius: 50%;
				-webkit-box-shadow: 1px 1px 2px 0 rgba(0,0,0,.15), inset 0 0 0 1px rgba(0,0,0,.1);
				   -moz-box-shadow: 1px 1px 2px 0 rgba(0,0,0,.15), inset 0 0 0 1px rgba(0,0,0,.1);
						box-shadow: 1px 1px 2px 0 rgba(0,0,0,.15), inset 0 0 0 1px rgba(0,0,0,.1);
			}
			
			.ie8 #control-panel .active a { outline: 1px solid #000; }
			
			#theme-pattern {
				position: fixed;
				z-index: 9999;
				display: block;
				padding: 15px 10px 15px 20px;
				width: 170px;
				left: 0;
				top: 250px;
				background-color: #fafafa;
				-webkit-border-radius: 0 3px 3px 0;
				   -moz-border-radius: 0 3px 3px 0;
						border-radius: 0 3px 3px 0;
				-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
				   -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
						box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
			}
			
				#theme-pattern li a {
					background-repeat: repeat;
				}
				
				#theme-pattern .restore-button-wrapper { display: none; }
			
			/* Theme Color */
			
			#theme-color { background-color: #fafafa; }
			
	#control-panel .restore-button-wrapper {
		clear: both;
		text-align: center;
	}

		#control-panel #restore-button { margin: 0; }

/* -- Theme controll panel --> End -- */