@charset "utf-8";
/* CSS Document */

/* Color Picker */

#color-picker {
	font-size: 12px;
	color: #383838;
	background-color: #fff;
	width: 70px;
	position: fixed;
	left: 0;
	top: 40%;
	z-index: 9999;
}

#color-picker h4 {
	background-color: #000;
	padding:10px 0;
	margin: 0;
	color:#8493A1;
	text-align: center;
	border-bottom: 1px solid #222222;
}

#color-picker h5 {
	margin-bottom: 10px;
}

#options {
	padding: 10px;
}

#options {
	background: #000;
}

#color-picker h4 a {
	display: block;
	background: #65707B url(../../img/settings.png) no-repeat center center;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	right: -40px;
	text-indent: -9999px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.thumbs { 
	list-style: none;
	padding: 10px 0;
	margin: 0;
}

.thumbs:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;	
}

.thumbs li { 
	float: left; 
	margin: 0 0 6px 0; 
}

.thumbs li a { 
	display: block; 
	width: 50px; 
	height: 20px; 
	cursor: pointer; 
	box-shadow: 0 0 0 1px rgba(0,0,0,0.3) inset; 
	-webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.3) inset; 
} 

.thumbs li a.active { 
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 1) inset; 
	-webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 1) inset;
}


/* Colors */
.red { background-color: #C75344; }
.green { background-color: #91D100; }
.blue { background-color: #3D9ED5; }
.rose { background-color: #FF76BC; }
.yellow{ background-color: #E1B700; }
.orange { background-color: #E28236; }
