#contact_form_holder {
    font-variant: small-caps; 
    width: 100%;
}

#contact_form_holder p {
    padding: 2px; 
}

#contact_form p {
    margin: 2px; 
}

#contact_form_holder input, #contact_form_holder textarea {
    /* width: 100%; */
    font-family: 'courier new', courier, monospace; 
	font-size: 14px;
    padding: 2px;
	border: 1px solid #789;
	margin-bottom: 6px;
}

#contact_form_holder textarea {
    height: 100px;
}

input#send_message {
	font-family: tahoma, verdana, helvetica, arial, sans-serif;
	color: #123;
	}

#send_message {
    width: 200px !important; /* the width of the submit button  */
    border: 1px solid #456; /* remove the default border and put a dark blue one */
    cursor: pointer;
    cursor: hand;
	background: #bcd;
}

#send_message:hover {
	background: #9ab;
	border: 1px solid #123;
}

#cf_submit_p { text-align:right; } /* show the submit button aligned with the right side */

/* styling */

.error {
    display: none; /* hide the errors */
    /* add some styling */
    padding: 4px 10px;
    color: #c00;
    font-size:14px;
    background-color: #FFBABA;
}
.success {
    display: none; /* hide the sucess div */
    /* add some styling */
    padding:10px;
    color: #044406;
    font-size:14px;
    background-color: #B7FBB9;
}

