/*
Theme Name: ADM
Author: Amerisol
Author URI: http://amerisol.com/
Description: The adaptation of 2012 theme for WordPress. 
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */
html{ background:#fff;}
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%;
	vertical-align: baseline;
}
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;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	/*outline: thin dotted;*/
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #fff;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #fff);
	background-image: -ms-linear-gradient(top, #f4f4f4, #fff);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #fff);
	background-image: -o-linear-gradient(top, #f4f4f4, #fff);
	background-image: linear-gradient(top, #f4f4f4, #fff);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
.menu-toggle:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border-color: transparent;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like 
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);*/
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-rendering: optimizeLegibility;
	color: #4c6067;
}
body.custom-font-enabled {
	font-family: Georgia, "Times New Roman", Times, serif;
}
a {
	outline: none;
	color: #2e5348;
}
a:hover {
	color: #587684;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	padding: 0;
	background-color: #fff;
}
.site-content {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
	margin:0;
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	padding: 24px 0;
	padding: 1.714285714rem 0;
	padding:0;
}
.site-header h1,
.site-header h2 {}
.site-header h1 a,
.site-header h2 a,
.site-header h2 a:visited,
.site-header h2 a:active {
	color: #2c5247;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #4b6068;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Navigation Menu */
.main-navigation {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	text-align: center;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin:0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
	text-align:center;
}
.main-navigation a {
	color: #5e5e5e;text-align: center;
}
.main-navigation a:hover {
	color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none; display:block;
}
.main-navigation ul.nav-menu.toggled-on {display: inline-block; display:block}
.menu-toggle {/*display: block;*/ float:right; top:0em; right:0; position: absolute}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	background-color:#fff;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.widget-area .widget a:visited {
	color: #9f9f9f;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	border-top: 1px solid #ededed;
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	max-width: 100%;
	margin-top: 1rem;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0 1rem 0;
	padding: 0 0 1rem 0;
}
footer[role="contentinfo"] a {
	color: #686868;
}
footer[role="contentinfo"] a:hover {
	color: #21759b;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	/*margin-bottom: 24px;
	margin-bottom: 1.714285714rem;*/
}
.entry-header img.wp-post-image {
	/*margin-bottom: 24px;
	margin-bottom: 1.714285714rem;*/
}
.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
	font-size: 1.285714286rem;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content a:visited,
.comment-content a:visited {
	color: #9f9f9f;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 36px;
	margin: 0 0 0 2.571428571rem;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 6px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	/*line-height: 2;*/
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	/*padding: 6px 10px 6px 0;*/
}
.site-content article {
background-color:#fff;
	/*margin-bottom: 12px;
	margin-bottom: 1rem;
	padding-bottom: 12px;
	padding-bottom: 1rem;*/
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 22px;
	margin-bottom: 1.571428571rem;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
	margin-right:0;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	background-color:#fff;
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Minimum width of 600 pixels. */
/*@media screen and (min-width: 600px) {*/
@media screen and (max-width: 768px) {
	body {
		background-color: #fff;
	}
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		max-width: 100%;
		overflow: hidden;
	}
	.site-content {
		/*float: left;*/
		width: 65.104166667%;
	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content {
		width: 100%;
	}
	.widget-area {
		float: right;
		width: 26.041666667%;
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
		margin-bottom: 0;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		border-bottom: 1px solid #ededed;
		display: inline-block !important;
		text-align: center;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	text-align:center;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	text-align:center;
	}
	.main-navigation li a {
		border-bottom: 0;
		color: #6a6a6a;
		line-height: 3.692307692;
		white-space: nowrap;
	text-align:center;
	}
	.main-navigation li a:hover {
		color: #000;
	}
	.main-navigation li {
		margin: 0 40px 0 0;
		margin: 0 2.857142857rem 0 0;
		position: relative;
	text-align:center;
	}
	.main-navigation li:last-child {
		margin: 0 0 0 0 !important;
	}
	.main-navigation li ul {
		display: none;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
	text-align:center;
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul {
		border-left: 0;
		display: block;
	}
	.main-navigation li ul li a {
		background: #efefef;
		border-bottom: 1px solid #ededed;
		display: block;
		font-size: 11px;
		font-size: 0.785714286rem;
		line-height: 2.181818182;
		padding: 8px 10px;
		padding: 0.571428571rem 0.714285714rem;
		width: 180px;
		width: 12.85714286rem;
		white-space: normal;
	text-align:center;
	}
	.main-navigation li ul li a:hover {
		background: #e3e3e3;
		color: #444;
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a {
		color: #636363;
		font-weight: bold;
	}
	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title {
		font-size: 22px;
		font-size: 1.571428571rem;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {
		background-color: #fff;
	}
	body .site {
		padding: 0;
		margin-top:0;
		margin-bottom: 14px;
		margin-bottom: 1rem;
	}
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
}


/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a,
	.site-header h2 a:visited {	color: #000;}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.singular .site-content,
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular .comments-title {
		margin: 0;
		width: 100%;
	}
	.entry-header .entry-title,
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}
/*****************************AMERISOL***********************************/
*{ font-family: Georgia, "Times New Roman", Times, serif;}
body{ color:#4c6067; font-size:13px; width:1024px; margin: 0 auto; padding:0; text-align:center; display:block;}
	.txt_white{ color:#ffffff !important;}
	.txt_upper{ text-transform:uppercase}
	.italic{ font-style:italic !important;}
	.font10{ font-size:10px !important;}
	.font11{ font-size:11px !important;}
	.font12{ font-size:12px !important;}
	.font14{ font-size:14px !important;}
	.font16{ font-size:16px !important;}
	.font18{ font-size:18px !important;}
	.font20{ font-size:20px !important;}
	.align_right{ text-align:right !important; float:right !important;}
	.align_left{ text-align:right; float:left;}
	.align_center{ text-align:center !important; float:none;}
	.clear{ display:block; height: 0; clear:both; background: transparent scroll;}
	.no_skype{display:none;}
a, a:visited{text-decoration:none; cursor:pointer; border:none !important;}
a:hover{ color:#587684;}
h1, h2, h3, h4, h5, h6, .title_index{ color:#2c5247 !important; font-style:italic; text-transform:uppercase;}
h2 a{ color:#2c5247 !important;}
h1{ font-size:22px !important; border-bottom:#cad4d1 solid 1px; padding-bottom:10px; padding-top:10px; margin-top:0 !important; font-weight:normal;}
.title_index{display:block; width:95%; text-align:center; /*font-size:15px !important;*/ font-style:italic; margin: -5px auto 10px auto !important;}
h2{ font-size:13px; border-bottom:#cad4d1 solid 1px; margin-bottom:0.5em; margin-top:1em; display:block;}
.first_content{ margin-top:0px !important; clear: none;display:inline;}
h3{ font-size:12px; margin-bottom:0.5em; display:block; }
h4{ font-size:12px;}
p{color:#4b6068;}
/*EASING*/
.botoncitoSutil, input[type="submit"], .boton-css, .contact , .premios img{-webkit-transition:all 0.4s ease;-moz-transition:all 0.4s ease;-ms-transition:all 0.4s ease;-o-transition:all 0.4s ease;transition:all 0.4s ease}
	
.contenido ul, .contenido ol{ margin:14px auto 14px 20px !important;}
.contenido ul li{ padding-left:10px; margin: 0 10px 4px 10px !important; text-align:left; list-style-image:url() !important ;}
.contenido ol li, .contenido ul li{ margin-bottom:.3em; text-align:left; padding-left:5px !important; margin-left:15px !important;}
.line{ display:block; height:1px; border-bottom:#cad4d1 solid 1px; -webkit-box-shadow: 0 1px 2px rgba(255,255,255,.86), inset 0 2px 4px rgba(30,30,30,.28); -moz-box-shadow: 0 1px 2px rgba(255,255,255,.86), inset 0 2px 4px rgba(30,30,30,.28); box-shadow: 0 1px 2px rgba(255,255,255,.86), inset 0 2px 4px rgba(30,30,30,.28);font-size: 0;}
	
img{ display:block; border:none;}
.img_center{ display:block; margin:1em auto;}
.img_left{ margin:0 1em 1em 0; float:left;}
.img_right{ margin:0 0 1em 1em; float:right;}
.img_no_background{ background: transparent !important;}
.img_abordefoto{border:4px solid #deba70;}
iframe{cursor:pointer; border:none; padding:0;}

header, nav, .slider, .main, footer{ display: inline-block; margin: 0; overflow:hidden; clear:both;} 

/*header{}*/
	.logo, .top, .contact, .social, .reservations{ display:block; height:100px; float:left;}
	.logo{ width:290px;}
	.logo a{background: url(http://www.arenasdelmar.com/images/logonew.jpg) no-repeat top left scroll; width:335px; height:115px; display:block; cursor:pointer;}	 	
	.top{width:200px;}
	.contact, .reservations{ height:60px; margin-bottom:75px; padding-right:8px;}
	.reservations a{ width:172px;}
	.contact{ height:60px; border-right:#939393 solid 1px; padding-right:8px; margin-bottom:75px; }
	.contact a{ width:90px;}
	.contact a, .reservations a, .col_center .reservations a{ height:24px; display:block; margin-top:30px; -webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; border-radius: 12px; background:#109082; line-height:24px;color:white; text-align:center; font-size:13px; text-decoration:none; font-weight:bold;}
	.contact a:hover, .reservations a:hover{ color:#8eb5b9; text-transform:none !important;}
	
	.social{ height:125px; overflow:hidden;}
	.addthis_toolbox{ width:180px; margin-top:30px; margin-left:5px;}
	.addthis_32x32_style a, .addthis_32x32_style a:visited { width:24px !important; height:24px !important; display:inline-block; padding:0 !important; margin:0 5px 0 0;} 
	.at300b img, 
	.at300bo img,
	.addthis_32x32_style a img,
	.addthis_32x32_style a,
	.addthis_32x32_style a:visited
		{
		border:none !important; 
		outline:none !important;
		outline-width:0 !important;
		outline-style: none !important; 
		border-image-width:0 !important; 
		border-image-outset:0 !important; 
		border-width:0 !important;
		}
	.addthis_button_facebook_follow{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat 0 0  !important;}
    .addthis_button_google_follow{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat -26px 0  !important;}
    .addthis_button_pinterest_follow{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat -52px 0  !important;}
    .addthis_button_twitter_follow{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat -78px 0  !important;}
    .addthis_button_youtube_follow{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat -104px 0  !important;}
    .addthis_button_wordpress_follow{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat -130px 0  !important;}
	.addthis_button_facebook_follow:hover{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat 0 -24px  !important;}
    .addthis_button_google_follow:hover{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat -26px -24px  !important;}
    .addthis_button_pinterest_follow:hover{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat -52px -24px  !important;}
    .addthis_button_twitter_follow:hover{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat -78px -24px  !important;}
    .addthis_button_youtube_follow:hover{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat -104px -24px  !important;}
    .addthis_button_wordpress_follow:hover{ background:url(http://www.arenasdelmar.com/images/socials.png) no-repeat -130px -24px  !important;}
	.social_contact{ width:200px; height:24px; overflow:hidden;}
	.social_contact	a, 
	.social_contact a:visited,
	.social_contact img{ display:block !important; padding:0 !important; margin:0 5px 0 0; top:0 !important; position:relative; float:left;}
	.social_contact	.addthis_toolbox{ width:100%; margin-top:0px; margin-left:0px;}
	
	nav
{ text-align:center !important;
  line-height: 21px;
  color: #30574b;
  border-bottom: #666 solid 1px;
}
	.main-navigation{font-size:16px;text-align:center !important; margin-top:0 !important; }
	.main-navigation a{color: #30574b;}
	.main-navigation li a, .main-navigation li{display: inline-block; font-size:15px;}
	.main-navigation li a, .main-navigation li a:visited{
	border-bottom-width: 1px;
	border-bottom-style: none;
	color: #30574b;
	line-height: 2;
	text-transform: none;
	white-space: nowrap;
	font-size:15px;
	text-align:center;
	}
	.main-navigation a:hover{ color: #0a2b22;}
	.main-navigation li a:hover{color: #0a2b22;}
	.main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ededed;
	border-top: none;
	width: 100%;
	text-align:center;
	}
.wp-post-image{width:1024px; height:360px;}
.widget-area{ float: right !important; width:244px !important;}
.template-front-page .widget-area{clear: none;float: right; width:244px;padding-top: 1.71429rem;border: none;}
body.custom-background, html{}
div#main.wrapper{ padding-top:0; margin-top:0;}
div#secondary.widget-area{ margin-top:/*440px*/91px;}
.entry-content h1, .comment-content h1{ font-size: 1rem; font-size:22px; line-height: 1;}
.entry-header{ margin-bottom:0 !important;}
.template-front-page article{ margin-top:-35px;}
div#primary .slider{ width:1024px;height:361px; overflow:hidden; display:block; margin-left:-35px;}
div#secondary .slider{ width:1024px;height:361px; overflow:hidden; display:block; margin-left:-35px; margin-top:0px;}
	.slideshow{ width:1024px;height:361px; text-align:center; overflow:hidden;}
	ul.slideshow { width:1024px;height:361px;margin:0 !important;padding:0 !important;position:relative;list-style:none;overflow:hidden;}	
	ul.slideshow li {position:absolute;	left:0;right:0; padding-left: 0; overflow:hidden;}
	ul.slideshow li img{ width:1024px;}
	ul.slideshow li.show {z-index:500; overflow:hidden;}
/*! http://responsiveslides.com v1.54 by @viljamis */
.rslides_tabs { padding:0 !important;}
#post-181 { margin-top: -28px !important; margin-bottom:0 !important; padding-bottom:0 !important;}
#post-181 .site-content article{ margin-bottom:0 !important; padding-bottom:0 !important;background-color:#fff;}
.metaslider.nav-hidden.add-margin .flexslider { margin-bottom: 0px !important;}
.slideshow{  position: relative;  list-style: none;  overflow: hidden;  width: 100%;  padding: 0;  margin: 0;  }
.slideshow li {  -webkit-backface-visibility: hidden;  position: absolute;  display: none;  width: 100%;  left: 0;  top: 0;  }
.slideshow li:first-child {  position: relative;  display: block;  float: left;  }
.slideshow img {  display: block;  height: auto;  float: left;  width: 100%;  border: 0;  }
img.size-full, img.size-large, img.header-image, img.wp-post-image{  max-width: 1024px; height:360px;}
.entry-content p, .entry-summary p, .comment-content p, .mu_register p{ margin-bottom: 1rem; text-align:justify;}
.site-content{float: left;width: 73%;}
.main{ margin-top:5px; height:auto; min-height: inherit; text-align:justify; text-justify:distribute;}
	.col_left, .col_right, .col_center{ display: block;}
	.col_left{ width:244px; float: left; height:100%; margin-top:-259px; clear:left;}
		.map{ width:244px; height:249px; background: #e1f4f8 url(http://www.arenasdelmar.com/images/map.jpg) no-repeat top right scroll; background-size:244px; border:#558261 solid 1px;}
		.map a{ color:#2d5348 !important; font-size:13px; padding-top:207px; padding-bottom:23px; padding-left:20px; display:block;}
	.col_right{width:242px; float: right; margin-top:-70px;}
		.col_right div{ margin-bottom:4px !important; padding:3px !important; /margin-bottom:3px !important; height:53px !important; /height:52px !important;}
		.col_right div:last-child{ margin-bottom: 0 !important;}
		.col_right a, .col_right a:visited{ color:#f8f6ed !important; font-weight:bold; padding:3px !important; display:block !important; text-align:center;}
		.col_right a:hover{ color:#f7fcfa !important; }
		.reserve{ background:#4f8428;} 
		.reserve a, .reserve a:visited{border:#476414 solid 1px !important; font-size:41px !important;line-height:46px}
		.info{ height:51px; height:45px; padding:3px 11px !important; color:#223c15; border: solid 1px #658491; background-color:#c1c338; font-size:11.5px; line-height:24px; text-align:center !important;}		
		.info a, .info a:visited{ color:#223c15; display:inline !important; width:auto !important; height: 0; padding:0; font-weight:normal !important;}
		.honeymoon{ background-color:#2f8064 !important; line-height:43px !important;}
		.honeymoon a{border:#1a5843 solid 1px !important; color:#f8f6ed !important; font-size:33px !important; font-weight:bold !important; text-align:center !important;line-height:46px !important;}
		.family{ background-color:#6caa25;}
		.family a{border:#45740f solid 1px !important; font-size:27px;line-height:46px}
		
		.culinary_events{ background-color:#6caa25;}
		.culinary_events a{border:#45740f solid 1px !important; font-size:27px; line-height:43px; margin-top:auto; margin-bottom:auto;}
	
	.col_center{ float:left; width:530px; line-height:22px; margin-left:244px;}
		.page-template-default .entry-content{ height:auto;-webkit-box-shadow: inset 0 1px 4px rgba(30,30,30,.25); -moz-box-shadow: inset 0 1px 4px rgba(30,30,30,.25); box-shadow: inset 0 1px 4px rgba(30,30,30,.25); background-color:#f7fcfa;/border: solid 1px #cccccc; padding:10px 10px 10px 240px; margin-top:8px; text-align:justify; text-justify:distribute;}
		.entry-content h1{text-align: left; text-justify: inter-word; word-break:keep-all; word-spacing:normal;}
		.page-template-default .entry-content p{ margin-bottom:0 !important;}
		.page-template-default .entry-content h2{ text-align:left;}
		.page-template-default .entry-content img.alignleft{ /*margin-left:-250px !important;*/}
		.page-template-default .entry-content .diners img.alignleft{ margin-top:6px;}
		.page-template-default .entry-content iframe{ width:209px; height:175px; /*margin-left:-250px !important;*/ float:left;}
		.contenido{ /*height:225px;*/ margin: 0 0 7px 7px; padding:5px 23px 2px 10px; -webkit-box-shadow: inset 0 1px 4px rgba(30,30,30,.25); -moz-box-shadow: inset 0 1px 4px rgba(30,30,30,.25); box-shadow: inset 0 1px 4px rgba(30,30,30,.25); background-color:#f7fcfa;/border: solid 1px #cccccc;/width:523px;/padding:8px 23px 1px 10px; /*height:auto;*/}
		.contenido h1{ /*font-size:12px;*/ text-align:center !important; margin:0 auto 10px auto !important;}
		.nav_left{ text-align:right !important; border-right:#658491 solid 1px; width:200px; padding-right:10px; float:left !important;}
		.page-template-default .nav_left{ margin-left:-220px; position:relative;}
		.nav_left *{ text-align:right !important;}
		.nav_left h2{ font-size:17px; font-weight:bold; font-style:italic; margin-top:0; margin-bottom:20px; border-bottom:none; max-width:200px; width:200px;}
		.nav_left a, .nav_left a:visited{ font-size:15px; color:#2c5247; line-height:15px !important; padding:0; margin:0 0 0.5em 0; display:block;}
		.nav_left a.multiple_lines{line-height:18px;}
		.nav_left a.actual{ font-weight:bold;}
		.tabla_rates{ display: block; float:right; width:100%; margin-top:0; max-height:250px;}
		.tabla_rates .foto, .tabla_rates .tarifas{ max-height:200px; vertical-align:top; padding:0 !important;}
		.tabla_rates .foto{width:45%;}
		.tabla_rates .tarifas{width:55%;}
		.tabla_rates .tarifas table{ display:block; width:100% !important; margin:0 !important; padding:0 !important;}
		.tabla_rates .tarifas table thead tr,
		.tabla_rates .tarifas table tbody tr{ width:100% !important; margin:0 !important; padding:0 !important;}
		.tabla_rates .tarifas table tbody tr td:nth-child(1),
		.tabla_rates .tarifas table thead tr th:nth-child(1){ text-align:left; width:70%;}
		.tabla_rates .tarifas table tbody tr td:nth-child(2),
		.tabla_rates .tarifas table thead tr th:nth-child(2){ text-align:center !important; width: 30%; padding-left:5px !important; padding-right:5px !important;}
		.tabla_rates img{ width:95% !important; margin-right:0 !important; margin-top:0.5em !important; float:none !important;}
	
	.awards2 { width:100%; height:105px; padding:5px !important; background:#c7e5a4;text-align:center !important; clear:both; margin:1em auto 0 auto; display:block; border:none;}
	.awards2 img{ height:55px; display: block !important; padding: 0 !important; margin:0 16px !important; opacity:0.7; float:left;}
	.awards2 img:hover{opacity:1;}
	.awards2 a, .awards2 a:visited{ height:95px; display:block; width:auto; max-width:120px; float:left; text-align:center; font-size:0.8em; line-height:1em !important;color: #4b6068; margin:0 15px; top:0;}
	.awards2 a img{ height:50px; display:block !important; margin:0 auto 1em auto !important; clear:both; float:none;}
	.iner{display:block; padding-left:15px; width:auto; height:75px;}
	
	.premios { display:block; width:100%; height:auto; min-height:100px; padding-bottom:5px; padding-left:5px; background:#c7e5a4; text-align:center; clear:both; margin:1em auto;}
	.unPremio{ width:auto; padding:0 15px; float:left; opacity:0.7;}
	.unPremio:hover{opacity:1;}
	.unPremio img{ height:55px; display: block; padding: 0; margin:1em auto !important;}
	.unPremio a, 
	.unPremio a:visited{ display:block; text-align:center; font-size:0.8em; line-height:1.1em !important; color: #4b6068;}
		
		.map2{ width:234px; height:246px !important; background: #e1f4f8 url(http://www.arenasdelmar.com/images/map.jpg) no-repeat top right scroll; border:#558261 solid 1px; padding:0;}
		.map2 a{ color:#2d5348 !important; font-size:13px; padding-top:202px; padding-bottom:28px; padding-left:20px; display:block; text-align:left; font-weight:normal;}
		.contenido a, .contenido a:visited{ color:#4b6068; color:#4f8428;}
		.contenido a:hover{ color:#4f8428; text-decoration:underline;}
		.contenido img{ display:block; float:left; margin:0 20px auto 0; }
		.fix{ min-height:173px; margin-bottom:1em; clear:right;}
		.fix:first-child{ clear: none !important;}
		.fix img{ margin:0 1em 0 1em;}
		.boton-css{ width:auto; padding:3px; background-color:#2f8064; height: auto; margin:1em auto;}
		.boton-css a:link, .boton-css a:visited, .boton-css a:active{border:#1a5843 solid 1px; color:#f8f6ed; font-size:16px; font-weight:bold; text-align:center; padding:5px; display:block; text-align:center;}	
		.boton-css a:hover{ color:#caebf4; text-decoration:none; }	
		input[type="submit"]{ width:150px; height:40px; line-height:24px; padding:0 inherit; display:block; margin-top:30px; -webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; border-radius: 12px; background:#109082;
			 line-height:24px;color:white; text-align:center; font-size:16px; text-decoration:none; font-weight:bold;  text-transform: uppercase;}
		input[type="submit"]:hover{color:#8eb5b9;}

footer{text-align:center;}
	.menu_foot{ margin-top:13px; padding-bottom:11px;}
	.menu_foot a, .menu_foot a:visited{color:#2e5348; font-size:11px; text-decoration:none; text-align:center;}
	.menu_foot a:hover{ color:#0a2b22;}
	footer .line{width:650px; margin: 0 auto;}		
	.link_cayuga{display:block; width:440px; margin:0 auto 1em auto; text-align:center; height:75px; line-height:75px; background:url(http://www.arenasdelmar.com/images/logos/logo_cayuga_150.png) no-repeat top left scroll;}
	.link_cayuga a, .link_cayuga a:visited{color:#2d5348; font-size:14px; width:100%; height:100%; padding-left:150px;}
/**************************/
.slideshow {  margin: 0 auto;  }
.slider {  position: relative;  float: left;  width: 100%;  }
.botoncitoSutil{ width: 125px; height:24px; line-height:24px; padding:0 1em; display:block; margin:1em auto;  background:#A4C3C6;-webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; border-radius: 12px;}
.botoncitoSutil a{color:white !important; text-decoration:none !important;}
.botoncitoSutil:hover{background:#109082;}
.titulo_gce {color:#2c5247;font-weight:bold;font-style:italic;text-transform:uppercase;font-size:13px;display:block;}
.subtitulo_gce {color:#2c5247;font-weight:bold;font-style:italic;text-transform:uppercase;font-size:11px;display:block;}
.gal{ height:auto; min-height:156px; display:block; width:470px; margin-bottom:1em; clear: right;}
.gal.birds{min-height:2808px;}
.gal.seis_filas{min-height:936px;}
.gal.cinco_filas{min-height:780px;}
.gal.cuatro_filas{min-height:624px;}
.gal.tres_filas{min-height:468px;}
.gal.dos_filas{min-height:312px;}
.gal.una_fila{min-height:156px;}
.gal img{ margin:0 1px 1px 0 !important; float:left !important;}
.gal img:last-child{ clear:right;}
#videos iframe{width:48%; height:160px; display:block; border:0; margin:0 1%; float:left;}
#videos .description{width:48%; height:auto; display:block; float:left; margin:1em 1%; font-size:11px; line-height:12px; text-align:center;}
#videos .solo{ margin:1em 26% !important;}
	
#post-181 .main{ margin-top:-29px;}
#post-181 .col_right{ margin-top:0;}
#post-230 .col_right{ margin-top:0 !important;}
.videoRooms{background-repeat:no-repeat; background-image:url(http://www.arenasdelmar.com/wp-content/uploads/2014/07/videoRoom.jpg); width:100%; height:166px !important; background-size:cover; background-position:bottom center; }
.videoRooms a{ display:block; width:100%; height:100%; font-size:15px; line-height:15px; color:#f8f6ed; padding:116px 0 0 0 !important; text-shadow: 0 0 2px #000;}
.videoRooms a span{ display:block; width:100%; padding:10px 0; background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC42NSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.65)), color-stop(100%,rgba(0,0,0,0.65)));background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: -o-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: -ms-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);}
.col_right2{display: block; width:242px !important; height:166px !important; float: right; margin-top:-70px; margin-bottom:74px;}
.link_reserv{ float:right; height:30px; margin-top:-48px !important; font-size:13px; font-weight:bold; font-style:italic; text-transform:uppercase;}
.link_reserv a, .link_reserv a:link, .link_reserv a:visited { text-decoration:none !important; color:#2c5247 !important;}
.link_reserv a:hover{ opacity:0.8;}

@media screen and (max-width: 1023px) {	
	body {
		background-color: #fff;
	}
.site{ width:100%;}
.col_center{ width:100%; height:16em; margin:0 0 0 0; clear: both; float:none;}
}

@media screen and (min-width: 769px) { 
	body {
		background-color: #fff;
	}
.main-navigation a { padding:0 15px;}
}

@media screen and (max-width: 768px) {	
.site{ width:100%;}
body{ width: 100%; max-width:100%;background-color:#fff;}
header, footer{ display:block; margin-left: 0; margin-right:0 !important; width:100%;}
	.logo, .contact, .reservations, .social{ display:block !important; /*height:75px;*/ float:none; margin:10px auto 0 auto !important;}
	.logo{ width:50%; max-width:290px; clear:both;}
	.logo a{background: url(http://www.arenasdelmar.com/images/logo_arenas_web.png) no-repeat 0 -35px scroll; background-size: cover; width:90%; height:60px; display:block; cursor:pointer; float:none;}
	.contact, .reservations, .social{ width:30%;}
	.contact a, .reservations a{ margin:0 auto !important;}
	.contact, .reservations{ margin-right:5%; margin-right:0;}
	.contact, .reservations{ height:24px; border-right:none; padding-right:0; margin-bottom: inherit; float:left;}
	.contact{ clear:right;}
	.contact a{ width:90px; height:24px; display:block; background:#109082;line-height:24px;}
	.social{ height:24px; overflow:hidden;}	
	.addthis_toolbox{ width:180px; margin-top:0; margin-left:0; margin-bottom:0;}	
	.site-header {margin-bottom: 1rem;padding:0; width:100%;}
	nav{ text-align:center !important; line-height: 21px; color: #30574b; border-bottom:none;}
	.main-navigation{font-size:16px;text-align:center !important; margin:1em 0 0 0 !important; padding:0 !important; width:100%; }
	.main-navigation a{ width:100%; height:100%;}
	.main-navigation a, .main-navigation a:visited{color: #30574b; padding:0; text-align:center;}
	.main-navigation li a, .main-navigation li{display: inline-block; font-size:15px; text-align:center;}
	.main-navigation li { width:147px; width:-webkit-calc(25% - 3px); width:-moz-calc(25% - 3px); width:calc(25% - 3px); border:#30574b solid 1px; margin: 0 -3px 1px 0 !important}
	.main-navigation li a, .main-navigation li a:visited{ border-bottom-width:1px; border-bottom-style:none;
	color:#30574b; line-height:2; text-transform:none; white-space:nowrap; font-size:15px; text-align:center;}
	.main-navigation a:hover{ color: #0a2b22;}
	.main-navigation li a:hover{color: #0a2b22;}
	.main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul{
	border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #ededed; border-top: none;
	width: 100%;text-align:center;}
	.main-navigation ul.nav-menu.toggled-on, .menu-toggle{border-bottom: #fff solid 1px; text-align:center;}
.wp-post-image{width:100%; height: auto;}
body.custom-background, html{ background-color: #fff !important;}
div#secondary.widget-area{ margin-top:0px;}
.entry-content h1, .comment-content h1{ font-size: 1.9rem; line-height: 1; width:100%;}
.entry-header{ margin-bottom:0 !important;}
div#primary .slider{ width:768px;height:auto; overflow:hidden; display:block; margin-left:-28px; margin-top:-22px;}
div#secondary .slider{ width:768px;height:auto; overflow:hidden; display:block; margin-left:-28px; margin-top:-65px;}
	.slideshow{ width:100%;height:auto; text-align:center; overflow:hidden;}
	ul.slideshow { width:768px;height:auto;margin:0 !important;padding:0 !important;position:relative;list-style:none;overflow:hidden;}	
	ul.slideshow li {position:absolute;	left:0;right:0; padding-left: 0; overflow:hidden;}
	ul.slideshow li img{ width:768px;}
	ul.slideshow li.show {z-index:500; overflow:hidden;}
img.size-full, img.size-large, img.header-image, img.wp-post-image{  max-width: 768px; height:auto;}
.entry-content p, .entry-summary p, .comment-content p, .mu_register p{ margin-bottom: 1rem; text-align:justify;}
.site-content{float: left;width: 95%; margin:0 auto;}
.main{ margin-top:5px; height:auto; min-height: inherit; text-align:justify; text-justify:distribute; width:100%; max-width:100%;}
	.col_left, .col_right, .col_center{ display: block; margin-bottom:1rem;}
	.col_left, .col_right{width:49%;}
	.col_left{ height:100%;	float:left; clear:none; margin-top:-2px;}
		.map{ width:244px; width:calc(100% - 2px); height:246px; background: #e1f4f8 url(http://www.arenasdelmar.com/images/map.jpg) no-repeat center left scroll; background-size: cover; border:#558261 solid 1px;}
		.map a{ color:#2d5348 !important; font-size:13px; padding-top:207px; padding-bottom:23px; padding-left:20px; display:block;}
	.col_right{ float:right;}
		.col_right div{ margin-bottom:4px !important; padding:3px !important; /margin-bottom:3px !important; height:53px !important; /height:52px !important;}
		.col_right div:last-child{ margin-bottom: 0 !important;}
		.col_right a, .col_right a:visited{ color:#f8f6ed !important; font-weight:bold; padding:3px !important; display:block !important; text-align:center;}
		.col_right a:hover{ color:#f7fcfa !important; }
		.reserve{ background:#4f8428;} 
		.reserve a{border:#476414 solid 1px !important; font-size:41px !important;}
		.info{ height:51px; height:45px; padding:3px 11px !important; color:#223c15; border: solid 1px #658491; background-color:#c1c338; font-size:11.5px; line-height:17px; text-align:center;}		
		.info a{ color:#223c15; display:inline !important; width:auto !important; height: 0; padding:0; font-weight:normal !important;}
		.honeymoon{ background-color:#2f8064 !important; line-height:43px !important;}
		.honeymoon a{border:#1a5843 solid 1px !important; color:#f8f6ed !important; font-size:33px !important; font-weight:bold !important; text-align:center !important;line-height:46px !important;}
		.family{ background-color:#6caa25;}
		.family a{border:#45740f solid 1px !important; font-size:39px;line-height:46px}
		.culinary_events{ background-color:#6caa25;}
		.culinary_events a{border:#45740f solid 1px !important; font-size:27px; line-height:43px; margin-top:auto; margin-bottom:auto;}
.widget-area{ float: none !important; width:100% !important; background:#F00;}
.widget-area .col_right{width:100%; float: left; margin:0 auto !important;}
.template-front-page .widget-area{clear: none;float: none; width:100%; padding-top:0;border: none; margin:0 auto; background:#0F0;}
	.col_center{ width:100% !important; margin-left:0px; height:auto;}
		.page-template-default .entry-content{-webkit-box-shadow: inset 0 1px 4px rgba(30,30,30,.25); -moz-box-shadow: inset 0 1px 4px rgba(30,30,30,.25); box-shadow: inset 0 1px 4px rgba(30,30,30,.25); background-color:#f7fcfa;/border: solid 1px #cccccc; padding:10px 10px 10px 10px; margin-top:8px; text-align:justify; text-justify:distribute;}
		.page-template-default .entry-content h2{ text-align:left;}
		.page-template-default .entry-content img.alignleft{ /*margin-left:-250 !important;*/}
		.contenido{ /*height:180px;*/ margin: 0 0 7px 0; padding:10px 10px 10px 10px; -webkit-box-shadow: inset 0 1px 4px rgba(30,30,30,.25); -moz-box-shadow: inset 0 1px 4px rgba(30,30,30,.25); box-shadow: inset 0 1px 4px rgba(30,30,30,.25); background-color:#f7fcfa;/border: solid 1px #cccccc;/width:523px;/padding:10px 10px 10px 10px;}
		.contenido h1{ /*font-size:1.7rem;*/ font-weight:normal; text-align:left !important; border-right:none; width:100%; padding:0 0 0.5em 0;}
		.nav_left{ text-align:center !important; border-bottom:#658491 solid 1px; border-right:none; width:95%; padding:1rem 0; float: none; margin-bottom:1rem;}
		.page-template-default .nav_left{ margin-left:0px; position:relative;}
		.nav_left *{text-align:center !important;}
	.nav_left h2{ font-size:17px; font-weight:bold; font-style:italic; margin-top:0; margin-bottom:20px; border-bottom:none; max-width: inherit; width:100%; text-align:center !important; display:none}
		.nav_left a, .nav_left a:link, .nav_left a:visited{ display:block; width:100%; font-size:13px; color:#2c5247; line-height:13px !important; padding:0.5em !important; margin:0 0 0 0 !important;}
		.nav_left a.multiple_lines{line-height:18px;}
		.nav_left *{ text-align:left !important;}
		.nav_left a:before{ content:'► '; margin-left:-0.5em;}
		.nav_left a.multiple_lines{line-height:18px;}
		.nav_left a.actual{ font-weight:bold;}
	
	.iner{display:block; padding-left:15px; width:auto; height:75px;}
		
		.map2{ width:234px; height:246px !important; background: #e1f4f8 url(http://www.arenasdelmar.com/images/map.jpg) no-repeat bottom right scroll; border:#558261 solid 1px; padding:0;}
		.map2 a{ color:#2d5348 !important; font-size:13px; padding-top:202px; padding-bottom:28px; padding-left:20px; display:block; text-align:left; font-weight:normal;}
		.contenido a, .contenido a:visited{ color:#4b6068; color:#4f8428;}
		.contenido a:hover{ color:#4f8428; text-decoration:underline;}
		.contenido img{ display:block; float:left; margin:0 20px auto 0; }
		.fix{ min-height:173px;}
		.boton-css{ width:auto; padding:3px; background-color:#2f8064; height: auto; margin:1em auto;}
		.boton-css a:link, .boton-css a:visited, .boton-css a:active{border:#1a5843 solid 1px; color:#f8f6ed; font-size:16px; font-weight:bold; text-align:center; padding:5px; display:block; text-align:center;}	
		.boton-css a:hover{ color:#caebf4; text-decoration:none; }	
		input[type="submit"]{ width:150px; height:40px; line-height:24px; display:block; margin-top:30px; -webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; border-radius: 12px; background:#109082;
			 line-height:24px;color:white; text-align:center; font-size:13px; text-decoration:none; font-weight:bold;}
		input[type="submit"]:hover{color:#8eb5b9;}
footer{text-align:center; max-width:100%;}
	.menu_foot{ margin-top:0px; padding-bottom:11px;}
	.menu_foot a, .menu_foot a:visited{color:#2e5348; font-size:10px; text-decoration:none; text-align:center;}
	.menu_foot a:hover{ color:#0a2b22;}
	footer .line{width:580px; margin: 0 auto;}		
	.link_cayuga{display:block; width:440px; margin:0 auto 1em auto; text-align:center; height:75px; line-height:75px; background:url(http://www.arenasdelmar.com/images/logos/logo_cayuga_150.png) no-repeat top left scroll;}
	.link_cayuga a{color:#2d5348; font-size:14px; width:100%; height:100%; padding-left:150px;}
.slideshow{  position: relative;  list-style: none;  overflow: hidden;  width: 100%;  padding: 0;  margin: 0;  }
.slideshow li {  -webkit-backface-visibility: hidden;  position: absolute;  display: none;  width: 100%;  left: 0;  top: 0;  }
.slideshow li:first-child {  position: relative;  display: block;  float: left;  }
.slideshow img {  display: block;  height: auto;  float: left;  width: 100%;  border: 0;  }
.slideshow {  margin: 0 auto;  }
.slider {  position: relative;  float: left;  width: 100%;  }
.botoncitoSutil{ width: 125px; height:24px; line-height:24px; padding:0 1em; display:block; margin:1em auto;  background:#A4C3C6;-webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; border-radius: 12px;}
.botoncitoSutil a{color:white !important; text-decoration:none !important;}
.botoncitoSutil:hover{background:#109082;}
.titulo_gce {color:#2c5247;font-weight:bold;font-style:italic;text-transform:uppercase;font-size:13px;display:block;}
.subtitulo_gce {color:#2c5247;font-weight:bold;font-style:italic;text-transform:uppercase;font-size:11px;display:block;}
.gal{ height:auto; min-height:156px; display:block; width:470px; margin-left:2em; margin-bottom:1em; clear: right;}
.gal.birds{min-height:2808px;}
.gal.seis_filas{min-height:936px;}
.gal.cinco_filas{min-height:780px;}
.gal.cuatro_filas{min-height:624px;}
.gal.tres_filas{min-height:468px;}
.gal.dos_filas{min-height:312px;}
.gal.una_fila{min-height:156px;}
.gal img{ margin:0 1px 1px 0 !important; float:left !important;}
.gal img:last-child{ clear:right;}
#videos iframe{width:48%; height:160px; display:block; border:0; margin:0 1%; float:left;}
#videos .description{width:48%; height:auto; display:block; float:left; margin:1em 1%; font-size:11px; line-height:12px; text-align:center;}
#videos .solo{ margin:1em 26% !important;}
form{ width:100%;}
.col_right2{display: block; width:100% !important; height:166px; float: left; margin-top:0;/*-70px*/; margin-bottom:1em/*74px*/;}
.videoRooms{width:100%; height:166px !important; margin:0 auto 1em auto; background-size:cover; background-position:center center;}
.videoRooms a{ display:block; width:100%; height:100%; font-size:15px; line-height:15px; color:#f8f6ed; padding:131px 0 0 0 !important; text-shadow: 0 0 2px #000;}
.videoRooms a span{ display:block; width:100%; padding:10px 0; background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC42NSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.65)), color-stop(100%,rgba(0,0,0,0.65)));background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: -o-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: -ms-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);}
}
@media screen and (max-width: 600px) {
	body {
		background-color: #fff;
	}	
.videoRooms{width:100%; height:166px; margin:0 auto 0 auto; background-size:cover; background-position:center center;}
.post-291 > .entry-content td.foto{ display:none;}
.contenido{ /*height:245px;*/ padding:10px; margin:0;}
.contenido h1{ }
.slideshow, .slideshow img{ width:100%;}
footer{ width:100%; display:block; float:left; margin:0 auto 1em auto;}
.col_center{ height:auto;}
}
@media screen and (max-width: 480px) {
	body {
		background-color: #fff;
	}	
	.logo{ width:200px; max-width:200px; height:40px; float:left;}
	.logo a{background: url(http://www.arenasdelmar.com/images/logo_arenas_web.png) no-repeat 0 -15px scroll; background-size:cover;}
	/*.contact, .reservations, .social{ display:none !important;}*/
	.main-navigation{font-size:14px;}
	.main-navigation li a, .main-navigation li{ font-size:14px;}
	.main-navigation li { width:148px; width:-webkit-calc(50% - 3px); width:-moz-calc(50% - 3px); width:calc(50% - 3px); border:#30574b solid 1px; margin: 0 -2px 1px 0 !important}
.entry-content h1, .comment-content h1{ font-size: 1.2rem;}
h2{ font-size:12px;}
div#primary .slider{ width:100%;}
div#secondary .slider{ width:100%;}
	ul.slideshow { width:100%;}	
	ul.slideshow li img{ width:100%;}
img.size-full, img.size-large, img.header-image, img.wp-post-image{  max-width:100%;}
.main{ margin-top:5px; height:auto; min-height: inherit; text-align:justify; text-justify:distribute; width:100%; max-width:100%;}
	.col_left, .col_right, .col_center{ display: block; margin-bottom:1rem;}
	.col_left, .col_right{width:49%;}
	.col_left{ height:100%;	float:left; clear:none; margin-top:0px;}
		.map{ width:244px; width:calc(100% - 2px); height:246px; background: #e1f4f8 url(http://www.arenasdelmar.com/images/map.jpg) no-repeat top right scroll; background-size:100%; border:#558261 solid 1px;}
		.map a{ color:#2d5348 !important; font-size:13px; padding-top:137px; padding-bottom:93px; padding-left:20px; display:block;}
		.col_right div{ margin-bottom:3px !important; padding:3px !important; /margin-bottom:3px !important; height:53px !important; /height:52px !important;}
		.col_right div:last-child{ margin-bottom: 0 !important;}
		.col_right a, .col_right a:visited{ color:#f8f6ed !important; font-weight:bold; padding:3px !important; display:block !important; text-align:center;}
		.col_right a:hover{ color:#f7fcfa !important; }
		.reserve a{font-size:28px !important;line-height:46px !important;}
		.info{ height:45px; padding:3px 9px !important; font-size:9px; line-height:13px;}		
		.honeymoon{ line-height:43px !important;}
		.honeymoon a{font-size:20px !important; line-height:46px !important;}
		.family a{ font-size:39px;line-height:46px}
		.culinary_events a{ font-size:18px; line-height:43px;}
		/*.contenido{ height:330px;}*/
		.contenido h1{ font-size:1.2rem;}
		.nav_left{ text-align:center !important; border-bottom:#658491 solid 1px; border-right:none; width:95%; padding:1rem 0; float: none; margin-bottom:1rem;}
		.nav_left a, .nav_left a:visited{ font-size:15px; color:#2c5247; line-height:18px !important; padding:0 1em; margin:0; display: inline-block; text-align:center;}
		.nav_left a.multiple_lines{line-height:18px;}
	.iner{display:block; padding-left:15px; width:auto; height:75px;}
		
		.map2{ width:234px; height:246px !important; background: #e1f4f8 url(http://www.arenasdelmar.com/images/map.jpg) no-repeat top right scroll; border:#558261 solid 1px; padding:0;}
		.map2 a{ color:#2d5348 !important; font-size:13px; padding-top:202px; padding-bottom:28px; padding-left:20px; display:block; text-align:left; font-weight:normal;}
		.contenido a, .contenido a:visited{ color:#4b6068; color:#4f8428;}
		.contenido a:hover{ color:#4f8428; text-decoration:underline;}
		.contenido img{ display:block; float:left; margin:0 20px auto 0; }
		.fix{ min-height:173px;}
		.boton-css{ width:auto; padding:3px; background-color:#2f8064; height: auto; margin:1em auto;}
		.boton-css a:link, .boton-css a:visited, .boton-css a:active{border:#1a5843 solid 1px; color:#f8f6ed; font-size:16px; font-weight:bold; text-align:center; padding:5px; display:block; text-align:center;}	
		.boton-css a:hover{ color:#caebf4; text-decoration:none; }	
		input[type="submit"]{ width:150px; height:40px; line-height:24px; display:block; margin-top:30px; -webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; border-radius: 12px; background:#109082;
			 line-height:24px;color:white; text-align:center; font-size:13px; text-decoration:none; font-weight:bold;}
		input[type="submit"]:hover{color:#8eb5b9;}
footer{text-align:center; max-width:99%;}
	.menu_foot{ margin-top:0px; padding-bottom:11px;}
	.menu_foot a, .menu_foot a:visited{color:#2e5348; font-size:10px; text-decoration:none; text-align:center;}
	.menu_foot a:hover{ color:#0a2b22;}
	footer .line{width:100%;}		
	.link_cayuga{display:block; width:100%; margin:0 auto; text-align:center; height:100px; line-height: inherit; background:url(http://www.arenasdelmar.com/images/logos/logo_cayuga_150.png) no-repeat top center scroll;}
	.link_cayuga a{color:#2d5348; font-size:12px; width:100%; height:100%; padding-top:80px; display:block; padding-left:0;}
.slideshow{  position: relative;  list-style: none;  overflow: hidden;  width: 100%;  padding: 0;  margin: 0;  }
.slideshow li {  -webkit-backface-visibility: hidden;  position: absolute;  display: none;  width: 100%;  left: 0;  top: 0;  }
.slideshow li:first-child {  position: relative;  display: block;  float: left;  }
.slideshow img {  display: block;  height: auto;  float: left;  width: 100%;  border: 0;  }
.slideshow {  margin: 0 auto;  }
.slider {  position: relative;  float: left;  width: 100%;  }
.botoncitoSutil{ width: 125px; height:24px; line-height:24px; padding:0 1em; display:block; margin:1em auto;  background:#A4C3C6;-webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; border-radius: 12px;}
.botoncitoSutil a{color:white !important; text-decoration:none !important;}
.botoncitoSutil:hover{background:#109082;}
.titulo_gce {color:#2c5247;font-weight:bold;font-style:italic;text-transform:uppercase;font-size:13px;display:block;}
.subtitulo_gce {color:#2c5247;font-weight:bold;font-style:italic;text-transform:uppercase;font-size:11px;display:block;}
.gal{ height:auto; min-height:156px; display:block; width:470px; margin-left:2em; margin-bottom:1em; clear: right;}
.gal.birds{min-height:2808px;}
.gal.seis_filas{min-height:936px;}
.gal.cinco_filas{min-height:780px;}
.gal.cuatro_filas{min-height:624px;}
.gal.tres_filas{min-height:468px;}
.gal.dos_filas{min-height:312px;}
.gal.una_fila{min-height:156px;}
.gal img{ margin:0 1px 1px 0 !important; float:left !important;}
.gal img:last-child{ clear:right;}
#videos iframe{width:48%; height:160px; display:block; border:0; margin:0 1%; float:left;}
#videos .description{width:48%; height:auto; display:block; float:left; margin:1em 1%; font-size:11px; line-height:12px; text-align:center;}
#videos .solo{ margin:1em 26% !important;}
.link_reserv{ margin-top:-24px !important;}

.videoRooms{width:100%; height:166px; margin:0 auto 0 auto; background-size:cover; background-position:center bottom;}
.videoRooms a{ display:block; width:100%; height:100%; font-size:15px; line-height:15px; color:#f8f6ed; padding:131px 0 0 0 !important; text-shadow: 0 0 2px #000;}
.videoRooms a span{ display:block; width:100%; padding:10px 0; background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC42NSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.65)), color-stop(100%,rgba(0,0,0,0.65)));background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: -o-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: -ms-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);}
	.gal{ max-width:100%; overflow:hidden; margin-left:0;}
.gal img{ margin:0 1px 1px 0 !important; float:left !important; width:33%; width:-webkit-calc(33.33% - 1px); width:-moz-calc(33.33% - 1px); width:calc(33.33% - 1px);}
.col_center{ height:auto;}
}
@media screen and (max-width: 384px) {
	body {
		background-color: #fff;
	}
.page-template-default .entry-content img.alignleft{ width:100% !important;}
.entry-content iframe{ width:100% !important; margin:1em 0;}
.videoRooms{width:100%; height:166px; margin:0 auto 0 auto; background-size:cover; background-position:center bottom;}
.videoRooms a{ display:block; width:100%; height:100%; font-size:15px; line-height:15px; color:#f8f6ed; padding:115px 0 0 0 !important; text-shadow: 0 0 2px #000;}
.videoRooms a span{ display:block; width:100%; padding:10px 0; background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC42NSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.65)), color-stop(100%,rgba(0,0,0,0.65)));background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: -o-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: -ms-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 100%);}
.post-225 ol{ margin-left:1em !important;}
/*.contenido{ height:325px;}*/
.col_center{ height:auto;}
}

@media screen and (max-width: 320px) {
	body {
		background-color: #fff;
	}
.entry-content h1, .comment-content h1{ font-size: 1rem;}
.contenido{ /*height:550px !important;*/ margin:0 0 0 0;}
.col_center{ height:auto;}
.col_right, .col_left{ width:100%; margin:0 auto !important;}
.map, .reserve, .honeymoon, .family, .culinary_events{ width:100%; height:40px; line-height:40px; border:none !important; margin-bottom:2px;}
.map a, .reserve a, .honeymoon a, .family a, .culinary_events a{ width:100%; height:100%; line-height:40px; border:none !important; margin:0 !important; padding:0 !important;}
.map{ background: #e1f4f8;}
.map a{ color:#2d5348; font-size:20px; padding-top:0; padding-bottom:0; padding-left:0;display:block; width:100%; height:100%; text-align:center; font-weight:600;}
.col_right div{ width:calc(100% - 2px); margin-top:0; margin-bottom:2px; padding:0 !important; /margin-bottom:2px !important; height:40px !important; /height:40px !important;}
.reserve a{font-size:28px !important;line-height:28px}
.col_right div.info{ display:block; height:60px !important; padding:0 0 0 0 !important; line-height:20px !important; font-size:11px; border:none;}
.info a{ height: auto !important; padding:0 0 0 0 !important; display:inline !important; border:none;}	
.honeymoon{ line-height:40px !important;}
.honeymoon a{font-size:20px !important; line-height:40px !important;}
.family a{ font-size:20px;line-height:40px}
.culinary_events a{ font-size:20px; line-height:40px;}
.awards2{ display:none !important;}
.menu_foot{ display:none !important;}
.entry-content ol li{ margin-left:1em !important;}
.entry-content ul{ margin-left:0 !important;}
.tabla_rates{ font-size:11px;}
body{ width:300px !important; margin:0 auto !important; padding:0 !important;}
}

@media screen and (max-width: 240px) {	
	body {
		background-color: #fff;
	}
.col_center{ height:auto;}
	.logo{ width:150px; max-width:150px; height:35px; float:left;}
	.logo a{background: url(http://www.arenasdelmar.com/images/logo_arenas_web.png) no-repeat 0 -10px scroll; background-size:cover;}
	.main-navigation, .main-navigation li a, .main-navigation li{ font-size:12px;}
	.main-navigation li { width:148px; width:-webkit-calc(50% - 3px); width:-moz-calc(50% - 3px); width:calc(50% - 3px); border:#30574b solid 1px; margin: 0 -2px 1px 0 !important;}
	.link_cayuga{display:block; width:100%; margin:0 auto; text-align:center; height:100px; line-height: inherit; background:url(http://www.arenasdelmar.com/images/logos/logo_cayuga_150.png) no-repeat top center scroll; background-size:100px 50px;}
	.link_cayuga a{color:#2d5348; font-size:10px; width:100%; height:100%; padding-top:60px; display:block; padding-left:0;}
.contenido{ /*height:480px;*/font-size:11px; line-height:14px;}
}

.resreq table td {border:none;padding-top: 5px;
  padding-bottom: 5px;}

.resreq .wpcf7-number {width:40px;}

.resreq .wpcf7-select, .resreq .wpcf7-textarea {width:95%;}

.addthis_button_instagram_follow {
    background: rgba(0, 0, 0, 0) url("http://www.laparios.com/wp-content/uploads/2015/06/insta.png") no-repeat scroll 0 0 !important;
}