/*
Use of this source code is governed by an Apache 2.0 License.
See the COPYING file for details.
*/

/*
 * Copyright 2009 Google Inc.  All Rights Reserved.
 *
 * Standard styling for goog.ui.Dialog.
 *


 */


.new-modal-dialog {
  background: #000000;
  border: 1px solid #666;
  color: #000;
  padding: 4px;
  position: absolute;
  font:normal 12px "Lucida Sans","Tahoma","Arial",sans;
  z-index:999;
}

.new-modal-dialog a,
.new-modal-dialog a:link,
.new-modal-dialog a:visited  {
  color: #06c;
  cursor: pointer;
}

.new-modal-dialog-bg {
  background: #000;
  left: 0;
  position: absolute;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);					
  opacity:0.50;
  -moz-opacity:0.50;
  top: 0;
  z-index:999;
}

.new-modal-dialog-title {
  background: rgb(235,238,249);
  color: #111;
  cursor: pointer;
  font-size: 126%;
  font-weight: bold;
  padding: 12px 15px 12px 12px;
  position: relative;
  vertical-align: middle;
}

.new-modal-dialog-title-text {
  color: #111;
  font-size: 126%;
  font-weight: normal;
}

.new-modal-dialog-title-close {
  /* Client apps may override the URL at which they serve the sprite. */
  background: #e0edfe url('../images/newdlg_close.png') no-repeat 0 0;
  cursor: default;
  height: 15px;
  position: absolute;
  right: 13px;
  top: 12px;
  width: 15px;
}

.new-modal-dialog-buttons,
.new-modal-dialog-content {
  background-color: #fff;
  padding: 8px;
}
.new-modal-dialog-content{
	padding-bottom:20px;
}

.new-modal-dialog-content-info{
	font-size:80%;
	font-style:italic;
	color:rgb(180,180,180);
}

.new-modal-dialog-buttons{
	/*border-top:rgb(223,223,223) 1px solid;*/
	/*text-align:right;*/
	padding:0px
}
.new-modal-dialog-buttons_area{
	text-align:center;
}
.goog-buttonset-default {
  font-weight: bold;
}
