/*
 * -File    $Id: form.css,v 1.6 2004/07/13 22:09:25 turing Exp $
 * -Author  alex black, enigma@turingstudio.com
 * -Author  manuel holtgrewe <purestorm at teforge dot org>
 */

/**
 * Styles for binarycloud form inputs.
 */

/* styles for template only (no input) form elements */

label.FormLabel
{
	font-family: "Lucida Grande", Verdana, Arial, sans-serif;
	font-weight: bold;
	text-align: left;
	color: #333333;
	font-size: 11px;
}

.HintNode {
    cursor: help;
    border: none;
}

div.HintTip
{
	font-family: "Lucida Grande", Verdana, Arial, sans-serif;
	padding: 2px 2px 2px 5px;
	font-size: 11px;
	width: 200px;
	z-index: 1;
	position: absolute;
	top: 5px;
	right: 5px;
	visibility: hidden;
	background-color: #FFFFCC;
	border: 1px solid #999999;
	font-weight: normal;
}

.ErrorNode {
	font-family: "Lucida Grande", Verdana, Arial, sans-serif;
    padding: 2px;
    font-size: 0.9em;
    margin-bottom:10px;
	background-color: #FFFFCC;
	border: 2px solid #CC0000;
	font-weight: normal;
}

.ErrorList {
    margin-bottom: 5px;
    margin-top: 1px;
    margin-left: 0px;
    padding: 0px;
    padding-left: 15px;
}

.ErrorListItem {
    margin-left: 0px;
}

.ErrorText {
	font-family: "Lucida Grande", Verdana, Arial, sans-serif;
}

/* selectable form inputs */

/* not worth it, puts a border around images
input, textarea, select
{
	border-color: #999999;
	border-width: 1px;
	border-style: solid;
}
*/


.ColorPickerFormInput {
}
.ColorPickerFormInputLabel {
}
.ImageFormInput {
}
.RadioButton {
}
.RadioText {
}
.SelectFormInput {
}
.CheckBoxFormInput {
}
.CheckBoxText {
}

/* text form inputs */
.TextAreaFormInput {
}
.TextFormInput {
}
.PasswordFormInput {
}
.CaptionFormInput {
}

/* button like form inputs */
.ButtonFormInput {
}
.ResetFormInput {
}
.SubmitFormInput {
}
.SubmitFormInput:hover {
}


/**
 * Styles for form component elements.
 * Positioning is achieved with the use of FLOAT instead of HTML tables.
 */

div.formComponent
{
	clear: both;
	padding-top: 5px;
}

table.formTable
{
	padding: 10px;
	border-color: #CCCCCC;
    width: 100%;
}

td.formLabelCell
{
	border-right: #CCCCCC;
	border-left: #CCCCCC;
	border-width: 0 1px 0 0;
	border-style: none solid none none;
	padding: 0 10px 0 0;
}

td.formInputCell { padding: 3px; }


div.spacer {
  clear: both;
}

/**
 * Input-Specific form components
 */

.ActionButtonFormComponent {
    clear: both;
    padding:5px;
    text-align: center;
}

/**
 * form wrapper div & etc
 */
div.form {
  width: auto;
}

span.required
{
	font-weight: bold;
	color: #CC0000;
	font-size: 11px;
	margin: 0 10px 0 0;
}

