/* reset */
ul {
  	margin: 0;
  	padding: 0;
  	list-style: none;
	background-image: url(images/content-bkgnd.gif);
}

input[type=radio] {
  display: none;
}

/* style */
.a-container {
  	width: 100%;
  	/* margin: 20px auto; */
  	border: 1px solid #424528;
}

.a-container label {
  display: block;
  position: relative;
  cursor: pointer;
  /* 
font-size: 18px;
  font-weight: bold;
 */
  padding: 10px;
  color: #F0EDC9;
  /* background-color: #424528; */
  opacity: 0.9; 
 /*  border-bottom: 1px solid #ddd; */
  
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  
  
	background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0%, #424528),
	color-stop(40%, #62663C),
	color-stop(60%, #62663C),
	color-stop(100%, #424528)
	);
	background-image: -o-linear-gradient(bottom,#424528 0%, #62663C 40%, #62663C 60%, #424528 100%);
	background-image: -moz-linear-gradient(bottom, #424528 0%, #62663C 40%, #62663C 60%, #424528 100%);
	background-image: -webkit-linear-gradient(bottom, #424528 0%, #62663C 40%, #62663C 60%, #424528 100%);
	background-image: -ms-linear-gradient(bottom, #424528 0%, #62663C 40%, #62663C 60%, #424528 100%);
	background-image: linear-gradient(to bottom, #424528 0%, #62663C 40%, #62663C 60%, #424528 100%);
}

/* 
.a-container label:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid #aaa;
  border-right: 6px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 6px solid transparent;
  position: absolute;
  right: 10px;
  top: 16px;
}
 */

.a-container input:checked + label,
.a-container label:hover {
  	background-color: #424528;
  	opacity: 0.75; 
  	color: #F0EDC9;
	text-shadow: #000 1px 1px 2px;
}

/* 
.a-container input:checked + label:after {
  border-top: 8px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #222;
  border-left: 6px solid transparent;
  top: 6px;
}
 */

.a-content {
  	/* padding: 0 20px 20px; */
	background-image: url(../images/content-bkgnd.gif);
  	display: none;
}

.a-container input:checked ~ .a-content {
  display: block;
}