/* - - - - - - - - - - - - - - - - - - - - -

 Title : Example Custom CSS : DinoMaster!
 URL : http://wufoo.com

 Last Updated : April 1, 2011

- - - - - - - - - - - - - - - - - - - - - 

INSTRUCTIONS
1. Copy / Paste all or portions of these
CSS rules into "custom.css".

2. Experiment and play.

- - - - - - - - - - - - - - - - - - - - - */

/* - - - Default - - - */

/* Logo */


/* Backgrounds */
.wufoo .info{display:none}
.wufoo input[type=text], .wufoo input[type=password], .wufoo input[type=email], .wufoo input[type=tel], .wufoo textarea {
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 
	font-weight: 400;
	font-size: 12px;
	background: #1a1a1a;
	border: 1px solid #4d4d4d;
	line-height: 18px;
	color:#666666;
	padding: 10px 4px;
	border-radius: 3px;
	-moz-border-radius: 3px; 
	-khtml-border-radius: 3px; 
	-webkit-border-radius: 3x;
	transition: all 200ms linear;
	}
	
.wufoo input[type=text]:focus, .wufoo input[type=password]:focus, .wufoo input[type=email]:focus, .wufoo textarea:focus { 
	border-color: #262626;
	border-radius: 3px;
	-moz-border-radius: 3px; 
	-khtml-border-radius: 3px; 
	-webkit-border-radius: 3x;
}

.wufoo input.false[type=text], .wufoo input.false[type=password]:focus, .wufoo input.false[type=email], .wufoo textarea.false { 
	border-color: #fa4d5a;
	border-radius: 3px;
	-moz-border-radius: 3px; 
	-khtml-border-radius: 3px; 
	-webkit-border-radius: 3x;
}

.wufoo input[type=text], .wufoo input[type=password], .wufoo input[type=email] { width: 340px; max-width: 97%; border-radius: 3px;
	-moz-border-radius: 3px; 
	-khtml-border-radius: 3px; 
	-webkit-border-radius: 3x;}		/* padding issue (240 + 2*5 = 250) */
textarea { width: 1100px; height: 150px; max-width: 97%; padding: 11px 4px 8px 4px; line-height: 22px; }		/* padding issue (395 + 2*5 = 405) */

.wufoo .one-half input[type=text], .wufoo .one-half input[type=password], .wufoo .one-half input[type=email] { width: 520px; }
.wufoo .one-half textarea { width: 520px; }

.wufoo input[type=submit] {
	font-family: 'Open Sans';
	font-weight: 600;
	font-size: 13px; 
	line-height: 22px ;
	letter-spacing: 0.15em; 
	text-transform: uppercase;
	text-align: center;
	display: block;
	border: none;
	color: #000;	
	background: #fff;
	cursor: pointer;
	padding: 15px 40px;
	border-radius: 3px;
	-moz-border-radius:3px; 
	-khtml-border-radius:3px; 
	-webkit-border-radius:3px;
	-webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
	}
	
.wufoo input[type=submit]:hover { 
	background-color: #4da5f5;
	transform: scale(1.07);
	-ms-transform: scale(1.07); 
	-webkit-transform: scale(1.07);
	color: #fff;	
	}
	
.wufoo select {
	background: #ffffff;
	border: 1px solid #d9d9d9;
	height: 34px;
	width: auto;
	padding:8px;
	color: #666666;
	border-radius: 3px;
	-moz-border-radius: 3px; 
	-khtml-border-radius: 3px; 
	-webkit-border-radius: 3x;
	transition: all 200ms linear;
	}
.wufoo select:hover {	border-color: #262626; }
	
.wufoo select option {
	cursor: pointer;
	padding: 5px 7px;
	}
	
.wufoo label {
	line-height: 26px;
	width: 100%;
	display:block;
	color: #fff;
	}
	
.wufoo .focused{background:#FFF7C0}
.wufoo .instruct{background-color:#F5F5F5}

/* Borders */
#container{border:0 solid #cccccc}
.wufoo .info{border-bottom:1px dotted #CCCCCC}
.wufoo .instruct{border:1px solid #e6e6e6}

/* Typography */
.wufoo .info h2{font-size:160%;font-family:inherit;color:#000000}
.wufoo .info div{font-size:95%;font-family:inherit;color:#444444}
.wufoo .section h3{font-size:110%;font-family:inherit;background:#FFFFFF;color:#000000}
.wufoo .section div{font-size:85%;font-family:inherit;color:#444444}
.wufoo label.desc, .wufoo legend.desc{font-size:95%;font-family:inherit;color:#fff}
.wufoo li div, .wufoo li div label, .wufoo li span label{font-family:inherit;color:#fff}
.wufoo input.text, .wufoo textarea.textarea, .wufoo select.select, .wufoo label.choice{font-size:100%;font-family:inherit;color:#333333}
.wufoo label.choice{color:#fff}
.wufoo .instruct{font-size:80%;font-family:inherit;color:#444444
}