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

/* Requirements */

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

/* Basic Theme */

[data-accordion] {
    line-height: 1;
}

[data-control]{
    padding:20px 30px;
	border-radius:0px;
	text-align:left;
	font-size:20px;
	font-weight:400;
	color:#000;
	font-family:Futura Medium, sans-serif;
}

[data-content] > * {
    padding:10px 30px 20px 30px;
	border-radius:0px;
	text-align:left;
	font-size:15px;
	font-weight:400;
	color:#555;
	font-family:Futura Book, sans-serif;
}

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

[data-accordion] [data-control] {
    position: relative;
	width:100%;
}

[data-accordion] > [data-control]:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
	transform:translateY(-50%);
    font-size: 21px;
    font-weight: 200;
    color: #000;
    height: 25px;
    width: 25px;
    background: url('../../images/expand.png') center center no-repeat;
    background-size: 50%;
}

[data-accordion].open > [data-control]:after {
    /*-webkit-transform: rotate(-180deg); 
    -ms-transform: rotate(-180deg); 
    transform: rotate(-180deg); */
	background: url('../../images/collapse.png') center center no-repeat;
	background-size: 50%;
}

ul li {
	font-size:15px;
	font-weight:400;
	color:#000;
}

.table .table {
	background-color:transparent;
}

table tr td {
	color:#000;
	font-size:14px;
	font-family:Futura Light, sans-serif;
	line-height:1.5;
	border:1px solid #c2c2c2 !important;
}

table.special tr td {
	border:0px solid #c2c2c2 !important;
}

h2 {
	background:url(../../images/menu_title_border.jpg) no-repeat bottom left;
	padding-bottom:10px;
	margin-bottom:15px;
	font-family:Futura Medium, sans-serif;
}

.open {
	background:#fff;
}
.open > button {
	background:#fff;
}
button {
	background:#fff;
	border:1px solid #000;
	border-radius:0px;
}

p {
	margin-bottom:10px;
}

ul {
	padding-left:30px;
}
ul li {
	line-height:120%;
}

.apply_button a {
	background:#e6001a;
	border-radius:5px;
	color:#fff;
	padding:15px 30px;
}
.apply_button {
	text-align:right;
	margin-bottom:30px;
}

@media (max-width: 1200px) {
	
}

@media (max-width: 979px) {
	[data-control],
	[data-content] > * {
		font-size:18px;
	}
}

@media (max-width: 767px) {
	[data-control] {
		padding:15px 0;
	}
}

@media (max-width: 480px) {
	
}