@charset "utf-8";
/* CSS Document */

/* === Remove input autofocus webkit === */
*:focus {outline: none;}


/* === Form Typography === */
.ebwebworkForm h2, .ebwebworkForm label {font-family:'Arimo', arial, verdana, sans-serif;}
.form_hint, .required_notification {font-size: 0.9em;}

.ebwebworkForm {
width:70%;
}

/* === List Styles === */
.ebwebworkForm ul {
    list-style-type:none;
	list-style-position:outside;
	margin:0px;
	padding:0px;
}
.ebwebworkForm li{
	padding:1.0em 0;
	position:relative;
} 
.ebwebworkForm li:first-child, .ebwebworkForm li:last-child {
	
}

/* === Form Header === */
.ebwebworkForm h2, .ebwebworkForm h3 {
border:none;
background:none;
margin:0;
padding:0;
}
.required_notification {
	color:#d45252; 
	margin:5px 0 0 0; 
}

/* === Form Elements === */
	/* form element visual styles */
	.ebwebworkForm input, .ebwebworkForm textarea { 
		border:1px solid #aaa;
		border-radius:2px;
		padding-right:30px;
		-moz-transition: padding .25s; 
		-webkit-transition: padding .25s; 
		-o-transition: padding .25s;
		transition: padding .25s;
	}
	.ebwebworkForm input:focus, .ebwebworkForm textarea:focus {
		background: #fff; 
		border:1px solid #555; 
		box-shadow: 0 0 3px #aaa; 
		padding-right:70px;
	}

/* === HTML5 validation styles === */	
.ebwebworkForm input:required, .ebwebworkForm textarea:required {
	background: #fff url(https://lh6.googleusercontent.com/-rXrwzErpu7Q/U06TdnsBKfI/AAAAAAAAAoA/5QepC-sHWpc/s800/red_asterisk.png) no-repeat 98% center;
}
.ebwebworkForm input:required:valid, .ebwebworkForm textarea:required:valid {
	background: #fff url(https://lh6.googleusercontent.com/-xMCWYRpd4pw/U06TdhSFZ7I/AAAAAAAAAn0/kc3umMr1sLM/s800/valid.png) no-repeat 98% center;
	box-shadow: 0 0 5px #5cd053;
	border-color: #85bc00;
}
.ebwebworkForm input:focus:invalid, .ebwebworkForm textarea:focus:invalid {
	background: #fff url(https://lh4.googleusercontent.com/-7ppb9JEBjAk/U06Tdl2HxuI/AAAAAAAAAn8/O7ejVWIqRe8/s800/invalid.png) no-repeat 98% center;
	box-shadow: 0 0 5px #d45252;
	border-color: #b03535;
}

/* === Form hints === */
.form_hint {
	background: #d45252;
	border-radius: 3px 3px 3px 3px;
	color: white;
	margin-left:8px;
	padding: 1px 6px;
	z-index: 999; /* hints stay above all other elements */
	position: absolute; /* allows proper formatting if hint is two lines */
	display: none;
}
.form_hint::before {
	content: "\25C0";
	color:#d45252;
	position: absolute;
	top:1px;
	left:-6px;
}
.ebwebworkForm input:focus + .form_hint {display: inline;}
.ebwebworkForm input:required:valid + .form_hint {background: #85bc00;}
.ebwebworkForm input:required:valid + .form_hint::before {color:#85bc00;}
	
:-moz-placeholder {
    color: blue;
}
 
::-webkit-input-placeholder {
    color: blue;
}

label	{
font: 1.0em Arimo, Verdana, Geneva, sans-serif;
color:#000;
margin-bottom:0.4em;
display:block;
}

input {
			display: inline;
			margin-bottom:0.1em;
		}
		
.error {
	color: #900;
	font-weight: bold;
}

legend	{
border:none;
background:none;
margin:0;
padding:0;
}

fieldset	{
border:none;
background:none;
margin:0;
padding:0;
}

.submitButton	{
margin: 0.5em auto;
text-align:center;
}


.grid img {
    height: auto;
    max-width: none;
}

.greensafebox	{
padding:5px;
border:1px solid #6b9900;
border-radius:3px;
}

.email_wrapper	{
display:none;
visibility:hidden;	
}

/* ebwebwork credit
----------------- */
#ebwebwork{
margin:1.0em auto !important;
text-align:right;
}

#ebwebwork a{
text-decoration:none;
color:#3e482d;
font:normal 90% 'Arimo', arial, verdana, sans-serif;
}