/* General fixes */
* {
    padding: 0;
    margin: 0;
    border: 0;
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
}
span.fa {
    vertical-align: 2px;
    padding-right: 5px;
}

body {
    background: #111;
}

header {
    background: url(../images/header-texture.png);
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 100;
}
    header .center-container {
        width: 95%;
        margin: 0 auto;
        position: relative;
        max-width: 1600px;
        z-index: 100;
    }
        header .center-container .logo {
            float: left;
        }
            header .center-container .logo a {
                padding: 10px 0;
                display: inline-block;
            }
        header .nav-icon {
            display: none;
        }
        header .center-container nav {
            float: right;
        }
            header .center-container nav ul {
                list-style: none;
            }
                header .center-container nav ul li {
                    display: inline-block;
                }
                    header .center-container nav ul li a {
                        color: #fff;
                        font-size: 20px;
                        line-height: 20px;
                        text-decoration: none;
                        text-transform: uppercase;
                        padding: 20px 15px 25px 15px;
                        display: inline-block;
                        border-top: 3px transparent solid;
                        text-shadow: -1px -1px 0 #000;

                        -webkit-transition: all 0.15s linear;
                        -o-transition: all 0.15s linear;
                        -moz-transition: all 0.15s linear;
                        -ms-transition: all 0.15s linear;
                        -kthtml-transition: all 0.15s linear;
                        transition: all 0.15s linear;
                    }
                    header .center-container nav ul li a:hover, header .center-container nav ul li a.active {
                        border-top: 3px #fff solid;

                        -webkit-transition: all 0.15s linear;
                        -o-transition: all 0.15s linear;
                        -moz-transition: all 0.15s linear;
                        -ms-transition: all 0.15s linear;
                        -kthtml-transition: all 0.15s linear;
                        transition: all 0.15s linear;
                    }

