/* CSS Document */

div#mnform { 
	background-color:#d0dae5;
	width:300px; margin:30px auto 20px auto;
	/*border:2px solid #000;*/
	/*height:455px;*/
	}/*center the form*/

	div#mnform form{ /*add bottom border to form element to repeat div.clearfix divider line*/
		 background-color:#d0dae5;
		 border-bottom:1px solid #999;
		 }	
		 
		div#mnform legend {margin:10px; margin-left:20px;}

	div#mnform div.clearfix {
		border-top:1px solid #999; /*adds line above each section in main forms*/
		padding:10px 0;
		vertical-align:top;}
			
	div#mnform  label { /*style labels on main forms and position them next to input boxes*/
		width:60px; float:left;  margin:0 10px; color:#000; font-weight:bold;}
		
	div#mnform input { color:#000;  text-align:left; margin:5px auto; height:20px; font-size:14px; border-top:2px solid #444; border-left:2px solid #444;}
.padleft {padding-left:8px;}
	div#mnform textarea { color:#000;  text-align:left; margin:5px auto; height:90px;  font-size:18px;  border-top:2px solid #444; border-left:2px solid #444; width:280px;}
	/*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:260px; font-size:14px;}

fieldset {border:none;background-color:#d0dae5;}/*kill fieldset border in form*/	

.imageright {float:right; position:relative; left:-40px;}


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

