    /* CONTENT DIV */
    div.content {
        border-left: 0;
        margin-top: 0;
        padding: 2% 2%;
        width: 100%;
        -webkit-transform: translateZ(0); /* FIX WEBKIT BUG */
    }
        
        /* CARDS */
        div.card {
            background: #000;
            float: left;
            margin-right: -100%;
            margin-bottom: 0.5%;
            overflow: hidden;
            padding: 0;
            position: relative;
            text-align: center;
            
            margin-left: 0.52%;
            margin-top: 0.52%;
            padding-bottom: 10%;
            width: 10%;
            
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            -ms-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }
            div.card_hover1 { cursor: pointer; }
            div.card_in {
                display: block;
                position: absolute;
                top: 0; bottom: 0; right: 0; left: 0;
            }
                img.card_bg {
                    display: block;
                    opacity: 1;
                    position: absolute;
                    width: 100%;
                }
                
                div.card_content,
                a.card_content {
                    background: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBR‌​AA7") 0 0 repeat; /* MAKE CLICKABLE IN IE 10 BY ADDING TRANSPARENT BACKGROUND */
                    color: #fff;
                    display: block;
                    height: 100%;
                    overflow: hidden;
                    position: relative;
                    text-align: center;
                    text-decoration: none;
                }
                    div.card_content table,
                    a.card_content table {
                        border-collapse: collapse;
                        height: 100%;
                        width: 100%;
                    }
                        div.card_content table td,
                        a.card_content table td { vertical-align: middle; }
                        div.card_style_main table td {
                            padding: 0 1% 5% 1%;
                            vertical-align: bottom;
                        }
                
                /* CARD STYLES */
                div.card_hover1 img {
                    opacity: 1;
                    
                    -webkit-transition: opacity 0.4s ease;
                    -moz-transition: opacity 0.4s ease;
                    -ms-transition: opacity 0.4s ease;
                    transition: opacity 0.4s ease;
                }
                div.card_hover1:hover img { opacity: 0.6; }
                
                a.card_content:link, a.card_content:visited, a.card_content:active  {
                    color: #fff;
                    outline: none;
                    text-decoration: none;
                }
                    div.card_content h1,
                    a.card_content h1 {
                        font-family: 'ProximaNova', sans-serif;
                        font-weight: normal;
                        font-size: 140%;
                        letter-spacing: 2px;
                        line-height: 130%;
                        text-transform: uppercase;
                    }
                    div.card_content h2,
                    a.card_content h2 {
                        font-family: 'ProximaNova', sans-serif;
                        font-size: 100%;
                        font-weight: normal;
                        letter-spacing: 1px;
                        line-height: 130%;
                        margin-top: 0;
                        text-transform: uppercase;
                    }
                    div.card_content p,
                    a.card_content p {
                        font-size: 84%;
                        font-style: italic;
                        margin-top: 0;
                        pointer-events: none;
                        position: absolute;
                        text-align: center;
                        width: 100%;
                    }
                    
                    
        /* SECTION CONTENT */
        div.page_copy {
            border: 0;
            clear: both;
            padding: 15px 0.52%;
        }
