/* --------------------------------------------------------------------------
	GENERAL FORM */

form {
	font-family: "Lucida Grande", "Lucida Sans Unicode", Lucida, Tahoma, Arial, sans-serif;
	font-size: 1.2em;
	line-height: 1.3em;
}


#errors {
	padding: 10px; 
	margin-bottom: 10px;
	border: 1px solid #c00;
        font-size:1.4em;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

.column_center p.form {
clear:both;
font-size:1em;
width:94%;
margin:5px 0;
margin-bottom:5px;
font-style:italic;
color:#484848;
text-indent:0px;
padding:0px;
border-bottom:1px dashed #484848;
}

.error {
        clear:both;
        float:left;
        font-size:1em;
        color:red;
        width:inherit;
        margin-bottom:5px;
}

/* --------------------------------------------------------------------------
	IMAGE UPLOAD */

div.button {
	height: 15px;	
	width: 133px;
	font-size: 1.3em;
	color: white;
        background: #3a464c;
	text-align: center;
	padding-top: 15px;
        cursor: pointer;
}
/* 
We can't use ":hover" preudo-class because we have
invisible file input above, so we have to simulate
hover effect with javascript. 
 */
div.button.hover {
        cursor: pointer;
	background: #51626b;
}


/* --------------------------------------------------------------------------
	FIELDSET */

fieldset {
        width: 610px;
	margin-bottom: 0px;
	padding: .5em;
	background-color: #f8f8f8;
	border: 1px solid #bbb;	
}

legend {
font-size: 1.1em;
padding:3px;
}

/* --------------------------------------------------------------------------
	LABELS */

label {
        clear:both;
        float:left;
	display: inline;
	padding-right: 5px;
        cursor:pointer;
        width:75px;
}

/**
 * use this class in the $defaults for 'label' in the config file
 * if you want the text in the label left justified
 */
label.left {
	text-align: left;
}

label.right {
	text-align: right;
}


/**
 * this needs to be assigned to all 'checkbox' and 'radio' type elements
 * (to remove any width and float styles previously set)
 */
label.check {
        clear:both;
	float: none;
        display:inline;
        padding-left:1px;
        padding-top:5px;
	width: 50px;
}

/**
 * this is where you can style your required labels
 * don't forget to include this class name in the config file
 */
label.required {
	font-weight: normal;
}

/* --------------------------------------------------------------------------
	GENERAL INPUTS */

input, select, textarea {
clear:both;
	font-size: 12px;
	color: #333;	
	border: 1px solid #666;
}

input.error {
	border: 1px solid #c00;
}

input[disabled] {
	color: #808080;
	background-color: #efefef;
}

/* --------------------------------------------------------------------------
	TEXT INPUTS */

input {
clear:both;

	padding: 1px;
	margin-bottom: 2px;
    margin-right: 3px;
    text-align:left;
}

/* --------------------------------------------------------------------------
	CHECKBOX / RADIO INPUTS */

input.check {
        clear:both;
        float:none;
        display:inline;
	    padding: 1px;
	    margin-bottom: 2px;
        margin-right: 3px;
        margin-left: 0px;
        text-align:left;
}

*html input.check {
        border:0px solid black;   
}

/* --------------------------------------------------------------------------
	IMAGE INPUTS */

input.image {
	border: 0px;
	background-color: transparent;
}

/* --------------------------------------------------------------------------
	TEXTAREA */

textarea {
	font-family: "Lucida Grande", "Lucida Sans Unicode", Lucida, Tahoma, Arial, sans-serif;	
	padding: 2px;
	width: 296px;
	width: "300px";
	height: 100px;
}

textarea.error {
	border: 1px solid #c00;
}


/* --------------------------------------------------------------------------
	SELECT */

select {
	padding: 0px;
	width: 296px;
	width: "300px";
	margin-bottom: 4px;
	background-color: #fff;
}

*html select {
    float:right;
    position:relative;
    left:-24px;
}

optgroup {
	color: #fff;
	background-color: #999;
}

option {
	color: #000;
	background-color: #fff;
}

/* --------------------------------------------------------------------------
	BUTTONS */

.button {
        float:left;
        text-align:center;
        color:red;
        background: white;
	width: auto;
        padding: 4px;
        font-size:1.2em;
	margin: 0px auto;
	border: 1px solid #606060;
        cursor:pointer;	
}
