/*
 * 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:#000; cursor:wait;}

/* Container */
#osx-container {background-color:#fff; color:#000; font-family:"Lucida Grande",Arial,sans-serif; font-size:.9em; padding-bottom:4px; width:400px; -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;}
#osx-container a {color:#ddd;}
#osx-container #osx-modal-title {color:#305893; background-color:#ddd; border-bottom:1px solid #ccc; font-weight:bold; padding:6px 8px; text-shadow:0 1px 0 #f4f4f4;}
#osx-container .close {display:none; position:absolute; right:0; top:0;}
#osx-container .close a {display:block; color:#777; font-size:1em; font-weight:bold; padding:6px 12px 0; text-decoration:none; text-shadow:0 1px 0 #f4f4f4;}
#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 {color:#777; font-size:.9em;}

#loginForm form {
	width: 400px;
}
#osx-modal-data form, #loginForm form {
	margin: 0 auto;
	padding: 20px 10px;
}
#osx-modal-data form table tr td, #loginForm form table tr td {
	padding: 6px 0;
}
#osx-modal-data form table tr td.loginLeftCell, #loginForm form table tr td.leftCell {
	text-align: right;
	padding-right: 10px;
}
#osx-modal-data form table tr td.buttonCell, #loginForm form table tr td.buttonCell {
	text-align: right;
	padding-top: 20px;
}
#osx-modal-data .logininput, #loginForm .logininput {
	height: 24px;
	background-color: #f6f6f6;
	border: 1px solid #c1c1c1;
	width: 250px;
}
#osx-modal-data .logininput:hover, #loginForm .logininput:hover {
	border: 1px solid #305893;
}
#osx-modal-data p, #loginForm p {
	font-style: italic;
	text-align: center;
}
