/**
 * 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;
  float: right;
  margin-right: 10px;
}
.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(../images/wheel.png) no-repeat;
  width: 195px;
  height: 195px;
}
.farbtastic .overlay {
  background: url(../images/mask.png) no-repeat;
}
.farbtastic .marker {
  width: 17px;
  height: 17px;
  margin: -8px 0 0 -8px;
  overflow: hidden; 
  background: url(../images/marker.png) no-repeat;
}
#customize{
  width: 430px;
  float: right;
  position: absolute;
  right: 0;
  z-index: 600;	
  background: #000;
  opacity: 0.95;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #fff;
}
#custclose{
  width: 25px;
  height: 25px;
  float: right;
  position: absolute;
  color: #780000;
  font-size: 16px;
    right: -1px;
    top: -1px;
  z-index: 1600;	
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 25px;
  cursor: pointer;
  background: #ccc;
	}
.form-item{
  margin: 5px;
  text-align: right;
	}
#finished{
  float: left;
  width: 100px;
  height: 50px;
  background: #780000;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin: 0 0 5px 50px;
  line-height: 50px;
  vertical-align: middle;
  cursor: pointer;
	}
#custom{
  float: right;
  position: absolute;
  z-index: 150;
  top: 5px;
  right: 10px;
  width: 200px;
  height: 75px;
  background: url(../images/customize.png) no-repeat;
  cursor: pointer;
}
#picker{
	width:195px;
	height: 195px;
	clear: none;
	float: right;
	}
#colors{
	float:left;
	clear: none;
	background: #000;
	}


