/* -------------------------------------------------------------- 
	
	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
   
-------------------------------------------------------------- */

		form {
			margin: 0;
			padding: 0;
			}
			
			fieldset {
				border: 0;
				margin: 0 0 1.8em;
				padding: 1em;
				border: 1px solid #ccc;
				}
				
				legend {
					display: table;
				}
				
				label.txtField {
					display: block;
					float: left;
					text-align: right;
					width: 48%;
					/* padding: 2px 12px 0 0; */
					}

					label span {
						margin-left: -12px;
						width: 18px;
						color: red;
					}
					
				fieldset div {
					text-align: center;
				}
					
				input.text, input.title, select {
					width: 48% !important;
					color: #4E5B6E;
				    border: 1px solid #bbb;
					}
					
					input.text:focus, input.title:focus, textarea:focus, select:focus {
					    border: 1px solid #666;
					}
				
				textarea { 
					padding: .5em; 
					width: 48%; 
					height: 150px; 
					border: 1px solid #ccc;
					color: #4E5B6E;
				}

				select {
					width: 48%; 
					color: #4E5B6E;
				}

				
/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 1px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.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

DESCRIPTION: HTML/CSS/JS Framework or Repository created by genius switch studio
in order to streamline all builds. HTML Structure is always the same, 
CSS Structure is always the same, jQuery drives everything. 

**********************************************************************************************/

