/*
 * 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 $
 *
 */

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

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

/* Container
------------- */
#osx-container {
  -moz-border-radius-bottomleft:10px;
  -moz-border-radius-bottomright:10px;
  -moz-box-shadow:0 0 64px #000;
  -webkit-border-bottom-left-radius:10px;
  -webkit-border-bottom-right-radius:10px;
  -webkit-box-shadow:0 0 64px #000;
  background-color:#27598e;
  padding:0;
  width:600px;
}
#osx-container #osx-modal-title {
  background:#27598e url(../images/modal-bar.gif) no-repeat;
  color:#fff;
  font-weight:bold;
  padding:10px 12px;
}
#osx-container .close {
  display:none;
  float:right;
}
#osx-container .close a {
  background:url(../images/osx-close.gif) no-repeat;
  border:none;
  display:block;
  height:31px;
  width:35px;
}
#osx-container #osx-modal-data {
  padding:0 12px 0 12px;
}
#osx-container p {
  margin-bottom:10px;
}
#osx-container span {
  font-size:.9em;
}
