/* the photos list, with sorting! */
#photo_list {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

#photo_list li {
	float: left;
	margin-right: 15px;
	margin-bottom: 10px;
}

#photo_list li img {
	border: 1px solid silver;
}

#photo_list span.tooltip { /*the big image shows up on mouseover... NEAT! */
	display: none;
}

.tip {
	border: 5px solid white;
	background: white;
}

.tip img {
	width: 225px;
}

#photo_trash {
	width: 100px;
	height: 64px;
}

.trash-closed {
	background: url(/images/trash-can-closed.gif);
}	
.trash-open {
	background: url(/images/trash-can-open.gif);
}

