
div.jGrowl {
	z-index: 			9999;
	color: 				#fff;
	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;
	-moz-border-radius: 	2px;
	-webkit-border-radius:	2px;
	border-radius:			2px;
	
	border: 				1px solid #e5e5e5;
    overflow: 				hidden;
   
	background:				#fff;
	box-shadow:0 3px 13px -10px #505050;
	position:relative;
	border-radius:4px;
}

div.jGrowl div.jGrowl-notification {
	min-height: 			40px;
}

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:			700;
	
	color:#202020;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 50%, #f3f3f3 52%, #f3f3f3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#ffffff), color-stop(52%,#f3f3f3), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 50%,#f3f3f3 52%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#ffffff 50%,#f3f3f3 52%,#f3f3f3 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#ffffff 50%,#f3f3f3 52%,#f3f3f3 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 50%,#f3f3f3 52%,#f3f3f3 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 ); /* IE6-9 */
	padding-bottom:7px;
	padding-top:6px;
	padding-left:10px;
	border-bottom:1px solid #e5e5e5;
	
}
div.jGrowl div.jGrowl-notification div.jGrowl-message{
	padding:12px;
	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: 11px;
    font-weight: 700;
    line-height: 22px;
	text-transform:none;
    color:#646464;
	margin:0;
	
}
div.jGrowl div.jGrowl-notification div.jGrowl-message h3 a{font-weight:700;text-decoration:underline;color:#646464}
div.jGrowl div.jGrowl-notification div.jGrowl-message h3 a:first-child{
	color:#3db0c1;
	text-decoration:none;
}


div.jGrowl div.jGrowl-notification div.jGrowl-message h3 a:first-child:hover{text-decoration:underline}
div.jGrowl div.jGrowl-notification div.jGrowl-message h3 a:hover{
	text-decoration:none;
}
div.jGrowl div.jGrowl-notification div.jGrowl-close {
	background: url("../../image/remove.png") no-repeat 50% 50%;
    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:3px;
	
}

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;
}
div.jGrowl div.jGrowl-closer:hover{color:#c35000}
/** Hide jGrowl when printing **/
@media print {
	div.jGrowl {
		display: 			none;
	}
}