/*
 * SimpleModal Confirm Modal Dialog
 * http://simplemodal.com
 *
 * Copyright (c) 2013 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 */

#confirm {display:none;}

/* Overlay */
#confirm-overlay {
  position: fixed;
  z-index:100;
  top: 0px;
  left: 0px;
  height:100%;
  width:100%;
  background: #000;
  display: none;
  }

/* Container */
#confirm-container {
  width: 560px;
  height: 380px;
  padding: 15px;
  display:none;
  background: #FFF;
  border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
  box-shadow: 0px 0px 4px rgba(0,0,0,0.7); -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7); -moz-box-shadow: 0 0px 4px rgba(0,0,0,0.7);
}
#confirm-container .header {height: 25px; font-size: 16px; border-bottom: #cdcdcd; color:#545252; font-weight:bold; margin-bottom: 5px;}
#confirm-container .message {color:#333; font-size:12px; margin:0; padding:6px;text-align: left;line-height:16px;}
#confirm-container .message .b {color:#FF2400; font-size:14px; font-weight: bold;}
#confirm-container .image {margin:0; padding:6px;}
#confirm-container .buttons {line-height:30px; width:400px; float:left; padding:10px 8px 10px;}
#confirm-container .buttons div {float:left; margin-left:4px; width:250px; height:26px; color:#666; font-weight:bold; text-align:center; background-color:#E5E4E2 ; border:1px solid #bbb;cursor:pointer;}
#confirm-container a.modal-close,
#confirm-container a.modal-close:link,
#confirm-container a.modal-close:active,
#confirm-container a.modal-close:visited {text-decoration:none; font-weight:bold; position:absolute; right:10px; top:2px; color:#545252; font-size: 18px;}
#confirm-container a.modal-close:hover {color:#ccc;}

/*button-confirm*/
a.btnb {
  /*width: 250px;*/
  padding: 8px 10px;
  /*font-family: Arial;*/
  font-size: 92%;
  text-decoration: none;
  color: #4c679c;
  background-color: #fff;
  border:1px solid #4c679c;
  font-weight: bold;
  margin-right: 10px;
}

a.btnb:hover {
  /*width: 250px;*/
  padding: 8px 10px;
  /*font-family: Arial;*/
  font-size: 92%;
  text-decoration: none;
  color: #fff;
  background-color: #4c679c;/*#245191*/
  font-weight: bold;
  margin-right: 10px;
}