/* ------ Styling for displaying the plant thumbnails ------ */


/* Global Styles */
* {
	margin: 0px;
	padding: 0px;
}

body {
	overflow: auto;
	background-color: #122c4d;
	color: white;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	}

a {
	text-decoration: none;
}

.title {
	margin-top: 0.3em;
	padding-bottom: 5px;
	border-bottom: #FFF dashed 1px;
}
	
#wrapper {
	position: relative;
	width: 996px;
	margin: 0px auto;
}

/* ------ Content styles ----- */
#contents {
	margin: 15px 0 0 0;
	padding: 0px;
	width: 996px;
	height: 715px;
}

#contents h1 {
	font-size: 1.2em;
	}
	
div.thumbnail {
	margin-top: 1.0em;
	margin-right: 15px;
	float: left;
	width: 184px;
	position: relative;
}

#contents div.thumbbutt {
	text-align: left;
	border-bottom: 1px solid #FFF;
	border-left: 1px solid #FFF;
	border-right: 1px solid #FFF;
	margin-top: 0px;
	padding-top: 5px;
	width: 182px;
	overflow: hidden;
	height: 1.35em;
	line-height: 1.35em;
	background-color: white;
}

#contents div.thumbbutt a {
	display: block;
	text-decoration: none;
	font-size: 0.85em;
	text-overflow: clip;
	color: #666;
	background-color: transparent;
	padding-left: 0.4em;
}

#contents div.thumbbutt a:hover {
	color: #0078c0;
}


#contents img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

/* --- How to display the page numbers example; Page 2 of 7 --- */
#contents #pageno {
	position: absolute;
	font-size: .9em;
	top: 0px;
	right: 2px;
}

/* --- How to display the page letters example: A B C D....Z --- */
#contents #pageletters {
	color: #999999;
	position: relative;
	margin-left: 16px;
	margin-top: 10px;
}

#contents #pageletters a:link, #contents #pageletters a:visited {
	color: aqua;
}

#contents #pageletters a:hover{
	color: gold;
}

