/* --------------------------------------------------------------

	forms.css
	* Sets up some default styling for forms
	* Gives you classes to enhance your forms

	Usage:
	* For text fields, use class .title or .text

-------------------------------------------------------------- */

label              { font-weight: normal; }


/* =Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
	margin: 0 2px;
	cursor: text;
	border:none;
	}

.border {	
	border:1px solid #c8da2d;
	float:left;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	}
.warning {
	 border: 1px solid #f00;
}	
.warn 		 {clear:both;float:left;width:100%;}

input, select, button, .button { cursor: pointer; cursor:hand; }
select             { padding: .1em .2em 0; }
option             { padding: 0 .4em; background: #fff; }



input.text,
input.title        { padding: .3em .4em .15em; width: 210px; }
input.title        { font-size: 1.5em; }

input.checkbox,
input.radio {
	position: relative;
	top: .25em;
	margin: 0 5px 0 0;
	padding: 0;
	vertical-align: middle;
	}
textarea {
	padding: .3em .4em .15em;
	height: 130px;
	width: 328px;
	overflow: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	}

.buttons {
	padding-top: 7px;
	text-align: right;
	}
input.file {
	position: relative;
	text-align: right;
	-moz-opacity:0 ;
	filter:alpha(opacity: 0);
	opacity: 0;
	z-index: 2;	
}


div.fakefile {
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 1;
	height:36px;
}

div.fileinputs {
	position: relative;
}
#filename {
	position:absolute;
	top:4px;
	margin-left:2px;
}

/* =Misc
-------------------------------------------------------------- */

.f-line            { float:left; width:100%;margin-top:6px;}
.one-line          { display: inline; float: left; margin: 0 240px 0 0; }


/* =Definition forms
-------------------------------------------------------------- */

.form-newline,
.form-oneline       { display: inline-block; }
.form-newline:after,
.form-oneline:after {
	content: "\0020";
	display: block;
	clear: both;
	visibility: hidden;
	font-size: 0;
	height: 0;
	}
/* Hides from IE-mac \*/
* html .form-newline,
* html .form-oneline { height: 1%; }
.form-newline,
.form-oneline        { display: block; }
/* End hide from IE-mac */


fieldset dl      { margin-bottom: 0; }
.form-newline dd { margin: 0 0 5px; }

.form-oneline dt { position: relative; top: .25em; float: left; clear: left; }
.form-oneline dd { margin: 0 0 6px; padding-left: 120px; }

.labelr dt       { text-align: right; }
.btn-right       { float: right !important; }
dt.nextline      { clear: none; }

.multi dt        { width: 40px; }
.multi input.text{ width: 60px; }
.multi dl        { float: left; margin-right: 60px; padding: 10px; border: 1px solid #aeaeae; }


div.selectbox-wrapper {
    position:absolute;
    background-color:white;
    border:1px solid #E5E5E5;
    margin:0px;
    margin-top:-10px;
    padding:0px;
    text-align:left;
	overflow: auto;
	z-index:100;
}
div.selectbox-wrapper ul {
  list-style-type:none;
  margin:0px;
  padding:0px;
}
div.selectbox-wrapper ul li.selected { 
  background-color: #c8da2d;
}
div.selectbox-wrapper ul li.current { 
  background-color: #CDD8E4;
}
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:2px;
  cursor:pointer;
}


.selectbox /* look&feel of  select box*/
{
  margin: 0px 5px 10px 0px;
  padding-left:2px;
  display : block;
  text-align:left; 
  background: url('../images/backgrounds/select.png') right;
  /*height:18px;*/
  cursor: pointer;
  border:1px solid #c8da2d;
}

select {
	background: url('../images/backgrounds/select.png') right;
}

