/*
 * SimpleModal OSX Style Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2009 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: osx.css 214 2009-09-17 04:53:03Z emartin24 $
 *
 */

/*body {height:100%; margin:0;}*/
#osx-modal-content, #osx-modal-data {display:none;}

/* Overlay */
#osx-overlay {background-color:#000;  }

/* Container */
#osx-container {background-color:#fff; color:#000; font-family:"Lucida Grande",Arial,sans-serif; font-size:.9em; padding-bottom:4px; width:600px; }

#osx-container a, #osx-container a:link, #osx-container a:hover, #osx-container a:active, #osx-container a:visited {
	color:#005591;
	text-decoration:none;
	font-weight:bold;
}
#osx-container #osx-modal-title {color:#fff; background-color:#005591; border-bottom:1px solid #ccc; font-weight:bold; padding:6px 8px; }
#osx-container .close {display:none; float:right;}
#osx-container .close a {display:block; color:#ff0000; font-size:.8em; font-weight:bold; padding:6px 12px 0; text-decoration:none; }
#osx-container .close a:hover {color:#ff0000;}
#osx-container #osx-modal-data {padding:6px 12px; overflow:scroll;}
#osx-container h2 {margin:10px 0 6px;}
#osx-container p {margin-bottom:10px;}
#osx-container span {color:#777; font-size:.9em;}

