/* Krispy Pixel (KP) Simple Contact
 * Author: David A. Mathew (@mathewda)
 * http://www.krispypixel.com
 * http://www.usabilitydistilled.com
 */

#kp-simple-contact-mask {
    background-color:#000;
    display:none;
    height:100%;
    left:0;
    position:absolute;
    top:0;
    width:100%;
    z-index:9000;
}

#kp-simple-contact-modal {
    background-color:#fff;
    display:none;
    left:50%;
    margin-left:-300px;
    position:absolute;
    top:90px;
    width:600px;
    z-index:9999;
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    padding:20px;
}

#kp-simple-contact-modal #close {
    background:url('close.png') no-repeat right;
    cursor:pointer;
    font-family:arial, sans-serif;
    font-size:20px;
    font-weight:700;
    line-height:24px;
    text-decoration:underline;
    text-align:right;
    padding:5px 30px 5px 5px;
}

#contact_header {
    background:url('envelope.png') no-repeat left;
    font-family:arial, sans-serif;
    font-size:30px;
    font-weight:700;
    line-height:50px;
    padding:5px 5px 10px 60px;
}

#kp-simple-contact-form  .textbox,
#kp-simple-contact-form  textarea,
#kp-simple-contact-form  select
{
    background-color:#fff;
    color:#404040;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
	padding: 6px;
	margin:6px 0 0 0;
	border: 1px solid #CDCDCD;
	box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
}

#kp-simple-contact-form  .textbox {
	width: 472px;
    height: 26px;
}
	

#kp-simple-contact-form .textbox:hover[type=text],
#kp-simple-contact-form .textbox:focus[type=text],
#kp-simple-contact-form textarea:hover,
#kp-simple-contact-form textarea:focus {
    background-color:#FFF;
    border:1px solid #00ABF4;
}

#kp-simple-contact-submit {
    cursor:pointer;
    border:none;
	display:block;
    width:142px;
    height:46px;
	margin-left:10px;
	text-indent:-10000px;
    color:#1b2755;
    background-image:url('submit.png');
	background-repeat:no-repeat;
    background-attachment:scroll;
    background-position:0 0;
}

#kp-simple-contact-form .kp-form-row
{
	padding:10px;
	margin:0 0 10px 0;
}

#kp-simple-contact-form label
{
	display:block;
}

#kp-simple-contact-form .kp-form-row-error
{
	background: #FFEFEF none repeat scroll 0 0;
	border: solid #E5A3A3 1px;
	color: #A00000;
	font-weight: bold;
	border-radius: 6px;
	-moz-border-radius: 6px;
}

#kp-simple-contact-error-summary,
#kp-simple-contact-success
{
	border-radius:6px;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    padding:10px;
    margin:10px;
	background: #FFEFEF none repeat scroll 0 0;
	border-width: 2px;
	border-style: solid;
	display:none;
}

#kp-simple-contact-error-summary
{
	line-height: 24px;
	background-color: #FFEFEF;
	border-color: #E5A3A3;
	color: #A00000;
	list-style-position: inside;
	list-style-type: square;
}

#kp-simple-contact-success
{
    background-color:#E3F9E4;
    border-color:#10CE16;
	color:#000;
    font-size:15px;
    font-weight:bold;
}