


.svs-accordions {
  position: relative;
}


.svs-accordions > .svs-accordion-content {
  display: none;
  overflow-x: auto;
  max-width: 100%;
  position: relative;
}

.svs-accordions > .svs-accordion-content.selected {
  display: block;
  -webkit-animation: cd-fade-in 0.5s;
  -moz-animation: cd-fade-in 0.5s;
  animation: cd-fade-in 0.5s;
}


.svs-accordions > .svs-accordion-button {
  display: block;
  width: 100%;
  height: 35px;
  border: 0;
  margin-bottom: 0px;
  padding-left: 10px;
  color: white; /*SVS LINK_BOX_TEXT_COLOR */
  background: rgb(46, 76, 145); /*SVS LINK_BOX_BACK_COLOR_IE9 */
  background: linear-gradient(rgb(116, 145, 214), rgb(46, 76, 145)); /*SVS LINK_BOX_BACK_COLOR */
  text-align: left;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
  padding-top: 4px;
}

/*
.svs-accordions > .svs-accordion-button > a:before {
  background-repeat: no-repeat;
  background-size: auto 100%;
  float: left;
  display: block;
  content: "";
  width: 40px;
  height: 25px;
  background-image: url("../images/down.png");
  margin-left: 0px;
}
*/

.svs-accordions > .svs-accordion-button > a > .down {
  display: inline;
}

.svs-accordions > .svs-accordion-button > a > .up {
  display: none;
}


.svs-accordions > .svs-accordion-button > a.selected > .down {
  display: none;
}

.svs-accordions > .svs-accordion-button > a.selected > .up {
  display: inline;
}


.svs-accordions > .svs-accordion-button > a{
  text-decoration: none;
  color: white; /*SVS LINK_BOX_TEXT_COLOR */
  display: block;
}

.svs-accordions > .svs-accordion-button > a:focus, .svs-accordions > .svs-accordion-button > a:hover{
  text-decoration: none;
  color: white; /*SVS LINK_BOX_TEXT_COLOR */
}




