form {
    margin: 0; padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	}

small {
	font-size: 10px;
	color: #999;
	}

th {
	font-weight: bold; 
	text-align: left;
	padding: 2px;
	font-size: 12px;
	}

td {
	padding: 2px;
	font-size: 12px;
	}
	
label {
	cursor: pointer;
	line-height: 16px;
	}
	
input {
	border: 1px solid #ccc;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	padding: 2px;
	}
input:focus {
	border-color: #7a659e;
	}
#male, #female {
	border: 1px solid #fff !important;
	width: 16px; height: 16px;
	vertical-align: middle;
	}

input.small {
	width: 50px;
	}
input.medium {
	width: 100px;
	}
input.large {
	width: 250px;
	}

/* (SUBMIT)BUTTONS SLIDING DOORS ----------------------------------------- */

button { 
	position: relative;
	border: 0; 
	padding: 0;
	cursor: pointer;
	overflow: visible; /* removes extra side padding in IE */
}

* html button {
	vertical-align: top;
	}

button::-moz-focus-inner {
	border: none;  /* overrides extra padding in Firefox */
}

button span { 
	position: relative;
	display: block; 
	white-space: nowrap;
	font-size: 11px;
	font-weight: bold;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	/* Safari and Google Chrome only - fix margins */
	button span {
		margin-top: -1px;
	}
}


/* OPTIONAL BUTTON STYLES for applying custom look and feel: */		
button.submit { 
	padding: 0 11px 0 0; 
	margin-right: 5px;
	text-align: center; 
	background: transparent url('/img/buttons/buttons.gif') no-repeat right -100px; 
}
	
button.submit span {
	padding: 0 0 0 11px; 
	height: 26px; 
	line-height: 26px; 
	background: transparent url('/img/buttons/buttons.gif') no-repeat left top; 
	color: #fff; 
	min-width: 79px;
}
	
button.submit:hover, button.submitHover { /* the redundant class is used to apply the hover state with a script */
	background-position: right -150px; 
}
	
button.submit:hover span, button.submitHover span {
	background-position: 0 -50px;
}

