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

#main{
	margin-top:0;
}

.greenBox {
	float:left;
	position:relative;
	margin-top:-100px;
	min-width:8em;
	width:50%;
	max-width:60%; /* based on image dimensions - not quite consistent with drip styles yet */
	color:#4c0074;
	z-index:3;
	margin-left:12px; /* default, width of left corner */
	margin-bottom:0.5em; /* spacing under dialog */
}
.greenBox .content, .greenBox .t, .greenBox .b, .greenBox .b div {
	background:transparent url(../images/greenBox.png) no-repeat top right;
}
.greenBox .content {
	position:relative;
	height:1%;
/*	zoom:1;
*/	padding:0px 12px 0px 0px;
}
.greenBox .t {
	/* top+left vertical slice */
 position:absolute;
	left:0px;
	top:0px;
	width:12px; /* top slice width */
	margin-left:-12px;
	height:100%;
	background-position:top left;
}
.greenBox .b {
	/* bottom */
 position:relative;
	width:100%;
}
.greenBox .b, .greenBox .b div {
	height:30px; /* height of bottom cap/shade */
	font-size:1px;
}
.greenBox .b {
	background-position:bottom right;
}
.greenBox .b div {
	position:relative;
	width:12px; /* bottom corner width */
	margin-left:-12px;
	background-position:bottom left;
}
.greenBox .hd, .greenBox .bd, .greenBox .ft {
	position:relative;
}
.greenBox .wrapper {
	/* 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. */
}
.greenBox h1, .greenBox p {
	margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
	padding:0.5em 0px 0.5em 0px;
}
.greenBox h1 {
	padding-top:1.25em;
	padding-bottom:1.25em;
	padding-left:5%;
	padding-right:5%;
	font-size:1.8em;
}

.greenBox p {
	margin-top:7px;
	padding:7px;
}

