/*
Theme Name: MyPakage

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =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;
	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;
	clear:both;
}
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;
}

/* Fonts */

@font-face {
    font-family: 'OpenSansLight';
    src: url('fonts/opensans-light.eot');
    src: url('fonts/opensans-light.eot') format('embedded-opentype'),
         url('fonts/opensans-light.woff2') format('woff2'),
         url('fonts/opensans-light.woff') format('woff'),
         url('fonts/opensans-light.ttf') format('truetype'),
         url('fonts/opensans-light.svg#OpenSansLight') format('svg');
}
@font-face {
    font-family: 'OpenSansRegular';
    src: url('fonts/opensans-regular.eot');
    src: url('fonts/opensans-regular.eot') format('embedded-opentype'),
         url('fonts/opensans-regular.woff2') format('woff2'),
         url('fonts/opensans-regular.woff') format('woff'),
         url('fonts/opensans-regular.ttf') format('truetype'),
         url('fonts/opensans-regular.svg#OpenSansRegular') format('svg');
}
@font-face {
	  font-family: 'OpenSansItalic';
	  src: url('fonts/OpenSans-Italic.eot?#iefix') format('embedded-opentype'),  
	  url('fonts/OpenSans-Italic.woff') format('woff'), 
	  url('fonts/OpenSans-Italic.ttf')  format('truetype'), 
	  url('fonts/OpenSans-Italic.svg#OpenSans-Italic') format('svg');
	  font-weight: normal;
	  font-style: normal;
}
@font-face {
    font-family: 'CardoRegular';
    src: url('fonts/cardo-regular.eot');
    src: url('fonts/cardo-regular.eot') format('embedded-opentype'),
         url('fonts/cardo-regular.woff2') format('woff2'),
         url('fonts/cardo-regular.woff') format('woff'),
         url('fonts/cardo-regular.ttf') format('truetype'),
         url('fonts/cardo-regular.svg#CardoRegular') format('svg');
}
@font-face {
  font-family: 'CardoItalic';
  src: url('fonts/Cardo-Italic.eot?#iefix') format('embedded-opentype'),  
	  url('fonts/Cardo-Italic.woff') format('woff'), 
	  url('fonts/Cardo-Italic.ttf')  format('truetype'), 
	  url('fonts/Cardo-Italic.svg#Cardo-Italic') format('svg');
  font-weight: normal;
  font-style: normal;
}


/* 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: "";
}

#post-1690 ul.entourage-list strong {
	display: none !important;
}

/* =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: #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);
	outline: 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 */
}

#menu-posts-entourage {display: none !important;}

/* 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: 14px;
	font-size: 1rem;
	font-family: Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	color: #444;
}
body.custom-font-enabled {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
a {
	outline: none;
	color: #21759b;
}
a:hover {
	color: #0f3647;
}

.tp-caption a {
font-family: 'Conv_DINEngschriftStd';
font-size: 24px;
color:#ff7302;
text-shadow:none;
-webkit-transition:all 0.2s ease-out;
-moz-transition:all 0.2s ease-out;
-o-transition:all 0.2s ease-out;
-ms-transition:all 0.2s ease-out;
}
.slide-txt-italic {
  font: 17px 'CardoItalic', Helvetica, sans-serif;
   /*padding-left: 15px;*/
}
.slide-txt-blue {
  font-size: 20px;
  /*padding-left: 30px;*/
  color: #008eca !important;
}
.tp-caption a:hover {
color:#ffa902;
}
.slide-btn, .slide-btn-white {
margin-top: 10px;
  /*margin-left: 40px;*/
}
.slide-btn-blue a, .slide-btn-blue a:visited {
	font-family: 'OpenSansRegular' !important;
	font-size: 14px !important;
	color: #fff !important;
	text-decoration: none !important;
	padding: 5px 15px !important;
	border: 1px solid #00aeef !important;
	background: #00aeef;
}
.slide-btn-blue a:hover {
	background: #000000 !important;
	border: 1px solid #000000 !important;
	color: #fff !important;
}
.slide-btn-white a {
	font-family: 'OpenSansRegular' !important;
	font-size: 10px !important;
	color: #fff !important;
	text-decoration: none !important;
	padding: 5px 15px !important;
	border: 1px solid #8b8c8e !important;
}
.slide-btn-white a:hover {
	background: #4c4c4c !important;
	color: #fff !important;
}
.slide-btn a {
	font-family: 'OpenSansRegular' !important;
	font-size: 10px !important;
	color: #8b8c8e !important;
	text-decoration: none !important;
	padding: 5px 15px !important;
	border: 1px solid #8b8c8e !important;
}
.slide-btn a:hover {
	background: #fff !important;
	color: #000 !important;
}


/* 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 */
}
.inner {
	width: 960px;
	margin: 0 auto;
}

/* Page structure */
.site {
	padding: 0 24px;
	padding: 0 1.714285714rem;
	background-color: #fff;
}
.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;*/
}
.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;
}
.logo {
	width: 154px;
	height: 43px;
	padding-top: 17px;
	float: left;
}
.logo a {
	background: url(images/logo_black.png) /*url(images/logo_white.png)*/ no-repeat;
	background-size: 154px 43px;
	font-size: 0;
	width: 154px;
	height: 43px;
	display: block;
	text-decoration: none !important;
}

/* 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 .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;
	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 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: 12px 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 {
	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;
}
#post-1690  .locations-heading, #post-1692 .locations-heading {
	width: auto !important;
	font-size: 24px;
	margin-bottom: 50px !important;
}
.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;
	margin-top: 0;
	/*height: 0;*/
}
.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: #000;
	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 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;
}

.pp_content, div.pp_pic_holder, .pp_fade {
	z-index: 9999 !important;
}

/* =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 {
		border-bottom: 1px solid #ededed;
		border-top: 1px solid #ededed;
		display: inline-block !important;
		text-align: left;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.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 40px 0 0;
		margin: 0 0.557142857rem 0 0.557142857rem;
		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: #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: #e6e6e6;
	}
	body .site {
		padding: 0 40px;
		padding: 0 2.857142857rem;
		margin-top: 48px;
		margin-top: 3.428571429rem;
		margin-bottom: 48px;
		margin-bottom: 3.428571429rem;
		box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
	}
	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;
	}
}

@media screen and (min-width: 1280px) {

.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		border-bottom: 1px solid #ededed;
		border-top: 1px solid #ededed;
		display: inline-block !important;
		text-align: left;
		width: 100%;
		text-align: center;
	}
	ul#menu-menu-1 .sub-menu {
		background: #252525 !important;
		text-align: left !important;
		margin-left: -10px;
		padding-bottom: 5px;
	}
	ul#menu-menu-1 .sub-menu li a {
		background: none !important;
	}
	ul.sub-menu {
		z-index: 9999;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		border-bottom: 0;
		color: #6a6a6a;
		line-height: 4.192308;
		text-transform: uppercase;
		white-space: nowrap;
	}
	.main-navigation li a:hover {
		color: #000;
	}
	.main-navigation li {
		margin: 0 40px 0 0;
		margin: 0 0.657142857rem 0 0.657142857rem;
		position: relative;
	}
	.main-navigation li#menu-item-23 {
		margin: 0 0 0 0.657142857rem;
	}
	.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: #636363;
		font-weight: bold;
	}
	.menu-toggle {
		display: 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 {
		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;
	}
}

/* The West Harbour */

