@charset "utf-8";
body  {
	font: "Times New Roman", Times, serif;
	background: #D1BC88;
	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: #FFFFFF;
	font-size: 15px;
	font-weight: 500;
}
.thrColFixHdr #container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #800432;
	background-image: url(images/BG_gradientplanet.png);
	background-repeat: no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #header { 
} 
.thrColFixHdr #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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 143px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 0px 15px 0px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 143px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 0px 15px 0px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #blueTop {
	margin-left: 143px;
	margin-right: 143px;
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(images/blueBox_top.png);
	background-repeat: no-repeat;
}
.thrColFixHdr #blueBottom {
	margin-left: 143px;
	margin-right: 143px;
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.thrColFixHdr #mainContent {
	background-image: url(images/blueBox_middle.png);
	background-repeat: repeat-y;
	margin-left: 143px;
	margin-right: 143px;
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.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;
}
.textWithMargin {
	margin-left: 30px;
	margin-right: 30px;
	text-align: justify;
	font-weight: bold;
	font-size: 16px;
}
.italicText {
	margin-left: 30px;
	margin-right: 30px;
	text-align: justify;
	font-weight: normal;
	font-style: italic;
	font-size: 16px;
}
table {
	border: none;
	border-collapse: collapse;
}
td.menu{
	padding-bottom: 25px;
	padding-left: 10px;
	padding-right: 10px;
}
a.menulink {
	color: #05169A;
	text-decoration: none;
	font-weight: bolder;
	font-size: 17px;
}
a.menulink:hover {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bolder;
	font-size: 17px;
}
a.goldlink {
	color: #E5CE07;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	font-style: normal;
}
a.goldlink:hover {
	color: #66CCFF;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	font-style: normal;
}
.narrowDiv {
	margin-left: 220px;
	margin-right: 220px;
	text-align: justify;
}
.blurb {
	font-style: italic;
	font-weight: normal;
	font-size: 16px;
}
.imagespace {
	margin-left: 30px;
	margin-right: 30px;
}
.signature {
	font-style: italic;
	margin-left: 150px;
	font-size: 17px;
}
.margin20left {
	margin-left: 30px;
}
a#book img{
	background: url(images/mainPage_03.png) top left no-repeat;
}

a#book:hover img{
	background: url(images/mainPage_03_hl.png) top left no-repeat;
}
.hiddenPic {display:none;}