/* db.css 9 April 2017  Tim Martin  */


/* mobile items */
@media only screen and (max-width: 779px) {
/* large screen navigation */
#nav-big-screen {display:none;}
#nav-mobile {display:block}
}





/* large screen items */
@media only screen and (min-width: 780px) {
/* large screen navigation */

#nav-mobile {display:none}
#nav-big-screen {display:block}


a.navLink:hover {background-color:#006699;border:2px white solid;box-shadow: 0px 0px 5px #888888;}

.navLink {
display:inline;
width:50px !important;
height:37px !important;
font-family:sans-serif;
font-size:90%;
background-color:#333333;
text-decoration:none;
float:left;
margin-right:12px;
padding-left:5px;
padding-right:5px;
padding-top:20px;
color:white;
text-align:center;
}

}