/*******************************************************************************

 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.MenuBarVertical
{
	float: left;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 170px;
	margin-top: 20px;
	margin-left:0;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

/* 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.MenuBarVertical li
{

	padding: 0;
	list-style-type: none;
	font-size: 100%;
	text-align: left;
	cursor: pointer;
	float: left;
}

/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-100em) */
ul.MenuBarVertical ul
{
	margin: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	position: absolute;
	top: auto;
	width: auto;
}
/* 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.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 39px;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	width: 300px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarVertical 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.MenuBarVertical ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: 0;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all but right side, as that is taken care of by the menu item link */
ul.MenuBarVertical ul
{
	border: 1px solid #FFFFFF;
}
/* Menu items are a light gray block with right border, padding, and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	padding: 0.25em 0.50em;
	color: #ffffff;
	text-decoration: none;
	font-family: verdana;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarvertical a:hover, ul.MenuBarVertical a:focus
{
	color: #000;
	text-decoration: none;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarvertical a.MenuBarItemSubmenuHover, ul.MenuBarvertical a.MenuBarSubmenuVisible
{
	background-color: #eef2f5;
	color: #24475d;
	text-decoration: none;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Main menu items are set to use a background image for normal and hover states */
ul.MenuBarVertical a.MenuBarItemprog
{
	background-image: url(../images/imagescss/menu/prog.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 170px;
	height: 38px;
	margin: 0;
	padding: 0;
}

ul.MenuBarVertical a:hover.MenuBarItemprog
{
	background-image: url(../images/imagescss/menu/prog.gif);
	background-repeat: no-repeat;
	background-position: 0 -38px;
	width: 170px;
	height: 38px;
	margin: 0;
	padding: 0;
}


ul.MenuBarVertical a.MenuBarItemhotel
{
	background-image: url(../images/imagescss/menu/hotel.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 170px;
	height: 40px;
	margin: 0;
	padding: 0;
}

ul.MenuBarVertical a:hover.MenuBarItemhotel
{
	background-image: url(../images/imagescss/menu/hotel.gif);
	background-repeat: no-repeat;
	background-position: 0 -40px;
	width: 170px;
	height: 40px;
	margin: 0;
	padding: 0;
}

ul.MenuBarVertical a.MenuBarItemSubmenu_photos
{
	background-image: url(../images/imagescss/menu/photos.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 170px;
	height: 39px;
	margin: 0;
	padding: 0;
}

ul.MenuBarVertical a:hover.MenuBarItemSubmenu_photos
{
	background-image: url(../images/imagescss/menu/photos.gif);
	background-repeat: no-repeat;
	background-position: 0 -39px;
	width: 170px;
	height: 39px;
	margin: 0;
	padding: 0;
}

ul.MenuBarVertical a.MenuBarItemSubmenu_videos
{
	background-image: url(../images/imagescss/menu/videos.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 170px;
	height: 37px;
	margin: 0;
	padding: 0;
}

ul.MenuBarVertical a:hover.MenuBarItemSubmenu_videos
{
	background-image: url(../images/imagescss/menu/videos.gif);
	background-repeat: no-repeat;
	background-position: 0 -37px;
	width: 170px;
	height: 37px;
	margin: 0;
	padding: 0;
}


span.hidden
{
	display: none;
}
