/**
 * Default Look and Feel
 */
.alertify,
.alertify-log {
	font-family: arial;
	font-size:14px !important;
}
.alertify {
	background: #FFF;
	border: 10px solid #ff8000; /* browsers that don't support rgba */
	border-radius: 8px;
}
	.alertify-text {
		border: 1px solid #CCC;
		padding: 10px;
		border-radius: 4px;
	}
	.alertify-button {
		border-radius: 4px;
		color: #FFF;
		padding: 6px 15px;
		text-decoration: none;
	}

	.alertify-button:active {
		position: relative;
		box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
	}
		.alertify-button-cancel{
			background-color: #ff6b00;
			border: 1px solid #ff6b00;
		}
		
		.alertify-button-cancel:hover{
			background-color: #e6e6e6;
			border: 1px solid #adadad;
			color: black;
		}

		
		
		
		.alertify-button-ok{
			background-color: #ff6b00;
			border: 1px solid #ff6b00;
		}
		
		.alertify-button-ok:hover{
			background-color: #e6e6e6;
			border: 1px solid #adadad;
			color: black;
		}
		


.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);
	}