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

html {
	/* Force a vertical browser scrollbar to prevent page jumping */
	height: 101%; 
	/* Page background */
	color: #B8B8B8;
	background: #000 url(../images/background_left_side4.jpg) 0 0 repeat-y;
	/* General font settings */
	font-family: 'Times New Roman', Times, serif;
	font-size: 101%;
	font-weight: normal;
}

body  {
	height: 101%;
	color: #B8B8B8;
	background: #000 url(../images/background_left_side4.jpg) 0 0 repeat-y;
	font-family: 'Times New Roman', Times, serif;
	font-size: 101%;
	font-weight: normal;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}

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

#sidebar1 {
	background: none; /* the background color will be displayed for the length of the content in the column, but no further */
	float: left; /* since this element is floated, a width must be given */
	padding: 15px 35px 15px 15px;
	width: 110px; /* 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 */
}
#sidebar1 ul {
	line-height: 120%;
	list-style: none;
	margin: 0;
	padding: 0;
}

#sidebar1 li {
	font-size: 0.875em;
	padding: 15px 0 0 0;
}

#headerText { 
	background-color:#000000;
	float:left;
	margin: 0; 
	padding: 0; 
	width:610px;
} 

#headerLogo { 
	background-color:#000000;
	float:left;
	margin: 0; 
	padding: 0;
	width:350px;
} 

#headerPhoto { 
	float:left;
	margin: 0; 
	padding: 0;
	width: 260px;
} 

#mainContent { 
	margin: 0 0 0 160px; /* 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 10px 20px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#mainContentColumn1 { 
	float:left; 
	width:350px
}
#mainContentColumn2 { 
	float:right;
	width:220px;
}
.site-map { 
	background:#000 url(../images/site_map.jpg) 0 0 no-repeat;	
} 
#footer { 
	padding: 0 10px 0 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
#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: 0 0 0 160px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.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: 0;
}

#tableLeftColumn2, #tableRightColumn2 {
	margin-bottom: 20px;
}
#tableLeftColumn2 td, #tableRightColumn2 td {
	margin:0;
	padding: 0;
	vertical-align:bottom;
}
#tableLeftColumn2 td {
	text-align:left;
}
#tableRightColumn2 td {
	text-align:right;
}

#tableRightColumn2 td p {
	padding:0 0 5px 0;
	}


/* General Link Styles */
a,
a:link { color: #ad8d64; font-weight:normal; text-decoration: underline; }
a:visited { color: #666666; font-weight:normal; text-decoration: underline; }
a:hover { color: #90191e; font-weight:normal; text-decoration: underline; }	
a:focus { color: #ad8d64; font-weight:normal; text-decoration: underline; }
a:active { color: #ad8d64; font-weight:normal; text-decoration: underline; }

/* Sidebar Link Styles */
#sidebar1 a,
#sidebar1 a:link, 
#sidebar1 a:visited, 
#sidebar1 a:hover, 
#sidebar1 a:focus, 
#sidebar1 a:active {   
  font-size: 0.90em;   
	text-decoration: none;
	text-transform:uppercase;    
	font-weight: bold; 
}  
#sidebar1 a,
#sidebar1 a:link {      
	color: #f2ce8e;	
}
#sidebar1 a:visited {      
	color: #f2ce8e; 
}  
#sidebar1 a:hover {  
	color: #0b7e77; 
}
#sidebar1 a:focus,
#sidebar1 a:active {  
	color: #f2ce8e; 
}
#sidebar1 a.current {
	color:#B8B8B8;
	cursor:default;
}
/* Paragraph Styles */
p {
	line-height: 1.25em;
	margin: 0; 
	padding: 0 0 1em 0;
}

.highlight1 {
  color: #ad8d64;
}

strong { font-weight: bold; }

/* Heading Styles */
h1 { font-size: 1.05em; margin-top: 0em; margin-bottom: 0.0em; font-weight: bold; color: #ad8d64; text-transform:uppercase; }
h2 { font-size: 1.02em; margin-top: 0em; margin-bottom: 0.0em; font-weight: bold; color: #ad8d64; text-transform:uppercase; }
h3 { font-size: 1.00em; margin-top: 0em; margin-bottom: 0.0em; font-weight: bold; color: #ad8d64; text-transform:uppercase; }
h4 { font-size: 1.05em; margin-top: 0em; margin-bottom: 0.0em; font-weight: bold; color: #ad8d64; font-variant:small-caps; }
h5 { font-size: 1.02em; margin-top: 0em; margin-bottom: 0.0em; font-weight: bold; color: #ad8d64; font-variant:small-caps; }
h6 { font-size: 1.00em; margin-top: 0em; margin-bottom: 0.0em; font-weight: bold; color: #ad8d64; font-variant:small-caps; }



.cursorPointer { cursor: pointer; }

.testBorder {border:#CC0000 1px solid}

#headerText { 
	color: #0b7e77; 
	font-size:0.75em; 
	font-variant:small-caps;
} 

#footer p.contact { 
	color: #0b7e77; 
	font-size:0.75em; 
	font-variant:small-caps;
}
#footer p.copyright { 
	color: #666666; 
	font-size:0.75em;
	padding-bottom: 10px;
}

#mainContentColumn2 img { 
	border: 1px solid #ad8d64;
	margin-bottom:7px;
}

#tableLeftColumn2 p, #tableRightColumn2 p {
	font-size: 0.88em;
	line-height: 1.25em;
	margin:0;
	padding:1em 0 0 0;
}
#tableLeftColumn2 img {
	border: 1px solid #ad8d64;
	margin: 0 0.5em 0.25em 0;
	padding:0;
}
#tableRightColumn2 img {
	border: 1px solid #ad8d64;
	margin: 0 0 7px 8px;
	padding:0;
}

.contactPhone {
	font-size:1.15em;
	font-weight:bold;
	line-height: 1.5em;
  color: #ad8d64;
}

.smallCaps {
	font-variant:small-caps;
}

.fancyCurly {
	width:6.76em;
	height:.95em;
	padding-top:0.5em;
	display:block;
}