@charset "UTF-8";
/* CSS Document */

/* colors

peach     FFF3D3
lt brown  c5b499
med brown 6F5743
dk brown  2A1200
dk blue   00194C
red       993333
green     539B04

text      1d1712  (dk dk brown)
links     0033CC  (blue)

*/


body  {
	font: 11pt Arial, Helvetica, sans-serif; 
	color: #1d1712;
	background: #c5b499; 
	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 */
}

.twoCol #container { 
	width: 770px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #ffffff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #1d1712;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.twoCol #header { 
	background: #fff3d3; 
	padding: 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. */
	text-align: center;
} 

.twoCol #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 */
}

.twoCol #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 161px; /* 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 */
	background: #ffffff; /* the background color will be displayed only for the length of the content in the column */
	margin: 155px 0 0 0;
	padding: 0px 0px 5px 20px;
}

.twoCol #pageContent { 
	margin: 205px 20px 0 200px; /* the left margin (last) 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 0 0 2px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/* If you'd like a dividing line, place a border on the left side of the #mainContent div if it will always contain more content. */
} 

.twoCol #footer { 
	margin: 30px 0 0 0;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #ffffff; 
	text-align: center;
} 

.twoCol #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: 9px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#leftnav1 {
	margin: 0 0 50px 0;
	padding: 35px 0 1px 0;
	border-right: 1px solid #1d1712;
}

#linx {
	margin: 0;
	padding: 0 10px 0 0;
}

#sysreqs {
	margin: 0;
	padding: 0;
	background: #eeeeff;
}

#tableTop { /* this is for a table header at the top of the pageContent div */
	width: 540px;
	margin: 0;
	padding: 0;
}

#table2col { /* this is for a 2 column table anywhere within pageContent div */
	width: 545px;
	margin: 0;
	padding: 0;
}

#tableLeft { /* this is the left cell of tableTop or table2col */
	float: left;
	width: 265px;
	margin: 0;
	padding: 0;
	text-align: left;
}

#tableRight { /* this is the right cell of tableTop or table2col */
	margin: 0 0 0 270px;
	padding: 0;
	text-align: right;
}

#tableRightL { /* this is the right cell of tableTop or table2col - left-aligned text */
	margin: 0 0 0 275px;
	padding: 1px 0 0 0;
	text-align: left;
}

#tableLeft2 { /* this is the left cell of tableTop */
	float: left;
	width: 330px;
	margin: 0;
	padding: 0;
	text-align: left;
}

#tableRight2 { /* this is the right cell of tableTop */
	margin: 0 0 0 335px;
	padding: 0;
	text-align: right;
}

.floatR { /* 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;
}

.floatL { /* 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: 0px;
    font-size: 1px;
    line-height: 0px;
	margin: 0;
	padding: 0;
}

#Table_01  { visibility: visible; position: relative; top: 0; left: 0; width: 770px; }
/* this table contains all the image slices for the top header */

#Slice-01 { position:absolute; left:0px; top:0px; width:135px; height:138px; }

#Slice-02 {	position:absolute; left:135px; top:0px; width:255px; height:138px; }

#Slice-03 { position:absolute; left:390px; top:0px; width:380px; height:24px; }

#Slice-04 { position:absolute; left:390px; top:24px; width:380px; height:114px; }

#Slice-05 { position:absolute; left:0px; top:138px; width:187px; height:37px; }

#Slice-06 { position:absolute; left:187px; top:138px; width:107px; height:37px; }

#Slice-07 { position:absolute; left:294px; top:138px; width:138px; height:37px; }

#Slice-08 { position:absolute; left:432px; top:138px; width:112px; height:37px; }

#Slice-09 { position:absolute; left:544px; top:138px; width:226px; height:37px; }

/* end image slices for top header */

p { color: #1d1712; margin-top: 0px; font-size: 11pt; font-family: Arial, Helvetica, sans-serif; }

a { color: #0033CC; text-decoration: none; }

a:hover { text-decoration: underline; }

ul    {
	color: #1d1712;
	font-size: 11pt;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 15pt;
	text-align: left;
	list-style-type: none;
	list-style-image: none;
}

li {
	font-size: 10pt;
	text-indent: 12pt;
	list-style: disc url(none) outside;
}

h1 { color: #1d1712;
 	font-size: 14pt; 
	font-family: Arial, Helvetica, sans-serif; 
	font-style: normal; 
	font-weight: bold;
	margin: 0;
}

h2 {
	color: #1d1712;
	font-size: 11pt;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
	margin-bottom: 0px;
}

h3 {
	color: #1d1712;
	font-size: 11pt;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
	margin: 30px 0 0 0;
}

h4 {
	color: #1d1712;
	font-size: 10pt;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
	margin-bottom: 0px;
}

table {
	margin: 0px;
	padding: 0px;
}

.text14 { font-size: 14pt; }

.text12 { font-size: 12pt; }

.text11 { font-size: 11pt; }

.text10 { font-size: 10pt; }

.text9 { font-size: 9pt; }

.menuLeft { color: #351700; font-size: 11pt; font-family: Arial, Helvetica, sans-serif; line-height: 15pt; }

.menuLeft10 { font-size: 10pt; line-height: 15pt; }

.menuShop { color: #351700; font-size: 12pt; font-family: Arial, Helvetica, sans-serif; }

.menu10 { font-size: 10pt; line-height: 13pt; }

.menu11a { font-size: 11pt; line-height: 15pt; }

.menu11b { font-size: 11pt; line-height: 14pt; }

.title14 { font-size: 14pt; font-weight: bold; }

.footer9 { color: #1d1712; font-size: 9pt; font-family: Arial, Helvetica, sans-serif; font-style: normal; font-weight: normal; line-height: 13pt; }

.footer8 { color: #1d1712; font-size: 8pt; font-family: Arial, Helvetica, sans-serif; font-style: normal; font-weight: normal; line-height: 11pt; }

.footerlinks { color: #1d1712; font-size: 10pt; font-family: Arial, Helvetica, sans-serif; font-style: normal; font-weight: normal; line-height: 15pt; }

.red {
	color: #993333;
}

.green {
	color: #539B04;
}

.p0 {
	margin: 0px;
	padding: 0px;
}

.p010 {
	font-size: 10pt;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
}

.field10 {
	font-size: 10pt;
	font-family: Courier; 
	width: 170px;
}