*{
	margin: 0;
	padding: 0;
}
input{
	width: 100%;
	height: 30px;
	outline: none;
	border-radius: 2px;
	background: white;
	padding: 0 5px;
	border: 1px solid #cecece;
}
    input:hover {
        border-color: #99061c;
    }
input:disabled{
	cursor: no-drop;
	background: #f9f9f9;
}

    input[type="checkbox"] {
        margin: 0;
        width: 18px;
        height: 18px;
        position: relative;
        top: 4px;
        margin-right:5px;
    }
        input[type="checkbox"]:after {
            display: block;
            height: 18px;
            width: 18px;
            content: "";
            background: white;
            position: absolute;
            border: 1px solid #cecece;
            box-sizing: border-box;
            top: 0;
            left: 0;
            cursor: pointer;
            z-index: 5;
        }
        input[type="checkbox"]:before {
            display: none;
            height: 18px;
            width: 18px;
            content: "✓";
            position: absolute;
            background: #99061c;
            border: 1px solid #99061c;
            box-sizing: border-box;
            top: 0;
            left: 0;
            cursor: pointer;
            z-index: 10;
            color: white;
            line-height: 18px;
            font-family: cursive;
            font-size: 15px;
            text-align: center;
        }
        input[type="checkbox"]:hover:after {
            border-color: #99061c;
        }
input[type="checkbox"]:disabled:after {
    cursor: no-drop;
}
 input[type="checkbox"]:checked:before {
        display: block;
    }


    input[type="radio"] {
        margin: 0;
        width: 18px;
        height: 18px;
        position: relative;
        top: 4px;
        margin-right: 5px
    }
input[type="radio"]:after{
	display: block;
	height: 18px;
	width: 18px;
	content: "";
	background: white;
	position: absolute;
	border: 1px solid #99061c;
	box-sizing: border-box;
	top:0;
	left: 0;
	cursor: pointer;
	z-index: 5;
	border-radius: 50%;
}
        input[type="radio"]:before {
            display: none;
            height: 10px;
            width: 10px;
            content: "";
            position: absolute;
            background: #99061c;
            box-sizing: border-box;
            top: 4px;
            left: 4px;
            cursor: pointer;
            z-index: 10;
            color: white;
            line-height: 17px;
            font-family: cursive;
            font-size: 14px;
            border-radius: 50%;
            text-align: center;
        }
        input[type="radio"]:hover:after {
            border-color: #99061c;
        }
    input[type="radio"]:disabled:after {
    cursor: no-drop;
}
 input[type="radio"]:checked:before {
        display: block;
    }
        input[type="radio"]:checked:after {
            border: 1px solid #99061c;
        }

    select{
    	width: 100%;
    	height: 30px;
    	outline: none;
    	cursor: pointer;
    	border-radius: 2px;
    	padding: 5px;
    }
    select:hover{
    	border-color: #99061c;
    }
    select:disabled{
    	cursor: no-drop;
    	background: #f9f9f9;
    }
    textarea{
    	width: 100%;
    	min-height: 50px;
    	outline: none;
    	border-radius: 2px;
    	padding: 5px;
    	background: white;
    }
    textarea:hover{
    	border-color: #99061c;
    }
    textarea:disabled{
    	cursor: no-drop;
    	background: #f9f9f9;
    }
.ACD {
    background: #f2f2f2;
    border-radius: 3px;
    margin-bottom: 10px;
    padding: 5px 10px;
}
.ACD p{
    font-size:14px;
    line-height:22px;
    margin:0;
}
.bordered > tbody > tr, .bordered > thead > tr {
    border-bottom: 1px solid #e7eaec;
}
.bordered .table {
    margin-left: 10px;
}