/* Elements */
* {
    margin: 0;
    padding: 0;
}

body {
    background: #2B2A2B url("./rsrc/img/bg.jpg");
    background-repeat: repeat;
    background-size: 70.15%;
    color: #858585;
    font-family: "Malgun Gothic Bold", "Malgun Gothic", monospace;
}

a {
    text-decoration: none;
    outline: none;
}

img {
    border: none;
}

#wrapper {
    margin: 0 auto;
    max-width: 1600px;
    min-width: 1250px;
    width: 90%;	
}

.box {
    background-color: #C0D8CC;
    border-radius: 5px;
    box-shadow: .5px 3px 0 #597973;
    outline: 0;
    outline-color: #91A5D0;
    outline-style: inset;
    text-align: center;
}

/* Header */
#logo {
    float: left;
    height: 200px;
    width: 200px;
}

#banner {
    margin-left: 200px; /* 200x200 logo + 10px spacing */
}

#banner img {
    margin-top: 70px;
}

/** Navigation **/
nav {
    clear: both;
    padding-top: 2px;
    padding-bottom: 1.15px;
    height: 27px;
    background: -webkit-linear-gradient(top, #A0C4B2, #79928C);
    background: -moz-linear-gradient(center top, #A0C4B2, #79928C);
    background: -ms-linear-gradient(top, #A0C4B2, #79928C);
    background: -o-linear-gradient(center top, #A0C4B2, #79928C);
    border-radius: 5px;
    box-shadow: 3px 3px 4px #000;
    text-align: center;
}

nav li {
    list-style-type: none;
    display: inline;
}

nav a {
    color: #C0D8CC;
    font-size: 1.3em;
    font-family: Verdana, Helvetica, sans-serif;
    font-weight: bold;
    margin: auto 11px;
    text-shadow: 0 4px 0 #79928D;
}
container {
	margin-top: 20px;
}
nav a:hover {
    text-decoration: underline;
}

/**Right Bar?----------?---------------------**/
#right_bar {
	width: 200px;
	float: right;
}
#right_bar li{
	margin: 0;
}

/** Sidebars **/
aside {
    margin-top: 20px;
    width: 200px;
}

aside a, main a{
    color: #992114;
}
aside a:hover, main a:hover {
    text-decoration: underline;
}

aside .box {
    margin-bottom: 20px;
    padding: 10px;
}

/* main Content */
main {
    margin: 20px 220px;
    margin-left: 220px;
	  margin-right: 220px;
}

main .box {
    padding: 20px;
    margin-bottom: 20px;
}

main h2{
    color: #91A5D0;
    margin-bottom: 15px;
    text-shadow: 0px 2px 0 #79928D;
}

/* Footer */
footer {
    clear: both;
    margin-bottom: 25px;
    padding: 5px;
    text-align: center;
}

footer a {
    color: #992114;
}

footer a:hover {
    text-decoration: underline;
}