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

* html .notice-wrap {
	position: absolute;
}

.notice-item {
	height: 60px;
	background: #333;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	color: #FFF;
	padding: 6px 6px 0 6px;
	font-family: "Lucida Grande";
	font-size: 11px;
	border: 2px solid #999;
	display: block;
	position: relative;
	margin: 0 0 12px 0;
}

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

/* CUSTOM CLASS */
.notice-item.info{
    opacity: .8;
    -moz-box-shadow: 2px 2px 3px #888;
    -webkit-box-shadow: 2px 2px 3px #888;
    box-shadow: 2px 2px 3px #888;
}
.notice-item.info{
    padding-left:50px;
    background: #333 url(imgs/info.png) no-repeat 16px 18px;
}
.notice-item.info .notice-item-close{
    width:38px;
    height:38px;
    text-indent: -1000em;
    background: url(imgs/close.png);
    top:-8px;
    margin-right:-28px;
}
.notice-item.info p{
    padding:0 10px;
}
