/**************************************************************
 *	CSS Forms Framework, v.1.0
 *	
 *	Author: Kamil Kuczmera 
 *	E-mail: kamil@kuczmera.com
 **************************************************************/
 
form.forms { margin: 25px 20px 0 5px; padding-top: 5px; }
	
	/* Fieldset and legend style */
	form.forms fieldset { border: 1px solid #dadbd7; }
	form.forms fieldset legend { color: #e32000; font-weight: bold; padding: 0 5px; margin-left: 15px; }
	
	/* Paragraph un- and checked */
	form.forms fieldset p { clear: both; overflow: auto; height: 100%; padding: 5px 10px 5px; margin: 0 0 0 10px; }
	form.forms fieldset p.current { background: #fff url(../images/backend/forms/paragraph-bg.gif) 0 bottom repeat-x; }
		
		html>body form.forms fieldset p { }
		* html form.forms fieldset p label span {  } 
		
	/* Label, em, span, b */
	form.forms fieldset p label { float: left; width: 130px; padding: 5px 15px 3px 0; text-align: right; font-weight: bold; cursor: pointer; }
	form.forms fieldset p label em { color: #d24d4d; font-style: normal; padding: 0 0 15px 5px; }
	form.forms fieldset p label span { float: none; display: block; font-weight: normal; color: #b1b1b1; font-size: 10px; } 
	
		form.forms fieldset p b { display: none; }
		form.forms fieldset p span { float: left; } 
	
	/* Input */
	form.forms fieldset p input, 
	form.forms fieldset p textarea { background: #fff; border: 3px solid #dadbd7; border-left-width: 6px; border-right-width: 6px; font-family: Tahoma, Arial, Helvetica, sans-serif; padding: 3px 5px; margin-bottom: 5px; vertical-align: middle; }
	
	form.forms fieldset p input:focus, 
	form.forms fieldset p textarea:focus { border-color: #a2a49b; }
	
	.submit { padding: 15px 0 0 0; }
	.submit input { width: 63px; height: 22px; line-height: 22px; text-align: center; font-weight: bold; font-size: 11px; color: #fff; border: 0;
							background: url(../images/layout/content/submit-bg.gif) no-repeat; cursor: pointer; }
	
	/* Checkboxy */
	form.forms fieldset p.checkbox span { float: left; width: 330px; text-align: left; }
	form.forms fieldset p.checkbox span label { float: left; padding: 5px 0; width: auto; font-weight: normal; text-align: left; margin-right: 20px; }
	form.forms fieldset p.checkbox span label input { background: none; border: 0; margin: 0; }
		
	/* Warning */
	form.forms fieldset p.warning input, 
	form.forms fieldset p.warning textarea { background: #f9c2c2; border-color: #b85f5f; }
	form.forms fieldset p.warning label { color: #c56666; }
	form.forms fieldset p.warning b { color: #c56666; display: inline; padding: 5px 10px 4px; margin-left: 5px; position: absolute; border: 1px solid #b85f5f;  }
	
	form.forms fieldset p.warning input:focus, 
	form.forms fieldset p.warning textarea:focus { border-color: #792d2d; }
	
	/* Sample forms */
		
		/* Address */
		input.street { width: 216px; } input.house { width: 40px; } input.flat { width: 20px; } 
		input.post1 { width: 20px; text-align: center; } input.post2 { width: 30px; text-align: center; } input.city { width: 200px; }
	