table.form
{
    width: 60%;
    border: 1px solid #ccc;
    border-radius: 7px;
    margin: auto;
}

table.subform
{
    width: 60%;
    border: 1px solid #ccc;
    border-radius: 7px;
    margin: auto;
}

table.form td
{
    width: 50%;
    font-weight: bold;
    padding-left: 10px;
    font-size: 12px;
    vertical-align: middle;
    text-align: justify;
}

table.form input,
table.form select,
table.form textarea
{
    border: 1px solid #ccc;
    width: 90%;
    margin-left: 5%;
}

table.form input.checkbox
{
    border: none;
	width: auto;
}

table.form input.radio
{
    border: none;
    width: auto;
}

table.form input.submit
{
    border-radius: 6px;
    -moz-border-radius: 6px;
    cursor: pointer;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;
    color: #eee;
    border: 1px solid #666;
    background-color: #909090;
    background-image: -webkit-linear-gradient(bottom,#909090 0%,#a0a0a0 100%);
    width: 90%;
    margin-left: 5%;
}

table.form th.top_header
{
    text-align: center;
    background-color: #808080;
    background-image: -webkit-linear-gradient(bottom,#808080 0%,#909090 100%);
    padding: 5px 10px;
    font-weight: bold;
    color: #f2f5f5;
    border-radius: 6px 6px 0 0px;
    -moz-border-radius: 6px 6px 0 0px;
}

table.form th.header
{
    text-align: center;
    background-color: #808080 ;
    background-image: -webkit-linear-gradient(bottom,#808080 0%,#909090 100%);
    padding: 5px 10px;
    font-weight: bold;
    color: #f2f5f5;
}

table.form td.hint
{
    color: #666;
    font-size: 10px;
    text-align: justify;
    text-indent: 15px;
    padding: 0px 15px;
}

table.form td.info
{
    color: #111;
    background-color: #ccc;
    font-size: 10px;
    font-weight: bold;
    text-align: justify;
    text-indent: 15px;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    border-radius: 0px 0px 6px 6px ;
    -moz-border-radius: 0px 0px 6px 6px ;
}

table.form label
{
    font-size: 12px;
    line-height: 20px;
    margin-left: 15px;
}

table.form span.required
{
	color: red;
    font-size: 10px;
}

table.form div.error label:first-child,
table.form label.error,
table.form span.error
{

}

table.form div.error input,
table.form div.error textarea,
table.form div.error select,
table.form input.error,
table.form textarea.error,
table.form select.error
{
	background: #FEE;
	border-color: #C00;
}

table.form div.success input,
table.form div.success textarea,
table.form div.success select,
table.form input.success,
table.form textarea.success,
table.form select.success
{
	background: #E6EFC2;
	border-color: #C6D880;
}

table.form .errorSummary
{
	border: 1px solid #C00;
	margin-top: 5px;
	background: #FEE;
}

table.form .errorMessage
{
    color: #000;
    border: 1px solid #ffc42e;
    border-radius: 7px;
    background-color: #ffeb2b;

    position: absolute;
    display: inline;
    margin-left: 10px;

    font-size: 11px;
    padding: 5px 15px;
}

table.form .errorSummary p
{
	margin: 0;
	padding: 5px;
}

table.form .errorSummary ul
{
	margin: 0;
	padding: 0 0 0 20px;
}

table.captcha
{
    width: 100%;
}