/* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
 This file is licensed under the Affero General Public License version 3 or later.
 See the COPYING-README file. */

#body-login {
	text-align: center;
	background: #c2c73f; /* Old browsers */
	background: -moz-linear-gradient(top, #84872d 0%, #c2c73f 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#84872d), color-stop(100%,#c2c73f)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #84872d 0%,#c2c73f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #84872d 0%,#c2c73f 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #84872d 0%,#c2c73f 100%); /* IE10+ */
	background: linear-gradient(top, #84872d 0%,#c2c73f 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84872d', endColorstr='#c2c73f',GradientType=0 ); /* IE6-9 */
}

#body-login p.info a, #body-login #showAdvanced {
	color: #eee;
}


/* LOG IN & INSTALLATION ------------------------------------------------------------ */
/* Dark subtle label text */
#body-login p.info,
#body-login form fieldset legend,
#body-login #datadirContent label,
#body-login form fieldset .warning-info,
#body-login form input[type="checkbox"]+label {
	text-align: center;
	color: #eee;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
	opacity: .6;
}


/* BUTTONS */
/* Primary action button, use sparingly */
.primary, input[type="submit"].primary, input[type="button"].primary, button.primary, .button.primary {
	border: 1px solid #84872d;
	background-color: #84872d;
	color: #d1d39c;
}

	.primary:hover, input[type="submit"].primary:hover, input[type="button"].primary:hover, button.primary:hover, .button.primary:hover,
	.primary:focus, input[type="submit"].primary:focus, input[type="button"].primary:focus, button.primary:focus, .button.primary:focus {
		border: 1px solid #1d2d44;
		background-color: #c2c73f;
		color: #e2e4a9;
	}
	.primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active {
		border: 1px solid #1d2d44;
		background-color: #c2c73f;
		color: #fff;
	}



/* VARIOUS REUSABLE SELECTORS */
#notification, #update-notification {
	margin: 0 auto;
	max-width: 60%;
	z-index: 101;
	background-color: #b3ba6a;
	border: 0;
	padding: 1px 8px;
	display: none;
	position: relative;
	top: 0;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	filter:alpha(opacity=90);
	opacity: .9;
