/**
 * Default Look and Feel
 */

.alertify {
	background:#fff;
	-webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 10px rgba(0,0,0,0.1);
	box-shadow: 0 1px 10px rgba(0,0,0,0.1);
	-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;
		color:#fff;
		height:30px!important
	}
	.alertify-button {
		color: #FFF;
		padding: 0 15px;
		padding-top:2px;
		line-height:32px;
		text-decoration: none;
		outline:none;
		float:right;
		text-shadow: 0 1px 0 rgba(0,0,0,0.25);
		box-shadow: inset 0 1px 0 0 rgba(255,255,255,.5);
		-webkit-transition: all 0.3s ease-in-out!important;
		-moz-transition: all 0.3s ease-in-out!important;
		-ms-transition: all 0.3s ease-in-out!important;
		-o-transition: all 0.3s ease-in-out!important;
		transition: all 0.3s ease-in-out!important;
	}
	.alertify-button:hover{
		outline: none;
		padding: 0 15px;
		padding-top:2px;
		line-height:32px;
	}

	.alertify-button:active {
		position: relative;
	}
		.alertify-button-cancel{
			border: 1px solid #D83526;
			background-color: #ff4b3a;
		}
		
		.alertify-button-cancel:hover{
			background-color: #de4133;	
			border: 1px solid #D83526;			
		}
		
		.alertify-button-ok {
			border: 1px solid #3B7808;
			background-color: #5bb75b;
		}
		
		.alertify-button-ok:hover {
			border: 1px solid #3B7808;
			background-color: #51a351;
		}
