/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

label { font-weight: bold; }

input.checkbox {width: 15px;}

/* Fieldsets */
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }

/* Text fields */
input.text, input.title   { width: 300px; margin:0.5em 0.5em 0.5em 0; }
input.text, input.title   { border:1px solid #bbb; background:#f6f6f6; padding:5px; }
input.text:focus,
input.title:focus         { border:1px solid #999; background:#fff; }
input.title               {font-size:1.5em;}
input.file {width: 400px;}

/* Textareas */
textarea            { width: 400px; height: 250px; margin:0.5em 0.5em 0.5em 0; }
textarea            { border:1px solid #bbb; background:#eee; padding:5px; }
textarea.ordertext {
	width: 888px;
	margin: 15px 0 0;
	height: 100px;
}
textarea:focus      { border:1px solid #999; background:#fff; }
textarea.checkorder {width: 100%; height: 850px; margin:0.5em 0.5em 0.5em 0; border:1px solid #bbb; font-size: 1.0em; font-family: Arial; color: #fff; background-color: #000; padding:5px; }
body.newyear textarea.checkorder {width: 100%; height: 900px; margin:0.5em 0.5em 0.5em 0; border:1px solid #bbb; font-size: 1.0em; font-family: Arial; color: #333; background-color: #fff; padding:5px; }

/* Select fields */
select              {
	background:#f6f6f6;
	width:200px;
}
select:focus        {background:#fff;}


/* Success, error & notice boxes for messages and errors. */
.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error      { background: #FBE3E4; color: #D12F19; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #817134; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #529214; border-color: #C6D880; }
.error a    { color: #D12F19; }
.notice a   { color: #817134; }
.success a  { color: #529214; }
#contact label {
	position: relative;
	display: block;
	color: #FFFFFF;
	font-size: 13px;
	line-height: 2em;
}
body.newyear #contact label {
	color: #333;
}
#contact label input {
	position: absolute;
	color: #FFFFFF;
	font-size: 13px;
	line-height: normal;
	top: 0px;
	right: 0px;
	background-color: #333333;
	border-color: #666666;
	margin: 0px;
	width: 400px;
}
body.newyear #contact label input {
	color: #333;
	background-color: #F5F5F5;
	border-color: #dbdbdb;
}
#contact textarea {
	width: 578px;
	background-color: #333333;
	border-color: #666666;
	color: #FFFFFF;
	margin-top: 0px;
	margin-bottom: 16px;
}
body.newyear #contact textarea {
	background-color: #F5F5F5;
	border-color: #dbdbdb;
	color: #333;
}
