/*
Ceres Control Panel

This is a control pannel program for Athena and Freya
Copyright (C) 2005 by Beowulf and Nightroad

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.

To contact any of the authors about special permissions send
a mail to cerescp@gmail.com
*/


input, select, option, textarea { 
	font-family: verdana,arial;
	font-size: 10px;
	background-color: #D6D3D6;
	color: #000000;
	border: solid;
}

tr, td {
	font-size: 10px;
	FONT-FAMILY: verdana,arial;
	color: 000000;
}

img { border-style: none; }

.head {
	font-weight: bold;
}

.title { 
	font-family: verdana,arial;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
}

.link {
	font-size: 8pt;
	color:#000000; 
	line-height: 8pt;
	font-family: arial;
	font-weight: bold;
	border-bottom: 0;
	text-decoration: none;
}

.copyright_link {
	font-size: 8pt;
	color:#FFFFFF; 
	line-height: 8pt;
	font-family: arial;
	font-weight: bold;
	border-bottom: 0;
	text-decoration: none;
}

 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:unchecked + .slider {
  background-color: #BA303E;
}

input:disabled + .slider {
  background-color: #BA303E;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} 
} 