/*
 Theme Name:   Blue-Cup
 Theme URI:    http://example.com/twenty-fourteen-child/
 Description:  Blue-Cup
 Author:       John Doe
 Author URI:   http://example.com
 Version:      1.0.0
 Text Domain:  Blue-Cup
*/


/* =Theme customization starts here
--------------------------------------------------------------
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;
}
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,
.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%;
	background-color:#000000;
}
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: #BC9B6A;
}
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: #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;
}


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





/* =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;
}










/* =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: 0px) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		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;
	}
	.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;
		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 2.857142857rem 0 0;
		position: relative;
	}
	.main-navigation li ul {
		display: none;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
	}
	.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: 20000000px) {
	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;
	}
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
}


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

@media print {
	
	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;
	}
}

/*100 Club ALTERATIONS*/

/*Structure*/
body, html {
	font-family: 'ASAP' !important;
	color:white;
	margin:0;
	padding:0;
	min-width:964px;
	height:100%;
}

body.single #page, 
body.page-id-11 #page, 
body.page-id-105 #page, 
body.page-id-107 #page, 
body.page-id-101 #page{
	background-image:none;
	background-color:black;
}


#page {
	margin: 0 auto;
	padding:0;
	position:relative;
	background:none;
	min-height:100%;
	background-position: center top;
	background-image: url('images/About-Us-Contact-Us-Background.jpg');
	background-repeat: no-repeat;
}

body.page-id-90 #page{
 	background-image: url('images/Landing-Background.jpg');
}
#page-container{
	position:relative;
	height:100%;
	padding:0;
	margin: 0 auto;
	width: 100%;
	min-width:964px;
}
#main,
footer, 
#header-space{
z-index:100;
}
#main {
	text-align:center;
	padding-bottom:40px;
	position:relative;
}

body{
	margin: 0 auto;
}

#site-navigation{
	margin: 0;
	padding: 0;
}

#content p{
margin-bottom:16px;
}


/*Global Style Attributes*/
a{
	text-decoration:none;
	color: inherit;
	font-size: inherit;
}
a:hover{
color: #BC9B6A;
}
#content ol, #content ul{
	list-style: disc;
	padding: 0 0 16px 50px;
}
.page-title{
	padding: 30px 0 26px;
	color:#BC9B6A;
	Font-Family: "Buenard";
	width:500px;
	font-size: 26px;
}
.search-page-prompt{
	padding:20px;
}
.entry-meta{
	display:none !important;
}
body.search #content a:hover, body.single #content a:hover{
	text-decoration:underline;
}
.leave-reply{
	display:none !important;
}

canvas{
	position:absolute;
}
#large-header{
	position:absolute;
	top:0px;
	z-index:10;
}
#content #searchsubmit{
	width:100px;
	margin-right: 400px;
}
.vertically-centered{
	position:relative;
	top:50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
   	-ms-transform: translateY(-50%);
}


/*100 Club Header*/



#header-space {
	width:100%;
	height: 320px;
	text-align:center;
	position:relative;
	max-width:1024px;
	margin: 0 auto;
}


#logotype {
	width: 372px;
	height: 84px;
	position: relative;
	display:inline-block;
	margin-top: 80px;
	background-image: url('images/Logo-Tagline.png');
}
#navigation{
	margin-top:46px;
	font-size:14px;
	font-family:georgia;
	height:100%;
}
#navigation>ul{
	display:inline-block;
	text-align:center;
	height:110px;
}
#navigation>ul>li{
	display:inline-block;
	width:126px;
	border-left: 1px solid white;
	padding-left:4px;
	text-align:left;
	text-transform: uppercase;
	letter-spacing: .8px;
}
.sub-menu{
	text-transform: none;
	font-family: "ASAP";
	width:196px;
	display:none;
	position:absolute;
	padding:16px 0;
	font-size:13px;
	line-height:16px;

}
.sub-menu>li{
	line-height:18px;
}


