/* -------------------------------------------------------------- 
   
   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; }


/* 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; }

/* Textareas */
textarea            { width: 400px; margin:0.5em 0.5em 0.5em 0; }
textarea            { border:1px solid #bbb; background:#eee; padding:5px; }
textarea:focus      { border:1px solid #999; background:#fff; }

/* Select fields */
select              { border:1px solid #ccc; background:#f6f6f6; width:200px; }
select:focus        { border:1px solid #999; 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; }

/* Settings Form */

 div.forms2 {
 	background:#F8F8F8;
 	padding:10px;
 }
 
 div.forms2 div {
 		margin-bottom:1em;
 }
 
 div.forms2 input, select {
		font-size: 95% !important;
		background: #fff;
		line-height: 1em !important;
		vertical-align: middle;
		padding:5px;
		border:1px solid #BFBFBF;
	}
 div.forms2	textarea {
		font-size: 1.1em;
		font-family: Arial, Helvetica, sans-serif;
		background: #fff;
		line-height: 1.3em !important;
		padding: 10px !important;
	}
	
 div.forms2 label {
		display: block;
		font-weight: bold;
		font-size: 85%;
		margin-bottom: 2px;
	}
	
 div.forms2	label span {
		font-weight: normal;
		padding-left: 1em;
	}
	
 div.forms2	label.inline {
		display: inline;
		font-weight: normal;
	}
	
 div.forms2	fieldset {
		border-width: 1px;
		border-style: solid;
		margin-bottom: 1em;
		min-height: 35px;
	}
	
 div.forms2	.menu-sub span {
		font-size: 100%;
	}
	
 div.forms2	.menu-sub {
		min-height: 3em;
	} * html .menu-sub { height: 3em; }
	
 div.forms2	.menu-sub span, .menu-sub a {
		display: block;
		float: left;
		padding: 2px 8px;
		border-width: 1px;
		border-style: solid;
		margin-right: 4px;
		background:#fff;
	}
	.menu-sub a:hover {
		display: block;
		float: left;
		padding: 2px 8px;
		border: 1px solid #ffcc66;
		margin-right: 4px;
	
	}
	.menu-sub span {
		border: 1px solid #888887;
		margin-right: 4px;
	}	