/* should the browser window be wider than 3200px, center it */
/* hide any content that may overflow (the edges of the scaled product images for example) */
/*#popwebinar {
	max-width: 960px; 
	overflow: hidden; 
	margin-right: auto;
	margin-left: auto;
	background-image: url(../../images/bg.jpg);
	-webkit-animation: dragIn 1s linear 1 normal forwards;
}*/

.tn-box {
	/*width: 360px;*/
	max-width: 960px;
	overflow: hidden;
	display: none;
	position: relative;
	margin: 2px auto 0px auto;
	padding: 25px 15px;
	text-align: left;
	border-radius: 5px;
	box-shadow: 0 1px 1px rgba(0,0,0,0.1), 
        inset 0 1px 0 rgba(255,255,255,0.6);
	opacity: 0;
	cursor: default;
	/*    display: none;*/	
	-webkit-animation: fadeOut linear forwards;
	-moz-animation: fadeOut linear forwards;
	-o-animation: fadeOut linear forwards;
	-ms-animation: fadeOut linear forwards;
	animation: fadeOut linear forwards;
    
	-webkit-animation-duration: 16s;
	-moz-animation-duration: 16s;
	-o-animation-duration: 16s;
	-ms-animation-duration: 16s;
	animation-duration: 16s;
    
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	-o-animation-delay: 0.4s;
	-ms-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
 
.tn-box-color-1{
    background: #ffe691;
/*	background-image: url(../images/bg.jpg);*/    
    border: 1px solid #f6db7b;
}
.tn-box p {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 16px;
	margin: 0;
	padding: 0 10px 0 60px;
	text-shadow: 0 1px 1px rgba(255,255,255,0.6);
}
.tn-box p:before{
	text-align: center;
	border: 1px solid rgba(133,74,60,1);
	margin-top: -17px;
	top: 50%;
	left: 20px;
	width: 30px;
	content: 'i';
	font-size: 30px;
	color: rgba(133,74,60,1);
	position: absolute;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}
.tn-progress {
    width: 0;
    height: 4px;
    background: rgba(255,255,255,0.3);
    position: absolute;
    bottom: 5px;
    left: 2%;
    border-radius: 3px;
    box-shadow: 
    inset 0 1px 1px rgba(0,0,0,0.05), 
    0 -1px 0 rgba(255,255,255,0.6);
    
    -webkit-animation: runProgress linear forwards 0.5s;
	-moz-animation: runProgress linear forwards 0.5s;
    -o-animation: runProgress linear forwards 0.5s;
    -ms-animation: runProgress linear forwards 0.5s;
    animation: runProgress linear forwards 0.5s;

	-webkit-animation-duration: 14.5s;
	-moz-animation-duration: 14.5s;
	-o-animation-duration: 14.5s;
	-ms-animation-duration: 14.5s;
	animation-duration: 14.5s;
	
	-webkit-animation-delay: 0.9s;
	-moz-animation-delay: 0.9s;
	-o-animation-delay: 0.9s;
	-ms-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

/*@-webkit-keyframes dragIn {
    0%  { -webkit-transform: translateY(-200px); }
    100% { -webkit-transform: translateY(0px); }*/

@-webkit-keyframes fadeOut {
    0%  { opacity: 0; }
    55% { opacity: 0.9; }
    90% { opacity: 1; -webkit-transform: translateY(0px);}
    99% { opacity: 0; -webkit-transform: translateY(-30px);}
    100% { opacity: 0; }
}
@-moz-keyframes fadeOut {
	0% { opacity: 0; }
	55% { opacity: 1; }
	90% { opacity: 1; -moz-transform: translateY(0px);}
	99% { opacity: 0; -moz-transform: translateY(-30px);}
	100% { opacity: 0; }
}

@-o-keyframes fadeOut {
	0% { opacity: 0; }
	55% { opacity: 1; }
	90% { opacity: 1; -o-transform: translateY(0px);}
	99% { opacity: 0; -o-transform: translateY(-30px);}
	100% { opacity: 0; }
}

@-ms-keyframes fadeOut {
	0% { opacity: 0; }
	55% { opacity: 1; }
	90% { opacity: 1; -ms-transform: translateY(0px);}
	99% { opacity: 0; -ms-transform: translateY(-30px);}
	100% { opacity: 0; }
}

@keyframes fadeOut {
	0% { opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; transform: translateY(0px);}
	99% { opacity: 0; transform: translateY(-30px);}
	100% { opacity: 0; }
}

@-webkit-keyframes runProgress {
    0%  { width: 0%; background: rgba(142,75,75,0.3); }
    100% { width: 96%; background: rgba(142,75,75,1); }
}
@-moz-keyframes runProgress {
	0%{ width: 0%; background: rgba(142,75,75,0.3); }
	100%{ width: 96%; background: rgba(142,75,75,1); }
}

@-o-keyframes runProgress {
	0%{ width: 0%; background: rgba(142,75,75,0.3); }
	100%{ width: 96%; background: rgba(142,75,75,1); }
}

@-ms-keyframes runProgress {
	0%{ width: 0%; background: rgba(142,75,75,0.3); }
	100%{ width: 96%; background: rgba(142,75,75,1); }
}

@keyframes runProgress {
	0%{ width: 0%; background: rgba(142,75,75,0.3); }
	100%{ width: 96%; background: rgba(142,75,75,1); }
}

/* If you use JavaScript you could add a class instead: 

.tn-box.tn-box-active {
	display: block;
	-webkit-animation: fadeOut 5s linear forwards;
	-moz-animation: fadeOut 5s linear forwards;
	-o-animation: fadeOut 5s linear forwards;
	-ms-animation: fadeOut 5s linear forwards;
	animation: fadeOut 5s linear forwards;
}

.tn-box.tn-box-active .tn-progress {
	-webkit-animation: runProgress 4s linear forwards 0.5s;
	-moz-animation: runProgress 4s linear forwards 0.5s;
	-o-animation: runProgress 4s linear forwards 0.5s;
	-ms-animation: runProgress 4s linear forwards 0.5s;
	animation: runProgress 4s linear forwards 0.5s;
}
*/

/*.tn-box.tn-box-hoverpause:hover, 
.tn-box.tn-box-hoverpause:hover .tn-progress{
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	-o-animation-play-state: paused;
	-ms-animation-play-state: paused;
	animation-play-state: paused;
}*/
