﻿/* -------------------------------------------------------------- 

   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)
   
-------------------------------------------------------------- */

label       { font-weight: normal; }
fieldset    { padding:0; margin: 0; border: 0; }
legend      { font-weight: bold; font-size:1.2em; }


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

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }
div.mailform table {
	font-size:100% !important;
}

input[type=text],
input.text, input.title, 
textarea, 
select, 
div.mailform textarea, 
.form_table textarea,
div.mailform input.button, 
.form_table input.button  { 
	font-family:Arial, Helvetica, Sans-Serif;
	font-size: 12px;
	font-size:100%;
}

.form_table td{
	vertical-align:top;
	text-align:left;
}

.form_table td:first-child{
	width:150px;
}

.form_table th{
	text-align:left;
}

div.mailform input, 
.form_table input, 
div.mailform input.text, 
div.mailform input.title,
.form_table input.text, 
.form_table input.title {
	width:300px;
	height:20px;
	padding:2px 2px;
	margin-bottom:4px;
	background-image:url('/cms/common/standard/img/bg_input.gif');
	background-repeat:repeat-x;
	background-color:#eeeeee;
	border: solid #cccccc 1px;
}

div.mailform textarea, .form_table textarea {
	width:300px;
	height:200px;
	padding:2px 2px;
	background-image:url('/cms/common/standard/img/bg_input.gif');
	background-repeat:repeat-x;
	border: solid #cccccc 1px;
}

div.mailform select, 
.form_table select {
	width:300px;
	padding:2px 2px;
	background-color:#eeeeee;
	border: solid #cccccc 1px;
}

.mailform input:hover, .mailform textarea:hover, .mailform select:hover{
	background-image:none;
	background-color:#eeeeee;
}

input[type=checkbox], 
input[type=radio], 
input.checkbox, 
input.radio, 
.form_table.radio,
.mailform .checkbox, 
.mailform.radio,
.radio,
.checkbox {
	width: 30px !important;
	border:0px;
	padding:4px 5px;
	position:relative; 
	top:.25em; 
	background-image:none;
	background-color:transparent;
}

div.mailform input.button, .form_table input.button{
	width:125px;
	background-image:url('/cms/common/standard/img/bg_button.gif');
	background-repeat:repeat-x;
	border:solid #cccccc 1px;
	margin-top:5px;
	padding:2px 5px;
	color: #000000;
	text-align:center;
}
div.mailform input.button:hover, .form_table input.button:hover {
	background-image:url('/cms/common/standard/img/bg_button_hover.gif') !important;
}

select.solutionfinder {width:285px; margin-bottom: 20px;}



/*-- SUCCESS, NOTICE AND ERROR BOXES
---------------------------------------------------*/

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }


/*-- CAPTCHA
---------------------------------------------------*/
.captcha_refresh{
	cursor:pointer;
    float: left;
    margin-right:40px;
}


/*-- SEARCH BOX
---------------------------------------------------*/

form.form_box {margin-bottom:10px;}
input.search_input_box {
	height:20px;
	width:100%;
	margin-bottom:10px;
	border:1px solid #ccc;
	background-image:url('/cms/img/bg_suche_box.png');
	background-repeat:repeat-x;	
	backgoround-position:top left;
	}
	
input.search_button_box {}
input.button_box {}










