﻿*
{
    font: 15px "Arial", Times, serif;  /* KW: 2012-03-07, changed to arial,  per Tony request, let's consolidate it later ' */
}

/* input styles */
input[type=text], 
textarea, 
input[type=password],
select
{
	background: #f4f4f4;
	border: solid 1px #a3a3a3;
	padding: 5px 10px;
	font: 15px "Arial", Times, serif;
	-webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,.1);
	-moz-box-shadow: inset 0 2px 3px rgba(0,0,0,.1);
	box-shadow: inset 0 2px 3px rgba(0,0,0,.1);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 5px;
	/*-webkit-appearance: none; /* reset webkit search style */
}

input[type=button],
input[type=submit]
{
    background: #e0e0e0;
	border: solid 1px #a3a3a3;
	padding: 5px 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
    -webkit-box-shadow: inset 0 2px 3px rgba(255,255,255,.9);
	-moz-box-shadow: inset 0 2px 3px rgba(255,255,255,.9);
	box-shadow: inset 0 2px 3px rgba(255,255,255,.9);
}

input[type=button]:hover,
input[type=submit]:hover
{
    background: #e8e8e0;
    -webkit-box-shadow: 0 0 3px rgba(255,255,0,.5);
	-moz-box-shadow: 0 0 3px rgba(255,255,0,.5);
	box-shadow: 0 0 3px rgba(255,255,0,.5);
}

input[type=button]:active,
input[type=submit]:active
{
	background: #f4f4f4;
	border: solid 1px #a3a3a3;
	padding: 5px 10px;
	font: 15px "Arial", Times, serif;
	-webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,.1);
	-moz-box-shadow: inset 0 2px 3px rgba(0,0,0,.1);
	box-shadow: inset 0 2px 3px rgba(0,0,0,.1);
}

/* input:focus styles */
input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
input[type=search]:focus,
select:focus
{
	background: #fff;
	border-color: #333;
	outline: none; /* remove outline */
}

/* set field width */
input[type=text], 
input[type="search"],
input[type=password],
select
{
	width: 200px;
}

input[disabled='disabled'][type=button], 
input[disabled='disabled'][type=submit], 
input[disabled='disabled'][type=button]:hover, 
input[disabled='disabled'][type=submit]:hover
{
    background: #e8e8e0;
    -webkit-box-shadow: 0 0 3px rgba(255,255,0,.5);
	-moz-box-shadow: 0 0 3px rgba(255,255,0,.5);
	box-shadow: 0 0 3px rgba(255,255,0,.5);
}

.center_content
{
    margin-right: auto;
    margin-left: auto;
}

.placeholder {
    color: #000;
}
.form ul {
    list-style: none;
}
.form label {
    display: block;
    font-weight: bold;
}
.form input[type=text] {
    width: 500px;
}
.form textarea {
    width: 500px;
    height: 100px;
}