  #content {
	 text-align: center;
	 clear: both;
}

.option {
	width: 140px;
	height: 170px;
	vertical-align: top;
	padding: 30px 4px 4px 4px;
	margin: 18px;
	display: inline-block;
}
.option:hover {
	background-color: #EEEEEE;
}

.option img {
	width: 58px;
	margin-bottom: 15px;
}

.option_name {
	font-weight: bold;
}

.option_desc {
	border: 0px solid;
	margin-top: 5px;
	padding: 5px;
	text-decoration: none !important;
}

/*  Dialog window config */
/*   Implementation borrowed from here: http://www.tonylea.com/2011/how-to-create-your-own-jquery-lightbox/ */
.dialog-backdrop
{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#000;
	opacity: .0;
	filter:alpha(opacity=0);
	z-index:50;
	display:none;
}


.dialog-box
{
	position:absolute;
	width:40%;
	left:30%;
	background:#ffffff;
	z-index:51;
	padding:15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow:0px 0px 5px #444444;
	-webkit-box-shadow:0px 0px 5px #444444;
	box-shadow:0px 0px 5px #444444;
	display:none;
}

.dialog-close
{
	float:right;
	margin-right:0px;
	font-size: 14px;
	cursor:pointer;
}