/*
 * SimpleModal OSX Style 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: osx.css 238 2010-03-11 05:56:57Z emartin24 $
 *
 */

body {height:100%; margin:0;} 
#osx-modal-content, #osx-modal-data {display:none;}

/* Overlay */
#osx-overlay {background-color:#333; cursor:wait;}

/* Container */
#osx-container {
	color:#000;  padding-bottom:4px; width:410px; -moz-border-radius-bottomleft:0px; -webkit-border-bottom-left-radius:0px; -moz-border-radius-bottomright:0px; -webkit-border-bottom-right-radius:0px; -moz-box-shadow:0 0 10px #000; -webkit-box-shadow:0 0 10px #202e52;
background:#fff;}
#osx-container a {color:#393939;}
#osx-container #osx-modal-title {color:#fff; font-size:13px; padding:8px 22px; text-transform:uppercase; font-weight:bold; background:#D0BB97;}
#osx-container .close {display:none; position:absolute; right:0; top:0;}
#osx-container .close a {display:block; color:#f4f4f4; font-size:12px; font-weight:bold; padding:6px 12px 0; text-decoration:none;}
#osx-container .close a:hover {color:#484848;}
#osx-container #osx-modal-data {padding:23px;color:#484848;}
#osx-container #osx-modal-data a{color:#484848; text-decoration:underline;}
#osx-container #osx-modal-data a:hover{text-decoration:none; }
#osx-container h2 {margin:10px 0 6px;}
#osx-container p {margin-bottom:10px;color:#484848;}
#osx-modal-data span{ margin-left:54px;}

