/* creates a div with a fourth of width (floated) */
.fourth_of_width {
	float: left;
	width: 25%;
}

/* creates a div with a third of width (floated) */
.third_of_width {
	float: left;
	width: 33%;
}

/* creates a div with a half of width (floated) */
.half_of_width {
	float: left;
	width: 50%;
}

table {
	width: 100%;
	border-collapse: collapse;
}
table th {
	padding: 3px;
	border-bottom: 1px solid lightgrey;
	vertical-align: top;
}
table td {
	padding: 3px;
	border-bottom: 1px dotted lightgrey;
	vertical-align: top;
}
table .row_grey {
	background-color: #f3f3f3;
}
table .row_white {
	background-color: #fff;
}

.hint {
	font-style: italic;
	font-size: 10px;
	border: 1px solid lightgrey;
	background-color: #f3f3f3;
	padding: 5px;
	margin-bottom: 10px;
}

table.partypics {
	width: 100%;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}

table.partypics td {
	text-align: center;
	padding: 10px 0 10px 0;
	border: none;
}

table.partypics a.frame {
	display: block;
	width: 150px;
	height: 214px;
	background: no-repeat top left url('/img/icons/picture_frame.gif');
	margin: 0 auto;
}

table.partypics a img {
	border: none;
}

table.partypics a div {
	width: 150px;
	height: 214px;
	background: center no-repeat;
}

#flashMessage {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 35px;
	background-color: #333B38;
	text-align: center;
	z-index: 1000;
	color: #FFFFFF;
	font-size: 25px;
}
