@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 {
    cursor: default;
    font-size: 100%;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    width: auto;
}
/* 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 {
    margin: 0px;
    padding: 0px;
    z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */

ul.MenuBarHorizontal li {
    cursor: pointer;
    float: left;
    font-size: 100%;
    height: 30px;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    position: relative;
    text-align: left;
    width: 110px;
}
/* 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 {
    cursor: default;
    font-size: 100%;
    left: -1000em;
    margin-top: 0px;
    padding-top: 0px;
    position: absolute;
    width: 110px;
    z-index: 1020;
}
/* 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: auto;
}

/* 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;
    margin: 0px;
    padding: 0px;
    top: auto;
}

ul.MenuBarHorizontal ui { border: none; }

ul.MenuBarHorizontal ul { border: none; }

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Menu items are a light gray block with padding and no text decoration */

ul.MenuBarHorizontal a {
    color: #333;
    cursor: pointer;
    display: block;
    margin: 0px;
    padding: 0px;
    text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */

ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {
    color: #FFF;
    margin: 0px;
    padding: 0px;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */

ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {
    color: #FFF;
    margin: 0px;
    padding: 0px;
}