fieldset {
	background: #AAA;
	margin: 1.5em;
	padding: 2em;
	border: 2px solid #999;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
legend {
	font-size: 1.25em;
	margin-bottom: 0 !important;
	padding: 0 .5em;
}

/* Input Types */
input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='number'],
select,
textarea {
	background: #ececec;
	color: #000;
	border: 1px solid #777;
	font-family: inherit;
	font-size: inherit;
	padding: 1px;
	margin: 0 2px;
}


input[type='text']:hover,
input[type='email']:hover,
input[type='url']:hover,
input[type='password']:hover,
textarea:hover {
	background: #e0e0e0;
	border-color: #312a6d;
	cursor: text;
}
input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='password']:focus,
textarea:focus {
	background: #dddddd;
	border-color: #312a6d;
	color: #0d0d0d;
}

input[type='checkbox'], input[type='radio'] {
	margin-top: 4px;
}

input[type='submit'] {
	background: #C74350;
	border: 0;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: inherit;
	padding: .3em 2em;
	text-shadow: 1px 1px 1px #000;
}


:-moz-placeholder {
	color: #767676 !important;
}
::-webkit-placeholder {
	color: #767676 !important;
}
:-ms-input-placeholder {
	color: #767676 !important;
}
/*
input:required, textarea:required {
	outline: 1px solid #C74350;
}
*/

/* Form List */
.form li {
	clear: both;
	list-style: none !important;
    float: left;
    width: auto;
    margin: 5px 0;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='number'],
input[type='file'],
.form li label {
	height: 20px;
}

.form li label {
	line-height: 24px;
    float: left;
	width: 100px;
    text-align: right;
	padding-right: 5px;
}

.form li span.radio input {
    height: 12px;
}

.form input.error {
	float: left;
	border: 2px #CC0000;
	background: #FFFFC0;
}

.form input[type="file"] {
    height: 24px;
}

ul.form label.error {
    float: left;
    width: auto;
    padding-left: 20px;
	margin-left: 5px;
    background: url("../images/icons/cross_circle.png") no-repeat 0 50%;
}

.requiredStar:after {
    content:"*";
    color: #8E2B2B;
    margin-left: 2px;
}

.requiredStar {
    font-weight: bold;
}
