/* universal selector */
* { 
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
}

body {
	/* together, these two keep page content flush to the top */
	margin: 0;
	padding: 0;

	background-color: #6e20a0; /* purple */

	z-index: 0;
	position: relative; 

	/* this would be great if I could get it to work for the entire page without repeating */
	/*height: 100%;
	background: -webkit-gradient(linear, left top, right bottom, from(#471466), to(#952bd6));*/
}


#wrapper {
	margin: 0 auto; /* centers wrapper horizontally in browser window, flush to the top */
	width: 800px;
	background-color: white;

	/* CSS3 Definitions */
	-webkit-box-shadow: 3px 3px 20px black;
	-moz-box-shadow: 3px 3px 20px black;
	box-shadow: 3px 3px 20px black;

	-webkit-border-bottom-right-radius: 40px;
	-moz-border-radius-bottomright: 40px;
	border-bottom-right-radius: 40px;
	-webkit-border-bottom-left-radius: 40px;
	-moz-border-radius-bottomleft: 40px;
	border-bottom-left-radius: 40px;
}

#header {
	text-align: center;
	height: 130px;
	overflow: hidden; /* helps keeps the header pinned to the top of the browser window */
	padding-top: 20px;
}


#navbar {
	text-align: center;
	border-bottom: 1px black solid;
	padding-bottom: 15px;
	margin-left: 36px;
	margin-right: 36px;
}

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

#navbar a:hover, #navbar a:active {
	color: black;
}

#navbar a.current {
	font-weight: bolder;
	text-decoration: none;
}

#navbar a.spaced {
	padding-right: 15px;
}

#content {
	min-height: 400px;
	margin-left: 72px;
	margin-right: 72px;

	z-index: 1;
	position: relative; 
}

.thumbnail a:link, a:visited {
	text-decoration: none;
}

.thumbnail a:hover, a:active {
	text-decoration: none;
}

.thumbnail img {
	border: 1px solid black;
	width: 100px;
	height: 100px;
}

.thumbnail span {
	position: absolute;
	background-color: transparent;
	border-width: 0px;
	visibility: hidden;
	text-decoration: none;
}

.thumbnail span img {
	border-width: 0px;
	width: 160px;
	height: 240px;
}

.thumbnail:hover span {
	visibility: visible;
	top: 123px;
	left: 46px;
	z-index: 50;
}

#footer {
	padding: 5px 10px;
	text-align: center;
	color: gray;
	font-size: 9px;
	line-height: 11px;
}

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

#footer a:hover, #footer a:active {
	color: black;
}


h1, h3 {
	text-align: center;
}

.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	display: block;
}

em {
	font-style: oblique;
}


strong { 
	font-weight: bolder;
}

input.text {
	padding: 3px;
	border: 2px solid #6e20a0;
}

textarea {
	width: 490px;
	height: 200px;
	padding: 3px;
	border: 2px solid #6e20a0;
}

input:focus, textarea:focus {
	background-color: #e1e1ff; /* light pale purple */
	outline-color: #6e20a0; /* purple */
	/* outline: 0 none; */
}
