@charset "UTF-8";
/* CSS Document */

/* ---------------------  newsletter email form  -------------------------- */
	
	
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  margin: 0;
  padding: 0;
  width: 28em; 
}

form fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #555;
  border-width: 1px;
  border-style: solid;
  padding: 1em;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

form fieldset legend {
	font-size:1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 7em; 
	padding: 0; 
	margin: .1em 0 .5em 0; /* set top margin same as form input - textarea etc. elements */
	text-align: left;
}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:16em;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:0; /* set margin on left of form elements rather than right of label aligns textarea better in IE */
	border:none;
	color:#ccc;
	background-color:#333; 
	margin: .1em 0 .5em 0;
	float:right;
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

form small {
	display: block;
	margin: 1em 0 .2em 0; /* instructions/comments left margin set to align w/ right column inputs */
	font-size: .9em;
}

form #spacer {
	display:block;
	clear:both;
	height:.1em;
	width:100%;
	margin:0;
	padding:0;
}

html > body form #spacer { 
    *height: 1.5em;
}

form .required {
	font-weight:bold;
} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
form .submit {
		clear:left;
		float:right;
    	border:none;
		color:#333;
		margin:0;
		padding:0;
		height:19px;
		width:70px;
		background-color:#999;
	}
form .submit:hover {
		color:#000;
		background-color:#ccc;
	}
	form input:focus {
	outline: none;
}
	
	form a, form a:visited {
	height:auto;
	font-size:1em;
	color:#888;
	line-height:1.3em;
	margin:1em 0 0 0;
	text-decoration:none;
	}
	
	form a:hover {
	color:#ccc;
	}

	

	/* --> */