@charset "utf-8";

/* Begin Structural Elements */


body  {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: #F7F5F2;
	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: #666;
	font-size: 14px;
	line-height: 18px;
	}

#container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 980px;  /* 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 #CCCCCC;
	text-align: left; /* this overrides the text-align: center on the body element. */
	} 

/* 
Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/

#header {
	height: 105px; /* height plus padding must equal 125px total otherwise sidebars will misalign */
	background: #4F4A39; 
	padding: 20px 0px 0px 20px; /* padding keeps the content of the div away from the edges */
	} 

#sidebar1 {
	position: absolute;
	top: 125px;
	left: -1px;
	width: 180px; /* originally set to 162.  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 for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px; /* padding keeps the content of the div away from the edges */
	border-left: 1px solid #CCCCCC;
}
#sidebar1Cell {
	padding: 0px 36px 34px 34px;
	}
#sidebar1Cell p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 15px;
	margin-top: 0px;
	margin-bottom: 0px;
	}
#sidebar1Cell a:link {
	text-decoration: none;
	font-weight: normal;
	color: #690;
	}
#sidebar1Cell a:visited {
	text-decoration: none;
	font-weight: normal;
	color: #060;
	}
#sidebar1Cell a:hover {
	text-decoration: underline;
	font-weight: normal;
	color: #690;
	}
#sidebar1Cell a:active {
	text-decoration: underline;
	font-weight: normal;
	color: #690;
	}
#sidebar1Cell h2 {
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #669900;
	line-height: 14px;
	margin-top: 0px;
	}
#sidebar1Cell h3 {
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #669900;
	line-height: 14px;
	margin-top: 20px;
	margin-bottom: 8px;
	}
#sidebar1Cell li {
	list-style-image: url(../assets/bloglist.gif);
	list-style-position: outside;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 15px;
	text-indent: -40px;
	margin-top: 0px;
	}
#sidebar1Cell .page_item {
	margin-top: -15px;
	}
#MainLogo {
	text-align: center;
	background-image: url(../assets/DYNW-logo.gif);
	background-repeat: no-repeat;
}
#sidebar2 {
	position: absolute;
	top: 125px;
	right: -1px;
	width: 232px; /* 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-color: #E8E6DD; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 9px 10px 9px 9px; /* padding keeps the content of the div away from the edges */
	border: 1px solid #CCCCCC;
	}
.sidebar2Cell {
	background-color: #FFF;
	border: 1px solid #CCCCCC;
	margin-bottom: 9px;
	width: 232px;
	list-style-image: url(../assets/list.gif);
	list-style-position: outside;
	}
.sidebar2Nav {
	background-color: #E8E6DD;
	margin-bottom: 5px;
	border: 0px;
	width: 232px;
	}
.sidebar2Nav img {
	border: 0px;
	}
#sidebar2heading {
	height: 32px;
	background-image: url(../assets/h2rt.jpg);
	}
.sidebar2Cell p {
	font-size: 12px;
	line-height: 14px;
	padding-left: 9px;
	padding-right: 9px;
	}
.sidebar2Cell h2 {
	font-family: Arial, Helvetica, verdana, sans-serif;	
	font-size: 14px;
	font-weight: bold;
	padding-left: 9px;
	color: #FFF;
	line-height: 32px;
	background-image: url(../assets/h2rt.jpg);
	margin-top: 0px;
	}
.flickr {
	width:210px;
	background-image: url(../assets/xynw.gif);
	background-repeat: no-repeat;
	}
.hometable {
	margin-left: -21px;
	}
.homecell {
	border: 1px solid #CCCCCC;
	width: 225px;
	padding: 9px;
	}
.homecell p {
	margin-top: 10px;
	margin-bottom: 0px;
	font-size: 11px;
	line-height: 14px;
	}
.oriccell {
	margin: 0px;
	font-size: 11px;
	line-height: 14px;
	vertical-align: top;
	width: 50%;
	}
.csblock {
	text-align: left;
	background-image: url(../assets/question.gif);
	background-repeat: no-repeat;
	background-position: left;
	padding-left: 60px;
	}
.csblock p {
	font-size: 13px;
	line-height: 16px;
	}
