/**************************************************************************
	Wrapping box for containers
**************************************************************************/
.ModuleTitle_MenuBar
{
}

.ModuleTitle_MenuItem
{
	border: none;
}

.containerMainDiv {
    padding: 15px;
    margin: 0;
}
#dnn_FlashPane .containerMainDiv
{
	padding: 0;
}

.containerMainDivEmptyBlack
{
	background: #000;
}

.containerMainDiv.noPad
{
	padding: 0;
}

/**************************************************************************
	Rounded corners
**************************************************************************/


.roundedbox 
{
 position:relative;
 margin:0px auto;
 min-width:8em;
 z-index:1;
 margin-left:12px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}


.roundedbox .roundedboxcontent,
.roundedbox .roundedboxt,
.roundedbox .roundedboxb,
.roundedbox .roundedboxb div {
 background:transparent url(images/rounded-box.png) no-repeat top right;
 _background-image:url(images/rounded-box.gif);
}

.roundedbox.whitebox .roundedboxcontent,
.roundedbox.whitebox .roundedboxt,
.roundedbox.whitebox .roundedboxb,
.roundedbox.whitebox .roundedboxb div {
 background-image:url(images/whitebox.png);
 _background-image:url(images/whitebox.gif);
}


.roundedbox .roundedboxcontent {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:10px 12px 0px 0px;
}

.roundedbox .roundedboxt {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:12px; /* top slice width */
 margin-left:-12px;
 height:100%;
 _height:1600px; /* arbitrary long height, IE 6 */
 background-position: left top;
}

.roundedbox .roundedboxb {
 /* bottom */
 position:relative;
 width:100%;
}

.roundedbox .roundedboxb,
.roundedbox .roundedboxb div {
 height:10px; /* height of bottom cap/shade */
 font-size:1px;
}

.roundedbox .roundedboxb {
 background-position: right bottom;
}

.roundedbox .roundedboxb div {
 position:relative;
 width:12px; /* bottom corner width */
 margin-left:-12px;
 background-position:left bottom;
}

.roundedbox .roundedboxwrapper {
 /* extra content protector - preventing vertical overflow (past background) */
 position:static;
 max-height:1000px;
 /*overflow:auto;*/ /* note that overflow:auto causes a rather annoying redraw "lag" in Firefox 2, and may degrade performance. Might be worth trying without if you aren't worried about height/overflow issues. */
}


















































