/*Main Form CSS Document */
div#mnform { width:420px; margin:20px auto;}

	div#mnform h3 {color:#626460; margin-bottom:15px;}

	div#mnform form{background-color:transparent}

	div#mnform div.clearfix {
		/*border-top:1px solid #ebebeb;*/ /*adds line above each section in main forms*/
		padding:2px 0;
		vertical-align:top;}
			
	div#mnform  label { /*style labels on main forms and position them next to input boxes*/
		width:120px; float:left; font-size:.75em; margin:0 10px; color:#fff; font-weight:bold;}
		
	div#mnform input {border:solid 0 #fff; color:#847F7F;  text-align:left; margin:5px auto; height:17px; }
		.padleft {padding-left:8px;}
		div#mnform .checkbox {display:block; width:400px; font-size:10px; }
		div#mnform .checkbox span em{margin-right:8px; position:relative; top:-4px; left:3px; font-variant:normal}
		
	div#mnform textarea {border:solid 0 #fff; color:#847F7F;  text-align:left; margin:5px auto; height:90px; padding-left:8px; }
	/*fixes the textarea in IE so that scrollbars don't show and text does scroll.*/
	* html div#mnform textarea {  height:86px;overflow-y:hidden; width:235px}

fieldset {border:none;}/*kill fieldset border in form*/	

.btn {background-image:none; width:75px; padding-left:0}

.imageright {float:right}

/*add any additional divs or classes in this area and not below the alsett clearing method*/
	
/* and the Alsett clearing method code must go here*/
/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */