@charset "UTF-8";

/* SpryMenuBarVertical.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, a fixed width box with no margin or padding */
ul.MenuBarVertical
{
	margin: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	/*width: 8em;*/
	/*background-color: #6F0;*/
}

/* YK "content sub home/products/contact" background box image */
#sprynav_cs_home
{
	padding: 60px 8px 0px 9px; /*prendre en considération les valeurs width et/ou height*/
	width: 179px; /*prendre en considération les valeurs padding*/
	height: 312px; /*prendre en considération les valeurs padding, pe.ex. 320-60paddingtop=270*/
	background-image: url(../images/box_cs_home.jpg);
	background-repeat: no-repeat;
}
#sprynav_cs_products
{
	padding: 60px 8px 0px 9px; /*prendre en considération les valeurs width et/ou height*/
	width: 179px; /*prendre en considération les valeurs padding*/
	height: 352px; /*prendre en considération les valeurs padding, p.ex. 443-60paddingtop=352*/
	background-image: url(../images/box_cs_products.jpg);
	background-repeat: no-repeat;
}
#sprynav_cs_products-powersport
{
	padding: 60px 8px 0px 9px; /*prendre en considération les valeurs width et/ou height*/
	width: 179px; /*prendre en considération les valeurs padding*/
	height: 218px; /*prendre en considération les valeurs padding, p.ex. 443-60paddingtop=383*/
	background-image: url(../images/box_cs_products-powersport.jpg);
	background-repeat: no-repeat;
	margin-top: 135px;
}
#sprynav_cs_contact
{
	padding: 60px 8px 0px 9px; /*prendre en considération les valeurs width et/ou height*/
	width: 179px; /*prendre en considération les valeurs padding*/
	height: 218px; /*prendre en considération les valeurs padding, p.ex. 278-60paddingtop=218*/
	background-image: url(../images/box_cs_contact.jpg);
	background-repeat: no-repeat;
}
#sprynav_cs_techsupport
{
	padding: 60px 8px 0px 9px; /*prendre en considération les valeurs width et/ou height*/
	width: 179px; /*prendre en considération les valeurs padding*/
	height: 352px; /*prendre en considération les valeurs padding, pe.ex. 412-60paddingtop=352*/
	background-image: url(../images/box_cs_techsupport.jpg);
	background-repeat: no-repeat;
}
#sprynav_cs_maintenance
{
	padding: 60px 8px 0px 9px; /*prendre en considération les valeurs width et/ou height*/
	width: 179px; /*prendre en considération les valeurs padding*/
	height: 352px; /*prendre en considération les valeurs padding, p.ex. 278-60paddingtop=218*/
	background-image: url(../images/box_cs_maintenance.jpg);
	background-repeat: no-repeat;
}

/* 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 same fixed width as parent */
ul.MenuBarVertical li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	/*width: 8em;*/
	width: 100%;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul
{
	margin: -5% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 150px;
	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	width: 150px; /*idem to width in "ul.MenuBarVertical ul"*/
}

/* YK: Submenu with ID #TechSupport_Fox_OtherStuff_UL needs to have a 280px width to hold larger text!!! */
#TechSupport_Fox_WiderSubMenu_UL
{
	width: 280px;
}
/* YK: Menu item containers are same fixed width as parent */
#TechSupport_Fox_WiderSubMenu_UL li
{
	width: 280px;
}

/* YK: Submenu with ID #TechSupport_Fox_OtherStuff_UL needs to have a 280px width to hold larger text!!! */
#TechSupport_NoTubes_WiderSubMenu_UL
{
	width: 280px;
}
/* YK: Menu item containers are same fixed width as parent */
#TechSupport_NoTubes_WiderSubMenu_UL li
{
	width: 280px;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	/*border: 1px solid #CCC;*/
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
	border: 1px solid #CCC;
}
/* YK: white background for SubmenuVisisble */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	background-color: #FFF;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	/*background-color: #0F3;*/
	padding: 0.5em 0.75em 0.5em 2.2em;
	color: #333;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	text-decoration: none;
}

ul.MenuBarVertical li.UserData
{
	padding: 0.5em 0.75em 0.5em 2.2em;
}

ul.MenuBarVertical li.UserData p
{
	color: #999;
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color: #E7CFC2;
	color: #A86644;
}
/* 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: #E7CFC2;
	color: #A86644;
}

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

 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.MenuBarVertical a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* 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.MenuBarVertical a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

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

 YK SpryNav > Products > Logos: Have a logo in the LI background

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

/* YK bg logo fox */
#product_li_fox
{
	background-image: url(../images/logos/fox_small_bw.png);
	background-repeat: no-repeat;
	background-position: 20px 7px;
	padding-left: 80px;
}
#product_li_fox:hover
{
	background-image: url(../images/logos/fox_small.png);
}

/* YK bg logo notubes */
#product_li_notubes
{
	background-image: url(../images/logos/notubes_small_bw.png);
	background-repeat: no-repeat;
	background-position: 20px 6px;
	padding-left: 80px;
}
#product_li_notubes:hover
{
	background-image: url(../images/logos/notubes_small.png);
}

/* YK bg logo ravx */
#product_li_ravx
{
	background-image: url(../images/logos/ravx_small_bw.png);
	background-repeat: no-repeat;
	background-position: 20px 6px;
	padding-left: 80px;
}
#product_li_ravx:hover
{
	background-image: url(../images/logos/ravx_small.png);
}

/* YK bg logo xrd */
#product_li_xrd
{
	background-image: url(../images/logos/xrd_small_bw.png);
	background-repeat: no-repeat;
	background-position: 20px 6px;
	padding-left: 80px;
}
#product_li_xrd:hover
{
	background-image: url(../images/logos/xrd_small.png);
}

/* YK bg logo ked */
#product_li_ked
{
	background-image: url(../images/logos/ked_small_bw.png);
	background-repeat: no-repeat;
	background-position: 20px 6px;
	padding-left: 80px;
}
#product_li_ked:hover
{
	background-image: url(../images/logos/ked_small.png);
}

/* YK bg logo ebc */
#product_li_ebc
{
	background-image: url(../images/logos/ebc_small_bw.png);
	background-repeat: no-repeat;
	background-position: 20px 6px;
	padding-left: 80px;
}
#product_li_ebc:hover
{
	background-image: url(../images/logos/ebc_small.png);
}

/* YK bg logo rsp */
#product_li_rsp
{
	background-image: url(../images/logos/rsp_small_bw.png);
	background-repeat: no-repeat;
	background-position: 20px 6px;
	padding-left: 80px;
}
#product_li_rsp:hover
{
	background-image: url(../images/logos/rsp_small.png);
}

/* YK bg logo shannon */
#product_li_shannon
{
	background-image: url(../images/logos/shannon_small_bw.png);
	background-repeat: no-repeat;
	background-position: 20px 7px;
	padding-left: 80px;
}
#product_li_shannon:hover
{
	background-image: url(../images/logos/shannon_small.png);
}

/* YK bg logo tandems */
#product_li_tandems
{
	background-image: url(../images/logos/tandems_small_bw.png);
	background-repeat: no-repeat;
	background-position: 20px 6px;
	padding-left: 80px;
}
#product_li_tandems:hover
{
	background-image: url(../images/logos/tandems_small.png);
}

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

 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.MenuBarVertical 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.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		/*background: #FFF;*/
	}
}

