  
Body |   
 
/* All the content boxes belong to the content class. */ 
 { 
		 position:static; /* Position is declared "relative" to gain control of stacking order (z-index). */ 
		 
 		 font:11px/20px verdana, arial, helvetica, sans-serif; 
		 clear: left;  
	             overflow:visible; 
		 min-width:120px; 
		 margin:0px 210px 20px 170px; 
		 border:1px solid rgb(182,182,182); 
		 background-color:rgb(253,253,253); 
		 padding:0px; 
		 z-index:1; /* This allows the content to overlap the right menu in narrow windows in good browsers. */ 
 } 
 
 |