@charset "UTF-8";

/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
	width: 100%;
	
/* added from navButton css (NOT NEEDED except overflow:hidden)*/
	/*margin-left: 0px;*/
	/*overflow: hidden; See: http://www.quirksmode.org/css/clearing.html (this has been removed to allow the sub-menus to show*/
	/*width: 100%;*/
	/*background-color: #e1e1b0;  light gold */
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	/*width: 8em;*/
	width: auto;
	float: right;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	/*width: 8.2em;*/
	width: auto;
	width: 204px;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 33px;
	top: 72px\9;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 8.2em;
	width: 15em;
	width: 204px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	/*border: 1px solid #CCC;*/
	border: none;
}
/* Menu items are a light gray block with padding and no text decoration THIS IS THE BUTTON ITSELF THAT WE NEED TO WORK ON PUTTING BG IMAGE ON*/
ul.MenuBarHorizontal a
{
	/*display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	padding: 0.5em 2.3em;
	color: #333;
	text-decoration: none;*/
/*added*/
	background-color: transparent;
	background-image: url(../images/designImages/buttons/kkNavButtons_left.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	float: left; /* Change 12px as desired */
	line-height: 28px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 23px) */
	height: 36px; /* Height of button background height */
	padding-left: 36px; /* Width of left menu image */
	text-decoration: none;
}
ul.MenuBarHorizontal a, ul.MenuBarHorizontal a:link, ul.MenuBarHorizontal a:visited, ul.MenuBarHorizontal a:active {
	color: white;
}

/* the item below added to hold right side of BG image*/
ul.MenuBarHorizontal a span
{
	/*display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	padding: 0.5em 2.3em;
	color: #333;
	text-decoration: none;*/
/*added*/
	background-color: transparent;
	background-image: url(../images/designImages/buttons/kkNavButtons_right.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	display: block;
	padding: 4px 36px 4px 0; /*Set 9px below to match value of 'padding-left' value above*/
}
/* Menu items that have mouse over or focus have a blue background and white text THIS IS THE HOVER STATE OF EACH BUTTON THAT WE NEED TO WORK ON PUTTING BG IMAGE ON */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom left;
	background-position: left -36px;
	text-decoration: none;
	border: none;
}

/*the below added to hold span right side of image*/
ul.MenuBarHorizontal a:hover span, ul.MenuBarHorizontal a:focus span
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom right;
	background-position: right -36px;
	color: white;
}


/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text THIS IS THE HOVER STATE OF EACH BUTTON THAT WE NEED TO WORK ON PUTTING BG IMAGE ON */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom left;
	background-position: left -36px;
	text-decoration: none;
	border: none;
}

/* the below added to hold span right side of bg image*/
ul.MenuBarHorizontal a.MenuBarItemHover span, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover span, ul.MenuBarHorizontal a.MenuBarSubmenuVisible span
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom right;
	background-position: right -36px;
	color: white;
}




/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -72px;
}
ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -108px;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -147px;
}
ul.MenuBarHorizontal ul a:hover.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -183px;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover span
{
	/*background-image: url(SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -108px;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover span
{
	/*background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -183px;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		f\loat: right;
		background: #FFF;
	}
}
/*******************************************************************************/
ul.MenuBarHorizontal li ul a {
	width: 190px;
	/*background-color: transparent;
	background-image: url(../../images/designImages/buttons/kkNavButtons_left.jpg);
	background-repeat: no-repeat;*/
	background-position: left -3px;
	/*display: block;
	float: left;  Change 12px as desired */
	line-height: 22px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 23px) */
	height: 30px; /* Height of button background height */
	/*padding-left: 36px;  Width of left menu image 
	text-decoration: none;*/
}
ul.MenuBarHorizontal li ul a span {
	/*background-color: transparent;
	background-image: url(../../images/designImages/buttons/kkNavButtons_right.jpg);
	background-repeat: no-repeat;*/
	background-position: right -3px;
	/*display: block;
	padding: 4px 36px 4px 0; Set 9px below to match value of 'padding-left' value above*/
}
ul.MenuBarHorizontal li ul a:hover, ul.MenuBarHorizontal li ul a:focus {
	background-position: left -39px;
	text-decoration: none;
	border: none;
}
ul.MenuBarHorizontal li ul a:hover span, ul.MenuBarHorizontal li ul a:focus span
{
	background-position: right -39px;
	color: white;
}


