.header-fixed
{
    background-color: #035671;
    box-shadow: 0 1px 1px #ccc; /*padding: 20px 40px;*/
    padding: 5px 5px;
    height: 50px;
    color: #ffffff;
    box-sizing: border-box;
    top: -100px;
    -webkit-transition: top 0.3s;
    transition: top 0.3s;
}

.header-fixed .header-limiter
{
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
}

/*	The header placeholder. It is displayed when the header is fixed to the top of the
	browser window, in order to prevent the content of the page from jumping up. */

.header-fixed-placeholder
{
    height: 80px;
    display: none;
}

/* Logo */

.header-fixed .header-limiter h1
{
    float: left;
    font: normal 28px Cookie, Arial, Helvetica, sans-serif;
    line-height: 40px;
    margin: 0;
}

.header-fixed .header-limiter h1 span
{
    color: #5383d3;
}

/* The navigation links */

.header-fixed .header-limiter a
{
    color: #ffffff;
    text-decoration: none;
}

.header-fixed .header-limiter nav
{
    font: 16px Georgia, "Times New Roman" , Times, serif;
    line-height: 40px;
    float: right;
}

.header-fixed .header-limiter nav a
{
    display: inline-block;
    padding: 0 5px;
    text-decoration: none;
    color: #ffffff;
    opacity: 0.9;
}

.header-fixed .header-limiter nav a:hover
{
    color: #ffa300;
    opacity: 1;
}
.header-fixed .header-limiter nav a.selected
{
    color: #608bd2;
    pointer-events: none;
    opacity: 1;
}

/* Fixed version of the header */

body.fixed .header-fixed
{
    padding: 10px 40px;
    height: 50px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

body.fixed .header-fixed-placeholder
{
    display: block;
}

body.fixed .header-fixed .header-limiter h1
{
    font-size: 24px;
    line-height: 30px;
}

body.fixed .header-fixed .header-limiter nav
{
    line-height: 28px;
    font-size: 13px;
}


/* Making the header responsive */

@media all and (max-width: 600px)
{

    .header-fixed
    {
        padding: 20px 0; /* height: 75px;*/
        height: auto;
    }

    .header-fixed .header-limiter h1
    {
        float: none;
        margin: -8px 0 10px;
        text-align: center;
        font-size: 24px;
        line-height: 1;
    }

    .header-fixed .header-limiter nav
    {
        line-height: 1;
        float: none;
    }

    .header-fixed .header-limiter nav a
    {
        font-size: 13px;
    }

    body.fixed .header-fixed
    {
        display: none;
    }

}

/*
	 We are clearing the body's margin and padding, so that the header fits properly.
	 We are also adding a height to demonstrate the scrolling behavior. You can remove
	 these styles.
 */

body
{
    margin: 0;
    padding: 0; /* height: 1500px; */
}

/*  Custom Css For Second Header Start*/
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus
{
    /*color: #ffa300; /*Sets the text hover color on navbar*/
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus
{
    /*color: white; /*BACKGROUND color for active*/ /*background-color: #030033;*/
}

.navbar-default
{
    /*background-color: #0f006f;*/ /*border-color: #030033;*/
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus
{
    /* color: #262626;*/ /* text-decoration: none;*/ /* background-color: #66CCFF;*/ /*change color of links in drop down here*/
    background-color: #ffa300;
}

.nav > li > a:hover, .nav > li > a:focus
{
    text-decoration: none;
    background-color: red; /*Change rollover cell color here*/
    border: 0;
    outline: none;
}


.navbar-default .navbar-nav > li > a
{
    color: #777; /*Change active text color here*/
    font-family: 'Georgia' ,Times New Roman,Serif;
}

.navbar-default .navbar-nav .open .dropdown-menu > li > a, .navbar-default .navbar-nav .open .dropdown-menu
{
    font-family: 'Georgia' ,Times New Roman,Serif;
}
/*  Custom Css For Second Header Start*/
