/* #test
================================================== */

/*
 * Start by hiding the select
 */
 
 .tcsselectbox {
	position: relative;
	margin: 0px;
	padding: 0px;
 }
 
 .tcsselectbox.withupdown {
	padding-left: 35px;
 }
 
.tcsselectbox label:focus{
	outline: none;
}

.tcsselectbox select {
	font-family: 'OpenSans-Regular', sans-serif;
	padding-left: 10px;
	padding-right: 40px;
	font-size: 13px;
	text-align: left;
    margin: 0px;
	height: 34px;
	min-width: 80px;
    background: #a0a0a0;
    color:#e6e6e6;
    border:none;
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
}

.tcsselectbox select:focus{
	background:#15bae7;
}


.tcsselectbox select.withupdown {
	margin-left: 1px;
}


.tcsselectbox label {
	position: relative;
	}
	
.tcsselectbox label:before {
    content:'';   
    width:34px; height:34px;
    background:#15bae7;
    position:absolute;
	border-left: 1px solid #343434;
	pointer-events:none;
    /*display:block;*/
	right:0px;
	/*top: -7px;*/
}

/**
 * Nur IE 10+
 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
	.tcsselectbox select {
		padding-right: 17px;
	}
	
	.tcsselectbox label:before {
		/*top: 0px;*/
	}
}

/* Nur Firefox */
@-moz-document url-prefix() {
	.tcsselectbox label:before {
		/*top:-7.5px;*/
		
	}
}
	
.tcsselectbox label:after {
    content:'<>';
    font:20px "Consolas", monospace;
    color:#e6e6e6;
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    transform:rotate(90deg);
    right:5px; top:-3px;
    position:absolute;
    pointer-events:none;
}


.tcsselectbox label.up:before {
	font:20px "Consolas", monospace;
    color:#e6e6e6;
	text-align: center;
	content:'>';
	line-height: 30px;
	right:-35px;
	pointer-events:all;
	cursor: pointer;
}
	
.tcsselectbox label.up:after {
    content:'';	
}

.tcsselectbox label.down:before {
	font:20px "Consolas", monospace;
    color:#e6e6e6;
	text-align: center;
	content:'<';
	line-height: 30px;
	pointer-events:all;
	cursor: pointer;
}
	
.tcsselectbox label.down:after {
	content:'';	
	right:-100px; top:0px;
}




/**
 * Start by hiding the checkboxes
 */
input[type=checkbox] {
	visibility: hidden;
}

.checkboxFive {
	width: 34px;
	height: 34px;
	position: relative;
}

.checkboxFive label {
	cursor: pointer;
	position: absolute;
	width: 34px;
	height: 34px;
	top: 0;
  	left: 0;
	background: #a0a0a0;
}

.checkboxFive input[type=checkbox]:checked + label {
	background: #15bae7;
}

.checkboxFive input[type=checkbox]:disabled + label {
	background: #a0a0a0;
	cursor: default;
}

/**
 * Display the tick inside the checkbox
 */
.checkboxFive label:after {
	/**opacity: 0.8;
	content: '';
	position: absolute;
	width: 12px;
	height: 7px;
	background: transparent;
	top: 8px;
	left: 8px;
	border: 3px dotted #e6e6e6;
	border-top: none;
	border-right: none;

	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);*/
    opacity: 0.8;
    content: "";
    position: absolute;
    width: 13px;
    height: 7px;
    top: 11px;
    left: 10px;
    border-width: medium medium 2px 2px;
    border-style: none none dotted dotted;
    border-color: -moz-use-text-color -moz-use-text-color rgb(230, 230, 230) rgb(230, 230, 230);
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    border-image: none;
    transform: rotate(-45deg);
    background: transparent none repeat scroll 0% 0%;
}

/**
 * Create the hover event of the tick
 */
.checkboxFive label:hover::after {
	opacity: 1;
}

/**
 * Create the checkbox state for the tick
 */
.checkboxFive input[type=checkbox]:checked + label:after {
	opacity: 1;
	border: 3px solid #e6e6e6;
	border-top: none;
	border-right: none;
}

.addBox {
	width: 34px;
	height: 34px;
	position: relative;
	font-size: 22px;
}

.addBox label {
	cursor: pointer;
	position: absolute;
	width: 34px;
	height: 34px;
	top: 0;
  	left: 0;
	background: #15bae7;
}

.addBox label.remove {
	background: #a0a0a0;
}

.addBox label:hover {
	background: #0a9ac1;
}

.addBox label.remove:hover {
	background: #D20001 !important;
}

/**
 * Display the tick inside the checkbox
 */
.addBox label:after {

    opacity: 0.8;
    position: absolute;
    width: 13px;
    height: 7px;
    top: 6px;
    left: 10px;
    content:'+';
    -webkit-transform:rotate(0deg);
    -moz-transform:rotate(0deg);
    -ms-transform:rotate(0deg);
    transform:rotate(0deg);
	pointer-events:all;
}

.addBox label.remove:after {
    left: 14px;
    content:'-';
}

/**
 * Create the hover event of the tick
 */
.addBox label:hover::after {
	opacity: 1;
}


div.seite {
	display: table;
	/*width: 718px;*/
	z-index: 1000;
	padding-top: 30px;
	padding-left: 20px;
	padding-right: 20px;
	/*margin: auto;*/
	text-align: center;
}

div.submit {
	display: flex;
	padding: 20px;
	margin: auto;
}

div.submit a {
	text-decoration: none;
}

