

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: 100%;
    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;
}

/*
    Now here is when interesting things start to appear.

    We set up <body> styles with default font and nice gradient in the background.
    And yes, there is a lot of repetition there because of -prefixes but we don't
    want to leave anybody behind.
*/
body {
    font-family: 'PT Sans', sans-serif;
    min-height: 740px;

    background: rgb(215, 215, 215);
    background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 500, from(rgb(240, 240, 240)), to(rgb(190, 190, 190)));
    background: -webkit-radial-gradient(rgb(240, 240, 240), rgb(190, 190, 190));
    background:    -moz-radial-gradient(rgb(240, 240, 240), rgb(190, 190, 190));
    background:     -ms-radial-gradient(rgb(240, 240, 240), rgb(190, 190, 190));
    background:      -o-radial-gradient(rgb(240, 240, 240), rgb(190, 190, 190));
    background:         radial-gradient(rgb(240, 240, 240), rgb(190, 190, 190));

}

/*
    Now let's bring some text styles back ...
*/
b, strong { font-weight: bold }
i, em { font-style: italic }

/*
    ... and give links a nice look.
*/
a {
    color: inherit;
    text-decoration: none;
    padding: 0 0.1em;
    background: rgba(255,255,255,0.5);
    text-shadow: -1px -1px 2px rgba(100,100,100,0.9);
    border-radius: 0.2em;

    -webkit-transition: 0.5s;
    -moz-transition:    0.5s;
    -ms-transition:     0.5s;
    -o-transition:      0.5s;
    transition:         0.5s;
}

a:hover,
a:focus {
    background: rgba(255,255,255,1);
    text-shadow: -1px -1px 2px rgba(100,100,100,0.5);
}

/*
    Because the main point behind the impress.js demo is to demo impress.js
    we display a fallback message for users with browsers that don't support
    all the features required by it.

    All of the content will be still fully accessible for them, but I want
    them to know that they are missing something - that's what the demo is
    about, isn't it?

    And then we hide the message, when support is detected in the browser.
*/

.fallback-message {
    font-family: sans-serif;
    line-height: 1.3;

    width: 780px;
    padding: 10px 10px 0;
    margin: 20px auto;

    border: 1px solid #E4C652;
    border-radius: 10px;
    background: #EEDC94;
}

.fallback-message p {
    margin-bottom: 10px;
}

.impress-supported .fallback-message {
    display: none;
}

/*
    Now let's style the presentation steps.

    We start with basics to make sure it displays correctly in everywhere ...
*/

.step {
    position: relative;
    width: 900px;
    padding: 40px;
    margin: 20px auto;
	
	border: 2px solid;

    -webkit-box-sizing: border-box;
    -moz-box-sizing:    border-box;
    -ms-box-sizing:     border-box;
    -o-box-sizing:      border-box;
    box-sizing:         border-box;

    font-family: 'Open Sans','PT Serif', georgia, serif;
    font-size: 48px;
    line-height: 1.5;
}

/*
    ... and we enhance the styles for impress.js.

    Basically we remove the margin and make inactive steps a little bit transparent.
*/
.impress-enabled .step {
    margin: 0;
    opacity: 0.3;

    -webkit-transition: opacity 1s;
    -moz-transition:    opacity 1s;
    -ms-transition:     opacity 1s;
    -o-transition:      opacity 1s;
    transition:         opacity 1s;
}

.impress-enabled .step.active { opacity: 1 }


div.dialog2, div.dialog3, div.dialog4, div.dialog5 {
	padding:15px;
	font-family:  "lint-mccree";
	font-size:18px;
	background-color:#fff;
}

#doorway {
	border:none;
}

#doorway svg {
	position:absolute;top:-400px;left:0px;z-index:-2;
}

#doorway div.dialog1 {
	position: absolute;top:-325px;left:-60px;
	width: 500px;
	padding:15px;
	font-family:  "lint-mccree";
	font-size:18px;
	background-color:#ccc;
}

#doorway  span.titling {
	font-style: italic;
	font-family:  "lint-mccree";
}

#doorway div.dialog2 {
	position: absolute;top:-325px;left:510px;
	width: 450px;
	background-color:#ccc;
}

#stage1 {
	border:none;
}

#stage1 svg {
	position:absolute;top:-250px;left:-50px;z-index:-2;
}

#stage1 div.dialog1 {
	position: absolute;top:-300px;left:0px;
	width: 200px;
	padding:15px;
	font-family:  "lint-mccree";
	font-size:18px;
	background-color:#ccc;
}

