/*
	column2
*/

div.leftcontent {
	float: left ;
	width: 49% ; /* IE6: takes it as % of window, not containing div if xml tag not used */
}
div.rightcontent {
	margin-left: 51% ; /* IE6: takes it as % of window, not containing div if xml tag not used */
}
div.box {
	border: 1px solid #d4d6d8 ;	/* box border was: border: 1px solid black ;  - now: #d4d6d8 - light grey- */
	padding-bottom: 0.5em ;
	border-radius: 7px ;	/*Coloumns box all four corner was circular bend: border-radius: 10px ; now its 7px */
}
div.boxtitle {
	background: ; 	/*was: background: #bfeeff; - sky blueish  */
	color: black ;
	font-weight: bold ;
	font-size: 1.1em ;
	padding-top: 5px ;
	padding-bottom: 5px ;
	text-align: center ;
	width: 100% ; /* IE6 chokes on this, but Opera uses <100% when this is not around */
	border-top-left-radius: 10px ;
	border-top-right-radius: 10px ;
}
div.boxcontent {
	padding: 10px ;
}

@media only screen and (max-width:629px) {
	div.leftcontent {
		float: none ;
		width: auto ;
	}
	div.rightcontent {
		margin-left: auto ;
	}
}



