/* Reset */
*{
	box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Generales ----------------------------------------
-------------------------------------------------- */
p {
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	color: #000;
	line-height: 1.4;
	margin-bottom: 20px;
	text-align: justify;
}

h2 {
	font-family: "Oswald", sans-serif;
	font-size: 60px;
	text-transform: uppercase;
	text-align: left;
	color: #000;
	line-height: 1.1;
	margin-bottom: 20px;
}

a {
	color: #3185fc;
}

a:hover {
	color: #ed1c24;
}

iframe {
	width: 100%;
	height: 100%;
}

/* Específicos --------------------------------------
-------------------------------------------------- */
.contenido {
	max-width: 1100px;
	margin: auto;
	margin-bottom: 60px;
	margin-top: 20px;
}

.left {
	float: left;
	max-width: 410px;
	margin-right: 60px;
	margin-bottom: 100px;
}

.left > p {
	font-family: "Baskerville", serif;
	color: #666;
	font-size: 16px;
	text-align: left;
	margin-bottom: 20px;
}

.mapa {
	margin: auto;
	max-width: 1100px;
	height: 600px;
	margin-bottom: 20px;
}

.nota {
	max-width: 1000px;
	margin: auto;
}

.nota > p {
	font-size: 10px;
	text-align: center;
	color: #999;
}

/* media queries ------------------------------------
-------------------------------------------------- */
@media screen and (max-width: 1095px){
.left {
	margin-left: 20px;
	margin-bottom: 20px;
}

.right {
	margin-right: 20px;
	margin-left: 20px;
}
}

@media screen and (max-width: 800px){
.right{
	clear: left;
}

.left> p {
	font-size: 24px;
	line-height: 1.2;
}

.nota {
	margin: 20px;
}

}