
.container {
   
    height: 600px;
    overflow: hidden;
    position: relative;
    width:1200px;
	margin:0px auto;
}
.contents {
    margin:0 auto;
    width:100%;
}
.accordion {
    color: #000000;
    margin:0px auto;
    position: relative;
    width:98%;
}
.accordion span {
    display: none
}
.tabs {
    background-color: #FFFFFF;
    overflow: hidden;
}
.tabs dl dd a {
    background-color: #ff0000;
    border: 1px solid;
    border-color:#fff;
	border-bottom-color:#fff;
    display: block;
	text-align:left;
    font-size:14px;
    line-height: 32px;
    padding:0px 20px;
	color:#fff;
    text-decoration: none;

  

    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.tabs dl dd div {
    background-color: #F1F1F1;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.tabs dl dd div p {
    color: #444444;
    font-size: 13px;
    padding: 15px;
    text-align: justify;
}
.tabs dl dd a:hover {
  
}
.tabs dl dd a:active {
     background:#CC0000;
}
#tab1:target ~ .tabs .tab1 dd div {
    height: 100px;
}
#tab2:target ~ .tabs .tab2 dd div {
    height: 345px;
}
#tab3:target ~ .tabs .tab3 dd div {
    height: 235px;
}
#tab4:target ~ .tabs .tab4 dd div {
    height: 235px;
}
#tab1:target ~ .tabs .tab1 dd a,
#tab2:target ~ .tabs .tab2 dd a,
#tab3:target ~ .tabs .tab3 dd a,
#tab4:target ~ .tabs .tab4 dd a {
   background:#CC0000;

    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5) inset;
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5) inset;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5) inset;
}