/*
	Scilset Formular Grid (Basiert auf 960 Grid System - http://960.gs/)

	Enthalten:
	- 16-spaltiger Raster für Adminmasken
	- 4-spaltiger Raster mit flexibler Breite für Dialoge

	Diese Datei soll smarts_form.css ablösen. smarts_form bleibt für Custom Forms bestehen	
*/

div.smarts_form_divider{
	border-top: 1px dotted #ccc;
	margin: 0 -19px 25px -15px;
	clear: both;
}

.smarts_form_container fieldset{
	border-color: transparent;
	padding-top: 0;
}

/* ======================================================== */
/* = Formatierung aller inputs des Typs Text und Passwort = */
/* ======================================================== */
.smarts_form_container input[type=password],
.smarts_dialog_container input[type=password]{
	letter-spacing: .4em;
}

.smarts_form_container * input[type=text],
.smarts_form_container * input[type=email],
.smarts_dialog_container * input[type=email],
.smarts_dialog_container * input[type=text]{
	letter-spacing:0.02em;
	word-spacing:0.1em;
}

.smarts_form_container * input[type=text],
.smarts_form_container * input[type=date],
.smarts_form_container * input[type=password],
.smarts_form_container * input[type=email],
.smarts_dialog_container * input[type=text],
.smarts_dialog_container * input[type=date],
.smarts_dialog_container * input[type=password],
.smarts_dialog_container * input[type=email],
.smarts_form_container textarea,
.smarts_dialog_container textarea{
	border: 1px solid #BCBCBC;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	color: black;
	font:  1em/1.2em Arial, sans-serif;
	/*margin-left:-1px;*/
	background: #f4f4f4 url(/rsrc/smarts/icon_editable.png) no-repeat right 300%;

}

.smarts_form_container textarea,
.smarts_dialog_container textarea{
	padding: 4px;
}

.smarts_form_container * input[type=text],
.smarts_form_container * input[type=email],
.smarts_form_container * input[type=number],
.smarts_form_container * input[type=password]{
	padding: 4px 28px 4px 6px;
}

.smarts_form_container * input[type=date]{
	padding: 4px 28px 4px 6px;
}

/* Grid 1 ohne Rollover und Padding wegen Textmenge */
.smarts_form_grid_1 input[type=text],
.smarts_form_grid_1 input[type=email],
.smarts_form_grid_1 input[type=numer],
.smarts_form_grid_1 input[type=password]{
	padding: 4px 6px;
	background-image: none;
}

/* Experimentell: Pflichtfeld-Prüfung mit CSS */
input.smarts_pflichtfeld[value=''] {
	background-color:#FF5A00 !important;
}

.smarts_form_container * input[type=text]:hover,
.smarts_form_container label:hover input[type=text],
.smarts_form_container * input[type=email]:hover,
.smarts_form_container label:hover input[type=email],
.smarts_form_container * input[type=number]:hover,
.smarts_form_container label:hover input[type=number],
.smarts_form_container * input[type=password]:hover,
.smarts_form_container label:hover input[type=password]{
	background-position: right -81px;
}

.smarts_form_container * input[type=text]:focus,
.smarts_form_container * input[type=text]:focus:hover,
.smarts_form_container * input[type=email]:focus,
.smarts_form_container * input[type=email]:focus:hover
.smarts_form_container * input[type=number]:focus,
.smarts_form_container * input[type=number]:focus:hover,
.smarts_form_container * input[type=date]:focus, 
.smarts_form_container * input[type=date]:focus:hover,
.smarts_form_container * input[type=password]:focus,
.smarts_form_container * input[type=password]:focus:hover,
.smarts_dialog_container * input[type=text]:focus,
.smarts_dialog_container * input[type=text]:focus:hover,
.smarts_dialog_container * input[type=password]:focus,
.smarts_dialog_container * input[type=password]:focus:hover,
.smarts_form_container textarea:focus,
.smarts_dialog_container textarea:focus{
	color: #2F0800;
	text-shadow: 0 0 2px #FFA200;
	border: 1px solid #ffc000; /*#fff36f*/ /*#d7d7d7;*/
	box-shadow: 0 0 3px #FFB900; /*#dbdbdb;*/
	-moz-box-shadow: 0 0 3px #FFB900;
	-webkit-box-shadow: 0 0 3px #FFB900;
	outline: 0 none; /* Safari Outline bei Fokus */
	background-color:  #ffd800; /*#feff7b*/
}

