/*Awards Container*/
div#awards {
	width: 780px;
	display: table;
}

/*Header*/

div#awards #awards_header {
	width: 780px;
	height: 20px;
	color: #C0C0C0;
	font-size: 90%;
	background-color: #900000;
	display: table-row;
}

#awards #awards_header .year {
	width: 10%;
	margin-top: 3px;
	margin-bottom: 3px;
	text-align: center;
	float: left;
	display: table-cell;
}

#awards #awards_header .award {
	width: 30%;
	margin-top: 3px;
	margin-bottom: 3px;
	text-align: center;
	float: left;
	display: table-cell;
}

#awards #awards_header .album {
	width: 20%;
	margin-top: 3px;
	margin-bottom: 3px;
	text-align: center;
	float: left;
	display: table-cell;
}

#awards #awards_header .presenter {
	width: 40%;
	margin-top: 3px;
	margin-bottom: 3px;
	text-align: center;
	float: left;
	display: table-cell;
	
}

/* Item */
.awards_item {
	font-size: 80%;
	text-align: center;
	width: 100%;
	display: table-row;
}


#awards .awards_item .year {
	float: left;
	width: 10%;
	clear: left;
	display: table-cell;
}
#awards .awards_item .award {
	float: left;
	width: 30%;
	display: table-cell;
}
#awards .awards_item .album {
	float: left;
	width: 20%;
	display: table-cell;
}
#awards .awards_item .presenter {
	float: left;
	width: 40%;
	clear: none;
	display: table-cell ;
}