/**
 * Default Look and Feel
 */
.alertify,
.alertify-log {
	font-family: sans-serif;
}
.alertify {
	background: #FFF;
    border: 10px solid #31373d;
    border: 10px solid rgba(49, 55, 61, 0.9);
	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 */
			top: 73px;
}
	.alertify-text {
		border: 1px solid #CCC;
		padding: 10px;
		border-radius: 4px;
	}
.alertify-button {
width: auto;
height: 33px;
font-size: 13px;
font-weight: bold;
padding: 0px 10px 0px 10px;
color: #fff;
text-shadow: 0px 1px 0px rgba(0,0,0,.2);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset 0px 1px 0px rgba(255,255,255,.5), 0px 1px 2px rgba(0,0,0,.3);
-moz-box-shadow: inset 0px 1px 0px rgba(255,255,255,.5), 0px 1px 2px rgba(0,0,0,.3);
box-shadow: inset 0px 1px 0px rgba(255,255,255,.5), 0px 1px 2px rgba(0,0,0,.3);
outline: none;
}
.alertify-button img { 
	float:left;
	width:33px;
	height:33px;
}



.alertify-button.blue {
	background: -webkit-linear-gradient(top, #5090bc 0%,#61A0CC 90%,#508BB4 95%,#306589 100%);
	background: -moz-linear-gradient(top, #5090bc 0%,#61A0CC 90%,#508BB4 95%,#306589 100%);
	background: -o-linear-gradient(top, #5090bc 0%,#61A0CC 90%,#508BB4 95%,#306589 100%);
	background: -ms-linear-gradient(top, #5090bc 0%,#61A0CC 90%,#508BB4 95%,#306589 100%);
	background: linear-gradient(top, #5090bc 0%,#61A0CC 90%,#508BB4 95%,#306589 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5090bc', endColorstr='#61A0CC',GradientType=0 );
	border:1px solid #5090bc;
	margin:0 5px 0 35px;
}
.alertify-button.red {
	background: -webkit-linear-gradient(top, #ff6600 0%,#FA8232 90%,#F6751F 95%,#DD7129 100%);
	background: -moz-linear-gradient(top, #ff6600 0%,#FA8232 90%,#F6751F 95%,#DD7129 100%);
	background: -o-linear-gradient(top, #ff6600 0%,#FA8232 90%,#F6751F 95%,#DD7129 100%);
	background: -ms-linear-gradient(top, #ff6600 0%,#FA8232 90%,#F6751F 95%,#DD7129 100%);
	background: linear-gradient(top, #ff6600 0%,#FA8232 90%,#F6751F 95%,#DD7129 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6600', endColorstr='#FA8232',GradientType=0 );
	border:1px solid #ff6600;
	margin:0 35px 0 5px;
}


.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);
	bottom: -7px;
}
	.alertify-log-error {
		background: #bf4c4c;
		background: rgba(191, 76, 76, 0.9);
		-webkit-box-shadow: 0px 2px 0px rgba(167, 49, 49, 0.9);
        -moz-box-shadow: 0px 2px 0px rgba(167, 49, 49, 0.9);
        box-shadow: 0px 2px 0px rgba(167, 49, 49, 0.9);
		bottom: -7px;
	}
	.alertify-log-success {
		background: #4ba64b;
		background: rgba(75, 166, 75, 0.9);
		-webkit-box-shadow: 0px 2px 0px rgba(48, 137, 48, 0.9);
        -moz-box-shadow: 0px 2px 0px rgba(48, 137, 48, 0.9);
        box-shadow: 0px 2px 0px rgba(48, 137, 48, 0.9);
		bottom: -7px;
	}
		.alertify-log-warring {
		background: #EAAF51;
		background: rgba(234, 175, 81, 0.9);
		color: #fff;
		-webkit-box-shadow: 0px 2px 0px rgba(143, 104, 43, 0.9);
        -moz-box-shadow: 0px 2px 0px rgba(143, 104, 43, 0.9);
        box-shadow: 0px 2px 0px rgba(143, 104, 43, 0.9);
		bottom: -7px;
	}
	    .alertify-log-forum {
		background: #61A0CC;
		background: rgba(80, 144, 188, 0.94);
		color: #fff;
		-webkit-box-shadow: 0px 2px 0px rgb(66, 118, 154);
        -moz-box-shadow: 0px 2px 0px rgb(66, 118, 154);
        box-shadow: 0px 2px 0px rgb(66, 118, 154);
		bottom: -7px;
	}
