﻿body, html {
    padding: 0;
    margin: 0; /*background-color: #26619c;*/ /*background-color:#7b7b7b;*/
    background-color: ivory;
}

/*ADMIN MASTERPAGE*/

/*HEADER*/

.header {
    width: 230px;
    height: 100%;
    background-color: #542120;
    float: left;
    position: fixed;
}

.logo-box {
    margin-left: auto;
    margin-right: auto;
}

.header-box {
    line-height: 1.1;
    width: 227px;
    text-align: center;
    margin-top: 10px;
}

.header-top-text {
    font-family: 'Oswald';
    font-size: 30px;
    padding: 5px;
    width: 216px;
    color: white;
    border: 2px solid white;
}

.nav-box {
    margin-top: 20px;
    width: 230px;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #542120;
}

ul {
    list-style-type: none;
    padding: 0;
    /*overflow: hidden;*/
    margin: 0;
    width: 100%
}

li {
    float: left;
    width: 100%;
}

    li a {
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: bold;
        display: inline-block;
        color: white;
        text-align: left;
        width: 100%;
        text-decoration: none;
        width:190px;
        padding: 18px 20px;
        font-size: 14px;
        letter-spacing: 3px;
    }

        li a:hover:not(.active) { /*text-decoration: underline*/
            background-color: #632f2e;
            color: yellow;
            font-weight: bold;
        }

/*DROPDOWN*/
.dropbtn {
  width:190px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  color:#632f2e;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-bottom-right-radius:8px;border:1px solid #fff;
}

.dropdown-content a {
  width: 150px;
  color: #632f2e;
  padding: 6px 14px;
  text-decoration: none;
  display: block;letter-spacing:1px;
}

.dropdown-content a:hover {background-color: #542120;border-bottom-right-radius:8px;}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color:#632f2e;}


/*HEADER*/