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

   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
   * For inline forms, use .inline (even when using columns)

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

/*
  A special hack is included for IE8 since it does not apply padding
  correctly on fieldsets
 */
fieldset { padding:0 1.4em 1.4em 1.4em; margin: 0 0 1.5em 0; }
legend   { font-size:1.2em; margin-top:-0.2em; margin-bottom:1em; }

fieldset, #IE8#HACK { padding-top:1.4em; }
legend, #IE8#HACK { margin-top:0; margin-bottom:0; }

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

/*
  Attribute selectors are used to differentiate the different types
  of input elements, but to support old browsers, you will have to
  add classes for each one.
 */
input[type=text], input[type=password], input[type=url], input[type=email],
input.text,
textarea {
  font-family: Verdana,Arial,Helvetica,sans-serif;
  background-color:#fff;
  color:#000;
}

textarea {
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid #D7EFFA;
	font-size: 13px;
	padding: 3px;
}

input.smalltext {
	width: 150px;
}
input.mediumtext {
	width: 205px;
}
input.largetext {
	width: 280px;
}

input.largertext {
	width: 300px;
}


/*
  This is to be used on forms where a variety of elements are
  placed side-by-side. Use the p tag to denote a line.
 */
form.inline { line-height:3; }
form.inline p { margin-bottom:0; }


/* Success, info, warning, highlight and error/alert boxes
-------------------------------------------------------------- */

.error, .alert { background: #fbe3e4; color: #8a1f11; border-color: #fbc2c4; }
.success       { background: #e6efc2; color: #264409; border-color: #c6d880; }
.info          { background: #d5edf8; color: #205791; border-color: #92cae4; }
.error a, .alert a { color: #8a1f11; }
.notice a          { color: #514721; }
.success a         { color: #264409; }
.info a            { color: #205791; }

.important {
	color: #F20808;
	text-indent: em;
}
.important-red {
	width: auto;
	color: red;
	text-indent: em;
}

span.bold-label {
	font-weight:bold;
}
.section span.important-dialog {
	color: red;
	float: left;
}
.noticebox { 
	background: #FCF8E3; 
	padding: 10px;
	color:  #C09853;
}

.warningbox {
	background-color: #FCF8E3;
	border-color: #FBEED5;
	color: #C09853;
	padding: 10px;
	border-radius: 6px 6px 6px 6px;
	border-width: 1px;
	border-style: solid;
}

.section .warningbox {
	position: absolute;
	right: 20px;
	width: 450px;
}

.warningbox a {
	cursor: pointer;
}

.warningbox div {
	background: url(/ulem-industry/javax.faces.resource/img/messages.png.xhtml) no-repeat scroll 0 0 transparent;
	background-position: 0 -488px;
	margin-top: -4px;
	background-repeat: no-repeat;
	padding-top: 6px;
	padding-left: 28px;
	margin-right: 20px;
}

.frmlbl, .frmlbl2, .frmlbl3, .frmlbl5, .frmlbl6 {
	display: block;
	color: #999;
	font-size: 11px;
	/**white-space: nowrap;*/
	text-align: left;
	float:left;
}

.frmlbl, .frmlbl2 {
	width: 120px;
}

.frmlbl {
	margin-left: 5px;
	margin-right: 60px;
	/**white-space: nowrap;*/
}

.frmlbl6 {
	margin-left: 5px;
	margin-right: 10px;
	
	/**white-space: nowrap;*/
}

.frmlbl span {
	color: #222;
}

.frmlbl a {
	color: #f90;
	text-decoration: none;
}

.frmlbl a:hover {
	color: #005981;
}

.frmlbl3 {
	width: 160px;
	/**white-space: nowrap;*/
	padding: 3px;
}

.frmlbl2 span, .frmlbl5 span{
	color: #222;
}

.frmlbl3 span a {
	color: #f90;
	text-decoration: none;
}

.section label {
	color: #999;
	font-size: 11px;
	/**white-space: nowrap;*/
	float:left;
	width:140px;
	display:block;
}

.frmlbl4{
	width:180px !important; 
}

.section .frmlbl-long {
	width: 320px;
}

.section .frmlbl-full {
	width: auto;
	
}
.section .frmlbl-full-red {
	width: auto;
	color: red;
}

.section-details .section label {
	width:120px;
}

.section-details .section .frmlbl3 {
	width:160px;
}

.section .inputcomments {
	margin-left: 140px;
}

.fileupload-tip {
	margin-left: 195px;
}

.section .stand-w {
	width: 140px;
	word-break: break-all;
}

.section .stand-w-label {
	width: 240px;
}

.section .calendar-stand-w {
	width: 220px;
}

.section .scrollable{
	height: 100px; 
	overflow-y: auto;
	overflow-x:hidden;
	width:600px; 
	border:1px solid #B8B8B8;
	white-space:pre-wrap;
}

.section .field {
	display: block;
	clear: left;
	margin-bottom: 20px;
}

.sub-field {
	float:left;
	margin-left: 20px;
}

.sub-field label {
}

.process-container .section .field {
	margin-bottom: 7px;
}

.process-container .section .reset-padding {
	margin-bottom: 20px;
}

.spacer{
	clear:both; 
	height:30px;
}

.spacer-form{
	clear:both; 
	height:10px;
}

.section-details .section .small-label {
	width:40px;
}

.section-details .section .frmlbl-long {
	width:320px;
}

.section-details .section .frmlbl-vlong {
	width:600px;
}

label.required:before {
	content:" *"; 
	color: red;
}

span.required:before {
	content:" *"; 
	color: red;
}

.strong, .strong-underline {
	font-weight: bold;
}

.strong-underline {
	text-decoration: underline;
}

.tasks_filter_calendar input {
	width:70px;
}
