/* ================================================= */
/* These changes override the defaults in 
   /includes/SpryAssets/SpryMenuBarVertical.css      */


/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical
{
        width: 180px;

}

/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarVertical li
{
        width: 180px;
		
}

ul.MenuBarVertical ul
{
        width: 180px;
		
        
}

/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
        width: 180px;

}


/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a, ul.MenuBarVertical a:visited 
{
        padding:0;
        margin:0 0 7px 0;
        text-decoration:none;
		color: #141B4D;
		display: block;

}



/* The current item  */
ul.MenuBarVertical li.active
{
        
		font-weight: bold;
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
        color: #141B4D;
		background-color:#FFF;
		text-decoration:underline;
}
/* 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
{
        color: #141B4D;
		background-color:#FFF;
}

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
        border: 0px;
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
        border: 1px solid #CCC;
}

/* added a first item class to add the border to the top of the 1st nav item */




ul.MenuBarVertical ul.MenuBarSubmenuVisible {
	background-color:#FFF;
}


ul.MenuBarSubmenuVisible a, ul.MenuBarSubmenuVisible a:visited {
        padding:5px 5px 0px 5px;
		font-weight:normal;
}