.smarts_form_container * input[type=number]:focus,.smarts_form_container * input[type=number]:focus:hover,
.smarts_form_container * input[type=text]:focus,.smarts_form_container * input[type=text]:focus:hover,
.smarts_form_container * input[type=email]:focus,.smarts_form_container * input[type=email]:focus:hover,
.smarts_form_container * input[type=password]:focus,.smarts_form_container * input[type=password]:focus:hover{
	background-position: right 4px;
}

/* Reset für Felder, die nicht editiert werden dürfen */
.smarts_form_container input[readonly="readonly"],
.smarts_form_container label:hover input[readonly="readonly"],
.smarts_form_container input[readonly="readonly"]:focus,
.smarts_dialog_container input[readonly="readonly"],
.smarts_dialog_container label:hover input[readonly="readonly"],
.smarts_dialog_container input[readonly="readonly"]:focus{
	border: 1px solid #f7f7f7 !important;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	background-color: #f7f7f7 !important;
	background-image: none !important;
	cursor: not-allowed !important;
	/*padding-left: 4px !important;*/ /* warum dieser Wert? Probleme bei Darstellung im Grid */
	text-shadow: none !important;
	color: #999 !important;
}

/* Checkbox Formular Hochformat: Alle input type checkbox die direkt auf ein label folgen */
.smarts_form_container label > input[type=checkbox],
.smarts_form_container label > input[type=radio],
.smarts_dialog_container label > input[type=checkbox],
.smarts_dialog_container label > input[type=radio]{
	margin-top: 1.9em;
	color:black;
	margin-right: 5px;
}

/* Checkbox Formular Querformat: Text immer schwarz obwohl innerhalb Label */
label > em{
	color:black;
	font-style: normal;
}

.smarts_form_container label,.smarts_dialog_container label{
	color:#484848;
	cursor: pointer;
}

.smarts_form_container select,.smarts_dialog_container select {
	padding: 6px 0 0 4px;
	width: 100%;
	margin-top: 1px;
}
.smarts_form_container select option,.smarts_dialog_container select option {
	padding:4px;
}

.smarts_form_container optgroup, .smarts_dialog_container optgroup{
	color: #ccc;
	font-style: normal;
	border-bottom: 1px solid #e3e3e3;
	padding: 3px;
}
.smarts_form_container option,.smarts_dialog_container option{
	color: black;
	padding-left: 10px;
}

/* Templates für neue Einträge */
fieldset.smarts_form_emphasize {
	background-color: #333;
	border-bottom: 1px solid black;
	margin:-25px -20px 0 -15px;
	padding:10px 0 10px 15px;
}

fieldset.smarts_form_emphasize label,
fieldset.smarts_form_emphasize em {
	color: #999 !important;
}

.smarts_form_container h4{
	font-size: 1.3em;
}

/* ============================================= */
/* = Formularraster -> Globale Vorgaben Raster = */
/* ============================================= */

.smarts_form_container{
	/*width:960px;*/
} /* umschließende Klasse für alle Formularelemente */
.smarts_form_grid_1,
.smarts_form_grid_2,
.smarts_form_grid_3,
.smarts_form_grid_4,
.smarts_form_grid_5,
.smarts_form_grid_6,
.smarts_form_grid_7,
.smarts_form_grid_8,
.smarts_form_grid_9,
.smarts_form_grid_10,
.smarts_form_grid_11,
.smarts_form_grid_12,
.smarts_form_grid_13,
.smarts_form_grid_14,
.smarts_form_grid_15,
.smarts_form_grid_16 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 1em;
}

/* ================================= */
/* = Formularraster mit 16 Spalten = */
/* ================================= */

.smarts_form_grid_1 {
	width:40px;
}
.smarts_form_grid_2 {
	width:100px;
}
.smarts_form_grid_3 {
	width:160px;
}
.smarts_form_grid_4 {
	width:220px;
}
.smarts_form_grid_5 {
	width:280px;
}
.smarts_form_grid_6 {
	width:340px;
}
.smarts_form_grid_7 {
	width:400px;
}
.smarts_form_grid_8 {
	width:460px;
}
.smarts_form_grid_9 {
	width:520px;
}
.smarts_form_grid_10 {
	width:580px;
}
.smarts_form_grid_11 {
	width:640px;
}
.smarts_form_grid_12 {
	width:700px;
}
.smarts_form_grid_13 {
	width:760px;
}
.smarts_form_grid_14 {
	width:820px;
}
.smarts_form_grid_15 {
	width:880px;
}
.smarts_form_grid_16 {
	width:940px;
}