.csphone {
	font-style: normal;
	font-size: 14px;
	font-weight: bold;
	line-height: 20px;
	}
.sidebar2Cust {
	padding-left: 9px;
	padding-right: 9px;
	padding-bottom: 9px;
	}
#cse-search, #prod-search, #searchform {
	position: absolute;
	top: 20px;
	right: 20px;
	line-height: 26px;
	}
#cse-search-box, #prod-search-box, #blog-search-box {
	position: relative;
	top: -5px;
	border: 1px solid #CCCCCC;
	margin-right: -4px;
	padding-top: 2px;
	padding-left: 5px;
	margin-top: -5px;
	color: #999;
	}
#cse-search-button, #prod-search-button, #blog-search-button {
	}
#cse-search-results {
	}
#account a:link, #account a:visited, #account a:hover, #account a:active {
	position: absolute;
	top: 92px;
	right: 20px;
	color: #99CC00;
	font-size: 12px;
	line-height: 18px;
	font-weight: bolder;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	}
#MainHead {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: left;
	}
#breadcrumbs p {
	margin-top: 0px;
	margin-bottom: 0px;
	}
.NoProdsFound {
	margin-top: 50px;
	margin-bottom: 150px;
	}
.AdvancedSearch {
	border: 1px solid #CCCCCC;
	padding: 10px;
	margin-top: 20px;
	background-color: #FFFFFF;
	}
.AdvancedSearch h2 {
	margin-top: 5px;
	}
.AdvancedSearch p {
	margin-top: 10px;
	margin-bottom: 5px;
	}
#mainContent {
	margin: 5px 250px 50px 162px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0px 20px 0px 20px;
	list-style-image: url(../assets/list.gif);
	min-height: 650px; /* min-height must be greater than the expected length of the left and right sidebars, otherwise they will overlap the footer if the page content is too short */
	list-style-position: outside;
	}
.ctgy-nav {
	margin-top: 5px;
	margin-bottom: 0px;
	}
.ctgy-img {
	margin-top: 3px;
	margin-bottom: 0px;
	}
.destinations-img {
	margin-top: 3px;
	margin-bottom: 20px;
	}
.ctgy-prod-list {
	font-size: 13px;
	line-height: 15px;
	margin-top: 10px;
	margin-bottom: 20px;
	}
.ctgy-list {
	font-size: 13px;
	line-height: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
	}
.prod-display {
	margin-top: 10px;
	margin-bottom: 0px;
	padding: 0px;
	width: 100%;
	}
.prod-head {
	vertical-align: top;
	}
.prod-display h1 {
	margin-top: 0px;
	font-weight: bold;
	line-height: 24px;
	font-size: 22px;
	}
.prod-image {
	text-align: center;
	vertical-align: top;
	padding-right: 30px;
	max-width: 50%;
	}
.prod-price {
	vertical-align: top;
	height: 15px;
	padding-top: 5px;
	}
.prod-details {
	vertical-align: top;
	padding-top: 5px;
	}
.prod-addcart {
	vertical-align: bottom;
	}
.prod-price {
	font-size: 20px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	}
.prod-item {
	vertical-align: top;
	height: 15px;
	text-align: right;
	width: 125px;
	}
.prod-rating {
	vertical-align: top;
	height: 15px;
	padding-top: 5px;
	min-width: 195px; /* must be 195px to correct for cell collapse in IE */
	text-align: left;
	}
.prod-share {
	vertical-align: top;
	height: 15px;
	padding-top: 5px;
	width: 125px; /* this only works in FF, that's why the min-width in lefthand cell */
	text-align: left;
	}
.prod-share-email {
	margin-top: 3px;
	}
.prod-line {
	height: 20px;
	border-bottom: 1px dashed #999;
	}
.prod-qty {
	margin-left: 30px;
	text-align: right;
	vertical-align: bottom;
	max-width: 50%;
	}
.prod-related-image {
	border: 1px solid #FFF;
	height: 75px;
	width: 75px;
	padding: 5px;
	margin-right: 10px;
	margin-bottom: 10px;
	}
.prod-related-info {
	vertical-align: top;
	}
.prod-review-header {
	border-bottom: 1px dashed #CCC;
	padding-bottom: 0px;
	margin-bottom: 20px;
	width: 100%;
	}
