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

.post-comment {
	clear:both;
	position:relative;
	margin:0px auto;
	min-width:50px;
	max-width:760px; /* based on image dimensions - not quite consistent with drip styles yet */
	color:#000;
	z-index:1;
	margin-left:12px; /* default, width of left corner */
	margin-bottom:6px; /* spacing under dialog */
}



.post-comment .post-comment-content,
.post-comment .t,
.post-comment .b,
.post-comment .b div {
	background:transparent url(dialog2-blue-800x1600.png) no-repeat top right;

}

.post-comment .post-comment-content {
	position:relative;
	zoom:1;
	_overflow-y:hidden;
	padding:0px 12px 0px 0px;
}

.post-comment .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;
}

.post-comment .b {
	/* bottom */
	position:relative;
	width:100%;
}

.post-comment .b,
.post-comment .b div {
	height:30em; /* height of bottom cap/shade */
	font-size:1px;
}

.post-comment .b {
	background-position:bottom right;
	position:relative;
}

.post-comment .b div {
	position:relative;
	width:12px; /* bottom corner width */
	margin-left:-12px;
	background-position:bottom left;
}

.post-comment .bd {
	position:relative;
}

.post-comment .post-comment-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. */
}

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

.post-comment h1 {
 padding-bottom:0px;
}

/* dialog variants - not needed for first blue (non-drip) style */

.post-comment.type2 .post-comment-content,
.post-comment.type2 .t,
.post-comment.type2 .b,
.post-comment.type2 .b div {
	background-image:url(/img/corners/comment-bubble-left.gif);
}

/* "drip" variant */

.post-comment.drip .b,
.post-comment.drip .b div {
	height:72px;
}

.post-comment.drip {
 	margin-left:165px;
	float:left;
	position:relative;
	z-index:1;
	text-align:left;
}

.post-comment.drip .t,
.post-comment.drip .b div,
.post-comment.drip .bd,
.post-comment.drip .post-comment-wrapper {
 	margin-left:-165px;
 	width:165px;
}

.post-comment.drip .post-comment-wrapper
{
	padding:0.75em 0.5em 0 0.5em;
	width:auto;
}


/* IE specific fixes */

* html .post-comment {
	margin:0;
	width:400px;
}

* html .post-comment.drip {
	padding-left:20px;
	float:left;
	width:600px;
}

* html .post-comment.drip .post-comment-content {
	margin-right:10px;
}

* html .post-comment.drip .post-comment-wrapper {
	padding-left:0;
	margin:0;
	width:auto;
}

* html .post-comment.drip .t
{
	margin-left:-22px;
	width:22px;
}
* html .post-comment.drip .b {
	width:auto;
	margin-right:10px;
}

* html .post-comment.drip .b div {
	float:left;
	margin-left:-22px;
	width:100px;


}
* html .post-comment.drip .bd {
	float:left;
	width:auto;
}

.post-comment .post-comment-wrapper .bd {
	margin-left:0px;
}


.post-comment.drip .bd {
	zoom:1;
	width:auto;
	padding:2px 4px 2px 12px;
}

/* Comment post author and date */

.post-comment-meta {
	float:left;
	font-size:0.8em;
	text-align: left;
	margin: -45px 0 40px 85px;
	clear:left;
}
* html .post-comment-meta {
	margin-top:-40px;
	margin-left:40px;
	width:96%;
}

.post-comment-meta .post-comment-author {
	font-size:1.5em;
	font-weight:bold;
}
