.ccem-hr {
    height: 5px;
    width:50%;
}
.blank-header {
    height: 90px;
}

/* extra style to common html */
h2 {
    margin-bottom: 14px;
}

h4 {
    margin-bottom: 10px;
}

/* --------------CCEM COMPONENT STYLE------------------------*/
.imp-info{
  /*display: table;*/
  margin-right: auto;
  margin-left: auto;
  text-align: left;
  
}
.imp-info-content{
    display: table;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
}

.section-committee ul{
    list-style: none;
    list-style-position:inside;
    margin: 0;
    padding: 0px;
}
.section-committee h5,h6{
    margin-top: 2em;
    margin-bottom: 12px;
}

.cfp-section{
    margin: 12px;
}
.section-sponsors img{
    width: 150px;
}
.section-sponsors{
    border-top-style: dotted;
    border-top-width: 1px;
    border-top-color: rgb(78, 52, 46);
}

.section-footer {
    padding-top: 15px;
    padding-bottom: 0px;
    border-top-style: none;
    border-top-width: 1px;
    border-top-color: rgb(78, 52, 46);
    
}

.footer{
    padding-top: 5px;
    padding-bottom: 0px;
    position: absolute;
}



/* animation */
.slideanim {visibility:hidden;}
.slide {
    /* The name of the animation */
    animation-name: slide;
    -webkit-animation-name: slide;
    /* The duration of the animation */
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(90%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(90%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}