.prod-review {
	border-bottom: 1px dashed #CCC;
	width: 500px;
	margin-top: 10px;
	margin-bottom: 20px;
	}
.prod-extra-image {
	margin-right: 22px;
	margin-bottom: 20px;
	}
.funrun {
	display: none;
	margin-top: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px dashed #888;
	border-bottom: 1px dashed #888;
	}
.funrun h1 {
	margin: 0px;
	font-weight: bold;
	line-height: 24px;
	font-size: 22px;
	}
.funrun h2 {
	margin-top: 0px;
	}
.funrun-head h1 {
	margin-top: 0px;
	margin-bottom: 5px;
	text-align: center;
	}
.funrun-head h2 {
	margin-top: 0px;
	margin-bottom: 5px;
	text-align: center;
	}
#memb-blurb {
	position: relative;
	top: 20px;
	right: 0px;
	width: 232px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	text-align: left;
	float: right;
	padding: 10px;
	}
#memb-blurb h3 {
	margin-top: 0px;
	color: #666;
	}
#memb-blurb-image {
	float: left;
	margin-right: 16px;
	margin-bottom: 10px;
	margin-left: 6px;
	}
#memb-blurb p {
	font-size: 12px;
	line-height: 16px;
}
#memb-image {
	float: right;
	margin-top: 20px;
	margin-left: 16px;
	margin-bottom: 10px;
	margin-right: 6px;
	}
.basket-contents p {
	margin: 0px;
	line-height: 14px;
	}
.basket-image {
	height: 75px;
	width: 75px;
	margin-right: 10px;
	margin-bottom: 10px;
	vertical-align: top;
	border: 0px;
	padding-bottom: 5px;
	}
.basket-prodname {
	padding-right: 10px;
	vertical-align: top;
	text-align: left;
	}
.basket-quantity {
	width: 60px;
	text-align: left;
	vertical-align: top;
	}
.basket-quantity p {
	text-align: center;
	margin: 0px;
}
.basket-price {
	vertical-align: top;
	text-align: right;
	width: 60px;
	}
.basket-prodname p {
	margin: 0px;
	}
.basket-price p {
	margin: 0px;
	}
.basket-line {
	height: 15px;
	border-top: 1px dashed #999;
	}
.mylist-prodname {
	padding-right: 10px;
	vertical-align: top;
	text-align: left;
	line-height: 14px;
	}
.mylist-prodname p {
	margin: 0px;
	}
.datafield {
	margin-bottom: 5px;
	padding: 2px;
	border: 1px solid #CCC;
	}
.destination {
	font-family:"Trebuchet MS", arial, helvetica;
	font-size: 11px;
	margin-top: 4px;
	width: 100%;
	padding: 2px;
	border: 1px solid #CCC;
	color: #666;
	}
.destination2 {
	font-family:"Trebuchet MS", arial, helvetica;
	font-size: 14px;
	margin-top: 4px;
	margin-bottom: 0px;
	width: 100%;
	padding: 2px;
	border: 1px solid #CCC;
	color: #669900;
	}
.donations {
	font-family:"Trebuchet MS", arial, helvetica;
	font-size: 14px;
	margin-top: 4px;
	margin-bottom: 0px;
	padding: 2px;
	border: 1px solid #CCC;
	color: #669900;
	}
.custdata {
	width: 170px;
	text-align: left;
	vertical-align: middle;
	}
.custdata p, .custdata h2 {
	margin: 0px;
	}
.custdata-osel {
	width: 264px;
	text-align: left;
	vertical-align: middle;
	}
.custdata-myreg {
	width: 125px;
	text-align: left;
	vertical-align: top;
	}
.custdata-myreg p {
	margin: 0px;
	}
.custdata-aced {
	width: 125px;
	text-align: left;
	vertical-align: middle;
	}
.custdata-aced p {
	margin: 0px;
	}
.custdata-enews {
	width: 110px;
	text-align: left;
	vertical-align: middle;
	}
.methods-osel-a {
	text-align: left;
	vertical-align: top;
	height: 30px;
	width: 80px;
	}
.methods-osel-b {
	text-align: left;
	vertical-align: top;
	height: 30px;
	}
