﻿     .maindiv {
                min-height: 39px;
                background-color: #286090;
                background: -webkit-linear-gradient(#4298e0, #286090); /* For Safari 5.1 to 6.0 */
                background: -o-linear-gradient(#4298e0, #286090); /* For Opera 11.1 to 12.0 */
                background: -moz-linear-gradient(#4298e0, #286090); /* For Firefox 3.6 to 15 */
                background: linear-gradient(#4298e0, #286090); /* Standard syntax (must be last) */
                padding-left: 50px;
            }

            .dropdown {
                padding-top: 10px;
                position: relative;
                display: inline-block;
                z-index: 997;
            }

            .dropbtn {
                /*background-color: #fff;*/
                color: #fff;
                padding: 10px;
                /*border-bottom: 5px solid #c5e1fd;*/
                border-right: 0px;
                cursor: pointer;
                font-size: 10.5pt;
                text-decoration:none;
                border-left: 1px solid #225179;
                /*z-index:995;*/
            }

                .dropbtn:hover {
                    background-color: white;
                    color: #286090;
                    padding: 10px;
                    /*border-bottom: 5px solid #286090;*/
                    border-right: 0px;
                    cursor: pointer;
                    z-index: 996;
                     font-size: 10.5pt;
                     text-decoration:none;
                }

            .dropdown-content {
                top: 39px;
                display: none;
                position: absolute;
                background-color: #fff;
                min-width: 160px;
                box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
                border-left: 1px solid #e6e3e3;
                z-index: 998;
            }

                .dropdown-content a {
                    color: black;
                    padding: 12px 16px;
                    text-decoration: none;
                    display: block;
                    z-index: 1999;
                    border-bottom: 5px solid #fff;
                    font-size: 9pt;
                    min-width: 220px;
                }

                    .dropdown-content a:hover {
                        background-color: #f9f9f9;
                        border-bottom: 5px solid #286090;
                        font-size: 9pt;
                    }



            .dropdown:hover .dropdown-content {
                display: block;
            }

            .dropdown:hover .dropbtn {
                background-color: white;
                color: #286090;
                border-left: 1px solid #e6e3e3;
            }
       
            #sticky.stick {
                margin-top: 0 !important;
                position: fixed;
                top: 0;
                z-index: 10000;
                border-radius: 0 0 0.5em 0.5em;
            }