/* @override http://dev.portlanddiscovery.com/styles/style.css */

/* Styles for PORTLAND DISCOVERY - Public */

/* @Creator: Jamie Peloquin <http://www.jamiepeloquin.com> */

/* @Version: 1.1 */

/* @group BASE STYLES */

/* @group Reset */

html, body {
	width: 100%;
	font-size: 100%; /* 16px */
	line-height: 1;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, font, img, ins, kbd, q, s, samp, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	line-height: inherit;
	vertical-align: baseline;
	background: transparent none;
}


caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: top;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */

blockquote, q {
	quotes: none;
}

	blockquote:before, q:before, blockquote:after, q:after {
		content: '';
	}

/* Remeber to define focus states later in CSS */
:focus {
	outline: none;
}

/* Remeber to define inserts later in CSS */
ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

a, a:link, a:visited, a:hover, a:active, a:focus {
	outline: none;
	text-decoration: none;
}

/* @end */

/* @group Elements */

p, address, ol, ul, dl, dd, blockquote, h1, h2, h3, h4, h5, h6, table, form, fieldset, textarea, select, pre {
	margin-bottom: 1.3em;
}

p, li, dd, dt, th, td, pre, ins, address, del {
	line-height: 1.4;
}

blockquote {
	padding-left: 3em;
}

ul, ol {
	margin-left: 2em;
}

li {
	margin-bottom: .7em;
}

dt {
	margin-bottom: .7em;
}

dd {
	padding-left: 1.4em;
}

dl *:last-child {
	margin-bottom: 0;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
}

h3 {
	font-size: 1.25em;
}

h4 {
	font-size: 1em;
}

h5 {
	font-size: .85em;
}

h6 {
	font-size: .75em;
}

code, var, kbd, samp {
	color: #666;
	white-space: pre;
	font: .95em Monaco, "Lucida Console", "Courier New", Courier, monospaced;
}

del {
	text-decoration: line-through;
}

big {
	font-size: 1.4em;
}

small {
	font-size: 0.8em;
}

sup, sub {
	font-size: .75em;
	padding: 0 .25em;
}

sup {
	position: relative;
	bottom: .4em;
	vertical-align: baseline;
}

sub {
	position: relative;
	bottom: -.4em;
	vertical-align: baseline;
}

acronym, abbr {
	cursor: help !important;
	letter-spacing: 1px;
	border-bottom: 1px dashed;
}

a, a:visited, a:hover, a:focus, a:active  {
	cursor: pointer !important;
	border-bottom: 1px solid;
}

a img, a:visited img, a:hover img, a:focus img, a:active img {
	border-width: 0;
}

input, select, textarea, button {
	font-family: inherit;
	font-size: 1.1em;
}

label, form .label {
	font-weight: bold;
	cursor: pointer !important;
	display: block;
}


form *:last-child {
	margin-bottom: 0;
}

fieldset {
	padding: 1em;
	border: 1px solid #eee;
}

legend {
	padding: .5em;
	font-weight: bold;
	color: #ccc;
	font-size: 1.25em;
}

table {
	background-color: #ccc;
	/*border-spacing: .1em;*/
}

caption, th, td {
	padding: .5em;
}

caption {
	background-color: #eee;
	color: #888;
	border: .1em solid #ccc;
}

th {
	background-color: #bfbfbf;
	font-weight: bold;	
}

td {
	background-color: #fff;
}

	tr:hover td {
		background-color: #f6ffdc;
	}

hr {
	margin: 3em 0;
	height: 0;
	color: #888;
	border-color: #888;
}

/* @end */

/* @group Classes */

.collapse {
	height: 0;
	margin: 0;
	font-size: 0;
	overflow: hidden;
}

.float-left {
	float: left;
}

	img.float-left {
		margin-right: 1em;
	}

.float-right {
	float: right;
}
	
	img.float-right {
		margin-left: 1em;
	}

