﻿/* Dropdown Button */
.dropbtn {
    background-color:#001f5b;
    color: white;
    font-size: 14px;
    border: none;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 20px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #68757f;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {color: white}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #001133;
    color: white;
}


.dropbtn-light {
    background-color: #68757f;
    color: white;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-light-content {
    background-color: #68757f;
}

/* Links inside the dropdown */
    .dropdown-light-content a {
        color: #192857;
    }

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #394146;
    color: white;
}


/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown-light:hover .dropbtn {
    background-color: #394146;
    color: white;
}



/* nativation styles */

.navbar-default .navbar-link {
    color: white;
}
.navbar-inverse {
    background-color: #001f5b;
    color: white;
    margin: 0;
}


.navbar-inverse .navbar-nav > li > a {
    color: white;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: white;
    background-color: #001133;
}


.navbar-custom {
    background-color:#68757f;
    border-width:0;
    color: white;
    margin:0;
}

img.resize {
    width:250px;
    height:auto;
}

#adminnavbar {
    float: left;
    /*padding: 10px;*/
    width: 100%;
    height: auto;
    background-color: #68757f;
    color: #192857;
}

#adminnavbar a {
    color: white;
    background-color: #68757f;
    text-decoration: none;
    }

#adminnavbar a:hover {
    background-color: #394146;
    color: white;
}

body {
    padding-top:40px;
}

fieldset {
    padding-top: 20px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    border: 1px solid #666;
    border-radius: 8px;
    box-shadow: 0 0 10px #666;
}

legend {
    float: left;
    margin-top: -20px;
    /*margin-left: 10px;*/
}

legend + * {
    clear: both;
}