.window {
  -moz-border-radius: 14px;
  border-radius: 14px;
}

.window .title {
  background: #C0C0C0;
  background-image: url(../images/title_bar_grad.png);
  
  -moz-border-radius-topleft: 12px;
  -moz-border-radius-topright: 12px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;

  padding: 8px;
  
  font-weight: bold;
  font-size: 18px;
  font-family: sans-serif;
  
  cursor: default;
  
  border: solid 1px #cfcfcf;
  border-bottom: none;
}

.window .body {
  background: #C0C0C0;
  -moz-border-radius-bottomleft: 12px;
  -moz-border-radius-bottomright: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;

  padding: 8px;
  padding-top: 0px;
  
  border: solid 1px #cfcfcf;
  border-top: none;
}

.window .body .content {
  background: white;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 8px;
}
