/*--------------------------------------------------------------
>>> Notes:
----------------------------------------------------------------

Dark Style:
#000000		:	Background Colour
#c5c19d		:	Main Text, HR
#d5d0ca	   	: 	Default links
#ffffff		: 	Hover/Active links;
#1c1c1c 	: 	Block backgrounds;

Light Style
#ffffff 	:	Background Colour
			:  	Main Text, HR

----------------------------------------------------------------*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}
html {-webkit-font-smoothing: antialiased}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}
*{
	text-rendering:optimizeLegibility !important;
	-webkit-font-smoothing:antialiased !important;
}

body {
	background: #000000; /* Fallback for when there is no custom background color defined. */
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:focus {
	outline:  none;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

img { 
	max-width: 100%; 
	height: auto;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #c5c19d;
	font-family: 'Roboto', sans-serif;
	font-weight: 400!important;
	/*font-size: 16px;
	font-size: 1.6rem;*/
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 1.5rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #c5c19d;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}


form header {
  margin: 0 0 20px 0; 
}
form header div {
  font-size: 90%;
  color: #999;
}
form header h2 {
  margin: 0 0 5px 0;
}
form > div {
  clear: both;
  overflow: hidden;
  padding: 1px;
  margin: 0 0 10px 0;
}
form > div > fieldset > div > div {
  margin: 0 0 5px 0;
}
form > div > label,
legend {
	width: 25%;
  float: left;
  padding-right: 10px;
}
form > div > div,
form > div > fieldset > div {
  width: 75%;
  float: right;
}
form > div > fieldset label {
	font-size: 90%;
}
fieldset {
	border: 0;
  padding: 0;
}


input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
    border: 1px solid #c5c19d;
    background-color: transparent;
    padding: 0.5em;
}
input[type=text],
input[type=email],
input[type=url],
input[type=password] {
  border: 1px solid #c5c19d;
  background-color: transparent;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus {
  outline: 0;
  border: 1px solid #d5d0ca;
  background-color: transparent;
}

input[type=search] {
	border: 1px solid #c5c19d;
    background-color: transparent;
    padding: 0.75em;
    font-size: 0.8em;
}

@media (max-width: 600px) {
  form > div {
    margin: 0 0 15px 0; 
  }
  form > div > label,
  legend {
	  width: 100%;
    float: none;
    margin: 0 0 5px 0;
  }
  form > div > div,
  form > div > fieldset > div {
    width: 100%;
    float: none;
  }
  input[type=text],
  input[type=email],
  input[type=url],
  input[type=password],
  textarea,
  select {
    width: 100%; 
  }
}
@media (min-width: 1200px) {
  form > div > label,
	legend {
  	text-align: right;
  }
}


input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}


::selection {
  background: #E8E6D2; /* WebKit/Blink Browsers */
  color: #000000 ;
}
::-moz-selection {
  background: #E8E6D2; /* Gecko Browsers */
  color: #000000;
}


/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: #d5d0ca;
}

a:visited {
	color: #d5d0ca;
}

a:hover,
a:focus,
a:active {
	color: #ffffff;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {

}

.main-navigation ul {
	list-style: none;
	margin: 0 0 1.5em 0;
	padding-left: 0;
	padding-top: 2.3em;
	padding-bottom: 2.5em;
	border-bottom: 1px solid #c5c19d;
	font-size: 1.1em;
}

.main-navigation li {
	float: left;
	position: relative;
	display: inline-block;
	width: 16.66666666666667%;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	text-align: center;
	color: #c5c19d;
	font-weight: 400;
	letter-spacing: 0.1em;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a, 
.main-navigation li.current_page_item a, .current-menu-item a  {
	color: #fff;
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
}

/* Mobile menu */
.menu-toggle {
	display: none;
}

#mobile-navigation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000000;
	padding: 0 1em;
}
#mobile-nav-bar {
	height: 50px;
	padding: 8px 0 8px 0;
	margin: 0;
	background-color: #000000;
	z-index: 999999999;
}
#mobile-logo {
	float: left;
	margin-left: 1em;
	max-width: 100px;
}
#mobile-toggle {
	position: absolute;
	right: 1em;
	top: 7px;
	margin: 0;
	cursor: pointer;
	display: block;
	height: 30px;
	width: 30px;
	padding: 0px;
	margin: 0;
	background: transparent;
	
}
#mobile-toggle div {
	background-color: #c5c19d;
	height: 2px;
	margin-top: 6px;
	width: 30px;
	margin-left: auto;
	margin-right: auto;
}
#mobile-toggle.active div {
	background-color: #fff
}

