/* 
    Document   : light
    Created on : Jul 5, 2009, 12:35:12 AM
    Author     : tim
    Description:
        A lightweight stylesheet used as a drop-in replacement for dialog.css.
*/

/*
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.dialog {
	position:relative;
	margin:0px auto; /* 0px auto */
	color:#fff;
	z-index:1;
	/*margin-left:5px;*/ /* default, width of left corner (12px) */
	margin: 5px;
}

.dialog .content, .dialog .t, .dialog .b, .dialog .b div {
	background-color: #4a0707;
}

.dialog {
	border: 1px solid gray;
	margin-bottom: 5px;
}

.dialog .content {
	position:relative;
	zoom:1;
	_overflow-y:hidden;
	padding:0px 0px 0px 0px; /* 0, 12, 0, 0 */
}

.dialog .t {
	/* top+left vertical slice */
	position:absolute;
	left:0px;
	top:0px;
	width:12px; /* top slice width */
	height:100%;
}

.dialog .b {
	/* bottom */
	position:relative;
	width:100%;
}

.dialog .hd, .dialog .bd, .dialog .ft {
	position:relative;
}

.dialog .wrapper {
	/* extra content protector - preventing vertical overflow (past background) */
	position:static;
	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. */
	/*margin-left: -10px;*/
}

.dialog h1, .dialog p {
	margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
	padding:0.5em 0px 0.5em 0px;
}

.dialog h1 {
	padding-bottom:0px;
}

#mainContent {
	right: 255px;
}

#rightMenu {
	right: 5px;
}