/* ================================================================== */
/* = Anpassung Textfelder, Textareas und Passwordfeldern ans Raster = */
/* ================================================================== */

/* Grid 1 ohne Rollover-Effekt und padding-right */
.smarts_form_grid_1 input[type=email], .smarts_form_grid_1 input[type=text], .smarts_form_grid_1 input[type=password] {
	width:26px;
}
.smarts_form_grid_2 input[type=email], .smarts_form_grid_2 input[type=text], .smarts_form_grid_2 input[type=password] {
	width:64px;
}
.smarts_form_grid_3 input[type=email], .smarts_form_grid_3 input[type=text], .smarts_form_grid_3 input[type=password] {
	width:124px;
}
.smarts_form_grid_4 input[type=email], .smarts_form_grid_4 input[type=text], .smarts_form_grid_4 input[type=password] {
	width:184px;
}
.smarts_form_grid_5 input[type=email], .smarts_form_grid_5 input[type=text], .smarts_form_grid_5 input[type=password] {
	width:244px;
}
.smarts_form_grid_6 input[type=email], .smarts_form_grid_6 input[type=text], .smarts_form_grid_6 input[type=password], .smarts_form_grid_6 input[type=date]  {
	width:304px;
}
.smarts_form_grid_7 input[type=email], .smarts_form_grid_7 input[type=text], .smarts_form_grid_7 input[type=password] {
	width:364px;
}
.smarts_form_grid_8 input[type=email], .smarts_form_grid_8 input[type=text], .smarts_form_grid_8 input[type=password] {
	width:424px;
}
.smarts_form_grid_9 input[type=email], .smarts_form_grid_9 input[type=text], .smarts_form_grid_9 input[type=password] {
	width:494px;
}
.smarts_form_grid_10 input[type=email], .smarts_form_grid_10 input[type=text],.smarts_form_grid_10 input[type=password] {
	width:544px;
}
.smarts_form_grid_11 input[type=email], .smarts_form_grid_11 input[type=text],.smarts_form_grid_11 input[type=password] {
	width:604px;
}
.smarts_form_grid_12 input[type=email], .smarts_form_grid_12 input[type=text],.smarts_form_grid_12 input[type=password] {
	width:664px;
}
.smarts_form_grid_13 input[type=email], .smarts_form_grid_13 input[type=text],.smarts_form_grid_13 input[type=password] {
	width:724px;
}
.smarts_form_grid_14 input[type=email], .smarts_form_grid_14 input[type=text],.smarts_form_grid_14 input[type=password] {
	width:784px;
}
.smarts_form_grid_15 input[type=email], .smarts_form_grid_15 input[type=text],.smarts_form_grid_15 input[type=password] {
	width:844px;
}
.smarts_form_grid_16 input[type=email], .smarts_form_grid_16 input[type=text],.smarts_form_grid_16 input[type=password] {
	width:904px;
}

.smarts_form_grid_1 textarea {
	width:30px;
	resize:vertical;
} /* resize = Safari Resize-Handler */
.smarts_form_grid_2 textarea {
	width:90px;
	resize:vertical;
}
.smarts_form_grid_3 textarea {
	width:150px;
	resize:vertical;
}
.smarts_form_grid_4 textarea {
	width:170px;
	resize:vertical;
}
.smarts_form_grid_5 textarea {
	width:270px;
	resize:vertical;
}
.smarts_form_grid_6 textarea {
	width:330px;
	resize:vertical;
}
.smarts_form_grid_7 textarea {
	width:390px;
	resize:vertical;
}
.smarts_form_grid_8 textarea {
	width:450px;
	resize:vertical;
}
.smarts_form_grid_9 textarea {
	width:520px;
	resize:vertical;
}
.smarts_form_grid_10 textarea {
	width:570px;
	resize:vertical;
}
.smarts_form_grid_11 textarea {
	width:630px;
	resize:vertical;
}
.smarts_form_grid_12 textarea {
	width:690px;
	resize:vertical;
}
.smarts_form_grid_13 textarea {
	width:750px;
	resize:vertical;
}
.smarts_form_grid_14 textarea {
	width:810px;
	resize:vertical;
}
.smarts_form_grid_15 textarea {
	width:870px;
	resize:vertical;
}
.smarts_form_grid_16 textarea {
	width:930px;
	resize:vertical;
}

/* ============================= */
/* = Einrückungen rechts/links = */
/* ============================= */

