/* Balloon window */
.balloonWindow {
  color:#000;
}

.balloonWindow .tooltipImage {
  width:50px;
  float:left;
  margin-right:9px;
  margin-bottom:9px;
}

.balloonWindow h3 {
  font-weight:normal;
}

.balloonWindow table.form td {
  padding-top:0;
  padding-bottom:0;
}

.balloonWindow .messages {
  width:100%;
  clear:both;
}

.balloonWindow .messages-header {
  /*TODO: dot-brown.gif does not exist at all. Need to research */
  /*background: url("resource:/plugins/opc-common-ui-7.11-SNAPSHOT/images/dot-brown.gif") repeat-x center left;*/
  margin-bottom:9px;
}

.balloonWindow .messages-header i {
  background: #faf7aa url("resource:/plugins/opc-common-ui-7.11-SNAPSHOT/images/message-16.gif") no-repeat center left;
  padding-left: 20px;
  padding-right: 5px;
}

.balloonWindow .messages .form {
  font-style:italic;
}

.balloonWindow .messages .form label {
  font-weight: bold;
  color: #666666;
  text-align:right;
  font-style:normal;
}

img.tooltipImage{
  /* css 2.0 (Firefox including) */
  max-width:200px;
  max-height:200px;
  /* ie6 fixed styles*/
  width: expression(this.width >200 && this.width >= this.height ? '200px': this.width +'px;');
  height: expression(this.height >200 && this.height >= this.width ? '200px': this.height +'px;');
}

