@charset "utf-8";
/*    Global style reset for all inputs. Rule is repeated below for IE 6 to recognise the Styles   */
input[type="text"], input[type="password"] {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius : 4px;	
	border: solid 1px silver;
 	padding: .2em .8em;
 	margin: .2em;
	font-size: 100%;
}
fieldset, legend,  textarea,  select  {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius : 4px;	
	border: solid 1px silver;
 	padding: .2em .8em;
 	margin: .2em;
	font-size: 100%;
} 

/* Textarea, Fieldset, legend, select, label  */
textarea {
	font-family: Arial, Verdana, sans-serif;
	padding: .8em;
	overflow-x: hidden;
	overflow-y: auto;
	overflow: auto;
}
fieldset { 	padding: .8em 0; }
legend { 	font-weight:  bold; margin: 0 1em; background-color: #07006c;  color: white;}
label {		padding: .1em .8em; }
select { 	padding:  .1em 0;}

/* Text and Passwords   */
	input[type="text"], input[type="password"], textarea, select {
		background-color: white;
		background-repeat: repeat-x;
		background-position: bottom;
		background-image: url(../images/input_text_normal.gif);
	}	
	input[type="text"]:hover, input[type="password"]:hover, textarea:hover, select:hover {
		background-color: white;
		border: solid 1px #fd9400;
	}	
	input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
		background-color: #fefeef;
		border: solid 1px #fd9400;
	}
/* Buttons 
	input[type="submit"], input[type="button"], button {
		background-repeat: repeat-x;
		background-position: bottom;
		background-color: #757675;
		background-image: url(../images/input_button_normal.gif);
	 	color: white;
	 	text-transform: uppercase;
	 	border:  solid 1px #313131;
	 	font-weight: bold;
	 	font-size: 90%;
	 	cursor: pointer;
	}
	input[type="submit"]:hover, input[type="button"]:hover, button:hover {
		background-color: #494949;
		background-image: url(../images/input_button_hover.gif);
	 	border:  solid 1px black;
	}
	input[type="submit"]:focus, input[type="button"]:focus, button:focus {
		background-color: #171717;
		background-image: url(../images/input_button_active.gif);
	 	border:  solid 1px black;
	}*/