/**
 * FORMS LAYOUT
 */
.page-form{
	float:left;
	background:#ccc;
	padding:17px;
	width:auto;
	}
	
form {
	font-family:Arial,Helvetica,Sans Serif;
	}
	
form label {
    display: block;
    vertical-align: top;
	width:30%;
	float:left;
	padding-bottom: 0.393em;
    padding-top: 0.393em;
	line-height: 1.357;
	}
	
form fieldset legend{
    font-size: 1.643em;
    font-weight: bold;
    margin-bottom: 0.5em;
	}
	
button, input, select, textarea{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
    background-color: #FFFFFF;
	padding: 0.5em 0.643em;
    border: medium none;
	font-family: Arial,Helvetica,Sans-serif;
    border-radius: 0 0 0 0;
    box-shadow: none;
    line-height: normal;
    margin: 0;
    text-align: left;
	width: 100%;
	color: #000000;
	}
	
input[type="button"], input[type="submit"], input[type="reset"] {
	background: url("/images/css/button-arrow-right.gif") no-repeat scroll right 50% #000000;
    color: #FFFFFF;
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
    line-height: 1;
    margin-top: 1.357em;
    padding: 0.643em 2.75em 0.643em 1.75em;
    width: auto;
	}

form .medium {
    max-width: 10.143em;
	}
form .long {
    max-width: 23em;
	}
form .short {
    max-width: 8em;
	}
form .option-input {
	width:auto;
	height:auto;
	margin: 0.6em;
	}
form fieldset ul.horz .long,
form fieldset ul.horz .short,
form fieldset ul.horz .medium{
	width:auto;
	}
	
/* FORM UL LISTS */
form fieldset ul {
    margin: 0;
    padding: 0;
	}
form fieldset li {
    list-style: none outside none;
	display:block;
	clear: both;
    margin: 0;
    padding: 0.357em 1em;
	margin-bottom: 1px;
	background:#e0e0e0;
	}
	
form fieldset ul.horz{
	width:100%;
	}
form fieldset ul.horz li{
	float:left;
	clear:none;
	}
form fieldset ul.horz li label{
	white-space:preserve;
	width:auto;
	margin-right:10px;
	}
	


/* FORM ERRORS */
input.error {
    background-color: #DA495A;
	}
form fieldset li.error-wrapper p{
	color:red;
	}
.error-msg {
    background: url("/images/css/alert.png") no-repeat scroll 6px 9px #DA495A;
    color: #FFFFFF;
    font-size: 1em;
    line-height: 140%;
    margin: 10px 0;
    overflow: auto;
    padding: 8px 8px 8px 30px;
    position: relative;
	}
