/* The main calendar widget.  DIV containing a table. */


/*
	colour scheme: bark
	border: bark brown = 8F734F -> 725C3F
	light background: beige = EBE7C8?
	dark background: red ochre = A85C4A
*/


div.calendar { position: relative; }

.calendar, .calendar table {
  border: 1px solid #725C3F;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #EBE7C8;
  font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;    /* They are the navigation buttons */
  padding: 2px;          /* Make the buttons seem like they're pressing */
  background: #A85C4A;
  border: 1px #725C3F solid;
  color: white;
}

.calendar .nav {
  background: #A85C4A url(menuarrow2.gif) no-repeat 100% 100%;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;      /* Pressing it will take you to the current date */
  text-align: center;
  background: #000;
  color: white;
  padding: 2px;
}

.calendar thead tr { /* Row <TR> containing navigation buttons */
  background: #EBE7C8;
  color: #fff;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  background: #EBE7C8;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #725C3F;
  padding: 2px;
  text-align: center;
  color: black;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #a66;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background-color: #EEDEDB;
  color: #000;
  border: 1px solid #AA9D8C;
  padding: 1px;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background-color: #EBE7C8;
  border: 1px solid #AA9D8C;
  padding: 2px 0px 0px 2px;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  color: #456;
  text-align: right;
  padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #bbb;
}
.calendar tbody .day.othermonth.oweekend {
  color: #fbb;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #000;
  background: #EBE7C8;
}

.calendar tbody .rowhilite td {
  background: #F5F3E4;
}

.calendar tbody .rowhilite td.wn {
  background: #F5F3E4;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  background: #F7F5E9;
  padding: 1px 3px 1px 1px;
  border: 1px solid #725C3F;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  background: #cde;
  padding: 2px 2px 0px 2px;
}

.calendar tbody td.selected { /* Cell showing today date */
  font-weight: bold;
  border: 1px solid #000;
  padding: 1px 3px 1px 1px;
  background: #fff;
  color: #000;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #a66;
}

.calendar tbody td.today { /* Cell showing selected date */
  font-weight: bold;
  color: #c43f38;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
  text-align: center;
  background: #12636b;
  color: #fff;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #000;
  color: #fff;
  border-top: 1px solid #12636b;
  padding: 1px;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #B8DAF0;
  border: 1px solid #178AEB;
  color: #000;
  padding: 1px;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background: #006AA9;
  padding: 2px 0px 0px 2px;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  border: 1px solid #655;
  background: #F5F3E4;
  color: #000;
  font-size: 90%;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .hilite {
  background: #34ABFA;
  border-top: 1px solid #46a;
  border-bottom: 1px solid #46a;
  font-weight: bold;
  padding: 0;
}

.calendar .combo .active {
  border-top: 1px solid #46a;
  border-bottom: 1px solid #46a;
  background: #F1F8FC;
  font-weight: bold;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #E3F0F9;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: #F1F8FC;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #267DB7;
  color: #fff;
}

.calendar td.time span.active {
  border-color: red;
  background-color: #000;
  color: #A5FF00;
}

html, body { margin: 0; }
html { overflow-y: scroll; }

body { font: 14px/1.4 Arial, Helvetica, FreeSans, sans-serif; }
a { color: #a85c4a; }
a img { border: none; }
select, input, textarea, object, embed, #footer img, .box img { vertical-align: middle; }

#header {
	width: 950px;
	margin: auto;
	padding-top: 1px;
	background: url(/images/header-bg.png) 136px top no-repeat;
}
#logo { float: left; margin: 24px 0 0 25px; }
#tagline { text-align: right; display: block; padding-top: 29px; height: 59px; color: #a85c4a; font-size: 20px; }
#nav {
	margin: 0;
	padding: 0;
	list-style: none;
	border: #a85c4a solid;
	border-width: 1px 0;
	height: 36px;
}
#nav li { float: left; margin: 0; padding: 0; }
#nav li a {
	display: block;
	padding: 2px 14px 0;
	line-height: 34px;
	color: #7b7b7b;
	text-decoration: none;
}

#nav li a:hover { background-color: #eed4cd; color: #a85c4a; text-decoration: underline; }
#nav .child {
	display: none;
	position: absolute;
	z-index: 15;
	list-style: none;
	padding: 0;
	margin: 0;
	opacity: 0.95;
	font-size: 100%;
	border: 1px #888 solid;
	border-top: none;
}
#nav .child li { float: none; padding: 0; margin: 0; }
#nav .child a { background: #ffffff; color: #707070; }

#main { width: 950px; margin: auto; overflow: hidden; }
#content { float: left; width: 636px; overflow: hidden; color: #555; padding-bottom: 20px; }

.clear { clear: both; }

