/*
 * 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 {cursor:default;}

/* Container */
#osx-container {
	font-family:Arial;
	font-size:0.9em;
	padding-bottom:4px;
	width:600px;
-moz-border-radius-bottomleft:6px; -webkit-border-bottom-left-radius:6px; -moz-border-radius-bottomright:6px; -webkit-border-bottom-right-radius:6px; -moz-box-shadow:0 0 64px #000; -webkit-box-shadow:0 0 64px #000;
	color: #000000;
	background-color: #eee;
}
#osx-container a {
}
#osx-container #osx-modal-title {
	color:#000000;
	border-bottom:1px solid #ccc;
	font-weight:bold;
	text-shadow:0 1px 0 #f4f4f4;
	background-color: #B4B4B4;
	font-family: Arial;
	padding-top: 6px;
	padding-right: 8px;
	padding-bottom: 6px;
	padding-left: 8px;
}
#osx-container .close {display:none; float:right;}
#osx-container .close a {
	display:block;
	color:#000000;
	font-size:1em;
	font-weight:bold;
	padding:6px 12px 0;
	text-shadow:0 1px 0 #f4f4f4;
	text-decoration: none;
}
#osx-container .close a:hover {color:#000;}
#osx-container #osx-modal-data {padding:6px 12px;}
#osx-container h2 {margin:10px 0 6px;}
#osx-container p {margin-bottom:10px;}
#osx-container span {
	font-size:0.9em;
	color: #19262B;
}