div.seite > div {
  display: table-row;
}
div.row
{
  display: table-row;
}
div.cell
{
  display: table-cell;
}
div.kopf {
  display: table-cell;
  height: 18px;
  padding: 5px;
  text-align: left;
  vertical-align: middle;
  color: #e6e6e6;
  font-size: 13px;
}
 
div.inhalt {
  display: table-cell;
  color: #e6e6e6;
  font-size: 13px;
  text-align: left;
  vertical-align: middle; 
  padding: 5px;
  -webkit-user-select: none;
}

div.inhalt input {
	font-family: 'OpenSans-Regular', sans-serif;
	padding-left: 10px;
	height: 33px;
	line-height: 33px;
	color: #000;
	background: #fff;
	font-size: 13px;
	text-align: left;
	border: 0px solid #3c3c3c;
}

div.inhalt input:focus {
	border-color: #3c3c3c;
	background: #15BAE7;
	color: #e6e6e6;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}


 
div.fuss {
  display: table-cell;
  height: 50px;
}

div.seite h2 {
	display: block;
	padding: 0 0 0 10px;
	height: 36px;
	line-height: 36px;
	color: #e6e6e6;
	font-size: 13px;
	font-size: 0.79rem;
}


div.seite1 label {
	position: absolute;
	display: inline-block;
	padding: 0 10px 0 10px;
	height: 33px;
	width: 180px;
	line-height: 33px;
	color: #e6e6e6;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: right;
}

.checkbox1 {
	display: inline-block;
	cursor: pointer;
	font-size: 13px; margin-right:30px; line-height:35px;
}

.checkbox1:before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	vertical-align:middle;
	background-color: #15bae7;
	color: #ffffff;
	text-align: left;
	border-radius: 1px;
}
input[type=checkbox]:checked + .checkbox1:before {
	content: "\2713";
	font-size: 30px;
}

div.kreis {
	position: relative;
	border-radius: 30px;
	border: 1px solid #808080;
	padding: 10px 10px 10px 15px;
}





/* #Font-Face
================================================== */

@font-face {
 font-family: 'OpenSans-Regular';
 src: url("../fonts/OpenSans-Regular.ttf") /* TTF file for CSS3 browsers */
}

@font-face {
	font-family: 'tcs';
	src: url('../fonts/tcs.eot?69851842');
	src: url('../fonts/tcs.eot?69851842#iefix') format('embedded-opentype'),
	     url('../fonts/tcs.woff?69851842') format('woff'),
	     url('../fonts/tcs.ttf?69851842') format('truetype'),
	     url('../fonts/tcs.svg?69851842#tcs') format('svg');
	font-weight: normal;
	font-style: normal;
}


/* #CSS Reset
================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;con
	font-family: inherit;
	vertical-align: baseline;
}
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: #000;
	background: #fff;
	font-family: 'OpenSans-Regular', sans-serif;
	text-rendering: optimizeLegibility;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}


.clearfix:after { 
   content: "."; 
   visibility: hidden; 
   display: block; 
   height: 0; 
   clear: both;
}

/* #Body 100% view
================================================== */

html, body {
	height: 100%;
}
body {
	background-color: #565656;
}
.wrapper {
	width: 1100px;
	margin: 0 auto;
}
   
/* #Header
================================================== */



.header .header_right {
	position: absolute;
	width: 37px;
	right: 38px;
	top: 29px;
}

.header .header_errors {
	width: 100%;
	color: #E6e; /* #f4f4f4 */
	font-family: 'OpenSans-Regular', sans-serif;
	font-size: 15px;
	text-align: center;
	padding-top: 5px;
	-webkit-font-smoothing;
	text-rendering: optimizeLegibility;
}

.header .header_errors  a{
	color: #E6e; /* #f4f4f4 */
	font-family: 'OpenSans-Regular', sans-serif;
	font-size: 15px;
}


.header a {
	text-decoration: none;
}

/* #Navigation
================================================== */
nav {
	position: absolute;
	overflow: visible;
	height:auto;
	width: 202px;
	top:0px;
	left:0px;
	background: #fff;
	background: rgb(255, 255, 255);
	background: rgba(255, 255, 255, 1);
	font-family: 'OpenSans-Regular', sans-serif;
	font-size: 13px;
	font-size: 0.79rem;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 10000;
}

.nav_element {
	position: relative;
	display: table;
	height: 53px;
	width: 100%;
	background: #a7a7a7;
}

.nav_element li {
	position: relative;
	display: block;
	margin: 0;
	border-bottom: 1px solid #f5f5f5;
}

.nav_element a {
	padding: 23px 0 0 19px;
	color: #343434 !important;
	text-decoration: none;
	cursor: pointer;
	display: block;
	height: 38px;
}

.nav_element .twolines {
	margin-top: -8px;
	line-height: 1.2;
	/* fix to prevent ie klick bug on text */
	pointer-events: none;
}




