/* TYPOGRAPHY *****************************************************/

body {
  font-family: Arial, Verdana, sans-serif;
  line-height: 1.6; /* Unitless for proper inheritance */
}

/* This is where you set your desired font size. The line-height 
   and vertical margins are automatically calculated from this. 
   
   You have to add an extra calculation here because of IE, so that 
   all users may resize text manually in their browsers.
   
   The top one is for IE: The percentage is of 16px (default IE text size)
   10px is 62.5%, 12px is 75%, 13px is 81.25%, and so forth).
   The second value is what all other browsers see (the wanted font size). */
   
body          { font-size: 75%; }   /* IE */
html > body   { font-size: 12px; }  /* Other browsers */


/* HEADINGS *******************************************************/

h1,h2,h3,h4,h5,h6 {
	font-family: Arial, Helvetica, sans-serif;
	clear: both;
	margin: 0;
	padding: 0;
}

h1 { 
	font-size: 1.4em;
	margin-bottom: 30px;
	margin-top: 8px;
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
	color: #c3b694;
	text-transform: uppercase;
	letter-spacing: 0.4em;
 }
h2 {
	font-size: 1.4em;
	margin-bottom: 15px;
	margin-top: 8px;
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
	color: #c3b694;
	text-transform: uppercase;
	letter-spacing: 0.4em;
}
h3 {
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 15px;
	color: #C2B598;
}
h4 { font-size: 1.25em; line-height: 1.25; font-weight: bold; }
h5 { font-size: 1em; font-weight: bold;  }
h6 { font-size: 1em; }

/* TEXT ELEMENTS **************************************************/

p           	{
	color: #cbbfa1;
	line-height: 1.8em;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 1.9em;
	margin-left: 0;
}
p.right			{ text-align: right; }
p.last      	{ margin-bottom:0; }

ul, ol      	{
	margin: 0;
	list-style-type: none;
	color: #cbbfa1;
	padding-bottom: 15px;
}
ul.list     	{
	list-style-type: disc;
	padding-left: 30px;
	margin: 0;
}
#content ul {
	list-style-type: disc;
	padding-left: 30px;
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
}

ol          	{
	list-style-type: decimal;
	padding-left: 30px;
}
dl          	{ margin: 1.5em 0; }
dl dt       	{ font-weight: bold; }

a           	{
	color: #f59b2f;
	text-decoration: underline;
	outline: none;
	font-weight: normal;
}
a:hover     	{
	color: #FFF;
}
a.arrow			{ padding: 0 12px 0 0; }
a.arrow:hover 	{ padding: 0 12px 0 0; }
			
a.blue			{ color: #0096bd; }

img				{ margin: 0; padding: 0; border: none;}
blockquote  	{
	font-size: 1.2em;
	font-weight: normal;
	margin-top: 5px;
	margin-right: 0em;
	margin-bottom: 20px;
	margin-left: 0em;
	padding-top: 5px;
	padding-bottom: 26px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	background-image: url(../images/bg_blockquote.png);
	background-repeat: repeat-x;
	background-position: center bottom;
}
strong      	{ font-weight: bold; }
em          	{ font-style: italic; }
pre         	{ margin-bottom: 15px; background: #f9f9d4; padding: 0 10px; overflow: auto; }
code        	{ font: 11px Monaco, monospace; margin: 0; padding: 1px 3px; background: #f9f9d4; }
abbr			{ border-bottom: 1px dotted #999; cursor: help;}

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #eaeaea; 
  color: #eaeaea;
  clear: both; 
  float: none; 
  width: 100%; 
  height: 0.1em;
  margin: 0 0 1.4em 0;
  border: none; 
}

* html hr { margin: 0 0 1.2em 0; } /* IE6 fix */


/* TABLES *********************************************************/

caption {
	width: 550px;
	text-align: right;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
	font-family: Arial, Helvetica, sans-serif;
}

th {
	text-align: left;
	padding: 6px 6px 6px 12px;
	background-color: #281A0F;
	background-repeat: no-repeat;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-top-color: #3B2D22;
	border-right-color: #3B2D22;
	border-bottom-color: #3B2D22;
	border-left: 1px solid #3B2D22;
	color: #cabea0;
}

th.nobg {
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-right-color: #3B2D22;
	background-color: #302216;
	background-image: none;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #3B2D22;
	border-left-color: #3B2D22;
	color: #FFF;
	font-size: 1.4em;
	font-family: Georgia, "Times New Roman", Times, serif;
}

#content td {
	padding: 6px 6px 6px 12px;
	color: #cabea0;
	background-color: #281A0F;

}
#content table {
	background-color: #E8E8E8;


}

td {
	padding: 6px 6px 6px 12px;
	color: #FFF;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #3B2D22;
	border-bottom-color: #3B2D22;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #3B2D22;
	background-color: #281A0F;
}


td.alt {
	color: #1A1C1F;
}

th.spec {
	background-color: #281A0F;
	background-repeat: no-repeat;
	border-top-width: 0;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #DDD;
}

th.specalt {
	border-top-width: 0;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #DDD;
	background-color: #281A0F;
}

.table {
	margin-top: 40px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding: 0px;
}
.table {
	margin-top: 0px;
	margin-bottom: 30px;
}

/* END TABLES *********************************************************/

.featlist {
	background-color: #302216;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.featlist li {
	font-size: 0.9em;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #3b2d22;
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 18px;
	background-image: url(../images/feat_list_bullet.gif);
	background-repeat: no-repeat;
	background-position: left 13px;
}
.featlist ul {
}
.featlist .last {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-bottom: 0px;
}
.sml_txt {
	font-size: 1em;
}
#location_box h3 {
	color: #C2B598;
	display: inline;
	margin-bottom: 25px;
}
#location_box p {
	margin-top: 15px;
}
#bamboo p {
	display: none;
}
.text_white {
	color: #FFF;
}