.notify-container {
	width: 380px;
	z-index: 9999;
}


* html .notify-container {
	position: absolute;
}

.notify-item {
	height: auto;
	background: #262626;
    opacity: 0.95;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius:10px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 6px;
	padding-right: 25px;
	font-size: 12px;
	border: 2px solid #999;
	display: block;
	position: relative;
	margin: 0 0 12px 0;
	line-height:20px;
}
.notify-item a{
	color:#9cb952;
}

.notify-item strong{
	font-size:14px;

}

.notify-item ul{
	margin-top:55px;
}
.notify-item li{
	list-style-type:disc;
	margin-left:25px;
	margin-top:5px;}

.notify-item a:hover{
	color:#FFF;}
.notify-item p {
    text-align: left;
    margin-left: 50px;
}


.notify-item-close {
    background:url(../images/close.gif);
    width:22px;
    height:22px;
    position: absolute;
    top:7px;
    right:7px;
}

.notify-item-image {
    width:32px;
    height: 32px;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    left: 10px;
}

.notify-item-image-notice {
    background:url(../images/notice.png);
}

.notify-item-image-success {
    background:url(../images/success.png);
}

.notify-item-image-warning {
    background:url(../images/warning.png);
}

.notify-item-image-error {
    background:url(../images/error.png);
}


/**
 * notify types
 *
 * pattern: notify-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.notify-type-notice {
    color: white;
}

.notify-type-success {
    color: white;
}

.notify-type-warning {
    color: white;
    border-color: #FCBD57;
}

.notify-type-error {
    color: white;
    border-color: #B32B2B;
}

/**
 * positions
 *
 * pattern: notify-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.notify-position-top-left {
    position: fixed;
    left: 20px;
    top: 20px;
}

.notify-position-top-center {
    position: fixed;
    top: 20px;
    left: 50%;
    margin-left: -195px;
}

.notify-position-top-right {
    position: fixed;
    top: 20px;
    right: 20px;
}

.notify-position-middle-left {
    position: fixed;
    left: 20px;
    top: 50%;
    margin-top: -40px;
}

.notify-position-middle-center {
    position: fixed;
    left: 50%;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}

.notify-position-middle-right {
    position: fixed;
    right: 20px;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}