.smarts_form_container .prefix_1 {
	padding-left:60px;
}
.smarts_form_container .prefix_2 {
	padding-left:120px;
}
.smarts_form_container .prefix_3 {
	padding-left:180px;
}
.smarts_form_container .prefix_4 {
	padding-left:240px;
}
.smarts_form_container .prefix_5 {
	padding-left:300px;
}
.smarts_form_container .prefix_6 {
	padding-left:360px;
}
.smarts_form_container .prefix_7 {
	padding-left:420px;
}
.smarts_form_container .prefix_8 {
	padding-left:480px;
}
.smarts_form_container .prefix_9 {
	padding-left:540px;
}
.smarts_form_container .prefix_10 {
	padding-left:600px;
}
.smarts_form_container .prefix_11 {
	padding-left:660px;
}
.smarts_form_container .prefix_12 {
	padding-left:720px;
}
.smarts_form_container .prefix_13 {
	padding-left:780px;
}
.smarts_form_container .prefix_14 {
	padding-left:840px;
}
.smarts_form_container .prefix_15 {
	padding-left:900px;
}
.alpha {
	margin-left: 0 !important;
} /* Links bündig */

.smarts_form_container .suffix_1 {
	padding-right:60px;
}
.smarts_form_container .suffix_2 {
	padding-right:120px;
}
.smarts_form_container .suffix_3 {
	padding-right:180px;
}
.smarts_form_container .suffix_4 {
	padding-right:240px;
}
.smarts_form_container .suffix_5 {
	padding-right:300px;
}
.smarts_form_container .suffix_6 {
	padding-right:360px;
}
.smarts_form_container .suffix_7 {
	padding-right:420px;
}
.smarts_form_container .suffix_8 {
	padding-right:480px;
}
.smarts_form_container .suffix_9 {
	padding-right:540px;
}
.smarts_form_container .suffix_10 {
	padding-right:600px;
}
.smarts_form_container .suffix_11 {
	padding-right:660px;
}
.smarts_form_container .suffix_12 {
	padding-right:720px;
}
.smarts_form_container .suffix_13 {
	padding-right:780px;
}
.smarts_form_container .suffix_14 {
	padding-right:840px;
}
.smarts_form_container .suffix_15 {
	padding-right:900px;
}
.omega {
	margin-right: 0 !important;
} /* Rechts bündig */

/* Push Space >> 16 Columns
----------------------------------------------------------------------------------------------------*/

.smarts_form_container .push_1 {
	left:60px;
}
.smarts_form_container .push_2 {
	left:120px;
}
.smarts_form_container .push_3 {
	left:180px;
}
.smarts_form_container .push_4 {
	left:240px;
}
.smarts_form_container .push_5 {
	left:300px;
}
.smarts_form_container .push_6 {
	left:360px;
}
.smarts_form_container .push_7 {
	left:420px;
}
.smarts_form_container .push_8 {
	left:480px;
}
.smarts_form_container .push_9 {
	left:540px;
}
.smarts_form_container .push_10 {
	left:600px;
}
.smarts_form_container .push_11 {
	left:660px;
}
.smarts_form_container .push_12 {
	left:720px;
}
.smarts_form_container .push_13 {
	left:780px;
}
.smarts_form_container .push_14 {
	left:840px;
}
.smarts_form_container .push_15 {
	left:900px;
}

/* Pull Space >> 16 Columns
----------------------------------------------------------------------------------------------------*/

.smarts_form_container .pull_1 {
	left:-60px;
}
.smarts_form_container .pull_2 {
	left:-120px;
}
.smarts_form_container .pull_3 {
	left:-180px;
}
.smarts_form_container .pull_4 {
	left:-240px;
}
.smarts_form_container .pull_5 {
	left:-300px;
}
.smarts_form_container .pull_6 {
	left:-360px;
}
.smarts_form_container .pull_7 {
	left:-420px;
}
.smarts_form_container .pull_8 {
	left:-480px;
}
.smarts_form_container .pull_9 {
	left:-540px;
}
.smarts_form_container .pull_10 {
	left:-600px;
}
.smarts_form_container .pull_11 {
	left:-660px;
}
.smarts_form_container .pull_12 {
	left:-720px;
}
.smarts_form_container .pull_13 {
	left:-780px;
}
.smarts_form_container .pull_14 {
	left:-840px;
}
.smarts_form_container .pull_15 {
	left:-900px;
}

