* {
    margin:0;
    padding:0;
    font-family: arial;
}

a {
    text-decoration: none;
    color: #000;
}

/**    Header */
div#header {
    height:168px;
    background-image: url("../pictures/header-small.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: #00834D;
}

@media screen and (min-width:600px) {
    div#header {
        height: 225px;
        background-image: url("../pictures/header-big.jpg");
        background-repeat: no-repeat;
        background-position: center;
        background-color: #00834D;
    }
}

h1 {
    text-indent: -5000px;
}

div#menu-container {
    margin-top: -10px;
    display:block;
    background-color: #333;
    width: 100%;
}

div#menu-container label {
    display: block;
    height: 45px;
    width: 45px;
    background-repeat: no-repeat;
    cursor: pointer;
    color: #fff;
    margin-left: 5px;
    font-size: 30px;
}

div#menu-container input#toggle {
    display: none;
}

div#menu-container input#toggle:checked + div#menu {
    display: block;
}

@media screen and (min-width:600px) {
    div#menu-container label {
        display: none;
    } 
}

div#menu {
    display: none;
    background-color: #555;
}    

div#menu a {   
    display: block;
    color: #fff;
    padding: 14px 16px;
    text-decoration: none;
}
    
div#menu a:hover {
    background-color: #00834D;
}


@media screen and (min-width:600px) {
    div#menu {
        display: block;
        overflow: hidden;
        background-color: #333;
        position: relative;
        width: 356px;
        left:50%;
        margin-left: -178px; 
        text-align: center;
    }

    div#menu a {
        display: inline-block;
        color: #fff;
        padding: 14px 16px;
        text-decoration: none;
    }
    
    div#menu a:hover {
        background-color: #00834D;
    }
}

div#contentpage {
    margin-top: 10px;
    padding-left: 5px;
    
}

@media screen and (min-width:1024px) {
    div#contentpage {
        margin-top: 100px;
        padding-left: 25%;
        width: 650px;
    }    
}

div.newspost {
    padding-top: 20px; 
    padding-bottom: 50px;
}

div.newspost p.postdate {
    font-size: 12px;
    color: #F7B628;
}

p#month {
    margin-top: 20px;
}

p#month span {
    display: inline-block;
    width: 200px;
    text-align: center;
}

p {
    margin-top: 20px;
}

div#calendar-container span#currentmonthdate {
    display: inline-block;
    width: 200px;
    text-align: center;
}

div#calendar-container span.monthclick {
    display: inline-block;
    width: 20px;
    cursor: pointer;
}

div#calendar-container span.empty {
    display: inline-block;
    width: 20px;
}

div#calendartable {
    margin-top: 20px;
    display: table;
}

div#calendartable div.rowheader, div#calendartable div.row {
    display: table-row;
}

div#calendartable div.rowheader div.cell {
    padding-top: 10px;
    display: table-cell;
    font-weight: bold;
    text-align: center;
    height: 30px;
    text-overflow: ellipsis;
    overflow: hidden;
}

div#calendartable div.cell div.event {
    margin-top: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #CA82FF;
    text-align: center;
    font-size: 12px;
    border-radius: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
}

div#calendartable div.cell {
    height: 75px;
    width: 45px;
    max-width: 45px;
    display: table-cell;
    text-align: right;
    border: 1px solid;
    border-color: #666;
}

@media screen and (min-width: 600px) {
    div#calendartable div.cell {
        width: 75px;
        max-width: 75px;

    }
}

@media screen and (min-width: 1024px) {
    div#calendartable div.cell {
        width: 100px;
        max-width: 100px;

    }
}

form {
    margin-top: 20px;
}

label {
    margin-top: 10px;
    display: inline-block;
    min-width: 100px;
}

input, textarea {
    padding: 5px;
    border-radius: 10px;
}

textarea {
    margin-top: 10px;
    width: 400px;
    height: 200px;
}

@media screen and (min-width:600px) {
    textarea {
        margin-top: 10px;
        width: 635px;
        height: 200px;
    }
}

input {
    width: 370px;
}

button {
    background-color: #F7B628;
    border: none;
    text-align: center;
    padding: 15px 32px;
    margin-top: 10px;
    cursor: pointer;
    float: right;
}

/**    Footer */

div#footer {
    margin-top: 150px;
    color: #fff;
    background-color: #333;
}

div#footer p {
    overflow: hidden;
    position: relative;
    left: 50%;
    width: 300px;
    margin-left: -125px;
    padding-top: 20px;
    padding-bottom: 50px;
    text-align: center;
}