
/* source: http://www.ehow.com/how_12214447_make-collapsing-lists-java.html */

.homebox-widget {
  vertical-align: top;
  height: auto !important;
  width: 100%;
  position: relative;
}
.content-wrap {
  display: none;
  height: auto;
  margin: 0;
  float: left;
}
.show {
  display: none;
}
.hide:target + .show {
  display: block;
}
.hide:target {
  display: none;
}
.hide:target ~ .content-wrap {
  display: block;
}

/*style the (+) and (-) */
.hide,
.show {
  width: 30px;
  height: 30px;
  font-size: 20px;
  color: red;
  text-shadow: 0 1px 0 #666;
  text-align: center;
  text-decoration: none;
  opacity: 0.95;
  margin-right: 0;
  float: left;
  margin-bottom: 0;
  position: relative;
  left: 50%;
  z-index: 9999;
}
.content-wrap p {
  height: auto;
  margin: 0;
  background: red;
}
.container-wrap {
  float: left;
  height: auto;
  width: 90%;
  line-height: 20px;
  padding-left: 0px;
  margin-bottom: 0;
  font-style: italic;
}
