* {
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    min-width: 891px;
}

header, article, section, aside {
    display: block;
}

h1 {
    text-shadow: 0 0 3px #000;
    color: #000;
}

a {
    color: #105578;
}

p, h3, h4, h5, h6 {
    margin: 1em 0 0 0;
}

#container {
    position: absolute;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    top: 0;
    right: 5%;
    bottom: 5%;
    left: 0;
    overflow: auto;
}

aside {
    position: absolute;
    right: 5%;
    top: 5%;
    bottom: 5%;
    width: 30%;
    font-size: 13px;
}

article {
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 5%;
    width: 55%;
    color: #333;
}

article article {
    margin: 1em 0 0 0;
    position: static;
    width: auto;
}

.cols {
    -moz-column-count: 3;
    -webkit-columns: 3;
}



.box {
    -moz-box-shadow: 0 0 3px #000;
    -moz-border-radius: 5px;

    -webkit-box-shadow: 0 0 3px #000;
    -webkit-border-radius: 5px;

    background: #CDCDCD;
    line-height: 125%;
}

.box .title {
    background: -moz-linear-gradient(top, #FFF, #CDCDCD);
    -moz-border-radius: 5px 5px 0 0;

    background: -webkit-gradient(linear, center top, center bottom, from(#FFF), to(#CDCDCD));
    -webkit-border-radius: 5px 5px 0 0;

    padding: 5px 10px;
}

.box .body {
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;

    padding: 10px;
    background: #EDEDED;
    border-top: 1px solid #A4A4A4;
}