/* === CSS RESET === */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 62.5%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* === End of CSS RESET === */

html, body { height: 100%; min-height: 100%; }
body {
	background: #000;
	color: white;
	font-size: 1em;
	font-family: 'Oxygen', sans-serif;
	overflow: hidden;
}
h1 {
	font-size: 75px;
	font-weight: bold;
	line-height: 1.5em;
	text-shadow: 
		2px 2px 0 transparent,
		4px 4px 0 #101010;
}

a, a:visited {
	color: white;
	text-decoration: none;
	border-bottom: 2px dotted;
	transition: color 0.2s;
}

a:hover {
	color: #AAA;
}

a:active {
	color: lightblue;
}

/* === Presentatios Style === */

p { font-size: 2.6em; }

.hide { display: none; }

.presentation { 
	position: relative;
	height: 100%;
}
.presentation .slide { 
	position: absolute;
	width: 100%;
	text-align: center; 
	top: 50%;
	background: #000;
	display: none;
}
.presentation .slide.slide-0 { display: block; }

.ohm2013-rgb { 
	opacity: 0.4;
	-moz-animation: blink normal 5s infinite ease-in-out;
}

.smiley .smile { 
	font-size: 2em; 
	position: relative;
	display: block;
	-moz-transition: 0.2s all ease-in-out;
}
.smiley .smile.shake {
	font-size: 4em;
	-moz-animation: shake normal 1.8s ease-in-out;
}

.ohm2013-place-map .map-container {
	display: inline-block;
	position: relative;
}
.ohm2013-place-map .map-container .marker {
	position: absolute;
	top: 200px;
	left: 260px;
	width: 0;
	height: 0;
	border: 0px solid #f00;
	border-radius: 50%;
	opacity: 0;
	background: rgba(255,0,0,0.1);
	-moz-transition: 0.2s all ease-in-out;
}
.ohm2013-place-map .map-container .marker.visible {
	width: 40px;
	height: 40px;
	top: 175px;
	left: 235px;
	opacity: 1;
	border-width: 5px;
	-moz-animation: circular-movement normal 0.6s ease-in-out;
}

@-moz-keyframes blink { 
	0% { opacity: 0.2; } 
	1% { opacity: 1; }
	2% { opacity: 0.2; }
	3% { opacity: 1; }
	4% { opacity: 0.6; }
	5% { opacity: 0.2; }
	6% { opacity: 0.6; }
	7% { opacity: 0; }
	8% { opacity: 1; }
	9% { opacity: 0.8; }
	10% { opacity: 1; }
	95% { opacity: 0.2; }
	100% { opacity: 0; }
}

@-moz-keyframes shake {
	0% { transform: rotate(0deg); }
	10% { transform: rotate(20deg); }
	20% { transform: rotate(-20deg); }
	30% { transform: rotate(10deg); }
	40% { transform: rotate(-10deg); }
	50% { transform: rotate(5deg); }
	60% { transform: rotate(-5deg); }
	70% { transform: rotate(2deg); }
	80% { transform: rotate(-2deg); }
	90% { transform: rotate(1deg); }
	100% { transform: rotate(-1deg); }
}

@-moz-keyframes circular-movement { 
	0% { left: 235px; top: 175px; }
	20% { left: 230px; }
	40% { left: 240px; }
	60% { left: 232px; top: 178px; }
	80% { left: 238px; top: 172px; }
	90% { left: 234px; top: 176px; }
	95% { left: 236px; top: 174px; }
	100% { left: 235px; top: 175px; }
}
