.box h2 {
  font-size: 22px;
  color: #4b4c89;
  padding: 8px 5px;
  font-weight: normal;
  background-color: #cccccc;
  margin: 0;
}

.boxcontent {
  padding: 0 0 2px 0;
}

.rcol .boxcontent, .rcol2 .boxcontent2 {
  padding: 10px 5px 10px 5px;
  border-top: 0px solid #ffffff;
}

/* boxes left column */

.lcol .box {
  margin: 28px 0 10px;
}

.lcol .box h2 {
  padding-left: 24px;
}

.box.service h2 {
/*  background: #ccc url(../img/services-img.png) no-repeat scroll 172px -6px; */
  background: #ccc;
}

.box.service, .logos {
  margin-top: 28px;
}

.logos {
  margin-bottom: 20px;
}

.box.service ul, .box.service li {
  list-style: none none outside;
  padding: 0;
  margin: 0;
  background-color: #eeeeee;
}

.box.service ul li a {
  display: block;
  color: #656565;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 5px 8px 22px;
  margin-left: 1px;
  margin-right: 1px;
  border-bottom: 2px dotted #999999;
}

.box.service ul li a:hover, .box.service ul li.active a {
  color: #4b4c89;
  text-decoration: none;
}

.box.service ul li.last a {
  border-bottom: none;
}

/* boxes right column */

.rcol .box, .rcol2 .box {
  position: relative;
  margin-bottom: 10px;
  background-color: #eeeeee;
}

.rcol2 .qc-label-wrapper{
  line-height: 120%;
  vertical-align: middle;
  display: table-cell;
  height: 40px;
  padding: 0 0 0 5px;
}
 
.rcol2 .qc-labels {
  line-height: 120%;
}

.rcol2 .formelements {
  line-height: 20px;
  height: 40px;
  vertical-align: middle;
}

.box.hotline {
  font-size: 13px;
  color: #333366;
}

.box.hotline a {
  color: #cc3333;
}

/* form styles */

.box.search .boxcontent {
  padding: 10px 5px 10px 2px;
  border-top: 0px solid #ffffff;
}

.box.search fieldset, .box.search form {
  border: 0;
  padding: 0;
  margin: 0;
}

.box.search div.tx-indexedsearch-form {
  float: left;
}

.box.search input.tx-indexedsearch-searchbox-sword.ac_input {
  font-size: 12px;
  color: #444444;
  border: 1px solid #cc3333;
  float: left;
  width: 105px;
  height: 21px;
  margin: 0 0 0 4px;
  padding: 0;
}

.box.search input.placeholded {
  color: #999999;
}

.box.search input::-webkit-input-placeholder {
  color: #999999;
}
.box.search input:-moz-placeholder {
  color: #999999;
}

.box.search button, .box.search input.tx-indexedsearch-searchbox-button {
  color: #ffffff;
  background-color: #cc3333;
  float: right;
  border: 0;
  height: 22px;
  width: auto;
  clear: none;
}

/* cb_indexedsearch_autocomplete */
.ac_results {
  background: whiteSmoke;
  cursor: pointer;
  font-size: 90%;
  left: 0px;
  position: absolute;
  width: 200px;
  z-index: 101;
}

.ac_results ul {
  border: 1px solid #AAA;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.ac_results ul li {
  padding: 2px 5px;
  text-align: left;
}

.ac_results ul li:hover {
  text-decoration:underline;
}

.ac_results ul li.even {
  background: #E5E5E5;
}

.ac_results ul li.odd {
  background: white;
}

/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}
.accordion {
	overflow:hidden;
	box-shadow:none;
	border-radius:3px;
	margin-bottom: 0px;
	padding: 0;
}
/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	display:inline-block;
	transition:all linear 0.15s;
	padding: 0 20px;
	line-height: 30px;
	margin: 0 !important;
	/*background-color: #ccc !important;*/
	cursor: pointer;
}
.accordion-section-title.active, .accordion-section-title:hover {
	text-decoration: none;
}
.accordion-section-plusminus {
	float: right;
	width: 30px;
	height: 30px;
	display:inline-block;
	margin: 0 -20px 0 0;
	text-align: center;
	line-height: 30px;
	padding: 10px 0 0 0;
	background-color: none;
	font-size: 25px;
}
.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}
/*----- Section Content -----*/
.accordion-section-content {
	/*display:none;*/
	overflow: hidden;
	height: 0px;
	background:#eee;
	padding: 0px;
	margin: 0 0 10px 0;
	transition: all linear 0.15s;
}
.accordion-section-content.open {
	/*display:none;*/
	overflow: auto;
	height: auto;
	/*background:#eee;*/
	padding: 20px 20px 10px 20px;
	transition: all linear 0.15s;
}
