@charset  "UTF-8";

body
{
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
}

div
{
	position: relative;
	z-index: 1;
	zoom: 1;
}

small,.small { font-size: .75em; }

a
{
	font-weight: bold;
	text-decoration: none;
}

a:hover { text-decoration: underline; }

ul{
	margin: 0;
	text-indent: -.5em;
	display: block;
	padding: 0em 0em 0em 1em;
}

/* 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.1%;
	font-size: 0.1%;
	line-height: 0.1%;
	visibility: hidden;
}
.tag {
	display: block;
	font-weight: bold;
	text-align: center;
}
.content
{
	margin: 0em 1em;
	display: block;
	padding: 0em;
	clear: both;
}

.title
{
	clear: both;
	height: auto;
	padding: 0em 0px .1em 0px;
	font: bold normal 1.25em/1em Verdana, Arial, Helvetica, sans-serif;
	text-transform: capitalize;
}
.pList {
	display: block;
	clear: both;
}

.pList .item {
	width: 6em;
	font-weight: bold;
}
div.map
{
	display: block;
	text-align: center;
	vertical-align: top;
	margin: 0em;
	clear: both;
}
div.map iframe {
	height: 100%;
	width: 100%;
	border-bottom: 0.1em solid #1A314A;
	clear: both;
}
#container,#header,#menu,#body,#footer{
	width: 55em;
	position: relative;
	overflow: hidden;
}
#container
{
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	overflow: visible;
	border-width: .2em;
}

#header,#body,#footer
{
	display: block;
	overflow: hidden;
	padding: 0em;
	clear: both;
	margin: 0em;
}

#header { }

#header .content
{ margin: 1em 1em 0.5em 1em; }
#menu {
	height: 2em;
	line-height: 2em;
	vertical-align: middle;
	border-bottom: 0.1em solid #1A314A;
	border-top: 0.1em solid #B9CDDE;
	overflow: visible;
	z-index: 25;
}
#menu .content{
	margin: 0em 1em 0em 0em;
	padding: 0em;
}
#menu .content ul {margin: 0;
	text-indent: 0em;
	clear: both;
	list-style: none;
	white-space: nowrap;
	margin: 0em;
	padding: 0em;
	vertical-align: middle;
	line-height: 2em;
}
#menu .content li {
	height: 2em;
	width: auto;
	display: inline;
}

#menu .content li.first {
}
#menu .content li a {
	vertical-align: middle;
	text-align: center;
}

#menu .content li.first a{ }
#body .content
{
	margin: 0em 1em;
	padding: 0em;
	display: block;
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the "#sidebar p" rule.
*/
div#sidebar,#sidebar div.map
{
	width: 16em;
}
div#sidebar
{
	position: absolute;
	top: 0px;
	right: 0px;
	padding: 0 0 32768.5em 0;
	margin: 0 0 -32767em 0;
	border-width: 0em 0px 0em 0.1em;
	border-right-color: #1A314A;
	border-left-color: #1A314A;
}

#body #sidebar .content
{
	font-size: 0.9em;
	text-align: center;
	padding: 0em;
	margin: 0em;
}

#body #sidebar .panel.tag {
	margin: 0em;
	padding: 0.5em 0em;
}
#sidebar div.map
{
	height: 15em;
	margin: 0em;
	padding: 0em 0em 1em 0em;
}

/*#sidebar .map iframe {
	height: 14em;
	width: 14em;
}*/

#sidebar .title {
	display: block;
	word-spacing: -1px;
	letter-spacing: -1px;
	text-align: center;
	margin: 0em -0.9em;
}

#sidebar .tag .title {
	margin: 0em;
	padding: 0em;
}
#body #sidebar .panel { margin: 0.5em 1.112em; }
#body #sidebar .content p { margin: .2em 1em; }
/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar space when the content in #sidebar ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/



#mainContent {
	display: block;
	border-width: 0em;
	margin: 0em 16.2em 0em 0em;
	overflow: hidden;
}
#mainContent,#mainContent .map,#mainContent .top { width: 38.95em; }
#mainContent .title { }
#mainContent .content
{
	height: auto;
	margin: 0em 1em 1em 1em;
}

#mainContent .title {
	font-size: 1.8em;
	margin: 0em;
	text-indent: 0.556em;
}
#mainContent .top {
	height: auto;
	margin: 0em;
	padding: 0em;
	overflow: hidden;
}
#mainContent .map {
	height: 30em;
}
#footer
{
	/* this padding matches the left alignment of the elements in the divs that appear above it. */
	color: #FFFFFF;
	display: block;
	clear: both;
	position: relative;
}

#footer .content
{
	margin: 0;
	/* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 1em 0;
	/* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: .8em;
	text-align: center;
}

.spotlight {
	font-size: 1.25em;
	font-weight: bold;
	text-transform: capitalize;
	letter-spacing: -1pt;
}
.spotlight .small{
	text-transform: none;
	letter-spacing: 0pt;
	display: block;
	margin: 0.25em 0em;
}

#reserve {
	text-align: left;
	vertical-align: top;
}
#reserve fieldset {
	display: block;
	clear: both;
	margin: 0px;
	padding: 1em 0em;
}
#reserve .buttons {
	margin-bottom: 1em;
	text-align: right;
	background: #1A4A1B;
	padding: 0.1em 0em;
}
#reserve fieldset label,#reserve fieldset input,#reserve fieldset textarea {
	display: -moz-inline-box;
	display: inline-block;
	width: 10em;
	margin: 0em 0em 0.25em 0em;
	padding: 0em;
}
#reserve fieldset label {
	text-align: right;
	vertical-align: top;
	font-size: .8em;
	font-weight: bold;
	color: #1A314A;
}
#reserve fieldset input,#reserve fieldset textarea{
	width: 30em;
	margin: 0em 0em 0.25em 0.25em;
}
#reserve .submit {
	color: #FFFFFF;
	background: #1A314A;
	font-weight: bold;
	padding: 0.25em;
	border: 1px solid #FFFFFF;
}

#reserve p {
	display: block;
	clear: both;
	margin: 0em auto;
}

#mainContent ul.pricing {
	list-style: none inside;
	margin: 0em;
	padding: 0em;
	width: 36.95em;
	text-indent: 0em;
}
#mainContent ul.pricing ul {
	list-style: none inside;
	padding: 0em;
	margin: 0em 0em 0.5em 0em;
	text-indent: 0em;
	line-height: 1.2em;
	width: 36.95em;
	text-align: left;
}

#mainContent ul.pricing strong {
	color: #1A314A;
	text-transform: capitalize;
	display: block;
	clear: both;
	text-decoration: underline;
}
#mainContent ul.pricing li {
	display: block; 
}
#mainContent ul.pricing li span {
	display: -moz-inline-box;
	display: inline-block;
	margin: 0;
	padding: 0;
}

#mainContent ul.pricing  span.cost {
	width: 6em;
	margin: 0em 0.25em 0em 0em;
	text-align: right;
}

#mainContent ul.pricing  span.small {
	width: 30.875em;
	text-align: left;
	font-weight: bold;
	color: #4A1A49;
	clear: right;
	font-size: 0.8em;
}

#mainContent ul.pricing strong.special, .special{
	color: #FFFFFF;
	background: #1A4A1B;
	text-align: center;
	padding: .25em 0em;
}
#mainContent ul.pricing strong.special a, .special a{
	color: #FFFFFF;
}