@font-face {
	font-family: 'Conv_DINEngschriftStd';
	src: url('fonts/DINEngschriftStd.eot');
	src: local('☺'), url('fonts/DINEngschriftStd.woff') format('woff'), url('fonts/DINEngschriftStd.ttf') format('truetype'), url('fonts/DINEngschriftStd.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

body{
	background: #fff;
	font-size: 12px;
}

a, a:visited{
	-webkit-transition: color 0.15s ease;
	-moz-transition: color 0.15s ease;
	-o-transition: color 0.15s ease;
	transition: color 0.15s ease;
	color: #000 !important;
	text-decoration: underline;
}

a:hover{
	color: #00aeef !important;
}

#page, .site{
	box-shadow: none;
	border: none;
	margin-top: 0;
	margin-bottom: 0;
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
}

.site-title{
	width: 154px;
	height: 43px;
	background: url(images/logo_black.png) /*url(images/logo_white.png)*/ no-repeat;
	text-indent: -9999em;
	margin: 0 auto;
	position: relative;
	z-index: 50;
}

.site-title a{
	width: 100% !important;
	height: 100% !important;
	display: block !important;
}

.site-header {
	width: 100% !important;
	max-width: 100% !important;
	min-height: 111px !important;
	position: fixed;
	z-index: 100 !important;
	background: url(images/shadow.png) no-repeat bottom center !important;
}

.site-header .addthis_toolbox{
	width: 150px;
	text-align: right;
	float: left;
	padding-top: 3px;
}
.free-pairs {
	float: right;
}
.free-pairs a {
	text-decoration: none;
}
.free-pairs a p {
	font: 12px 'OpenSansLight', Helvetica, Arial, sans-serif !important;
	color: #fff !important;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0;
	border: none !important;
	margin: 0 !important;
	border-top: 0;
	font-style: normal;
	padding-top: 2px;
}
.free-pairs a:hover, .free-pairs a:hover p, .free-pairs a p:hover {
	text-decoration: none !important;
}
.header-soc {
	-webkit-transition: background 0.35s ease;
	-moz-transition: background 0.35s ease;
	-o-transition: background 0.35s ease;
	transition: background 0.35s ease;
}
.addthis_button_facebook_follow.header-soc, .addthis_button_facebook_follow {
	background: url(images/facebook.svg) no-repeat;
}
.addthis_button_facebook_follow.header-soc:hover, .addthis_button_facebook_follow:hover {
	background: url(images/facebook-white.svg) no-repeat;
}
.addthis_button_twitter_follow.header-soc, .addthis_button_twitter_follow {
	background: url(images/twitter.svg) no-repeat;
}
.addthis_button_twitter_follow.header-soc:hover, .addthis_button_twitter_follow:hover {
	background: url(images/twitter-white.svg) no-repeat;
}
.addthis_button_youtube_follow.header-soc, .addthis_button_youtube_follow {
	background: url(images/youtube.svg) no-repeat;
}
.addthis_button_youtube_follow.header-soc:hover, .addthis_button_youtube_follow:hover {
	background: url(images/youtube-white.svg) no-repeat;
}
.addthis_button_pinterest_follow.header-soc, .addthis_button_pinterest_follow {
	background: url(images/pinterest.svg) no-repeat;
}
.addthis_button_pinterest_follow.header-soc:hover, .addthis_button_pinterest_follow:hover {
	background: url(images/pinterest-white.svg) no-repeat;
}
.addthis_button_instagram_follow.header-soc, .addthis_button_instagram_follow {
	background: url(images/instagram.svg) no-repeat;
}
.addthis_button_instagram_follow.header-soc:hover, .addthis_button_instagram_follow:hover {
	background: url(images/instagram-white.svg) no-repeat;
}
.addthis_button_letter_follow.header-soc {
	background: url(images/mail.svg) no-repeat;
	margin-left: 3px;
}
.addthis_button_letter_follow.header-soc:hover {
	background: url(images/mail-white.svg) no-repeat;
}
.addthis_button_facebook_follow.header-soc .at16nc, .addthis_button_facebook_follow.header-soc .at300bs, .addthis_button_facebook_follow.header-soc .at15t, .aticon-facebook {
	background: none !important;
}
.addthis_button_twitter_follow.header-soc .at16nc, .addthis_button_twitter_follow.header-soc .at300bs, .addthis_button_twitter_follow.header-soc .at15t, .aticon-twitter {
	background: none !important;
}
.addthis_button_youtube_follow.header-soc .at16nc, .addthis_button_youtube_follow.header-soc .at300bs, .addthis_button_youtube_follow.header-soc .at15t, .aticon-youtube {
	background: none !important;
}
.addthis_button_pinterest_follow.header-soc .at16nc, .addthis_button_pinterest_follow.header-soc .at300bs, .addthis_button_pinterest_follow.header-soc .at15t, .aticon-pinterest {
	background: none !important;
}
.addthis_button_instagram_follow.header-soc .at16nc, .addthis_button_instagram_follow.header-soc .at300bs, .addthis_button_instagram_follow.header-soc .at15t, .aticon-instagram {
	background: none !important;
}
.addthis_button_letter_follow.header-soc .at16nc, .addthis_button_letter_follow.header-soc .at300bs, .addthis_button_letter_follow.header-soc .at15t, .aticon-letter{
	background: none !important;
}
.at-icon { display: none !important; }
.at-icon-wrapper { background: transparent !important; }
.site-description{
	display: none;
}

#site-navigation{
	background: url(images/gray-bg.jpg) repeat-x;
	border: none !important;
	position: relative;
	float: right;
	font-family: 'Conv_DINEngschriftStd';
	-webkit-font-smoothing:antialiased !important;
	margin: 0 auto;
	width: 660px /*560px*/ !important;
	min-height: 74px;
	padding-left: 130px /*230px*/;
	font-weight: normal !important;
	z-index: 999;
}

.nav-menu{
	border-top: 0 !important;
	border-bottom: 0 !important;
}

.nav-menu a{
	color: #fff !important;
	font-size: 18px !important;
	font-weight: normal !important;
}

.nav-menu a:hover{
	color: #00aeef !important;
}

.current-menu-parent a, .current-menu-item a, .sub-menu .current-menu-item a, .current-menu-parent .sub-menu .current-menu-item a{
	font-weight: normal !important;
	color: #00aeef !important;
}

.single-members .nav-menu #menu-item-84 a{
	color: #00aeef !important;
}

.sub-menu{
	margin-top: -15px !important;
	position: relative;
	z-index: 99 !important;
}

.sub-menu a{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal !important;
	font-size: 11px !important;
	background: rgba(0,0,0,0.9) !important;
	padding: 0 10px !important;
	border-bottom: none !important;
	color: #fff !important;
	width: 150px !important;
	z-index: 900 !important;
}

.current-menu-item .sub-menu a, .current-menu-parent .sub-menu a{
	color: #fff !important;
}

.current-menu-item .sub-menu a:hover, .current-menu-parent .sub-menu a:hover{
	color: #00aeef !important;
}

#main{
	width: 100% !important;
	max-width: !important;
	margin-top: 140px;
}

