/*!
 * jQuery Accordion 0.0.1
 * (c) 2014 Victor Fernandez <victor@vctrfrnndz.com>
 * MIT Licensed.
 */

/* Requirements */

[data-accordion] [data-content] {
    overflow: hidden;
    max-height: 0;
	
}
[data-content] {
	margin:7px 0;
}

/* Basic Theme */

[data-accordion] {
   
	
}
.faq-heading
{
	background:#232b6a;
	border-bottom:1px solid #d1c3c7;
}

[data-control],
[data-content] > * {
	padding:10px;
   
}

[data-content] [data-accordion] {
    border: 0;
    padding: 0;
}

[data-accordion] [data-control] {
    position: relative;
    padding-right: 40px;
	color:#f2f3f5;
	font-size:14px;
    cursor: pointer;
}
/*[data-accordion] > [data-control]:before {
    content: "";
    position: absolute;
    left:0;
    top:0;
    font-size: 25px;
    font-weight: 200;
    color: #444;
    height:56px;
    width:56px;
    background: url('../images/close.jpg') center center no-repeat;
   
}
[data-accordion].open > [data-control]:before {
    background: url('../images/open.jpg') center center no-repeat;
}
*/
[data-accordion] > [data-control]:after {
    content: "";
    position: absolute;
    right: 15px;
    top:13px;
    font-size: 25px;
    font-weight: 200;
    color: #444;
    height:9px;
    width:10px;
    background: url('../images/up.jpg') center center no-repeat;
   
}

[data-accordion].open > [data-control]:after {
   background: url('../images/down.jpg') center center no-repeat;
}

.outer-tabz p
{
	font-size:12px;
	color:#000;
	text-transform:uppercase;
	font-weight:600;
	padding:0 0 0 5px;
	margin:0;
}
.outer-tabz ul
{
	width:100%;
	padding:0;
	list-style:nonone;
	margin:0px 0;
	float:left;
	
}
.outer-tabz ul li 
{
	
	background:#fff;
	padding:0;
	margin:0;
	width:100%;
	float:left;
	border-bottom:1px solid #d1c3c7;
}

.outer-tabz ul li a
{
	
	padding:6px 10px;
	color:#666;
	font-size:12px;
	display:block;
	position:relative;
}
.outer-tabz ul li a:hover
{
	color:#ff3333;
}
.outer-tabz ul li a:after {
    content: "";
    position: absolute;
    right:9px;
    top:8px;
    font-size: 25px;
    font-weight: 200;
    color: #444;
    height:11px;
    width:6px;
    background: url('../images/gray-ar.gif') right no-repeat;
   
}
.outer-tabz ul li a:hover:after {
	 background: url('../images/red-ar.gif') right no-repeat;
}