.nav_element a:visited {
	color: #343434 !important;
}
.nav_element li a:hover {
	color: #e6e6e6 !important;
	background-color: #15bae7;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

.nav_element li a:active {
	color: #343434 !important;
	background-color: #c8c8c8;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

.nav_element li.active a, 
.nav_element li.active a:hover, 
.nav_element li.active a:active {
	color: #e6e6e6 !important;
	background-color: #15bae7;
	cursor: default;
}

.nav_element a.to-top span {
	display: none;
}
.nav_element .icon, .nav_element .icon_hover {
	position: absolute;
	right: 25px;
	top: 12px;
	width: 37px;
}
.nav_element .icon_hover {
	opacity:0;
	filter:alpha(opacity=0);
}
.nav_element li a:hover > .icon_hover {
	opacity:1;
	filter:0;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

.nav_element li a:hover > .icon {
	opacity:0;
	filter:alpha(opacity=0);
}

.nav_element li a:active > .icon_hover {
	opacity:0;
	filter:0;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;

}

.nav_element li a:active > .icon {
	opacity:1;
	filter:alpha(opacity=1);
}


.nav_element .icon img, .nav_element .icon_hover img {
	width: 37px;
	height: 37px;
}

.nav_element li.active a > .icon, .nav_element li.active a:hover > .icon {
	opacity:0;
	filter:alpha(opacity=0);
}
.nav_element li.active a > .icon_hover, .nav_element li.active a:hover > .icon_hover {
	opacity:1;
	filter:0;
}

/* fix to prevent ie klick bug on icon */
.nav_element .icon, .nav_element .icon_hover {
	pointer-events: none;
}


/* #color definitions
================================================== */
.tcs_darkblue {
	color: #102044;
}

.tcs_highlite_blue {
	color: #15bae7;
}

.white_bg {
	background: #fff;
	width: 898px;
	height: 806px;
}

.darkgrey_bg {
	background: #3c3c3c;
}


/* #color definitions
================================================== */
.error {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 760px;
	background: #d20001;
	z-index: 10000;
	display: block;
	overflow: hidden;
	
	display: none;
}

.error .msg {
	font-size: 13px;
	font-size: 0.79rem;
	color: #fff;
	padding: 20px;
	line-height: 1.1;
}

.error .close {
	cursor: pointer;
	position: absolute;
	top: -5px;
	right: 0px;
	font-size: 13px;
	font-size: 0.79rem;
	color: #fff;
	padding: 15px;
	font-weight: bold;
	
	/* no cursor selection */
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;
}




/* #Content area
================================================== */
.content_area {
	margin: 0;
	padding: 0;
	display: block;
	position: relative;
	min-width: 960px;
	top: 0px;
	left:0px;
	bottom:0px;
	min-height: 806px;
}


/* #Template Fullscreen
================================================== */
.content_fullscreen {
	margin: 0;
	padding: 0;
	position: relative;
	display: block;
	min-width: 758px;
	top: 0px;
	left:202px;
	bottom:0px;
	
}



/* #Content 
================================================== */
.home_image {
	padding: 177px 0 0 16px;
	text-align: center;
}


/* #selectbox
================================================== */

/*
select {
	border: 0px solid #3c3c3c;
	z-index: 10000;
}
*/


.formrow.first .ui-selectmenu-button {
	margin: 0px 0 0 198px;
}

.ui-selectmenu-button {
	position: absolute;
	display: inline-block;
	padding: 0 10px 0 10px;
	margin: -1px 0 0 198px;
	width: 234px !important;
	height: 34px;
	z-index: 10000;
	border: 2px solid #3c3c3c;
}

.ui-icon-triangle-1-s {
	background-image: url('../images/ui-icons_mk_select.png') !important;
	background-size: 16px 25px;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	width: 16px;
	height: 25px;
	margin-top: -12px !important;
	margin-right: 2px !important;
	z-index: 10001;
}

.ui-selectmenu-text {
	font-size: 13px;
	font-size: 0.79rem;
	text-align: center !important;
	padding-top: 8px !important;
	z-index: 10000;

}

div.ui-selectmenu-menu.ui-front.ui-selectmenu-open .with_scrollbar {
	height: 315px;
}

div.ui-selectmenu-menu.ui-front.ui-selectmenu-open .width_252 {
	margin: -1px 0 0 2px;
	width: 252px !important;
}

div.ui-selectmenu-menu.ui-front.ui-selectmenu-open .width_170 {
	margin: -1px 0 0 2px;
	width: 170px !important;
}

/*
.ui-menu {
	margin: -1px 0 0 2px;
	width: 252px !important;
}
*/


.ui-menu-item {
	height: 21px;
	text-align: center !important;
	padding-top: 9px !important;
	z-index: 10000;
	white-space: nowrap;
}

.ui-menu-colorboxright {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 34px;
	height: 38px;
	border-left: 1px solid #3c3c3c;
	background: #15bae7;
	z-index: 10000;
}

.ui-selectmenu-disabled {
	opacity: 0.5;
	-moz-opacity: 0.5;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);
}

.ui-selectmenu-menu {
	-webkit-box-shadow: 1px 1px 2px 2px rgba(20, 20, 20, 0.2);
	-moz-box-shadow: 1px 1px 2px 2px rgba(20, 20, 20, 0.2);
	box-shadow: 1px 1px 2px 2px rgba(20, 20, 20, 0.2);
}

/*
label[for=sp_siptimeout-button] {
	position: absolute;
	top: -14px;  // hard fix
}
*/


/* #slider
================================================== */

.slider_container {
	position:relative;
	width: 234px;
	height: 34px;
	overflow: hidden;
	background-color: transparent !important;
}

.slider {
	width: 206px;
}

.slider_num_display {
	position: absolute;
	display: inline-block;
	right: 0;
	top: 0;
	width: 34px;
	height: 34px;
	z-index: 1;
	background: #fff;
	overflow: hidden;
	text-align: center;
	line-height: 2.8;
}


.slider.ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
	background-image: none;
	background-color: transparent;
	border: 0;
	height: 30px;
}

span.ui-slider-handle.ui-state-default.ui-corner-all {
	border-top-left-radius: 10px;
	border-radius: 10px;
	height: 30px;
	width: 10px;
	margin-top: 1px;
}
span.ui-slider-handle.ui-state-default.ui-corner-all:hover {
	background-color: #0a9ac1;
	border: 1px solid #0a9ac1;
}
.amount {
	color: #fff;
	height: 62px;
	border-bottom: 1px solid #a9a9a9;
	font-family: 'opensansreg', sans-serif;
}

.slider_bg {
	position: absolute;
	background-color: #696969;
	height: 22px;
	width: 1%;
	left: -9px;
	top: 3px;
}



/* #form stuff
================================================== */
#twolines {
	position: absolute;
	top: 0px;
	left: 200px;
	bottom: 10px;
	width: 252px;
	border: 1px solid #878787;
	border-width: 0 1px;
	z-index: 1;
}
#onelines {
	position: absolute;
	top: 0px;
	left: 200px;
	bottom: 10px;
	width: 252px;
	border: 1px solid #878787;
	border-width: 0 0 0 1px;
	z-index: 1;
}