ul.MenuBarHorizontal li ul a.MenuBarItemHover, ul.MenuBarHorizontal li ul a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li ul a.MenuBarSubmenuVisible
{
	background-position: left -39px;
	text-decoration: none;
	border: none;
}

ul.MenuBarHorizontal li ul a.MenuBarItemHover span, /*ul.MenuBarHorizontal li ul a.MenuBarItemSubmenuHover span, */ul.MenuBarHorizontal li ul a.MenuBarSubmenuVisible span
{
	background-position: right -39px;
	color: white;
}


/********************************************************/

/*Current Page button styling*/

/********************************************************/
ul.MenuBarHorizontal a#currentPage
{
	/*display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	padding: 0.5em 2.3em;
	color: #333;
	text-decoration: none;*/
/*added*/
	background-color: transparent;
	background-image: url(../images/designImages/buttons/kkNavButtons_leftActive.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	float: left; /* Change 12px as desired */
	line-height: 28px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 23px) */
	height: 36px; /* Height of button background height */
	padding-left: 36px; /* Width of left menu image */
	text-decoration: none;
	font-size: 114%;
}
ul.MenuBarHorizontal a#currentPage, ul.MenuBarHorizontal a#currentPage:link, ul.MenuBarHorizontal a#currentPage:visited, ul.MenuBarHorizontal a#currentPage:active {
	color: #333;
}

/* the item below added to hold right side of BG image*/
ul.MenuBarHorizontal a#currentPage span
{
	/*display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	padding: 0.5em 2.3em;
	color: #333;
	text-decoration: none;*/
/*added*/
	background-color: transparent;
	background-image: url(../images/designImages/buttons/kkNavButtons_rightActive.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	display: block;
	padding: 4px 36px 4px 0; /*Set 9px below to match value of 'padding-left' value above*/
}
ul.MenuBarHorizontal a#currentPage:hover, ul.MenuBarHorizontal a#currentPage:focus
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom left;
	background-position: left -36px;
	text-decoration: none;
	border: none;
}

/*the below added to hold span right side of image*/
ul.MenuBarHorizontal a#currentPage:hover span, ul.MenuBarHorizontal a#currentPage:focus span
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom right;
	background-position: right -36px;
	color: #333;
}


/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text THIS IS THE HOVER STATE OF EACH BUTTON THAT WE NEED TO WORK ON PUTTING BG IMAGE ON */
ul.MenuBarHorizontal a#currentPage.MenuBarItemHover, ul.MenuBarHorizontal a#currentPage.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a#currentPage.MenuBarSubmenuVisible
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom left;
	background-position: left -36px;
	text-decoration: none;
	border: none;
}

/* the below added to hold span right side of bg image*/
ul.MenuBarHorizontal a#currentPage.MenuBarItemHover span, ul.MenuBarHorizontal a#currentPage.MenuBarItemSubmenuHover span, ul.MenuBarHorizontal a#currentPage.MenuBarSubmenuVisible span
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom right;
	background-position: right -36px;
	color: #333;
}
/*******************************************************************************

CURRENT PAGE - SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a#currentPage.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -73px;
}
ul.MenuBarHorizontal a#currentPage:hover.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -109px;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a#currentPage.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -147px;
}
ul.MenuBarHorizontal ul a#currentPage:hover.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -183px;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a#currentPage.MenuBarItemSubmenuHover span
{
	/*background-image: url(SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -109px;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a#currentPage.MenuBarItemSubmenuHover span
{
	/*background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -183px;
}






/********************************************************/

/*Book Now button styling - RED */

/********************************************************/
/* Menu items are a light gray block with padding and no text decoration THIS IS THE BUTTON ITSELF THAT WE NEED TO WORK ON PUTTING BG IMAGE ON*/
ul.MenuBarHorizontal a#bookNow
{
	/*display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	padding: 0.5em 2.3em;
	color: #333;
	text-decoration: none;*/
/*added*/
	background-color: transparent;
	background-image: url(../images/designImages/buttons/kkNavButtons_left_bookNow.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	float: left; /* Change 12px as desired */
	line-height: 28px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 23px) */
	height: 36px; /* Height of button background height */
	padding-left: 36px; /* Width of left menu image */
	text-decoration: none;
}
ul.MenuBarHorizontal a#bookNow, ul.MenuBarHorizontal a#bookNow:link, ul.MenuBarHorizontal a#bookNow:visited, ul.MenuBarHorizontal a#bookNow:active {
	color: white;
}

