#accordion{
  padding: 0px;
  margin: auto;
  list-style-type: none;
  width: 450px; /*szerokość akordeonu*/
}

#accordion li{
  margin: 3px 0 0 0; /*odstępy między blokami*/
}

/*
  nagłówek bloku
*/
.acc_header{
  padding: 5px 10px 5px 15px;
  margin: 0px;
  color: #000000;
  font-family: verdana;
  font-size: 12px;
  border: 1px solid #FF3C19;
  cursor: pointer;
  background-image: url("img/bg_boxheader.gif");
  border-radius: 5px;
  -moz-border-radius: 5px;
}

/*
  treść bloku
*/
.acc_content{
  padding: 5px 10px 10px 10px;
  border: 1px solid #000000;
  color: black;
  background-color: #EDEDED;
  border-radius: 5px;
  -moz-border-radius: 5px;  
  text-align: justify;
}

/*
  styl tylko dla widocznych bloków
  nagłówek bloku
*/
.acc_header_showed{
  color: #FF0000;
}