.formrow {
	position: relative;
	display: block;
	border-bottom: 0px;
	height: 35px;
	overflow: hidden;
	z-index: 800;
	margin: 0px;
	padding: 0px;
}

.imgrow {
	position: relative;
	display: block;
	border-bottom: 0px;
	height: 180px;
	overflow: hidden;
	z-index: 800;
	margin: 0px;
	padding: 0px;
}

.formrow.first {
	position: relative;
	display: block;
	border-bottom: 0px;
	height: 36px;
	overflow: hidden;
	z-index: 1000;
	margin: 0 0 0 0;
}

.specialrow .formrow.first {
	position: relative;
	display: block;
	border-bottom: 0px;
	height: 34px;
	overflow: hidden;
	z-index: 1000;
	margin: 0px 0 0 0;
}

.specialrow .formrow.first .ui-selectmenu-button {
    margin: -2px 0 0 198px;
}

.formrow.last {
	position: relative;
	display: block;
	border-bottom: 0px;
	height: 37px;
	overflow: hidden;
	z-index: 1000;
	margin: 0 0 -3px 0;
}

.specialrow .formrow.last {
	position: relative;
	display: block;
	border-bottom: 0px;
	height: 36px;
	overflow: hidden;
	z-index: 1000;
	margin: 0px 0 -1px 0;
}

.formrow.botline {
	position: relative;
	display: block;
	border-bottom: 0px;
	height: 36px;
	overflow: hidden;
	z-index: 900;
	margin: 0 0 0 0;
}


.formrow.topline {
	position: relative;
	display: block;
	border-top: 1px solid #878787;
	height: 37px;
	overflow: hidden;
	z-index: 1000;
	margin: 0 0 0 0;
}


.formrow.lastlinetop {
	position: relative;
	display: block;
	border-bottom: 0px;
	height: 37px;
	overflow: hidden;
	z-index: 1000;
	margin: 0 0 -3px 0;
}

.formrowspecial {
	position: relative;
	display: block;
	border-bottom: 0px;
	height: 36px;
	overflow: hidden;
	z-index: 800;
	margin: 0px;
	padding: 0px;
}

.formrowspecial textarea {
	opacity: 0;
	filter:alpha(opacity=0);
	margin-top: -2px !important;
}

div.formblock2cols {
	display: block;
	width: 454px;
	border-bottom: 1px solid #878787;
	z-index: 1000;
}


div.formblock2cols.specialrow {
	display: block;
	width: 454px;
	border-bottom: 1px solid #878787;
	z-index: 400;
	margin: -2px 0 2px 0;
}

div.formblock2cols.noline, div.formblock3cols.noline {
	border-bottom: 0px solid #878787;
}


div.formblock3cols {
	display: block;
	width: 758px;
	border-bottom: 1px solid #878787;
	z-index: 1000;
}

div.formblock3cols.specialrow {
	display: block;
	width: 751px;
	border-bottom: 1px solid #878787;
	z-index: 400;
	margin: -2px 0 2px 0;
}


div.formblock4cols {
	display: block;
	width: 758px;
	border-bottom: 1px solid #878787;
	z-index: 1000;
}


.textinput {
	border-bottom: 0px solid #878787;
}


div.formblock2cols h2, div.formblock3cols h2, div.formblock4cols h2 {
	display: block;
	padding: 0 0 0 10px;
	height: 36px;
	line-height: 36px;
	color: #e6e6e6;
	font-size: 13px;
	font-size: 0.79rem;
}

div.formblock2cols h2.h2spezial, div.formblock3cols h2.h2spezial, div.formblock4cols h2.h2spezial {
	display: block;
	padding: 0 0 0 10px;
	margin: 0 0 -36px 0;
	height: 36px;
	line-height: 30px;
	color: #e6e6e6;
	font-size: 13px;
	font-size: 0.79rem;
}

.firstHL {
	margin-top:42px;
}

.firstHLspezial {
	margin-top:12px;
}

div.formblock2cols label, div.formblock3cols label, div.formblock4cols label {
	position: absolute;
	display: inline-block;
	padding: 0 10px 0 10px;
	height: 33px;
	width: 180px;
	line-height: 33px;
	color: #e6e6e6;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: right;
}


.specialrightinsert {
	position: absolute;
	left:454px;
	width: 297px;
	box-shadow: 0 1px 0 0 #878787 inset;
}

.specialrightinsert.first {
	position: absolute;
	left:454px;
	width: 297px;
	box-shadow: 0 1px 0 0 #878787 inset;
	margin: -1px 0 0 0 ;
}

.imgspecialrightinsert {
	position: relative;
	left:454px;
	width: 297px;
	height:60px;
	box-shadow: 0 1px 0 0 #878787 inset;
}

