@charset "utf-8";
/* CSS Document */

/* allow room for 3 columns */
ul
{
	width: 100%;
}

/* float & allow room for the widest item */
li
{
	float: left;
	width: 150px;
	margin: 5px;
	padding: 10px;
	list-style: none;
	border: thin;
	border-color: #000000;
	border-style: outset;
	height: 160px;
	vertical-align: middle;
	text-align: center;
	background-color: #FFFFFF;
	font-size: 14px;	
}

li img
{
	vertical-align: middle;
}


/* stop the float */
br
{
	clear: left;
}

/* separate the list from subsequent markup */
div.wrapper
{
	margin-bottom: 1em;
}

