/**
 * cosyAlert
 * @author Jan Ebsen <xicrow@gmail.com>
 * @version 1.0.0
 * @date 2013-04-09
 * @copyright Jan Ebsen 2013
 */
.cosyAlert-container{
	margin:10px; padding:0px;
	position:fixed;
	width:350px;
}
.cosyAlert-container.top{
	top:0px;
}
.cosyAlert-container.middle{
	top:40%;
}
.cosyAlert-container.bottom{
	bottom:0px;
}
.cosyAlert-container.left{
	left:0px;
}
.cosyAlert-container.center{
	margin:10px auto;
	left:0px; right:0px;
}
.cosyAlert-container.right{
	right:0px;
}
	.cosyAlert{
		margin:5px 0px; padding:10px;
		position:relative; top:0px; left:0px;
		text-shadow:0px 1px 0px rgba(255, 255, 255, 0.5);
		border-width:1px;
		border-style:solid;
		z-index:9999;
	}
	.cosyAlert.alert{
		color:#C09853;
		background-color:#FCF8E3;
		border-color:#FBEED5;
	}
	.cosyAlert.notice{
		color:#3A87AD;
		background-color:#D9EDF7;
		border-color:#BCE8F1;
	}
	.cosyAlert.success{
		color:#468847;
		background-color:#DFF0D8;
		border-color:#D6E9C6;
	}
	.cosyAlert.error{
		color:#B94A48;
		background-color:#F2DEDE;
		border-color:#EED3D7;
	}
		.cosyAlert .close{
			margin:0px; padding:0px;
			position:absolute; top:5px; right:5px;
			font-weight:bold;
			font-size:15px;
			line-height:15px;
			color:#000;
			cursor:pointer;
			opacity:0.2;
			text-shadow:0px 1px 0px #FFFFFF;
		}
		.cosyAlert .close:hover{
			opacity:0.5;
		}
		.cosyAlert .loader{
			margin-top:10px;
			width:100%; height:5px;
			clear:both;
		}
			.cosyAlert .loader-bar{
				width:100%; height:5px;
				background:#000;
				box-shadow:0px 1px 0px #FFFFFF;
				opacity:0.2;
			}