@charset "utf-8";
/* CSS Document */

* {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    
    
}

html, body {
	width: 100%;
	overflow-x: hidden;
    background: #000000;
    color: #FFFFFF;
    font-family: 'Open Sans';
    background-image: url("../images/laser-bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}


@keyframes rainbow {
		100%,0%{color: rgb(255,0,0);}
		8%{color: rgb(255,127,0);}
		16%{color: rgb(255,255,0);}
		25%{color: rgb(127,255,0);}
		33%{color: rgb(0,255,0);}
		41%{color: rgb(0,255,127);}
		50%{color: rgb(0,255,255);}
		58%{color: rgb(0,127,255);}
		66%{color: rgb(0,0,255);}
		75%{color: rgb(127,0,255);}
		83%{color: rgb(255,0,255);}
		91%{color: rgb(255,0,127);}
	}

@keyframes bounce {
	0%, 100%, 20%, 50%, 80% {
		-webkit-transform: translateY(0);
		-ms-transform:     translateY(0);
		transform:         translateY(0)
	}
	40% {
		-webkit-transform: translateY(-6px);
		-ms-transform:     translateY(-6px);
		transform:         translateY(-6px)
	}
	60% {
		-webkit-transform: translateY(-3px);
		-ms-transform:     translateY(-3px);
		transform:         translateY(-3px)
	}
}

/********************

CORE STRUCTURE

********************/

.bar-gray {
	width: 100%;
	background: rgb(51,51,51);
	background: -webkit-linear-gradient(left, rgba(51,51,51,0.8) 0%, rgba(51,51,51,0.3) 100%);
	background: -o-linear-gradient(left, rgba(51,51,51,0.8) 0%, rgba(51,51,51,0.3) 100%);
	background: linear-gradient(to right, rgba(51,51,51,0.8) 0%, rgba(51,51,51,0.3) 100%);
}

.bar-white {
	width: 100%;
	background: rgb(255,255,255);
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.2) 100%);
	background: -o-linear-gradient(left, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.2) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.2) 100%);
}

.section {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
	padding: 100px 0px 50px 0px;
	clear: both;
	overflow-y: auto;
	overflow-x: hidden;
	
}

    .section:first-of-type {
        padding: 50px 0px 50px 0px;
}

.left {
    width: 100%;
}

.right {
    width: 100%;
}


audio {
	display: table;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0px 0px 0px 0px;
}

/********************

TEXT STYLES

********************/

h1 {
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FFFFFF;
    font-size: 24px;
    font-weight: 700;
	animation: rainbow 20.0s linear;
	animation-iteration-count: infinite;
}

h2 {
	margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

h3 {
	margin-bottom: 40px;
    font-size: 18px;
    font-weight: 500;
	text-align: center;
}

p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75em;
}

a {
	color: #FFFFFF;
	text-decoration: underline;
}

	p a:hover, .more-info a:hover {
		animation: rainbow 10.0s linear;
		animation-iteration-count: infinite;
	}

/********************

IMAGE STYLES

********************/

img {
    
}

.right img {
	width: 100%;
	max-width: 150px;
	max-height: 150px;
    margin-bottom: 30px;
    cursor: zoom-in;
}

.right p {
	text-align: left;
	font-size: 12px;
	padding: 20px 0px 20px 0px;
}


/********************

BRAND MENU

********************/

.more-info-button {
	display: none !important;
	}

.more-info {
	display: none !important;
}

.overlay {
	display: none !important;
}

#watermark {
	display: none !important;
}

#watermark img{
	display: none !important;
}

/********************

SCREEN AND MOBILE MENU

********************/

.mobile-menu {
	width: 100%;
	position: fixed;
	z-index: 9999;
}
	
	.mobile-menu a {
		display: block;
		height: 50px;
		width: 100%;
		text-align: center;
		background-color: #000000;
		color: #ffffff;
		text-decoration: none;
		text-transform: uppercase;
		letter-spacing: 1px;
		line-height: 1.5em;
		font-size: 1em;
		
		box-sizing: border-box;
		padding: 10px;
			
	}

.screen-menu {display: none !important;}

.transcript_link {
	cursor: pointer;
	font-weight: 500;
	margin-top: 20px;
	text-align: center;
}

.transcript {
	padding: 25px;
}


/******************** 

FOOTER

********************/

.footer {
	width: 100%;
	background-color: #000000;
	border-top: 1px solid #eeeeee;
	box-sizing: border-box;
	padding: 20px 0px 20px 0px;
}

	.footer a {
		text-decoration: none;
		text-align: center;
		color: #FFFFFF;
		font-size: 16px;
		display: block;
		padding: 5px 0px 5px 0px;
		animation: rainbow 10.0s linear;
		animation-iteration-count: infinite;
	}


/******************** 

ANIMATION 

********************/


#bm { 
	width: 100%;
	margin: 100px auto 0px auto;
}