﻿/********************************* Formatting ******************/
ul#devMenu.LeftRight, ul#devMenu.UpDown /*Top Level Menu Style*/
{
    border: 0px solid #999999; 
    margin: 0px;
    list-style: none; 
    padding: 1px; 
    background-color: #FFFFFF; 
    display: block; 
}
ul#devMenu.LeftRight /*Top level Menu Width Horizontal Menu*/
{
    width: auto; 
}
ul#devMenu.UpDown  /*Top level Menu Width Verticle Menu*/
{
    width: 120px; 
}
ul#devMenu.UpDown a, ul#devMenu.LeftRight a /* Top Level Link Formatting*/
{
    display: block;
    vertical-align: middle;
    background-color: #FFFFFF;
    border: 0px solid #FFFFFF;
    text-align: center;
    text-decoration: none;
    padding: 3px;
    font: normal 14px arial;
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    padding: 5px 10px 5px 10px;
    text-align: left;
}
ul#devMenu.UpDown li:hover > a, ul#devMenu.UpDown li a:hover, ul#devMenu.LeftRight li:hover > a, ul#devMenu.LeftRight li a:hover
{
    background-color: #CCCCCC;
    color: #000000;
    cursor: pointer;
}
ul#devMenu.UpDown ul, ul#devMenu.LeftRight ul /*Sub Level Menu Style*/
{
    margin: 0px;
    list-style: none;
    background-color: #FFFFFF;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    padding: 4px;
    cursor: pointer;
}
ul#devMenu.UpDown ul li, ul#devMenu.LeftRight ul li /*Sub Level Menu Item Style*/
{
    margin: 0px;
    width: 180px; /*specify width for all to be the same or Auto*/
}
ul#devMenu.UpDown ul a, ul#devMenu.LeftRight ul a /* Sub Level Link Formatting*/
{
    display: block;
    vertical-align: middle;
    background-color: #FFFFFF;
    border: 0px none #6655FF;
    text-align: left;
    text-decoration: none;
    padding: 3px;
    font: normal 12px arial;
    color: black;
    text-decoration: none;
    cursor: pointer;
}
ul#devMenu.UpDown ul li:hover > a, ul#devMenu.UpDown ul li a:hover, ul#devMenu.LeftRight ul li:hover > a, ul#devMenu.LeftRight ul li a:hover /*Sub Menu Item Hover Format */
{
    background-color: #CCCCCC;
    color: black;
}
/********************************* /Formatting ******************/
/********************************* Menu Positioning *************/
ul#devMenu.UpDown li /*Top Level Menu Item Width*/
{
    width: 100%; /*specify width for all to be the same or Auto*/
}
ul#devMenu.LeftRight li /*Top Level Menu Item Width*/
{
    width: auto; /*specify width for all to be the same or Auto*/

}
ul#devMenu.UpDown ul /*Position of sub menu*/
{
    position: absolute;
    left: 98%;
    top: -1px;
}
ul#devMenu.LeftRight ul /*Position of sub menu*/
{
    position: absolute;
    left: -2px;
    top: 98%;
}
ul#devMenu.UpDown ul ul, ul#devMenu.LeftRight ul ul /*Position of Sub Sub menu*/
{
    position: absolute;
    left: 98%;
    top: -2px;
}
ul#devMenu.LeftRight li, ul#devMenu.UpDown li /*Top Level Menu Item Spacing*/
{
    display: block;
    margin: 0 1px 0 0;
    font-size: 0;
    float: left;
}
ul#devMenu.UpDown ul li, ul#devMenu.LeftRight ul li /*Sub Menu Item Spacing*/
{
    margin: 0 0 1px;
    float: none;
}
/********************************* /Menu Positioning ************/
/********************************* SCRIPT ***********************/
ul#devMenu ul /*"Script"*/
{
    display: none;
}
ul#devMenu li:hover > * /*"Script"*/
{
    display: block;
}
ul#devMenu li:hover /*"Script"*/
{
    position: relative;
}
/********************************* /SCRIPT ***********************/

