
div.jGrowl {
	z-index: 			9999;
	color: 				#63b2bf;
	font-size: 			12px;
}

/** Normal Style Positions **/
div.jGrowl {
	position:			absolute;
}

body > div.jGrowl {
	position:			fixed;
}

div.jGrowl.top-left {
	left: 				0px;
	top: 				0px;
}

div.jGrowl.top-right {
	right: 				0px;
	top: 				50px;
}

div.jGrowl.bottom-left {
	left: 				0px;
	bottom:				0px;
}

div.jGrowl.bottom-right {
	right: 				0px;
	bottom: 			0px;
}

div.jGrowl.center {
	top: 				0px;
	width: 				50%;
	left: 				25%;
}

/** Cross Browser Styling **/
div.center div.jGrowl-notification, div.center div.jGrowl-closer {
	margin-left: 		auto;
	margin-right: 		auto;
}

div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
	zoom: 					1;
	width: 					280px;
	margin-top: 			5px;
	margin-bottom: 			5px;
	font-size: 				1em;
	text-align: 			left;
	display: 				none;
	border: 			1px solid rgba(105, 91, 91, 0.56);
    overflow: 				hidden;
   
	background:				#fff;
	box-shadow:0 3px 13px -10px #505050;
	position:relative;
}
div.jGrowl div.jGrowl-notification .jGrowl-button .buttons{
	margin:0;
	background: rgba(154, 150, 154, 0.46);
	padding:10px;
	overflow: hidden;
	border-top: 1px solid rgba(105, 91, 91, 0.56);

}
div.jGrowl div.jGrowl-notification .jGrowl-button .buttons .btn{
	background:#e63250;
	border:1px solid #dfdfdf;
	font-size:12px;
	font-weight:400;
	width:48%;
	float:left;
}
div.jGrowl div.jGrowl-notification .jGrowl-button .buttons .btn +.btn{
	float:right;
}
div.jGrowl div.jGrowl-notification .jGrowl-button .buttons .btn:hover{
    background: #fff;
    color: #000;
}
div.jGrowl div.jGrowl-notification {
	min-height: 			40px;
	border-radius: 5px;
}
div.jGrowl div.jGrowl-notification,
div.jGrowl div.jGrowl-closer {
	margin: 				10px;
}

div.jGrowl div.jGrowl-notification div.jGrowl-header {
	font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 8px;
    padding-top: 8px;
    padding-left: 40px;
    border-bottom: 1px solid rgba(105, 91, 91, 0.56);
    text-transform: uppercase;
   	background: rgb(4, 2, 3);
}
div.jGrowl div.jGrowl-notification div.jGrowl-message{
	padding:15px;
	overflow:hidden;
}

div.jGrowl div.jGrowl-notification div.jGrowl-header span{
	background:url(../../image/check.png) no-repeat left 3px;
	padding-left:22px;
	
}
div.jGrowl div.jGrowl-notification div.jGrowl-message img { 
	float:					left; 
	margin-right:			15px;
}
div.jGrowl div.jGrowl-notification div.jGrowl-message h3 {
	
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
	text-transform:none;
    color:#646464;
	margin:0;
	
}
div.jGrowl div.jGrowl-notification div.jGrowl-message h3 a{
	font-weight: bold;
    text-decoration: none;
    color: #e63250;
}
div.jGrowl div.jGrowl-notification div.jGrowl-message h3 a:hover{text-decoration:underline}
div.jGrowl div.jGrowl-notification div.jGrowl-close {
    cursor: pointer;
    display: inline-block;
    float: right;
    font-size: 1em;
    font-weight: bold;
    height: 25px;
    text-indent: -9999px;
    width: 25px;
    z-index: 99;
	position:absolute;
	right:0;
	top:7px;
	background:url(../../image/remove.png) no-repeat;
	color:#fff;
}
.right-to-left div.jGrowl div.jGrowl-notification div.jGrowl-close{
	font-size:0;
}
div.jGrowl div.jGrowl-closer {
	padding-top: 			4px;
	padding-bottom: 		4px;
	cursor: 				pointer;
	font-size:				.9em;
	font-weight: 			bold;
	text-align: 			center;
	color:#040404;
	text-transform:uppercase;
	font-family:Arial;
	background: #fff;
}
div.jGrowl div.jGrowl-closer:hover{color:blue;}
/** Hide jGrowl when printing **/
@media print {
	div.jGrowl {
		display: 			none;
	}
}