/* This style sheet is for media queries where width is 557px or greater:
    @media (min-width: 557px) and (max-width: 779px) 
    and @media (min-width: 780px) 
    The only differences are for #mainframe */
    
    @media (min-width: 557px) and (max-width: 779px) and (min-height: 601px) {
        #mainframe { /* This centers vertically only */
            width:770px;
            height:600px;
            position:absolute;
            /*left:50%;*/
            top:50%;
            /*margin-left: -385px;*/
            margin-top: -300px;            
        }
    }
    @media (min-width: 780px) and (min-height: 601px) {
        #mainframe { /* This is to center on page; Could also use flexbox. */
            width:770px;
            height:600px;
            position:absolute;
            left:50%;
            top:50%;
            margin-left: -385px;
            margin-top: -300px;
        }
    }
    @media (min-width: 557px) and (max-height: 600px) {
        #mainframe { /* This is for phones in landscape orientation */
            width:770px;
            height:600px;
            position:absolute;            
        }
    }

    body {
        font-family: Arial, sans-serif;
        margin: 0;
        background-color: #000000;
    }
    #topnav {
        display: none;
    }
    #myLinks {
        display:none;
    }
    #leftnav {
        display: block;
        width: 214px;
        height: 600px;
        background-image: url(../img/leftnav_bg_mysite.jpg);
        background-color: #85BDC4;
        float: left;
    }
    #leftnav ul {
        line-height: 120%;
        list-style: none outside none;
        padding-left: 10px;
    }
    #leftnav ul li.homelink a {
        display: block;
        font-family: Arial, sans-serif;
        font-size: 19px;
        /*font-weight: bold;*/
        padding: 12px 0;
        margin: 0;
    }
    #leftnav ul li.category {
        font-family: "Monotype Corsiva", cursive;
        font-size: 22px;
        color: #000000;
        margin-top: 10px;
    }
    #leftnav ul li.category a {
        display: block;
        font-family: Arial, sans-serif;
        font-size: medium;
        /*font-size: 14px;*/
        /*font-weight: bold;*/
        padding-top: 12px;
        padding-right: 0;
        padding-bottom: 12px;
        padding-left: 30px;
        margin: 0;
    }
    a:link, a:visited {
        color: #660249;
        text-decoration: none;
    }
    #leftnav ul li.active a {
        text-decoration: none;
        color: #000000;
    }
    #leftnav ul li a.active {
        text-decoration: none;
        color: #000000;
    }
    #content {
        width: 556px;
        height: 600px;
        float: left;
    }
    #maincontent {
    }
    #content img {
        /*float: left;*/
        width: 556px;
        height: 600px;
    }
    div.clears {
        clear: both;
    }

