/*
.dialog
{
	position: absolute;
	left: 20em;
	top: 10em;
	background-color: white;
	border: 2px groove #45809a;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: #666 3px 3px 5px;
	-moz-box-shadow: #666 3px 3px 5px;
	box-shadow: #666 3px 3px 5px;
	min-width: 400px;
}
*/
.dialogTitle {
  font-size: 1.3em;
  padding: 5px 5px 5px 5px;
  background-color: #45809a;
  color: white;
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-top-left-radius: 8px;
  -moz-border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dialogClose {
  cursor: default;
  position: relative;
  float: right;
  vertical-align: middle;
  top: -2px;
}

.dialogValidationErrors {
  background-color: #ffaaaa;
  padding: 5px 5px 5px 52px;
  background-image: url("../images/pling-icon.png");
  background-repeat: no-repeat;
  background-position: 10px center;
}
.dialogValidationErrors h1 {
  font-size: 1.2em;
  font-weight: bold;
  font-style: italic;
}
.dialogValidationErrors dt {
  clear: left;
  float: left;
  font-weight: bold;
}
.dialogValidationErrors dd {
  padding-bottom: 3px;
}

.dialogContent {
  background-color: #e9ebe7;
  background-image: url("../images/vertical_grey_gradient.png");
  /*	background-image: url('../images/grey_scale.png');*/
  background-repeat: repeat-x;
  background-position: left top;
  -webkit-border-bottom-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-bottom-left-radius: 8px;
  -moz-border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.dialogError {
  border: 1px solid #ff0000;
  background-color: #ffaaaa;
}

.dialogFooter {
  float: left;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  -webkit-border-bottom-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-bottom-left-radius: 8px;
  -moz-border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