#mobile-nav-items {
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	display: none;
	padding-top: 70px;
	padding-bottom: 3.0em;
	padding-left: 1em;
	padding-right: 1em;
	background-color: rgba(0,0,0,0.9);
	height: 100%;
}
#mobile-nav-items ul {
	list-style: none;
	margin: 0;
	padding: 1em;
}
#mobile-nav-items ul li {
	margin: 0.2em 0;
	padding: 0;
}
#mobile-nav-items ul li a {
	display: block;
	color: #c5c19d;
	padding: 0.5em 0;
	border-bottom: 1px solid #c5c19d;
	font-size: 1.2em;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}
#mobile-nav-items ul li a:hover, 
#mobile-nav-items ul li.current-menu-item a {
	color: #fff;
	border-bottom: 1px solid #ffffff;
	text-decoration: none;
}

#mobile-nav-footer {
	padding: 1em;
	text-align: center;
}

#mobile-nav-footer a {
	float: left;
	display: inline-block;
	margin-right: 0.6em;
}

@media screen and (max-width: 992px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

.txtcenter {
	text-align: center;
}
.txtright {
	text-align: right;
}
.txtleft {
	text-align: left;
}


/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/

#page {
	padding-top: 1.5em;
	padding-bottom: 6em;
}

.site-title {
	text-align: center;
	background-image: url('../imgs/logo-black.png');
	max-width: 145px;
	display: block;
	min-height: 80px;
	background-size: cover;
	background-size: 100%;
	background-repeat: no-repeat;
	margin: 0 auto;
}
.site-title img {
	max-width: 145px;
}


.mart {
	margin-top: 1.25em;
}

.bg-grey {
	background-color: #1c1c1c;
}

.bg-lgrey {
	background-color: #2b2829;
}


/* Social Links */
.social { 
	min-height: 180px;
}

.social-links {
	margin-bottom: 10px;
}
#colophon .social-links {
	float: right;
}
.social-links a, .soc {
	display: inline-block;
	width: 26px;
	height: 26px;
	background-image: url('../../../../-nvaorguk/wp-content/themes/nva/imgs/nva-soc.png');
	background-repeat: no-repeat;
	text-indent: -999em;
}
.site-header .social-links a {
	margin-top:12px;
	margin-right: 5px;
}

.site-footer p {
	margin-bottom: 0.5em;
}
.site-footer .social-links {
	margin-top: 0px;
	text-align: right;
}
.site-footer .social-links a {
	margin-right: 0px;
	margin-left: 5px;
}
.soc {
	margin-right: 4px;
	margin-top: 0.4em;
	margin-bottom: 0.25em;
	display: inline-block!important;
	float: left;
}
.lbl-soc {
	display: inline-block;
    float: left;
    font-size: 0.85em;
    height: 0.85em;
    padding-top: 1em;
    margin-left: 4px;
}
.share-bar {
	font-weight: 400;
	display: block;
	padding: 0.2em 0.5em 0.2em 0.5em;
	background-color: #2b2829;
	letter-spacing: 0.1em;
	color: #e8e6d2;
	border-top: 1px solid #000100;
	box-sizing: border-box;
}
.visit, .dcsns-twitter .icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url('../../../../-nvaorguk/wp-content/themes/nva/imgs/visit.png');
	background-repeat: no-repeat;
	background-position: 0 0;
	text-indent: -999em;
	margin-right: 4px;
	margin-top: 0.65em;
	margin-bottom: 0.25em;
	display: inline-block!important;
	float: right;
}

.fb, .facebook {
	background-position: 0 0;
}
.tw, .twitter, .dcsns-twitter .icon {
	background-position: -30px 0;	
}
.vm, .vimeo {
	background-position: -60px 0;
}
.fl, .flickr {
	background-position: -91px 0;
}

.dcsns-twitter .icon  img{
	display: none;
}
/* Social Wall */
.page-content pre {
	background: transparent;
}

.wall-outer .dcsns-toolbar {
	display: none;
}

.wall-outer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.wall-outer ul li {
	width: 50%;
	display: block;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 18px;
	font-size: 1.4em;
	padding: 0.5em;
	position:relative;
}
.wall-outer ul li .dcsns-li {
	min-height: 200px;
}
.wall-outer ul li .inner {
	min-height: 160px;
	background-color: #2b2829;
	padding: 2.0em 0em 2.4em 0em;
}

.wall-outer ul li .section-intro {
	position: absolute;
	top: 14px; 
	right: 12px;
	background-color: #2b2829!important;
	height: 36px;
	padding-top: 0px;
	padding-bottom: 5px;
	padding-right: 6px;
	height: 1.2em !important;
}
.wall-outer ul li .section-intro {
	font-size: 0.7em!important;
}
.wall-outer ul li span.section-text {
	padding: 0.5em.5em 0 0.5em;
	display:block;
	border-top: 1px solid #000100;
}

.wall-outer ul li span.section-title {
	padding: 0.5em.5em 0.2em 0.5em;
	display:block;
}

.sdsf {
	display: none;
}

.wall-outer ul li .twitter-user, .wall-outer ul li span.section-user {
	position: absolute;
	top: 12px;
	left: 48px;
}

