/* ################# Top Level Icon Menu CSS ############## */

@media only all and (max-width: 1100px) {
    #myiconmenu {
     visibility: hidden;
    }
}

.iconmenu {
z-index: 9999;
font-size: 1em;
list-style: none;
position: fixed;
left: 0;
top: 10px; /* offset from top of page to display icon menu */
margin: 0;
padding: 0;
background: #eee;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
box-shadow: 3px 1px 3px rgba(0,0,0,0.4);
}

.iconmenu a {
text-align: center;
cursor: pointer;
}

.iconmenu a {
display: block;
text-decoration: none;
color: black;
padding: 2px 5px;
border-bottom: 1px solid white;
}

.iconmenu a {
border-bottom-width: 0;
padding-bottom: 2px;
margin-bottom: 3px;
}

.iconmenu a:hover { /* style for selected icon */
background: #dcdcdc;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}