/* the item below added to hold right side of BG image*/
ul.MenuBarHorizontal a#bookNow span
{
	/*display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	padding: 0.5em 2.3em;
	color: #333;
	text-decoration: none;*/
/*added*/
	background-color: transparent;
	background-image: url(../images/designImages/buttons/kkNavButtons_right_BookNow.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	display: block;
	padding: 4px 36px 4px 0; /*Set 9px below to match value of 'padding-left' value above*/
}
/* Menu items that have mouse over or focus have a blue background and white text THIS IS THE HOVER STATE OF EACH BUTTON THAT WE NEED TO WORK ON PUTTING BG IMAGE ON */
ul.MenuBarHorizontal a#bookNow:hover, ul.MenuBarHorizontal a#bookNow:focus
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom left;
	background-position: left -36px;
	text-decoration: none;
	border: none;
}

/*the below added to hold span right side of image*/
ul.MenuBarHorizontal a#bookNow:hover span, ul.MenuBarHorizontal a#bookNow:focus span
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom right;
	background-position: right -36px;
	color: white;
}


/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text THIS IS THE HOVER STATE OF EACH BUTTON THAT WE NEED TO WORK ON PUTTING BG IMAGE ON */
ul.MenuBarHorizontal a#bookNow.MenuBarItemHover, ul.MenuBarHorizontal a#bookNow.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a#bookNow.MenuBarSubmenuVisible
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom left;
	background-position: left -36px;
	text-decoration: none;
	border: none;
}

/* the below added to hold span right side of bg image*/
ul.MenuBarHorizontal a#bookNow.MenuBarItemHover span, ul.MenuBarHorizontal a#bookNow.MenuBarItemSubmenuHover span, ul.MenuBarHorizontal a#bookNow.MenuBarSubmenuVisible span
{
	/*background-color: #33C;
	color: #FFF;*/
/*added*/
	background-position: bottom right;
	background-position: right -36px;
	color: white;
}

/*******************************************************************************

 BOOK NOW (RED) - SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a#bookNow.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -72px;
}
ul.MenuBarHorizontal a#bookNow:hover.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -108px;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a#bookNow.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -147px;
}
ul.MenuBarHorizontal ul a#bookNow:hover.MenuBarItemSubmenu span
{
	/*background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -183px;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a#bookNow.MenuBarItemSubmenuHover span
{
	/*background-image: url(SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -108px;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a#bookNow.MenuBarItemSubmenuHover span
{
	/*background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;*/
	background-position: right -183px;
}








/* here */
ul.MenuBarHorizontal li ul a#bookNow {
	width: 190px;
	/*background-color: transparent;
	background-image: url(../../images/designImages/buttons/kkNavButtons_left.jpg);
	background-repeat: no-repeat;*/
	background-position: left -3px;
	/*display: block;
	float: left;  Change 12px as desired */
	line-height: 22px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 23px) */
	height: 30px; /* Height of button background height */
	/*padding-left: 36px;  Width of left menu image 
	text-decoration: none;*/
}
ul.MenuBarHorizontal li ul a#bookNow span {
	/*background-color: transparent;
	background-image: url(../../images/designImages/buttons/kkNavButtons_right.jpg);
	background-repeat: no-repeat;*/
	background-position: right -3px;
	/*display: block;
	padding: 4px 36px 4px 0; Set 9px below to match value of 'padding-left' value above*/
}
ul.MenuBarHorizontal li ul a#bookNow:hover, ul.MenuBarHorizontal li ul a#bookNow:focus {
	background-position: left -39px;
	text-decoration: none;
	border: none;
}
ul.MenuBarHorizontal li ul a#bookNow:hover span, ul.MenuBarHorizontal li ul a#bookNow:focus span
{
	background-position: right -39px;
	color: white;
}


ul.MenuBarHorizontal li ul a#bookNow.MenuBarItemHover, ul.MenuBarHorizontal li ul a#bookNow.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li ul a#bookNow.MenuBarSubmenuVisible
{
	background-position: left -39px;
	text-decoration: none;
	border: none;
}

ul.MenuBarHorizontal li ul a#bookNow.MenuBarItemHover span, /*ul.MenuBarHorizontal li ul a.MenuBarItemSubmenuHover span, */ul.MenuBarHorizontal li ul a#bookNow.MenuBarSubmenuVisible span
{
	background-position: right -39px;
	color: white;
}