/* ===================================================== */
/* = 4-spaltiger Dialograster (flexibel in der Breite) = */
/* ===================================================== */
.smarts_dialog_container * input[type=text],
.smarts_dialog_container * input[type=email],
.smarts_dialog_container * input[type=password]{
	padding: 4px 6px;
}

.smarts_dialog_grid_1,
.smarts_dialog_grid_2,
.smarts_dialog_grid_3,
.smarts_dialog_grid_4{
	display:inline;
	float: left;
	/*	margin-left: 2%;*/
	/*	margin-right: 2%;*/
	/*	margin-bottom: 1.5em;*/
}

.smarts_dialog_grid_1{
	width:21%;
}
.smarts_dialog_grid_2{
	width:46%;
}
.smarts_dialog_grid_3{
	width:71%;
}
.smarts_dialog_grid_4{
	width:96%;
}

/* Versuch mit online berechnetem Grid
.smarts_dialog_grid_1 {width:23.0%;}
.smarts_dialog_grid_2 {width:48.0%;}
.smarts_dialog_grid_3 {width:73.0%;}
.smarts_dialog_grid_4 {width:98.0%;}

.smarts_dialog_grid_1, 
.smarts_dialog_grid_2, 
.smarts_dialog_grid_3, 
.smarts_dialog_grid_4{
	display:inline;
	float: left;
	position: relative;
	margin-left: 1%;
	margin-right: 1%;
}
*/

.smarts_dialog_grid_1 input[type="email"],.smarts_dialog_grid_1 input[type="text"],.smarts_dialog_grid_1 input[type="password"]{
	width:93%;
}
.smarts_dialog_grid_2 input[type="email"],.smarts_dialog_grid_2 input[type="text"],.smarts_dialog_grid_2 input[type="password"]{
	width:95%;
}
.smarts_dialog_grid_3 input[type="email"],.smarts_dialog_grid_3 input[type="text"],.smarts_dialog_grid_3 input[type="password"]{
	width:95.5%;
}
.smarts_dialog_grid_4 input[type="email"],.smarts_dialog_grid_4 input[type="text"],.smarts_dialog_grid_4 input[type="password"]{
	width:97.5%;
}

.smarts_form_container a:link,
.smarts_form_container a:visited,
.smarts_form_container a:active{
	color: #666;
	text-decoration:underline;
}

.smarts_dialog_container abbr,.smarts_form_container abbr{
	background: url('/rsrc/smarts/icon_dialog_hilfe.png') no-repeat right 50%;
	padding-right: 20px;
	border:0;

}

.smarts_dialog_container .achtung {
    margin-top: 10px;
    background: url(/rsrc/smarts/icon_attention.png) no-repeat left .1em;
    padding-left: 23px;
}

.smarts_dialog_container label a:link,
.smarts_dialog_container label a:visited,
.smarts_dialog_container label a:active{
	color:#0075FF;
}
.smarts_dialog_container label a:hover{
	color:#005DFF;
}

/* =================================== */
/* = vCard für 16-spaltige Formulare = */
/* =================================== */

.vcard{
	margin:0 -15px;
	background-color: #333;
	color: #ccc;
}
.vcard .adr{
}

#selector {
	background: url('/rsrc/smarts/bg_menu_aufklapper.gif') no-repeat scroll top left;
	width: 9px;
	height: 5px;
}

/* ==================================================== */
/* = Scilsets Form Grid Table ohne/mit Eingabefeldern = */
/* ==================================================== */

.smarts_form_table{
	/*width: 940px;*/
	border: 1px solid #e3e3e3;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	margin: 0 10px 15px 10px;
	background-color: white;
    /*box-shadow: 0px 0px 6px #000000A7;*/
}

.smarts_ui_window .smarts_form_table{
	width: 100%;
}

.smarts_form_table td, .smarts_form_table th {
	padding: 5px 10px;
	text-align:left;
}
.smarts_form_table tr:first-child th{
	background-color:#979797 !important;
}
.smarts_form_table tr:first-child th:first-child {
	border-top-left-radius: 7px;
}
.smarts_form_table tr:first-child th:last-child {
	border-top-right-radius: 7px;
}

/*.smarts_form_table tr:nth-child(even) {background: white}
.smarts_form_table tr:tr:nth-child(odd) {background: #dedede}*/

.smarts_form_table td a:link,
.smarts_form_table td a:visited,
.smarts_form_table td a:active{
	color:#666;
}

.smarts_form_table td a:hover{
	color:#333;
}

.smarts_form_table td {
	border-top: 1px solid #e3e3e3;
}
.vtop td{
	vertical-align: top;
}