#main h1, #main h2, #main h3, h3.share {
	font-family: 'Conv_DINEngschriftStd';
	-webkit-font-smoothing:antialiased !important;
	text-transform: uppercase;
	font-weight: normal !important;
}

#main h1{
	margin-top: 0 !important;
margin-bottom: 30px !important;
	font-size: 26px !important;
}

#main h2{
	color: #fff;
	padding: 5px 10px 0 10px;
	background: #000;
	width: 150px !important;
	font-size: 26px !important;
	text-align: center;
}

#post-17 h2{
	width: 200px !important;
}

#main h3{
	font-size: 13px !important;
	font-family: Arial, Helvetica, sans-serif !important;
	font-weight: bold !important;
	margin-top: 0 !important;
}


#primary{
	width: 100% !important;
	max-width: !important;
}

article{
	border-bottom: none !important;
	padding-bottom: 0 !important;
}

.content-inner{
	width: 960px !important;
	margin: 0 auto;
}
.wider1024 {
	width: 1024px !important;
}

.blog .content-inner {
	width: auto !important;
	padding: 0 1%;
}

.banner {
	background: url(http://www.mypakage.com/wp-content/uploads/mypakage-banner-100-percent-guaranteed.jpg) no-repeat;
	width: 100%;
	height: 345px;
	background-size: cover;
}
.banner-content {
	max-width: 310px;
	margin: 0 auto;
	padding-top: 100px;
}
.banner-content .logo-horizontal {
	text-align: center;
	padding-bottom: 7px;
}
.banner-content .logo-horizontal img {
	width: 80px;
	height: 14px;
}
.banner-content h2, .banner-content h3 {
	color: #fff;
	text-transform: uppercase;
	font-family: 'Conv_DINEngschriftStd';
	font-size: 30px;
	text-align: right;
	font-weight: normal !important;
}
.banner-content h3 {
	font-size: 24px;
}
.banner-btn {
	padding-top: 30px;
	text-align: center;
}
.banner-btn a {
	background: #161616;
	font: 12px 'OpenSansLight', Helvetica, Arial, sans-serif;
	color: #fff !important;
	text-decoration: none;
	padding: 15px 20px;
	border: 1px solid #fff;
	text-transform: uppercase;
	line-height: 50px;
	-webkit-transition: color 0.35s ease, background 0.35s ease;
	-moz-transition: color 0.35s ease, background 0.35s ease;
	-o-transition: color 0.35s ease, background 0.35s ease;
	transition: color 0.35s ease, background 0.35s ease;
}
.banner-btn a:hover {
	background: #fff;
	color: #000 !important;
}
.join-the-adventure {
	background: #fff;
	overflow: hidden;
	text-align: center;
	padding: 40px 0;
	text-transform: uppercase;
}
.adventure-top {
	overflow: hidden;
	padding-bottom: 5px;
}
.join-the-adventure-img {
	width: 150px;
	height: 150px;
	display: inline-block;
	float: left;
	padding-right: 7px;
	padding-bottom: 10px;
}
.adventure-title-1 {
	float: left;
}
.adventure-title-1 a, .adventure-title-2 a {
	text-decoration: none;
}
.adventure-title-2 {
	float: right;
}
.adventure-description {
	font: 12px 'OpenSansItalic', Helvetica, Arial, sans-serif;
	color: #505050;
	float: left;
	width: 100%;
	overflow: hidden;
	text-align: left;
	padding-bottom: 15px;
	font-size: 12px;
}
.join-the-adventure h3 {
	font-family: 'Conv_DINEngschriftStd';
	font-size: 24px /*18px*/;
	text-transform: uppercase;
	font-weight: normal !important;
}

.recent-stories {
	background: #fff;
	overflow: hidden;
	text-align: center;
	padding-bottom: 50px;
}
.recent-stories h2 {
	color: #40424b;
	font-family: 'Conv_DINEngschriftStd';
	font-size: 18px;
	text-transform: uppercase;
	text-align: left;
	padding-bottom: 20px;
	font-weight: normal !important;
}
.recent-stories-post-title {
	color: #fff;
	padding-bottom: 5px;
	font-family: 'Conv_DINEngschriftStd';
	font-size: 18px;
	text-transform: uppercase;
	text-align: left;
	font-weight: normal !important;
}
.recent-stories-item {
	width: 309px;
	height: 309px;
	display: inline-block;
	float: left;
	margin-right: 8px;
	margin-bottom: 8px;
	position: relative;
}
.recent-stories-item a {
	text-decoration: none !important;
}
.recent-stories-post {
	width: 100%;
	height: 100%;
	background-size: cover !important;
	position: relative;
	display: block;
}
.recent-stories-post-link {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	z-index: 99;
}
.recent-stories-post-bottom {
	background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
.recent-stories-post-excerpt .read-more {
	display: none;
}
.recent-stories-post-excerpt {
	padding: 10px 0;
	display: none;
}
.recent-stories-post-excerpt p {
	font: 11px 'OpenSansLight', Helvetica, Arial, sans-serif;
	text-align: left;
	color: #bdbdbd;
}
.some-content {
	font: 12px 'OpenSansLight', Helvetica, Arial, sans-serif;
	color: #bdbdbd !important;
	text-align: left;
	float: left;
}
.recent-stories-post-bottom .read-more-link {
	font: 12px 'OpenSansLight', Helvetica, Arial, sans-serif;
	display: block;
	float: right;
	color: #bdbdbd !important;
	text-decoration: none;
}
.recent-stories-post-bottom-inner {
	padding: 9px;
	overflow: hidden;
}
.store-blocks {
	background: #fff;
	overflow: hidden;
	padding: 30px 0; /*50px 0*/
	text-align: center;
}
.store-block-item-wrap {
	width: 309px;
	padding-right: 8px;
	display: inline-block;
	float: left;
	vertical-align: top;
}
.store-block-item {
	width: 309px;
	height: 309px;
	padding-bottom: 10px;
	display: block;
}
.store-blocks-post {
	width: 100%;
	height: 100%;
	background-size: cover !important;
	position: relative;
	display: table;
	overflow: hidden;
}
.store-blocks-ico {
	width: 98px;
	height: 98px;
	margin: -105px auto 0;
	padding-bottom: 10px;
}
.store-block-title {
	width: 100%;
	height: 171px;
	padding-top: 45%;
	position: absolute;
	display: table-cell;
	vertical-align: middle;
	background: rgba(0, 0, 0, 0.5);
	-webkit-transition: background 0.35s ease;
	-moz-transition: background 0.35s ease;
	-o-transition: background 0.35s ease;
	transition: background 0.35s ease;
}
.store-block-title-inner {
	position: absolute;
	left: 50%;
	margin: 0 -100px;
}
.store-blocks-post:hover .store-block-title{
	background: rgba(250, 250, 250, 0.3);
}
.store-block-title h2 {
	font-family: 'Conv_DINEngschriftStd';
	color: #fff;
	font-size: 35px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: normal !important;
}
.store-block-title h3 {
	font-family: 'Conv_DINEngschriftStd';
	color: #fff;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: normal !important;
	text-align: left;
}
.store-block-bottom {
	background-color: rgba(0, 0, 0, 0.8);
	position: absolute;
	width: 100%;
	height: 60px;
	left: 0;
	bottom: 0;
	display: none;
}
.store-block-price {
	width: 60px;
	height: 60px;
	display: table;
	float: left;
	text-align: center;
}
.store-block-price span {
	background: #1999cd;
	font-family: 'Conv_DINEngschriftStd';
	font-size: 20px;
	font-weight: normal;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
}
.store-item-colors {
	float: left;
	padding-top: 10px;
	padding-left: 10px;
}
.store-item-color {
	display: inline-block;
	margin-left: 5px;
}
.store-item-color img {
	border: 1px solid #a8a8a8;
}
.store-block-bottom p.way-more{
	display: block;
	color: #fff !important;
	font-size: 14px;
	float: right;
	max-width: 40px;
	margin-right: 25px;
	margin-top: 17px;
	font-style: italic;
	text-decoration: none;
}
.store-block-item-bottom-txt {
	font: 12px 'OpenSansItalic', Helvetica, Arial, sans-serif;
	color: #505050;
	float: left;
	padding-top: 8px;
	text-transform: uppercase;
	max-width: 219px;
	box-sizing: border-box;
	text-align: left;
}
a.store-block-btn {
	font: 11px 'OpenSansRegular', Helvetica, Arial, sans-serif;
	display: block;
	background: #fff;
	border: 1px solid #2ea2d3;
	float: right;
	color: #2ea2d3 !important;
	text-decoration: none;
	padding: 7px 12px;
	-webkit-transition: color 0.35s ease, background 0.35s ease;
	-moz-transition: color 0.35s ease, background 0.35s ease;
	-o-transition: color 0.35s ease, background 0.35s ease;
	transition: color 0.35s ease, background 0.35s ease;
}
a.store-block-btn:hover {
	background: #2ea2d3;
	color: #fff !important;
}
.my-contribution-content {
	font: 11px 'OpenSansLight', Helvetica, Arial, sans-serif;
	text-align: left;
	color: #fff;
}
.my-contribution-content-inner {
	padding: 7px;
}

.tp-bannertimer {
	display: none !important;
}
.tp-leftarrow.default {
	background: url(images/left-arrow.png) no-repeat 0 0 !important;
	width: 30px !important;
	height: 62px !important;
	z-index: 20;
}
.tp-rightarrow.default {
	background: url(images/right-arrow.png) no-repeat 0 0 !important;
	width: 30px !important;
	height: 62px !important;
	z-index: 20;
}

#colophon{
	background: #0a0a0a url(images/colophon-bg.jpg) repeat-x !important;
	width: 100% !important;
	max-width: 100% !important;
	border-top-color: #f5f5f5 !important;
}
#colophon p, #colophon a {
	color: #fff !important;
}
#colophon a {
	text-decoration: underline;
}
#colophon a:hover {
	text-decoration: none;
}
.page-id-5 #colophon {
	margin-top: 0 !important;
	border: none !important;
}
/* #colophon a{
	color: #666 !important;
}

#colophon a:hover{
	color: #666 !important;
} */