#search-bar-container{
	width: auto;
	height: 24px;
	top: 30px;
	right: 30px;
	color:#D1D3D4;
	margin: 0;
	position:absolute;
}
#header-space #search-bar{
	position:relative;
	float:left;
	padding:0;
	border:0;
	height:24px;
}
#search-bar{
	width: 0px;
}
#search-icon{
	width:18px;
	height:18px;
	position:relative;
	float:left;
	margin:5px 6px;
	cursor:pointer;
}
.current-menu-item a, #navigation li a:hover{
	color: #BC9B6A;
}
#locations-button{
	width:138px;
	height:60px;
	background-image:url('images/Locations_Button-Up-State.png');
	position: absolute;
	right: 0px;
	top: 0px;
	display: none;
}
#locations-button:hover{
	background-image:url('images/Locations_Button-Down-State.png');
}
/*---------------------------------------------------------------------------------*/
/* 100 Club Footer */
footer{
	border: 0 !important;
	width: 100%;
	height: 30px;
	padding: 10px 0 0 0 !important;
	text-align:center;
	background-color: #000000;
	position:absolute;
	bottom:0px;
	font-size:10px;
	font-weight:bold;
	font-family: 'helvetica';
	letter-spacing: .5px;
}

footer span{
	position:absolute;
	bottom:20px;
}
footer span.left{
	left:20px;
}
footer span.right{
	right: 20px;
}
footer ul{
	width: 600px;
	text-align:center;
	display:inline-block;
}
footer ul li{
	display: inline-block;
	border-right: 1px solid white;
	padding:0 7px;
}
footer ul li:last-of-type{
	border:none;
	padding-right:none;
}
footer ul li:first-of-type{
	padding-left:none;
}






.dropdown-menu-item:hover{
	font-weight: bold;
	color: #D71920;
}
/*---------------------------------------------------------------------------------*/
/* 100 Club Content */
#content-title{
	font-family: "Novecento Wide Book", "ASAP";
	font-size: 16px;
	color: black;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight:100;
}


#content{
	width: 708px;
	font-size:16px;
	line-height:20px;
	font-family: "ASAP";
	margin: 0px auto;
	text-align:left;
	padding-bottom: 40px;
} 
#content a{
	color: #BC9B6A;
}
#content[page="Home"]{
	font-size:26px;
	line-height:40px;
	text-align:center;
}
#content[page="Home"] highlight{
	color:#BC9B6A;
}
#content[page="Member Bios"],#content[page="Events"],#content[page="Speaker Series"],#content[page="Special Events"],#content[page="Meetings"] {
	background-color:white;
	width: 100%;
	color:black;
}


#content-body{
	width: 100%;
	min-height: 200px;
	margin:0 auto;
	position:relative;
}
#content[page="Member Bios"] #content-body,#content[page="Events"] #content-body,#content[page="Speaker Series"] #content-body,#content[page="Special Events"] #content-body,#content[page="Meetings"] #content-body{
	width:880px;
	text-shadow:none;
}
#content[page="Home"]{
	font-size:24px;
}
body.page-id-2 #page{
	background-attachment:fixed !important;
}
	
#content[page="About Us"]{
	width:844px;
	padding-left:5px;
	font-family: "Georgia";
	letter-spacing:.5px;
	line-height: 27px;
	font-size: 17px;
}
#content[page="About Us"] p{
	margin-bottom:22px;
	}

#content[page='About Us'] #content-body h1{
	font-weight:100;
	letter-spacing:.5px;
	margin-bottom:8px;
}

#content[page="About Us"] #content-body{
	float:left;
	width:650px;
}
#content[page="Member Bios"] #content-body{
	width: 920px;
}
#content[page="Member Bios"] #content-sidebar{
	width:226px;
}



#content-body h1{
	color:#BC9B6A;
	font-size: 24px;
	line-height:22px;
	font-family:"Georgia";
	letter-spacing:.07em;
	font-weight:100;
}
#content-body h2{
	color: white;
	font-family:"Georgia";

}
#content-sidebar{
	float:right;
	width: 180px;
}
/*---------------------------------------------------------------------------------*/
/* 100 Club About Page */
#officer-container{
	font-family:"ASAP";
	font-size:14px;
	letter-spacing: .5px;
	line-height:22px;
}
#officer-container .title{
	color:#B69B6A;
}

/*---------------------------------------------------------------------------------*/
/* 100 Club Member Page */
#membership-openings-container{
	width: 194px;
	float: right;
}
#membership-openings-container > p{
	font-size:14px;
	margin-bottom:8px;
}
	
#employee-bio-space{
	width: 690px;
	float:left;
}

.employee-bio{
	height:auto;
	position:relative;
	display:inline-block;
	text-align: center;
	margin-bottom:20px;
	width:690px;
}



.employee-bio img {
	width:150px;
	height: 186px;
	float:left;
	margin-right:14px;
	cursor: pointer;
}

.employee-bio-info{
	width: auto;
	text-align:left;
	display:inline-block;
	margin-top:26px;
	float: left;
	font-size:16px;
	width: 526px;
	line-height: 22px;
}
	
