/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}
body {
    /* Margin bottom by footer height */
    margin-bottom: 100px;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 100px;
    color:#f89924;
    background: #fff; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left,#fff,rgb(0,76,105)); /*Safari 5.1-6*/
    background: -o-linear-gradient(right,#fff,rgb(0,76,105)); /*Opera 11.1-12*/
    background: -moz-linear-gradient(right,#fff,rgb(0,76,105)); /*Fx 3.6-15*/
    background: linear-gradient(to right,#fff, rgb(0,76,105)); /*Standard*/
}
.footer > .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
}
.footer a {
    color:#fff;
}
/*----*/
.navbar {
    height:100px;
    line-height:100px;
    /*background-color: rgba(248,153,36,0.5);*/
    background: #fff; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left,#fff,rgb(248,153,36)); /*Safari 5.1-6*/
    background: -o-linear-gradient(right,#fff,rgb(248,153,36)); /*Opera 11.1-12*/
    background: -moz-linear-gradient(right,#fff,rgb(248,153,36)); /*Fx 3.6-15*/
    background: linear-gradient(to right, #fff, rgb(248,153,36)); /*Standard*/

}
.navbar .navbar-nav > li > a {
    color: #004c69;
    font-family: 'Open Sans', sans-serif;
    font-size: 12pt;
    font-weight: bold;
}
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus,
.navbar .navbar-nav > li > a.active {
    color: #f89924;
    background-color: rgb(0,76,105);
}
.navbar-nav li a {
    line-height: 100px;
    height: 100px;
    padding-top: 0;
}

.btn-darkblue {
    background-color: #004c69;
    color: #fff;
}
.btn-darkblue:hover {
    background-color: #007fa1;
    color: #fff;
}
.btn-orange {
    background-color: #f89924;
    color: #fff;
}
.btn-orange:hover {
    background-color: #e78724;
    color: #fff;
}
.modal-header {
    background-color: #f89924;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.modal-footer {
    background-color: #004c69;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-bottom-radius: 5px;
    border-top-bottom-radius: 5px;
}
.btn-circle {
    background-color: #f89924;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 5px 0;
    font-size: 20px;
    line-height: 1;
    border-radius: 15px;
}