/*
 * alert.js - javascript alert replacement v1.0
 *
 * (c) 2009 Naden Badalgogtapeh - http://www.naden.de/blog/javascript-alert
 *
 */
div.alert {
  font-family: Arial;
  border: 1px solid #919191;
  background-color: #fff;
  padding: 5px;
  display: none;
  position: absolute;
  display: block;
}
div.alert div.title {
  font-family: Arial;
  font-weight: normal;
  background-color: #ccffcc;
  color: #333;
  padding: 2px;
}
div.alert div.body {
  padding: 5px 0;
  font-family: Arial;
  width:200px;
}
div.alert div.button {
  text-align: center;
}
div.alert div.button a:link,
div.alert div.button a:active,
div.alert div.button a:visited {
  padding: 2px 4px 2px 4px;
  background-color: #f1f1f1;
  text-decoration: none;
  font-weight: normal;
  color: #333;
  border: 1px solid #333;
}
div.alert div.button a:hover {
  border: 1px solid #333;
}
