@charset "utf-8";
/* CSS Document */

.cnt-errorBdr{
	border:1px solid #C00 !important;
	
	
}

.redcolor{
	color:#900;
}

/* Tooltip styling */
.cntValidateError {
    
    position: relative;
    padding: 4px;
	 position: absolute;
    background: #000;
    color: #fff !important;
    padding: 4px 8px;
    font-size: 14px;
    line-height: 1.4;
    min-width: 250px !important;
    text-align: center;
    border-radius: 4px;
	
	 /*top: 50%;*/
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	
	 left: 100%;
    margin-left: 6px;
	z-index: 10000;
}



/* Tooltip arrow styling/placement */
.cntValidateErrorArrow{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
	
	/*top: 50%;*/
    margin-top: -6px;
	
	left: 100%;
    border-width: 6px 6px 6px 0;
    border-right-color: #000;
	z-index: 10000;
}