.no-float {
	float: none !important;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justify {
	text-align: justify;
}

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.underline {
	border-bottom: 1px solid;
}

.inline {
	display: inline;
}

.block {
	display: block;
}



ul.list-disc {
	list-style-type: disc;
	/* • */
}

ul.list-circle {
	list-style: circle;
	/* O */
}

ul.list-square {
	list-style: square;
	/* [] */
}

ol.list-decimal {
	list-style: decimal;
	/* 1, 2, 3 */
}

ol.list-decimalleadingzero {
	list-style: decimal-leading-zero;
	/* 01, 02, 03 */
}

ol.list-romanlower {
	list-style: lower-roman;
	/* i, ii, iii */
}

ol.list-romanupper {
	list-style: upper-roman;
	/* I, II, III */
}

ol.list-alphalower {
	list-style: lower-alpha;
	/* a, b, c */
}

ol.list-alphaupper {
	list-style: upper-alpha;
	/* A, B, C */
}

.nopadding {
	padding: 0;
}

.noindent {
	margin-left: 0;
	padding-left: 0;
}

.nobullet {
	list-style: none !important;
	list-style-image: none !important;
}



table.data {
	border-collapse: separate;
	border-spacing: 1px;
}

tr.alt td {
	background-color: #f1f0ff;
}



form p.label {
	margin-bottom: .7em;
}

form .checkarea label {
	display: inline;
}

form .checkarea ul {
	list-style: none;
	list-style-image: none;
}

form .buttonarea label {
	display: none;
}

form .formpart {
	margin-bottom: .75em;
}

form .formpart .note {
	display: block;
}


/* Side-By-Side aligns LABELs to the left of the FIELDs */
form.sidebyside .formpart {
	clear: both;
}

form.sidebyside label, form.sidebyside .label {
	float: left;
	width: 30%;
	padding-right: 1em;
	text-align: right;
}

form.sidebyside .checkarea label {
	float: none;
	text-align: left;
}

form.sidebyside .textarea label {
	padding-top: .2em;
}

form.sidebyside .formpart .note {
	margin-left: 31.5%;
}
/* end */

/* Multicolumn floats FORMPARTs left */
fieldset.multicolumn legend {
	margin-left: .8em;
}

.multicolumn .textarea input, .multicolumn .textarea textarea, .multicolumn .selectarea select {
	width: 45%;
}

/* for IE6 */
* html .multicolumn .textarea input, * html .multicolumn .textarea textarea, * html .multicolumn .selectarea select {
	width: 40%;
}

* html .multicolumn .short input, * html .multicolumn .short textarea, * html .multicolumn .short select {
	width: 25%;
}
/* end */

/* Buttons */
.action1, .action1:active {
	background-color: #96c900;	
	outline-color: #690;
	color: #dfffc1;
}

.action1:hover, .action1:focus {
}

.action1:active {
	outline-color: #96c900;
}

.action2, .action2:active {
	background-color: #a50000;	
	outline-color: #953e3e;
	color: #ffd6d3;
}

.action2:hover, .action2:focus {
}

.action2:active {
	outline-color: #a50000;
}

.action3, .action3:active {
	color: #ffedbc;	
	background-color: #ff8d00;	
	outline-color: #d2691e;
}

.action3:hover, .action3:focus {
}

.action3:active {
	outline-color: #ff8d00;
}
/* end */



/* Help & Tips */

.tooltip {
	display: none;
	position: absolute;
	z-index: 1;
	background-color: #ffc;
	border: 1px solid #ffd55e;
	padding: .25em;
}

	.tooltip:hover, .tip:hover, .help:hover {
		cursor: help;
	}
	
	*:hover > .tooltip {
		display: inline;
	}

/* end */



/* User Messages / Alerts */

.highlight {
	padding: 2px;
	background: #ffc;
}

.usermessage {
	display: block;
	margin-bottom: 22px;
	padding: .25em .5em;
	background-color: #fff4d6;
	border: 1px solid #ffd55e;
	color: #9f5000;
}

	form .usermessage {
		margin-top: 22px;
	}

p.good, div.good, form.good {
	color: #363;
	background-color: #cf9;
	border-color: #9c3;
}

	.good a {
		color: #690;
	}

p.bad, div.bad, form.bad {
	color: #900;
	background-color: #feafaf;
	border-color: #cd5c5c;
}

	.bad a {
		color: #c00;
	}

.bad a.button, .bad button, .good a.button, good button {
	color: #fff !important;
}

.note {
	color: #bbb;
}
/* end */


/* Navigation */
*.navigation, *.navigation ul  {
	list-style: none;
	position: relative;
	padding-left: 0;
	margin-left: 0;
}

	*.navigation li, dl.navigation dt, dl.navigation dd {
		padding-left: 0;
		margin-left: 0;
	}
/* end */

.clear-both {
	clear: both !important;
}

.clear-left {
	clear:  left !important;
}

.clear-right {
	clear:  right !important;
}


/* Clear floats for browsers supporting :after */
.clearfloats:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* self-clearing floats for IE 6 */
* html .clearfloats {
	height: 1%;
}

/* self-clearing floats for IE 7 */
*:first-child+html .clearfloats {
	min-height: 1px;
}


.hide {
	display: none;
}

.hidden {
	visibility: hidden;
}

/* @end */



/* @end */

/*

 @group SITE STYLES */

html, body {
	margin: 0;
	padding: 0;
}

body {
	color: #531;
	font-family: "Lucida Sans", "Lucida Sans Std", "Lucida Sans Pro",  "Lucida Grande", "Lucida Sans Unicode", Lucida, "Trebuchet MS", Verdana, sans-serif;
	background-color: #ffe4b5;
	background-image: url(../images/body.bg-paper.jpg);	
}

a, a:link {
	color: #900;
}

a:visited {
	color: #600;
	border-style: dotted;
}

a:focus, a:hover {
	color: #c00;
}

a:active {
	color: #e00;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
}

h1, h2 {
	color: #600;
	margin-bottom: .65em;
}

h1 {
	font-size: 1.75em;
	text-transform: uppercase;
}

h2 {
	font-size: 1.4em;
}

h3 {
	font-size: 1.25em;
	color: #000;
}

blockquote {
	padding: 24px 15px 0;
	border: 1px dashed #ca8;
	font: normal 1em Georgia, "Times New Roman", Times, serif;
	background: #fdf5e6 url(../images/quote-open-lg.png) no-repeat .35em -16px;
}

blockquote .credit {
	margin: 0 auto;
	margin-right: -7px;
	padding: .7em 0 1.4em 0;
	background: url(../images/quote-close-lg.png) no-repeat right top;
	font-style: italic;
}

div.master {
	font-size: .875em;
}

div.master, div.master .content {
	position: relative;
	margin: 0;
}

div.master div.content {
	width: 960px;
}

.navigation li, .navigation dt {
	float: left;
	padding: 0 1em;
	background-image: none;
}

/* @group Header */

div#header.master {
	margin-top: 0;
	background: #069 url(../images/header-master.bg-header-pages.png) repeat-x left top;
}

