/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/
/* line 5, ../sass/rounded_corners.scss */
.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: 3101;
  margin-left: 12px;
  /* default, width of left corner */
  margin-bottom: 0.5em;
  /* spacing under dialog */
}

/* line 19, ../sass/rounded_corners.scss */
.dialog .content,
.dialog .t,
.dialog .b,
.dialog .b div {
  background: transparent url(/assets/images/css/modal/round_corner.png) no-repeat top right;
  _background-image: url(/assets/images/css/modal/round_corner.gif);
}

/* line 24, ../sass/rounded_corners.scss */
.dialog .content {
  position: relative;
  zoom: 1;
  _overflow-y: hidden;
  padding: 0px 12px 0px 0px;
}

/* line 31, ../sass/rounded_corners.scss */
.dialog .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;
}

/* line 43, ../sass/rounded_corners.scss */
.dialog .b {
  /* bottom */
  position: relative;
  width: 100%;
}

/* line 50, ../sass/rounded_corners.scss */
.dialog .b,
.dialog .b div {
  height: 12px;
  /* height of bottom cap/shade */
  font-size: 1px;
}

/* line 55, ../sass/rounded_corners.scss */
.dialog .b {
  text-align: left;
  background-position: bottom right;
}

/* line 60, ../sass/rounded_corners.scss */
.dialog .b div {
  position: relative;
  width: 12px;
  /* bottom corner width */
  margin-left: -12px;
  background-position: bottom left;
}

/* line 69, ../sass/rounded_corners.scss */
.dialog .hd,
.dialog .bd,
.dialog .ft {
  position: relative;
}

/* line 73, ../sass/rounded_corners.scss */
.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. */
}

/* line 81, ../sass/rounded_corners.scss */
.dialog h1,
.dialog p {
  margin: 0px;
  /* margins will blow out backgrounds, leaving whitespace. */
  padding: 0.5em 0px 0.5em 0px;
}

/* line 86, ../sass/rounded_corners.scss */
.dialog h1 {
  padding-bottom: 0px;
}