#footer-inner{
	width: 960px;
	margin: 0 auto;
}

.footer-column{
	width: 300px;
	float: left;
	margin-right: 30px;
}

#footer-column3{
	margin-right: 0;
}

#colophon h3{
	font-family: 'Conv_DINEngschriftStd';
	color: #fff;
	-webkit-font-smoothing:antialiased !important;
	text-transform: uppercase;
	font-weight: normal !important;
	font-size: 14px;
}

#colophon a:hover{
	color: #00aeef !important;
}

#colophon .addthis_toolbox{
	margin-top: 15px;
}

.clear{
	clear: both;
}

.page-id-5 #page{
	background: #282828 !important;
}

.page-id-5 .site-header{
	/*background: url(images/blue-bg.jpg) repeat-x !important;*/
	border-bottom: none !important;
	z-index: 500 !important;
	-webkit-box-shadow: none;
	-moz-box-shadow:    none;
	box-shadow:         none;
	position:fixed;
}
.first-header-row {
	background: #353535;
	position: relative;
	height: 20px;
	overflow: hidden;
}
.second-header-row {
	background: url(images/gray-header-bg.jpg) /*url(images/blue-bg.jpg)*/ repeat-x;
	height: 75px;
}
.gray-bg {
	background: #282828 url(images/gray-bg.jpg) repeat-x;
	height: 74px;
	position: absolute;
	right: 0;
	width: 50%;
	z-index: 99;
}
.page-id-5 .site-title{
	background: url(images/logo_black.png) /*url(images/logo_white.png)*/ no-repeat;
	margin-top: 17px;
}
.tp-bannershadow.tp-shadow2 {
	background: none !important;
}

/* .page-id-5 .nav-menu{
	left: 120px;
	top: -95px;
} */

.page-id-5 .sub-menu a{
	background: none !important;
	padding: 0 !important;
}

.page-id-5 .nav-menu a{
	color: #fff !important;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.55);
}

.page-id-5 .nav-menu a:hover{
	color: #00aeef !important;
}

.page-id-5 .home-shadow{
	width: 798px;
	height: 798px;
	background: url(images/home_content-shadow.png);
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -399px !important;
	margin-top: -399px !important;
	z-index: 100;
}

.page-id-5 .content-inner{
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -480px !important;
	margin-top: -50px !important;
	z-index: 200;
}

.page-id-5 .entry-title, .page-id-5 .entry-title a{
	color: #fff !important;
	text-decoration: none !important;
	font-size: 60px !important;
	margin-bottom: 1px !important;
}

/*.page-id-5 p, .page-id-5 p a{
	color: #fff !important;
	text-decoration: none !important;
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	text-transform: uppercase;
	padding-top: 10px;
	font-size: 16px !important;
	margin-top: -10px !important;
}*/

.site-content{
	margin-top: 0 !important;
}

.site-content article{
	margin-bottom: 10px !important;
}

.page-id-5 #primary, .page-id-5 .site-content{
	margin: 94px 0 0 !important;
	position: relative;
	z-index: 99;
}

.page-id-5 #page{
	margin-bottom: 0 !important;
}

#rev_slider_1_1_wrapper {
	background: #000 !important;
}
.slide-btn-white a {
	font-family: 'OpenSansRegular' !important;
	font-size: 10px !important;
	color: #fff !important;
	text-decoration: none !important;
	padding: 5px 15px !important;
	border: 1px solid #8b8c8e !important;
}
.slide-btn-white a:hover {
	background: #4c4c4c !important;
	color: #fff !important;
}
.slide-btn a {
	font-family: 'OpenSansRegular' !important;
	font-size: 10px !important;
	color: #8b8c8e !important;
	text-decoration: none !important;
	padding: 5px 15px !important;
	border: 1px solid #8b8c8e !important;
}
.slide-btn a:hover {
	background: #4c4c4c !important;
	color: #fff !important;
}

.page-id-5 h1, .page-id-5 h1 a{
	font-family: 'Conv_DINEngschriftStd';
	-webkit-font-smoothing:antialiased !important;
	text-transform: uppercase;
	font-weight: normal !important;
	text-decoration: none !important;
	color: #fff !important;
	float: left;
}


