.notice-wrap {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 250px;
	z-index: 9999;
}

* html .notice-wrap {
	position: absolute;		
}
 
.notice-item {
	height: 60px;
	background:  #333;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	color: black;
	padding: 10px 10px 5px 10px;
	/*font-family: Arial;*/
	/*font-family: lucida Grande;*/
	font-size: 0.8em;
	border: 2px solid #ccc;
	display: block;
	position: relative;
	margin: 0 0 12px 0;
	text-align: center;
}

.notice-item-close {
	position: absolute;
	font-family: Arial;
	font-size: 0.8em;
	font-weight: bold;
	right: 6px;
	top: 6px;
	cursor: pointer;
}

.error
{
  background: red;
}

.warning
{
  background: orange;
}

.notice
{
  background: yellow;
}

.success
{
  background: url(/images/bg-grey-trans.png) repeat;
  color: #ffffff;
}