main {
    padding-top: 70px;
    z-index: 50;
    background: url(../images/bg.jpg) repeat;
    background-attachment: fixed;
}
    main .header-banner {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        margin-top: -4px;
        margin-bottom: 10px;
        box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    }
        main .header-banner .header-image img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        main .header-banner .header-text-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.4);
            text-align: center;
        }
        main .header-banner .header-text-container .header-text-holder {
            width: 100%;
            height: 100%;
            display: table;
        }
            main .header-banner .header-text-container .header-text-holder .header-text {
                display: table-cell;
                vertical-align: middle;
                color: #fff;
                text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            }
            main .header-banner .header-text-container .header-text-holder .header-text h2 {
                font-size: 50px;
                font-weight: 700;
                padding: 10px;
                line-height: 50px;
            }
            main .header-banner .header-text-container .header-text-holder .header-text h3 {
                font-size: 30px;
                line-height: 30px;
                font-weight: 300;
                padding: 10px;
            }
            main .header-banner .header-text-container .header-text-holder .header-text a.button {
                display: inline-block;
                background: #fff;
                border-radius: 5px;
                padding: 10px 15px;
                color: #333;
                box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
                text-decoration: none;
                margin: 15px 5px 0 5px;
                font-size: 25px;
                font-weight: 400;
                text-transform: uppercase;
                text-shadow: none;

                -webkit-transition: all 0.15s linear;
                -o-transition: all 0.15s linear;
                -moz-transition: all 0.15s linear;
                -ms-transition: all 0.15s linear;
                -kthtml-transition: all 0.15s linear;
                transition: all 0.15s linear;
            }
            main .header-banner .header-text-container .header-text-holder .header-text a.button:hover {
                background: #8e44ad;
                color: #fff;

                -webkit-transition: all 0.15s linear;
                -o-transition: all 0.15s linear;
                -moz-transition: all 0.15s linear;
                -ms-transition: all 0.15s linear;
                -kthtml-transition: all 0.15s linear;
                transition: all 0.15s linear;
            }

    main .content-container {
        position: relative;
        width: 95%;
        max-width: 1600px;
        margin: 0 auto;
        overflow: hidden;
    }
        main .content-container .content {
            float: left;
            width: 73%;
            position: relative;
        }
            main .content-container .content h2 {
                color: #fff;
                padding-top: 10px;
                padding-bottom: 11px;
                line-height: 35px;
                font-size: 35px;
                border-bottom: 2px #fff dashed;
                margin-bottom: 10px;
                margin-top: 10px;
                text-transform: uppercase;
                padding-left: 1px;
            }
            main .content-container .content article {
                background: #222;
                padding: 15px;
                box-sizing: border-box;
                color: #fff;
                margin: 10px 0;
                border-radius: 5px;
            }
            main .content-container .content article p {
                font-family: Helvetica, Arial, sans-serif;
            }
            main .content-container .content .news-container {
                margin: 10px 0;
                font-size: 0;
            }
                main .content-container .content .news-container h2 {
                    margin-top: 0;
                }
            main .content-container .content .news-container:after {
                content: "";
                clear: both;
                display: block;
            }
                main .content-container .content .news-container a {
                    text-decoration: none;
                }
                main .content-container .content .news-container article.news-item {
                    width: 49%;
                    display: inline-block;
                    padding: 0;
                    border-radius: 0;
                    position: relative;
                    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
                    margin: 0;
                    overflow: hidden;
                    box-sizing: border-box;
                }
                main .content-container .content .news-container article.news-item:hover img {
                    -webkit-filter: blur(0px);
                    filter: blur(0px);

                    -moz-transform: scale(1.05);
                    -webkit-transform: scale(1.05);
                    transform: scale(1.05);

                    -webkit-transition: all 0.15s linear;
                    -o-transition: all 0.15s linear;
                    -moz-transition: all 0.15s linear;
                    -ms-transition: all 0.15s linear;
                    -kthtml-transition: all 0.15s linear;
                    transition: all 0.15s linear;
                }

                main .content-container .content .news-container .news-main {
                    float: left;
                    width: 50%;
                }
                    main .content-container .content .news-container .news-main article.news-item {
                        width: 100%;
                    }

                main .content-container .content .news-container .news-smaller {
                    float: right;
                    width: 49%;
                }
                    main .content-container .content .news-container .news-smaller article.news-item {
                        width: 49% !important;
                    }
                    
                    main .content-container .content .news-container .news-smaller a:nth-child(1) article.news-item, main .content-container .content .news-container .news-smaller a:nth-child(3) article.news-item {
                        margin-right: 2%;
                    }
                    main .content-container .content .news-container .news-smaller a:nth-child(1) article.news-item, main .content-container .content .news-container .news-smaller a:nth-child(2) article.news-item {
                        margin-bottom: 3%;
                    }
                
                main .content-container .content article.news-item .news-image img {
                    max-width: 100%;
                    height: auto;
                    display: block;
                    -webkit-filter: blur(1px);
                    filter: blur(1px);

                    -webkit-transition: all 0.15s linear;
                    -o-transition: all 0.15s linear;
                    -moz-transition: all 0.15s linear;
                    -ms-transition: all 0.15s linear;
                    -kthtml-transition: all 0.15s linear;
                    transition: all 0.15s linear;
                }
                main .content-container .content article.news-item .news-text-container {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    background: rgba(0, 0, 0, 0.65);
                    text-align: center;
                }
                    main .content-container .content article.news-item .news-text-container .news-text {
                        position: absolute;
                        bottom: 15px;
                        text-align: center;
                        width: 100%;
                    }
                        main .content-container .content article.news-item .news-text-container .news-text h3 {
                            text-transform: uppercase;
                            font-size: 30px;
                            text-shadow: 1px 1px 0 #000,
                                         0 0 5px rgba(0, 0, 0, 0.3);
                            color: #bbb;
                        }
                        main .content-container .content .news-smaller article.news-item .news-text-container .news-text h3 {
                            font-size: 25px;
                        }

                main .content-container .content article h2 {
                    font-weight: 700;
                    font-size: 30px;
                    line-height: 30px;
                    padding-bottom: 10px;
                    text-transform: uppercase;
                }
                main .content-container .content article p.date {
                    font-weight: 400;
                    font-size: 20px;
                    line-height: 25px;
                    padding: 5px 0;
                }

                main .content-container .content article.news-article .info, main .content-container .content article.event-article .info {
                    font-size: 20px;
                    font-weight: 300;
                    border-bottom: 1px #333 dotted;
                    padding-bottom: 10px;
                    margin-bottom: 5px;
                    font-family: 'Oswald', sans-serif;
                    padding-top: 0 !important;
                }

                main .content-container .content article.news-article p, main .content-container .content article.event-article p {
                    padding: 5px 0;
                    font-weight: 300;
                    font-family: Helvetica, Arial, sans-serif;
                }

                main .content-container .content article.news-article .share, main .content-container .content article.event-article .share {
                    font-size: 0;
                    font-weight: 300;
                    border-top: 1px #333 dotted;
                    padding-top: 10px;
                    margin-top: 5px;
                }
                    main .content-container .content article.news-article .share a, main .content-container .content article.event-article .share a {
                        display: inline-block;
                        margin-right: 5px;
                    }
                        main .content-container .content article.news-article .share a span, main .content-container .content article.event-article .share a span {
                            font-size: 22px;
                            color: #eee;
                        }
                        main .content-container .content article.news-article .share a span:hover, main .content-container .content article.event-article .share a span:hover {
                            color: #999;
                        }

                main .content-container .content article.event-message .show-table {
                    width: 100%;
                }
                    main .content-container .content article.event-message .show-table tr td.message-content {
                        vertical-align: top;
                        width: 100%;
                        padding-right: 10px;
                        box-sizing: border-box;
                    }
                    main .content-container .content article.event-message .show-table tr td.message-link {
                        text-align: center;
                    }
                main .content-container .content article.event-message .info {
                    border-bottom: 1px #333 dotted;
                    font-size: 18px;
                    font-family: 'Oswald', Helvetica, sans-serif;
                    padding-bottom: 10px;
                    width: 100%;
                    line-height: 18px;
                }
                    main .content-container .content article.event-message .info td:first-child {
                        width: 60px;
                    }
                    main .content-container .content article.event-message .info .date {
                        font-weight: 300;
                        padding-top: 5px;
                        font-size: 16px;
                        color: #999;
                    }
                    main .content-container .content article.event-message p.text {
                        padding: 10px 0;
                    }
                    main .content-container .content article.event-message .info img {
                        display: inline-block;
                        height: 50px;
                        border-radius: 3px;
                    }
                main .content-container .content article.event-message img.fbPicture {
                    display: block;
                    position: relative;
                    max-width: 400px;
                    max-height: 300px;
                    width: auto;
                    height: auto;
                    border-radius: 3px;
                }
                main .content-container .content article.event-message .links {
                    font-family: 'Oswald', Helvetica, sans-serif;
                    padding-top: 10px;
                    border-top: 1px #333 dotted;
                    font-size: 18px;
                    padding-bottom: 0;
                }
                    main .content-container .content article.event-message .links a {
                        color: #2980b9;
                        text-decoration: none;
                    }

        main .content-container aside {
            float: right;
            width: 25%;
        }
            main .content-container aside article {
                background: #eee;
                margin: 10px 0;
                border-radius: 5px;
                padding: 15px;
                box-sizing: border-box;
            }
                main .content-container aside article h2 {
                    text-transform: uppercase;
                    font-size: 25px;
                    line-height: 25px;
                    border-bottom: 2px #000 dashed;
                    padding-bottom: 15px;
                }
                main .content-container aside article ul.upcoming-events-list {
                    list-style: none;
                    margin-top: 10px;
                }
                    main .content-container aside article ul.upcoming-events-list li {
                        border-bottom: 1px #bbb dotted;
                        padding: 5px 0;
                    }
                    main .content-container aside article ul.upcoming-events-list li:last-child {
                        border-bottom: 0;
                    }
                        main .content-container aside article ul.upcoming-events-list li strong {
                            font-size: 20px;
                        }
                        main .content-container aside article ul.upcoming-events-list li p.date {
                            padding: 5px 0;
                            font-weight: 300;
                            font-size: 18px;
                        }
                        main .content-container aside article ul.upcoming-events-list li p.info {
                            padding: 5px 0;
                            font-weight: 400;
                            font-size: 16px;
                        }

    main .copyright {
        width: 100%;
        background: #111;
        margin-top: 10px;
        color: #ddd;
        font-weight: 300;
    }
        main .copyright .copyright-container {
            margin: 0 auto;
            width: 95%;
            max-width: 1600px;
            font-size: 16px;
            padding: 15px 0;
        }
        main .copyright .copyright-container:after {
            content: "";
            clear: both;
            display: block;
        }
            main .copyright .copyright-container .left {
                float: left;
                font-size: 14px;
            }
                main .copyright .copyright-container .left span {
                    font-weight: 700;
                }
                main .copyright .copyright-container .left a {
                    font-weight: 300;
                    color: #ccc;
                }
            main .copyright .copyright-container .right {
                float: right;
            }
                main .copyright .copyright-container .right a {
                    color: #fff;
                    display: inline-block;
                    font-size: 25px;
                    line-height: 25px;
                    padding: 0 5px;
                }
                main .copyright .copyright-container .right a:hover {
                    color: #ddd;
                }

