/*!
Theme Name: COMNAP-UC
Theme URI: http://underscores.me/
Author: UC IT team
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: comnap-uc
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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.

COMNAP-UC is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
	
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
    font-family: "Open sans", Helvetica, Arial, sans-serif;
	font-weight:400;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
	font-size: 2em;
	margin: 0.67em 0;
    color: #ab0000;
    font-weight:400;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: 600;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
    padding:8px;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */

legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
	display: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #111;
	font-family: "Open sans", Helvetica, Arial, sans-serif;
	font-weight:400;
	font-size: 16px;
	font-size: 1.1rem;
	line-height: 1.5;
}

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

p {
	margin-bottom: 1.5em;
}

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: 0.9375rem;
	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: 0.9375rem;
}

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

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

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

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

hr {
	border:0;
	border-bottom:1px solid #ccc;
	height: 1px;
	margin-bottom: 1.5em;
	clear:both;
	padding-top:10px;
}

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

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

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

.entry-content li{padding-bottom:5px;}

dt {
	font-weight: 700;
}

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: 1em 0;
    padding:0 0.4em;
    box-sizing: border-box;
	/* Extra wide images within figure tags don't overflow the content area. */
}

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border:none;
	border-radius: 3px;
	background: #ab0000;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: .8em 1em .8em;
	font-weight: 700;
	cursor:pointer;
	color:#fff;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	background-color:#7b0000;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 8px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
    padding:5px;
}

.select2-container .select2-selection--single{
    height:32px;
}

.woocommerce .quantity .qty {
    padding: 3px;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color:#ab0000;
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

a:visited {
	color:#7f0000;
}

a:hover, a:focus, a:active {
	color:#7f0000;
}

a:focus {
	outline: thin dotted;
}

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

h2 a:hover{
	color:#ab0000;
}
/*
###
Events box
###
*/
#pgc-2-0-1{
	background: #eee;
    padding: 10px 12px 0 12px;
}
.hrbg{
	border: 0;
    border-bottom: 18px solid #FFF;
    margin-bottom: 1.5em;
    margin-right: -15px;
    margin-left: -15px;
}
#pg-2164-2 > div, #pg-2164-3 > div, #pg-2164-4 > div, #pg-2164-5 > div, #pg-2164-6 > div, #pg-2164-8 > div{
	width:16.6%;
	margin-left:5px;
	margin-right:5px;
	height:200px;
}
#secondary.widget-area{
	/*display:none;*/
}
.widget_sow-editor h2 a{
	text-decoration:none;
}
.site-footer, .site-footer a{
    color: #fff;
	line-height: 1.4;
    font-size: 1.4rem;
	text-decoration: none;
    font-size: 14px;
}
.site-footer a, .site-footer a:visited {
    color: #fff;
}
.site-footer a:hover, .site-footer a:focus {
  color: #9d9d9d;
  text-decoration: none;
}

.site-footer ul, .site-footer ol {
  list-style-type: none;
   padding: 0;
   margin: 0;
}
.site-footer li {
  padding: 0 !important;
  margin-bottom: 4px;
}
.site-footer .sub-menu{
	display:none;
}
.site-footer h2{
	color: #b1b1b1;
    margin-top: 0px;
    margin-bottom: 30px;
	line-height: 1.4;
    font-size: 1.4rem;
    font-size: 14px;
	 text-transform: uppercase;
}
.site-footer .panel-grid-cell{
	width:25%;
}
.site-info{
	text-align:center;
	font-size:1em;
	padding:20px 0 40px 0;
	color:#8d8d8d;
}

.site-info a{
	color:#fff;
	text-decoration: none;
}
.panel-grid.panel-has-style>.panel-row-style,
.panel-grid.panel-no-style {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: nowrap;
	-ms-justify-content: space-between;
	justify-content: space-between
}

.panel-layout.panel-is-rtl .panel-grid.panel-has-style>.panel-row-style,
.panel-layout.panel-is-rtl .panel-grid.panel-no-style {
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse
}

