.hidden{
	display: none;
}

.visible{
	display: block !important;
}

.formWarn{
	width: 80%;
    padding: 8px 12px;
    margin: 0 auto 12px auto;
    background: #D82E32;
    background: -moz-linear-gradient(top,#D82E32 20%,#A51F22 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(20%,#D82E32),color-stop(100%,#A51F22));
    background: -webkit-linear-gradient(top,#D82E32 20%,#A51F22 100%);
    background: -o-linear-gradient(top,#D82E32 20%,#A51F22 100%);
    background: -ms-linear-gradient(top,#D82E32 20%,#A51F22 100%);
    background: linear-gradient(to bottom,#D82E32 20%,#A51F22 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D82E32', endColorstr='#A51F22', GradientType=0);
    text-align: center;
	color: #fff;
    font-weight: bold;
    font-size: 15px;
}

#formError{
	position: absolute;
	left: 0;
	top: 0;
	padding: 12px 16px 12px 16px;
	background-color: #D82E32;
	display: none;
	margin-left: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    max-width: 180px;
    z-index: 3;
}

input.error, select.error, textarea.error{
    border: 2px solid #D82E32!important;
}

input[type=checkbox].error{
    outline: 2px solid #D82E32!important;
}