div.module {
	position:relative;
	z-index:1;
	/*position:absolute;*/
}
/* without a specific id the positioning will default to top:0px left:0px */
div#m0 {
	float:left;
	margin-left:20px;
	margin-top:5px;
	text-align:left;
}             
div#m1 { 
  float:right;
	margin-right:15px; 
	margin-top:5px;
	text-align:left;
}
div#m2 { 
  float:right;
	margin-right:15px; 
	margin-top:5px;
	text-align:left;
}
div#m3 { 
	width:600px;
	height:auto;
  position:relative;
	margin-right:auto;
	margin-left:auto;
	text-align:left;
}
div.container {
	width:250px; /* will apply as a default but can be over-ridden with specific style as follow this */
	background:#333333;
	-moz-border-radius:10px;
	border-radius:10px;
	border-right:solid 0px #666666; /* doesn't appear any different changed to 0 from 1 */
	border-bottom:solid 0px #666666;
	margin:0 0 6px 0;	
}
div#m0 div.container { width:510px; }
div#m1 div.container { width:200px; }
div#m2 div.container { width:200px; }
div#m3 div.container { width:600px; }

div.container div.content {	
	padding:20px 15px 20px 25px;
	background:white;
	-moz-border-radius:10px;
	position:relative;
	top:0px; /* affects the shadow in mozilla, which has not been rendering as soft anyway */
	left:0px;
	border:solid 1px #666666; /* seems to affect only the border in mozilla */
}
/*div#m3 div.container div.content { background:#CCD5DD; border:solid 2px #FFFFFF; }*/

/*IE only rules*/
div.container {
	*margin:0 0 0px 0; /* setting the bottom to 3px makes adjustment for the shadow in IE */
}
div.container v\:roundrect {
	behavior:url(#default#VML);
	zoom:1;	
	*display:block;
	*width:100%;	
	*position:relative;	
}

div.container {
	filter:alpha(opacity:40) progid:DXImageTransform.Microsoft.Blur(pixelradius=4);
}

div.container div.content {
	*position:relative;
	*border-width:0;
	*background:transparent;
}
/* ------------------------------------------------ */
a:link {
	color: #000000;
	text-decoration: none;
}
a:visited {
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: #000000;
	text-decoration: underline;
}