.wall-outer ul li .icon {
	position: absolute;
	top: 5px; 
	left: 15px;
	width: 20px;
	height: 20px;
	border: 1px solid white;
	border-radius: 50%;
}

.wall-outer ul li .section-share {
	position: absolute;
	bottom: 18px;
	left: 10px;
	width:100%;
	border-top: 1px solid #000100;
	padding-top: 1em;
	display:block;
}
.wall-outer ul li .section-share a {
	display: inline-block;
	width: 20px; 
	height: 20px;
	background-color: red;
	z-index: 99999;
}

.wall-outer ul li .section-thumb {
	display: block;
	width: 100%;
}
.wall-outer ul li .section-thumb img {
	width: 100%;
	height:; auto;
}


/* Section share */
.dcwss .stream li .section-share {
	display: block;
	margin: 0;
	padding: 4px 0 0;
	float: right;
}
.dcwss .stream li .section-share a {
	display: block;
	width: 16px;
	height: 16px;
	float: left;
	margin: 0 2px 0 0;
	background: url(../../../../../../46.28.50.172/_nvaorguk/wp-content/plugins/wordpress-social-stream/images/share.png) no-repeat 0 0;
}
.dcwss .stream li .section-share a.share-twitter {
	background-position: 0 -16px;
}
.dcwss .stream li .section-share a.share-reply {
	background-position: 0 -32px;
}
.dcwss .stream li .section-share a.share-retweet {
	background-position: 0 -48px;
}
.dcwss .stream li .section-share a.share-favorite {
	background-position: 0 -64px;
}
.dcwss .stream li .section-share a.share-google {
	background-position: 0 -80px;
}
.dcwss .stream li .section-share a.share-linkedin {
	background-position: 0 -96px;
}
.dcwss .stream li .section-share a.share-facebook:hover {
	background-position: -16px 0;
}
.dcwss .stream li .section-share a.share-twitter:hover {
	background-position: -16px -16px;
}
.dcwss .stream li .section-share a.share-reply:hover {
	background-position: -16px -32px;
}
.dcwss .stream li .section-share a.share-retweet:hover {
	background-position: -16px -48px;
}
.dcwss .stream li .section-share a.share-favorite:hover {
	background-position: -16px -64px;
}
.dcwss .stream li .section-share a.share-google:hover {
	background-position: -16px -80px;
}
.dcwss .stream li .section-share a.share-linkedin:hover {
	background-position: -16px -96px;
}

.dcsns-loading {
	display: none;
}

/* Buttons */

.search-field {
	display: inline-block;
	border: 1px solid #c5c19d;
	font-size: 0.75em!important;
	color: #c5c19d;
	padding: 0.3em;
	text-indent: 3px;
	line-height: 1em;
}
.search-field:focus {
	outline: none;
}
.search-submit { display: none;}

.button, .button:visited {
	display: inline-block;
	border: 1px solid #c5c19d;
	color: #c5c19d;
	padding: 0.7em 1em 0.7em 1em;
	font-size: 0.85em;
	line-height: 1em;
	margin-right: 0.8em;
	border-radius: 4px;
	font-weight: 400;
	letter-spacing:0.1em;
}
.button:hover {
	border: 1px solid #d5d0ca;
	color: #d5d0ca;
	text-decoration: none;
}

/* Tooltip */
.tooltip {
	display:none;
	position:absolute;
	background-color:#161616;
	border-radius:5px;
	padding:5px 7px;
	color:#fff;
	font-size:10px;
	text-align: center;
}

/* Popups */
.popup {
}

.popup label {
	font-size: 1em;
	padding: 0.3em 0;
	text-indent: 0.5em;
	margin-bottom: 0.7em;
}

.popup input {
	font-size: 1em;
	padding: 0.3em;
	margin-bottom: 0.7em;
	text-indent: 0.5em;
}

.popup .button {
	background: transparent;
	float: right;
	margin-right: 0;
	width: 100%;
	margin-top: 0.5em;
}

.form label {
	font-size: 1em;
	padding: 0;
	text-indent: 0;
	margin-bottom: 0.3em;
	font-weight: normal;
}

.form input {
	font-size: 1em;
	padding: 0.3em;
	margin-bottom: 0.7em;
	text-indent: 0.5em;
}

.form .button {
	background: transparent;
	float: right;
	margin-right: 0;
	width: 100%;
}

.form label span {
	margin-left: 8px;
}


.mfp-content {
	max-width: 660px;
	padding: 0;
	background-color: #2b2829;
	border: none;
}

.pop-title {
	position: relative;
	display: block;
	text-decoration: none;
	font-weight: 400;
	position: absolute;
	display: block;
	padding: 0.4em 0 0.35em 0;
	text-indent: 0.8em;
	width: 100%;
	font-size: 1.25em;
	background-color: #2b2829;
	letter-spacing: 0.1em;
	color: #e8e6d2;
	box-sizing: border-box;
	border-bottom: 2px solid #000;
}

