
/* HTML DEFAULTS */

/* DEfaults */

/* Default Fonts*/
body {
    
    font-family: 'Work Sans', sans-serif;
    color: #111111;
    background-color: #FFFFFF; 
    

}

h1, h2, h3, h4, h5, h6 {
font-family: 'Crimson', sans-serif;
font-weight: 900;
}


/* Default font size */
h1{
    font-size: 28px;
    letter-spacing: 3px;
}
h2{
    font-size: 20px;
    letter-spacing: 3px;
}
h3{
    font-size: 16px;
    
}
h4{
    font-size: 14px;
    
}


/* default font color*/

h1,h2,h3,h4,h5 {
    color: #337ab7;
}

h2{
    text-transform: uppercase;
}


.ccem-hr {
    height: 2px;
    width:100%;
}
.blank-header {
    height: 90px;
}

/* extra style to common html */
h2 {
    margin-bottom: 14px;
}

h4 {
    margin-bottom: 10px;
}


/* --------------CCEM COMPONENT STYLE------------------------*/

.imp-dates {
    font-size: 12px;
}
.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{
    margin-top: 15px;
    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%);
    }
}


.logo-column {
	margin-bottom: 1em;
	vertical-align: middle;
}

.time_cell {
	width: 10%;
	font-size: 1em;
	font-weight: 600;
	text-transform: uppercase;
	font-family: monospace;
	background-color:#337ab7;
	color: white; 
}

.col-container {
    display: table; /* Make the container element behave like a table */
    width: 100%; /* Set full-width to expand the whole page */
}

.col {
    display: table-cell; /* Make elements inside the container behave like table cells */
}

.home-attraction{
    color: #3b3232;
    background-color: #337ab7;
    font-family: 'Roboto', sans-serif;
    font-family: 'Alfa Slab One', cursive;
    font-family: 'Roboto', sans-serif;
    font-size: 3em;
}

.intorduction{
    background-color: #337ab7;
    /*font-family: 'Archivo Black', sans-serif;
    font-family: 'Miriam Libre', sans-serif;*/
    font-family: 'Heebo', sans-serif;
    font-size: 1.3em;
    line-height: 1.5
}

.tagline {
    /*font-family: 'Archivo Black', sans-serif;
    font-family: 'Miriam Libre', sans-serif;*/
    font-family: 'Heebo', sans-serif;
    text-decoration: underline;
    font-size: 1.1em;
    color: #000000;
    background-color: #FFFFE0;
    opacity: 90%
}

.menulinks {
    font-size: 10em;
    background-color: #E6EC94;
}
 

.blink-text{
    color: #000;
    font-weight: bold;
    animation: blinkingText 1.5s infinite;
    margin-left: 0;
    
}

@keyframes blinkingText{
	
   	0%{	color: #FF003A;}
  	25%{ color: #FFF000;}
	50%{	color: #FFAA02;}
	75%{	color: #FFF000;}
	100%{	color: #FFAA02;}
}




@keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.5; }
    to { opacity: 1.0; }
}                                                                                                                                                                                                                                  

@-webkit-keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.5; }
    to { opacity: 1.0; }
}

.blink2 {
  animation:fade 1000ms infinite;
  -webkit-animation:fade 1000ms infinite;
}