/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.dialog {
	position:relative;
	min-width:8em;
	max-width:760px;
	z-index:1;
	margin-left:0px; /* default, width of left corner */
	margin-bottom:0.5em; /* spacing under dialog */
	margin-top: 0px;
	margin-right: 0px;
}

.dialog .content,
.dialog .t,
.dialog .b,
.dialog .b div {
	background-color: transparent;
	background-image: url(/images/site/myminicart_shade.png);
	background-repeat: no-repeat;
	background-position: right top;
}
	
.dialog .content {
	position:relative;
	zoom:1;
	_overflow-y:hidden;
	padding-top: 0px;
	padding-right: 7px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.dialog .b {
 /* bottom */
 	position:relative;
 	width:100%;
	height:7px; /* height of bottom cap/shade */
	font-size:1px;
 	background-position:bottom right;
}

.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. */
}
/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.dialog2 {
	position:relative;
	margin:0px auto;
	min-width:8em;
	max-width:760px;
	z-index:0;
	margin-left:0px; /* default, width of left corner */
	margin-bottom:0.5em; /* spacing under dialog */
}

.dialog2 .content,
.dialog2 .t,
.dialog2 .b,
.dialog2 .b div {
	background-color: transparent;
	background-image: url(/images/site/mycart_shade.png);
	background-repeat: no-repeat;
	background-position: right top;
}
	
.dialog2 .content {
	position:relative;
	/*zoom:1;
	_overflow-y:hidden;*/
	padding-top: 0px;
	padding-right: 7px;
	padding-bottom: 0px;
	padding-left: 0px;
	height: 253px;
}

.dialog2 .b {
	/* bottom */
 	position:relative;
	width:100%;
	height:7px; /* height of bottom cap/shade */
	font-size:1px;
	background-position:right bottom;
}

.dialog2 .hd,
.dialog2 .bd,
.dialog2 .ft {
 position:relative;
}

.dialog2 .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. */
}
