#accordion{
  padding: 0px;
  margin: 0px;
  width: 200px; /*szerokość akordeonu*/
}

#accordion li{
  margin: 0px 0 0 0; /*odstępy między blokami*/
}

/*
  nagłówek bloku
*/
div.acc_header{
  padding: 5px 10px 5px 15px;
  background-color: rgb(216,130,2);
  font:normal 11px tahoma;
  cursor: pointer;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-bottomright: 4px;
  width: 500px;
  color: black;
  font-weight: bold;
  border-width: 1px;
}

div.acc_header:hover{
background-image: url(../images/top-bg.png);
font-weight: bold;
} 
/*
  treść bloku
*/
ul div.acc_content{
  padding: 5px 10px 10px 10px;
  border: 2px solid #666666;
  border-top-width: 0px;
  font-size: 10px;
  text-align: justify;
  font:normal 11px tahoma;
  width: 500px;
  color: white;
  text-decoration: none;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-bottomright: 4px;
} 
/*
  styl dla aktywnego bloku - rozwiniętego
*/
div.acc_header_showed{
  width: 500px;
  background-image: url(../images/box-h2-bg.png);
  color: white;
  font-weight: bold;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-bottomright: 0px;
}

div.acc_header_showed:hover{
  width: 500px;
  background-image: url(../images/box-h2-bg.png);
  color: white;
  font-weight: bold;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-bottomright: 0px;
}
