@charset "UTF-8";
/* CSS Document */

/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.box {

position:relative;
 margin:0 auto;
 min-width:8em;
 max-width:940px; /* based on image dimensions - not quite consistent with drip styles yet */
 color:#fff;
 z-index:1;
 margin-left:0px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under box */
}

.blue .content,
.blue .t,
.blue .b,
.blue .b div {
 background:transparent url(../design/blue_box.gif) no-repeat top right;
 _background-image:url(../design/blue_box.gif);
}

.red .content,
.red .t,
.red .b,
.red .b div {
 background:transparent url(../design/red_box.gif) no-repeat top right;
 _background-image:url(../design/red_box.gif);
}

.brown .content,
.brown .t,
.brown .b,
.brown .b div {
 background:transparent url(../design/brown_box.gif) no-repeat top right;
 _background-image:url(../design/brown_box.gif);
}

.brown_tall .content,
.brown_tall .t,
.brown_tall .b,
.brown_tall .b div {
 background:transparent url(../design/brown_box_tall.gif) no-repeat top right;
 _background-image:url(../design/brown_box_tall.gif);
}
.brown_tall_wide .content,
.brown_tall_wide .t,
.brown_tall_wide .b,
.brown_tall_wide .b div {
 background:transparent url(../design/brown_box_tall_wide.gif) no-repeat top right;
 _background-image:url(../design/brown_box_tall_wide.gif);
}
.box .content {
	position:relative;
	zoom:1;
	_overflow-y:hidden;
	padding:15px 20px 3px 5px;
}
.box .section {
	margin-top:10px;
	border-bottom:solid #754c24 2px;
	padding:5px;
}
.contents {
	float:right;
	font-family:arial;
	padding-left:15px;
	border-left:solid #754c24 2px;
	}
.box .t {
 /* 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:top left;
}

.box .b {
 /* bottom */
 position:relative;
 width:100%;
}

.box .b,
.box .b div {
 height:30px; /* height of bottom cap/shade */
 font-size:1px;
}

.box .b {
 background-position:bottom right;
}

.box .b div {
 position:relative;
 width:12px; /* bottom corner width */
 margin-left:-12px;
 background-position:bottom left;
}

.box .hd,
.box .bd,
.box .ft {
 position:relative;
}

.box .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. */
}

.box h1,
.box p {
 margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
 padding:0.5em 0px 0.5em 0px;
}

.box h1 {
 padding-bottom:0px;
}
