body {
    font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #642D1E;
    text-align: center;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: inherit;
}

#Wrapper {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    
    background: -webkit-linear-gradient(#FFD148 130px, #642D1E 150px);
    background: -o-linear-gradient(#FFD148 130px, #642D1E 150px);
    background: -moz-linear-gradient(#FFD148 130px, #642D1E 150px);
    background: linear-gradient(#FFD148 130px, #642D1E 150px);
}

#Border {
    height: 100%;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/******************** HEADER *********************/
#Header {    
    float: left;
    height: 150px;
    width: 100%;
}

#Logo_box {
    float: left;
    
    margin-top: 10px;
    margin-left: 15px;
}

#Logo {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#Logo:hover{
    box-shadow: 0px 0px 20px 10px #FFEEC0;
    
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#Header h1 {
    float: left;
    margin-left: 25px;
    
    color: #642D1E;
    
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#Header h1:hover {
    text-shadow: 0px 2px 10px #FFEEC0;
    
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#Language {
    float: right;
}

/***************** NAVIGATION *********************/

#Nav {
    float: left;
    margin-top: -18px;
    
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#Menu {
    text-align: left;
    display: inline;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

/********** Menu Content **********/

#Menu li {
    font: bold 16px/18px sans-serif;
    color: #642D1E;
    display: inline-block;
    margin-right: -4px;
    position: relative;
    padding: 15px 0px;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#Menu li:hover {
    color: #FFEEC0;
    text-shadow: 0px 2px 10px #642D1E;
}

li > a {
    padding: 20px 20px;
}

#Menu li ul {
    padding: 0;
    position: absolute;
    top: 50px;
    left: 0;
    width: 400px;
    display: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -ms-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    -transition: opacity 0.6s;
}

#Menu li:hover ul {
    display: block;
    opacity: 1;
    visibility: visible;
}

#Menu li ul li {  
    display:inline; 
    color: #642D1E;
    
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#Menu li ul li:hover {
    color: #FFEEC0;
    text-shadow: 0px 2px 10px #642D1E;
}


/******************** BODY   *********************/
#Pagetitle {
    float: left;
    width: inherit;
    
    margin-bottom: -15px;
    margin-top: -10px;
}

#Pagetitle h2 {
    color: #FFD148;
    text-shadow: 0px 0px 10px #FFEEC0;
}

#Content {
    float: left;
    background-color: #FFEEC0;
    width: 100%;
    
    margin-top: 10px;
    margin-bottom: 10px;
    
    box-shadow: 0px 0px 20px 2px #FFEEC0;
    
    border-radius: 10px;
}

#Error {
    margin: 2px;
    padding: 2px;
    border: 2px solid red;
    border-radius: inherit;
    
    background-color: rgba(255, 0, 0, 0.20);
    
    color: red;
}

#Notification {
    margin: 2px;
    padding: 2px;
    border: 2px solid green;
    border-radius: inherit;
    
    background-color: rgba(0, 255, 20, 0.2);
    
    color: green;
}

#Content_box {
    margin: 5px;
}

#Home {
    float: left;
    width: 74%;
    height: 500px;
    
    margin-bottom: 5px;
    padding: 5px;
    
    border-radius: 10px;
    
    text-align: left;
}

#Home h3, #Home h5 {
    text-align: center;
    
    margin-top: 0px;
    margin-bottom: 5px;
}

.Sidebar {
    float: right;
    width: 24%;
    
    margin: 2px;
    
    border-radius: 10px;
    
    text-align: center;
    
    background: rgba(0,0,0,0.2);
}

.Sidebar h4 {
    margin-top: 5px;
    margin-bottom: -10px;
    text-align: center;
}

.Sidebar p {
    font-size: 12px;
    margin-left: 5px;
}

/******************** FOOTER *********************/
#Footer {
    height: 30px;
    width: 100%;
    
    float: left;
    
    background: rgba(0,0,0,0.3);
    
    border-radius: inherit;
}

#Footer span {
    position: relative;
    top: 6px;
}