/*Rules for the big home link*/
#header a, #header a:visited { 
   color: #978353;
   -webkit-transition: .4s all;
   -moz-transition: .4s all;
   -ms-transition: .4s all;
   -o-transition: .4s all;
   transition: .4s all;
}

#header a:hover, #header a:focus {
   color: #BE837B;   /*Make sure to change this sucker at some point, Alan*/
   -webkit-transition: .4s all;
   -moz-transition: .4s all;
   -ms-transition: .4s all;
   -o-transition: .4s all;
   transition: .4s all;
}

#nav {
   float: left;
   width: 60%;
   margin: .3em;
}

#nav li {
   display: inline-block;
   vertical-align: text-top;
   padding: .3em;
}

#nav li a, #nav li a:visited {
   color: rgb(182, 186, 255);
}

#nav li a:hover, #nav li a:active, #nav li a:focus {
   color: rgb(91, 93, 127);
}

#login {
   float: right;
   padding-top: .6em;
}

#searchbar {
   float: right;
   clear: right;
   padding: 4px;
   margin-top: 0;
}

#searchbar form input {
   line-height: 1.5;
}

.child-header {
   display: block;
   padding: 0;
   font-size: 1em;
   height: auto;
   max-width: 4em;
   overflow: hidden;
   background: rgba(168, 212, 255, .4);
}

.child-header:hover {
   max-height: 5em;
}

.child-header {
   max-height: .2em;
   -webkit-transition: .4s all;
   -moz-transition: .4s all;
   -ms-transition: .4s all;
   -o-transition: .4s all;
   transition: .4s all;
}

a:hover + .child-header {
   max-height: 5em;
   -webkit-transition: .4s all;
   -moz-transition: .4s all;
   -ms-transition: .4s all;
   -o-transition: .4s all;
   transition: .4s all;
}