.message {
    display: block;
    border-radius: 5px;
    color: #eee;
    padding: 15px 10px;
    font-size: 18px;
    box-sizing: border-box;
    margin: 10px 0;
}
.message.error {
    background: #c0392b;
}

a.button {
    border-radius: 5px;
    color: #eee;
    padding: 15px 10px;
    font-size: 18px;
    box-sizing: border-box;
    text-decoration: none;
    margin: 5px 5px 5px 0;
    display: inline-block;
    background: #8E44AD;
    text-align: center;
    font-weight: 400;

    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -kthtml-transition: all 0.15s linear;
    transition: all 0.15s linear;
}
aside a.button {
    font-weight: 300;
}
a.button.full-width {
    width: 100%;
}
a.button:hover {
    background: #9B59B6;

    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -kthtml-transition: all 0.15s linear;
    transition: all 0.15s linear;
}
a.button.transparent-purple {
    background: rgba(142, 68, 173, 0.75);
}
a.button.transparent-purple:hover {
    background: rgba(155, 89, 182, 0.75);
}
a.button.grey {
    background: #666;
}
a.button.grey:hover {
    background: #777;
}
a.button.blue {
    background: #2980b9;
}
a.button.blue:hover {
    background: #3498db;
}

table.upcoming-events-table {
    border-collapse: collapse;
    width: 100%;
    background: #292929;
}
    table.upcoming-events-table tr:nth-child(even) {
        background: #333;
        border-radius: 5px;
        overflow: hidden;
    }
        table.upcoming-events-table tr td {
            padding: 5px 15px;
        }
        table.upcoming-events-table tr td.date {
            font-weight: 300;
            font-size: 20px;
        }
        table.upcoming-events-table tr td.event {
            font-size: 20px;
        }
        table.upcoming-events-table tr td.location {
            font-size: 18px;
            font-weight: 300;
        }
        table.upcoming-events-table tr td.tickets {
            text-align: right;
        }