.panel-grid-cell {
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

.panel-grid-cell .panel-cell-style {
	height: 100%
}

.panel-grid-cell .so-panel {
	zoom: 1
}

.panel-grid-cell .so-panel:before {
	content: "";
	display: block
}

.panel-grid-cell .so-panel:after {
	content: "";
	display: table;
	clear: both
}

.panel-grid-cell .panel-last-child {
	margin-bottom: 0
}

.panel-grid-cell .widget-title {
	margin-top: 0
}

body.siteorigin-panels-before-js {
	overflow-x: hidden
}

body.siteorigin-panels-before-js .siteorigin-panels-stretch {
	margin-right: -1000px!important;
	margin-left: -1000px!important;
	padding-right: 1000px!important;
	padding-left: 1000px!important
}


/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
	background:#e8e8e8;
	padding:0!important;
}

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

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

.main-navigation ul ul a {
	width:340px;
	text-align:left;
	text-transform: capitalize;
	color:#000!important;
}

.main-navigation ul ul a:hover{
	color:#000!important;
	background-color: #EEE;
}

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

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

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

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

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
/* .dataTable .col-title, .dataTable .col-content{
	width: 25% !important;
}
.dataTable .col-document_category{
	width: 15% !important;
}
.dataTable .col-year{
	width: 5% !important;
} */
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.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;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 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-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# 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;
	table-layout: fixed;
}

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

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

.hentry {
	margin: 0 0 0 0;
}

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

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

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

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

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.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;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .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%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

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

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

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

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



/* COMNAP Custom */

#page{
	max-width:1250px;
	margin:auto;
}

.site-branding{
	float:left;
	padding-left:40px;
}

.site-branding a img{
    display:block;
}

.site-branding a{
	display:block;
    padding:25px;
    background-color:#ab0000;
}
header.site-header{
	background-color:#ab0000;
}

.r-top-widget{
	font-size:1em;
	font-weight:700;
}

.site-header .r-top-widget{
	float:right;
	text-align:right;
	padding:35px 35px 0 0;
}

.r-top-widget a{
	text-decoration:none;
    display:block;
    color:#fff;
}

.r-top-widget a i{
    padding-right:8px;
}

header.entry-header{
	display:none;
}

nav#site-navigation{
	display:block;
	text-align:center;
    padding: 25px 0 25px 0;
}

nav#site-navigation ul{
	text-align:center;
	padding:10px 0;
}

nav#site-navigation li{
	display:inline-block; margin:0; padding:0;	
}

nav#site-navigation li a{
	color:#FFF;
	padding:12px 20px;
    position: relative;
}

nav#site-navigation li#menu-item-140 a i{
    right: -6px;
    top: 16px;
}

nav#site-navigation li a i{
	position: absolute;
    right: 4px;
    top: 19px;
    font-size: .9em;
}

nav#site-navigation li a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #FFF;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

nav#site-navigation li a:hover:after { 
  width: 100%; 
  left: 0; 
}
.site-header nav#site-navigation li.current-menu-item a{
    color:#000;
	background-color: #e8e8e8;
}
nav#site-navigation li.current-menu-item a{
    color:#000;
}

nav#site-navigation li.current-menu-item a:after{
  background:#b1b1b1;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left:0;
  position: absolute;
  width:100%;
}

nav#site-navigation ul.sub-menu li.current-menu-item a:after{
	display:none;
}

.site-header nav#site-navigation li.menu-item-has-children{
    padding-right:10px;
}

.site-header nav#site-navigation li.menu-item-has-children ul.sub-menu a{
    font-size:1em;
}

.site-header nav#site-navigation li.menu-item-has-children ul.sub-menu span{
    display:block;
    font-size:.75em;
    font-weight:normal;
    text-transform:uppercase;
}

#responsive-menu-pro-container #responsive-menu-pro ul.responsive-menu-pro-submenu li.responsive-menu-pro-item a{
    padding: 10px 10% 10px 10%;
    height:66px;
}

nav#site-navigation li a:hover{
	color:#000;
}

footer#colophon{
	background-color:#23282e;
	padding:20px;
}

.wrapper{
	max-width:1250px;
	margin:0 auto;
}

#banner-row{
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
   -moz-animation: fadein .5s; /* Firefox < 16 */
	-ms-animation: fadein .5s; /* Internet Explorer */
	 -o-animation: fadein .5s; /* Opera < 12.1 */
		animation: fadein .5s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