.popup div.cont {
	padding: 0.5em 0 0.5em 0;
}
.popup div.cont div p {
	font-size: 1.25em;
	padding-left: 0.8em;
	padding-right: 2em;
	margin-bottom: 0.6em;
	font-weight: 400;
}

.popup div.cont .popup-desc{
	padding: 0.5em 0;
}
.popup div.cont .pop-form {
	margin-top: 1em;
	width: 100%;
	border-top: 2px solid #000;
	padding-top: 1em;
	padding-bottom: 0.5em;
}

.mc4wp-alert {
	text-align: left;
	font-size: 1.2em;
	padding: 0 0.7em;
}

/* Artworks Page */
.content-tab {
	position: relative;
	min-height: 300px;
}
#project-nav-wrap {
	min-height: 50px;
}
#project-nav {
	text-align:center;
	border-bottom: 1px solid;
	margin: 1.5em 0 1.5em 0;
	padding-bottom: 0.8em;
	font-size:1.2em;
	list-style-type: none;
	text-align: center;
}
#project-nav li.tab, #project-nav li.tabb {
	text-align:center;
    display:inline-block;
    *display:table-column;/* IE7 */
    *zoom:1;
    width: auto;
    padding: 0;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.1em;

}

#project-nav li.tab:after, #project-nav li.tabb:after {
	content: '|';
	display: inline-block;
	*display:table-column;/* IE7 */
    *zoom:1;
	padding-left: 36px; 
	padding-right: 36px;
	text-align: center;
	font-size: 1.5em;
	color:#c2c190!important;
}
#project-nav li.tab:last-of-type:after, #project-nav li.tabb:last-of-type:after {
	display: none;
}

#project-nav li.tab:hover, #project-nav li.active, 
#project-nav li.tab:hover, #project-nav li.active a,
#project-nav li.tabb:hover, #project-nav li.active, 
#project-nav li.tabb:hover, #project-nav li.active a {
	cursor: pointer;
	color: #ffffff;
	text-decoration: none;
}




#project-nav-wrap select {
  display: none;
  background: #2B2829;
  width: 100%;
  padding: 10px;
  font-size: 1.4em!important;
  line-height: 1;
  border-radius: 0;
 	color: #E8E6D8!important;
  border: none;
  -webkit-appearance: none;
}
#project-nav-wrap select option {
	font-size: 1.4em!important;
	font-weight: bold;

}


#project-logo {
	text-align: right;
	margin-top: 36px;
}
#project-logo img {
	margin-top: 1em;
	margin-bottom:1.0em;
	min-width: 100px;
	max-width:280px;
}

@media (max-width: 768px) {
  #project-nav-wrap ul     { display: none; }
  #project-nav-wrap select { display: inline-block; }
  #project-logo {
	text-align: left;
	margin-top: 0;
  }
  #project-logo img {
	margin-bottom:1.0em;
	min-width: 100px;
	max-width:200px;
}
}





/* Tiny MCE Styles */

.content-block { 
    border:1px solid #eee; 
    padding:3px;
    background:#ccc;
    max-width:250px;
    float:right; 
    text-align:center;
}
.content-block:after { 
    clear:both;
} 
.blue-button { 
	background-color:#33bdef;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #057fd0;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	padding:6px 24px;
	text-decoration:none;
}

.red-button {
	background-color:#bc3315;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #942911;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	padding:6px 24px;
	text-decoration:none;
}



/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

#donate-button {
display: block;
 margin-left: 10px;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}


/*--------------------------------------------------------------
Stuff
--------------------------------------------------------------*/

.item-title h1 {
	display: block;
	background-color: #2b2829;
	color: #e8e6d2;
	padding: 0.25em 0.5em 0.25em 0.5em;
	font-size: 1.5em;
	border-bottom: 2px solid #000100;
	margin: 0;
	font-weight: 400;
}

.listing, .related {
	margin-top: 1.25em;
	position: relative;
}
.listing a,.related a {
	position: relative;
	display: block;
	text-decoration: none;
}
.listing a span, .related a span {
	font-weight: 400;
	position: absolute;
	top: 0;
	left: 0px;
	width: 100%;
	display: block;
	padding: 0.25em 0.5em 0.35em 0.5em;
	font-size: 1.25em;
	background-color: #2b2829;
	letter-spacing: 0.1em;
	color: #e8e6d2;
	border-bottom: 1px solid #000100;
	box-sizing: border-box;
}
.listing a:hover span, .related a:hover span {
	color: #fff;
}
.listing a img, .related a img{
	margin-top: 1.6em;
}


