/* 
 * home.css
 *
 * The home.css file contains CSS styles that are used for all browsers.
*/
.inner {
    margin-right: .8em;
    margin-bottom: .8em;
}

.panel {
    padding: .8em;
    background-color: #fff;
    border-radius: 5px;
}

/*  */
#leftbar {
    position: fixed;
    top: 65px;
    left: 0px;
    width: 70px;
    margin-bottom: 1em;
    text-align: center;
}
#leftbar li {
    padding-top: 25px;
}
#leftbar a {
    text-align: center;
    font-size: 1.2em;
    line-height: 1em;
}
#leftbar .icon {
    width: 2.2em;
}

#content {
    position: static;
    margin-left: 65px;
    margin-top: 65px;
    overflow: auto;
}

#content-r2c1{
    float:left;
    width: 50%;
}

#content-r2c2 {
    float:right;
    width: 50%;
}

.urlnav a {text-decoration: none;}

/* screen < 900px */
@media screen and (max-width: 900px) {
    #content-r2c1{ float: none; width: 100%}
    #content-r2c2{ float: none; width: 100% }
}

/* screen < 600px */
@media screen and (max-width: 600px) {
    #leftbar { position: static; width: 100%; }
    #leftbar li {display: inline-block; margin-top: 65px; padding-left:.5em; padding-right:.5em;}
    #content {margin-left: 0px; margin-top: 0px;}
}