/* Site Design and Development by Jahzel Misner www.jahzel.com*/

@charset "utf-8";
body  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #FCFCFC;
	background-image: url(../images/main_cell.gif);
	background-repeat: repeat-x;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

#container { 
	background: #ffffff;
	width: 770px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-left: 5px solid #821D33;
	border-right: 5px solid #821D33;
	padding-left: 15px;
	padding-right: 15px;
} 

#header { 
	padding: 20px 0 0 0;	
} 

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#logo {
	float: left;
}

#logo2 {
	float: left;
	height: 80px;
}

#headspace {
	height: 24px;
}

.menu {
	float: left;
	background-color: #9FAEBB;
	background-repeat: x;
	width: 629px;
	height: 24px;
	border-top: 3px solid #821D33;
	border-bottom: 1px solid #f2f3f3;
}

#title {
	font-size: 15px;
	font-weight: bold;
	color: #821D33;
	padding-top: 25px;
	padding-bottom: 10px;
}


#mainContent { 
	float: left;
	width: 100%;
	line-height: 1.5;
}

#mainContent p {
	margin: 0;
	padding-bottom: 10px;
} 

#mainContent ul {
	margin: 0;
	padding: 0;
	list-style: inside;
}

#sidebar1 {/*index.html About Us*/
	line-height: 1.5;
	width: 750px;
	font-size: 13px;
	background-color: #6F7B84;
	color: #ffffff;
	float: left;
	padding: 10px;
	border: 1px solid #dddddd;
}

#sidebar1 img {
	margin-left: 10px;
}

#sidebar1 p {
	margin: 0;
	padding: 0;	
}

#sidebarprod {/*prod1/html Typical Jambs*/
	line-height: 1.5;
	width: 750px;
	font-size: 14px;
	color: #000000;
	padding: 10px;
	text-align: center;
}

#sidebar2 {/*prod2.html Sidelites*/
	line-height: 1.5;
	width: 750px;
	font-size: 14px;
	color: #000000;
	padding: 10px;
}


#footer {
	border-top: 3px solid #821D33;
	margin-top: 20px;
} 


#footer p {
	text-align: center;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}


/*Utility Classes*/

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.floatleft {
	float: left;
}

.floatright {
	float: right;
}

.mleft {
	margin-left: 10px;
}

.floatrightm {
	float: right;
	margin-left: 10px;
}