.imgspecialrightinsert a {
	position: relative;
	display:inline-block;
	width: 43px;
	height:60px;
	line-height:60px;
	cursor: pointer;
	text-align:center;
	border:0;
	border-right: 1px solid #878787;
	margin:0;
	padding:0;
	color: #fff;
	font-size: 0.79rem;
}
.imgspecialrightinsert span.blocker {
	position: relative;
	display:inline-block;
	width: 43px;
	height:60px;
	line-height:60px;
	text-align:center;
	border:0;
	border-right: 1px solid #878787;
	margin:0;
	padding:0;
	font-size: 0.79rem;
}

.imgspecialrightinsert a.longlink {
	position: relative;
	display:inline-block;
	width: 120px;
	height:60px;
	line-height:60px;
	cursor: pointer;
	text-align:center;
	border:0;
	border-right: 1px solid #878787;
	margin:0;
	padding:0;
	font-size: 0.79rem;
}



.imgspecialrightinsert.first {
	position: relative;
	left:454px;
	width: 304px;
	height:60px;
 box-shadow: 0 0px 0 0 #878787 inset;
}

.specialrightinsert label {
	position: relative;
	display: inline-block;
	padding: 0 10px 0 10px;
	height: 33px;
	width: 68px;
	line-height: 33px;
	color: #e6e6e6;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: left;

}

.auZoomPlusBtn {
	background: url(../images/ui-auzoomplusbtn_0.png) no-repeat;
}
.auZoomMinusBtn {
	background: url(../images/ui-auzoomminusbtn_0.png) no-repeat;
}
.auZoomPfeilBtnUp {
	background: url(../images/ui-auzoompfeilbtnup_0.png) no-repeat;
}
.auZoomPfeilBtnRight {
	background: url(../images/ui-auzoompfeilbtnright_0.png) no-repeat;
}
.auZoomPfeilBtnDown {
	background: url(../images/ui-auzoompfeilbtndown_0.png) no-repeat;
}
.auZoomPfeilBtnLeft {
	background: url(../images/ui-auzoompfeilbtnleft_0.png) no-repeat;
}


.auZoomPlusBtn,
.auZoomMinusBtn,
.auZoomPfeilBtnUp,
.auZoomPfeilBtnRight,
.auZoomPfeilBtnDown,
.auZoomPfeilBtnLeft {
	background-size: 20px 20px;
	background-position: center center; 
}




 .hlrow label {
	text-align: left;
	width: 152px;
}

 .hlrowfirst {
	margin-top:42px !important;
}


img#videostream {
	font-family: 'OpenSans-Regular', sans-serif;
	position: absolute;
	display: inline-block;
	padding: 0;
	margin: 0px 0 0 201px;
	height: 180px;
	width: 252px;
	line-height: 34px;
	color: #000;
	background: #fff;
	z-index: 1000;
}


div.formblock2cols input, div.formblock2cols textarea, div.formblock3cols input, div.formblock3cols textarea {
	font-family: 'OpenSans-Regular', sans-serif;
	position: absolute;
	display: inline-block;
	padding: 0 10px 0 10px;
	margin: -1px 0 0 198px;
	height: 34px;
	width: 234px;
	line-height: 34px;
	color: #000;
	background: #fff;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: left;
	border: 2px solid #3c3c3c;
	z-index: 1000;
}

div.formblock4cols input, div.formblock4cols textarea {
	font-family: 'OpenSans-Regular', sans-serif;
	position: absolute;
	display: inline-block;
	padding: 0 10px 0 10px;
	margin: -1px 0 0 198px;
	height: 34px;
	width: 152px;
	line-height: 34px;
	color: #000;
	background: #fff;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: left;
	border: 2px solid #3c3c3c;
	z-index: 1000;
}


.specialrightinsert input {
	font-family: 'OpenSans-Regular', sans-serif;
	position: relative;
	display: inline-block;
	padding: 0 10px 0 10px;
	margin: -1px 0 0 0px !important;
	height: 34px;
	width: 67px;
	line-height: 34px;
	color: #000;
	background: #fff;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: left;
	border: 2px solid #3c3c3c;
	border-right: 0px;
	border-left: 0px;
	z-index: 1000;
}



div.formblock4cols .ui-selectmenu-button {
	position: absolute;
	display: inline-block;
	padding: 0 10px 0 10px;
	margin: -1px 0 0 0px !important;
	width: 152px !important;
	height: 34px;
	z-index: 10000;
	border: 2px solid #3c3c3c;
}

div.formblock4cols .first .ui-selectmenu-button {
	position: absolute;
	display: inline-block;
	padding: 0 10px 0 10px;
	margin: 0px 0 0 0px !important;
	width: 152px !important;
	height: 34px;
	z-index: 10000;
	border: 2px solid #3c3c3c;
}





.formrow.first input {
	margin: 0px 0 0 198px;
}

.formrow.lastlinetop input, .formrow.linetop input {
	margin: -1px 0 0 198px;
}

/* #form input spezialklassen */

.formrow input#id_ba_tag {
	border-top: 2px solid #3c3c3c;
	border-bottom: 2px solid #3c3c3c;
	border-left: 0px solid #3c3c3c;
	border-right: 0px solid #3c3c3c;
	padding: 0;
	width: 40px;
	left: 112px;
	text-align:center;
}
.formrow input#id_ba_monat {
	border-top: 2px solid #3c3c3c;
	border-bottom: 2px solid #3c3c3c;
	border-left: 0px solid #3c3c3c;
	border-right: 0px solid #3c3c3c;
	padding: 0;
	width: 40px;
	left: 164px;
	text-align:center;
}
.formrow input#id_ba_jahr {
	border-top: 2px solid #3c3c3c;
	border-bottom: 2px solid #3c3c3c;
	border-left: 0px solid #3c3c3c;
	border-right: 2px solid #3c3c3c;
	padding: 0;
	width: 40px;
	left: 216px;
	text-align:center;
}
.formrow input#sp_dayname {
	border-top: 2px solid #3c3c3c;
	border-bottom: 2px solid #3c3c3c;
	border-left: 2px solid #3c3c3c;
	border-right: 0px solid #3c3c3c;
	padding: 0;
	width: 98px;
	text-align:center;
}