#content[page="Member Bios"] h1{
	font-size: 20px;
	line-height: 22px;
	font-family: "ASAP";
	font-weight:100;
	letter-spacing:0em;
	cursor: pointer;
	margin-bottom:1px;
}
#content[page="Member Bios"] h2{
	font-size: 16px;
	line-height: 18px;
	font-family: "ASAP";
	font-weight:bold;
	color:black;
}

.employee-bio h2, .employee-bio h3{
	font-size:11px;
	line-height:15px;
	font-family: "ASAP";
	font-weight: 100;
	margin-bottom:2px;
}

#employee-name, .employee-name{
	font-family:'ASAP';
	width:auto;
	font-weight: bold;
	color: #D71920;
	text-transform: uppercase;
	float: left;
	margin-right: 3px;
}


#employee-contact-info-spacer-top{
	clear:left;
	float:left;
	height:40px;
	}

#employee-contact-info-spacer{
	content: '';
	float:left;
	width: 185px;
	height:61px;
	clear:left;
	position:relative;
}

.employee-bio-text{
 display:none;
 opacity:0;
}
.bio-rule{
}
.bio-button-container{
height:16px;
width:100%;
line-height:16px;
display:block;
cursor: pointer;
margin-bottom: 12px;
}
.bio-button{
	background-image: url('images/Bio-Arrows-Upstate.png');
	width: 16px;
	height: 16px;
	float:left;
	margin-right:5px;
}
.bio-button-downstate{
	background-image: url('images/Bio-Arrows-Downstate.png');
}
#employee-contact-info h1{
	font-weight:bold;
	line-height: 14px;
}

#email, #phone, #vcard{
	line-height: 14px;
}

#vcard{
	position:relative;
	top:-2px;
	color:#bc9b6a;
}
#vcard:hover{
	text-decoration:underline;
}
#employee-contact-info #vcard{
	color:#D71920;
}
	
.bio-button-container{
}
#new-member-application-button{
	background-image:url('images/New-Member-Application-Button-Downstate.png');
	width: 210px;
	height: 42px;
	margin:30px 0 16px;
}
#new-member-application-button:hover{
	background-image:url('images/New-Member-Application-Button-Upstate.png');
}
#speaker-form-button{
	position:absolute;
	background-image:url('images/Guest-Speaker-Bio-Button-Upstate.png');
	width: 210px;
	height: 42px;
	top:34px;
	right:0px;
}
#speaker-form-button:hover{
	background-image:url('images/Guest-Speaker-Bio-Button-Downstate.png');
}
/*---------------------------------------------------------------------------------*/
/* Events */
.speaker-block, 
.event-block{
	font-family: "ASAP";
	width:100%;
	font-size: 16px;
}

.speaker-block img{
	width: 108px;
	height: 134px;
	border: 1px solid #E6E7E7;
	float:left;
	margin-right:10px;
}
.speaker-block h1, .event-block h1{
	font-size:20px !important;
	font-family: "ASAP" !important;
	color: black !important;
	font-weight: 100 !important;
	letter-spacing: inherit !important;
	line-height: 18px !important;
	margin: 6px 0 2px;
}
.event-block h1{
	line-height: 22px !important;
	margin: 0 0 5px; !important;
	
}
.event-title{
	padding: 0 0 26px;
	color:#BC9B6A;
	Font-Family: "Georgia";
	width:500px;
	font-size: 26px;
	text-transform:capitalize;
	margin-bottom:2px;
}
.event-title:first-of-type{
	padding: 36px 0 26px;
}
.speaker-info, 
.event-info{
	width: 730px;
	float:left;
	font-size:16px;
	line-height: 20px;
}
.event-info{
	width:100%;
	float:none;
}
.event-info img{
	width: 332px;
	height: auto;
	float:left;
	margin: 0 8px 8px 0;	
}
.speaker-company{
	font-weight: bold;
	margin-bottom:2px;
}
.event-block .wp-caption{
	width: 332px !important;
	padding: 0;
	float:left;
}
.event-date{
	color: #BC9B6A;
	font-weight:bold;
	line-height:20px;
	height:30px;
	margin-bottom:2px;
}

.event-block .event-date{
	line-height: 16px;
	height: auto;
}
.divider{
	width: 100%;
	height: 1px;
	background-color:#000000;
	margin: 10px 0 25px;
	clear:both;

}
.divider:last-of-type{
display:none;
}



