/* CSS Document */

body {
	margin:0px;
	padding:0px;
	font-family: sans-serif;
	font-size:medium
	text-align:center;
	background-color: #FFFFC3;
}
* {margin:0; padding:0;}
div#mainwrap {width:774px; margin-left:auto; margin-right:auto;  text-align:left;}
div#header {width:774px; height:200px; background-color:#FFFFCC; text-align:center; padding-top:6px;}
div#header2 {width:774px; height:50px; background-color:#663300; text-align:center; padding-top:6px;}
div#column2 p {font-size:medium; margin:1em 30px;}
div#contentarea {width:774px; background-color:#FFF;
                            background-image:url(images/mohelet2background.gif);
							background-repeat: repeat-y;} 
div#column1 {width:20px; background-color:#663300; float:left; padding-left:6px; padding-top:15px}
div#column1 ul {margin: 20px 0 0 26px;}
div#column2 {width:774px; background-color:#FFF; float:left;}
div#column3 {width:20px; background-color:#663300; float:left;}
div#column3 p {margin: 20px 10px 0 10px;}
div#footer {width:774px; background-color:#663300; text-align:center; padding-top:3px;}

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