@charset "utf-8";

body  {
	font: 100% "Garamond", "Palatino Linotype", "Goudy Old Style", "Book Antiqua", serif; 
	background: #A8B6B5;
	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;
}

.twoColFixLtHdr #container { 
	width: 980px;  
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
/*	border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	padding: 10px 0 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background: #FFFFFF;
	height:101px;
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #publications {
	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: 5px 70px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; 
	width: 420px; /* since this element is floated, a width must be given */
	height: 750px;
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px; /* top and bottom padding create visual space within this div */
}
.twoColFixLtHdr #sidebar1 h3, #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
.twoColFixLtHdr #sidebar2 {
	float: right; 
	width: 225px; /* since this element is floated, a width must be given */
	height: 250px;
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0 0px 0px; /* top and bottom padding create visual space within this div */
}
.twoColFixLtHdr #textframe {
	background: #000000; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 10px 40px 10px 10px;
	padding: 1px 1px 1px 1px; /* top and bottom padding create visual space within this div */
}
.twoColFixLtHdr #textframe1 {
	background: #A8B6B5; /* the background color will be displayed for the length of the content in the column, but no further */

	padding: 5px 5px 5px 5px; /* top and bottom padding create visual space within this div */
}
.twoColFixLtHdr #textframe2 {
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	font-size: 12px;
	padding: 10px 10px 10px 10px; /* top and bottom padding create visual space within this div */
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColFixLtHdr #mainContent {
/*	margin: 0 0 0 420px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 40px 0 80px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #mainContent1 {
	margin: 0 0 0 420px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 40px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.twoColFixLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#A8B6B5;
	text-align:center;
} 
.twoColFixLtHdr #footer p {
	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 */
	text-align:center;
}
.twoColFixLtHdr #headLine p {
	padding-left:237px;    /*For use with partial headers */
}

.twoColFixLtHdr #headLinea p {
	padding-left:237px;    /*For use with awa_footer (full header) */
}

#MenuBar1 {
	padding-left:405px;   /*For use with partial headers */
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
.copyright {
	font-size:small;
	text-align:center;
	padding-left: 10px;
}
.bookTitle {
	font-size:large;
	color:#066;
	font-style:italic;
	font-weight:bold
}

