/*
Theme Name: twentytwelve-child-2015
Theme URI: http://www.someproductapparel.com
Description:
Author: Tyler Mounteney
Version: 1.0.0
Template: twentytwelve
Tags:

*/

/* =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, 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;
	vertical-align: baseline;
}
body {
	line-height: 18px;
	background-color: #dddddd;
}
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;
}

h1 {
	font-family:'estilo_regular';
}


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],
li.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: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	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: none;
}
li.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 */
	border-radius: 3px;
	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: 16px;
	font-family: Helvetica, Arial, sans-serif;
	color: #444;
}


a:hover {
	color: #0f3647;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:hover,
.main-navigation .assistive-text:active,
.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 24px;
	padding: 0 1.714285714rem;
	background-color: transparent;
}
.site-content {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	padding: 24px 0;
	padding: 1.714285714rem 0;
	background: transparent;
}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.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;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover {
	color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-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 #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 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 {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	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 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 {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter {
	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 {
	border-bottom: 4px double #ededed;
	margin-bottom: 72px;
	margin-bottom: 5.142857143rem;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

footer .site-info {
	display: none;
}

.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: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.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;
}


/* =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 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 li.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;
}
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 {
	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) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		max-width: 960px;
		max-width: 68.571428571rem;
		overflow: hidden;
	}
	.site-content {
		float: left;
		width: 65.104166667%;
	}
	body.template-front-page .site-content,
	body.single-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 {
		display: inline-block !important;
		text-align: center;
		width: 100%;
		font-family:'estilo_regular'!important;
		letter-spacing:1px;

	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline;
		text-decoration: none;
		font-size:18px!important;
		letter-spacing: 1px!important;
		color: rgb(127, 127, 127);
	}
	.main-navigation li a {
		border-bottom: 0;
		color: #6a6a6a;
		line-height: 3.692307692;
		text-transform: uppercase;
		white-space: nowrap;
	}
	.main-navigation li a:hover {
		color: #000;
	}
	.main-navigation li {
		margin: 0 0 0 0;
		position: relative;
	}
	.main-navigation li ul {
		display: none;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
	}
	.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;
	}
	.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: #c205fd!important;
	}
	.menu-toggle {
		display: none;
	}

	#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;
	}
}




/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 13pt;
	}
	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 {
		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;
	}
}

/* General Blueprint Style */
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
@font-face {
	font-family: 'fontawesome';
	src:url('../fonts/fontawesome.eot');
	src:url('../fonts/fontawesome.eot?#iefix') format('embedded-opentype'),
		url('../fonts/fontawesome.svg#fontawesome') format('svg'),
		url('../fonts/fontawesome.woff') format('woff'),
		url('../fonts/fontawesome.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
body, html { font-size: 100%; padding: 0; margin: 0;}

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }

body {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    color: #fff;
}

a {
	color: #f0f0f0;
	text-decoration: none;
}

a:hover {
	color: #000;
}

.container > header {
	padding: 2.875em 1.875em 1.875em;
	position: fixed;
	z-index: 1000;
	width: 60%;
	left: 20%;
}

.container > header h1 {
	font-size: 2.125em;
	line-height: 1.3;
	margin: 0;
	float: left;
	font-weight: 400;
}

.container > header span {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5em;
	padding: 0 0 0.6em 0.1em;
}

.container > header nav {
	float: right;
}

.container > header nav a {
	display: block;
	float: left;
	position: relative;
	width: 2.5em;
	height: 2.5em;
	background: #fff;
	border-radius: 50%;
	color: transparent;
	margin: 0 0.1em;
	border: 4px solid #fff;
	text-indent: -8000px;
}

.container > header nav a:after {
	content: attr(data-info);
	color: #fff;
	position: absolute;
	width: 600%;
	top: 120%;
	text-align: right;
	right: 0;
	opacity: 0;
	pointer-events: none;
}

.container > header nav a:hover:after {
	opacity: 1;
}

.container > header nav a:hover {
	background: #47a3da;
}

.icon-drop:before,
.icon-arrow-left:before {
	font-family: 'fontawesome';
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 2;
	text-align: center;
	color: #47a3da;
	-webkit-font-smoothing: antialiased;
	text-indent: 8000px;
	padding-left: 8px;
}

.container > header nav a:hover:before {
	color: #fff;
}

.icon-drop:before {
	content: "\e000";
}

.icon-arrow-left:before {
	content: "\f060";
}

@media screen and (max-device-height: 481px) {
[if SafMob].productbackground {height:322px !important;}
}
@media screen and (max-device-height: 570px) {
[if SafMob].productbackground {height:510px !important;}
}

/*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FONT INCLUDES
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/

@font-face {
	font-family: 'avenir';
	src:url('/wp-content/themes/twentytwelve-child-2015/fonts/Avenir-Light.eot');
	src:url('/wp-content/themes/twentytwelve-child-2015/fonts/Avenir-Light.eot?#iefix') format('embedded-opentype'),
	url('/wp-content/themes/twentytwelve-child-2015/fonts/Avenir-Light.svg#fontawesome') format('svg'),
	url('/wp-content/themes/twentytwelve-child-2015/fonts/Avenir-Light.woff') format('woff'),
	url('/wp-content/themes/twentytwelve-child-2015/fonts/Avenir-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'estilo_bold';
	src: url('/wp-content/themes/twentytwelve-child-2015/fonts/EstiloPro-Bold.eot');
	src: local('☺'), url('/wp-content/themes/twentytwelve-child-2015/fonts/EstiloPro-Bold.woff') format('woff'), url('/wp-content/themes/twentytwelve-child-2015/fonts/EstiloPro-Bold.ttf') format('truetype'), url('/wp-content/themes/twentytwelve-child-2015/fonts/EstiloPro-Bold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'estilo_regular';
	src: url('/wp-content/themes/twentytwelve-child-2015/fonts/Estilo.eot');
	src: local('☺'), url('/wp-content/themes/twentytwelve-child-2015/fonts/Estilo.woff') format('woff'), url('/wp-content/themes/twentytwelve-child-2015/fonts/Estilo.ttf') format('truetype'), url('/wp-content/themes/twentytwelve-child-2015/fonts/Estilo.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GENERAL STYLES
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/

div.newwhitelogo {background-image:url('/wp-content/themes/twentytwelve-child-2015/images/splogo_white.png');background-size:100px 84px;width:100px;height:84px;position:absolute;top:33%;left:50%;margin-left:-50px;margin-top:-42px;}


li.leggings img {width:80% !Important;margin: 0 10% !important;}
textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus {
outline:0px !important;
-webkit-appearance:none;
		}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal !important;
}
body, html { font-size: 16px; padding: 0; margin: 0;font-family: 'avenir', Calibri, Arial, sans-serif;color: #000;width:100%;}

a {color: #f0f0f0;text-decoration: none;}

/*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NAVIGATION STYLES
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/

.menuLeft, .storemobilemenuLeft {font-family:'estilo_regular';color:#7f7f7f;line-height:50px;margin-left:80px;letter-spacing:1px;font-size:18px;float:left;}
.menuLeft a, .storemobilemenuLeft a {color:#7f7f7f;text-decoration:none;}
.menuLeft a:hover, .storemobilemenuLeft a:hover {color:#7f7f7f;text-decoration:underline !important;}
.menuRight {font-family:'avenir';color:#7f7f7f;line-height:50px;margin-right:80px;margin-top:-5px;font-size:14px;float:right;}

.storemenuLeft {font-family:'estilo_regular';color:#7f7f7f;line-height:50px;margin-left:80px;letter-spacing:1px;font-size:18px;float:left;}
.storemenuLeft a, .staticmobilemenu a, .staticmobilemenulookbook a{color:#7f7f7f;text-decoration:none;}
.storemenuLeft a:hover, .staticmobilemenu a:hover, .staticmobilemenulookbook a:hover {color:#7f7f7f;text-decoration:underline !important;}

.storemobilemenuLeft {display:none;}

#topnavmobile {display:none;width:100%;position:fixed;top:0;left:0;height:45px;background-color:#000;z-index:2000;}
#topnav {width:100%;position:fixed;top:0;left:0;height:45px;background-color:#000;z-index:2000;}

#topnav li {list-style:none;display:inline;}

#topnavstore {width:100%;position:fixed;top:0;left:0;height:45px;background-color:#000;z-index:2000;}
#topnavstore li {list-style:none;display:inline;}

#toplogo {position:absolute;top:75px;left:75px;z-index:1000;}
.menuLeft {margin-left:0;width:100%;text-align:center;float:left;}

/*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CONTACT FORM STYLES
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
input {
	border-radius: 0;
}

form.wpcf7-form textarea {
	height:100px;
	width:100%;
}

form.wpcf7-form input, form.wpcf7-form textarea {
	max-width:100%;
	border: 0px solid #000;
	background-color:#ebebeb;
	color: #000;
	font-size: inherit;
	margin: 0;
	margin-top: 6px;
	overflow: hidden;
	padding:8px;
	text-overflow: ellipsis;
	white-space: nowrap;
	display:inline;
	margin-bottom:10px;
	box-sizing: border-box;
	}

	form.wpcf7-form input[type="text"], form.wpcf7-form input[type="email"] {width:48%;float:left; 	}
	form.wpcf7-form input[type="text"] {margin-right:2%; }
	form.wpcf7-form input[type="email"] {margin-left:2%;margin-top:-12px }
	form.wpcf7-form input[type="name"] {
		margin-top: 25px;
	}

form.wpcf7-form input[type="submit"] {
	-webkit-border-radius: 0px;
		-webkit-appearance: none;
	-webkit-border-radius: 0px;
		-webkit-box-shadow: none;
	width:100%;
	max-width:100px;
		-webkit-user-select: none;
		-webkit-linear-gradient:none;
		background-color:#000;
		border: 4px solid #000;
		color: #fff;
		font-size: 18px !important;
		margin: 0;
	overflow: hidden;
	padding:8px;
	font-family:'estilo_regular';
	display:inline;
	}

/*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATIC HOME/CONTACT PAGE STYLES
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/

div.blurbText a, div.blurbTextcontact a, div.staticmobilecontent a {color:#bebebe;}
.homepageText a {color:#000;text-decoration:underline;}
.homepageBorder {box-sizing: border-box;width: 100%;height:100%;padding:80px;padding-top:275px;}
.homepageContainer {width:100%;height:100%;/*border:25px solid white;*/line-height:100%;}
.homepageText {position:relative;width:500px;left:50%;margin-left:-250px;text-align:center;font-size:14px;color:#000;background-color:#fff;padding:25px;}
.salesText {position:relative;width:500px;left:50%;margin-left:-250px;text-align:center;font-size:14px;color:#000;background-color:#fff;padding:25px;}
.salesText a {color:#000;text-decoration:underline;}
.homepageText h1, .salesText h1 {font-family:'estilo_regular';font-size:60px;padding:25px;margin:0;}
.blurbText{text-align:center;line-height:23px;position:absolute;left:0;color:#000;background-color:#fff;width:60%;margin:0 20%;font-size:14px;letter-spacing:normal;font-family:avenir;padding:25px;top:35%;}
.blurbTextcontact{text-align:center;line-height:23px;position:absolute;left:0;color:#000;background-color:#fff;width:30%;margin:0 35%;font-size:14px;letter-spacing:normal;font-family:avenir;padding:25px;top:35%;}
#spalogo {font-family:'estilo_regular';padding-top: 25px;font-size:36px;color:#fff;text-align:center;width:100%;position:absolute;top:75px;left:0;background-color:#000;z-index:2000;}
#hometoplogo {position:fixed;top:75px;left:50%;margin-left:-87px;z-index:1000;}
#homepageBanner {width:100%;height:250px;background-position:center;background-size:cover;background-color:#bebebe;}
div.staticmobilebanner, div.staticmobilecontent, div.staticmobilemenu, div.staticmobilemenulookbook {display:none;}

.blurbTextinlineblock {
		left:50%;
		z-index:10000000;
		top:100%;
		margin-left:-225px;
		margin-bottom: 60px!important;
		position:absolute;
		text-align:center;
		line-height:12px;
		color:#000;
		background-color:#fff;
		width:450px;
		font-size:12px!important;
		letter-spacing:normal;
		font-family:avenir;
		padding:25px;
		display:inline-block;
	}
.blurbTextcontactinlineblock {
		left:50%;
		z-index:10000000;
		top:100%;
		margin-left:-225px;
		margin-bottom: 60px!important;
		position:absolute;
		text-align:center;
		line-height:18px;
		color:#000;
		background-color:#fff;
		width:450px;
		font-size:14px;
		letter-spacing:normal;
		font-family:avenir;
		padding:25px;
		display:inline-block;}

.blurbTextcontactinlineblock a, .blurbTextinlineblock a {color:#bebebe;}
/*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
BLOG PAGE STYLES
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


*/
div.entry-content p img {width:100% !important;height:auto !important;}

article#post-921 h1 {display:none !important;}
#blogtitledivider {width:20%;margin-left:40%;margin-right:40%;height:7px;background-color:#000;padding:0;}
.entry-title {font-family:'estilo_regular';font-size:60px!important;line-height:50px;color:#000;text-align:center;text-transform:uppercase;}
.entry-title a {color:#000;}
.nav-next {margin-bottom:50px;}
.nav-next, .nav-previous, h1.archive-title {color:#fff;text-shadow:1px 1px rgba(0,0,0,0.8);text-align:center;}
.nav-next, .nav-previous, h1.archive-title span {text-transform:lowercase;display:block;font-style:italic;font-size:32px;text-decoration:underline;font-family:'estilo_regular';margin-top:20px;}
h1.archive-title span a {color:#fff;}
.blogBG {background-attachment:fixed;background-size:cover;}
footer.entry-meta {font-size:14px !important;padding:0px 0px;}
footer.entry-meta span.metaintro {}
footer.entry-meta a {color:#000;text-decoration:underline;}
img.spblogimage{width:100%; height:auto;float:left;padding-right:25px;padding-bottom:25px}
img.aligncenter {width:100%; height:auto;padding-bottom:25px;}
div.sociable {background-color:#000;height:16px;display:none;}
div.sociable img {padding:0px 3px;}
.blogContainer {left:50%;margin-left:-330px;top:270px;width:660px;position:absolute;}
.blogSharebox {position:absolute;bottom:172px;right:-50px;}
.navblogNext {margin-top:50px;display:inline;width:50%;float:left;text-align:right;}
.navblogBack {margin-top:50px;display:inline;width:50%;float:left;}

#blogtoplogo {position:absolute;top:75px;left:50%;margin-left:-87px;z-index:1000;}

div.blogentry {position:relative;background-color:#fff;margin-bottom:25px;padding:75px;}
.blogmobilebg {display:none;}

.lookbookShare {background-color:#000;padding:20px;position:absolute;top:-25px;right:-25px;color:#fff;background-image:url('/wp-content/themes/twentytwelve-child-2015/images/share.jpg');background-repeat:no-repeat;background-position:20px center;}
div.trackable_sharing {background-image:url('/wp-content/themes/twentytwelve-child-2015/images/share.jpg');background-repeat:no-repeat;background-position:20px center;position:absolute;bottom:0;right:0;padding:20px;background-color:#000;width:250px;float:bottom;text-align:right;}
.lookbookSharemobile {display:none;}
/*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SHOP PAGE STYLES
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
div#productdescription a {color:#bebebe;text-decoration:underline;}

.shoppagePadding a {color:#bebebe;}
form#cartform strong {color:#000;font-family:'estilo_bold';display:block;}
div#cart td.price {font-size:25px;font-family:'estilo_regular';}
form#cartform table input {width:50px;}
div#cart input {width:auto;background-color:#fff !important;}
input#first_name, input#last_name, input#email, input#password {margin-bottom:15px !important;}
input#first_name, input#last_name, input#email, input#password, select#product-select, form#cartform input,
input#contact_name, input#contact_email, input#contact_storename, input#contact_storecountry, input#contact_storewebsite, textarea#contact_comments,
input#customer_email, input#customer_password {
	-webkit-appearance: button;
	-webkit-border-radius: 0px;
	-webkit-box-shadow: none;
	-webkit-padding-start: 2px;
	-webkit-linear-gradient(#fff, #fff 40%, #fff);
	background-position: center right;
	background-repeat: no-repeat;
	border: 4px solid #000;
	color: #000;
	font-size: inherit;
	margin: 0;
	overflow: hidden;
	padding:8px;
	width:200px;
	text-overflow: ellipsis;
	white-space: nowrap;
	display:inline;
	}
	select#product-select {
		padding-right:30px;
		-webkit-user-select: none;
		background-color:#fff;
		color:#000;
		font-family:avenir;
		font-size:12px;
		background-image: url('/wp-content/themes/twentytwelve-child-2015/images/buybox_dropdown_arrow_grey.jpg');
	}
form.wpcf7-form input[type="submit"],
form#customer_login input[type="submit"],
form#create_customer input[type="submit"],
input#add-to-cart.btn.addtocart {
	-webkit-border-radius: 0px;
		-webkit-appearance: none;
	-webkit-border-radius: 0px;
		-webkit-box-shadow: none;
	width:200px;
		-webkit-user-select: none;
		-webkit-linear-gradient:none;
		background-color:#000;
		border: 4px solid #000;
	color: #fff;
	font-size: 32px;
	margin: 0;
	overflow: hidden;
	padding:8px;
	font-family:'estilo_regular';
	display:inline;
	}
div#collectiondescription a {color:#bebebe; text-decoration:underline;}
div#collectiondescription h1 {font-family:'estilo_regular';}
div#recover-password.span7, div.md-content {color:#7f7f7f;text-decoration:none;font-size:12px;}
div.md-content input {width:100%;margin-bottom:20px;padding:10px;font-size:14px;color:#bebebe;border: 4px solid #000;}
div.md-content input[type='submit'] {width:100px;margin-top:20px;color:#fff;background-color:#000;}
div.md-content a, iv#recover-password.span7 a {color:#7f7f7f;text-decoration:underline;}
#modaldivider {width:20%;margin-right:80%;height:7px;background-color:#000;padding:0;}
#cartdivider {width:80%;margin-left:20%;height:7px;background-color:#000;padding:0;margin-top:25px;margin-bottom:25px;}
div.md-content div h1 {font-family:'estilo_regular'; font-size:48px; color:#000;}

.shoppageContainer {width:100%;height:250px;background-position:center;background-size:cover;}
.shoppageTitle {position:absolute;top:100px;right:0px;;margin-right:80px;font-family:'estilo_bold';color:#fff;font-size:60px;}
.shoppageBody {display:none;width:100%;background-color:#fff;position:relative;}
.shoppageBodyhome {width:100%;background-color:#fff;position:relative;}
.shoppagePadding {margin-left:80px;margin-right:80px;margin-top:50px;}

#storetoplogo {position:absolute;top:75px;left:75px;z-index:1000;}

mobileproductinfo {position:relative;right:0px;top:80px;background-color:#fff;color:#000;padding:25px;}

div.productinfo {position:absolute;right:0px;top:80px;background-color:#fff;color:#000;padding:25px;}
div.productinfomobile {display:none;}
div.buybox {text-align:center;font-family:'estilo_regular';position:absolute;left:75px;bottom:-34px;background-color:#000;color:#fff;padding:10px;padding-bottom:5px;}
div.buybox h1 {font-size:40px;padding:0;margin:0;font-weight:100;display:inline;}
div.buybox h2 {font-size:20px;padding:0;margin:0;font-weight:300;display:inline;margin-bottom:20px;}

#collectionbox {width:27%;position:absolute;left:0;top:200px;background-color:#fff;padding:25px 25px 25px 75px;}
#collectiontitledivider {width:75px;height:7px;background-color:#000;padding:0;margin:0;margin-left:0px;}
#collectiondescription {color:#000;font-size:12px;font-weight:100;padding:0;margin:0;margin-left:0px;margin-top:50px;padding-bottom:25px;}
#producttitledivider {width:150px;height:7px;background-color:#000;padding:0;margin:0;margin-left:50px;margin-top:34px;}
#productdescription {width:350px;background-color:#fff;color:#000;font-size:14px;font-weight:100;padding:0;margin:0;margin-left:50px;margin-top:50px;padding-bottom:60px;}

h1.producttitle, h1.collectiontitle {font-family:'estilo_regular';color:#000;font-size:45px;padding:0;margin:0;margin-top:30px;}
img.productinfo {padding:25px;}
table.carttable {width:80%;margin-left:20%;}
.cartinstructions {width:80%;margin-left:20%;}
.removebutton {width:34px;height:auto;}

#social {width: 100% !important;margin-top:20px;}
.google-plus, .tweet-btn, .pinterest, .facebook-like {display:inline !important;}


/*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LOOKBOOK STYLES
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/

div.lookbookcaption h2 {font-family:'estilo_regular';font-size:48px;margin:25px 0px;padding:0;}
.lookbookContainer {width:100%;height:100%;border:25px solid white;line-height:100%;}
.lookbookBorder {box-sizing:border-box;width: 100%;height:100%;padding:50px;text-align:center;}
.lookbookText, .lookbookTextlong {text-shadow:1px 1px 1px rgba(0,0,0,0.7);margin:0;padding:0;font-family:'estilo_bold';position:absolute;top:50%;/*display:inline-block;width:1000px;margin-left:-500px;*/width:100%;margin-left:-75px;text-align:center;font-size:150px;letter-spacing:-8px;margin-top:-7px;color:#fff;}
.lookbookTextlong {line-height:110px;margin-top:-96px;}
div.lookbookcaption {padding:25px;position:absolute;right:70px;bottom:40px;height:auto;background-color:#fff;color:#000;letter-spacing:-1px;font-size:14px;}
div.sharebox {position:absolute;right:40px;bottom:180px;}
#lookbooktitledivider {width:40px;height:7px;background-color:#000;padding:0;margin:0;margin-left:0px;}

div.lookbookcaption a {color:#bebebe;text-decoration:underline;}
/*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CAN'T REMEMBER WHERE STYLES
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }
.hideBanner {display:none;}
.mobilelinks {display:none;position:absolute;padding:25px;bottom:0;right:0;z-index:2000;}
h2.title {display:none;font-family:'estilo_regular';text-transform:uppercase;font-size:48px;}
.mobileBackground {width:100%;height:100%;background-size:cover;}
.main{top:0px !important;position:fixed !important;z-index:1000000000;}
.productContainer {width:100%;height:100%;border:5px solid white;line-height:100%;}
.productBorder {box-sizing: border-box;width: 100%;height:100%;padding:50px;}
#cbp-spmenu-s3 {z-index:1000000000000000000000;}

/*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CODROP STYLES
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/

 .container > header {padding: 2.875em 1.875em 1.875em;position: fixed;z-index: 1000;width: 60%;left: 20%;}
 .container > header h1 {font-size: 2.125em;line-height: 1.3;margin: 0;float: left;font-weight: 400;}
 .container > header span {display: block;font-weight: 700;text-transform: uppercase;letter-spacing: 0.5em;padding: 0 0 0.6em 0.1em;}
 .container > header nav {float: right;}
 .container > header nav a {display: block;float: left;position: relative;width: 2.5em;height: 2.5em;background: #fff;border-radius: 50%;color: transparent;margin: 0 0.1em;border: 4px solid #fff;text-indent: -8000px;}
 .container > header nav a:after {content: attr(data-info);color: #fff;position: absolute;width: 600%;top: 120%;text-align: right;right: 0;opacity: 0;pointer-events: none;}
 .container > header nav a:hover:after {opacity: 1;}
 .container > header nav a:hover {background: #47a3da;}
 .icon-drop:before,
 .icon-arrow-left:before {font-family: 'fontawesome';position: absolute;top: 0;width: 100%;height: 100%;speak: none;font-style: normal;font-weight: normal;line-height: 2;text-align: center;color: #47a3da;-webkit-font-smoothing: antialiased;text-indent: 8000px;padding-left: 8px;}
 .container > header nav a:hover:before {color: #fff;}
 .icon-drop:before {content: "\e000";}
 .icon-arrow-left:before {content: "\f060";}
 .cbp-rfgrid {margin: 25px 0 0 0;padding: 0;list-style: none;position: relative;width: 70%;margin-left:30%;}
.cbp-rfgrid li {position: relative;float: left;overflow: hidden;width: 16.6666667%; /* Fallback */width: -webkit-calc(100% / 6);width: calc(100% / 6);padding: 0 0 25px 0;}
.cbp-rfgrid li a,
 .cbp-rfgrid li a img {display: block;width: 100%;cursor: pointer;}
.cbp-rfgrid li a img {max-width: 100%;}
/* Flexbox is used for centering the heading */
 .cbp-rfgrid li a div {
	 position: absolute;
	 left: 0px;
	 top: 0px;
	 right: 0px;
	 bottom: 25px;
	 /*background: rgba(0,0,0,0.2);*/
	 display: -webkit-flex;
	 display: -moz-flex;
	 display: -ms-flex;
	 display: flex;
	 -webkit-align-items: center;
	 -moz-align-items: center;
	 -ms-align-items: center;
	 align-items: center;
	 text-align: center;
	 opacity: 0;
 }

 .cbp-rfgrid li a:hover div {opacity: 1;}
 .cbp-rfgrid li a div h3 {width: 100%;color: #fff;font-family:'estilo_bold';text-transform: uppercase;font-size: 1.4em;padding: 0 10px;}


/*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
RESPONSIVE STYLES
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/


/* Example for media query: change number of items per row */
@media screen and (max-width: 1300px) {
	.cbp-rfgrid li {
			width: 20%; /* Fallback */
			width: -webkit-calc(100% / 5);
			width: calc(100% / 5);
	}
}

@media screen and (max-width: 1200px) {
	.cbp-rfgrid li {
			width: 25%; /* Fallback */
			width: -webkit-calc(100% / 4);
			width: calc(100% / 4);
	}
	h1.collectiontitle {font-size:32px;}
}

@media screen and (max-width: 960px) {
	.cbp-rfgrid li {
			width: 33.3333333%; /* Fallback */
			width: -webkit-calc(100% / 3);
			width: calc(100% / 3);
	}
	h1.collectiontitle {font-size:25px;}
}

@media screen and (max-width: 660px) {
	.cbp-rfgrid li {
			width: 33.3333333%; /* Fallback */
			width: -webkit-calc(100% / 3);
			width: calc(100% / 3);
	}
}

@media screen and (max-width: 400px) {
	.cbp-rfgrid li {
			width: 50%; /* Fallback */
			width: -webkit-calc(100% / 2);
			width: calc(100% / 2);
	}
}

@media screen and (max-width: 300px) {
	.cbp-rfgrid li {width: 100%;}
}


@media screen and (max-width: 1200px) {
.lookbookText, .lookbookTextlong {font-size:100px;/*width:700px;margin-left:-350px;*/}
.lookbookTextlong {line-height:80px;margin-top:-69px;}

}




@media screen and (max-width: 1000px) {

.blogContainer {left:50%;margin-left:-330px;top:250px;width:660px;position:absolute;}
#blogtoplogo {position:absolute;top:75px;left:50%;margin-left:-84px;z-index:1000;}
}

@media screen and (max-width: 945px) {

#productdescription {margin-top:25px;width:250px;font-size:12px;}
#producttitledivider {width:75px;}
h1.producttitle {font-size:32px;}
img.mockproducttitle {height:25px;}
div.buybox h1 {font-size:20px;padding:0;margin:0;font-weight:100;display:inline;}
.storemobilemenuLeft {display:inline;width:100%;text-align:center;margin-left:0;}
.menuRight {display:none;}
.storemenuLeft {display:none;}
}

@media screen and (max-width: 850px) {
.lookbookText, .lookbookTextlong {font-size:60px;letter-spacing:0;/*width:450px;margin-left:-225px;*/}
.lookbookTextlong {line-height:50px;margin-top:-44px;}
.lookbookContainer {border:20px solid white;}

}



@media screen and (max-width: 821px) {
div.shoppageBodyhome {display:block;}
section.homepageBackground  {display:none;}
.hideBanner {display:block;z-index:100000000000000;}
#hometoplogo {position:absolute;top:75px;left:50%;margin-left:-84px;z-index:1000;}
.blogSharebox {position:absolute;bottom:172px;right:0px;}
#topnavmobile {display:block;z-index:10000000000000000000;}
#topnav {display:none;}
#collectionbox {width:100% !important;position:relative !important;left:0 !important;top:60px !important;padding:25px 50px;}
.cbp-rfgrid {width: 100%;margin-left:0%;margin-top:60px;}
#storetoplogo {left:auto;right:50px;position:absolute;}
#toplogo {left:50%;right:auto;top:56px;margin-left:-36px;position:absolute;}
div.shoppageTitle {position:absolute;top:135px;margin-right:0;width:100%;text-align:center;font-size:48px;}
.storelogo {height:65px;}
#collectiontitledivider {width:75px;height:7px;background-color:#000;padding:0;margin:0;margin-left:0px;}
#collectiondescription {margin-top:25px;width:75%;}
table.carttable {width:100%;margin-left:0%;}
.cartinstructions {width:100%;margin-left:0%;}
#cartdivider {width:100%;margin-left:0%;}
.removebutton {width:20px;height:auto;}
div#cart td.price {font-size:18px;}
.shoppageBody {display:none;width:100%;background-color:#fff;position:relative;}
div.staticmobilemenulookbook {margin:0px 20px;color:#fff;display:block;font-size: 12px;line-height: 12px;padding:20px;padding-bottom:0px;text-align:center;font-family:'estilo_regular';color:#7f7f7f;font-size:14px;}
div.staticmobilemenu {top:110px;left:50%;width:500px;margin-left:-250px;position:absolute;color:#fff;display:block;font-size: 12px;line-height: 12px;padding:20px;padding-bottom:0px;text-align:center;font-family:'estilo_regular';color:#7f7f7f;font-size:14px;}
form.wpcf7-form input, form.wpcf7-form textarea {
	margin-top: 0;
}
}

@media screen and (max-width: 770px) {
div.productinfo {display:none;}
.mobilelinks {display:inline;}
.productbackground {background-position:-120px 0px !important;}
#producttitledivider {margin-left:0px;}
div.productinfomobile {display:inline;position:relative;left:0px;bottom:80px;background-color:#fff;color:#000;width:100%;}
#productdescription {margin-top:0px;font-size:12px;padding-bottom:0px;display:inline;}
	h1.producttitle {display:inline;}
	h1.entry-title {font-size:48px;line-height:48px;}
}


@media screen and (max-width: 775px) {

.blogContainer {left:0;margin-left:0;top:250px;width:100%;position:absolute;}
.navblogNext {margin-right:20%;width:30%;}
.navblogBack {margin-left:20%;width:30%;}

.productbackground {background-position:-250px 0px !important;}
.blurbText{width:60%;margin:0 20%;}
}

@media screen and (max-width: 770px) {
div.productinfo {display:none;}
.mobilelinks {display:inline;}
.productbackground {background-position:-120px 0px !important;}
#producttitledivider {margin-left:0px;}
div.productinfomobile {display:inline;position:relative;left:0px;bottom:80px;background-color:#fff;color:#000;width:100%;}
#productdescription {margin-top:0px;font-size:12px;padding-bottom:0px;display:inline;}
	h1.producttitle {display:inline;}
	h1.entry-title {font-size:48px;line-height:48px;}
}

/*@media screen and (max-width: 600px) {
div.productinfo {display:none;}
.mobilelinks {display:inline;}
.productbackground {background-position:-120px 0px !important;}
#producttitledivider {margin-left:0px;}
div.productinfomobile {display:inline;position:relative;left:0px;bottom:80px;background-color:#fff;color:#000;width:100%;}
#productdescription {margin-top:0px;font-size:12px;padding-bottom:0px;display:inline;}
	h1.producttitle {display:inline;}
	h1.entry-title {font-size:48px;line-height:48px;}
}*/

@media screen and (max-width: 550px) {
div.newwhitelogo {top:240px;margin-top:auto;}

.lookbookText, .lookbookTextlong {font-size:48px;letter-spacing:0;margin-left:-35px;}
.lookbookTextlong {}
.lookbookContainer {border:15px solid white;}
div.shoppageTitle {top:135px;font-size:32px;}
input#contact_name, input#contact_email, input#contact_storename, input#contact_storecountry, input#contact_storewebsite, textarea#contact_comments,
input#customer_email, input#customer_password{width:100%  !important;}
div.lookbookcaption {display:none;}
.lookbookBorder {padding:20px;}

body.staticpage {background-image:none !important;}
div.staticmobilebanner {display:block;width:100%;height:200px;}
div.staticmobileborder {width:100%;height:160px;border:10px solid transparent;}
div.staticmobilecontent {background-color:#fff;margin:20px;margin-top:0;display:block;font-size: 12px;line-height: 12px;padding:20px;}
div.staticmobilemenu {top:0;width:auto;margin:0px 20px;left:auto;position:relative;}
div.desktop, .blurbTextinlineblock, .blurbTextcontactinlineblock {
	left: 0;
	z-index:10000000;
	top:0;
	margin: 10%;
	margin-top: 0;
	position:absolute;
	text-align:center;
	line-height:12px;
	color:#000;
	background-color:#fff;
	width: 80%;
	max-width:450px;
	font-size:12px!important;
	letter-spacing:normal;
	font-family:avenir;
	padding:25px;
	display:inline-block;

}
#spalogo {top:103px;}
div.blogentry {padding:20px;font-size:14px;}
h1.entry-title {font-size:20px!important; line-height: 28px!important; padding-top: 2px;}
footer.entry-meta {padding:0px 20px 40px 0;}
body.blogBG { background-image:none !important;}
div.blogmobilebg {background-size:cover;display:block;position:fixed;height:100%;width:100%;color:#bebebe;top:0;left:0;}
div.blogContainer {padding:20px;}

.lookbookSharemobile {display:inline;background-color:#000;padding:10px;position:absolute;bottom:0px;right:0px;color:#fff;background-image:url('/wp-content/themes/twentytwelve-child-2015/images/share.jpg');background-repeat:no-repeat;background-position:20px center;}


}
.lookbooknewSharemobile {display:inline;background-color:#000;padding:10px;position:absolute;bottom:0px;right:0px;color:#fff;background-image:url('/wp-content/themes/twentytwelve-child-2015/images/share.jpg');background-repeat:no-repeat;background-position:20px center;}
@media screen and (max-width: 600px) {.hidesmallmobile {display:none;}	}
@media screen and (min-width: 600px) {.showsmallmobile {display:none;}}
@media screen and (max-width: 465px) {

 .lookbookText, .lookbookTextlong {font-size:32px;letter-spacing:0;}
 .lookbookTextlong {}
 .lookbookContainer {border:15px solid white;}
 .shoppagePadding {margin-left:15px;margin-right:15px;margin-top:25px;}
 #storetoplogo {left:50%;right:auto;top:56px;margin-left:-38px;position:absolute;}
	 #storetoplogo img {width:80px !important;height:auto !important;}
#collectionbox {line-height:13px;width:100% !important;position:relative !important;left:0 !important;top:60px !important;padding:25px; text-align:center;}
 #collectiontitledivider {width:20%;margin:0 40%;height:7px;margin-top:50px;}
 #collectiondescription {margin-top:15px;width:100%;}
 h1.collectiontitle {margin-top:15px;}

 #spalogo {font-family:'estilo_regular';font-size:28px;}
}

@media screen and (max-width: 400px) {
#spalogo {font-family:'estilo_regular';font-size:24px;}
}



/* revisions to media queries below September 15th, 2013 */
@media screen and (min-width: 551px) and (max-width: 811px) and (max-height: 525px) {div.blurbTextinlineblock {width:450px;margin-left:-225px;top:30%;} }
@media screen and (min-width: 813px) and (max-height: 525px) {div.blurbTextinlineblock {width:600px;margin-left:-300px;}  }

@media screen and (min-width: 551px) and (max-height: 734px) {div.blurbTextcontactinlineblock {top:70%;} 	form.wpcf7-form textarea {height:50px} }


@media screen and (max-height: 800px) {div#productdescription {font-size:12px;margin-top:25px;} #producttitledivider {margin-top:15px;} }

a {color: #717171;}



 .main-navigation {
	padding-top: 5px;
}

.main-navigation li a, .main-navigation li a:hover {
	color: #fff;
}

ul.nav-menu > li:after {
	content: " /";
	color: #fff;
}

ul.nav-menu > li:last-child:after {
	display: none;
}

/* Home / About / Contact */

		body.page-template-pageHOME, body.page-template-pageABOUT, body.page-template-pageCONTACT	{
		text-align:center;
		background: url(images/martinareem_someproductlookbookWeb_003.jpg);background-size:cover;
		background-size:cover;
		background-position: top;
		background-repeat: no-repeat;
		background-attachment: fixed;
	}

.site-header {
	margin-top: 48px;
}

.spa-logo {
	background-color:transparent !important;
}

@media screen and (max-width: 660px) {
	.page-template-pageHOME #spalogo {
		top:50px;
	}
}

/* Fixed top nav */

.page-template-pageFAQ .site-header, .page-template-pageGALLERY .site-header, .blog .site-header, .page-template-pageLOOKBOOK2014 .site-header{
	padding-top: 0;
	margin-top: 0;
	position: fixed;
	width: 100%;
	z-index: 2000;
}

.page-template-pageLOOKBOOK2014 .site-header{
	z-index: 2000;
}

.page-template-pageFAQ .site, .page-template-pageGALLERY .site, .blog .site, .page-template-pageLOOKBOOK2014 .site {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.page-template-pageFAQ .main-navigation, .page-template-pageLOOKBOOK2014 .main-navigation, .page-template-pageGALLERY .main-navigation, .blog .main-navigation {
	margin-top: 0;
		background-color: #000;
}


.page-template-pageFAQ .main-navigation li a, .page-template-pageGALLERY .main-navigation li a, .page-template-pageLOOKBOOK2014 .main-navigation li a, .blog .main-navigation li a {
	border-bottom: 0;
	color: rgb(127, 127, 127);
	line-height: 40px;
	text-transform: uppercase;
	white-space: nowrap;
}

/* GALLERY */

body.page-template-pageGALLERY	{
background: #fff;
}


.photo-grid	{
margin-top:225px;
}

/* FAQ */


body.page-template-pageFAQ	{
background-size:cover;
background-position: top;
background-repeat: no-repeat;
background-attachment: fixed;
font-size: 16px!important;
line-height: 28px;
}



.page-template-pageFAQ p {
	margin-top: 30px;
	margin-bottom: 30px;
}

h2 {
	padding-top: 60px;
	margin-bottom: 30px;
}

h4 {
	text-transform: uppercase;
}


.faq {
	padding: 45px;
	padding-top: 60px;
	margin-bottom: 90px;
	background-color: #fff;
}


input[type="submit"],
input[type="submit"]:hover {
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-image: none;
	background-color: #000;
	border: 0px;
	border-radius: 0;
	box-shadow: 0;
}

.ajax-loader {
	display: none;
}

.faq-category {
	margin-top: 120px!important;
	padding-top: 120px;
}

#sb_instagram #sbi_load .sbi_load_btn,
#sb_instagram .sbi_follow_btn a {
	border-radius: 0!important;
}
