/* 
	CSS Reset technique copied from Eric Meyer
	http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
*/
@import url("reset.css");

/* Reset */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, font, img, ul, li {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

:focus {
	outline: 0;
}
/* // Reset */
html.presentation {
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#990000));
	background: -webkit-linear-gradient(#ffffff, #990000);
	background: -moz-linear-gradient(#ffffff, #990000);
	background: -o-linear-gradient(#ffffff, #990000);
	background: linear-gradient(#ffffff, #990000);
	background-color: #990000;
	background-repeat: no-repeat;
	height: 100%;
}

:focus { outline: 1px dotted black; }

.larger { font-size: larger; }

body {
	font-family: Georgia, Verdana, “Lucida Sans Unicode”, sans-serif;
	color: #444;
}

em { font-style: italic; }

.rightTriangle {
	background-image: url(rightTriangle.png);
	background-repeat: no-repeat; 
	background-position: 100% 84px;
	width: 100%;
	padding: 0px 7px 0px 8px;
	overflow: visible;
}

.leftTriangle {
	background-image: url(leftTriangle.png);
	background-repeat: no-repeat; 
	background-position: 0px 84px;
	width: 100%;
	margin-left: -15px;
	padding: 0 15px;
	overflow: visible;
}

#navigation { text-align: center; }

#navigation li {
		display: inline;
		border-right: 2px solid black;
		padding-right: 10px;
		padding-left: 5px;
		font-size: larger;
}

#navigation li.last { border: none; }

h1 {
	font-style: italic;
	font-weight: normal;
}

h1 a, h1 a:hover, h1 a:link, h1 a:visited { text-decoration: none; color: white; }

header h2 { text-align: center; font-size: small; font-weight: normal; }

html.presentation .bubble { background: #fff; }

.bubble {
	clear: both;
	margin: 30px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
  	-webkit-border-radius: 10px;
  	border-radius: 10px;
	-moz-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
  	-khtml-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
  	-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
  	box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
	position: relative;
}

.rectangle {
	background: #990000; 
	height: 44px;
	width: 100%;
	position: relative;
	margin-top: 30px;
	margin-left: -15px;
	margin-bottom: 10px;
	padding: 0px 15px;
	padding-top: 10px; 
	overflow: visible;
	float: left;
	-moz-box-shadow: 0px 0px 4px rgba(0,0,0,0.55);
    -khtml-box-shadow: 0px 0px 4px rgba(0,0,0,0.55);
    -webkit-box-shadow: 0px 0px 4px rgba(0,0,0,0.55);
    box-shadow: 0px 0px 4px rgba(0,0,0,0.55);
	font-size: 30px;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	text-align: center;
}

article.presentation, div.presentation { color: black; font-size: x-large; }

.info {
	margin: 20px 25px 10px 25px;
	border-bottom: 1px solid black;
}

.info p {
	padding-top: 10px;
	line-height: 1.3em;
}

.bottompadding { padding-bottom: 10px; }
.toppadding { padding-top: 10px; }
.bottomborder { border-bottom: 1px solid black; }
h2.content { font-weight: bold; }

ol { list-style-type: decimal; }

.info ul li { line-height: 1.3em; padding-top: 10px; }

.info dd { padding-bottom: 10px; line-height: 1.2em; }

.info ul.presentation { list-style-type: circle; color: black; margin-left: 10px; }
.info ul.presentation ul { list-style-type: disc; font-size: large; margin-left: 2.5em; }
.info ul.presentation ol { font-size: large; margin-left: 0.5em; }
.info ul.presentation li img { display: block; padding-top: 5px; width: 320px; border: 1px solid black; }

.info .smaller { font-size: smaller; }

.info h2 { font-weight: bold; font-size: large; font-variant: small-caps; padding-top: 10px; }
.info h3 { font-weight: bold; padding-top: 8px; }
.info p.nopadding { padding: 0; }
.info p.description { padding-left: 1em; }

a, a:link, a:visited {
	color: #990000;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.nofooter { border: none; }

footer ul li { padding-right: 3px; display: inline; }
footer ul li.last { text-align: right; float: right; }
footer ul { padding: 0 20px 10px 20px; }
footer ul.slide1 { text-align: right; }