/*  jsGrowl - JavaScript Messaging System, version 1.6.0.3
 *  (c) 2009 Rodrigo DeJuana
 *
 *  jsGrowl is freely distributable under the terms of the BSD license.
 *
 *--------------------------------------------------------------------------*/

.jsgrowl_msg_container{
  font-family: Arial, Helvetica, sans-serif;
  position:fixed;
  z-index: 1000000;
  opacity: .75;
  filter: alpha(opacity = 75);
  border-collapse:collapse;
  border: 4px #80a3b7 solid;
  width: 300px;
  text-align:left;
  margin: 220px 30px 0  0;
  color: #ffffff;
}
.jsgrowl_msg_container .jsg_body{
  background-color:#ffffff;
  width:380px;
}
.jsgrowl_msg_container .jsg_body_container{
  position:relative;
  min-height:30px;
}
.jsgrowl_msg_container .jsg_clickable{
  cursor:pointer;
}
.jsgrowl_msg_container .jsg_close{
  position:absolute;
  right:0;
  top:0;
  cursor:pointer;
  display:block;
  background-image: none;
  background-color: transparent;
  background-repeat: no-repeat;
  height:22px;
  width:22px;
}
.jsgrowl_msg_container .jsg_icon{
  float:left;
  margin: 2px 10px 10px 5px;
  height: 32px;
}
.jsgrowl_msg_container .jsg_title{
  font-weight:bold;
  color:#80a3b7;
  font-size:16px;
  margin:10px 0 5px 30px;
  word-spacing: 3px;
}
.jsgrowl_msg_container .jsg_msg{
  font-weight:bold;
  line-height: 17px;
  color:#80a3b7;
  margin: 15px 10px 15px 10px;
  font-size:14px;
  word-spacing: 3px;
}
.jsgrowl_msg_container .jsg_side{
  background-color:#ffffff;
  width:10px;
}
.jsgrowl_msg_container .jsg_middle{
  background-color:#ffffff;
  width:380px;
}
/*.jsgrowl_msg_container .jsg_corner {
  width: 10px;
  height: 10px;
  margin: 20px 30px 0 0;
  background-repeat: no-repeat;
  background-image:url(../images/jsgrowl_corners.png);
}*/
.jsgrowl_msg_container .jsg_tl{
  background-position: top left;
}
.jsgrowl_msg_container .jsg_tr{
  background-position: top right;
}
.jsgrowl_msg_container .jsg_bl{
  background-position: bottom left;
}
.jsgrowl_msg_container .jsg_br{
  background-position: bottom right;
}
.jsgrowl_msg_container .jsg_mr{
  background-position: top right;
}
.jsgrowl_msg_container .jsg_mb{
  background-position: bottom right;
}


}
.jsgrowl_msg_container:hover .jsg_close{
  background-image: url(../images/jsgrowl_close1.png);
}
.jsgrowl_msg_container a:link,
.jsgrowl_msg_container a:visited,
.jsgrowl_msg_container a:hover,
.jsgrowl_msg_container a:active {
  color:#ea6d1f;
}