.bottom-block {
	background: url(images/sky-bg.jpg) repeat;
	width: 100%;
	min-height: 248px;
	background-size: cover;
	position: relative;
	border-bottom: 15px solid #0a0a0a;
}
.bottom-block-inner {
	padding-top: 62px;
	overflow: hidden;
}
.keyhole {
	background: url(images/keyhole.png) no-repeat;
        background-size: 284px 296px;
	width: 284px;
	height: 296px;
	position: absolute;
	left: 50%;
	top: -20px;
	margin: 0 -147px;
}
.keyhole-logo {
	background: url(images/keyhole-logo.png) no-repeat;
        background-size: 207px 72px;
	width: 207px;
	height: 72px;
	float: right;
	margin-top: 9px;
	display: block;
}
.blue-tape {
	background: url(images/blue-opacity-bg-dark.png) /*url(images/blue-opacity-bg.png)*/ repeat;
	width: 100%;
	height: 90px;
}
.blue-tape-left-block {
	float: left;
	padding-top: 9px;
}
.blue-tape-txt h3 {
	font-family: 'Conv_DINEngschriftStd' !important;
	font-size: 22px !important;
	font-weight: normal !important;
}
.more-btn {
	float: right;
}
#colophon .more-btn a {
	background: url(images/more-btn-bg.png) repeat !important;
	font: 12px 'OpenSansLight', Helvetica, Arial, sans-serif !important;
	float: right;
	padding: 10px 15px 9px;
	margin-top: 23px;
	margin-right: 43px;
	color: #fff !important;
	text-decoration: none !important;
	-webkit-transition: color 0.35s ease, background 0.35s ease;
	-moz-transition: color 0.35s ease, background 0.35s ease;
	-o-transition: color 0.35s ease, background 0.35s ease;
	transition: color 0.35s ease, background 0.35s ease;
}
#colophon .more-btn a:hover {
	background: #fff !important;
	color: #000 !important;
}

/* --------- Subscribe form Popup ------ */

#popform {
	display:none;	
}

#mc_embed_signup{
	padding-top:7px !important;
	clear:left; 
	font:14px Arial,sans-serif;
	/*background-image:url("/wp-content/themes/twentytwelve/images/chimp_bg.jpg");*/
	/*background-repeat:repeat-y;*/
	/*background-position: center top;*/
	background:#ffffff;
  	background:rgba(255,255,255,1.0);
	border:2px solid #000000;
}

a.mailchimp.pp_close {
	right: 35px !important;
	top:7px;
	text-indent:inherit;
	background:none!important;
	text-decoration:none;
	color:#000;
	font-weight:bold;
	font-size:1.4em;
}

a.mailchimp.pp_close:hover {
	color:#00aeef!important;
}

.page-id-5 #mc_embed_signup p{
	color: #222 !important;
	margin-top: 0 !Important;
	padding: 0 10px !Important;
text-shadow: none !important;
border-top: none !important;
}

#mc_embed_signup h2{
	font-family:Arial, Helvetica, sans-serif;
	font-size:1.4em!important;
	font-style:italic;
	font--weight:bold!important;
	text-transform:none!important;
	text-align:center;
	color:#272727 !important;
	background-color:transparent !important;
	background-image:url("images/mypakage-it-just-fits-worlds-best-underwear.png");
  	background-size: 200px auto;
	background-repeat:no-repeat;
	background-position: center 0;
	width:100% !important;
	padding-top:98px !important;


}

#mc_embed_signup form{
	background-image:url("/wp-content/themes/twentytwelve/images/chimp_grey_grad.png");
	padding:10px 0px 0px 0px!important;
	
}

#mc_embed_signup .mc-field-group {
	padding:0!important;	
	text-align:center;
	margin:0 auto;
}

#mc_embed_signup .mc-field-group input {
	display:inline!important;
	border:1px #00aeef solid;
	border-radius:0px;
}

#mc_embed_signup .mc-field-group input[type="email"] {
	width:50%!important;
	padding:7.5px 0;
	color:#272727;
}
#mc_embed_signup .mc-field-group .button {
	font-weight:normal;
	width:11%!important;
	border:0 none;
	background-color:#000!important;
	background-image:none!important;
	border-radius:0!important;
	line-height:normal!important;
}



#entourage-menu{
	width: 100%;
	position: fixed;
	text-align: center;
	margin-top: -144px;
	padding: 20px 0;
	font-size: 12px;
	background: rgba(250,250,250,0.85);
	z-index: 99 !important;
	display: none;
}

#entourage-menu li{
	display: inline;
}

#entourage-menu a{
	color: #999;
	text-decoration: none;
}

#entourage-menu a:hover{
	color: #00aeef;
}

/* #post-56, #post-50, #post-52{
	padding-top: 60px;
} */

#blog-container{
	padding-left: 1%;
}

.blog .type-post, .archive .type-post, .category .type-post, .search-results .type-post{
	width: 13.27%;
	padding: 0;
	margin-right: 1%;
	margin-bottom: 1% !important;
	float: left;
	/* -webkit-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 0px 5px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 0px 5px rgba(50, 50, 50, 0.75); */
	min-height: 460px;
	background: #ffffff;
}

.blog .entry-meta, .archive .entry-meta, .category .entry-meta, .search-results .entry-meta{
	display: none;
}

.blog .entry-title, .archive .entry-title, .category .entry-title, .search-results .entry-title{
	margin: 10px 0 0 0 !important;
	margin-bottom: 0 !important;
}

.single .content-border, .blog .content-border{
	margin-bottom: 0 !important;
	padding: 0 !Important;
}

.single .entry-meta{
	display: none;
}

.single .entry-title{
	margin-top: 0 !important;
}

.single .content-left{
	width: 350px !important;
}

.single .content-right{
	width: 570px !important;
}

.blog .type-post img, .archive .type-post img{
	border: none !important;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
}

.blog #main h1, .archive #main h1{
	margin-bottom: 5px !important;
}

.blog .entry-header, .archive .entry-header{
	margin-bottom: 0 !important;
}

.blog .type-post h1 a, .archive .type-post h1 a{
	color: #000;
	font-size: 18px;
}

.blog .type-post h1 a:hover, .archive .type-post h1 a:hover{
	color: #00aeef;
}

.blog .type-post .entry-meta, .archive .type-post .entry-meta{
	display: none;
}

.blog #secondary, .single #secondary{
	width: 100%;
}

.blog #secondary aside, .single #secondary aside{
	width: 190px;
	padding: 20px;
	margin-right: 20px;
	float: left;
	margin-bottom: 0;
}

.page-id-50 #secondary{
	display: none;
}

#mc_signup input{
	width: 100%;
}

.mc_signup_submit{
	text-align: left;
}

#mc_signup .mc_signup_submit input{
	width: auto !important;
}

.page-id-297 .content-left{
	font-size: 42px;
}

.content-left{
	width: 50% /*460px*/;
	float: left;
/*	padding-right: 40px;*/
}

.content-right{
	width: 49% /*460px*/;
	float: right;
}

.views-template-members-page .content-right{
	width: 960px !important;
	float: none !important;
}

.press-box{
	width: 305px;
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
	background: #f0f0f0;
}

#main .press-box h2, .press-box h2 a{
	background: none !important;
	color: #000;
	text-decoration: none;
	width: 100% !important;
	padding: 0 !important;
	text-align: left !important;
	font-size: 18px;
	line-height: 1em;
	margin-bottom: 10px;
}

#main .press-box p{
	margin-bottom: 0 !important;
}

#main .press-box a, #main .press-box a h2{
	color: #fff !important;
	text-decoration: none;
}

