/**
 * Default Look and Feel
 */
.alertify,
.alertify-log {
	font-family: Arial;
}
.alertify {
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #f3f3f3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#f3f3f3 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#f3f3f3 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#f3f3f3 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 ); /* IE6-9 */

	border: 1px solid #000000; /* browsers that don't support rgba */
	/*border: 10px solid rgba(0,0,0,.7);*/
	/*border-radius: 8px;*/
	box-shadow: 0 3px 3px rgba(0,0,0,.3);
	-webkit-background-clip: padding;     /* Safari 4? Chrome 6? */
	   -moz-background-clip: padding;     /* Firefox 3.6 */
	        background-clip: padding-box; /* Firefox 4, Safari 5, Opera 10, IE 9 */
}
	.alertify-text {
		border: 1px solid #CCC;
		padding: 10px;
	}
	
	.alertify-button {
		color: #FFFFFF;
		font-weight: bold;
		padding: 6px 15px;
		text-decoration: none;
		box-shadow: inset 0 1px 0 0 rgba(255,255,255,.5);
	}

	.alertify-button-ok {
	background: #e80437;
	background: -moz-linear-gradient(top, #e80437 0%, #bc0316 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e80437), color-stop(100%,#bc0316));
	background: -webkit-linear-gradient(top, #e80437 0%,#bc0316 100%);
	background: -o-linear-gradient(top, #e80437 0%,#bc0316 100%);
	background: -ms-linear-gradient(top, #e80437 0%,#bc0316 100%);
	background: linear-gradient(to bottom, #e80437 0%,#bc0316 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e80437', endColorstr='#bc0316',GradientType=0 );
	}
	
	.alertify-button-ok:hover {
	background: #f60035;
	background: -moz-linear-gradient(top, #f60035 0%, #cc0014 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f60035), color-stop(100%,#cc0014));
	background: -webkit-linear-gradient(top, #f60035 0%,#cc0014 100%);
	background: -o-linear-gradient(top, #f60035 0%,#cc0014 100%);
	background: -ms-linear-gradient(top, #f60035 0%,#cc0014 100%);
	background: linear-gradient(to bottom, #f60035 0%,#cc0014 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f60035', endColorstr='#cc0014',GradientType=0 );
	}	

		.alertify-button-cancel,
		.alertify-button-cancel:hover,
		.alertify-button-cancel:focus {
			background-color: #70000A;
			border: 1px solid #202F60;
		}


.alertify-log {
	background: #1F1F1F;
	background: rgba(0,0,0,.9);
	padding: 15px;
	/*border-radius: 4px;*/
	color: #FFF;
	text-shadow: -1px -1px 0 rgba(0,0,0,.5);
}
	.alertify-log-error {
		background: #FE1A00;
		background: rgba(254,26,0,.9);
	}
	.alertify-log-success {
		background: #5CB811;
		background: rgba(92,184,17,.9);
	}