.smarts_form_table th a, .smarts_form_table th {
    /*background-color: #373832 !important;*/
    color: #E7E7E7 !important;
    padding-right: 12px;
    text-decoration: none !important;
    white-space: nowrap;
}

.smarts_form_table th a:hover{
	background-position: right 50%;
}

.smarts_form_table tr:hover td{
	background-color: #F2F2F2;
}


.smarts_form_table a span.link_label{
	display:none;
	padding: 0;
}

.smarts_form_table a:hover span.link_label{
	background: none !important;
	font-weight: bold !important;
	display:inline;
}

/* Konflikte prüfen. Vermutlich wird die Anweisung nicht mehr benötigt, da Tabellenanweisung geändert */
/* .last_tr td{border:0; padding-right:0 !important;} /* Letzte Reihe ohne Rahmen */

/* Tabelle mit Input-Feldern */
.smarts_form_table_edit{
	width:980px;
} /* Nur benötigt wenn Tabelle nicht in Tab-Container */
.smarts_form_table_edit td{
	padding:0;
}
.smarts_form_table_edit th{
	margin-left:9px;
}

/* Suchergebnis in WYSIWYG-Suche hervorheben */
a.smarts_result_highlight{
	/*background-color:#BACF00;*/
	border-bottom:5px solid #9DAF00 !important;
	text-shadow:0 0 5px #727F00;
}

/* Textausrichtung innerhalb von Labels */
.smarts_form_rtl{
	text-align:right;
}
.smarts_input_rtl{
	text-align:right;
	padding-right: 6px !important;
	padding-left: 28px !important;
}

.smarts_edit_row{
	background:url("/rsrc/smarts/icon_editable.png") no-repeat scroll left bottom transparent;
	display: none;
	margin: 2px 0 0 -39px;
	position: absolute;
	width: 30px;
	height: 15px;
	cursor: pointer;
}

.smarts_edit_row:hover{
	background-position: left top;
}
.smarts_form_table tr:hover .smarts_edit_row{
	display: inline;
}

/* Mail-Links im Suchergebnis hervorheben */
#search_suggestion a.suchfeld_email, .smarts_form_table a.suchfeld_email{
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-image:url("/rsrc/smarts/smarts_icon_next.png");
	background-repeat: no-repeat;
	background-position:5px 50%;
	padding:2px 6px 2px 15px;
	text-decoration: none !important;
}

#search_suggestion a.suchfeld_email{
	background-color: #7F7F7F;
	display:inline;
	white-space:nowrap;
	color:white !important;
}

.smarts_form_table a.suchfeld_email{
	background-color: #e3e3e3;
	white-space:nowrap;
}

/* =========================== */
/* = Paginierung von Results = */
/* =========================== */

/* Suchergebnisse anhängen */
.last_tr a.append_result:link, .last_tr a.append_result:active, .last_tr a.append_result:visited{
	background: url('/rsrc/smarts/icon_li_plus.gif') no-repeat top left !important;
	padding-left: 20px;
}

/* Suchergebnisse Seitenweise */
.smarts_pager{
	margin-top: 25px;
	width:100%;
}

.smarts_pager li{
	display: inline;
	float:left;
	margin: 5px;
}

.smarts_pager a, #current_page, .smarts_pager span {
	padding: 3px 7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	border-radius:7px;
}

.smarts_pager a:link, .smarts_pager a:visited{
	background-color:#E7E7E7;
	border:1px solid white;
	color:#999999 !important; /* wegen Vererbung Standardfarbe Links */
	text-decoration: none;
}

#current_page{
	color: #f2f2f2;
	background-color: #999;
	text-decoration: none;
}

.smarts_pager a:hover{
	color: white !important; /* wegen Vererbung Standardfarbe Links */
	background-color: #666;
	text-decoration: none !important; /* wegen Vererbung Standardfarbe Links */
}

/* ==================== */
/* = Ende Paginierung = */
/* ==================== */

/* =============================== */
/* = Scilset Funktionsmenü (Cog) = */
/* =============================== */

.smarts_bt_function span{
	font-size: 15px;
	background: url(/rsrc/smarts/icon_funktionsmenue.png) no-repeat 50% 2px;
	padding: 0 5px;
	cursor: default;
}

.smarts_menu_function div{
	display:none;
}
.smarts_menu_function:hover div{
	display: inline;
	position: absolute;
	z-index: 20;
	padding: 12px 5px 5px 10px; /*36*/
	margin: -11px 0 0 -10px;
}

