/*
 * The reasaon this CSS being seperated out for ease of creating new color profile.
 * Sometimes, its faster and easier to just Copy+Paste the style.css into the \color 
 * and made changes directly. As this DIV shouldnt be changed, hence, it is safer to 
 * include as a seperate file.
 * Another reason is, if the theme totally do not have any color profiles, then, 
 * we NO NEED to load this file at all. Hence, its easier for us to exclude the file
 * in the \includes\page_html_start.php
 */
#divColorProfile{
	color: #333; 
	display: none;
	position: absolute;
	margin-left:-100px;
	width: 100px;
	height: 200px;
	padding: 10px;
	border: 1px solid #DDEEFF;
	background-color: #FFFFFF;
	text-align: left;
	overflow: auto;
	z-index: 8090;
	font-family: verdana,arial;
	font-size: 11px;
	filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135,Strength=5), alpha(opacity=90);
	-moz-opacity: .09;
	opacity: .90;
}