div.title-banner a {
	font-weight: 400;
	position: absolute;
	top: 0;
	left: 0px;
	width: 100%;
	display: block;
	padding: 0em 0.5em 0.35em 0.5em;
	font-size: 1.25em;
	background-color: #2b2829;
	letter-spacing: 0.1em;
	color: #e8e6d2;
	border-bottom: 1px solid #000100;
	box-sizing: border-box;
}

.spost span img  {
	position: absolute; 
	top: 0;
	left: 8px;
}

.spost-text {
	margin-top: 0px;
	padding:16px 10px 16px 10px;
}

.spost a span:first-of-type {
	font-weight: 400;
	position: absolute;
	top: 0;
	left: 0px;
	width: 100%;
	display: block;
	padding: 0.35em 0.5em 0.35em 0.5em;
	font-size: 1em;
	background-color: #2b2829;
	letter-spacing: 0.1em;
	color: #e8e6d2;
	border-bottom: 1px solid #000100;
	box-sizing: border-box;
}

.spost span.date {
	float: right;
	position: absolute;
	right: 0;
	top: 1em;
	padding-right: 1.2em;
	color: #fff;
	font-size: 11px;
	color: #c5c19d;
}


.spost a img{
	margin-top: 1.6em;
}


.toggle-bar {
	padding: 0.25em 0.5em 0.35em 0.5em;
	border-bottom: 2px solid #000;
	font-size: 1.2em;
	letter-spacing: 0.1em;
	display: block;
	cursor: pointer;
	font-weight: 400;
	position: relative;
	z-index: 999;
}
.toggle-bar:hover {
	background-color: ;
}

.toggle-bar .toggle {
	display: inline-block;
	width: 32px;
	height: 24px;
	background-image: url('../imgs/nva-hamburger.png');
	background-repeat: no-repeat;
	text-indent: -999em;
	margin-top: 4px;
	margin-bottom: -5px;
}

.dorp-wrap {
	position: relative;
	clear: both;
	height: 100%;
	width: 100%;
}
#all-artworks-menu {
	padding-top: 1.25em;
	border-bottom: 2px solid #000;
	padding-bottom: 1.8em;
	display: none;
	position: relative;
	font-size: 0.9em;
}
#all-artworks-menu ol {
	margin: 0.3em 0 0 0;
	padding: 0;
	list-style-type: none;
}
#all-artworks-menu .drop-wrap .masonry {
	width: 100%;
}
#all-artworks-menu ol li {
	margin: 0 0 0.2em 0;
	padding: 3px 6px 3px 6px;
}
#all-artworks-menu ol li span {
	display: block;
	border-bottom: 1px solid;
	margin-bottom: 0.35em;
	letter-spacing: 0.1em;
}
#all-artworks-menu ol li ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#all-artworks-menu ol li ul li {
	margin: 0;
	padding: 2px 0 2px 0;
}
#all-artworks-menu ol li ul li a{
	letter-spacing: 0.1em;

 }
#all-artworks-menu ol li ul li a:hover {
	text-decoration: none;

}

.hide {
	display: none;
}

.column {
}

.subtitle {
	color: #fff;
	font-size: 18px;
	margin-bottom: 36px;
	color: #e8e6d2;
	margin-top: 36px;
}
.subtitle h3 {
	font-size: 1.1em;
	font-weight: 400;
	line-height: 28px;
	color: #e8e6d2;
}

.column p {
	padding-right: 2em; /* come back to */
	font-size: 1.2em;
	margin-bottom: 1.2em;
	line-height: 1.4em;
}

.column h1 {
	line-height: 1.1em;
	color: #e8e6d2;
	font-weight: bold;
}

.column h2 {
	font-size: 1.65em;
	line-height: 1.2em;
	color: #e8e6d2;
	font-weight: bold;
}

.column h3 {
	font-size: 1.4em;
	color: #e8e6d2;
	font-weight: normal;
}

.column strong {
	color: #e8e6d2;
	font-weight: 400;
}

.column em {
	color: #e8e6d2;	
}

.column blockquote, .column blockquote.nva-blockquote-lg {
	font-size: 1.35em;
  	margin-top: 1.25em;
  	line-height: 1.1em;
  	margin-bottom: 1.25em;
  	margin-left: 1.25em;
 	padding-left: 15px;
}

.column blockquote.nva-blockquote-md {
	font-size: 1.2em;
  	margin-top: 1.25em;
  	line-height: 1.1em;
  	margin-bottom: 1.25em;
  	margin-left: 1.25em;
 	padding-left: 15px;
}

.column blockquote.nva-blockquote-sm {
	font-size: 1.35em;
  	margin-top: 1.25em;
  	line-height: 1.1em;
  	margin-bottom: 1.25em;
  	margin-left: 1.25em;
 	padding-left: 15px;
}

.column blockquote, .column blockquote p, .column blockquote strong {
	color: #e8e6d2;
 	font-weight: 700!important;
}


.column a {
	color: #e8e6d2;
	text-decoration: underline;
}
.column a:hover {
	color: #fff;
}

/* News */

