html {
    font-family: "Lucida Sans", sans-serif;
}

body{
    background: #cccccc;
}


h1,h2,h3,h4{
    margin-bottom:15px;
}



#header {
    background-color: #f68b20;
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

.container{
    max-width: 1024px;
    margin: auto;
    margin-top:15px;
    background: #ffffff;
    border: solid 1px #d0d5d8;
    padding: 10px;

    -webkit-box-shadow: 0px 0px 63px -8px rgba(102,102,102,1);
    -moz-box-shadow: 0px 0px 63px -8px rgba(102,102,102,1);
    box-shadow: 0px 0px 63px -8px rgba(102,102,102,1);
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu li {

}

.menu a{
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 8px;
    margin-bottom: 7px;
    background-color: #3498db;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);

}

.menu a:hover {
    background: #69b7e2;
}

.logo{
    max-width: 400px;
    margin: auto;
    padding: 15px;
}

.aside {
    background-color: #3498db;
    padding: 15px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
#footer {
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    padding: 15px;
}

.right{
    float: right;
}


@media only screen and (max-width: 600px) {
.logo{width:100%;}

}