.box {
	padding: 6px 64px 1px 8px;
	width: 232px;
	height: 103px;
	position: relative;
	margin-bottom: 14px;
	font-size: 80%;
	line-height: 1.2;
}
img.box { width: 304px; height: 110px; padding: 0; }
.job  { background: #a17d0a url(/images/jobs-bg.png) right top no-repeat; }
.job h5 { margin-right: 10px; }
.neg-box { color: white; }
.neg-box a { color: white; }
.neg-box .overlay {
	position: absolute;
	right: 12px;
	bottom: 10px;
	font: bold 20px/1.1 "Arial Narrow", "Helvetica Narrow", FreeSans, sans-serif;
	text-decoration: none;
}

.job { padding-top: 1px; height: 108px; overflow: hidden; }
.job .job-item { padding-top: 2px; }
.box-wrapper { color: inherit; text-decoration: inherit; display: block; }
.news { background: #8f734f url(/images/news-bg.png) right top no-repeat; }

#quicklinks { float: right; width: 304px; padding-top: 10px; }

h1 { font-size: 170%; line-height: 1.2; margin: 4px 0 0.5em; font-weight: normal; }
h2 { font-size: 145%; line-height: 1.2; margin: 1.4em 0 0.3em; }
h3 { font-size: 130%; line-height: 1.2; margin: 1.4em 0 0.3em; }
h4 { font-size: 120%; line-height: 1.2; margin: 1.4em 0 0.3em; }
h5 { font-size: 110%; line-height: 1.2; margin: 1.4em 0 0.3em; }
h6 { font-size: 110%; line-height: 1.2; margin: 1.4em 0 0.3em; font-weight: normal; font-style: italic; }
p { margin: 0 0 1.4em; }

.page-h { margin-top: 10px; }

.box h5 { margin-top: 0.1em; }
.box p { margin-bottom: 0.5em; }

#footer {
	width: 950px;
	margin: 10px auto 0;
	border-top: 1px #a85c4a solid;
	padding-top: 5px;
	color: #a85c4a;
	text-align: center;
	font-size: 80%;
	line-height: 1.2;
}
#footer a { color: #a85c4a; font-weight: bold; text-decoration: none; }
#footer a:hover { text-decoration: underline; }
#copyright { float: left; text-align: left; }
#footerlinks { float: right; text-align: right; }


/* Templates */

/* Common template parts*/
.container { padding: 10px 0; }
.container .img { text-align: center; }
div.odd { float: left; clear: left; margin: 10px 5px 10px 0; width: 277px; }
div.even { float: right; clear: right; margin: 10px 0 10px 5px; width: 277px; }
.smallflowimg { float: left; margin: 5px 0 5px 11px; text-align: center; }
.smallflowimg-first { margin-left: 0; }

#content .i4 a { border: none; margin: none; text-decoration: none; }
#content .i4 a:hover { border: none; margin: none; text-decoration: none; }

/*staggered template*/
.stagger div.odd, .stagger div.even { display: table; }
.stagger span.vam { display: table-cell; vertical-align: middle; }
.stagger div.odd  { float: right; clear: right; width: auto; height: 137px; margin: 20px 0 15px 20px; }
.stagger div.even { float: left;  clear: left;  width: auto; height: 137px; margin: 20px 15px 20px 0; }
.stagger .spacer1 { float: left;  clear: left;  height: 212px; padding-left: 1px; }
.stagger .spacer2 { float: right; clear: right; height: 235px; padding-left: 1px; }
.stagger .spacer3 { float: left;  clear: left;  height: 244px; padding-left: 1px; }

/*grid of eight*/
.eight-tail .odd, .eight-tail .even { text-align: center; }

/*image column templates*/
.img-col-left  { width: 371px; padding-left:  194px; }
.img-col-right { width: 371px; padding-right: 194px; }
.img-col-left  .img { float: left; clear: left;   width: 183px; margin: 5px 0 5px -194px; }
.img-col-right .img { float: right; clear: right; width: 183px; margin: 5px -194px 5px 0; }


/*"article" template*/
.maintext { float: left; }
.article .aside { float: right; clear: right; margin: 10px 0; text-align: center; }
.article .maintext, .article .aside { width: 277px; }
.wideimg { margin: 10px 0; text-align: center; }


/*various templates that include a row of images*/
.lr-gallery .spacer { float: right; padding-left: 1px; }
.rl-gallery .spacer { float: left;  padding-left: 1px; }
.lr-gallery .spacer, .rl-gallery .spacer { height: 168px; }
.lr-gallery div.odd,  .rl-gallery div.even, .gallery-rl div.even { float: left;  clear: left;  margin: 15px 10px 10px 0; width: auto; }
.lr-gallery div.even, .rl-gallery div.odd,  .gallery-rl div.odd  { float: right; clear: right; margin: 15px 0 10px 10px; width: auto; }

.gallery-rl .spacer1 { float: right; padding-left: 1px; height: 128px; }
.gallery-rl .spacer2 { float: left;  padding-left: 1px; height: 266px; }

/*sidebar template*/
.cols {
	border: 1px #a85c4a solid;
	padding: 9px 120px 9px 15px;
	line-height: 16px;
	background: url(/images/frontpage-bg-tr.png) right top no-repeat;
}
.cols h1 { color: #863d21; font: 22px/24px Arial, Helvetica, FreeSans, sans-serif; }
.cols p { margin: 1em 0; }
.leftcol  { float: left;  width: 430px; margin-left: -6px; }
.rightcol { float: right; width: 182px; margin-right: -111px; }




.caption { display: block; text-align: center; font-style: italic; }


/* Gallery */
.galcontainer {
	margin: 25px 4px 4px;
	border: 1px solid #ccc;
	padding: 12px;
}

.gal {
	width: 600px;
	height: 450px;
	z-index: 5;
	border: 1px solid #000;
}

.jdExtCarousel {
	width: 600px;
	margin-top: 10px;
}

.gal img.thumbnail { display: none; }

.gal h2 { font-size: 12px; line-height: 1.3; font-weight: bold; margin: 4px 4px 0; }
.gal p  { font-size: 12px; text-indent: 8px; margin: 0; }

.jdGallery
{
	overflow: hidden;
	position: relative;
}

.jdGallery img
{
	border: 0;
	margin: 0;
}

.jdGallery .slideElement
{
	width: 100%;
	height: 100%;
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../images/loading-bar-black.gif);
}

.jdGallery .loadingElement
{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../images/loading-bar-black.gif);
}