.formrow input#id_ba_hours {
	border-top: 2px solid #3c3c3c;
	border-bottom: 2px solid #3c3c3c;
	border-left: 2px solid #3c3c3c;
	border-right: 0px solid #3c3c3c;
	padding: 0;
	width: 40px;
	left: 0px;
	text-align:center;
}
.formrow input#id_ba_minutes {
	border-top: 2px solid #3c3c3c;
	border-bottom: 2px solid #3c3c3c;
	border-left: 0px solid #3c3c3c;
	border-right: 0px solid #3c3c3c;
	padding: 0;
	width: 40px;
	left: 54px;
	text-align:center;
}
.formrow input#id_ba_seconds {
	border-top: 2px solid #3c3c3c;
	border-bottom: 2px solid #3c3c3c;
	border-left: 0px solid #3c3c3c;
	border-right: 0px solid #3c3c3c;
	padding: 0;
	width: 40px;
	left: 106px;
	text-align:center;
}


.formrow span.formseperator {
	background: none repeat scroll 0 0 #a0a0a0;
	border-top: 2px solid #3c3c3c;
	border-bottom: 2px solid #3c3c3c;
	border-left: 0px solid #3c3c3c;
	border-right: 0px solid #3c3c3c;
	color: #000;
	display: inline-block;
	font-family: "OpenSans-Regular",sans-serif;
	font-size: 0.79rem;
	height: 34px;
	line-height: 34px;
	margin: -1px 0 0 0px;
	padding: 0;
	position: relative;
	text-align: center;
	width: 12px;
	z-index: 400;
	overflow:hidden;
}
.formrow span#dayname_seperator {
	padding: 0;
	left: 298px;
}
.formrow span#tag_seperator {
	padding: 0;
	left: 338px;
}
.formrow span#monat_seperator {
	padding: 0;
	left: 378px;
}
.formrow span#hours_seperator {
	padding: 0;
	left: 240px;
}
.formrow span#minutes_seperator {
	padding: 0;
	left: 280px;
}
.formrow span#seconds_seperator {
	padding: 0;
	left: 320px;
}

.formrow a#id_ba_button {
	border-top: 2px solid #3c3c3c;
	border-bottom: 2px solid #3c3c3c;
	border-left: 1px solid #3c3c3c;
	border-right: 2px solid #3c3c3c;
	padding: 0;
	width: 97px;
	left: 157px;
	text-align:center;
}


div.formblock2cols textarea, 
div.formblock3cols textarea {
	font-family: 'OpenSans-Regular', sans-serif;
	position: absolute;
	display: inline-block;
	padding: 4px 10px 4px 10px;
	margin: -1px 0 0 198px;
	height: 80px;
	width: 234px;
	line-height: 24px;
	color: #000;
	background: #fff;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: left;
	border: 2px solid #3c3c3c;
	z-index: 1000;
	resize: none;

}

div.formblock2cols .slider_container {
	font-family: 'OpenSans-Regular', sans-serif;
	position: absolute;
	display: inline-block;
	padding: 4px 10px 4px 10px;
	margin: -1px 0 0 198px;
	height: 82px;
	width: 234px;
	line-height: 24px;
	color: #000;
	background: #fff;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: left;
	border: 2px solid #3c3c3c;
	z-index: 1000;
	resize: none;
	-moz-box-shadow:    inset 0px 1px 0px 0px #878787;
	-webkit-box-shadow: inset 0px 1px 0px 0px #878787;
	box-shadow:         inset 0px 1px 0px 0px #878787;

}

div.formblock4cols textarea {
	font-family: 'OpenSans-Regular', sans-serif;
	position: absolute;
	display: inline-block;
	padding: 4px 10px 4px 10px;
	margin: -1px 0 0 198px;
	height: 80px;
	width: 168px;
	line-height: 24px;
	color: #000;
	background: #fff;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: left;
	border: 2px solid #3c3c3c;
	z-index: 1000;
	resize: none;
}

div.formblock2cols select, div.formblock3cols select {
	font-family: 'OpenSans-Regular', sans-serif;
	position: absolute;
	display: inline-block;
	margin: -1px 0 0 198px;
	height: 34px;
	width: 234px;
	line-height: 34px;
	color: #000;
	background: #fff;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: left;
	z-index: 1000;
	border: 2px solid #3c3c3c;
}

div.formblock4cols select {
	font-family: 'OpenSans-Regular', sans-serif;
	position: absolute;
	display: inline-block;
	margin: -1px 0 0 198px;
	height: 34px;
	width: 168px;
	line-height: 34px;
	color: #000;
	background: #fff;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: left;
	z-index: 1000;
	border: 2px solid #3c3c3c;
}