h2{
	color:#000;
	text-decoration:none;
}

h2 a{
	color:#000;
}

h1{
    font-family: "Open sans", Helvetica, Arial, sans-serif;
	font-size:2.0em;
	margin-top:40px;
    line-height: 1.2em;
}
.has-post-thumbnail .entry-content p:first-child
 {
	float:right;
}

h2{
	color:#000;
	font-size:1.3em;
    text-transform: capitalize;
    font-family: "Open sans", Helvetica, Arial, sans-serif;
}

h3{
	color:#000;
	font-size:1em;
    font-family: "Open sans", Helvetica, Arial, sans-serif;
}

h3.widget-title{
	font-size:1.4em;
}

.ln-tp{
	border-top:1px solid #ececec;
}

ul.rpwe-ul li h3 a{
	text-decoration:none;
}

.entry-footer{
	display:none;
}

footer#colophon{
    margin-top:30px;
}

footer#colophon nav#site-navigation li a i{
	display:none;
}

footer#colophon nav#site-navigation li a{
    color:#fff;
}

footer#colophon nav#site-navigation ul ul{
	display:none;
}

footer#colophon .site-branding{
	padding-top:20px;
}

ul#responsive-menu-pro a > i{
	display:none;
}

.blog-main{
	max-width:980px;
	margin:10px auto;
	padding:10px 25px;
}

.blog-main header.entry-header{
	display:block;
}

.entry-meta{
	font-size: .8em;
	padding-bottom: 10px;
}

.blog-main h2{
	padding-bottom:10px;
	margin:0;
}

.responsive-menu-pro-subarrow i{
	margin-top: 21px!important;
}
#tablepress-1{
	
}
/*
###
Events box
###
*/
#pgc-632-0-0{
	width: 66%;
    float: left;
}
#pgc-632-0-1{
	width: 33%;
    float: right;
}
#pgc-2-0-1, #pgc-632-0-1{
	background: #eee;
    padding: 0px 15px 15px 15px;
}
.upcoming, .members{
    font-size:.9em;
}

.upcoming h3{
    font-size:1.1em;
    color: #ab0000;
}
.upcoming h3 a{
	text-decoration:none;
}

#panel-2-0-1-0 .textwidget p:first-child, #panel-2-0-1-1 .textwidget p:first-child, .accesspractical{
	background-color: #cc0011;
    text-align: center;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
}
#pgc-632-0-1 .textwidget h2{
    text-align: center;
    color: #000;
    padding-top: 15px;
    padding-bottom: 15px;
	border-bottom: 1px solid #d9d9d9;
	
}
.entry-content > img + p:first-child
{
	float:right !important;
}
.so-widget-sow-slider{
	 max-height: 292px;
}
.so-widget-sow-image .widget-title{
	    font-size: 12px;
}
.so-widget-sow-image-default-d6014b76747a .sow-image-container .so-widget-image{
	width: 125px;
}
#pgc-632-0-1 .textwidget p{
    font-weight:bold;
}
#pgc-632-0-1 .textwidget p a{
    font-weight:normal;
}
.textwidget p {
	margin-bottom: 0em;
}
.textwidget p a{
	text-decoration:none;
}
#home-banner{
    height:274px;
}
.landing-box {
    background: #999999;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;    
}
.landing-box-image {
    background-size: cover;
    background-position: 50% 0;
    min-height: 200px;
}
.landing-box-text {
    padding-top: 1em;
    text-align: center;
    overflow-x: auto;
}
.landing-box-text,
.landing-box-text p{
    color: #fff;
    font-size: 10px;
    font-size: 1.0rem;
}
.login-wrapper, .tml-register{
	max-width:600px;
	margin:auto;
}

.members-nav{
	border-bottom:1px solid #dedede;
}

.members-nav ul{
	display:block;
	margin: 0;
	padding:0;
}

.members-nav ul li{
	display:inline-block;
	margin: 0;
	padding:0;
}
.members-nav ul li a{
	color:#4a4a4a;
	text-decoration:none;
	display:block;
	text-align:center;
	padding:20px 25px;
}
.members-nav ul li a:hover{
	color:#ab0000;
}