.methods-osel-a p, .methods-osel-b p {
	margin: 0px;
	}
.paydata-opay {
	text-align: left;
	vertical-align: top;
	height: 30px;
	}
.paydata-opay-a {
	text-align: left;
	vertical-align: middle;
	height: 30px;
	width: 110px;
	}
.paydata-opay-b {
	text-align: left;
	vertical-align: middle;
	height: 30px;
	}
.paydata-opay-a p, .paydata-opay-b p, .paydata-opay p {
	margin: 0px;
	}
.wreview-data {
	text-align: left;
	vertical-align: top;
	width: 110px;
	}
.wreview-data p {
	margin: 0px;
	}
.wreview-data h2 {
	margin-top: 10px;
	margin-bottom: 0px;
	}
.contact-data {
	width: 125px;
	text-align: left;
	vertical-align: middle;
	}
.contact-data p {
	margin: 0px;
	}
.sfnt-img {
	margin-top: 0px;
	margin-bottom: -10px;
	}
#secure {
	position: absolute;
	left: 593px;
	float: left;
	top: 140px;
	}
#shipaddress {
	position: relative;
	right: 15px;
	width: 120px;
	float: right;
	top: 45px;
	font-size: 12px;
	line-height: 14px;
	}
#billaddress {
	position: relative;
	right: 15px;
	width: 120px;
	float: right;
	top: 45px;
	font-size: 12px;
	line-height: 14px;
	}
#myaccount {
	position: relative;
	right: 0px;
	width: 95px;
	float: right;
	top: 0px;
	font-size: 12px;
	line-height: 14px;
	}
.eventsintro {
	margin-top: 0px;
	}
.continue {
	width: 100%;
	margin-top: 0px;
	}
.poweredby, .poweredby p, .poweredby a:link, .poweredby a:visited, .poweredby a:hover, .poweredby a:active {
	font-size: 10px;
	margin-top: 0px;
	margin-left: 0px;
	margin-bottom: 20px;
	padding: 0px;
	color: #888;
	left: 0px;
	}
.menu {
	}
#footer {
	padding: 15px 0px 8px 14px; /* padding matches header for overall thisckness of 20px visually. The left hand padding must equal 20px when added to the left padding for footer links (5px) - see below */
	background:#4F4A39;
	height: 80px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #E8E6DD;
	} 
#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: 0px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	}
#footer a:link, #footer a:visited, #footer a:hover, #footer a:active {
	padding-right: 6px;
	padding-left: 6px;
	font-weight: bold;
	}
#footer a:link {
	text-decoration: none;
	color: #E8E6DD;
	}
#footer a:visited {
	text-decoration: none;
	color: #E8E6DD;
	}
#footer a:hover {
	text-decoration: none;
	color: #FFF;
	}
#footer a:active {
	text-decoration: none;
	color: #FFF;
	}
#cellContainer {
	border: 1px solid #CCCCCC;
	width: 232px;
	}
.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: 6px;
	}


/* End Structural Elements */






/* Begin Typography & Colors */

h1 {
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	font-weight: bolder;
	line-height: 26px;
	font-size: 22pt;
	margin-top: 0px;
	margin-bottom: 10px;
	}
h2 {
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	font-weight: normal;
	line-height: 18px;
	margin-top: 30px;
	font-size: 16pt;
	}
h4 {
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	font-weight: normal;
	line-height: 18px;
	margin-top: 10px;
	margin-bottom: 0px;
	padding: 0px;
	font-size: 16pt;
	}
h5 {
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	font-weight: normal;
	line-height: 18px;
	margin-top: 10px;
	margin-bottom: 20px;
	padding: 0px;
	font-size: 16pt;
	}
h3 {
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	font-weight: bold;
	line-height: 14px;
	font-size: 12pt;
	}
a:link {
	text-decoration: none;
	font-weight: normal;
	color: #669900;
	}
a:visited {
	text-decoration: none;
	font-weight: normal;
	color: #006600;
	}
a:hover {
	text-decoration: underline;
	font-weight: normal;
	color: #669900;
	}
a:active {
	text-decoration: underline;
	font-weight: normal;
	color: #669900;
	}
#clock {
	color: #99CC00;
	font-size: 12px;
	line-height: 18px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	}