#main .press-info{
	background: rgba(0,0,0,0.8);
	opacity: 0;
	color: #fff !important;
	width: 90% !important;
	padding: 5%;
	min-height: 180px;
}

#main .press-info:hover{
	opacity: 1;
}


#main .press-info a{
	color: #fff !important;
}

.press-date{
	color: #d0d0d0;
}

#post-62 p{
	width: 32%;
	padding-right: 1%;
	float: left;
}

#post-62 p.full-width-paragraph{
	width: 100%;
	padding-right: 0;
	float: none;
}

/* .page-id-1068 .fsCell{
	width: 40% !important;
	float: left !important;
} */

.credit-supplier{
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 15px;
}

.entry-banner{
	text-align: center;
	margin-top: -20px;
	margin-bottom: 50px;
}

img.wp-post-image{
	box-shadow: none;
	border: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	margin: 0 auto !important;
}

#main img{
	box-shadow: none;
	border: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

/* #mc_message{
	color: #880000;
	border: 1px solid #880000;
	background: #fbcece;
} */

#mc_mv_FNAME, #mc_mv_LNAME, label[for=mc_mv_FNAME], label[for=mc_mv_LNAME]{
	display: none;
}

/* Matchmaker */

.page-id-332 #colophon, .page-id-332 .site-header{
	display: none;
}

.page-id-332, .page-id-332 #page, .page-id-332 .site{
	background: #bd1326 !important;
	color: #eb9fa8  !important;
}

.page-id-332 h2, .page-id-332 h1, .page-id-332 #page-title{
	padding: 0  !important;
	background: none  !important;
	color: #fff !important;
	margin-bottom: 20px;
	display: block;
	text-align: left !important;
}

.page-id-332 h2 a{
	text-decoration: none;
	color: #fff !important;
}

.page-id-332 h2 a:hover{
	color: #ec5e74 !important;
}

.page-id-332 p{
	padding-bottom: 20px;
	line-height: 1.5em;
}

.page-id-332 a{
	color: #fff;
}

.page-id-332 #results-left{
	width: 450px;
	margin-right: 60px;
	float: left;
}

.page-id-332 #results-right{
	width: 450px;
	float: left;
}

.page-id-332 .fsSection, .fsPage {
	padding: 10px;
}

.page-id-332 .fsSection, .page-id-332 .fsRowBody{
	width: 100% !important;
}

.page-id-332 .fsRow{
	float: left !important;
	width: 40% !important;
	padding-right: 0 !important;
}

.page-id-332 .site-title{
	display: none;
}

.page-id-332 .page-title{
	/* width: 315px;
	height: 34px;
	background: url(images/matchmaker_logo.png) no-repeat;
	text-indent: -9999em; */
	margin-bottom: 40px;
}

.page-id-332 .hearts{
	width: 677px;
	height: 424px;
	background: url(images/matchmaker_hearts.png);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.page-id-332 #matchmaker-container{
	margin: 100px 0 50px 100px;
}

.page-id-332 #matchmaker-container label{
	color: #222;
}

.page-id-332 label{
	text-transform: uppercase;
	font-family: 'Conv_DINEngschriftStd';
	font-size: 24px;
	margin-right: 10px;
	padding-top: 10px;
	color: #ec5e74;
}

.page-id-332 .fsRow{
	float: left !important;
	width: 40% !important;
}

.page-id-332 #search-form p{
	float: left;
	margin-right: 40px;
}

.page-id-332 input{
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.55);
	-moz-box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.55);
	box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.55);
	border: 0;
	width: 150px;
	color: #777;
	padding: 5px 10px;
	font-size: 12px;
}

.page-id-332 input#submit{
	font-family: 'Conv_DINEngschriftStd';
	text-transform: uppercase;
	color: #fff;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background: #ec5e74;
	padding: 5px 10px !important;
	font-size: 20px;
	width: auto;
}

.page-id-332 #results-container, .page-id-2316 #loading-container
{
	display: none;
}

.page-id-332 #loading-container
{
	padding-left: 15em;
}

.page-id-332 #loading-container p
{
	margin-left: 1em;
}

.page-id-332 #loading-container img, .page-id-332 #loading-container p
{
	display: inline;
	vertical-align: middle;
}


.page-id-332 h3{
	color: #fff;
	margin-bottom: 20px;
	font-family: 'Conv_DINEngschriftStd';
	font-weight: normal;
}

.page-id-332 strong{
	color: #f0c5c5;
}

.page-id-332 .wpcf7-submit{
	padding: 10px 0 10px 0 !important;
	color: #fff;
	background: #ec4e5f;
	font-weight: bold;
	font-size: 14px;
	/* position: fixed;
	right: 265px;
	bottom: 160px;
	z-index: -1; */
	cursor: pointer;
	margin-top: 10px;
}

.page-id-332 form{
	/* position: fixed;
	bottom: -45px;
	right: -10px;
	width: 450px;
	z-index: 100; */
}	

.page-id-332 #matchmaker-box{
	background: #ec4e5f;
	padding: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	color: #6f1620;
}

.page-id-332 #matchmaker-box p{
	width: 50%;
	float: left;
}

.page-id-332 h2{
	color: #bd1326;
	background: #ec4e5f;
	padding: 5px 10px;
}

.page-id-332 #results-dropdown .contents
{
	display: none;
}

.content-column{
	width: 30%;
	float: left;
	padding-right: 5%;
}

.content-column-last{
	padding-right: 0;
}

.content-column-pair-selection{
	text-align: right;
}

.pair-selection li{
	list-style: none;
	font-family: 'Conv_DINEngschriftStd';
	text-transform: uppercase;
	font-size: 22px;
	line-height: 1.75em;
	-webkit-font-smoothing:antialiased !important;
	font-weight: normal !important;
	margin-left: 0 !important;
}

.pair-selection a{
	text-decoration: none;
	color: #000;
}

.pair-selection a:hover, .pair-selection a.active{
	color: #00aeef !important;
}

.content-border{
	border-top: 1px dashed #000;
	margin: 20px 0;
	padding-bottom: 30px;
}

.content-border h2{
	margin: 0 auto;
}

#post-50 .entry-title, #post-278 .entry-title, #post-46 .entry-title{
	margin-top: 0;
}

.buy-online a{
	width: 100px;
	height: 50px;
	padding: 25px 0;
	display: block;
	color: #fff;
	background: #000;
	margin: -100px auto 40px auto;
	font-family: 'Conv_DINEngschriftStd';
	text-transform: uppercase;
	font-size: 26px;
	-webkit-font-smoothing:antialiased !important;
	font-weight: normal !important;
	text-align: center;
	text-decoration: none;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border: 3px solid #fff;
	position: relative;
	z-index: 1;
	line-height: 1em;
}

.buy-online a:hover{
	background: #00aeef;
}

#post-48 h2{
	font-size: 20px !important;
}

#buyit a{
	color: #fff !important;
}

.specs-highlight img{
	border: 1px solid #00aeef !important;
}

.product-highlight{
	color: #00aeef !important;
}

.locations-heading{
	font-size: 30px;
	color: #000 !important;
	width: 330px;
}

#post-46 .locations-heading{
	font-size: 26px;
}

#post-56 .locations-heading, #post-58 .locations-heading, #post-60 .locations-heading, #post-13 .locations-heading{
	width: auto !important;
	font-size: 24px;
	margin-bottom: 50px !important;
}