.titling {
	font-style: italic;
	font-family:  "lint-mccree";
}

.strong {
	font-weight: 700;
	font-style: italic;
	font-family:  "lint-mccree";
}

#stage1 div.dialog2 {
	position: absolute;top:-300px;left:525px;
	width: 400px;
}

#lecturn {
	border: none;
}

#lecturn svg {
	position:absolute;top:-325px;left:150px;z-index:-2;
}

#lecturn div.dialog2 {
	position: absolute;top:-150px;left:0px;
	width: 200px;
}

#whois {
	border:none;
}

#whois svg {
		position:absolute;top:-295px;left:-65px;z-index:-2;
}

#isItFreud {
	border: none;
}

#isItFreud svg {
	position:absolute;top:-420px;left:-150px;z-index:-2;
}


#isItFreud div.dialog2 {
	position: absolute;top:-200px;left:400px;
	width: 200px;
}

#isItFreud div.dialog3 {
	position: absolute;top:-0px;left:650px;
}
#isItFreud div.dialog4 {
	position: absolute;top:150px;left:350px;
}
#isItFreud div.dialog5 {
	position: absolute;top:200px;left:525px;
}

#notFreud {
	border: none;
}

#notFreud svg {
	position:absolute;top:-220px;left:350px;z-index:-2;
}

#notFreud div.dialog2 {
	position: absolute;top:-245px;left:-15px;
	width: 400px;
}

#notFreud div.dialog3 {
	position: absolute;top:-245px;left:650px;
}

#notorious {
	border:none;
}

#notorious svg {
	position:absolute;top:-350px; left:0px;
}
#notorious div.dialog2 {
	position: absolute;top:-355px;left:50px;
	width:300px;
}


#transitional1 { border: none}

#transitional1 svg {
	position:absolute;top:-250px;left:0px;z-index:-2;
}

#transitional1 div.dialog2 {
	width: 350px;
	position:absolute;left:550px;top:-90px;

}

#meeting {
	border: none;
}

#meeting svg {
	position: absolute; left: 0px; top:-525px;
}

#meeting div.dialog2 {
	position:absolute; left:0px; top:-325px;
}

#background {
	border:none;
}

#background svg {
	position: absolute; left:25px; top:-225px;
}

#background div.dialog2 {
	position: absolute;left:-100px; top:-275px;
	width: 300px;
}
#epistemology {
	border:none;
}

#epistemology svg{
	position: absolute;left:0px; top:-200px;
}
#epistemology div.dialog2 {
	position: absolute;left:0px; top:-325px;
	width: 350px;
}

#empiricists {
	border:none;
}

#empiricists svg {
	position: absolute; left:0px; top:-400px;
}
#empiricists div.dialog2 {
	position: absolute; left:400px; top:-225px;
}
#empiricists div.dialog3 {
	position: absolute; left:400px; top:200px;
}

#biology  {
	border:none;
}

#biology.future {
	display:none;
}

#biology div.dialog2 {
	position: absolute; left:400px; top:-325px;
	width: 350px;
}

#biology svg{
	position: absolute;left:0px; top:-200px;
}

#evolution {
	border:none;
}

#evolution svg {
	position: absolute; left:0px; top:-400px;
}
#evolution div.dialog2 {
	position:absolute; left:400px; top:-325px;
	width:350px;
}

#evolution div.dialog3 {
	position:absolute; left:400px; top:0px;
	width:350px;
}

#pedagogy  {
	border:none;
}

#pedagogy.future {
	display:none;
}

#pedagogy div.dialog2 {
	position: absolute; left:400px; top:175px;
	width: 350px;
}

#pedagogy svg {
	position: absolute;left:0px; top:-500px;
}

#stage2 {
	border:none;
}

#stage2 svg {
	position:absolute;top:-250px;left:-50px;z-index:-2;
}

#stage2 div.dialog1 {
	position: absolute;top:-300px;left:0px;
	width: 200px;
	padding:15px;
	font-family:  "lint-mccree";
	font-size:48px;
	background-color:#ccc;
}

#stage2 div.dialog2 {
	position: absolute;top:-300px;left:525px;
	width: 450px;
}

#closing {
	border: none;
}

#closing div.acknowledgments {
	font-size:18px;
}



.impress-enabled          { pointer-events: none }
.impress-enabled #impress { pointer-events: auto }

