/*
 Mobilefish.com
 Author: Robert Lie
 See: http://www.mobilefish.com/tutorials/css/css_quickguide_div_examples_fluid_layouts.html
*/

.canvas {
	float: left;
}

.content {
	/* set margin-left greater then .nav width */
	margin-left: 11.5em;
	/* set margin-right greater then .sidebar width */
	margin-right: 11.5em; 
	padding-right: 0.5em;
	/* do no set float: left; */	
}

.sidebar {
	float: right;
	width: 11.0em;
	margin-top: 0.5em;
	margin-right: 0.2em;
}

.sidebar-main {

}

.sidebar-main-body {
	border: 0.0625em solid;
	background: lime;	
	padding: 0.3em;
}

.sidebar-main-title {
	font-size: 1.1em; 
	font-family: verdana, arial, sans-serif; 
	font-weight: bold; 
}