#breadcrumbs {
	color: #669900;
	font-size: 12px;
	padding-top: 6px;
	line-height: 24px;
	}
#breadcrumbs p {
	line-height: 12px;
	}
#greenfooter {
	color: #99CC00;
	font-weight: bold;
	padding-left: 6px;
	}
.alert {
	color: #F60;
	font-weight: bold;
	margin-bottom: 0px;
	line-height: 14px;
	}

/* End Typography & Colors */

#flickr_badge_wrapper a img {
	margin: 0px 0px 0px 0px;
	padding: 0px;
	border: none;
	max-width: 100px;
	}
.zg_div {
	margin:15px 0px 15px 32px; 
	width:117px;
	}
.zg_div_inner {
	border: none; 
	background: inherit !important; 
	color:#666666; 
	text-align:center; 
	font-family:"Trebuchet MS", arial, helvetica; 
	font-size:11px;
	}
.zg_div a, .zg_div a:hover, .zg_div a:visited {
	color:#669900; 
	background:inherit !important; 
	text-decoration:none !important;
	}
.pubs p {
	margin: 0px;
	padding: 0px;
	vertical-align: text-top;
	}
.prod-intro-photo {
	}
.prod-intro-table {
	}
.pass-thumb {
	margin-right: 9px;
	padding-top: 13px;
	}
.ctgy-img-credit, .ctgy-img-credit a:link, .ctgy-img-credit a:visited, .ctgy-img-credit a:hover, .ctgy-img-credit a:active {
	font-size: 10px;
	line-height: 10px;
	margin-top: 0px;
	margin-bottom: 10px;
	color: #888;
	padding: 0px;
	text-align: right;
	}
.don-img-credit, .don-img-credit a:link, .don-img-credit a:visited, .don-img-credit a:hover, .don-img-credit a:active {
	font-size: 10px;
	line-height: 10px;
	margin-top: 0px;
	margin-bottom: 10px;
	color: #888;
	padding: 0px;
	text-align: right;
	}
.funrun-img-credit, .funrun-img-credit a:link, .funrun-img-credit a:visited, .funrun-img-credit a:hover, .funrun-img-credit a:active {
	font-size: 10px;
	line-height: 10px;
	margin-top: 0px;
	margin-bottom: 10px;
	color: #888;
	text-align: right;
	}
.fadeshowbg {
	padding-right: 0px;
	}
.sponsors {
	text-align: center;
	vertical-align: top;
	padding: 17px 0px 0px 0px;
	}
.bio {
	border-top: 1px dashed #999;
	padding-top: 10px;
	margin-top: 40px;
	}
.post {
	border-bottom: 1px dashed #999;}
.post h4 {
	margin-top: 30px;
	margin-bottom: 5px;
	}
.postbyline, .postbyline a:link, .postbyline a:visited, .postbyline a:hover, .postbyline a:active {
	font-size: 12px;
	line-height: 14px;
	color: #069;
	margin-bottom: 0px;
	}
.blogrss {
	background-image:url(/assets/feedIcon.gif);
	background-repeat:no-repeat;
	padding:0px 5px 4px 20px;
	margin-top: 30px;
	}
.alignright {
	float: right;
	}
.alignleft {
	float: left
	}
.blognav {
	font-size: 13px;
	line-height: 13px;
	margin-top: 10px;
	}
.fineprint p {
	font-size: 11px;
	line-height: 13px;
	padding: 0px;
	margin-top: 10px;
	margin-bottom: 10px;
	}
.passinfo {
	border-bottom: 1px dashed #999;
	margin-top: 15px;
	margin-bottom: 25px;
	}
.passinfo p {
	font-size: 11px;
	line-height: 13px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 5px;
	}
.passinfocella, .passinfocellb, .passinfocellc {
	vertical-align: top;
	padding-right: 10px;
	padding-bottom: 12px;
	}
.passinfocella {
	width: 46%;
	}
.passinfocellb {
	width: 20%;
	}
.passinfocellc {
	width: 34%;
	}
.noshow {
	border: 0px solid #ffffff
	}
.oricaddress p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 18px;
	}
.eventreg p {
	margin-top: 0px;
	margin-bottom: 10px;
	}