div#header .content {
	height: 118px;
	color: #fff;
}

div#header #trademark.branding {
	height: 80px;
	padding: 0 15px;
	background: url(../images/header-branding.bg-logo.jpg) no-repeat 15px 0;
}

div#header #trademark.branding, div#header #trademark.branding a {	
	color: #fff;
}

div#header #trademark.branding a {	
	border-width: 0;
	display: block;
}

div#header .branding dfn {
	font: bold normal 2.25em/80px Georgia, "Times New Roman", Times, serif;
	letter-spacing: .05em;
	white-space: nowrap;
	margin: 0 0 0 186px;
	padding: 10px 0 10px 20px;
	border: 1px solid #fff;
	border-width: 0 0 0 1px;
	text-shadow: #333 0 1px 4px;
}

div#header .branding label {
	position: absolute;
	top: -1000px;
}

/* @group Navigation */

#navigationMain {
	height: 36px;
	display: block;
	position: absolute;
	top: 82px;
	left: 0;
	padding: 0 15px;
	z-index: 100;
}

#navigationMain * {
	position: relative	
}

#navigationMain dl {
	float: left;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #600;
}

#navigationMain dt {
	line-height: 36px;
	height: 36px;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	display: block;
}

#navigationMain dd {
	padding: 0;
	margin: 0;
	display: none;
	position: relative;
}

#navigationMain dd ul,  #navigationMain dd li {
	padding: 0;
	margin: 0;
	float: none;
}

#navigationMain dd ul {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 220px;
	height: auto;
}

#navigationMain a {
	display: block;
	border-width: 0;
	text-align: center;
	color: #fff;
	padding: 0 1.2em;
	margin: 0;
	width: auto;
	white-space: nowrap;
}

#navigationMain dt a {
	color: #fcc;
}

#navigationMain dd a {
	padding: .3em .75em;
	color: #600;
	font-size: .875em;
	background-color: #e9967a;
	opacity: 0.95;
}

#navigationMain li.active a {
	color: #fff;
	background-color: #de8d73;
}

#navigationMain dd a:hover {
	color: #fff;
	opacity: 1.0;
}

#navigationMain dt a:hover {
	color: #fff;
}

