/*
styleSheet1.css
*/
body {
    font: 100% Lucida Sans, Verdana;
    margin: 20px;
    line-height: 26px;
}

.wrapper {
    position: relative;
    overflow: auto;
}

header, aside, footer, .menuitem {
    border-radius: 4px;
    margin: 4px;
}

header {
    background-color: #04AA6D;
    color: #ffffff;
    padding: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
}

nav {
    width: 200px;
    float: left;
}

div#rbtnDiv{
    padding: 20px;
}

.rbtnSelection{
    line-height: 40px;
    font-size: 1.3em;
    border-bottom: 1px solid lightgreen;
}

.rbtnSelection:hover{
    background-color:hsl(158, 95%, 34%, 40%);
}

main {
    padding: 10px;
    margin: 0 210px;
}

main a{
    color: #0b9601;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

main a:hover{
    text-decoration: underline;
    background-color: #0b9601;
    color: white; 
}

h3#aboutJS{
    margin-bottom: 20px;
}

aside {
    background-color: #32a4e7;
    color: #ffffff;
    padding: 10px;
    width: 180px;
    bottom: 0px;
    top: 0px;
    right: 0px;
    position: absolute;
    min-height: 650px;
}

img#crapImg{
    margin-left: 2px;
}

footer {
    border: 1px solid #d4d4d4;
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px;
    font-size: 70%;
    line-height: 14px;
}

/* sometimes we zero out styles to set up our own */
header h1, header p, #menulist {
    margin: 0px;
    padding: 0px;
}

header p{
    margin-top: 5px;
}

.menuitem {
    background-color: #f1f1f1;
    border: 1px solid #d4d4d4;
    list-style-type: none;
    padding: 2px;
    cursor: pointer;
}

.menuitem:hover {
    background-color: #ffffff;
}

.menuitem:first-child {
   background-color:#04AA6D;
   color: white;
   font-weight:bold;
}

a {
    color: #000000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

span#clickSpan::after{
    content: "a left menu item";
}


@media (max-width: 800px) {
    aside {
        width: auto;
        position: relative;
    } 
    main {
        margin-right: 0;
    }    
       
}

@media (max-width: 600px) {
    nav {
        width: auto;
        float: none;
    }
    main {
        margin: 0;
    }    
}