div.formblock2cols input:focus, div.formblock3cols input:focus, div.formblock4cols input:focus {
	border-color: #3c3c3c;
	background: #15BAE7;
	color: #e6e6e6;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

div.formblock2cols input:active, div.formblock3cols input:active, div.formblock4cols input:active {
	border-color: #3c3c3c;
	background: #c8c8c8;
	color: #343434;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

div.formblock2cols a.btn, div.formblock3cols a.btn {
	position: absolute;
	display: inline-block;
	padding: 0 10px 0 10px;
	margin: -1px 0 0 198px !important;
	height: 34px;
	width: 234px;
	line-height: 34px;
	color: #e6e6e6;
	background: #bdbdbd;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: center;
	border: 1px solid #bdbdbd;
	
	/* no cursor selection */
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

div.formblock4cols a.btn {
	position: absolute;
	display: inline-block;
	padding: 0 10px 0 10px;
	margin: -1px 0 0 198px;
	height: 34px;
	width: 152px;
	line-height: 34px;
	color: #e6e6e6;
	background: #bdbdbd;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: center;
	border: 1px solid #3c3c3c;
	
	/* no cursor selection */
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

div.formblock2cols a.rightcol, div.formblock3cols a.rightcol, div.formblock3cols div.rightcol {
	margin: -2px 0 0 490px !important;
}


div.formblock4cols .leftcol {
	margin: -1px 0 0 198px !important;
	position: absolute !important;
}
div.formblock4cols .midcol {
	margin: -1px 0 0 386px !important;
	position: absolute !important;
}

div.formblock4cols span.rightcol, div.formblock4cols span.midcol, div.formblock4cols span.leftcol {
	margin-top: 0px !important;
}
div.formblock4cols .rightcol {
	margin: -1px 0 0 574px !important;
	position: absolute !important;
}



a.standardbutton {
	display: inline-block;
	color: #e6e6e6;
	background: #15bae7 !important;
	border: 2px solid #3c3c3c !important;
	text-decoration: none;
	height: 30px;
	min-width: 125px;
	text-align: center;
}

a.standardbutton:hover{
	background: #0a9ac1 !important;
	border: 2px solid #3c3c3c !important;
	cursor: pointer;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}
a.standardbutton:active {
	border-color: #c8c8c8 !important;
	border: 2px solid #3c3c3c !important;
	color: #343434;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

/* disabled buttons */
a.ui-state-disabled,
a.ui-state-disabled:hover,
a.ui-state-disabled:focus,
a.ui-state-disabled:active {
	background: #7c7c7c !important;
	color: #454545 !important;
	-o-transition:none;
	-ms-transition:none;
	-moz-transition:none;
	-webkit-transition:none;
	transition:none;
}




.submitblock {
	position: absolute;
	right: 10px;
	bottom: 12px;
	display: block;
	text-align: right;
	height: 36px;
	margin: 0;
	z-index: 1000;
}

.submitblock a.btn {
	position: relative;
	display: inline-block;
	padding: 0;
	margin: 0;
	height: 34px;
	line-height: 34px;
	color: #e6e6e6;
	background: #bdbdbd;
	border: 1px solid #bdbdbd;
	font-size: 13px;
	font-size: 0.79rem;
	text-align: center;
	
	/* no cursor selection */
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#submitbutton {
	color: #e6e6e6;
	height: 34px;
	min-width: 125px;
}

#cancelbutton {
	height: 34px;
	min-width: 125px;
	background: #bdbdbd;
	color: #343434;
	border: 2px solid #3c3c3c;
}

#cancelbutton:hover {
	background: #D20001;
	color: #e6e6e6;
	cursor: pointer;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

#cancelbutton:active {
	border: 2px solid #3c3c3c !important;
	background: #c8c8c8;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

a.cancelbutton {
	background: #bdbdbd !important;
	color: #343434 !important;
}
a.cancelbutton:hover{
	background: #D20001 !important;
	color: #e6e6e6 !important;
}
a.cancelbutton:active {
	border: 2px solid #3c3c3c !important;
	background: #c8c8c8 !important;
	color: #343434 !important;
}


#submitbutton {
	background: #15bae7;
	border: 2px solid #3c3c3c;
	margin: 0 0 00;
}

#submitbutton:hover {
	background: #0a9ac1;
	border: 2px solid #3c3c3c;
	cursor: pointer;
		-o-transition:.3s;
		-ms-transition:.3s;
		-moz-transition:.3s;
		-webkit-transition:.3s;
		transition:.3s;
}
#submitbutton:active {
	border: 2px solid #3c3c3c !important;
	background: #c8c8c8;
	color: #343434;
		-o-transition:.3s;
		-ms-transition:.3s;
		-moz-transition:.3s;
		-webkit-transition:.3s;
		transition:.3s;
}

.specialrightinsert #cancelbutton, .specialrightinsert #submitbutton {
	width: 102px;
	margin: -1px 0 0 1px !important;
	border-left: 1px;
}

.specialrightinsert #cancelbutton:active, .specialrightinsert #submitbutton:active {
	width: 102px;
	margin: -1px 0 0 1px !important;
	border-left: 1px !important;
}

.pseudoblocker {
	position: absolute;
	display: inline-block;
	padding: 0;
	margin: 1px 0 0 200px;
	height: 2px;
	width: 254px;
	background: #3c3c3c;
	z-index:3000;
}

.readonly {
	color: #3f3f3f !important;
	background-color: #a0a0a0 !important;
}

.plaintext {
	padding-top: 1px;
	color: #E6E6E6;
	font-size: 13px;
	font-size: 0.79rem;
}


/* #check box
================================================== */

.chkarea {
	width:254px;
	height: 34px;
	margin: 0 0 0px 200px;
	border-bottom: 2px solid #3c3c3c;
	box-shadow: 0 1px 0 0 #878787 inset;
}

input.css-checkbox { 
	display: none;
}