#navigationMain li.active a {
	color: #fff;
	background-color: #de8d73;
}

#navigationMain dl.open {
	border: 1px solid #c66;
	border-width: 0 0 1px 0;	
	height: auto;
	width: auto;
}

#navigationMain dl.open dt {
	float: left;
	background: #e9967a url(../images/navigation-main.bg-dt-open.png) repeat-x center top;
	opacity: 0.90;
	border: 1px solid #c66;
	border-width: 0 1px;	
	margin: 0 -1px;
}

#navigationMain dl.open dd {
	clear: left;
	display: block;
	border: 1px solid #c66;
	border-width: 0 1px;		
}

#navigationMain dl.open dt a, #navigationMain dl.open dd a {
	text-align: left;
}


#navigationMain dl.active dt .navbling-open, #navigationMain dl.active dt .navbling-close {
	font-size: 1.7em;
	position: absolute;
	top: 0;
}

#navigationMain dl.active dt .navbling-open {
	left: 0;
	padding-left: .2em;
}

#navigationMain dl.active dt .navbling-close {
	right: 0;
	padding-right: .2em;
}

#navigationMain #navSkip {
	position: absolute;
	top: -1000em;
}

/* @end */

/* @group slideboxHeader */

#slideboxHeader {
	position: relative;
	width: 960px;
	height: 427px;
	margin-top: 3px;
	overflow: hidden;
	background-image: none;
}

/* @end */

/* @end */

/* @group Content */

div#content.master {
	padding: 30px 60px 0 15px;
	background: url(../images/content-master.bg-gradient.png) repeat-x;
}

div#content .content {
	width: 945px;
	padding-bottom: 3em;
}

div#content .dcontent {
	margin-bottom: 1.3em;
}

div#contentColumn1 {
	float: left;
	width: 618px;
}

div#contentColumn2 {
	float: right;
	width: 305px;
	padding-top: 40px;
}

div#content ul li {
	padding-left: 0;
}

div#content ul.navigation li {
	padding-left: 0px;
	background: none;
}

div#content blockquote {
	padding: 16px 16px 0px 16px;
	border: 1px solid #eee;
}

div#content blockquote p {
	font: italic 1.125em Georgia, "Times New Roman", Times, serif;
}

div#content blockquote p.credit {
	margin: 0 auto;
	padding: .7em 0 1.4em 0;
	font-style: italic;
	font-size: .75em;
}


div#content dl.linklist, div#content ul.linklist {
	margin-bottom: .3em;
	padding: 0;
	position: relative;
	list-style-type: none;
}


div#content ul.linklist li {
	padding: 0;
	margin-bottom: .7em;
}

ul.linklist .date {
	display: block;
	margin-top: .5em;
}

#content dl.linklist dt {
	font-weight: bold;
}

#content dl.linklist dd {
	padding: 0;
	font-size: .785em;
}

#content hr {
	border-style: dashed;
	border-color:  #db8;
	border-width: 0;
	color:  #db8;
	height: 9px;
	background: url(../images/content.hr.png) repeat-x center center;
	margin: 1.6em 0;
}

#content img {
	border: 6px solid #fff;
}

/* @group Forms */

form column2 {
	float: right;
}

fieldset {
	border: 1px dotted #db8;
}

legend {
	color: #600;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-transform: uppercase;
}

legend small {
	font: .65em "Lucida Grande", "Lucida Sans", "Lucida Sans Std", "Lucida Sans Pro", "Lucida Sans Unicode", Lucida, "Trebuchet MS", Verdana, sans-serif;
	text-transform: none;
}

form label, form .label {
	font-weight: normal;
}

form .buttonarea input, form .buttonarea button, a.button {
	display: inline-block;
	position: relative;
	color: #fff;
	font-family: Georgia, "Times New Roman", Times, serif;
	padding: .5em .7em;
	background: #630 url(../images/bg-btn-default-up.png) repeat-x center top;
	font-size: 1em;
	line-height: 1;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	border: 2px solid #963;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	text-shadow: #222 0 2px 3px;
	white-space: nowrap;
}

form .buttonarea input:hover, form .buttonarea button:hover, a.button:hover {
	cursor: pointer;
	background-image: url(../images/bg-btn-default-over.png);
	background-position: center top;
}

form .buttonarea input:active, form .buttonarea button:active, a.button:active {
	color: #905600;
	background-image: url(../images/bg-btn-default-down.png);
	background-position: center top;
}

