
/* image thumbnail */
.thumb {
    display: block;
    width: 100%;
    margin: 0;
}

/* Style to article Author */
.by-author {
    font-style: italic;
    line-height: 1.3;
    color: #aab6aa;
}
.by-content{
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main Article [Module]
-------------------------------------
* Featured Article Thumbnail
* have a image and a text title.
*/
.featured-article {
    width: 500px;
    height: 375px;
    position: relative;
    margin-bottom: 1em;
    box-shadow: 0px 0px 1px #0f0f0f;
}
.featured-article img{
    width: 100%;
    height: 100%;
}
.featured-article .block-title {
    /* Position & Box Model */
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    /* background */
    background: rgba(0,0,0,0.7);
    /* Width/Height */
    padding: .5em;
    width: 100%;
    /* Text color */
    color: #fff;
}
.featured-article .block-title h2 {
    margin: 0;
}

/* Featured Articles List [BS3]
--------------------------------------------
* show the last 3 articles post
*/

.main-list {
    padding-left: .5em;
}

.main-list .media-object{
    width: 150px;
    height: 90px;
    box-shadow: 0px 0px 1px #0f0f0f;
}

.main-list .media {
    padding-bottom: 1.1em;
    border-bottom: 1px solid #e8e8e8;
}


#divNewsList h4 a{
    font-weight: bold;
    color: rgb(64, 64, 64);
}
#divNewsList a:not(.btn){
    color: rgb(64, 64, 32);
    text-decoration: none;
}
#divNewsList .featured-article a{
    color: whitesmoke;
}
#divNewsList a:hover{
    opacity:0.7;
}
#divAddNews #divAddNewsForm,#divEditNews #divEditNewsForm,#divNewsList{
    background-color: white;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 25px 50px;
    border-radius: 5px;
    border: solid 2px rgba(0,0,0,.1);
    box-shadow: white 0px 0px 2px;
}
#divViewNews{
    background-color: white;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 5px;
    border: solid 2px rgba(0,0,0,.1);
    box-shadow: white 0px 0px 2px;
}
#divViewNews h1 a:not(.btn){
    font-weight: bold;
}
#divViewNews a:not(.btn){
    color: rgb(64, 64, 64);
    text-decoration: none;
}
#divViewNews a:not(.btn):hover{
    opacity:0.7;
}
#btnShowMore{
    margin-bottom: 20px;
}

.fb-share-button > span{
    vertical-align: baseline !important;
}

.cuadro_intro_hover{
    padding: 0px;
    position: relative;
    overflow: hidden;
    height: 200px;
}
.cuadro_intro_hover:hover .caption{
    opacity: 1;
    transform: translateY(-150px);
    -webkit-transform:translateY(-150px);
    -moz-transform:translateY(-150px);
    -ms-transform:translateY(-150px);
    -o-transform:translateY(-150px);
}
.cuadro_intro_hover img{
    z-index: 4;
}
.cuadro_intro_hover .caption{
    position: absolute;
    top:150px;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
    width: 100%;
}
.cuadro_intro_hover .blur{
    background-color: rgba(0,0,0,0.7);
    height: 300px;
    z-index: 5;
    position: absolute;
    width: 100%;
}
.cuadro_intro_hover .caption-text{
    z-index: 10;
    color: #fff;
    position: absolute;
    height: 300px;
    text-align: center;
    top:-20px;
    width: 100%;
}


@media only screen and (max-width: 768px){
    .featured-article {
        width: 100%;
        height: auto;
    }
}