.checkbox.disabled { 
	opacity: 0.5; 
	filter:alpha(opacity=50);
}

.checkbox {
	cursor: pointer;
	width: 35px;
	height: 35px;
	padding: 0 5px 0 0;
	background: url(../images/ui-checkbox.png) no-repeat;
	background-size: 35px 140px;
	display: block;
	float: left;
}


/* #upload button
================================================== */
.customfile_wrapper {
	position: relative;
	display: block;
	/* overflow: hidden; */ /* over js */
	margin: -1px 0 0 198px;
	height: 35px;
	width: 313px;
}

.customfile_lines {
	border-top: 1px solid #878787;
	border-bottom: 1px solid #878787;
	box-shadow: 0 1px 0 0 #878787 inset;
}

.customfile-input {
	position: absolute;
	height: 34px;
	cursor: pointer;
	background: transparent;
	border:0;
	opacity:0;
	-moz-opacity:0;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	z-index:999;
}

.customfile {
	width: 296px;
	height: 35px;
	background: transparent;
	cursor: pointer;
	position: relative;
	margin-top: -2px;
}

.customfile-disabled {
	opacity: .5;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	cursor: default;
}

.customfile-feedback {
	position: absolute;
	top: 0;
	left: 124px;
	display: block;
	font-size: 13px;
	font-size: 0.79rem;
	color: #fff;
	margin: 1px 1px 1px 5px;
	padding: 12px 8px;
	white-space: nowrap;
}

.customfile-feedback-populated {
	color: #fff;
	font-style: normal;
	font-size: 13px;
	font-size: 0.79rem;
	padding-left: 20px;
}

.customfile-button {
	background: #15bae7;
	border: 2px solid #3c3c3c !important;
	color: #fff;
	float: left;
	width: 126px;
	height: 35px;
	text-align: center;
	text-decoration: none;
	font-size: 13px;
	font-size: 0.79rem;
	padding-top: 11px;
}

.customfile-hover .customfile-button {
	background: #0a9ac1 !important;
	border: 2px solid #3c3c3c !important;
	cursor: pointer;
	color: #fff;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

.customfile-focus .customfile-button {
	border-color: #c8c8c8 !important;
	border: 2px solid #3c3c3c !important;
	color: #343434;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

.customfile-mouseout .customfile-button {
	color: #fff;
}

.rightcol-customfile  {
	position: absolute;
	display: block;
	top: 2px;
	left: 500px;
	margin: -4px 0 0 10px !important;
	width: 239px;
	height: 36px;
	overflow: hidden;
}

.rightcol-customfile a.btn {
	position: absolute;
	left: 0px;
	top: 0px;
	margin: 0 !important;
	border: 1px solid green;

}


.midcol-lines {
    position:absolute;
    border-bottom: 1px solid #878787;
    border-top: 1px solid #878787;
    height:32px;
    width:310px;
    margin:0 0 0 200px;
}

/* fix ie problems with buttons */
.customfile_wrapper input {
	position: absolute;
	display: inline-block;
	padding: 0;
	margin: 0;
	height: 30px;
	width: auto;
	line-height: 1;
}

/* #Upload progress bar
================================================== */
.progressbar {
	position: relative;
	width: 312px;
	height: 35px;
	display: block;
	margin: -1px 0 0 200px;
	background: #a0a0a0;
}
.progressbar_text {
	position: absolute;
	text-align: center;
	width: 100%;
	color: #fff;
	font-size: 13px;
	font-size: 0.79rem;
	padding-top: 12px;
}
.progressbar_bg {
	position: absolute;
	background-color: #15bae7;
	height: 35px;
	width: 0%; /* over js */
	left: 0px;
	top: 0px;
}

/* #sorry for ie6 users
================================================== */
#no_ie6 {
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 200px;
	background-color: #fff;
	color: #c00;
	z-index: 99;
	font-family: courier, monospace;
	font-size: 18px;
}

.guru {
	border: 4px solid #c00;
	padding: 1em;
	margin: 3px;
	text-align: center;
	overflow: hidden;
	margin: 1em 0;
}

/* #Special css class for chrome and safari 3.0
================================================== */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.customfile-feedback {
		padding-top: 12px;
	}
}

div.ptz
{
	position: relative;
	display: table;
	padding-top: 0px;
	padding-left: 110px;
	padding-right: 0px;
	text-align: center;
}

div.ptz input {
	font-family: 'OpenSans-Regular', sans-serif;
	height: 50px;
	width: 50px;
	color: #fff;
	background: #3c3c3c;
	font-size: 10px;
	text-align: center;
	border: 0px solid #878787;
}

div.ptz input.small {
	height: 25px;
}



div.ptz input:hover {
	border-color: #3c3c3c;
	background: #15BAE7;
	color: #e6e6e6;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

div.ptzcell {
  display: table-cell;
  padding: 0px;
  text-align: left;
  vertical-align: middle;
}

div.ptz div.right {
	border-right: 1px solid #878787;
}

div.ptz div.left {
	border-left: 1px solid #878787;
}

div.ptz div.bottom {
	border-bottom: 1px solid #878787;
}

div.ptz div.top {
	border-top: 1px solid #878787;
}


.footer_center{
	width: 100%;
	color: #e6e6e6; /* #f4f4f4 */
	font-family: 'OpenSans-Regular', sans-serif;
	font-size: 22px;
	font-size: 1.26rem;
	padding-left: 20px;
	padding-top: 10px;
	-webkit-font-smoothing;
	text-rendering: optimizeLegibility;
}

.footer_center a
{
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}

.hidden{
	display: none !important;
}



