/*
 * Copyright 2009 The Closure Library Authors. All Rights Reserved.
 *
 * Use of this source code is governed by the Apache License, Version 2.0.
 * See the COPYING file for details.
 */

/*
 * Standard styling for goog.ui.Dialog.
 *
 * @author ssaviano@google.com (Steven Saviano)
 * @author attila@google.com (Attila Bodis)
 */


.modal-dialog {
  background: #ffffff;
  border: 1px solid #3a5774;
  color: Black;
  padding: 1px;
  position: absolute;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding:3px;
  width: 430px; 
  top:15%;
  z-index: 10000;  /*Modified by : Adithya , Task Id :PROE-1824 (Force Read Notification)*/
}

.modal-dialog a,
.modal-dialog a:link,
.modal-dialog a:visited  {
  /*color: #06c; -- commented by shivam parikh - 30/12/2014 - to make link color as other links */
  rgb(37, 70, 121);
  cursor: pointer;
}

.modal-dialog-bg {
  background: #456B81;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 1000;
}

.modal-dialog-title{ 
  background-color: #456B81 !important;
    color: #FFFFFF;
    font-size: 11px;
    text-decoration: none;
    vertical-align: middle;
    background-image:none !important;
	font-family:Verdana,Arial,sans-serif;
	font-weight:bold;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	height:15px;	
   text-align:left;
  /* Add padding on the right to ensure the close button has room. */
  padding: 5px 5px 5px 5px;
  position: relative;
  _zoom: 1; /* Ensures proper width in IE6 RTL. */
}

.modal-dialog-title-close {
  /* Client apps may override the URL at which they serve the sprite. */
  /*background: #e0edfe url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat -528px 0;*/
  background-image: url(../Images/Close.gif);  
  cursor: default;
  height: 15px;
  position: absolute;
  right: 5px;
  top: 4px;
  width: 15px;
  vertical-align: middle;
  cursor:pointer;
}


.modal-dialog-content {
    background-color: #fff;
    padding: 8px;
    overflow-y: hidden;
    height: 100%
}
.modal-dialog-buttons button
{
	height: 22px;      
    /* width: 52px;	  
	min-width: 52px;*/
    border: 0px solid #CCCCCC;	  
    background-color: #265A76;
    /*background-image: url(../../images/bg-menu-blue.gif);  */
    font-size: 10px;	  
    cursor:pointer;	    
    font-family: Verdana, Helvetica, Arial, Verdana, sans-serif;	    
    color: #FFFFFF;	    
    font-weight: bold;	    
    letter-spacing: 0.3px;	 
    text-align:center;
    vertical-align:middle;
    padding: 4px 10px 4px 10px;	
    -moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px; 
	margin:3px;
	
	

}
.modal-dialog-buttons
{
	 background-color : #fff;
	  padding: 8px;
	  text-align:center;
}
.goog-buttonset-default {
  font-weight: bold;
}
 .modal-dialog-userInput {
            font: normal 12px verdana;
            width: 90%;
            visibility:hidden;
          }
