@font-face {
	font-family: 'bpmenu';
	src:url('../fonts/bpmenu/bpmenu.eot');
	src:url('../fonts/bpmenu/bpmenu.eot?#iefix') format('embedded-opentype'),
		url('../fonts/bpmenu/bpmenu.woff') format('woff'),
		url('../fonts/bpmenu/bpmenu.ttf') format('truetype'),
		url('../fonts/bpmenu/bpmenu.svg#bpmenu') format('svg');
	font-weight: normal;
	font-style: normal;
}


a.logolink:link	{ color: #ffffff; }

a.logolink:visited	{ color: #ffffff; }

a.logolink:active	{ color: #ffffff; }

a.logolink:hover	{ color:#d5d5cd; }


/* Main menu wrapper */
.cbp-hsmenu-wrapper {
	position: relative;
}

/* Common style for all lists */
.cbp-hsmenu-wrapper ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

/* 100% width bar for menu */
.cbp-hsinner {
background: #272727;
position: fixed;
top:46px;
height: 40px;
width:100%;
z-index: 999;
}

.cbp-hsinner2 {
height: 64px;
background: #ffffff;
position: relative;
z-index: 100;
}

/* Main menu style */
.cbp-hsmenu-wrapper .cbp-hsmenu {
	width: 100%;
	/* max-width: 69em; */
	margin: 0 auto;
	padding: 2px 0px;
	text-align: center;
}

.cbp-hsmenu > li {
	margin-left: 2.6em;
	display: inline-block;
}

.cbp-hsmenu > li:first-child {
	margin-left: 0;
}

/* Main menu link style */
.cbp-hsmenu > li > a {
	color: #ffffff;
	font-size: 13px;
	/*font-weight:bold;*/
	line-height: 3em;
	display: inline-block;
	position: relative;
	z-index: 10000;
	outline: none;
}

.no-touch .cbp-hsmenu > li > a:hover,
.no-touch .cbp-hsmenu > li > a:focus,
.cbp-hsmenu > li.cbp-hsitem-open > a {
	color: #a8353a;
}

/* Add an arrow to the main menu link if it has a submenu (not the only child) */
/* .cbp-hsmenu > li > a:not(:only-child):before {
	display: inline-block;
	font-family: 'bpmenu';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	content: "\f107";
	font-size: 80%;
	margin-right: 0.3em;
	opacity: 0.4;
	vertical-align: middle;
}


.cbp-hsmenu > li.cbp-hsitem-open > a:not(:only-child):before {
	content: "\f106";
}
*/
/* Add a triangle to currently open menu item link */
.cbp-hsmenu > li.cbp-hsitem-open > a:after {
	top: 98%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-top-color: #272727;
	border-width: 10px;
	left: 50%;
	margin-left: -10px;
}

/* Submenu style */
.cbp-hssubmenu {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	z-index: 0;
	text-align: center; /* for aligning the sub items */
	visibility: hidden;
	background: #373737;
}

.cbp-hssubmenu:before, 
.cbp-hssubmenu:after { 
	content: " "; 
	display: table; 
}
.cbp-hssubmenu:after { 
	clear: both; 
}

/* Let's allow 6 item in a row */
.cbp-hssubmenu > li {
	width: 20%;
	padding: 10px 0.5% 10px 0.5%;
	margin: 1% 0%;
	/*
	width: 16.2%;
	padding: 1%;
	margin: 1% 0%;
	*/
	max-width:350px;
	display: inline-block;
	vertical-align: top;
	/* box-shadow: -28px 0 0 -27px #ddd, 0 -28px 0 -27px #ddd; */
	opacity: 0;
	-webkit-transition: opacity 0.1s 0s;
	-moz-transition: opacity 0.1s 0s;
	transition: opacity 0.1s 0s;
}

.cbp-hssubmenu > li > div{
	padding-top: 10px;
}

/* First 6 items don't have upper box shadow */
.cbp-hssubmenu > li:nth-child(-n+6) {
	/* box-shadow: -28px 0 0 -27px #555555; */
} 

/* Every 7th item does not have a left box shadow */
.cbp-hssubmenu > li:nth-child(6n+1) {
	/* box-shadow:  0 -28px 0 -27px #ddd; */
}

/* The first one does not have any box shadow */
.cbp-hssubmenu > li:first-child {
	box-shadow: none;
}

.cbp-hssubmenu > li a {
	text-align: left;
	font-family: 'Open Sans';
	/*font-weight: bold;
	 text-transform: uppercase; */
	font-size: 13px;
	color: #ffffff;
	outline:0;
	text-shadow: 0px 1px 3px rgba(0,0,0,0.1);
}

.no-touch .cbp-hssubmenu > li a:hover,
.no-touch .cbp-hssubmenu > li a:focus {
	color: #dddddd;
}

.cbp-hssubmenu > li a img {
	border: 0px solid #d5d5cd;
	outline: none;
	display: inline-block;
	margin: 0;
	/* width:100%; */
	width:100%;
	max-width: 350px;
	/* -webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	transition: opacity 0.2s; */
}

.no-touch .cbp-hssubmenu > li a:hover img {
	opacity: 0.5;
}

.cbp-hssubmenu > li a span {
	display: block;
	/* min-height: 3em; */
	margin-top: 0.4em;
	max-width:350px;
}

.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
	z-index: 1000;
	visibility: visible;
}

.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu > li {
	opacity: 1;
	-webkit-transition: opacity 0.5s 0.1s;
	-moz-transition: opacity 0.5s 0.1s;
	transition: opacity 0.5s 0.1s;
}

.div_holder{

	height: auto;width: 92%;

	padding: 1% 0%;text-align: left;
}

.div_holder div{

	padding: 1% 0%;
	text-align: left;
	border-top: 1px dotted #555555;

}

.div_holder div:first-child{
	border: 0px ;
}

/* Helper div for animating the background */
.cbp-hsmenubg {
	background: #373737;
	/* position: absolute; */
	height:auto;
	width: 100%;
	top: 100%;
	left: 0;
	z-index: 0;
	height: 0px;
}

.no-touch .cbp-hsmenubg {
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

@media screen and (max-width: 65em){
	.cbp-hsmenu-wrapper {
		font-size: 80%;
	}
}

@media screen and (max-width: 51.4375em){
	.cbp-hsmenu-wrapper {
		font-size: 100%;
	}

	.logotipo{ position:relative !important;}
	.plus{ display:none !important;}
	.cbp-hsinner{ display:inline-table;}

	.cbp-hsmenu-wrapper .cbp-hsmenu {
		padding: 0;
		max-width: none;
		width: 100%;
	}

	.cbp-hsmenu > li {
		border-top: 1px solid rgba(255,255,255,0.2);
		text-align: center;
		margin: 0 auto;
		display: inline-block;
		width: 100%;
		background: #000000 !important;
	}

	.cbp-hsmenu > li:first-child {
		border-top: none;
	}

	.cbp-hsmenu > li > a {
		display: block;
	}

	.cbp-hsmenu > li > a:not(:only-child):before {
		line-height: 1.8;
		right: 0;
		position: absolute;
		font-size: 200%;
	}

	.cbp-hsmenubg {
		display: none;
	}

	.cbp-hssubmenu {
		background: #f7f7f7;
		position: relative;
		overflow: hidden;
		height: 0;
	}

	.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
		height: auto;
	}

	/* Let's only allow 3 item in a row now */
	.cbp-hssubmenu > li {
		width: 30%;
	}

	/* Reset box shadows for the 6 items in row case */
	.cbp-hssubmenu > li:nth-child(-n+6),
	.cbp-hssubmenu > li:nth-child(6n+1) {
		/* box-shadow: -28px 0 0 -27px #ddd, 0 -28px 0 -27px #ddd; */
	}

	/* First 4 items don't have upper box shadow */
	.cbp-hssubmenu > li:nth-child(-n+3) {
		/* box-shadow: -28px 0 0 -27px #ddd; */
	} 

	/* Every 5th item does not have a left box shadow */
	.cbp-hssubmenu > li:nth-child(3n+1) {
		/* box-shadow:  0 -28px 0 -27px #ddd; */
	}

}

@media screen and (max-width: 25em){
	/* Let's only allow 1 item in a row now */
	.cbp-hssubmenu > li {
		width: 100%;
		display: block;
	}


	.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu > li {
		text-align: center;
		width: 100%;
		margin: 0 auto;
		height: 180px;
		opacity: 1;
		-webkit-transition: opacity 0.5s 0.1s;
		-moz-transition: opacity 0.5s 0.1s;
		transition: opacity 0.5s 0.1s;
	}

	.cbp-hssubmenu > li a span {
		width: 50%;
		margin: 0 25%;
	}


	.logotipo{ position:relative !important;}
	.plus{ display:none !important;}
	.cbp-hsinner{ display:inline-table;}

	.cbp-hsmenu-wrapper .cbp-hssubmenu > li {
		/* box-shadow: 0 1px #cecece;*/
		text-align: left;
	}

	.cbp-hssubmenu > li a {
		text-align: left;
		line-height: 50px;
		padding: 0.4em 1em;
	}

	.cbp-hssubmenu > li a img {
		/* float: left;
		max-height: 50px; */
	}

	.cbp-hssubmenu > li a span {
		min-height: 0;
		margin: 0 25%;

	}
}