#sl_div, #search_form_table_row, #search_form_table_cell{
	padding: 0 !important;
}

.page-id-5 .container{
	padding-top: 20px !important;
	display: none !important;
}

.entourage-list li{
	float: left;
	width: 132px;
	height: 132px;
	color: #000;
	background: #f5f5f5;
	margin-right: 5px;
	list-style: none;
	margin-left: 0;
	margin-bottom: 5px;
	position: relative;
	text-transform: uppercase;
	text-align: center;
}

.entourage-title-block{
	line-height: 132px;
}	

.entourage-list a{
	display: block;
	color: #fff !important;
	width: 112px;
	height: 67px;
	padding: 55px 10px 10px 10px;
	background: rgba(0,0,0,0.75);
	text-decoration: none;
	opacity: 0;
	-webkit-transition: color 0.15s ease;
	-moz-transition: color 0.15s ease;
	-o-transition: color 0.15s ease;
	transition: color 0.15s ease;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	vertical-align: center;
}

.entourage-list img{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.entourage-list a:hover{
	opacity: 1;
}

.quote-large{
	font-style: italic;
	font-size: 24px;
	background: #f2f2f2;
	line-height: 1.65em;
}

#post-42 .quote-large{
	font-size: 21px;
}

#post-52 .locations-heading{
	width: auto !important;
}

#post-278 .locations-heading, #post-42 .locations-heading{
	font-size: 18px;
}

#post-42 h2{
	width: 200px !important;
}

#all-testimonials{
	color: #fff !important;
	text-decoration: none;
	background: #000;
	padding: 5px;
	text-transform: uppercase;
}

.border-bottom{
	border-bottom: 1px dashed #000;
	padding-bottom: 10px;
}

#mc-indicates-required, .mc_required{
	display: none;
}

.mc_merge_var{
	margin-bottom: 0 !important;
}

.fslabel{
	width: 135px;
	float: left;
	padding-right: 15px;
}

.fsFieldHorizontal{
	width: 300px;
	float: left;
}

.fsSubmitButton{
	color: #fff !important;
	background: #000 !important;
	text-transform: uppercase !important;
	font-size: 14px !important;
	padding: 5px 10px !important;
	border-radius: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
}

#post-62 h2{
	padding: 0;
	background: none;
	color: #333;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 14px !important;
	font-weight: bold !important;
	margin-top: 15px !important;
	width: auto !important;
	text-align: left !important;
}

.fsSectionHeader, .fsRowBody{
	padding-left: 0 !important;
}

#post-308 .fsRowBody p{
	margin-bottom: 15px !important;
}

#post-308 .fsRowBody{
	padding-top: 40px !important;
}

#post-308 .entry-title{
	margin-bottom: 0 !important;
}

.views-template-members-page .entourage-info .content-left{
	width: 460px !important;
	float: left !important;
	padding-right: 40px !important;
}

.views-template-members-page .entourage-info .content-right{
	width: 460px !important;
	float: left !important;
}

.views-template-members-page #sidebar{
	display: none !important;
}

.categories{
	margin-bottom: 37px !important;
	/* border-top: 1px solid #000 !important;
	border-bottom: 1px solid #000 !important; */
	text-align: center !important;
	padding: 5px 0 !important;
}

.cat-item{
	display: inline !important;
	margin-right: 3px !important;
	text-align: center !important;
}

.cat-item a{
	/* background: #d0d0d0 !important; */
	padding: 3px 5px !important;
	text-decoration: none !important;
	text-align: center !important;
}

.cat-item a:hover{
	color: #fff !important;
	background: #000 !important;
}

@media only screen and (max-width : 1000px) {

.page-id-5 .container{
	padding-top: 100px !important;
}

#site-navigation{
	width: 100% !important;
}

/* #menu-item-683{
	margin-left: -100px !important;
} */

.content-inner{
	width: 94% !important;
	padding: 0 3%;
}

.content-left{
	width: 52% /*47%*/;
	padding-right: 1% /*6%*/;
}
.content-right{
	width: 47%;
}

#footer-inner{
	width: 94% !important;
	padding: 0 3%;
}

}

#gallery-2 img {
  border: 1px solid #000 !important;
}

.wooslider {
  -webkit-box-shadow: none !important;
  border:1px solid #000 !important;
  border-bottom-left-radius:0px !important;
  border-bottom-right-radius:0px !important;
  border-top-left-radius:0px !important;
  border-top-right-radius:0px !important;
  box-shadow:none !important;
	padding: 3px !important;
}

.single .content-inner{
	width: 750px !important;
}

@media only screen and (max-width : 1920px) {

.blog .type-post, .archive .type-post, .category .type-post, .search-results .type-post{
	width: 15.5%;
	margin-right: 1%;
	min-height: 415px;
}

}

@media only screen and (max-width : 1620px) {

.blog .type-post, .archive .type-post, .category .type-post, .search-results .type-post{
	width: 18.8%;
	margin-right: 1%;
	min-height: 430px;
}

}

@media only screen and (max-width : 1280px) {

.blog .type-post, .archive .type-post, .category .type-post, .search-results .type-post{
	width: 23.7%;
	margin-right: 1%;
	min-height: 415px;
}
.free-pairs {
	padding-right: 20px;
}

.recent-stories-item, .store-block-item-wrap, .join-the-adventure-img {
	float: none;
}

/*.addthis_toolbox{
	display: none;
}*/

.site-header .addthis_toolbox {
	padding-left: 20px;
}

}

@media only screen and (max-width : 900px) {

.blog .type-post, .archive .type-post, .category .type-post, .search-results .type-post{
	width: 32%;
	margin-right: 1%;
}

}

@media only screen and (max-width : 600px) {
.page-id-5 .site-header {
	position: relative;
}
.page-id-5 #primary, .page-id-5 .site-content {
	margin: 0 0 0 !important;
}

.single .content-inner{
	width: 100% !important;
}

#blog-container{
	margin-left: 2%;
}

.blog .type-post, .archive .type-post, .category .type-post, .search-results .type-post{
	width: 47%;
	margin-right: 2%;
}

.page-id-5{
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.page-id-5 #slides, .page-id-5 .loading-container{
	display: none;
}

.site-header{
	position: relative;
}

#site-navigation{
	position: absolute !important;
	top: 100px !important;
	left: 0 !important;
	padding: 10px 0 !important;
	text-transform: uppercase;
	 z-index: 10000;
//height: auto;
//display: block;
}

.store-blocks {
	overflow: auto;
}

/* this */
.page-id-5 #site-navigation{
	position: absolute !important;
	position: relative;
	z-index: 10000;
	top: 95px !important;
}
.page-id-5 .sub-menu {
	display: none !important;
}

/*.addthis_toolbox{
	display: none;
}*/

.menu-toggle, input[type="submit"], input[type="button"], input[type="reset"], article.post-password-required input[type="submit"], .bypostauthor cite span {
	padding: 5px 0 !important;
}

.nav-menu{
	background: rgba(0,0,0,0.85);
	width: 100%;
	padding: 10px 0;
}

.page-id-5 .nav-menu{
	
}

.nav-menu li{
	padding: 5px 0;
	margin-top: 0;
}

.nav-menu a{
	text-decoration: none;
	text-transform: uppercase;
	color: #fff !important;
}

