/**
 * Form Generation Library Stylesheet
 * 
 * This style sheet includes the basic styles
 * for a form generated with the form generation
 * library for CodeIgniter
 * 
 * @license		MIT License
 * @author		Frank Michel
 * @link		http://frankmichel.com
 * @docu		http://frankmichel.com/formgenlib
 * @email		info@frankmichel.com
 * 
 * @file		form.css
 * @version		1.5
 * @date		08/27/2009
 * 
 * Copyright (c) 2009 Frank Michel
 */

 
 
/* --------------------------------------------------------------------------
	GENERAL FORM */

form {
	margin:0;
	padding:0;
	font-size: 12px;
	line-height: 24px;
}

/**
 * this will make sure that floats will be cleared
 * for example if you use <br /> after checkboxes and radio buttons
 */
form br {
	clear: left;
}

#errors {
	padding: 10px; 
	margin-bottom: 10px;
	border: 1px solid #c00;
	border-radius: 6px;
}

/* --------------------------------------------------------------------------
	FIELDSET */

fieldset {
	font-size: 12px;
	line-height: 24px;
	margin-bottom: 20px;
	padding: 20px;
	background-color: #efecda;
	border: 1px solid #f1f1f1;	
	border-radius: 6px;
}

legend {
	font-size: 12px;
}

/* --------------------------------------------------------------------------
	LABELS */

label {
	display: inline;
	float: left;
	width: 140px;
	width: "140px";
	padding-right: 10px;
	vertical-align: middle;
}

/**
 * use this class in the $config['defaults'] for 'label' in the config file
 * if you want the text in the label left justified
 */
label.left {
	text-align: left;
}

/**
 * 'combine' is used when two labels are combined such as in 'City/Zip'
 */
label.left.combine {
	width: auto;
	float: left;
	padding: 0;
}

/**
 * use this class in the $config['defaults'] for 'label' in the config file
 * if you want the text in the label right justified
 */
label.right {
	text-align: right;
}

label.right.combine {
	width: auto;
	float: none;
	text-align: right;	
	padding: 0;
}

/**
 * this needs to be assigned to all 'checkbox' and 'radio' type elements
 * (to remove any width and float styles previously set)
 */
label.check {
	float: left;
	width: auto;
	padding-left: 6px;
}

/**
 * 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: bold;
}

/* --------------------------------------------------------------------------
	GENERAL INPUTS */

input, select, textarea, button {
	font-size: 12px;
	color: #000;
	border: 1px solid #666;
}

input.error, select.error, textarea.error {
	border: 1px solid #c00;
}

input[disabled], input[readonly] {
	color: #808080;
	background-color: #efefef;
}

/* --------------------------------------------------------------------------
	TEXT INPUTS */

input[type="text"] {
	width: 292px;
	width: "300px";
	padding: 4px;
	margin-bottom: 5px;
}

input[type="password"] {
	width: 292px;
	width: "300px";
	padding: 4px;
	margin-bottom: 5px;
}

/* --------------------------------------------------------------------------
	CHECKBOX / RADIO INPUTS */

input.check {
	float: left;
	width: auto;
	padding: 0;
	margin: 0;
	height: 24px;
	border: none;
}

/* --------------------------------------------------------------------------
	UPLOADS */

input.upload {
	border: none;
	background-color: transparent;
}

/* --------------------------------------------------------------------------
	IMAGE INPUTS */

input.image {
	border: 0px;
	background-color: transparent;
}

/* --------------------------------------------------------------------------
	TEXTAREA */

textarea {
	font-family: arial, sans-serif;	
	padding: 2px;
	width: 400px;
	width: "420px";
	height: 250px;
}

/* --------------------------------------------------------------------------
	SELECT */

select {
	padding: 2px;
	margin-bottom: 4px;
	background-color: #fff;
}

optgroup {
	color: #fff;
	background-color: #999;
}

option {
	color: #000;
	background-color: #fff;
}

/* --------------------------------------------------------------------------
	BUTTONS */
/*
button, .button {
	width: auto;
	height: 24px;
	padding: 1px 5px 1px 5px;
	margin: 0;
	color: #fff;
	background-color: #215586;			
	border: 1px solid #606060;
	vertical-align: middle;		
}


button, .redbutton {
	width: auto;
	height: 24px;
	padding: 1px 5px 1px 5px;
	margin: 0;
	color: #fff;
	background-color: #cc0000;			
	vertical-align: middle;
	border: 1px solid #bbb;	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

button, .silverbutton {
	width: auto;
	height: 30px;
	padding: 1px 4px 1px 4px;
	margin: 0;
	color: #cc0000;
	font-weight:bold;
	background-color: #f1f1f1;			
	vertical-align: middle;
	border: 1px solid #bbb;	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}
*/
/* --------------------------------------------------------------------------
	PROFILE PASSWORD */
.password {
}

.pstrength-info {
margin-left:150px;
}

.pstrength-bar {
margin-left:150px;
border: 1px solid white;
font-size: 1px;
height:5px;
width:0px;
}

.pstrength-minchar {
	font-size : 10px;
	border:1px solid red;
}




/* --------------------------------------------------------------------------
	PUBLIC TEXT INPUTS */

.input2 {
	width: 135px;
	width: "135px";
	padding: 4px;
	margin-bottom: 5px;
}

.input3 {
	width: 335px;
	width: "335px";
	padding: 4px;
	margin-bottom: 5px;
}

.labelsearchlabel {
	display: inline;
	float: left;
	width: 80px;
	width: "80px";
	padding-right: 20px;
	vertical-align: middle;
	color:#cc0000;
	font-weight:bold;
	font-size:1.8em;
}

.inputsrchbutton {
	width: 50px;
	width: "50px";
	padding: 4px;
	margin-bottom: 5px;
	background:#cc0000;
	color:#fff;
}

.form-text default-value {
	width: 135px;
	width: "135px";
	padding: 4px;
	margin-bottom: 5px;
}

.hidden {
display:none;
visiblity:hidden;
}





























