/* this stylesheet contains example styling for the gallery app. Feel free to edit or include this css in your existing stylesheet */


img {
	border: 2px;
	color: #CCC;
}

li {
	list-style: none;
}

#albumbit {
	display: block
}

h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14pt;
	font-weight: lighter;
	text-decoration: underline;
	color: #821278;
}

ul#albums,ul#allalbums {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul#allalbums > li {
	clear: left;
}

ul.imagelisting {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.imagelisting li {
	float: left;
	width: auto;
	margin: 0 8px 7px 0;
}

ul#albumdisplay {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul#albumdisplay li {
	float: left;
	width: auto;
	margin: 0 20px 20px 0;
}

ul#albumdisplay li img:hover {
	border: 2px solid #000;
}

ul#albumdisplay li img {
	display: block;
	border: 2px solid #ccc;
}

#clear {
	clear: both;
}