/**
 * Farbtastic Color Picker 1.2
 * © 2008 Steven Wittens
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
.farbtastic {
  position: relative;
}
.farbtastic * {
  position: absolute;
  cursor: crosshair;
}
.farbtastic, .farbtastic .wheel {
  width: 195px;
  height: 195px;
}
.farbtastic .color, .farbtastic .overlay {
  top: 47px;
  left: 47px;
  width: 101px;
  height: 101px;
}
.farbtastic .wheel {
  background: url(wheel.png) no-repeat;
  width: 195px;
  height: 195px;
}
.farbtastic .overlay {
  background: url(mask.png) no-repeat;
}
.farbtastic .marker {
  width: 17px;
  height: 17px;
  margin: -8px 0 0 -8px;
  overflow: hidden; 
  background: url(marker.png) no-repeat;
}

/* The below styles are ones added by Jim Andrews */

#colPicker {
	position:absolute;
	left:0px;
	top:0px;
	background: rgba(0,0,0,.75);
	border: 1px solid #000;
	padding:3px;
	width:194px;
	display:none;
	border-radius:.5em;
	box-shadow:3px 3px 15px #333333;
	z-index:3000;
}
#pickerTop {
	/* The div that contains the pickerDescriptor
		 andn closeButton. See http://quirksmode.org/css/clearing.html
		 for the logic behind the overflow and width settings for this 
		 style. */
	border-top-left-radius: .5em;
	border-top-right-radius: .5em;
}
#pickerDescriptor {
	/* This is the (dynamic) text that describes the picker */
	font-size:1em !important;
	font-weight:normal !important;
	margin-top: 5px;
	margin-right: 3px;
	margin-bottom: 5px;
	margin-left: 3px;
}
#pickerCloseButton {	
	top:-2px;
}
#farbColorPicker {
	border-bottom-right-radius:.5em;
	border-bottom-left-radius:.5em;
}