.jdGallery .slideInfoZone
{
	position: absolute;
	z-index: 10;
	width: 100%;
	margin: 0px;
	left: 0;
	bottom: 0;
	height: 40px;
	background: #333;
	color: #fff;
	text-indent: 0;
	overflow: hidden;
}

* html .jdGallery .slideInfoZone
{
	bottom: -1px;
}

.jdGallery div.carouselContainer
{
	position: absolute;
	height: 135px;
	width: 100%;
	z-index: 10;
	margin: 0px;
	left: 0;
	top: 0;
}

.jdGallery a.carouselBtn
{
	position: absolute;
	bottom: 0;
	right: 30px;
	height: 20px;
	/*width: 100px; background: url('../img/carousel_btn.gif') no-repeat;*/
	text-align: center;
	padding: 0 10px;
	font-size: 13px;
	background: #333;
	color: #fff;
	cursor: pointer;
}

.jdGallery .carousel
{
	position: absolute;
	width: 100%;
	margin: 0px;
	left: 0;
	top: 0;
	height: 115px;
	background: #333;
	color: #fff;
	text-indent: 0;
	overflow: hidden;
}

.jdExtCarousel
{
	overflow: hidden;
	position: relative;
}

.jdGallery .carousel .carouselWrapper, .jdExtCarousel .carouselWrapper
{
	/*position: absolute;*/
	width: 100%;
	height: 78px;
	top: 10px;
	left: 0;
	overflow: hidden;
}

.jdGallery .carousel .carouselInner, .jdExtCarousel .carouselInner
{
	position: relative;
}

.jdGallery .carousel .carouselInner .thumbnail, .jdExtCarousel .carouselInner .thumbnail
{
	cursor: pointer;
	background: #000;
	background-position: center center;
	float: left;
	border: solid 1px #fff;
}

.jdGallery .wall .thumbnail, .jdExtCarousel .wall .thumbnail
{
	margin-bottom: 10px;
}

.jdGallery .carousel .label, .jdExtCarousel .label
{
	font-size: 13px;
	position: absolute;
	bottom: 5px;
	left: 10px;
	padding: 0;
	margin: 0;
}

.jdGallery .carousel .wallButton, .jdExtCarousel .wallButton
{
	font-size: 10px;
	position: absolute;
	bottom: 5px;
	right: 10px;
	padding: 1px 2px;
	margin: 0;
	background: #222;
	border: 1px solid #888;
	cursor: pointer;
}

.jdGallery .carousel .label .number, .jdExtCarousel .label .number
{
	color: #b5b5b5;
}

.jdGallery a
{
	font-size: 100%;
	text-decoration: none;
	color: inherit;
}

.jdGallery a.right, .jdGallery a.left
{
	position: absolute;
	height: 99%;
	width: 25%;
	cursor: pointer;
	z-index:10;
	filter:alpha(opacity=20);
	-moz-opacity:0.2;
	-khtml-opacity: 0.2;
	opacity: 0.2;
}

* html .jdGallery a.right, * html .jdGallery a.left
{
	filter:alpha(opacity=50);
}

