/* ================================
   Container Styles 
   ================================*/   
/* !important stuff in here otherwise IE 7 doesn't
** draw the corners correctly on first draw and/or refresh
*/

.ContainerMaster {
	width: 100%;
	margin-bottom: 5px;			/* Spacing between modules? */
	background-color: #ffffff; /* White */
}
.ContainerHeader		/* Header for the container */
{
	moz-border-radius-topleft: 3px; 
	moz-border-radius-topright: 3px;

	background-color: #336699; /* blue */
}
.ContainerHeader .Head { /* Headings(text) on container headers */
	font-size: 12px;
	font-weight: bold;
	color: #ffffff;
}
.rtop, .rbottom{		/* Rounded corners */
	display: block;
	background: #ffffff;
}
.rtop *, .rbottom *{	/* Rounded corners */
	display: block;
	height: 1px !important;
	overflow: hidden;
	background: #336699;
}
/* Rounded corners */
.r1{margin: 0 5px; height: 1px !important; background-color: #88bbee;}
.r2{margin: 0 3px; height: auto !important; background-color: #77aadd;}
.r3{margin: 0 2px; height: auto !important; background-color: #6699cc;}
.r4{margin: 0 1px; height: 2px !important; background-color: #4477aa;}

/* Stuff inside container */
.ContainerContent 
{
	border-right: #336699 1px solid; 
	border-top: #336699 1px solid; 
	border-left: #336699 1px solid; 
	border-bottom: #336699 1px solid; 

	/* Padding of stuff inside container */
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
}


