/*<div id='tapahtuma'>
	
	<?php	
	
	foreach($tapahtumat AS $tapahtuma) {
	echo"	
		<div class='row'>
	
			<span class='date'><h3>".$tapahtuma['paivamaara']."</h3></span><span class='header'><h3>".$tapahtuma['tapahtuma']."</h3></span>
	
		</div>";
		
	}
	
	?>

</div>*/

div#tapahtuma { margin-top: 10px; }
             
div#tapahtuma div.row { 
			   	margin-top: 2px;
			   	margin-bottom: 2px;
			    clear: both;
				overflow: hidden;
				width: 96%;
				margin-left: 2%;
				margin-right: 2%;
				border: 0px solid red;
				padding-bottom: 4px;
				background: transparent url(../../img/backgrounds/row.gif) repeat-x bottom;
			   	}
             
div#tapahtuma div.row span.date {
			   	display: table-cell;
				margin-top: 2px;
			    height: 100%;
			   	width: 35%;
			   	border: 0px solid red;
				float: left;
			   	}
			   	
div#tapahtuma div.row span.header {
				margin-top: 3px;
				display: table-cell;
				height: 100%;
				width: 62%;
				border: 0px solid blue;
				float: right;
				}					
					