.single-post .menu-item-31 a {
 color: #fff;
}

.news-listing {
	margin-top: 1.25em;
	position: relative;
}
.news-listing a:first-of-type {
	position: relative;
	display: block;
	text-decoration: none;
}
.news-listing a span:first-of-type {
	font-weight: 400;
	position: absolute;
	top: 0;
	left: 0px;
	width: 100%;
	display: block;
	padding: 0.25em 0.5em 0.35em 0.5em;
	font-size: 1.25em;
	background-color: #2b2829;
	letter-spacing: 0.1em;
	color: #e8e6d2;
	box-sizing: border-box;
}
.news-listing a:hover span {
	color: #fff;
}
.news-listing a img {
	margin-top: 1.6em;
	margin-bottom: 0;
}
.news-listing h1 a {
	position: relative;
	display: block;
	text-decoration: none;
	font-weight: 400;
	position: absolute;
	top: 0;
	left: 0px;
	width: 100%;
	display: block;
	padding: 0.25em 0.5em 0.35em 0.5em;
	font-size: 1.25em;
	background-color: #2b2829;
	letter-spacing: 0.1em;
	color: #e8e6d2;
	box-sizing: border-box;
}
.news-listing h1 a span{
	font-size: 0.5em;
	position: absolute; 
	right: 5px;
	top: 0;
	width: 200px;
	float: right;
	background: transparent;

}

.news-listing footer, .entry-footer {
	font-weight: 400;
	position: relative;
	width: 100%;
	display: block;
	padding: 0.25em 0.5em 0.35em 0.5em;
	font-size: 0.8em;
	background-color: #2b2829;
	letter-spacing: 0.1em;
	color: #e8e6d2;
	box-sizing: border-box;
	border-top: 2px solid #000;
}

.listing-content {
	padding: 0.25em 0.7em 0.35em 0.5em;
	background-color: #2b2829;
}
.listing-content p:last-of-type {
	margin-bottom: 2px;
	padding-bottom: 0.5em;
}

.gallery-item {
	margin-bottom: 1em;
}

.slb_template_tag .slb_template_tag_ui .slb_template_tag_ui_slideshow_control {
	display: none!important;
}
.slb_details {
	display: none;
}

/* Reviews */

h3.review-title {
	position: relative;
	background-color: #2b2829;
	z-index: 9999;
}
h3.review-title a {
	padding-right: 80px;
}
h3.item-title span.date, .search-header span.date {
	float: right;
	position: absolute;
	right: 0;
	top: 1em;
	padding-right: 1.2em;
	color: #fff;
	font-size: 11px;
	color: #c5c19d;
}
.reviews-content {
	padding: 0.25em 0.0em 0.35em 0.0em;
	background-color: #2b2829;
	min-height: 90px;
}
.reviews-content p:last-of-type {
	margin-bottom: 0px;
	padding-bottom: 0em;
}

/* Links */
.links-title {
	font-size: 1.4em;
	color: #e8e6d2;
	margin-bottom: 0.8em;
	margin-top: 0.8em;
	letter-spacing: 0.1em;
	font-weight: 400;
}

.links-item {
	text-align: center;
	margin-bottom: 1.5em;
}
.links-item a {
	display: block;
	background-color: #2f2c2d;
	width: auto;
	height: auto;
	max-height: 180px;
	min-height: 120px;
}

.links-item a img {
	max-height: 100px;
	max-width: 140px;
}

/* Search */
.search-header {
	position: relative;
	display: block;
	text-decoration: none;
	font-weight: 400;
	display: block;
	padding: 0.25em 0 0.35em 0;
	text-indent: 0.5em;
	width: 100%;
	font-size: 1.25em;
	background-color: #2b2829;
	letter-spacing: 0.1em;
	color: #e8e6d2;
	box-sizing: border-box;
	border-bottom: 1px solid #000;
}

.next-post, .prev-post { 
	float: right; 
	display: block;
	width: auto;
	height: 30px;
}
.next-post a, .prev-post a {
	display: inline-block;
    font-size: 0.85em;
    height: 0.85em;
    margin-right: 4px;
    padding-top: 1em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}
.next-post a:hover, .prev-post a:hover {
	color: #fff;
	text-decoration: none;
}

.page-title {
	position: relative;
	display: block;
	text-decoration: none;
	font-weight: 400;
	position: absolute;
	display: block;
	padding: 0.25em 0 0.35em 0;
	text-indent: 0.5em;
	width: 100%;
	font-size: 1.25em;
	background-color: #2b2829;
	letter-spacing: 0.1em;
	color: #e8e6d2;
	box-sizing: border-box;
}

.zero-h {
	height: 0;
	overflow: hidden;
	font-size: 0;
}

.issuuembed {
	margin: 0 auto;
}

