/*= Alert 
----------------------------------------------------*/		
#alert {
	background-color: #FFF;
	width: 400px;
	
	position: fixed;
	top: 150px;
	left: 50%;
	margin-left: -200px;
	z-index: 100;
	
	-moz-box-shadow: 2px 2px 20px rgba(0,0,0,.75);
	-webkit-box-shadow: 2px 2px 20px rgba(0,0,0,.75);
	box-shadow: 2px 2px 20px rgba(0,0,0,.75);
	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}


/*= Content
----------------------------------------------------*/		
#alertContent {
	display: table;
	padding: 15px;
}

	#alertContent h2 {
		font-size: 20px;
		margin-top:0;
		font-weight: normal;
	}


/*= Actions
----------------------------------------------------*/				
#alertActions {
	text-align: right;
}
		
	#alertActions button {
		cursor: pointer;
		margin-left: .4em;
	}
	
	
/*= Close Trigger
----------------------------------------------------*/		
#alert .close {
	
	position: absolute;
	top: 5px;
	right: 10px;
}
	
	#alertClose:hover {
	}
	
	#overlay {
    background: none repeat scroll 0 0 black;
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 95;
}