/* new 16 Oct 2007 */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ddd; /* gives the browser background a light grey shade */
	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; 
	behavior: url(/other/csshover.htc); 
}
* {margin:0; padding:0;}   /* without this, Firefox showed an offset to the right for listmenu  */
.twoColFixLtHdr #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*  border: 1px solid #000000;  removed the border */
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size : 0.75em;
} 
.twoColFixLtHdr #header { 
	/* background: #DDDDDD;   */
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* 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: #EBEBEB;  the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 10px 15px 20px;  /* was 15px 10px 15px 20px */
	margin: 0; /* */
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 180px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer { 
	 padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff4e8;
	font-size : 0.8em;
} 
.twoColFixLtHdr #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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	width: 100%;
}
.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;
    font-size: 1px;
    line-height: 0px;
}
.clearleft { /* 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:left;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
/*  end of basic DW-based styles  */


h1 { 
	font-size : 1.4em;
	font-weight : bold; 
	margin-top: 3px;
	margin-bottom: 4px;
}
h2 { 
	font-size : 1.2em;
	font-weight : bold;  
	margin-top: 3px;
	margin-bottom: 4px;
}
.breadcrumbs {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0 0 0 20px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-weight : bold; 
}
.home {	background: #fff4e8; }
.accommodation {	background: #f4f4e0; }
.holiday {	background: #f8f8ff; }
.transport {	background: #ffe; }
.ski {	background: #fcfcfc; }
.eat {	background: #f8ffe8; }
.attractions { 	background: #effaff; }

.alerttext {
	color: Red;
	font-weight : bold;
}

div.imagebox {
	margin: 0;
	padding: 0;
}
div.headerimage {
	margin: 0;
	padding: 0;
	float: right;
	height: auto;
	width: auto; /* fixing at less than 590px did not work for IE5, which falls apart */
}
div.logoimage {
	margin: 0;
	padding: 20px 0 0 0;
	height: auto;
	width: auto; /* was fixed at 300px */
}
.mainimage {
	margin: 2px 0;
	padding: 0 0 12px 12px;
	float: right;
	height: auto;
	width: auto; /* was fixed at 300px */
}
span.raised {vertical-align: 30%;}

#childBoxA {
	display : none;
	background: #fff4e8;
}

#childBox1 {
	display : none;
	float:left;	/* causes the boxes to align horizontally instead of stack */
}

#childBox2 {
	display : none;
	float:left;	/* causes the boxes to align horizontally instead of stack */
}

#childBox3 {
	display : none;
	float:left;	/* causes the boxes to align horizontally instead of stack */
}

#childBox4 {
	display : none;
	float:left;	/* causes the boxes to align horizontally instead of stack */
}

#childBox5 {
	display : none;
	float:left;	/* causes the boxes to align horizontally instead of stack */
}

#childBox6 {
	display : none;
	float:left;	/* causes the boxes to align horizontally instead of stack */
}




/* start of nav styles based on Charles Wyke Smith - www.bbd.com  */
div#sidebar1 ul {
	margin: 0 20px 0 6px; /* was 12px top and bottom, changed to 0, left changed from 1.25em to 6px */
	padding: 0;
	list-style-type: none;
}
div#sidebar1 li {
	margin: 0;
	padding: .2em 0;
	/*  text-indent: .5em;  do not want the text indent  */
}
div#sidebar1 a {
	display: block;
	color: #630;  /* colour of normal link text */
	text-decoration:none;
}
div#sidebar1 a:hover {
	color: #f33;
	background: #f8f8f8;
}

/* the horizontal menu starts here */
div#listmenu {
	width:100%; 	/* makes the div full width */
	float:left; /*makes the div enclose the list */
	border-top:1px solid #069;	/* draws line on top edge of div */
	border-bottom:1px solid #069;	/*  draws line on bottom edge of div */
	/*font-size:.8em;	 SET FONT-SIZE HERE */
	background-color: #fff4e8; /* colors the div */
	/*  margin-top:20px;  TEMPORARY - pushes the div away from the top of the browser for clarity in this example*/
	}
div#listmenu ul {margin:0 0 0 20px;/* indents ul from edge of container */
	}
div#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color: #ffe; /*sets the background of the menu items */
	border-right:1px solid #069; /* creates dividing lines between the li elements */
	}
div#listmenu li:first-child {
	border-left:1px solid #069; /*the first vertical line on the menu */
	}
div#listmenu li:hover { 
	background-color:#fcfcfc; /*sets the background of the menu items */
	}
div#listmenu a {
	display:block;
	padding:0 6px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#630;	/* sets the type color */
	}
div#listmenu a:hover {
	color:#F33;
	}
/* the horizontal menu ends here */

/* the drop-down starts here */
div#listmenu ul li ul {
	/*  margin:0;  prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove TEMP above */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:10em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	margin-left:-1px; /*aligns the drop exactly under the menu */
	}
div#listmenu ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #069; /*  three sides of each drop-down item */
	border-bottom:1px solid #069;
	border-right:1px solid #069;
	}
div#listmenu ul li ul li:first-child {
	border-top:1px solid #069; /*the top edge of the dropdown */
	}
/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#listmenu ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #000; /* adds the rightmost menu vertical line to the ul */
	margin-left:10px; /* IE doubles the given value above - why? */
	}
* html div#sidebar1 ul  {
	margin-left: 3px; /* IE doubles the given value above - why? */
	padding: 0;
}
* html div#listmenu a {display:block;} /* makes IE5 & 5.5 accept the padding on the link */
* html div#sidebar1 a {display:block;} /* makes IE5 & 5.5 accept the padding on the link */
			/* this was originally just * html a - and caused formating problems in text including links */
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#listmenu ul li ul {
	border-top:1px solid #069;
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* end of hack zone */
/* END OF LIST-BASED MENU */