@charset "UTF-8";
/* CSS Document */
#accordion {
	position:absolute;
	top:60px;
	left:20px;
	}
.haccordion {
	margin: 0 auto;
	padding-right: 5px;
	height: 520px;
	width: 1200px;
	}
*html .haccordion {width: 1200px;}
.haccordion .header, .haccordion .content {
   float: left;
   height: 500px;
   }
.haccordion .header{
   width: 22px;
   background: #000;
   color: #fff;
   cursor: pointer;
   margin-left: 5px;
  }
  
  .haccordion .content {
   display: none;
   width: 0px;
   overflow: auto;
   color: #fff;
   text-align:center;
   }
  
  .haccordion .content.visible{
    display: block;
    width: 900px;
  }
  
  .haccordion .content p {
   margin: 2px;
   width: 870px;
 }
  
  .header a {
    display: block;
    width: 22px;
    height: 500px;
	 text-decoration: none;
  }