/* Styles to go here */
#digiscape_imagazine_wrapper {
    min-height:600px;
}

.magazine {
    overflow:hidden;
    width:100%;
    margin-top:20px;
}

.magazine-column {
    margin-top:15px;
}

.magazine .magazine_first_col {
    float:left;
    width:50%;
}

.magazine .magazine_second_col {
    float:left;
    width:50%;
}

.magazine_first_col div:first-child {
    width:50%;
    margin: 0 auto;
    text-align:center;
}

.magazine_title {
    margin-bottom:5px;
}

/* Article back link */
.back_to_articles_link {
    border-radius:5px;
    text-align:center;
    padding:5px;
    position:relative;
    top:5px;
}

.back_to_articles_link:before {
    content: "\2190";
    margin-right:2px;
}

.back_to_articles_link:hover {
    background-color:#eee;
}

.article_pagination {
    background-color: #333;
    border-radius: 5px;
    padding: 2px 5px;
    color: white;
}

.article_pagination a {
    color:white;
    font-size:1em!important;
    line-height:1.7em!important;
    font-family: Arial;
    margin:0 2px;
}

.article_pagination .current {
    text-decoration: underline;
    font-size:1em!important;
    line-height:1.7em!important;
    font-family: Arial;
}

.article_pagination div {
    text-align:center;
}

.articles_inner_wrapper {
    min-height:455px;
}

.articles_table thead {
    background-color:#333;
    color:white;
    font-weight:bold;
}

.articles_table thead a.article-col-title {
    color:white;
    text-decoration: underline!important;
}

.articles_table tbody tr:nth-child(odd) td {
    background-color:#EDF5FF;
}

.articles_table .magazine-article-row:hover td {
    cursor:pointer;
    background-color:#eee;
}

a.page-numbers {
    text-decoration:none!important;
}

.magazine-article-row a {
    text-decoration: none!important;
}

.back_to_articles_link {
    text-decoration: none!important;
}

.mag-read-button {
    text-decoration: none!important;
}

/* No Articles message */
.no-results-msg {
    text-align: center;
    margin-top: 10px;
    background-color: #333;
    line-height: 2em;
    border-radius: 5px;
    color: white;
}

@media only screen and (min-width:768px){
    .magazine-title-row {
        min-width:230px;
    }
}

@media only screen and (max-width:479px){

    .magazine .magazine_first_col,
    .magazine .magazine_second_col {
        float:none;
        width:100%;
    }
    .magazine-author-row {
        display:none;
    }
    .magazine-author-head {
        display:none;
    }
    .magazine-title-row,
    .magazine-title-head {
        display:none;
    }

}

/* search form */
.search-form input[type="text"]{
    margin: auto;
    display: block;
    width: 89%;
    font-family: sans-serif;
    font-size: 18px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    padding: 10px;
    border: solid 5px #c9c9c9;
    box-shadow: inset 0 0 0 1px #707070;
    transition: box-shadow 0.3s, border 0.3s;
}
.search-form input[type="text"]:focus,
.search-form input[type="text"].focus {
    outline: none;
    border: solid 5px #969696;
}
