/* -------------------------------------------------------------- 
	
	forms.css	
	* Styles for Accessible Form and Form Layout Elements
   	* Sets up some default styling for forms
   	* Gives you classes to enhance your forms
   
   	Usage:
   	* For text fields, use class .title or .text
   
-------------------------------------------------------------- */

		#contentArea form {
			margin: 0;
			padding: 0 0 32px 0;
			width: 658px;
			font-size: 12px;
			}
			
			fieldset {
				border: 0;
				margin: 0;
				padding: 1em;
				}
				
				legend {
					display: none;
				}
				
				label.txtField {
					display: block;
					float: left;
					text-align: left;
					width: 131px;
					padding: 2px 12px 0 12px;
					}

					label span {
						margin-left: -9px;
						width: 18px;
						color: red;
					}
					
				fieldset div {
					padding-left: 155px;
				}
					
				input.text, input.title, textarea {
					width: 260px !important;
					height: 18px;
					color: #4E5B6E;
				    border: 1px solid #bbb;
					}
					
					input.text:focus, input.title:focus, textarea:focus, select:focus {
					    border: 1px solid #666;
					}
				
				textarea { 
					padding: 5px; 
					width: 260px !important;
					height: 200px; 
					border: 1px solid #ccc;
					color: #4E5B6E;
				}

				select {
					width: 260px !important;
					color: #4E5B6E;
					}
					
					select#amount {
						width:292px !important;
					}

					#amount_custom, #amount {
						float:left;
					}
					
					#label-or {
						width:17px;
					}
				
/* Success, notice and error boxes
-------------------------------------------------------------- */

div.error,
div.notice, 
div.success    { padding: .8em; margin-bottom: 1em; border: 1px solid #ddd; display: block; }

div.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
select.error,
input.error      { background: #FBE3E4; color: #8a1f11;}
label.error{display: none !important;}

div.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
div.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
div.error a    { color: #8a1f11; }
div.notice a   { color: #514721; }
div.success a  { color: #264409; }				


/*******************************************************************************************

TITLE: the genius development framework

VERSION: 1.0.0
URI: http://www.geniusswitchstudio.com/
AUTHOR: Christian Alexander Seeber, Principal + User Experience Architect
COPYRIGHT: 2009 genius switch studio llc

DISCLAIMER: Of course the copyright is not worth much to me, 
please feel free to borrow, steal, learn, critique (not critisize). I certainly
borrowed from countless bits i've accumulated over the years to reach this level, and 
i'm sure we'll be making updates as time goes on. I think the world of web dev is a 
great place to share and teach each other, not get pissy about who owns what... That said
we're proud of this framework, and hope if you're reading this far down, that you're gaining 
something here. Metta!

DESCRIPTION: HTML/CSS/JS Framework or Repository created by genius switch 
in order to streamline all our builds. HTML Structure is always the same, 
CSS Structure is always the same, jQuery drives everything. 
Our Markup is nearly identical on every build except for the content, 
our stylesheets, elements and classes are structured nearly identically 
every time with the only difference being the actual stylings.

**********************************************************************************************/