.smarts_menu_function div ul{
	padding: 3px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background-color: #333;
	-moz-box-shadow: 0 0 3px black;
	box-shadow: 0 0 3px black;
	-webkit-box-shadow: 0 0 3px black;
}

.smarts_menu_function div ul li a{
	display:block;
	padding: 0 4px 2px 4px;
	color: white;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #e7e7e7 !important; /* TODO: stefan;stefan;fixen;allgemeine Linkformatierung vererbt. beheben */
	white-space: nowrap;
	text-decoration: none !important;
}

.smarts_menu_function div ul li a:hover{
	background-color: #1b1b1b;
	text-decoration: none !important; /* TODO: stefan;stefan;fixen;allgemeine Linkformatierung vererbt. beheben */
	color: white !important;
}

/* Smarts AJAX Loader Animation */
p.smarts_ajaxloader{
	background: url('/rsrc/smarts/icon_ajaxload.gif') no-repeat left 50%;
	color: #666;
	padding-left: 32px;
	height: 24px;
}

/* + Button zum Hinzufügen von Zeilen */
a.smarts_add_button{
	background:url("/rsrc/smarts/bt_smarts_form_add.png") no-repeat scroll left top transparent;
	display:block;
	margin-top:15px;
	padding:4px 25px;
}

.smarts_form_table .item_active_high_prio,
.smarts_form_table .item_active_pending,
.smarts_form_table .item_active_low_prio{
	-moz-border-radius:4px 4px 4px 4px;
	color:white;
	font-family:verdana,sans-serif;
	font-size:10px;
	letter-spacing:0.07em;
	padding:2px 4px;
	text-transform:uppercase;
	white-space:nowrap;
}

.smarts_form_table .item_active_high_prio{
	background-color: #33CCFF;
}/* blau */
.smarts_form_table .item_active_pending{
	background-color: #ff5a00;
} /* orange */
/* .smarts_form_table {background-color: #d30000;} dunkelrot */
.smarts_form_table .item_active_low_prio{
	background-color: #c4d310;
}  /* grün */

/* Prioritätenanzeige Appcast */
span.smarts_appcastprio_1,
span.smarts_appcastprio_2,
span.smarts_appcastprio_3,
span.smarts_appcastprio_4,
span.smarts_appcast_type,
span.ticket_id{
	color: white;
	text-transform: uppercase;
	font-size: 10px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	letter-spacing: 0.07em;
	padding: 2px 4px;
	font-family: verdana, sans-serif;
	min-width: 1em;
}

span.smarts_appcastprio_1{
	background-color: #d30000;
}
span.smarts_appcastprio_2{
	background-color: #ff5a00;
}
span.smarts_appcastprio_3{
	background-color: #c4d310;
}
span.smarts_appcastprio_4{
	background-color: #ccc;
}
span.smarts_appcast_type{
	background-color: #33CCFF;
	margin-right: 5px;
}
span.ticket_id{
	background-color: #ccc;
}

ul.smarts_liste_label li p{
	color:#666666;
	font-size:12px;
	line-height:20px;
	margin: 10px 50px 20px 60px !important;
	white-space:normal;
}

/* Browser Icons für Appcast */
span.safari,
span.opera,
span.firefox,
span.ie,
span.chrome,
span.misc{
	background-position:left 50%;
	background-repeat:no-repeat;
	color:#999999;
	font:status-bar;
	line-height:24px;
	padding-left:30px;
	margin-bottom:0.5em;
	display:block;
}

span.safari{
	background-image: url('/rsrc/smarts/icon_browser_safari.png');
}
span.opera{
	background-image: url('/rsrc/smarts/icon_browser_opera.png');
}
span.firefox{
	background-image: url('/rsrc/smarts/icon_browser_firefox.png');
}
span.ie{
	background-image: url('/rsrc/smarts/icon_browser_ie.png');
}
span.chrome{
	background-image: url('/rsrc/smarts/icon_browser_chrome.png');
}
span.misc{
	background-image: url('/rsrc/smarts/icon_browser_misc.png');
}

/* Feldprüfung Formulare */
label.check #test{
	display:none !important
}
label.check.error #test{
	display:block !important;
}

label.check.error input[type="text"],
label.check.error input[type="email"],
label.check.error input[type="password"],
label.check.error input:hover[type="text"],
label.check.error textarea,
label.check.error textarea:hover{
	background-color: #ccc;
	border-color: #bababa;
	background-image: url('/rsrc/smarts/icon_check_error.png');
	background-position: right 4px !important;
}

