/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Nav bar, search, and nav
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
#navigation-bar {
    position: relative;
    height: 40px;
    padding-left: 60px;
}
#search {
    position: relative;
    float: right;
    width: 40px;
    height: 38px;
}
#label {
    width: 40px;
    height: 38px;
    position: relative;
    z-index: 20;
    text-align: center;
    vertical-align: middle;
    padding-top: 3px;
    cursor: pointer;
}
#label label {
    /* display: block; */
    /* width: 60px; */
    /* height: 60px; */
    /* background: url("../12/img/search.png") 0 0; */
    /* font-size: 0; */
    /* color: rgba(0, 0, 0, 0); */
    /* text-indent: -9999px; */
    /* cursor: pointer; */
}
#label label:hover {
    background: url("img/search.png") -60px 0
}
#label.active label {
    background: url("img/search.png") -60px 0
}
#input {
    position: absolute;
    top: 0;
    right: 46px;
    width: 516px;
    height: 38px;
    z-index: -5;
    overflow: hidden;
}




input#search-terms:-moz-placeholder
{
  color:    #FFF;
}

input#search-terms::-moz-placeholder
{
  color:    #FFF;
}

input#search-terms:-ms-input-placeholder
{
  color:    #FFF;
}

input#search-terms::-webkit-input-placeholder
{
  color:    #FFF;
}

#input input {
    display: block;
    position: absolute;
    top: 0;
    right: -512px;
    width: 512px;
    height: 100%;
    margin: 0;
    padding: 0 10px;
    border: none;
    background-color: #3E7CCC;
    color: #fff;
    font-size: 18px;
    -webkit-backface-visibility: none;
    -moz-backface-visibility: none;
    -ms-backface-visibility: none;
    backface-visibility: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: left 0;
    -moz-transition: left 0;
    -ms-transition: left 0;
    -o-transition: left 0;
    transition: left 0;
}
#input input:focus {
    outline: none
}
#input.focus {
    z-index: 20
}
#input.focus input {
    right: 0;
    -webkit-transition: left 0.3s;
    -moz-transition: left 0.3s;
    -ms-transition: left 0.3s;
    -o-transition: left 0.3s;
    transition: right 0.3s;
}
nav {
    width: 100%;
    float: left;
    padding-left: 10px;
    position: relative;
    z-index: 10;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
nav li {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}
nav a {
    display: block;
    padding: 0 15px;
    color: #c8c8c8;
}
nav a:hover {
    color: #3296c8
}

#search .active i {
    color: white;
}

i#search-label {
    color: #819AA9;
}

div#navigation-bar .calander {
    padding-top: 5px;
}
div#navigation-bar .zoom {
    padding-top: 5px;
}

div#label.active {
    background: skyblue;
}
i#search-label {
    width: 40px;
    height: 38px;
}



@media only screen and (max-width: 490px) {
   #search {
    position: absolute;
    float: right;
    width: 40px;
    height: 38px;
    right: 0;
    top: 0;
}
#input {
    width:300px;
}
#input input {
    width:300px;
}
}

