﻿ /*MODIFYING BOOTSRTAP DEFAULT COLORS*/

        .btn-primary,
        .btn-primary:hover,
        .btn-primary:active,
        .btn-primary:visited,
        .btn-primary:focus,
        .dropdown-menu,
        .dropdown-menu:hover,
        .dropdown-menu:active,
        .dropdown-menu:visited,
        .dropdown-menu:focus {
            background-color: #333;
            border-color: #333;
        }

        .dropdown-toggle[aria-expanded="true"],
        .li {
            background: #333 !important;
            /*color:#333 !important;*/
        }

        .dropdown-menu > li > a {
            color: #fff;
        }
        /*color of dropdown items in menu*/

        a {
            color: #962d22;
        }
            /*all links should be red*/
            a:hover, a:focus {
                color: #e59550;
            }

        /*.panel-body {background:#bec0c6;} light grey color*/

        /*give the nav menu items space once screen resizes*/
        .nav-btn {
            margin: 10px 10px;
        }

        .navbar {
            margin: 0px;}

        /*END MODIFY*/