/* Footer */
.site-footer {
	font-size: 0.85em;
}
.site-footer a {
	color: #c5c19d;
}
.site-footer a:hover {
	text-decoration: none;
	color: #e8e6d2;
}
.credit {
	font-size: 0.8em;
	margin-top: 0.5em;
}

.flag {
	display: inline-block;
	width: 20px;
	margin-right: 6px;
	height: auto;
	margin-top: 8px;
}

.style-select {
	display: block;
	float: left;
	width: 1.6em;
	height: 1.6em;
	font-size: 0.8em;
	border: 1px solid;
	margin-top: 12px;
	margin-right: 8px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 6px;
	cursor: pointer;
}
#dark {
	margin-left: 8px;
}
#light {
	color: #000;
	background-color: #fff;
	border: 1px solid #000;
}


/* Shop */
.single-product h1.entry-title {
	 margin-top: 0.9em;
}

.single-product .listing a span {
	font-size: 1em;
}

.single-product .menu-item-24 a {
	color: #fff;
}
/* helpers */
.nopad-lr {
	padding-left: 0;
	padding-right: 0;
}
.nopad-r {
	padding-right: 0;
}
.nopad-l {
	padding-left: 0;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}
.column object {
	width: 100%;
	margin: 0 auto;
	min-height: 680px;
	min-width: 100%;
	padding: 0;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}



/* Featured Item */


/* Related Item */


/* Artwork Item */




@media (max-width: 768px) {
	
	#content {
		padding-top: 50px;
	}

}




.wall-outer .dcsns-toolbar {
position: absolute;
top: -44px;
right: 0;
z-index: 9999999999;
width: 200px;
}

#dcsns-filter {
	margin-top: 6px;
}
#dcsns-filter li {
display: inline-block;
font-size: 1.4em;
padding: 0;
width: 22px;
margin-left: 8px;
position: relative;
}

.dcsns-facebook .icon, 
.dcsns-tumblr .icon,
.dcsns-vimeo .icon,
.dcsns-flickr .icon   {
	margin-top: 12px;
}


.stream li.dcsns-tumblr .section-intro, .filter .f-tumblr a:hover, .wall-outer .dcsns-toolbar .filter .f-tumblr a.iso-active {
background-color: #2b2829!important;
}

.dcwss .stream li .section-share {
display: block;
margin: 0;
padding: 8px 6px 0px 8px!important;
float: right;
}




.vcent-wrap {
   display: table;
   width: 100%;
   min-height: 210px;
   background:#2f2c2d;
}
.vcent-content {
   display: table-cell;
   text-align: center;
   vertical-align: middle;
   padding: 12px;
}


/* Flow Flow */
.ff-theme-classic.ff-style-4 .ff-item-meta {
	height: 24px!important;
}
.ff-theme-classic.ff-style-4 .ff-userpic, .ff-theme-classic.ff-style-5 .ff-userpic {
width: 24px!important;
height: 24px!important;
}
.ff-icon {
width: 24px!important;
height: 24px!important;
border-radius: 24px!important;
color: #d5d0ca!important;
}
.ff-theme-classic.ff-style-4 .ff-icon, .ff-theme-classic.ff-style-5 .ff-icon {
	color: #d5d0ca!important;
}
.ff-theme-classic.ff-style-3 .ff-icon-inner, .ff-theme-classic.ff-style-4 .ff-icon-inner {
height: 16px!important;
background: transparent!important;
border: 1px solid #d5d0ca;
padding: 2px!important;
width: 16px!important;
color: #d5d0ca!important;
}



/* ======================== Magnific =============== */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #cccccc; }
    .mfp-preloader a:hover {
      color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }
button::-moz-focus-inner {
  padding: 0;
  border: 0;
   color: #e8e6d2; }

.mfp-close {
  width: 40px;
  height: 33px;
  line-height: 22px;
  position: absolute;
  right: 0;
  top: 0;
   color: #e8e6d2;
  text-decoration: none;
  text-align: center;
  opacity: 0.9;
  filter: alpha(opacity=9);
  padding: 0 10px 0 10px!important;
  color: white;
  font-style: normal;
  font-size: 24px!important; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {}

.mfp-close-btn-in .mfp-close {
  color: #e8e6d2; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 1.0;
  filter: alpha(opacity=100);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid #e8e6d2;
    margin-left: 31px; }
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    /*border-right: 27px solid #e8e6d2;*/ }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid #e8e6d2;
    margin-left: 39px; }
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    /*border-left: 27px solid #e8e6d2;*/ }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444444; }
  .mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #e8e6d2;
  word-wrap: break-word;
  padding-right: 36px;
  padding-top: 4px;
  padding-left: 8px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; 
     color: #e8e6d2;
    } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }



  figcaption .mfp-bottom-bar {
    display: none;
  }

  .mfp-figure button {
    font-size: 22px!important;
    color: #e8e6d2!important;
    right: 6px!important;
  }


