﻿/* CSS layout for MarshfieldScoolofWeaving.com */

/* Default margins, padding, and borders to 0.  Allegedly helps IE6 not get confused. */
/* Again, due to bugs in IE6 box model, avoid using left/right margins, padding, borders. */
/* Default window background color matches all the divs background color for now. */
body 
{
	margin:0;
	padding:0;
	border:0;
	background-image: url('CommonGraphics/PageColor.jpg');
	background-repeat: repeat;
}

/* The wrapper defines all the default values for text - font color is dark brown. */  
#wrap 
{
	width: 770px;
	height: 100%;
	margin: 0 auto;
	background-image: url('CommonGraphics/PageColor.jpg');
	background-repeat: repeat; 
	text-align: left; 
	vertical-align: top;
	overflow:visible;
	font-family: "Times New Roman", Times, serif;
	font-size: medium;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	color: #4E3C2E;
	letter-spacing: 1pt;
	z-index: 1;
	visibility: visible;	
}

/* Level 2 is left vacant in case we want to put in some background images later. */

/* Start laying out divs in rows nested in wrapper.  Logo will be text in upper left corner */	
#Logo 
{
	clear: both;
	float:left;
	width:145px;
	height:110px;
	background-image: url('CommonGraphics/PageColor.jpg');
	background-repeat: repeat;
	z-index: 3; 
	visibility: visible;	
}

/* To the right of the logo is the header lettering */
#HeaderItems
{
	float: left;
	width: 625px;
	height: 110px;
	background-image: url('CommonGraphics/PageColor.jpg');
	background-repeat: repeat;
	background-color: transparent;
	z-index: 3; 
	visibility: visible;	
}

#SiteTitle 
{
	float:left;
	width:625px;
	height: 110px;
	text-align: center;
	background-image: url('CommonGraphics/PageColor.jpg');
	background-repeat: repeat;
	z-index: 3; 
	visibility: visible;	
}

/* Stretching across the full page width, are the main links. */
#MainLinks 
{
	float:left;
	margin: 0 auto;
	width:770px;
	height: 50px; 
	text-align: center;
	background-image: url('CommonGraphics/PageColor.jpg');
	background-repeat: repeat;
	z-index: 3; 
	visibility: visible;	
}

/* Below the main links:  the actual page content is in Message */
	
#Message 
{
	clear:both;
	float:left;
	width:770px;
	background-image: url('CommonGraphics/PageColor.jpg');
	background-repeat: repeat;
/*	padding-left:20px;
	padding-right:20px; */
	padding-top: 10px;
	padding-bottom: 10px; 
	z-index: 3; 
	visibility: visible;	
}

/* Duplicate set of main links across bottom */
#BottomLinks
{
	float:left;
	width:770px;
	height: 50px;
	background-image: url('CommonGraphics/PageColor.jpg');
	background-repeat: repeat;
	z-index: 3; 
	visibility: visible;	
}

/* footer for copyright notice */
#footer 
{
	clear:both;
	float:left;
	width:770px;
	height: 20px;
	background-image: url('CommonGraphics/PageColor.jpg');
	background-repeat: repeat;
	z-index: 3; 
	visibility: visible;	
}
	