/*---------------------------------------------------------------------------------*/
/* Services Page */
#content .header{
	font-family: "ASAP";
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
	float:left;
}

.service-arrow-up, .service-arrow-down{
	float:left;
	margin-right: 8px;
	height: 12px;
	width: 12px;
	margin-top: 3px;
	background-image: url('images/Arrow-Up-State.png');
}

.service-arrow-down{
	background-image: url('images/Arrow-Down-State.png') !important;
}

.service-title-container{
	width: 678px;
	height: 18px;
	cursor: pointer;
}
	
.service-content{
	margin-left: 20px;
	display:none;
}
/*---------------------------------------------------------------------------------*/
/* Contact Us Page */
form{
	font-family: "ASAP";
	font-weight: bold;
	font-size: 12px;
}
#content input, #content textarea{
	width: 400px;
	height: 28px;
	margin: 10px 0 8px;
	color:black;
	padding: 2px 5px;
}
textarea{
	height: 40px;
	resize:both;
	max-height: 140px;
	max-width: 600px;
}
#submit-button{
	background-image: url('images/Submit-Button-Upstate.png') !important;
	width: 84px !important;
	height: 42px !important;
	margin: 28px 0 0 0 !important;
	border: none;
}
#submit-button:hover{
	background-image: url('images/Submit-Button-Downstate.png') !important;
}

div.wpcf7-response-output{
	border-width: 0px !important;
	position:absolute;
	width: 200px;
	height: 100px;
	top: 80px;
	right: -18px;
	text-align: center;
	font-size: 20px; 
}
span.wpcf7-not-valid-tip{
	position:absolute !important;
	left: -162px;
	top:-1px;
}
/*---------------------------------------------------------------------------------*/
/*Dormant Mobile Classes*/
.mobile-menu{
	display:none;
}

/*MOBILE FORMATTING*/
/*---------------------------------------------------------------------------------*/
.mobile-client #search-bar-text,
.mobile-client #search-bar{
	display:none;
}
.mobile-client,
.mobile-client #page-container,
.mobile-client #page,
.mobile-client body,
.mobile-client #header-space,
.mobile-client footer,
.mobile-client .page-title{
	width: 100%;
	min-width:100px;
}
.mobile-client #content p{
	font-size: 16px;
	line-height: 20px;
}
.mobile-client body{
	min-width:0px;
}
.mobile-client .page-title{
	font-size:22px;
}
.mobile-client #header-space{
	height:60px;
	width: 100%;
	}
.mobile-client #logotype{
	margin:10px 0;
	min-width:200px;
	max-width:257px;
	width:50%;
	height:auto;
}	
.mobile-client .mobile-menu li{
	width:auto;
	display:inline-block;
	margin-right:10px;
	font-weight:bold;
}
.mobile-client .mobile-menu:first{
	margin-right:0px;
}
	
.mobile-client #content{
	width:90% !important;
	padding: 0px 5%;
	margin:0;
}
.mobile-client #navigation{
	display:none;
}
.mobile-client #header-space{
	height:100px;
}
.mobile-client #search-bar-container{
	display:none;
}
.mobile-client body.page-id-90 #page{
 	background-image: url('images/Mobile-Landing-Background.jpg');
 	background-size: cover;
}
.mobile-client #content[page="About Us"]{
	letter-spacing: inherit;
}

.mobile-client #content-body,.mobile-client #navigation{
	width:100% !important;
	margin: 0;
}
.mobile-client #content-sidebar{
	display:none;
}
.mobile-client #menu-item-19{
	display:none;
}
.mobile-client #menu-container{
	top:60px;
}
.mobile-client #menu-footer-menu{
	display:none;
}
.mobile-client #navigation ul{
	width:100%;
	height:40px;
}
.mobile-client .event-title{
	font-size:22px;
}
.mobile-client .event-info h1{
	font-size: 16px !important;
	font-weight: bold !important;
}
.mobile-client #content[page="Speaker Series"] .event-title:first-of-type{
	display:none;
}
.mobile-client #content[page="Speaker Series"] .event-title:nth-of-type(2){
	padding-top:26px;
}

