/*
 * SimpleModal OSX Style 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
 */

#osx-modal-content, #osx-modal-data {display:none;}

/* Overlay */
#osx-overlay {background-color:#000;}

/* Container */
#osx-container {
    background-color: #fff;
    color: #000;
    font: 16px/24px "Lucida Grande", Arial, sans-serif;
    padding: 20px 0px 20px 50px;
    width: 450px;
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -moz-border-radius-bottomright: 6px;
    -webkit-border-bottom-right-radius: 6px;
    border-radius: 0 0 6px 6px;
    border: 1px solid #eee;
    overflow-y: auto;
}
#osx-container a {color:#ddd;}
#osx-container #osx-modal-title {
    font-weight: bold;
    font-size: 22px;
}
#osx-container #osx-modal-title span{
    font-weight: normal;
    font-size: 20px;
    color:#ffa902;
    letter-spacing: 1px;
}
#osx-container .close {display:none; position:absolute; right:0; top:0;}
#osx-container .close a {display:block; color:#7f7f7f; font-weight:bold; padding:6px 12px 0; text-decoration:none; text-shadow:0 1px 0 #f4f4f4;}
#osx-container .close a:hover {color:#7f7f7f;}
#osx-container #osx-modal-data {
    font-size:12px;
}
#osx-container h2 {margin:10px 0 6px;}
#osx-container p {margin-bottom:10px;}