.jdGallery a.right:hover, .jdGallery a.left:hover
{
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

.jdGallery a.left
{
	left: 0;
	top: 0;
	background: url(../images/fleche1.gif) no-repeat center left;
}

* html .jdGallery a.left { background: url(../images/fleche1.gif) no-repeat center left; }

.jdGallery a.right
{
	right: 0;
	top: 0;
	background: url(../images/fleche2.gif) no-repeat center right;
}

* html .jdGallery a.right { background: url(../images/fleche2.gif) no-repeat center right; }

.jdGallery a.open
{
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.withArrows a.open
{
	position: absolute;
	top: 0;
	left: 25%;
	height: 99%;
	width: 50%;
	cursor: pointer;
	z-index: 10;
	background: none;
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

.withArrows a.open:hover { background: url('../img/open.png') no-repeat center center; }

* html .withArrows a.open:hover { background: url('../img/open.gif') no-repeat center center;
	filter:alpha(opacity=80); }

.data { border-collapse: collapse; width: 100%; margin: 0 0 2em; font-size: 90%; }
.data th, .data td { text-align: left; vertical-align: top; padding: 3px 5px; font-weight: normal; }
.data th { background-color: #8c3b17; color: white; }

.job-header { text-align: center; font-weight: bold; padding: 5px 0; background-color: #8c3b17; color: white; font-size: 120%; }
.job-unavailable { background: url(/images/job-unavailable-bg.png) 50% 50% no-repeat; min-height: 348px; color: #888; }

.links { margin: 10px 0; text-align: center; }

.rahc-form { border-collapse: collapse; }
.rahc-form th { font-size: 90%; text-align: right; vertical-align: top; padding: 5px 5px 5px 0; }
.rahc-form td { vertical-align: top; padding: 5px 0; }

.has-script .js_hidden  { visibility: hidden;  }
.has-script .js_visible { visibility: visible; }

.error { color: red; }

.refer-friend h2 { color: #a85c4a; font-size: 120%; }

.layout { table-layout: fixed; border-collapse: collapse; width: 100%; }
.rahc-form-header { font-size: 90%; font-weight: bold; }

.button { background: #a85c4a; color: white; border: 1px #8c3b17 solid; padding: 1px 30px; }

textarea { font: 100%/1.4 Verdana, Geneva, sans-serif; }

dd { margin-bottom: 4px; }
.apply-front { float: left; width: 278px; padding: 0 0 0 40px; margin-bottom: 20px; }
.app-type h2 { margin-top: 0; }

.news-summary { margin: 3px 0 8px 2em; font-size: 95%; }


table.inform { table-layout: fixed; width: 636px; border-collapse: collapse; margin: 10px 0; }
.confirm fieldset { margin: 4px 0; }
.confirm table.inform { width: 611px; }
table.inform th, table.inform td {
	vertical-align: top;
	text-align: left;
}
table.inform .first { width: 160px; }
form.inform { width: 636px; }
form.inform .header {
	font-weight: bold;
	text-align: center;
	padding: 2px 80px;
	background: #a85c4a;
	color: white;
	border-bottom: 2em white solid;
}
table.inform input.numeric { width: 50px; }
.required-note { color: red; }
.error { color: red; }
table.inform textarea { width: 450px; height: 100px; }
table.inform input.current { background: #eee; border: 1px solid #bbb; color: black; }
.largetext { width: 24em; }

.paging { margin-bottom: 1em; }

.open-app {
	float: left;
	border: 1px #a85c4a solid;
	padding: 10px 80px 10px 10px;
	width: 166px;
	height: auto;;
	background: url(/images/campsite-tr.png) top right no-repeat;
	text-align: justify;
}
.open-app h4 {
	margin-top: 0;
}
.refer-a-friend {
	float: left;
	margin-left: 20px;
	border: 1px #598f94 solid;
	padding: 10px 80px 10px 10px;
	width: 143px;
	height: auto;
	background: url(/images/river-tr.png) top right no-repeat;
	text-align: justify;
}
.refer-a-friend h4 {
	margin-top: 0;
}

.campsite {
	float: left;
	border: 1px #a85c4a solid;
	padding: 10px 80px 10px 10px;
	width: 166px;
	height: auto;
	background: url(/images/campsite-tr.png) top right no-repeat;
	text-align: justify;
}
.campsite h4 {
	margin-top: 0;
}
.river {
	float: left;
	margin-left: 20px;
	border: 1px #598f94 solid;
	padding: 10px 80px 10px 10px;
	width: 143px;
	height: auto;
	background: url(/images/river-tr.png) top right no-repeat;
	text-align: justify;
}
.river h4 {
	margin-top: 0;
}

.map iframe { vertical-align: top; }
.map .legend { display: inline-block; vertical-align: top; text-align: left; margin-left: 10px; }
.map img { vertical-align: top; }
.legend-description { display: inline-block; vertical-align: top; width: 140px; font-size: 90%; }