a.button {
	padding: .5em .7em;
}

a.check, form button.check, button.action1 {
	position: relative;
	border-color: #09c;
	color: #fff;
	background: #159 url(../images/bg-btn-white-over.png) center top;
}

a.check:hover, form button.check:hover, button.action1:hover {
	border-color: #7eccff;
	background: #159 url(../images/bg-btn-white-over.png) center top;
	color: #fff;
}

a.check:active, form button.check:active, button.action1:active {
	background: #159 url(../images/bg-btn-default-down.png) center top;
	color: #fff;
}

a.check span, form button.check span {
	position: static;	
	background: url(../images/btn-check.png) no-repeat left center;
	width: 20px;
	padding: 5px 10px;
	height: 20px;
	margin-left: .5em;
	margin-right: -.5em;
}

#content a.action4, #content button.action4 {
	border: 2px solid #a00;
}

#content a.action4, #content button.action4, #content a.action4:hover, #content button.action4:hover, #content a.action4:active, #content button.action4:active {
	color: #fff;
	background: #900 url(../images/button.bg-action4.png) no-repeat right center;
}

#content a.action4:hover, #content button.action4:hover {
	border-color:  #f00;
}

#content a#buttonBookTour {
	width: 287px;
	font-size: 1.4em;
	height: 30px;
	line-height: 30px;
	padding: 7px;
	top: -2.5em;
}

#contentColumn2 form .textarea input, #contentColumn2 form .textarea textarea,  #contentColumn2 form select {
	width: 20em;
}

#contentColumn2 form {
	margin-top: 0;
	padding: 0;
}

form .column1, form .column2 {
	width: 49%;
}

form .column1 {
	float: left !important;
}

form .column2 {
	float: right !important;
}

form .autowidth {
	width: auto !important;
}

form *[disabled=disabled], .disabled {
	opacity: 0.5;
	background-image: none !important;
}

.required {
	color: #c00;
}

/* @end */

/* @group Tables */

table caption {
	margin-bottom: -1px;
	margin-right: -1px;
}

table.calendar {
	width: 100%;
	table-layout: fixed;
	background-color: #eee;
}

table.calendar caption {
	color: #888;
	background-color: #f9f9f9;
	border: 1px solid #eee;
	font: 1.42em Georgia, "Times New Roman", Times, serif;
	text-align: center;
	margin-bottom: -1px;
}

table.calendar th, table.calendar th {
	font-size: .8em;
}

table.calendar th {
	text-align: center;
	background-color: #e6e6e6;
}

table.calendar td {
	text-align: right;
	background-color: #fff;
}

table.calendar td a {
	
}

table.schedule {
	clear: both;
	margin-bottom: 1.3em;
}

table.schedule, table.schedule caption {
	width: 610px;
	border: 1px dotted #ca8;
	background-color: #fceaba;
	background-color: #edb;
}

table.schedule caption {
	background: #b84 url(../images/bg-btn-default-over.png) repeat-x 0 top;
	color: #fff;
	font: 1.25em Georgia, "Times New Roman", Times, serif;
	text-transform: uppercase;
	letter-spacing: .1em;
	white-space: nowrap;
	text-shadow: #222 0 1px 3px;
}

table.schedule tr.alt {
	background-color: #fec;
}

table.schedule th {
	display: none;
}

table.schedule td {
	background-color: transparent;
	font: .875em Georgia, "Times New Roman", Times, serif;
	vertical-align: middle;
}

table.schedule td.note {
	background-color: #b84;
	color: #fff;
}

table.invisible, table.invisible th, table.invisible td, table.invisible tr {
	border-width: 0;
	background-color: transparent;
}


table.invisible th, table.invisible td {
	vertical-align: top;
	text-align: center;
}
/* @end */

a.icn {
	padding-left: 20px !important;
	background-repeat: no-repeat;
	background-position: left center;
}

a.web {
	background-image: url(../images/icn-web-sm.png);
}

a.map {
	background-image: url(../images/icn-map.png);
}

.vcard a.dnld, a.vcard {
	background-image: url(../images/icn-vcard-sm.png);
}

a.doc {
	background-image: url(../images/icn-page_word.png);
}

a.img {
	background-image: url(../images/icn-picture.png);
}

a.pdf {
	background-image: url(../images/icn-page_white_acrobat.png);
}