.posts-data-table{
	font-size:.8em;
}

.posts-data-table thead tr th{
	background:#000;
	color:#fff;
}

.posts-data-table tbody tr:nth-child(2n+2) td{
	background:#ececec;
}

td.col-download_link a, td.col-file a{
	text-indent:-9999em;
	display:block;
	position:relative;
	background: #ab0000;
	color:#fff;
	text-decoration:none;
	text-transform: uppercase;
	font-weight:bold;
	padding: 6px 54px;
}

td.col-download_link a:hover, td.col-file a:hover{
	background: #7a0000;
}

td.col-download_link a:after, td.col-file a:after{
	content:"Download";
	display:block;
	position:absolute;
	top: 27%;
    left: 12%;
    text-indent: 0;
	line-height:1em;
}

p#breadcrumbs{
	font-size:.9em;
	color:#888888;
	margin:0;
	padding:10px 0 0 0;
}

p#breadcrumbs a{
	color:#888888;
}

p#breadcrumbs a:hover{
	color:#ab0000;
}

.wp-caption .wp-caption-text{
	color:#565656;
	font-size:.9em;
	font-style:italic;
	margin: 0.5em 0 1em 0;
}

@media only screen and (max-width:1300px){
	nav#site-navigation{
		clear:both;
	}
    #page{
        padding:0 0px;
    }
	.so-widget-sow-slider, .sow-slider-base{
	 max-height: 292px;
	 min-height: 102px;
	}	
	#colophon img{
		width:150px !important;
	}
	
	#pg-2164-2 > div, #pg-2164-3 > div, #pg-2164-4 > div, #pg-2164-5 > div, #pg-2164-6 > div, #pg-2164-8 > div{
	width:33.3%;
	margin-left:5px;
	height:200px;
	margin-right:5px;
}
}

@media only screen and (min-width:1100px){
	
	.members-content{
		display:flex;
	}
	.members-content .members-nav{
		width:22%;
		padding-right:25px;
		margin-right:25px;
		border-right:1px solid #ddd;
		border-bottom:none;
		margin-top:35px;
	}
	.members-content .members-nav ul li{
		display:block;
		font-size:.9em;
	}
	.members-content .members-nav ul li a{
		text-align:left;
		padding: 12px 5px;
		border-bottom:1px solid #ddd;
	}
	.members-content .members-nav ul li a:hover{
		border-bottom-color:#ab0000;
	}
	#pg-2164-2 > div, #pg-2164-3 > div, #pg-2164-4 > div, #pg-2164-5 > div, #pg-2164-6 > div, #pg-2164-8 > div{
	width:66.6%;
	height:200px;
	margin-left:5px;
	margin-right:5px; 
} 
}

@media only screen and (max-width:780px){
	.site-branding{
		float: none;
		margin: auto;
		text-align: center;
        padding-left:0;
	}
	.site-header .r-top-widget {
		width:auto;
		float:none;
		text-align: center;
		padding: 5px 0 10px 0;
	}
	footer#colophon nav#site-navigation li{
		display:block;
	}
	footer#colophon nav#site-navigation li a{
		padding:7px 15px;
	}
   #pgc-1873-0-0, #pgc-1873-0-2{
		width:100%
	}
	.upcoming {
		padding: 0px 10px 10px 10px !important; 
	}
	.panel-grid.panel-has-style>.panel-row-style, .panel-grid.panel-no-style {
		    display: block;
	}
	#pg-2164-2 > div, #pg-2164-3 > div, #pg-2164-4 > div, #pg-2164-5 > div, #pg-2164-6 > div, #pg-2164-8 > div{
	width:100%;
	height:200px;
	margin-left:5px;
	margin-right:5px; 
} 
}

@media only screen and (max-width:620px){
	.r-top-widget, footer#colophon .r-top-widget{
		clear:both;
		text-align:center;
		width:auto;
		float:none;
	}
	footer#colophon .site-branding{
		float:none;
		text-align:center;
	}
	footer#colophon .site-branding a, .site-branding a svg{
		display:inline-block;
	}
}