.sub-menu{
	margin-top: 0 !important;
}

.sub-menu a{
	background: none !important;
	color: #fff !important;
}

.current-menu-item .sub-menu a, .current-menu-parent .sub-menu a {
	color:#fff !important;
}

#menu-item-303{
	margin-left: 0 !important;
}

#menu-item-683{
	margin-left: 0 !important;
}

/*this
.page-id-5 .site-header{
	position:inherit!important
}
*/
.menu-toggle{
	margin-top: 0;
	width: 100%;
	border-radius: none;
}

.content-inner{
	width: 94% !important;
	padding: 0 3%;
}

#footer-inner{
	width: 94% !important;
	padding: 0 3%;
}

.content-column, .content-left, .content-right{
	float: none;
	width: 100%;
}

#main{
	margin-top: 50px;
}

.site-content{
	margin-top: 0 !important;
}

.site-content article{
	margin-bottom: 0 !important;
}

#slides{
	margin-top: -115px;
}
.blog .content-inner {
	padding: 0 2% 0 5% !important;
}
.content-column-pair-selection{
	text-align: center !important
}

}

@media only screen and (max-width : 400px) {

.blog .type-post, .archive .type-post, .category .type-post, .search-results .type-post{
	width: 96%;
	margin-right: 2%;
}

.blog .type-post img, .archive .type-post img, .category .type-post img, .search-results .type-post img{
width: 100%;
}

}

@media only screen and (max-width : 1023px) {
	.site-header {
		min-height: 184px !important;
	}
	#main {
		margin-top: 240px;
	}
	div.pp_pic_holder {
		left: 50% !important;
		margin: 0 -250px;
	}
}

@media only screen and (max-width : 680px) {
	.main-navigation li {
		margin: 0 0.557142857rem 0 0.557142857rem;
	}
}

@media only screen and (max-width : 1023px) {
	#site-navigation {
		background: #282828 url(images/gray-bg.jpg) repeat-x;
		padding: 0 !important;
		width: 100% !important;
	}
	.page-id-5 #primary, .page-id-5 .site-content {
		margin: 167px 0 0 !important;
	}
	.gray-bg {
		display: none;
	}
	ul.sub-menu {
		text-align: left !important;
	}
	.logo {
		margin: 0 auto;
		padding: 15px 0;
		float: none;
	}
	.main-navigation ul.nav-menu {
		padding: 5px 0 0;
		text-align: center;
	}
	.inner {
		width: 100%;
	}
	.store-block-item-wrap {
		padding-bottom: 20px;
	}
	.recent-stories {
		padding: 0 20px 50px;
	}
	.join-the-adventure {
		padding: 40px 20px;
	}
}

@media only screen and (max-width : 1300px) {
	.nav-menu {
		padding: 5px 0 0;
	}
	ul#menu-menu-1 .sub-menu {
		background: #252525;
	}
}

@media only screen and (max-width : 767px) {
	#site-navigation {
		padding: 0 !important;
	}
	.bottom-block-inner {
		padding-top: 32px;
	}
	ul#menu-menu-1 .sub-menu {
		background: #252525;
	}
	.keyhole {
		background: url(images/keyhole-2.png) no-repeat;
		top: 140px;
		width: 180px;
		height: 188px;
		margin: 0 -90px;
	}
	.blue-tape-left-block {
		padding: 10px 20px;
		float: none;
	}
	.keyhole-logo {
		margin: 220px auto 0;
		float: none;
		z-index: 0;
		position: relative;
	}
	.slide-btn, .slide-btn-white {
		margin-top: 20px !important;
	}
	.more-btn {
		float: none;
		padding-top: 300px;
		padding-bottom: 30px;
		text-align: center;
		margin: 15px auto 0;
		width: 120px;
	}
	#colophon .more-btn a {
		float: none;
		margin-right: 0;
		margin-top: 0;
		line-height: 32px;
	}
	#main {
		margin-top: 240px;
	}
	div.pp_pic_holder {
		max-width: 400px !important;
		width: 400px !important;
		position: absolute !important;
		top: 16% !important;
		left: 50% !important;
		margin: 0 -200px !important;
	}
	.pp_content {
		max-width: 400px !important;
		width: 400px !important;
	}
	a.mailchimp.pp_close {
		right: 0 !important;
	}
	.caption.slidelink a div, .tp-caption.slidelink a div {
		width: 100% !important;
	}
	body {
		overflow: hidden;
	}
}
@media only screen and (max-width : 600px) {
	#site-navigation {
		background: #282828 url(images/gray-bg.jpg) repeat-x !important;
	}
	#main {
		margin-top: 73px;
	}
	.main-navigation ul.nav-menu {
		padding: 0;
	}
	.page-id-5 #primary, .page-id-5 .site-content {
		margin: 82px 0 0 0 !important;
	}
	ul.sub-menu {
		text-align: center !important;
	}
	.main-navigation li {
		margin: 0 !important;
		line-height: inherit;
	}
	.nav-menu li {
		padding: 8px;
	}
	.recent-stories-item {
		width: 96%;
	}
	.site-header {
		min-height: 84px !important;
		background: none !important;
	}
	div.pp_pic_holder {
		width: 100% !important;
		max-width: 280px !important;
		z-index: 9999;
		position: absolute !important;
		top: 16% !important;
		left: 50% !important;
		margin: 0 -140px !important;
	}
	.pp_content {
		max-width: 340px;
		width: 100% !important;
	}
	.pp_fade {
		z-index: 9999;
	}
	.single .content-right, .single .content-inner {
		width: 90% !important;
	}
	#main .entry-content img {
		width: 100%;
	}
	.single .content-left {
		width: 100% !important;
		padding-right: 0;
	}
	.store-block-item-wrap {
		padding-right: 0;
	}
}
@media only screen and (max-width : 599px){
	.page-id-5 #primary, .page-id-5 .site-content {
		margin: 26px 0 0 0 !important;
	}
	#site-navigation {
		min-height: 26px !important;
		background: none !important
	}
}
@media only screen and (max-width : 700px) {
	.recent-stories-item {
		width: 96%;
	}
}
{
	.banner-content {
		max-width: 250px;
	}
	.banner-content h2, .banner-content h3 {
		font-size: 24px;
	}
}
@media only screen and (max-width : 380px) {
	.footer-column {
		width: 100%;
	}
	.blue-tape-txt h3 {
		font-size: 19px !important;
	}
	.content-column {
		padding-right: 0;
	}
}
@media only screen and (min-device-width: 599px) and (max-device-width: 601px){
	.main-navigation li a {
			line-height: 1 !important;
	}
}

.content-left, .content-right {
	-webkit-hyphens: none;
  	-moz-hyphens: none;
  	-ms-hyphens: none;
	hyphens: none !important;
}

h3.share a, h3.share a:visited, .share a:link, .share a:visited {
	text-decoration: none !important;
}
.sharebox {
 	width: 98%; 
	background: #ffffff; 
	text-align: center; 
	margin: 20px 0; 
	border: 2px solid #000; 
	padding: 20px 0;
}
.sharebox:hover {
background: #eee;
color: #fff !important;
-webkit-transition:all 0.2s ease-out;
-moz-transition:all 0.2s ease-out;
-o-transition:all 0.2s ease-out;
-ms-transition:all 0.2s ease-out;
}
