/**
 * Base CSS
 *
 * $Id$
 *
 * @package   Freecaster website
 * @author    Yannick Delwiche
 * @copyright (c) 2011 Kjerag S.A.
 */
html {
	height: 100%;
}
body {
	background: #FCF0F0;
	background: -webkit-gradient(linear, left top, left bottom, from(#FCF0F0), to(#FFFFFF)); /* WebKit */
	background: -moz-linear-gradient(top, #FCF0F0, #FFFFFF); /* FF */
	color: #202020;
	font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
	margin: 0;
	padding: 12px;
}
body.empty.embed {
	height: 100%;
	padding: 0;
}
h1 {
	background: #404040;
	background: -webkit-gradient(linear, left top, left bottom, from(#606060), to(#404040)); /* WebKit */
	background: -moz-linear-gradient(top, #606060, #404040); /* FF */
	border-bottom: 1px solid #000000;
	color: #FFFFFF;
	margin: -12px -12px 6px -12px;
	padding: 12px;
	text-shadow: 1px 1px 0 #000000;
	text-transform: uppercase;
}
body.error h1 {
	background: #A02020;
}
h2 {
	background: #C0C0C0;
	color: #404040;
	margin: 0 -12px;
	padding: 6px 12px;
	text-transform: uppercase;
}
h3 {
	background: transparent;
	color: #404040;
	text-shadow: 1px 1px 0 #FFFFFF;
}
a {
	color: #A03030;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #D06060;
}
#powered-by {
	background: url("../img/powered_by_bkg.png") repeat-x;
	bottom: 0;
	color: #808080;
	height: 24px;
	left: 0;
	margin-top: 12px;
	padding-top: 24px;
	position: fixed;
	text-align: center;
	width:100%;
}
/* Setup */
.checklist {
	margin-bottom: 12px;
	overflow: auto;
}
.checklist .item {
	background: -webkit-gradient(linear, left top, left bottom, from(#FFC0C0), to(#FFD0D0)); /* WebKit */
	background: -moz-linear-gradient(top, #FFC0C0, #FFD0D0); /* FF */
	border: 1px solid;
	border-color: #F0F0F0 #C0C0C0 #C0C0C0 #F0F0F0;
	border-radius: 3px;
	box-shadow: 1px 1px 2px #C0C0C0;
	float: left;
	font-size: 10px;
	line-height: 18px;
	margin: 3px;
	padding: 3px 12px;
	width: 22%;
	white-space: nowrap;
}
.checklist .item .status {
	color: #A03030;
	float: right;
	font-weight: bold;
	text-align: right;
	text-transform: uppercase;
}
.checklist .item.ok,
.checklist .item.enabled {
	background: -webkit-gradient(linear, left top, left bottom, from(#E0E0E0), to(#F0F0F0)); /* WebKit */
	background: -moz-linear-gradient(top, #E0E0E0, #F0F0F0); /* FF */
}
.checklist .item.ok .status,
.checklist .item.enabled .status {
	color: #609060;
}
.checklist .item.installed {
	background: -webkit-gradient(linear, left top, left bottom, from(#E0E0E0), to(#F0F0F0)); /* WebKit */
	background: -moz-linear-gradient(top, #E0E0E0, #F0F0F0); /* FF */
}
.checklist .item.installed .status {
	color: #909090;
}
form dl {
	overflow: auto;
}
form dt {
	clear: left;
	float: left;
	padding: 1px 0;
	width: 120px;
}
form dd {
	float: left;
	padding: 1px 0;
}
input[type=submit] {
	background: #A03030;
	background: -webkit-gradient(linear, left top, left bottom, from(#D06060), to(#A03030)); /* WebKit */
	background: -moz-linear-gradient(top, #D06060, #A03030); /* FF */
	border: 1px solid #702121;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 3px 3px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 3px 3px rgba(0,0,0,0.25);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 3px 3px rgba(0,0,0,0.25);
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	outline: none;
	padding: 6px 24px;
	text-align: center;
	text-shadow: 1px 1px 0 #702121;
	text-transform: uppercase;
}
input[type=submit]:hover {
	background: #D06060;
	background: -webkit-gradient(linear, left top, left bottom, from(#E06363), to(#D06060)); /* WebKit */
	background: -moz-linear-gradient(top, #E06363, #D06060); /* FF */
}
input[type=submit]:active {
	background: #D06060;
	background: -webkit-gradient(linear, left top, left bottom, from(#A03030), to(#D06060)); /* WebKit */
	background: -moz-linear-gradient(top, #A03030, #D06060); /* FF */
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.25);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.25);
	box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
input[type=submit]:disabled {
	background: #E0E0E0;
	background: -webkit-gradient(linear, left top, left bottom, from(#F0F0F0), to(#E0E0E0)); /* WebKit */
	background: -moz-linear-gradient(top, #F0F0F0, #E0E0E0); /* FF */
	border: 1px solid #C0C0C0;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 1px 2px rgba(0,0,0,0.125);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 1px 2px rgba(0,0,0,0.125);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 1px 2px rgba(0,0,0,0.125);
	color: #808080;
	text-shadow: none;
}
input[type=text],
textarea {
	background: #FFFFFF;
	border: 1px solid #BBB0B0;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,0.125), 1px 1px 0 #FFFFFF;
	-moz-box-shadow: inset 0 2px 3px rgba(0,0,0,0.125), 1px 1px 0 #FFFFFF;
	box-shadow: inset 0 2px 3px rgba(0,0,0,0.125), 1px 1px 0 #FFFFFF;
	padding: 3px 6px;
}
input[type=text].large {
	width: 400px;
}
th {
	color: #888080;
	font-size: 14px;
	text-align: left;
}
fieldset {
	border: 2px solid #BBB0B0;
	border-radius: 3px;
	-webkit-box-shadow: 1px 1px 0 #FFFFFF;
	-moz-box-shadow: 1px 1px 0 #FFFFFF;
	box-shadow: 1px 1px 0 #FFFFFF;
	margin: 6px;
	padding: 12px;
}
legend {
	color: #BBB0B0;
	font-size: 12px;
	font-weight: bold;
	text-shadow: 1px 1px 0 #FFFFFF;
	text-transform: uppercase;
}
br {
	clear: both;
}
hr {
	background: #BBB0B0;
	border: none;
	border-bottom: 1px solid #FFFFFF;
	clear: both;
	height: 1px;
	margin: 12px 0;
	overflow: auto;
	padding: 0;
}
img.diag {
	height: 1px;
	position: absolute;
	top: -100px;
	width: 1px;
}