/*
 * SimpleModal Confirm Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: confirm.css 254 2010-07-23 05:14:44Z emartin24 $
 */

#confirm {
    display: none;
}

/* Overlay */
#confirm-overlay {
    background-color: #000;
    cursor: wait;
}

/* Container */
#confirm-container {
    height: 180px;
    width: 420px;
    font: 16px/22px 'Trebuchet MS' , Verdana, Arial;
    text-align: left;
    background: #fff;
    border: 5px solid #000;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
}
#confirm-container .header {
    height: 30px;
    line-height: 30px;
    width: 100%;
    /*background: url(../Images/JqueryModale/header.gif) repeat-x;*/
    background-color: #000;
    color: #fff;
    font-weight: bold;
}
#confirm-container .header span {
    padding-left: 8px;
}
#confirm-container .message {
    color: #333;
    font-size: 14px;
    margin: 0;
    padding: 12px 4px 12px 8px;
    text-align: center;
}
#confirm-container .buttons {
    line-height: 26px;
    background: none;
}
#confirm-container .buttons div {
    padding: 10px;
    margin: auto;
    width: 170px;
    height: 26px;
    border-style: solid;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 120%;
    text-shadow: 0 3px 2px #8F5203;
    font-weight: bold;
    text-align: center;
    /*background: url(../Images/JqueryModale/button.gif) repeat-x;*/
    border: 1px solid #bbb;
    cursor: pointer;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    background: #f8a62f; /* Old browsers */
    background: -moz-linear-gradient(top, #f8a62f 0%, #e18b19 50%, #c86e03 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8a62f), color-stop(50%, #e18b19), color-stop(100%, #c86e03)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f8a62f 0%, #e18b19 50%, #c86e03 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f8a62f 0%, #e18b19 50%, #c86e03 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f8a62f 0%, #e18b19 50%, #c86e03 100%); /* IE10+ */
    background: linear-gradient(top, #f8a62f 0%, #e18b19 50%, #c86e03 100%); /* W3C */
}
#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: #fff;
}
#confirm-container a.modal-close:hover {
    color: #ccc;
}

/** Visuel de la boite **/
body {
    /*background: #fff;
    color: #333;
    font: 12px/22px verdana, arial, sans-serif;
    height: 100%;
    margin: 0 auto;
    width: 100%;*/
}
/*h1 {
    color: #3a6d8c;
    font-size: 34px;
    line-height: 40px;
    margin: 0;
}
h3 {
    color: #3a6d8c;
    font-size: 22px;
    line-height: 26px;
    font-weight: normal;
    margin: 0 0 8px 0;
}
img {
    border: 0;
}*/
#logo {
   /* margin-bottom: 20px;
    width: 300px;*/
}
#logo h1 {
   /* color: #666;
    letter-spacing: -1px;
    font-weight: normal;*/
}
/*#logo h1 span {
    color: #444;
    font-weight: bold;
}
#logo .title {
    color: #999;
    font-size: 12px;
}
#container {
    margin: 0 auto;
    padding-top: 20px;
    width: 800px;
}*/
#content {
  /*  border-bottom: 1px dotted #999;
    border-top: 1px dotted #999;
    padding: 20px 0;*/
}
/*#footer {
    clear: left;
    color: #888;
    margin: 20px 0;
}
#footer a:link, #footer a:visited {
    color: #888;
    text-decoration: none;
}
#footer a:hover {
    color: #333;
    text-decoration: underline;
}*/