a.photo {
	background-image: url(../images/icn-picture.png);
}

a.user {
	background-image: url(../images/icn-user_edit.png);
}

a.txt, a.rtf {
	background-image: url(../images/icn-page_word.png);
}

a.xls {
	background-image: url(../images/icn-page_excel.png);
}

a.zip {
	background-image: url(../images/icn-page_white_zip.png);
}

dl.vcard {
	margin-bottom: .3em;
	border: 1px solid #fffacd;
	border-width: 1px 0;
	padding: .6em;
}

dl.vcard dt, dl.vcard dd {
	padding: 0;
	margin-bottom: .3em;
}

dl.vcard dt {
	font-weight: bold;
}

dl.vcard dd.tools {
	font-size: .78em;
}

dl.vcard dd.tools a {
	display: inline-block;
	margin-right: .7em;
	line-height: 2;
	border-width: 0;
}

dl.vcard dd abbr {
	border-width: 0;
}

.note {
	color: #642;
}

/* @group widgets */

.widget {
	position: relative;
	padding: 0 0 0 0;
	border: 1px dashed #ca8;
	margin-bottom: 3em;
	background: #ffefd5 url(../images/widget.bg.png) repeat-y;
}

#content .widget img {
	border-width: 0;
}

.widget h2 {
	height: 56px;
	line-height: 2;
	color: #fff;
	font-weight: normal;
	font-size: 1.2em;
	padding: 0 12px;
	margin: 0;
	background: #c84 url(../images/widget.bg-h2.png) no-repeat;
	text-shadow: #222 0 1px 3px;
}

.widgetcontent {
	font-size: .75em;
}

.widgetcontent, .widget .toggle {
	padding-left: 12px;
	padding-right: 12px;
}

.widget .toggle {
	margin-bottom: -1em;
	font-size: .65em;
}

.widget .toggle a {
	padding: 0 .25em;
	border-width: 0;
	text-decoration: underline;
}

.widgetcap {
	display: block;
	height: 15px;
	width: 100%;
	background-image: url(../images/widget.bg-bottom.png);
}

.widgeticon {
	display: block;
	position: relative;
	float: right;
	width: 110px;
	height: 100px;
	right: 0;
	top: -60px;
	z-index: 100;
	background-repeat: no-repeat;
	background-position: center center;
	overflow: hidden;
}

#widgetPhotoAlbum .widgeticon {
	background-image: url(../images/widgeticon.photo-album.png);
}

#widgetContactUs .widgeticon {
	background-image: url(../images/widgeticon.contact-us.png);
}

#widgetCorporateCharters .widgeticon {
	background-image: url(../images/widgeticon.events.png);
}

#widgetNewsletterSignup .widgeticon {
	background-image: url(../images/widgeticon.newsletter.png);
}

#widgetNewsletterSignup .widgetcap {
	margin-top: 1.5em;
}

/* @end */

/* @end */

/* @group Footer */

div#footer {
	padding: 21px 15px;
}

div#footer.master {
	background: #600 url(../images/footer-master.bg-gradient.png) repeat-x;
	border: 1px solid #300;
	border-width: 1px 0 0 0;
}

div#footer .content {
	width: 945px;
	font-size: .714em;
	color: #fff;
}

div#footer .content a {
	color: #fcc;
}

div#footer .content .column {
	width: 305px;
	border: 1px dotted #800;
}

div#footer #brandFooter.column {
	float: left;
	text-align: center;
	border-width: 0 1px 0 0;
	margin-right: -1px;
	padding-right: 7px;
}

div#footer #testimonialFooter.column {
	float: right;
	border-width: 0 0 0 1px;
	margin-left:  -1px;
	padding-left: 7px;
}

div#footer #linksFooter.column {
	margin: 0 312px;
	padding: 0 7px;
	border-width: 0 1px;
}

div#footer #brandFooter dfn {
	display: block;
	font: bold 1.3em Georgia, "Times New Roman", Times, serif;
	margin: .7em 0;
}

div#footer address {
	margin-top: 1.3em;
}

div#footer address, div#footer cite {
	font-style: normal;
}

div#footer address cite {
	font-weight: bold;
}

ul#navigationFooter li {
	padding: 0;
	float: none;
}

ul#navigationFooter li:before {
	content: "\B7";
	padding: 0 .5em;
}

ul#navigationFooter li.first {
}


