.accordion{
    position:relative;
    width:717px;
    overflow:hidden;
    margin-left:-20px;
    margin-top:20px;
    margin-bottom:40px;
}
.accordion .item{
    position:relative;
    width:100%;
    overflow:hidden;
    margin-bottom:1px;
}
.accordion .item.active{
    position:relative;
    width:100%;
    overflow:hidden;
    margin-bottom:0px !important;
}
.accordion .item .item-header{
    width:100%;
    height:26px;
    background:url('../images/accordion/header-bg.jpg');
    color:#fff;
    cursor: pointer;
}
.accordion .item .item-header .arrow{
    position:relative;
    width:11px;
    height:11px;
    float:left;
    background:url('../images/accordion/right-arrow.png') no-repeat;
    margin-left:15px;
    margin-top:7px;
}
.accordion .item.active .item-header .arrow{
    background:url('../images/accordion/down-arrow.png') no-repeat;
}
.accordion .item .item-header .item-header-text{
    position:relative;
    margin-left:10px;
    margin-top:5px;
    float:left;
}
.accordion .item.active .item-header{
    background:url('../images/accordion/header-bg-hover.jpg');
}
.accordion .item .content{
	padding: 0 20px 20px;
	display: none;
}
.accordion .item.active .content{
	display: block;
}
.accordion .item .bookmarks{
	width: 717px !important;
	margin-left: -20px;
    border-collapse: collapse;
    border:none;
}
.accordion .item .bookmarks tr:hover td{
    color:#fff !important;
}
.accordion .item .bookmarks td{
    text-align:center;
    color:#fff;
    background:#007fc0;
    border:solid 1px #fff !important;
    text-decoration:none;
    width: 25%;
    cursor: pointer;
    padding: 5px 3px;
}
.accordion .item .bookmarks td:hover{
	text-decoration: underline;
}
.accordion .item .bookmarks td.current{
    background:#014175;
    border:none !important;
    text-decoration:none;
    cursor: default;
}
.accordion .item .bookmarks td.current:hover{
	text-decoration: none;
}
.accordion .item .bookmarks td.empty{
	background: none;
	cursor: auto;
}
.accordion .item .item-content{
    display:none;
    border:#fff solid 1px;
    overflow:hidden;
}
.accordion .item .item-content.active{
    display:block;
}
.accordion .item .content > p{
	margin: 5px 20px;
	font-size: 1.2em;
}