label.check.error select{
	background-color: #ccc;
	border: 1px solid #bababa;
	background-repeat: no-repeat; /* für selects */
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    height: 25px;
    padding: 4px 0 0 4px;
}

label.check.error select option{
	background-color:white
}

label.check.error input:hover[type="text"]{
	background-color: #ccc;
}

/* ================= */
/* = Aufklappmenü  = */
/* ================= */

ul.smarts_hover_menu{
	position:absolute;
}

ul.smarts_hover_menu li a{
	color: white !important;
}
ul.smarts_hover_menu li ul{
	display:none;
}
ul.smarts_hover_menu li:hover ul{
	display:block;
}

ul.smarts_hover_menu li ul{
	background-color: white;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	border-radius: 9px;
	-moz-box-shadow: 0 0 15px #999;
	-webkit-box-shadow: 0 0 15px #999;
	box-shadow: 0 0 15px #999;
	position: absolute;
	z-index:10;
	padding: 6px 15px 6px 6px;
	margin:-5px 0 0 -5px;
	border:1px solid #CCCCCC;
}

ul.smarts_hover_menu li ul li.blank{
	height: 36px;
}

ul.smarts_hover_menu li ul li a{
	/*display:block;*/
	padding: 3px 30px 4px 25px;
	-webkit-transition-duration: .2s;
	-webkit-transition-property: background;
	-moz-border-radius:3px;
	border-radius:3px;
	-webkit-border-radius:3px;
	color: #333 !important;
	background: url("/rsrc/smarts/icon_bullet_uebersicht.png") no-repeat 7px .6em;
	text-decoration: none !important;
}

ul.smarts_hover_menu span.shift_left{
	display: block;
	padding-left: 25px;
}

ul.smarts_hover_menu li ul li a:hover, ul.smarts_hover_menu li a:hover{
	text-decoration: none !important;
}


ul.smarts_hover_menu li ul li a:hover{
	background-color: #e3e3e3;
}

ul.smarts_hover_menu li ul li.first_login_einblender a{
	background:url("/rsrc/smarts/icon_attention.png") no-repeat scroll 5px 45%;
	padding-left:25px;
}
ul.smarts_hover_menu li ul li.first_login_einblender a:hover{
	background-color: #F8E585 !important;
}

/* Interaktives Suchfeld */
#search_container{
	background-color: #e3e3e3;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

#smarts_edit_bar #search_container{
	float: right;
	margin: -4px 99px 0px 0px;
	background-color: transparent;
}

#aufklapper_suchoptionen{
	background-color: #333;
}

#search_container .smarts_form_grid_3,
#search_container .smarts_form_grid_7,
#search_container .smarts_form_grid_9{
	margin-bottom: 10px !important;
}

#search_suggestion a:link,
#search_suggestion a:visited,
#search_suggestion a:active,
#search_suggestion a:hover,
#search_suggestion,
#suchfeld_model{
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color:#676767;
	overflow: hidden;
}

#search_suggestion{
	box-shadow: 1px 1px 6px #3E3E3E;
}

#search_suggestion table,
#suchfeld_model table{
	/*width:100%;*/
	/*border-top:2px solid #4F4F4F;*/
}

#search_suggestion table tr:hover,
#suchfeld_model table tr:hover{
	border-bottom: none;
}

#search_suggestion table td,
#suchfeld_model table td{
	border-top: 1px solid #4F4F4F;
	max-width: 30%;
	color:white;
	padding:4px 18px;
}

#search_suggestion table td a,
#search_suggestion table th a,
#suchfeld_model table td a,
#suchfeld_model table th a{
	display:block;
	padding: 5px 15px;
}

#search_suggestion table th a{
	border:none;
	border-top:1px solid #4F4F4F;
	color: #9DAF00;
}

/* Mail-Links im Suchergebnis hervorheben */
#search_suggestion a.suchfeld_email,
.smarts_form_table a.suchfeld_email{
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-image:url("/rsrc/smarts/smarts_icon_next.png");
	background-repeat: no-repeat;
	background-position:5px 50%;
	padding:2px 6px 2px 15px;
	text-decoration: none !important;
}

#search_suggestion a.suchfeld_email{
	background-color: #7F7F7F;
	display:inline;
	white-space:nowrap;
	color:white !important;
}

.smarts_form_table a.suchfeld_email{
	background-color: #e3e3e3;
	white-space:nowrap;
}

