@charset "UTF-8";
/* CSS Document */
/*****************************************
* CSS code for the balloon popup widget *
*****************************************/
.balloon-popup {
  color: #444;
  position: absolute;
  width: 250px;
  margin-top: 8px;
  z-index: 12000;
  border: 5px solid #ccc;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  border-color: rgba(0, 0, 0, 0.2);
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
}
.balloon-popup.reverse {
  margin-top: -8px;
}
.balloon-popup div.pointer {
  padding: 10px 0 0;
  margin: -10px 0 0;
  background: transparent url(../../images/c/balloon-pointer.png) no-repeat center top;
}
.balloon-popup.reverse div.pointer {
  padding: 0 0 10px;
  margin: 0 0 -10px;
  background-position: center bottom;
}
.ie7 .balloon-popup div.pointer {
  /* this needs layout so that the 'tail' will not be cut off by negative margins */
  zoom: 1;
}
.balloon-popup div.message {
  background-color: #fff;
  display: block;
  position: relative;
  padding: 10px;
  text-align: left;
  font-size: 10px;
  font-weight: normal;
  font-style: normal;
  border: 1px solid #fff;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  z-index: 9000;
}
.balloon-popup div.message div.closer-row {
  text-align: right;
}
.balloon-popup div.message span.close-button {
  cursor: pointer;
}
.balloon-popup div.message h3 {
  margin: 0.5em 0;
  color: #333;
  font-size: 1.3em;
  font-weight: bold;
}
.balloon-popup div.message h3 .close-button {
  float: right;
}
.balloon-popup div.message p {
  margin: 0.5em 0;
  color: #666;
  font-size: 1.2em;
  line-height: 1.2;
}
.balloon-popup div.message label {
  clear: left;
  display: block;
  font-size: 1.2em;
  line-height: 1.2;
  margin: 0.5em 0;
}
.balloon-popup div.message label input {
  margin: 0 .5em 2em 0;
  float: left;
  font-size: 1em;
}
.balloon-popup div.message input[type='text'],
.balloon-popup div.message input[type='password'] {
  font-size: 1.2em;
  cursor: text;
  margin: 10px 0;
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.balloon-popup div.message a.dialog-button {
  font-size: 1.1em;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-width: 1px;
  border-style: solid;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #461;
  font-weight: bold;
  background: #efd;
  border-color: #8b3;
  background: -moz-linear-gradient(top, #ffffff, #ddeebb);
  background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ddeebb));
  background: -webkit-linear-gradient(top, #ffffff, #ddeebb);
  background: -o-linear-gradient(top, #ffffff, #ddeebb);
  background: linear-gradient(top, #ffffff, #ddeebb);
}
.balloon-popup div.message a.dialog-button:hover {
  color: #331;
  background: -moz-linear-gradient(top, #ffffff, #c5e88c);
  background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#c5e88c));
  background: -webkit-linear-gradient(top, #ffffff, #c5e88c);
  background: -o-linear-gradient(top, #ffffff, #c5e88c);
  background: linear-gradient(top, #ffffff, #c5e88c);
  text-decoration: none;
}
