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

.dialog {
	position:relative;
	margin:0px auto;
	min-width:8em;
	max-width:760px; /* based on image dimensions - not quite consistent with drip styles yet */
	color:#fff;
	z-index:1;
	margin-left:16px; /* default, width of left corner */
	margin-bottom:0.5em; /* spacing under dialog */
}

.dialog .content,
.dialog .t,
.dialog .b,
.dialog .b div {
	_background-image:url(dialog2-blue.gif);
	background-color: transparent;
	background-image: url(../images/loginBox.png);
	background-repeat: no-repeat;
	background-position: right top;
}

.dialog .content {
	position:relative;
	zoom:1;
	_overflow-y:hidden;
	padding-top: 0px;
	padding-right: 12px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.dialog .t {
	/* top+left vertical slice */
 position:absolute;
	left:0px;
	top:0px;
	width:16px; /* top slice width */
	margin-left:-16px;
	height:100%;
	_height:1600px; /* arbitrary long height, IE 6 */
	background-position:top left;
}

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

.dialog .b,
.dialog .b div {
	height:20px; /* height of bottom cap/shade */
	font-size:1px;
}

.dialog .b {
 background-position:bottom right;
}

.dialog .b div {
	position:relative;
	width:16px; /* bottom corner width */
	margin-left:-16px;
	background-position:bottom left;
}

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

.dialog .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. */
}
.dialog  p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 75%;
	margin: 0px;
	padding-top: 5px;
	padding-left: 10px;
	padding-bottom: 0px;
}
.dialog .btn {
	color: #FFF;
	background-color: #030;
	font-weight: bold;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding: 3px;
}



.dialog h1 {
	padding-bottom:0px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 90%;
	margin: 0px;
	padding-top: 10px;
	padding-left: 10px;
}
