@viewport {
    width: device-width;
    zoom: 1.0 ;
}

@-ms-viewport {
    width: device-width;
}

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

body {
    font-family: Sans-serif;
    line-height: 1.2em;
    color: black;
    background-color: #768998;
}

table {
    border-collapse: collapse;
    margin: auto;
    background-color: white;
}

table th, td {
    padding: 0px;
}

.menu {
    float: left;
    width: 180px;
    height: 2500px;
    background-color: #DDE0EE;
}

.box {
    width: 80%;
    margin: 30px auto 300px auto;  /* top rt bot lt */
    text-align: center;
    border: 1px solid black;
    background-color: white;
}

img {
    display: block;
}

li {
    padding: 1px 1px 1px 1px;
}

h1, h2, h3 {
    text-align: center;
    font-style: italic;
    color: darkblue;
}

h1 {
    font-size: xx-large;
}

h2 {
    font-size: large;
}

.italic {
    font-style: italic;
    font-weight: bold;
    color: darkblue;
}

a {
    color: darkblue;
    text-decoration: none;
}

a:hover	{
    color: red;
}

a.link {
	display: block;
    height: 13px;
    font-size: 12px;
	padding: 3px 10px;
    background-color: #CDD4DB;
    font-family: Sans-serif;
	text-decoration: none;
    color: black;
}

a.link:hover {
    background-color: #DDE0EE;
    color: red;
}

a.mobilelink {
    display: block;
    background-color: #CDD4DB;
    font-family: Sans-serif;
    text-decoration: none;
    color: black;
}

a.mobilelink:hover {
    background-color: #DDE0EE;
    color: red;
}

@media print {
    .noprint {
        display: none;
    }
}

/* this hides the banner and menu from phones */
@media only screen
 and (min-width: 320px)
 and (max-width: 700px) {
     .mobilehide {
         display: none;
     }
}

/* default is to not display mobileshow unless meets following rule */
.mobileshow {
    display: none;
}

/* show if device width is between 320 and 600 pixels */
@media only screen
 and (min-width: 320px)
 and (max-width: 700px) {
    .mobileshow {
        display: block;
    }
    .mobileshrink {
        font-size: small;
    }
}

.mobileshow li {
    line-height: 50px;
    font-size: xx-large;
    text-indent: 5px;
}

.mobileshow li a {
    color: darkblue;
}

button {
    margin: 100px auto 100px auto;
    font-size: 50px;
    color: blue;
    background-color: #DDE0EE;
}