.mobile-client #speaker-form-button,
.mobile-client #new-member-application-button{
	display:none;
}
.mobile-client .speaker-block .speaker-info{
	width:66%;
	font-size: 16px !important;
}
.mobile-client .speaker-info .speaker-company{
	font-weight: 100;
}
.mobile-client .speaker-block img{
	width:30%;
	margin: 0 2% 0 0;
	height:auto;
}
.mobile-client #page{
	background-image: none;
	background-color: black;
}
.mobile-client body:not(.home) #main{
	background-color: white;
}
.mobile-client body:not(.home) #content-body{
	color:black;
	text-shadow: none;
	font-family:"ASAP";
}
.mobile-client #content-body h1{
	font-size: 22px;
}
.mobile-client #content[page="About Us"] #content-body h1{
	margin:22px 0 20px;
}
.mobile-client .speaker-block h1{
	margin: 0 !important;
	font-size: 16px !important;
	font-weight: bold !important;
}
.mobile-client .speaker-block .event-date{
	height:22px;
}
.mobile-client .wpcf7-form input, 
.mobile-client .wpcf7-form textarea{
	width: 96%;
	max-width:360px;
}
.mobile-client #employee-bio-space{
	margin: 0;
	text-align:left;
	position:inherit;
	left:0;
	width:100%;
}
.mobile-client .employee-bio{
	width:100%;
	text-align:left;
	margin:0px;
	padding:0px;
}
.mobile-client .employee-bio-info{
	float:left;
	margin: 0 0 0 5px;
	width: 60%;
	font-size:16px !important;
}
.mobile-client .employee-bio-text{
	clear:both;
	font-size:12px;
}
.mobile-client #content[page="Member Bios"] h1{
	font-size:16px;
	font-weight: bold;
}
.mobile-client #content[page="Member Bios"] h2{
	font-size:16px;
}
.mobile-client .employee-bio-image-container{
	float:left;
	background-image:none;
	height:113px;
	text-align:left;
	width: auto;
}
.mobile-client .employee-bio img{
	width: 82px;
	height: auto;
	left: 0px;
	top: 3px;
	box-shadow: 0 0 2px #D3D3D3;
	padding: 1px;
	position: relative;
}
.mobile-client .bio-text-mobile{
	margin: 10px 0;
	width: 100%;
	font-size:10px;
	font-family: 'ASAP';
	opacity:0;
}

.mobile-client #employee-contact-info-spacer{
}
.mobile-client #employee-contact-info{
}
.mobile-client .employee-bio h3{
display:block
}
.mobile-client .bio-rule{
	height:1px;
	width:100%;
	margin: 1px 0 6px;
	background-color: #E7E7E7;
	display:block;
}
/*#mobile-intro-screen{
	z-index:100;
	width:100%;
	background-image: url('images/WLPRR-wave-common.jpg');
	position:absolute;
	top:0;
	left:0;
	height:100%;
	text-align:center;
}
#mobile-intro-logo{
	position:relative;
	display:inline-block;
	width:320px;
	height:116px;
	background-image: url('images/MOB_LDNG-PG_Logo.png');
	background-repeat:no-repeat;
	top:134px;
}*/
.mobile-client #content-title, 
.mobile-client #title-divider{
	display:none;
}
.mobile-client .mobile-menu{
display:block;
}
.mobile-client #content .header{
color:#D71920;
cursor:default;
}
.mobile-client #content ul, 
.mobile-client #content ol{
padding: 0 0 16px 35px;
}

.mobile-client #employee-name{
display:none;
}
.mobile-client .service-arrow-down{
display:none !important;
}
.mobile-client #mobile-menu{
	display:block !important;
}
.mobile-client #mobile-menu ul{
	background-color:rgba(0,0,0,0.75);
	border-right: 2px solid #bc9b6a;
	width:200px;
}
.mobile-client #mobile-menu li{
	border: 1px solid #bc9b6a;
	border-left:none;
	padding:12px;
	font-weight:bold;
}
.mobile-client #mobile-menu li:first-of-type{
	border-top:none;
}
.mobile-client #mobile-menu li:last-of-type{
	border-bottom:none;
}
.mobile-client #mobile-menu-tab{
	background-color:rgba(169,131,81,.85);
	background-image: url('images/Menu-Button-Title.png');
	width:36px;
	height:54px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
   	-ms-transform: translateY(-50%);
   	text-align:center;
}
.mobile-client .image-slides img{
	max-width:90%;
    height: auto;
}
.mobile-client .image-selector-container .selected{
	color: #bc9b6a;
	font-weight: bold;
}
.mobile-client #menu-footer{
	display:none;
}
.mobile-client footer .right{
	display:none;
}
.mobile-client footer .left{
	position:relative;
	left:0px;
	bottom: 0px;
	display:inline-block;
}

	
	
/*END MOBILE FORMATTING*/
/*---------------------------------------------------------------------------------*/