#testimonialFooter blockquote {
	background-color: #722;
	border: 1px dashed #844;
	font: 1.75em Georgia, "Times New Roman", Times, serif;
	background-image: url(../images/footer.quote-open-lg.png);
}

#testimonialFooter blockquote .link {
	float: right;
	font: .5em "Lucida Sans", "Lucida Sans Std", "Lucida Sans Pro",  "Lucida Grande", "Lucida Sans Unicode", Lucida, "Trebuchet MS", Verdana, sans-serif;
	padding: 1em 0;
}

#testimonialFooter blockquote .credit {
	margin-top: -1em;
	font-size: .5em;
	background-image: url(../images/footer.quote-close-lg.png);
}

#testimonialFooter blockquote cite {
	font-style: italic;
}

/* @end */

/* @group Home */

#pg_Home div#header.master {
	background: url(../images/header-master.bg-header.png) repeat-x left top;
}

#pg_Home div#background2Header {
	background: url(../images/header-bg2.bg-map.jpg) repeat-x left 83px;
}

#pg_Home div#header .content {
	height: 546px;
}

#pg_Home #navigationMain {
	top: 510px;
}

#pg_Home div#contentColumn2 {
	padding-top: 0px;
}


#homeTourPromos .promo {
	position: relative;
	width: 304px;
	height: 295px;
	margin: 0 0 24px 0;
	float: left;
	overflow: hidden;
	font-size: .85em;
	background: url(../images/home.tourpromo.bg.png) no-repeat center top;
}

#homeTourPromos #tourPromoLogo.promo {
	background: url(../images/home.tourpromo.logo.png) no-repeat center center;
}

#homeTourPromos .promo .promocontent {
	position: relative;
	width: 256px;
	margin: 16px auto 0;
	overflow: hidden;
}

#homeTourPromos .promo .promocontent img {
	position: relative;
	width: 256px;
	display: block;
	border-width: 0;
	margin-bottom: 16px;	
}

#homeTourPromos .promo .promocontent h2 {
	text-transform: uppercase;
	color: #900;
	margin-bottom: .25em;
	font-size: 1.16em;
}

#homeTourPromos .promo .promocontent .link {
	padding-left: 1em;
}

#homeTourPromos .promo .tags {
	position: absolute;
	bottom: -1000em;
}

#pg_Home #homeHeaderPushpins {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
}

/* @end */

.scrollbox {
	overflow: auto;
}

#lightwindow_overlay {
	z-index: 3000;
}

#lightwindow {
	z-index: 3500;
}

#lightwindow a {
	border-width: 0;
}

/* @end */

/* @group JAVASCRIPTS */

/* 	JS-HIDE
**	js-hide is used to swap-out the initial css style with
**  inline CSS [style="display:none"], using javascript.
**	This helps with the "flashing" issue of content that is hidden
**	after the DOM loads and keeps the content accessible to
**  audio, print, tty, etc.
*/
@media screen,projection,handheld,tv {

.js-hide {
    display: none;
}

}
/* -- end JS-HIDE -- */

#lightbox a {
    border-width: 0 !important;
}

#overlay {
    z-index: 9000 !important;
}

#lightbox {
    z-index: 10000 !important;
}

/* @group LivePipe */

#control_overlay {  
    background-color:#fff;  
} 
 
.lp-modal {  
    background-color:#eee;  
    padding:10px;  
    border:1px solid #ccc;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	box-shadow: 0px 5px 8px #888;
	-webkit-box-shadow: 0px 5px 8px #888;
	-moz-box-shadow: 0px 5px 8px #888;
	-o-box-shadow: 0px 5px 8px #888;
} 
 
.lp-tooltip {  
    border:1px solid #000;  
    background-color:#fff;  
    height:25px;  
    width:200px;  
    font-family:"Lucida Grande",Verdana;  
    font-size:10px;  
    color:#333;  
} 
 
.lp-simple_window {  
    width:250px;  
    height:50px;  
    border:1px solid #000;  
    background-color:#fff;  
    padding:10px;  
    text-align:left;  
    font-family:"Lucida Grande",Verdana;  
    font-size:12px;  
    color:#333;  
} 
 
.lp-window {  
    background-image:url("../images/window_background.png");  
    background-position:top left;  
    -moz-border-radius: 10px;  
    -webkit-border-radius: 10px;  
    padding:10px;  
    font-family:"Lucida Grande",Verdana;  
    font-size:13px;  
    font-weight:bold;  
    color:#fff;  
    text-align:center;  
    min-width:150px;  
    min-height:100px;  
} 
 
