﻿@charset "utf-8";
/* CSS Document */
.ddsmoothmenu {
    width: 100%;
    /* font-family: calibri, Arial, Verdana;  Comments By Hiren */
    font-family: 'Times New Roman';
    /* font-size: 12px; */ /*background of menu bar (default state) Comment By Hiren */
    font-size: 16px !important;
    margin: 0 auto;
    padding: 0;
    float: left;
}

    .ddsmoothmenu ul {
        z-index: 1000;
        margin: 0px;
        padding: 0;
        width: 100%;
    }

        /*Top level list items*/
        .ddsmoothmenu ul li {
            height: 48px;
            position: relative;
            background: none;
            float: left;
            list-style: none;
            bottom: 0;
            padding: 0;
            margin: 0px 0;
            font-size:25px;

        }

            /*Top level menu link items style*/
            .ddsmoothmenu ul li a {
                /*display: block; background of menu items (default state)*/
                /* font-family: calibri, Arial, Verdana;  Comments By Hiren */
                font-family: Arial;
                font-size: 16px !important; /*Add By Hiren Patel*/
                font-weight: normal;
                color: #fff;
                float: left;
                /*  padding: 11px 30px 14px 30px; */
                padding: 15px 10px 5px 0px;
                text-decoration: none;
            }

            .ddsmoothmenu ul li:hover {
                cursor: pointer;
                color: white;
            }

            .ddsmoothmenu ul li a:hover {
                color: #fff;
                /*	background-color: #ca4b11;	*/ /*Comment By Hiren Patel */
                /*background-color: #0B62A4;*/
                background-color: #DF642B;
                
                
            }

            * html .ddsmoothmenu ul li a { /*IE6 hack to get sub menu links to behave correctly*/
                display: inline-block;
            }
                /*
.ddsmoothmenu ul li a:link{
color:#000;
}

.ddsmoothmenu ul li a:visited{
color:#000;
}
*/

                .ddsmoothmenu ul li a.selected { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
                    color: #fff;
                    /*	background-color: #ca4b11;	*/ /*Comment By Hiren Patel */
                    background-color: #0B62A4;
                    
                    
                }

                .ddsmoothmenu ul li a.active {
                    color: #fff;
                    /*	background-color: #ca4b11;	*/ /*Comment By Hiren Patel */
                    background-color: #0B62A4;
                }


            /*1st sub level menu*/
            .ddsmoothmenu ul li ul {
                position: absolute;
                margin: 0;
                padding: 10px 0;
                display: none; /*collapse all sub menus to begin with*/
                visibility: hidden;
                background-image: none;
                height: auto;
                min-width: 200px;
                top: 47px !important;
                /*	background-color: #ca4b11;	*/ /*Comment By Hiren Patel */
                background-color: #0B62A4;
            }

                /*Sub level menu list items (undo style from Top level List Items)*/
                .ddsmoothmenu ul li ul li {
                    display: list-item;
                    float: none;
                    margin: 0;
                    padding: 0;
                    color: #FFF;
                    height: auto;
                    font-size: 14px !important;
                    font-weight: normal;
                    border: none;
                }

                    /*All subsequent sub menu levels vertical offset after 1st level sub menu */
                    .ddsmoothmenu ul li ul li ul {
                        top: 0;
                    }

                    /* Sub level menu links style */
                    .ddsmoothmenu ul li ul li a {
                        padding: 10px 0px 10px 20px;
                        background-image: none;
                        color: #fff;
                        font-size: 14px !important;
                        font-weight: normal;
                        text-transform: none;
                        border-radius: 0;
                        display: block;
                        float: none;
                    }

                        .ddsmoothmenu ul li ul li a:hover {
                            /*  background: #DF642B; Comments By Hiren */
                            /*background: #1f6cbe;*/
                            background: #DF642B;
                            color: #fff;
                            text-shadow: none;
                            border-radius: 0;
                            display: block;
                        }

                        .ddsmoothmenu ul li ul li a.selected {
                            /*  background: #DF642B; Comments By Hiren */
                            background: #1f6cbe;
                            color: #fff;
                            text-shadow: none;
                            border-radius: 0;
                        }
                    /* Sub-Sub Level Menu */
                    .ddsmoothmenu ul li ul li ul {
                        position: absolute;
                        margin: 0;
                        padding: 10px 0;
                        display: none; /*collapse all sub menus to begin with*/
                        visibility: hidden;
                        background-image: none;
                        height: auto;
                        min-width: 150px;
                        top: 0px !important;
                        /* background-color: #ca4b11;  Comments by Hiren Patel */
                        background-color: #0B62A4;
                    }
                        /* Sub level menu links style */
                        .ddsmoothmenu ul li ul li ul li {
                            display: list-item;
                            float: none;
                            margin: 0;
                            padding: 0;
                            color: #FFF;
                            height: auto;
                            font-size: 14px !important;
                            font-weight: normal;
                            border: none;
                        }

                            .ddsmoothmenu ul li ul li ul li a {
                                padding: 10px 0px 10px 20px;
                                background-image: none;
                                color: #fff;
                                font-size: 14px !important;
                                font-weight: normal;
                                text-transform: none;
                                border-radius: 0;
                                display: block;
                                float: none;
                            }

/* Holly Hack for IE \*/
* html .ddsmoothmenu {
    height: 1%;
}
/*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */
.downarrowclass {
    position: absolute;
    background-image: none;
    top: 14px;
    right: 9px;
}

.rightarrowclass {
    position: absolute;
    background-image: none;
    top: 10px;
    right: 9px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow { /*shadow for NON CSS3 capable browsers*/
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background: silver;
    z-index: 100;
}

.toplevelshadow { /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
    opacity: 0.8;
}
