﻿.SlideOut ul.topnav
{
    list-style: none;
    padding: 0;
    margin: 0;
}

    .SlideOut ul.topnav li
    {
        float: left;
        position: relative; /*--Declare X and Y axis base for sub navigation--*/
        cursor: pointer;
        list-style-type: none;
        padding: 0;
        margin: 0;
        text-align: left;
        height: 100%;
    }

        .SlideOut ul.topnav li a
        {
            display: block;
            text-decoration: none;
            float: right;
        }

        .SlideOut ul.topnav li:hover a
        {
            color: #FFFFFF;
        }

        .SlideOut ul.topnav li span
        {
            float: right;
            height: 0;
            position: relative;
            right: 5px;
            top: -15px;
        }

.SlideOut .subnav
{
    list-style: none;
    position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
    margin: 0;
    padding: 0;
    display: none;
    float: left;
}

    .SlideOut .subnav li
    {
        margin: 0;
        padding: 0;
        clear: both;
        width: 100%;
    }

        .SlideOut .subnav li a
        {
        }
