/* This style sheet is for media query @media (max-width: 556px) */

    body {
        font-family: Arial, sans-serif;
        margin: 0;
        background-color: #000000;
    }
    #myLinks {
        display:none;
    }
    #leftnav {
        display: none;
    }
    #topnav {
        display: block;
        width: 100%;
        height: 54px;
        background-color: #4CAF50;
    }
    #topnav a.icon { /* this is the three-bar Menu Nav button */
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        padding-top: 11px;
        padding-bottom:10px;
        padding-left: 15px;
        padding-right: 15px;
        background-color: #DDDDDD;
    }
    #topnav a.icon span { /* These are each of the three bars (see below for transform) */
        display: block;
        width: 30px;
        height: 3px;
        border-radius: 3px;
        background-color: #111;
        margin: 6px 0;
        transition: all .2s ease-in-out;
    }
    .bar1 {
        transform: translateY(9px) rotate(45deg);
    }
    .bar2 {
        transform: scale(0);
    }
    .bar3 {
        transform: translateY(-9px) rotate(-45deg);
    }
/*    #topnav a:hover {
        background-color: #ddd;
        color: black;
    }*/
    #topnav > a.homelink {
        display: block;
        float: right;
        font-family: Arial, sans-serif;
        color: white;
        font-size: 22px;
        text-decoration: none;
        margin: 0;
        padding: 14px 14px;
        background-color: #4CAF50;
    }
    #myLinks ul {
        background-image: url(../img/mobile_topnavlinks_bg_mysite.jpg);
        background-color: #85BDC4;
        line-height: 120%;
        list-style: none outside none;
        padding: 10px;
        padding-left: 16px;
    }
    #myLinks ul li.homelink {
        font-family: Arial, sans-serif;
        font-size: 22px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    #myLinks ul li.category {
        font-family: "Monotype Corsiva", cursive;
        font-size: 22px;
        margin-top: 10px;
        padding: 1px;
        color: #000000;
    }
    #myLinks ul li.category a {
        display: block;
        font-family: Arial, sans-serif;
        text-decoration: none;
        font-size: 22px;
        line-height: 100%;
        margin-top: 10px;
        margin-right: 0;
        margin-bottom: 10px;
        margin-left: 30px;
    }
    a:link, a:visited {
        color: #660249;
        text-decoration: none;
    }
    #myLinks ul li.active a {
        text-decoration: none;
        color: #000000;
    }
    #myLinks ul li a.active {
        text-decoration: none;
        color: #000000;
    }
    
    #content {
        width: 100%;
        /*float: left;*/
    }
    #content img {
        width: 100%;
        height: auto;
        max-width: 556px;
        max-height: 600px;
        /*float: left;*/
    }
    #slideshow {
        text-align: center;
    }
    video {
        width: 100%   !important;
        height: auto  !important;
    }
    div.clears {
        clear: both;
    }

 

