@charset "utf-8";
/* CSS Document */
.siteici form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% verdana,arial,sans-serif;
  margin: 0;
  padding: 10px;
  min-width: 560px;
  max-width: 700px;
  width: 610px;
  line-height:22px;
}


.siteici fieldset {
  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  
  
  padding-top: 20px;        /* padding in fieldset support spotty in IE */
  
  border:1px dashed #e5e5e5;
  line-height:24px;
}

.siteici fieldset legend {
	font-size:1.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  */
					   color:#d35247;
					   
}

.siteici form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 150px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

.donanim label { 
	display: block;  /* block float the labels to left column, set a width */
	float: right; 
	width: 150px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

.siteici fieldset label:first-letter { /* use first-letter pseudo-class to underline accesskey, note that */
	text-decoration:none;    /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
                                    /* pseudo-class on legend elements, but do support it on label elements */
                                    /* we instead underline first letter on each label element and accesskey */
                                    /* each input. doing only legends would  lessens cognitive load */
                                   /* opera breaks after first letter underlined legends but not labels */
}

.siteici input, .siteici textarea, .siteici select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
							  padding:2px;
							  background-color:#ffffff;
							  border:1px solid #b1b1b1;
}

.siteici input:hover, .siteici textarea:hover, .siteici select:hover {
	background-color:#FFFFCC;
}
.siteici input:focus, .siteici textarea:focus {
	background-color:#FFFFCC;
}

.siteici .radio {border: 1px solid #fbfbfb;}
.siteici input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

.siteici textarea { overflow: auto; }

.siteici small {
	
	padding: 1px 3px;
	font-size: 80%;
}

.siteici .required{font-weight:bold;} /* uses class instead of div, more efficient */

.siteici br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

.siteici .buton {margin-left:400px; font-size:14px; color:#FFF; font-weight:bold;}
.siteici .buton:hover {margin-left:400px; font-size:14px; color:#FFF; font-weight:bold; border:1px solid #96bb43;}