/*
* 	Owl Carousel Owl NVA Theme
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 0px;
	text-align: center;
	border-top: 2px solid #000;
	padding: 0.55em 0.5em 0.25em 0.5em;
	font-size: 1.25em;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 16px;
	height: 16px;
	margin: 0 5px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background-color: #2b2829;
	border: 1px solid #c2c190;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	background-color: #c2c190 ;
}

@media only screen and (max-width: 480px) {
	.owl-theme .owl-controls .owl-page span {
		display: block;
		width: 10px;
		height: 10px;
		margin: 0 5px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		background-color: #2b2829;
		border: 1px solid #c2c190;
	}
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(ajaxloader.gif) no-repeat center center
}


/* Lee */
/* 
#nva-slide .item {
	width: 100%;
	height: auto;
	
	overflow: hidden!important;
	max-height: 647px!important;
}

#nva-slide .item img {
	margin-left: auto;
	margin-right: auto;
    display: block;
    width: auto;

    max-height: 647px!important;
}*/

#nva-slide .item {
	position: relative;
}

#nva-slide .item-title {
	display: block;
	background-color: #2b2829;
	color: #e8e6d2;
	padding: 0.25em 0.5em 0.25em 0.5em;
	font-size: 1.5em;
	font-weight: 400;
	border-bottom: 2px solid #000;
}
#nva-slide .item-title:hover {
	text-decoration: none;
	color: #fff;
}

#nva-slide .item .item-content {
	position: relative;
}

#nva-slide .item-content {
	padding: 0;
	margin: 0;
}
#nva-slide .item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	display: block;
	padding: 0.25em 1.25em 0.25em 0.5em;
	background-color: #2b2829;
	width: 48.5%;
	height: 100%;
	z-index: 20;
	opacity: 0;
	overflow: hidden;
	transition: all 0.7s;
	font-size: 1.35em;
	line-height: 1.25em;
	letter-spacing: 0.1em;
}
#nva-slide .item .item-title:hover  .item-overlay {
	opacity: 1;
}
#nva-slide .item-overlay .item-subtitle {
	display: block;
	color: #e8e6d2;
	font-size: 0.85em;
	padding-top: 0.25em;
}
#nva-slide .item-overlay .read-more {
	font-size: 0.85em;
	color: #c2c190 ;
}
#nva-slide .item-overlay .read-more:hover {
	color: #fff;
}
.owl-buttons {
	display: block;
	position: absolute;
	right: 10px;
	padding-right: 4px;
	bottom: 0px;
	z-index: 900;
	background-color: #2b2829;
}
.owl-controls {
	padding: 0.25em 0.5em 0.25em 0.5em;
	background-color: #2b2829;
}
.play-overlay {
	position: absolute;
	top: 0;
	left: 0;
}


.owl-theme .owl-controls .owl-buttons div {
	color: #c2c190;
	display: inline-block;
	zoom: 1;
	margin: 5px;
	padding: 0px;
	font-size: 24px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: transparent;
	filter: Alpha(opacity=100);
	opacity: 1.0;
	width: 22px;
	height: 22px;
	line-height: 20px;
	font-family: arial;
	margin-top: 4px;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
	color: #e8e6d2;
}

.lightscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.owl-top {
  position: fixed!important;
  width: 86%!important;
  top: 5%!important;
  left: 7%!important;
  z-index: 9999999999999!important;
}

#zoom {
	display: none;
	position: absolute;
	left: 22px;
	bottom: 5px;
	z-index: 1004;
}




/* Social Stream */


.ff-stream-wrapper {
 margin: 1em 0!important;
padding: 0!important;
}
.ff-loadmore-wrapper .ff-btn {
width: 100%!important;
border-radius: 0;
padding: 0.35em 0;
height: auto!important;
color: rgb(232, 230, 210)!important;
}

.ff-loadmore-wrapper .ff-btn:hover {
background-color:  rgb(86, 80, 82)!important;
color: #fff!important;
}

.readmore-js-toggle {
display: none!important;
opacity: 0!important;
}

.ff-nav-info-keys {
display: none;!important;}

.ff-theme-classic .picture-item__inner {
border-radius: 0!important;
}



#ff-stream-1, #ff-stream-1 .ff-search input, #ff-stream-1.ff-layout-compact .picture-item__inner {
background-color: transparent!important;
}

#ff-stream-1 .ff-filter:hover, #ff-stream-1 .ff-loadmore-wrapper .ff-btn, #ff-stream-1 .ff-square:nth-child(1) {
background-color: rgb(43, 40, 41);
}

.ff-loadmore-wrapper .ff-btn {
width: 100%!important;
border-radius: 0;
padding: 0.35em 0;
height: auto!important;
color: #000!important;
}

#ff-stream-1 .picture-item__inner {
background: rgb(43, 40, 41)!important;
color: rgb(232, 230, 210)!important;
box-shadow: 0 1px 4px 0 #bebebe;
}