html{
    width: 100%;
    height: 100%;
}
body{
    width: 100%;
    height: 100%;
    background: url(../img/body_bg.jpg) repeat;
    font-family: 'Roboto', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}
#page{
    background: #fff;
    box-shadow: 2px 2px 3px #ccc;
    margin-top: 20px;
    padding-bottom: 30px;
}
#menubar{
    position: relative;
    height: 65px;
    background: url(../img/navigatie_bg.png) right center repeat-x;
    margin-top: 10px;
    margin-bottom: 90px;
    margin-right: -25px;
}
.logo{
    position: absolute;
    top: -20px;
    left: -10px;
    display: block;
    width: 189px;
    height: 123px;
    text-decoration: none;
}
    .logo img{
        width: 250px;
        box-shadow: 2px 2px 5px #ccc;
    }
    .logotext{
        position: absolute;
        left: 270px;
        top: 90px;
        white-space: nowrap;
    }
        .logotext h1{
            font-size: 24px;
            margin: 0;
            font-weight: bold;
            text-transform: uppercase;
        }
ul.menu{
    float: right;
    margin: 0;
    padding: 0;
}
ul.menu li{
    display: inline-block;
    height: 65px;
}
ul.menu li a{
    display: block;
    padding-top: 15px;
    padding-bottom: 11px;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    text-transform: uppercase;
    text-decoration: none;
}
ul.menu li.active a{
    background: rgb(129,0,127);
}
ul.menu li:not(.active):hover a{
    background: rgba(129,0,127,.6);
}
h1,h2,h3{
    font-family: "Roboto Condensed", "Roboto", "Open Sans", sans-serif;
}
h1{
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: rgb(129,0,127);
}
p{
    margin-bottom: 15px;
}
a, a:hover, a:active, a:visited{
    color: rgb(129,0,127);
    text-decoration: underline;
}
blockquote{
    font-size: 100%;
    background: rgba(0,0,0,.05);
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0;
    border-left: 5px solid rgba(0,0,0,.2);
    margin-bottom: 15px;
}
blockquote.bg-purple{
    background-color: rgba(129,0,127,.6);
    border-left-color: rgba(129,0,127,1);
    color: #fff!important;
    font-size: 14px;
}
blockquote.bg-purple h1{
    color: #fff;
    margin-bottom: 10px;
    margin-top: 0;
}
blockquote.bg-purple .btn-primary{
    background: #444;
    border-color: #444;
    border-radius: 3px;
    color: #fff !important;
    width: 100%;
    text-decoration: none;
}
.table{
    margin-top: 10px;
}
.table tbody tr td{
    border: 0!important;
    padding: 0;
}
.text-purple{
    color: rgb(129,0,127);
}
.bg-purple{
    color: #fff;
}
.bg-purple a,
.bg-purple .small{
    color: #fff!important;
}
img.featured{
    width: 40%;
    margin: 0 0 15px 15px;
}
.btn-primary{
    background-color: rgb(129,0,127);
    border-color: rgb(129,0,127);
    border-radius: 2px;
}
.sidebar{
    margin-top: -105px;
    padding-top: 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,0));
    height: 100%;
}
#footer{
    background: #444;
    color: #fff;
    margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
}
.copyright{
    padding-top: 5px;
    font-size: 11px;
}

/*
Tablet
*/
.tablet.portrait .menu li a{
    padding-left: 10px;
    padding-right: 10px;
}
/*
Mobile
*/
.mobile #menubar{
    margin-bottom: 20px;
}
.mobile .menu-toggle{
    display: block;
    color: #fff;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-decoration: none;
}
    .mobile .menu-toggle span{
        margin-right: 15px;
    }
.mobile .logo{
    display: none;
}
.mobile .logotext{
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 15px;
}
.mobile .menu{
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
    top: 100%;
    background: #444;
}
    .mobile .menu li{
        display: block;
    }
.mobile img.featured{
    width: 100%;
    margin: 10px 0;
}
.mobile h1{
    font-size: 30px;
    margin-top: 0;
}
.mobile .sidebar{
    margin-top: 30px;
    padding-top: 30px;
    text-align: center!important;
}