.lp-window .window_contents {  
    margin-top:10px;  
    width:100%;  
    height:100%;      
} 
 
.lp-window .window_header {  
    text-align:center;  
} 
 
.lp-window .window_title {  
    margin-top:-7px;  
    margin-bottom:7px;  
    font-size:11px;  
    cursor:move;  
} 
 
.lp-window .window_close {  
    display:block;  
    position:absolute;  
    top:4px;  
    left:5px;  
    height:13px;  
    width:13px;  
    background-image:url("../images/window_close.gif");  
    cursor:pointer;  
    cursor:hand;  
}  


/* @end */


/* @end */

/* @group IE 6 Fixes */

* html {
}

* html #slideboxHeader {
	background-image: url(../images/header-content.bg-photos-alt.png);
}

* html #navigationMain a {
	width: 1%;
}

* html #navigationMain dl.open dt {
	opacity: 1.0;
	margin: 0;
	float: left;
}

* html #navigationMain dl.open dd {
	clear: left;
}

* html #navigationMain dl.open dd a {
	width: 220px;
}

* html #navigationMain dl.open dt a, * html #navigationMain dl.open dd a {
	zoom: 1.0;
}

* html div#content.master {
	background-image: none;
}

* html div#footer #linksFooter.column {
	margin: 0 -312px 0 0;
	float: left;
}

* html ul#navigationFooter {
	position: static;
	margin-left: .75em;
	list-style-type: disc;
}

* html #footer {
	/*zoom: 1.0;*/
	width: 100%;
}

* html #content hr {
	border-width: 1px 0 0 0;
	height: 0px;
	background: none;
}

* html a.check, * html form button.check, * html button.action1 {
	background-image: none !important;
}


* html a.check span, * html form button.check span {
	background-image: none !important;
}

	
* html .widget {
	width: 303px;
	padding-bottom:  0;
}

* html .widget h2 {
	margin-bottom: 0;
}

* html .widgetcontent {
	margin: 1em 0;
}

* html .widget .toggle {
	margin-bottom: .5em;
	margin-top: 1em;
}

* html .widgetcap {
	display: none;
	background-image: none;
}

* html .widgeticon {
	display: none;
	background-image: none;
}
	
* html #content a#buttonBookTour {
	top: 0em;
}
	

* html #pg_Home #homeHeaderPushpins {
	display: none;
}

* html #homeTourPromos .promo {
	background: url(../images/home.tourpromo.bg-alt.png) no-repeat center top;
}

/* @end */

/* @group IE 7 Fixes */

*:first-child+html {
	
}

*:first-child+html #navigationMain a {
	/*width: 1%;*/
}

*:first-child+html ul#navigationFooter {
	list-style-type: disc !important;
}


*:first-child+html #navigationMain dl.open dt {
	opacity: 1.0;
	margin: 0;
}

*:first-child+html #navigationMain dl.open dd {
	clear: left;
}

*:first-child+html #navigationMain dl.open dt a, *:first-child+html #navigationMain dl.open dd a {
	zoom: 1.0;
}

*:first-child+html #footer {
	/*zoom: 1.0;*/
	width: 100%;
}

*:first-child+html #content hr {
	border-width: 1px 0 0 0;
	height: 0px;
	background: none;
}

*:first-child+html .widget {
	width: 303px;
	padding-bottom:  0;
}

*:first-child+html .widgetcontent {
	margin: 1em 0;
}

*:first-child+html .widgeticon {
	height: 95px;
	top: 0;
	margin: -70px 0;
}

*:first-child+html .widget h2 {
	height: 56px;
	line-height: 2;
	margin-bottom: -1em !important;
}

*:first-child+html .widget .toggle {
	margin-top: 1.5em;
	margin-bottom: -.05em;
}

	
*:first-child+html #content a#buttonBookTour {
	top: 0em;
}

/* @end */

/* @group Debug */


/*body {
background-color: orange;
}*/



/*#header, #footer {
background-color: #eee;
}*/



/*#content {
background-color: #ddd;
}*/



/*div#contentColumn1 {
background-color: #dff;
}*/



/*div#contentColumn2 {
background-color: #fff;
}*/



/*.master {
outline: 1px dotted pink;
}*/



/*.content {
outline: 1px dashed red;
}*/


/* @end */