 /* style for the whole page */
*{
    margin:0;
    padding:0;
    border:0;
   
}
body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6em;
    color: black;
    background-color: #fff;
    overflow: auto;
}
a {
    text-decoration: none;
    transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    outline: none;
    color: #333;
}

 a:hover {
    text-decoration: none;
    color: #f1ce43;
 }

 hideme{
     opacity:0;
 }
 .clear{
     clear:both;
 }
 .container{
     width:1266px;
     overflow:auto;
     margin:0 auto;
 }
 
 /* Style for the navigation menu */
 #navbar {
    overflow: hidden;
    background-color: #fff;
    border-bottom: 1px solid #808080;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position: fixed;
    width: 100%;
    display: inline-block;
    /* padding-top: 10px; */
    /* padding-bottom: 10px; */
}

#navbar h1 {
    margin-left: 20px;
    text-align: left;
    font-size: 50px;
    color: #1BBD36;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #808080;
}

/* auto position when scrolling  */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}
.sticky + .content {
    padding-top: 90px;
}

.content{
    padding-top: 90px;
}

.navigation {
    float: right;
    font-weight: bold;
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding-left: 350px;
}

.navigation a {
    color: #1BBD36;
    text-decoration: none;
    float: left;
    text-align: center;
    padding-right: 18px;
    vertical-align: bottom;
}
.navigation .logout{
    color:black;
}
#titleBtn{
    background-color: white;
}