/*!
 * Theme Name: Mystery
 * Theme URI: https://www.theme-junkie.com/themes/mystery
 * Description: A clean and modern Magazine WordPress theme.
 * Version: 1.0.0
 * Author: Theme Junkie
 * Author URI: https://www.theme-junkie.com/
 * Tags: blue, two-columns, right-sidebar, responsive-layout, custom-background, custom-menu, editor-style, threaded-comments, translation-ready
 * Text Domain: mystery
 * 
 * License: GNU General Public License v2.0 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 *
 * Mystery WordPress Theme, Copyright 2015 https://www.theme-junkie.com/
 * Mystery is distributed under the terms of the GNU GPL
 *
 * Please DO NOT EDIT THIS FILE, if you want to customize the styles, you can create a child theme
 * See: https://codex.wordpress.org/Child_Themes
 */
/*-----------------------------------------------------------------------
[Table of contents]

1. Reset
2. Basic
3. Structure
4. Header
5. Navigation
6. Content
	-6.3 Featured Content 
	-6.6 Pagination
	-6.7 Singular
	-6.8 Comments
7. Sidebar
8. Footer

10. Misc
	-10.1 Layouts
	-10.2 Social Icons
	-10.3 Forms
---------------------------------------------------------------------- */
/**
 * 1. Reset
 * -----------------------------------------------------------------------------
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #e9e9e9;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  -webkit-appearance: none;
}

sup {
  top: -.5em;
}

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

/**
 * 2. Basic
 * -----------------------------------------------------------------------------
 */
/**
 * 2.1 Defaults
 * -----------------------------------------------------------------------------
 */
/**
green
$theme-color: #37B248;

deep green
$theme-color: #228B22;

DARKSEAGREEN
$theme-color: #8FBC8F;

DARKTURQUOISE
$theme-color: #00CED1;

$color1: #f5f5f5;
$color2: #e9e9e9; 

*/
body {
  background-color: #fff;
  color: #333333;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
  font-weight: 700;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.6em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

strong {
  font-weight: 700;
}

.clearfix:before, .widget_archive:before,
.widget_categories:before, .widget_archive li:before,
.widget_categories li:before,
.clearfix:after,
.widget_archive:after,
.widget_categories:after,
.widget_archive li:after,
.widget_categories li:after {
  content: "";
  display: table;
}

.clearfix:after, .widget_archive:after,
.widget_categories:after, .widget_archive li:after,
.widget_categories li:after {
  clear: both;
}

.clearfix, .widget_archive,
.widget_categories, .widget_archive li,
.widget_categories li {
  clear: both;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  margin-bottom: 15px;
}

input[type="text"],
input.txt {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  height: 36px;
  padding: 0 10px;
}

input:focus,
input:hover {
  outline: none;
}

textarea {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  padding: 10px;
}

textarea:focus {
  outline: none;
}

button {
  border: none;
  border-radius: 2px;
  font-size: 12px;
  height: 42px;
}

button:focus {
  outline: none;
}

table {
  width: 100%;
  margin-bottom: 2.618em;
}

table th,
table td {
  border-bottom: 1px solid #e8e4e3;
  padding: 1em;
  vertical-align: top;
  text-align: left;
}

table th {
  text-transform: uppercase;
  border-bottom: 1px solid #e8e4e3;
}

table tr th:first-child,
table tr td:first-child {
  padding-left: 0;
}

table tr th:last-child,
table tr td:last-child {
  padding-right: 0;
}

/**
 * 2.2 Hyperlinks
 * -----------------------------------------------------------------------------
 */
a:link,
a:visited {
  outline: none;
  text-decoration: none;
  -webkit-transition: background-color .2s ease, border .2s ease, color .2s ease, opacity .2s ease-in-out;
  -moz-transition: background-color .2s ease, border .2s ease, color .2s ease, opacity .2s ease-in-out;
  -ms-transition: background-color .2s ease, border .2s ease, color .2s ease, opacity .2s ease-in-out;
  -o-transition: background-color .2s ease, border .2s ease, color .2s ease, opacity .2s ease-in-out;
  transition: background-color .2s ease, border .2s ease, color .2s ease, opacity .2s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

a:active {
  outline: none;
}

/**
 * 2.3 Typography
 * -----------------------------------------------------------------------------
 */
@font-face {
  font-family: 'Open Sans';
  src: url("assets/fonts/OpenSans-Light_v1.1.0.eot");
  src: url("assets/fonts/OpenSans-Light.eot") format("embedded-opentype"), url("assets/fonts/OpenSans-Light_v1.1.0.woff") format("woff"), url("assets/fonts/OpenSans-Light_v1.1.0.ttf") format("truetype"), url("assets/fonts/OpenSans-Light_v1.1.0-OpenSansBold.svg") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url("assets/fonts/OpenSans-Regular_v1.1.0.eot");
  src: url("assets/fonts/OpenSans-Regular.eot") format("embedded-opentype"), url("assets/fonts/OpenSans-Regular_v1.1.0.woff") format("woff"), url("assets/fonts/OpenSans-Regular_v1.1.0.ttf") format("truetype"), url("assets/fonts/OpenSans-Regular_v1.1.0-OpenSansBold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url("assets/fonts/OpenSans-Italic_v1.1.0.eot");
  src: url("assets/fonts/OpenSans-Italic.eot") format("embedded-opentype"), url("assets/fonts/OpenSans-Italic_v1.1.0.woff") format("woff"), url("assets/fonts/OpenSans-Italic_v1.1.0.ttf") format("truetype"), url("assets/fonts/OpenSans-Italic_v1.1.0-OpenSansBold.svg") format("svg");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Open Sans';
  src: url("assets/fonts/OpenSans-Bold_v1.1.0.eot");
  src: url("assets/fonts/OpenSans-Bold.eot") format("embedded-opentype"), url("assets/fonts/OpenSans-Bold_v1.1.0.woff") format("woff"), url("assets/fonts/OpenSans-Bold_v1.1.0.ttf") format("truetype"), url("assets/fonts/OpenSans-Bold_v1.1.0-OpenSansBold.svg") format("svg");
  font-weight: bold;
  font-style: normal;
}
/**
 * 3. Structure
 * -----------------------------------------------------------------------------
 */
.container {
  margin: 0 auto !important;
  width: 1200px !important;
}

.site-main {
  background: url("assets/img/bg-main.png") repeat-y top right;
}

/**
 * 4. Header
 * -----------------------------------------------------------------------------
 */
#masthead {
  position: relative;
  height: 120px;
}

#logo {
  float: left;
  margin: 35px 0 0 0;
}

.site-title {
  font-size: 32px;
  padding: 15px 0;
}

#secondary-bar {
  background-color: #00aeef;
  display: block;
  width: 100%;
  z-index: 100;
}

/**
 * 5. Navigation
 * -----------------------------------------------------------------------------
 */
.sf-menu, .sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sf-menu li {
  position: relative;
}

.sf-menu ul {
  position: absolute;
  background: #ffffff;
  display: none;
  top: 100%;
  left: 0;
  padding: 10px 0;
}

.sf-menu > li {
  float: left;
}

.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  display: block;
}

.sf-menu ul ul {
  top: 0;
  left: 225px;
  margin-top: -10px;
}

.sf-menu a {
  display: block;
  position: relative;
  padding: 0 20px;
}

.sf-menu ul a {
  font-size: 1em;
}

.sf-menu li {
  z-index: 100;
}

.sf-menu ul li {
  width: 225px;
}

.sf-arrows .sf-with-ul {
  padding-right: 30px !important;
}

.sf-arrows .sf-with-ul:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 7px;
  margin-top: -2px;
  margin-right: 9px;
  height: 0;
  width: 0;
  border: 4px solid transparent;
  border-top-color: #fff;
}

.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: #00aeef;
}

.sf-arrows ul .sf-with-ul:after {
  margin-top: -5px;
  margin-right: 10px;
  border-color: transparent;
  border-left-color: #00aeef;
}

.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
  border-left-color: #00aeef;
}

/**
 * 5.1 Primary Navigation
 * -----------------------------------------------------------------------------
 */
#primary-bar {
  background: #f8f8f8;
  border-bottom: 1px solid #ebebeb;
  width: 100%;
  height: 42px;
  line-height: 42px;
  z-index: 100;
}

#primary-nav .sf-arrows > li > .sf-with-ul:focus:after,
#primary-nav .sf-arrows > li:hover > .sf-with-ul:after,
#primary-nav .sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: #00aeef;
}
#primary-nav ul li {
  float: left;
  z-index: 999;
}
#primary-nav ul li:first-child a {
  border-left: 1px solid #f0f0f0;
}
#primary-nav ul li a {
  border-right: 1px solid #f0f0f0;
  color: #333;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}
#primary-nav ul li a.sf-with-ul {
  height: 43px;
}
#primary-nav ul li a.sf-with-ul:after {
  border-top-color: #ddd;
  margin-top: -3px;
}
#primary-nav ul li a:hover, #primary-nav ul li.sfHover a, #primary-nav ul li.current_item a {
  background-color: #fff;
  color: #00aeef;
  text-decoration: none;
}
#primary-nav ul li ul {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-top: none;
  margin-top: 0;
  margin-left: -1px;
}
#primary-nav ul li ul li:first-child a {
  border-left: none;
}
#primary-nav ul li ul li a:link, #primary-nav ul li ul li a:visited {
  border-right: 0;
  color: #333;
  font-size: 13px;
  line-height: 1;
  padding: 12px 20px;
  text-transform: none;
}
#primary-nav ul li ul li a:hover {
  text-decoration: underline;
}
#primary-nav ul li ul li a.sf-with-ul {
  border: none;
  height: auto;
}
#primary-nav ul li ul li a.sf-with-ul:after {
  border-top-color: transparent;
  color: #ddd;
  margin-top: auto;
  top: 14px;
}
#primary-nav ul li ul li ul {
  border-top: 1px solid #f0f0f0;
  margin-top: -11px;
  margin-left: 0;
}
#primary-nav ul li ol li a:hover {
  text-decoration: underline;
}

/**
 * 5.2 Secondary Navigation
 * -----------------------------------------------------------------------------
 */
#secondary-nav {
  float: left;
  z-index: 50;
}
#secondary-nav .sf-menu ul {
  background: #ddf0f9;
  border-bottom: 5px solid #00aeef;
}

#secondary-nav ul li a {
  color: #ffffff;
  display: block;
  font-size: 13px;
  font-weight: bold;
  padding: 13px 20px;
}

#secondary-nav ul li a:hover,
#secondary-nav ul li.current_item a,
#secondary-nav ul li.sfHover a {
  background-color: #ddf0f9;
  color: #00aeef;
  text-decoration: none;
}

#secondary-nav ul.sf-menu li li a {
  background-color: transparent;
  line-height: 1;
  color: #00aeef;
  font-size: 13px;
  font-weight: normal;
  padding: 9px 20px;
}

#secondary-nav ul.sf-menu li li a:hover {
  text-decoration: underline;
}

/**
 * 5.3 Mega Menu
 * -----------------------------------------------------------------------------
 */
#primary-nav .sf-mega-parent {
  position: static;
}
#primary-nav .sf-mega {
  border-bottom: 1px solid #e9e9e9;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
#primary-nav .links li a:link,
#primary-nav .links li a:visited {
  color: #333;
}
#primary-nav .posts .sub-cats {
  background-color: #f5f5f5;
}
#primary-nav .posts .sub-cats li {
  float: none;
  width: 100%;
}
#primary-nav .posts .sub-cats li a {
  background: none;
  color: #333;
  display: block;
  font-weight: normal !important;
  line-height: 1;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
#primary-nav .posts .sub-cats li a:hover {
  background-color: #fff !important;
}
#primary-nav .posts .cat-posts .post-list a {
  border-right: none;
}

#secondary-nav .sf-mega-parent {
  position: static;
}
#secondary-nav .sf-mega {
  border-bottom: 5px solid #00aeef;
  background-color: #ddf0f9;
  margin-left: -1px;
}

.sf-mega {
  width: 100%;
  position: absolute;
  display: none;
  left: 1px;
  z-index: 999;
}

.sf-menu li:hover > .sf-mega,
.sf-menu li.sfHover > .sf-mega {
  display: block;
}

.sf-mega ol {
  display: block;
  position: static;
}

.sf-mega li a {
  font-size: 13px !important;
  text-transform: none !important;
}

/* Links */
.links {
  width: 100% !important;
  padding: 20px 0;
}
.links li {
  border-right: 1px dotted rgba(0, 0, 0, 0.1);
  display: block;
  float: left;
  font-size: 13px;
  line-height: 1.3;
  width: 200px !important;
  margin-right: 20px;
  padding-right: 20px;
}
.links li:last-child, .links li:last-child > li {
  border-right: none !important;
  margin-right: 0 !important;
  padding-right: 20px !important;
}
.links li span.column-heading {
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
}
.links li ol {
  display: block;
  margin: 0 20px 0 0 !important;
}
.links li ol li {
  background: none;
  border-right: none;
  margin: 0;
}
.links li ol li a {
  border: none !important;
  font-weight: normal !important;
  line-height: 1.4 !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
}
.links li ol li:last-child a {
  margin-bottom: 0 !important;
}

/* Posts */
.posts {
  width: 100%;
}
.posts .sub-cats {
  background-color: #c7e6f5;
  float: left;
  width: 195px;
  min-height: 240px;
  text-align: right;
}
.posts .sub-cats li {
  background: none !important;
}
.posts .sub-cats li:first-child {
  margin-top: 20px;
}
.posts .sub-cats li:last-child {
  margin-bottom: 20px;
}
.posts .sub-cats li a {
  border: none !important;
  font-size: 13px !important;
  font-weight: bold !important;
  margin: 0 !important;
  padding: 8px 15px 8px 10px !important;
}
.posts .sub-cats li a:hover {
  background-color: #ddf0f9 !important;
  text-decoration: none !important;
}
.posts .sub-cats li a:after {
  color: transparent;
  font-family: FontAwesome;
  font-size: 9px !important;
  content: "\f054";
  margin-left: 10px;
}
.posts .sub-cats li:hover > a:after {
  color: #00aeef;
}
.posts .cat-posts {
  float: left;
  width: 980px;
  padding: 20px 0 20px 20px;
}
.posts .cat-posts .post-list {
  float: left !important;
  width: 230px;
  margin-right: 20px;
}
.posts .cat-posts .post-list:last-child {
  margin-right: 0;
}
.posts .cat-posts .post-list a {
  display: block;
  line-height: 1.3 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.posts .cat-posts .post-list a:hover {
  background: none !important;
}
.posts .cat-posts .post-list img {
  margin: 0 0 10px 0;
  width: 100%;
}
.posts .cat-posts .post-list .entry-title {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 5px;
  text-transform: none;
}
.posts .cat-posts .post-list .entry-meta {
  color: #999999;
  font-size: 11px;
  font-weight: 400;
}

.header-social {
  float: right;
  margin-top: 11px;
}
.header-social a {
  display: inline-block;
  padding: 2px 8px;
}
.header-social a .fa {
  color: #fff;
  font-size: 16px;
}

/**
 * 5.5 Header Search
 * -----------------------------------------------------------------------------
 */
.header-search {
  float: right;
  position: relative;
  margin: 0;
  padding: 0;
}
.header-search #search-form {
  position: relative;
}
.header-search #search-form input {
  background-color: #fff !important;
  border: none;
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  border-radius: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  width: 140px;
  height: 42px;
  margin-top: -3px;
  padding-left: 40px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.header-search #search-form input:focus {
  width: 180px;
}
.header-search #search-form button,
.header-search #search-form button:hover {
  background: none !important;
  border: none;
  color: #333;
  position: absolute;
  width: 32px;
  top: 0;
  left: 5px;
}

/**
 * 6. Content
 * ----------------------------------------------------------------------------
 */
.content-area {
  float: left;
  width: 840px;
  height: auto;
  padding: 30px 0;
}

.hentry .entry-title {
  line-height: 1.3;
  margin-bottom: 10px;
}

.hentry .entry-meta {
  color: #9f9f9f;
  margin-bottom: 10px;
}

.entry-comment a:link,
.entry-comment a:visited {
  color: #9f9f9f;
}

.entry-comment a:hover {
  color: #333333;
}

.entry-title a:link,
.entry-title a:visited {
  color: #333333;
  display: block;
}

.section-title {
  border-bottom: 5px solid #e9e9e9;
  color: #333;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}
.section-title a:link, .section-title a:visited {
  color: #333333;
}
.section-title a:hover {
  text-decoration: none;
}

/**
 * 6.2 Featured Content
 * -----------------------------------------------------------------------------
 */
/**
 * 6.3 Content Blocks
 * -----------------------------------------------------------------------------
 */
.entry-meta {
  font-size: 12px;
  text-transform: uppercase;
}
.entry-meta span {
  margin-right: 5px;
}
.entry-meta .sep {
  color: #e9e9e9;
  font-weight: 300;
}

.entry-category {
  font-weight: bold;
}
.entry-category a:link,
.entry-category a:visited {
  color: #333;
}

.entry-tags a:link,
.entry-tags a:visited {
  color: #9f9f9f;
}

.single .entry-header {
  margin-bottom: 20px;
  position: relative;
}
.single .entry-category a {
  border-bottom: 2px solid #ff6644;
  color: #f3502a;
  font-size: 16px;
  text-transform: uppercase;
}
.single .entry-category a:hover {
  text-decoration: none;
}

.entry-comments {
  color: #00aeef;
  font-weight: bold;
}

.article-first .entry-title {
  font-size: 22px;
}

/**
 * 6.5 Listings
 * -----------------------------------------------------------------------------
 */
.content-loop {
  float: left;
  width: 640px;
}

.loop-blog .hentry {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.loop-blog .hentry .entry-title {
  font-size: 32px;
  margin-bottom: 20px;
}
.loop-blog .hentry .entry-thumbnail {
  width: 100%;
  margin-bottom: 15px;
}
.loop-blog .hentry .entry-summary {
  margin-bottom: 20px;
}

.loop-list .hentry {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.loop-list .hentry .entry-title {
  margin-bottom: 20px;
}
.loop-list .hentry .entry-summary {
  margin-bottom: 20px;
}
.loop-list .thumbnail-left .entry-thumbnail {
  float: left;
  margin: 0 20px 0 0;
}
.loop-list .thumbnail-right .entry-thumbnail {
  float: right;
  margin: 0 0 0 20px;
}

.line {
  display: block;
  width: 100%;
  border-top: 1px solid #e9e9e9;
  height: 1px;
}

.loop-grid .hentry {
  float: left;
  margin: 20px 19px 20px 0;
  width: 300px;
}
.loop-grid .hentry:nth-of-type(2n) {
  border-left: 1px dotted #ddd;
  margin-right: 0;
  padding-left: 20px;
}
.loop-grid .hentry:nth-of-type(1), .loop-grid .hentry:nth-of-type(2) {
  margin-top: 0;
}
.loop-grid .hentry .entry-title {
  color: #333333;
  font-size: 28px;
}
.loop-grid .hentry .entry-summary {
  margin-bottom: 10px;
}

.loop-grid1 .entry-thumbnail {
  width: 100%;
  margin-bottom: 10px;
}

.loop-grid2 .hentry .entry-thumbnail {
  float: left;
  margin: 0 15px 15px 0;
}
.loop-grid2 .hentry .entry-title {
  font-size: 24px;
  display: table;
  margin-bottom: 10px;
}
.loop-grid2 .hentry .entry-summary {
  clear: both;
}

/**
 * 6.6 Pagination
 * -----------------------------------------------------------------------------
 */
.pagination {
  font-size: 12px;
  letter-spacing: 1px;
  margin: 50px 0;
  text-transform: uppercase;
  text-align: center;
}
.pagination .page-numbers {
  border-radius: 3px;
  padding: 6px 11px;
  margin: 0 1px;
  display: inline-block;
  color: #999999;
  text-decoration: none;
}
.pagination .page-numbers:hover {
  background-color: #f0f0f0;
}
.pagination .page-numbers.current {
  background-color: #00aeef;
  color: #fff;
  font-weight: bold;
}
.pagination .prev,
.pagination .next {
  background-color: #f0f0f0;
}
.pagination .prev:hover,
.pagination .next:hover {
  background-color: #333;
  color: #fff;
}

/**
 * 6.7 Singular
 * ----------------------------------------------------------------------------
 */
.hentry h1.entry-title {
  color: #333333;
  font-size: 40px;
  margin-bottom: 20px;
}

.page-title {
  margin-bottom: 20px;
}

.post-nav {
  position: absolute;
  top: 1px;
  right: 0;
}
.post-nav .fa {
  border: 1px solid #dddddd;
  border-radius: 50%;
  color: #999999;
  text-decoration: none;
  font-size: 12px;
  height: 16px;
  width: 16px;
  line-height: 16px;
  text-align: center;
}
.post-nav a:hover .fa {
  border-color: #999999;
}

.black a:link, .single .entry-meta .entry-author a:link,
.black a:visited,
.single .entry-meta .entry-author a:visited {
  color: #333;
}
.black a:hover, .single .entry-meta .entry-author a:hover {
  color: #00aeef;
}

.no-underline a:hover, .single .entry-share ul li a:hover {
  text-decoration: none;
}

.single .entry-meta {
  margin-bottom: 15px;
  padding: 0;
}
.single .entry-meta .avatar {
  float: left;
  margin: 0 15px 0 0;
}
.single .entry-meta .entry-author {
  display: block;
  font-weight: bold;
  margin: 4px 0 3px 0;
}
.single .entry-share {
  margin-bottom: 20px;
}
.single .entry-share ul li {
  border-radius: 3px;
  list-style: none;
  float: left;
  width: 125px;
  margin-right: 15px;
}
.single .entry-share ul li a {
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 8px 15px;
  text-transform: uppercase;
}
.single .entry-share ul li a .fa {
  font-size: 14px;
  margin-right: 10px;
}
.single .entry-share ul li.twitter {
  background-color: #00aced;
}
.single .entry-share ul li.facebook {
  background-color: #3b5998;
}
.single .entry-share ul li.google-plus {
  background-color: #dd4b39;
}
.single .entry-share ul li.linkedin {
  background-color: #007bb6;
}
.single .entry-share ul li.pinterest {
  background-color: #C92228;
}
.single .entry-share ul li.email {
  background-color: #aad450;
}

.entry-footer {
  margin: 30px 0 0 0;
}

/* Related Posts */
.related-posts {
  width: 100%;
  margin-bottom: 40px;
}
.related-posts h3 {
  border-bottom: 1px solid #e9e9e9;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.related-posts ul li {
  float: left;
  list-style: none;
  width: 23.5%;
  padding-right: 2%;
}
.related-posts ul li:last-child {
  padding-right: 0;
}
.related-posts ul li img {
  width: 100%;
  margin-bottom: 5px;
}
.related-posts ul li a {
  display: block;
}
.related-posts ul li .entry-title {
  font-size: 16px;
  font-weight: bold;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin-bottom: 15px;
}
.entry-content strong {
  font-weight: 700;
}
.entry-content p {
  margin-bottom: 15px;
}
.entry-content ul,
.entry-content ol {
  margin: 0 0 20px 20px;
}
.entry-content ul li {
  list-style: disc;
  margin: 10px 0;
}
.entry-content ol li {
  list-style: decimal;
  margin: 10px 0;
}

blockquote {
  color: #999999;
  font-style: italic;
  margin: 0.5em 0 1em;
  padding: 0.25em 50px;
  line-height: 1.45;
  position: relative;
}
blockquote:before {
  display: block;
  content: "\201C";
  font-size: 80px;
  position: absolute;
  left: -10px;
  top: -20px;
  color: #cccccc;
}
blockquote cite {
  color: #333333;
  display: block;
  margin-top: 10px;
}
blockquote cite:before {
  content: "\2014 \2009";
}

/* Members */
.members {
  margin: 0 !important;
  padding: 0;
}
.members .member {
  padding: 2% 0 2% 4%;
  width: 45%;
  float: left;
  list-style: none;
}
.members .member:nth-of-type(2n+1) {
  clear: left;
  padding-left: 0;
}
.members .member .member-photo {
  float: left;
  width: 100px;
  max-width: 100%;
  margin-right: 30px;
}
.members .member .member-photo img {
  border-radius: 50%;
  margin-bottom: 20px;
  width: 100%;
}
.members .member .member-photo .member-social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.members .member .member-photo .member-social li {
  display: inline-block;
  font-size: 12px;
  margin: 0 2px;
}
.members .member .member-content {
  position: relative;
  overflow: hidden;
}
.members .member .member-content:before {
  content: '';
  width: 56px;
  height: 1px;
  background: #dededc;
  position: absolute;
  top: 0;
}
.members .member .member-content .member-name {
  margin: 18px 0 0;
}
.members .member .member-content .member-position {
  color: #999;
}
.members .member .member-content .member-desc {
  line-height: 1.5em;
}

/**
 * 6.8 Comments
 * ----------------------------------------------------------------------------
 */
/* Comment List */
#comments {
  position: relative;
}

#comments header h2 {
  font-size: 16px;
}

#comments .commentlist {
  clear: both;
  list-style: none;
  padding-top: 1.618em;
  margin-bottom: 3.631em;
}

#comments .commentlist:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

#comments .commentlist li.comment {
  background-color: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  margin-bottom: 1.618em;
  padding: 20px;
  position: relative;
  list-style: none;
}

#comments .commentlist li.comment .comment-head span {
  display: block;
}

#comments .commentlist li.comment:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

#comments .commentlist li.comment .comment-container:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

#comments .commentlist li.comment .comment-container div.avatar {
  float: left;
}

#comments .commentlist li.comment .comment_container div.avatar img {
  border-radius: 50%;
}

#comments .commentlist li.comment .comment-container .comment-head,
#comments .commentlist li.comment .comment_container .comment-text {
  float: left;
  margin-left: 20px;
}

#comments .commentlist li.comment .comment-container .comment-entry {
  clear: both;
  margin-left: 72px;
}

#comments .commentlist li.comment .comment-container .comment-head {
  margin-bottom: .618em;
}

#comments .commentlist li.comment .comment-head .name {
  font-size: 24px;
  font-weight: 300;
}

#comments .commentlist li.comment .comment-head .date a {
  color: #999999;
  font-size: 11px;
}

#comments .commentlist li.comment .comment-head .date a:hover {
  color: #47a7d7;
}

#comments .commentlist li.comment img.avatar {
  border-radius: 50%;
  height: auto;
  float: left;
  width: 52px;
}

#comments .commentlist li.comment .comment_container .comment-text {
  width: 91.35%;
}

#comments .commentlist li.comment ul.children {
  margin-left: 1.618em;
  padding-top: 1.618em;
}

#comments .commentlist li.comment .depth-2 {
  background-color: #f3f3f3;
}

#comments .commentlist li.comment .depth-3 {
  background-color: #fcfcfc;
}

#comments .commentlist li.comment .depth-4 {
  background-color: #f3f3f3;
}

#comments .commentlist li.comment .reply {
  font-size: 11px;
  position: absolute;
  top: 25px;
  right: 20px;
}

#comments .commentlist li.comment .reply a {
  color: #999999;
}

#comments .commentlist li.comment #respond {
  padding-top: 1.618em;
}

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

#comments .pingbacks li.pingback {
  margin: 0 0 1.618em;
}

#comments .pingbacks li.pingback .reply {
  display: none;
}

#comments .nocomments {
  padding: 1.618em 0;
  margin: 1.618em 0;
  border: 4px double #e8e4e3;
  border-right: 0;
  border-left: 0;
}

/* Comment Form */
#respond {
  margin-bottom: 3.631em;
}
#respond .required {
  color: red;
}
#respond label {
  color: #877c78;
  display: inline-block;
  font-size: 13px;
  margin-bottom: 5px;
}
#respond #reply-title {
  font-size: 16px;
  margin-bottom: 20px;
}
#respond #reply-title small {
  margin-left: 10px;
  font-size: .618em;
}
#respond #commentform .comment-form-author,
#respond #commentform .comment-form-email,
#respond #commentform .comment-form-url {
  width: 30.25%;
  float: left;
  margin-right: 3.8%;
}
#respond #commentform .comment-form-url {
  margin-right: 0;
}
#respond #commentform .comment-form-comment {
  clear: both;
}
#respond #commentform .fa {
  margin-right: 5px;
}
#respond #commentform p {
  margin-bottom: 20px;
}
#respond #commentform input.txt,
#respond #commentform textarea {
  width: 97.4%;
}
#respond #commentform .btn {
  padding: 12px 15px;
  height: auto;
}

.nav-previous {
  float: left;
}

.nav-next {
  float: right;
}

/**
 * 7. Sidebar
 * -----------------------------------------------------------------------------
 */
.sidebar1 {
  float: right;
  width: 170px;
}

.sidebar2 {
  width: 300px;
  padding: 30px 20px;
  float: right;
}

.widget {
  margin-bottom: 30px;
}
.widget .widget-title {
  border-bottom: 5px solid #e9e9e9;
  color: #333333;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.widget p {
  margin-bottom: 15px;
}
.widget ul > li {
  border-bottom: 1px solid #e9e9e9;
  list-style: none;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.widget_posts ul > li {
  border-bottom: 1px solid #e9e9e9;
}
.widget_posts .entry-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.entry-views {
  background-image: url(assets/img/fire.png);
  background-size: 16px 16px;
  background-position: 0 1px;
  background-repeat: no-repeat;
  color: #f3502a;
  font-size: 13px;
  font-weight: bold;
  padding-left: 16px;
  background-image: url("assets/img/fire.png");
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .entry-views {
    background-image: url("assets/img/fire-2x.jpg");
    background-size: 16px 16px;
  }
}

/* Newsletter Widget */
.widget_newsletter p {
  margin-bottom: 15px;
}
.widget_newsletter input {
  background: #fff;
  width: 170px;
  height: 30px;
}
.widget_newsletter button {
  width: 60px;
}

/* Tabs Widget */
.widget_tabs {
  margin-bottom: 20px;
}
.widget_tabs .tabs-nav {
  height: 36px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible;
}
.widget_tabs .tabs-nav li {
  background: none;
  border-bottom: none;
  display: inline-block;
  list-style: none;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
  padding: 0;
  text-align: center;
}
.widget_tabs .tabs-nav li a {
  display: block;
  margin: 0 15px 0 0;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  height: 36px;
  line-height: 1.3;
  position: relative;
  text-transform: uppercase;
}
.widget_tabs .tabs-nav li a:after {
  display: block;
  font-family: "FontAwesome";
  content: "\f107";
  color: transparent;
}
.widget_tabs .tabs-nav li a:hover {
  color: #00aeef;
  text-decoration: none;
}
.widget_tabs .tabs-nav li.active a:after {
  color: #00aeef;
}
.widget_tabs .tab-content ul li {
  background-color: #fff;
  border-bottom: 1px solid #f5f5f5;
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget_tabs .tab-content ul li:last-child {
  border-bottom: none;
}
.widget_tabs .tab-content ul li .entry-thumbnail {
  float: left;
  width: 64px;
  height: 64px;
  margin: 0 10px 0 0;
}
.widget_tabs .tab-content ul li .entry-title {
  font-size: 14px;
  font-weight: 400;
}
.widget_tabs .tab-content ul li .entry-meta {
  margin-top: 5px;
  color: #9f9f9f;
  font-size: 11px;
  text-transform: uppercase;
}
.widget_tabs .tab-content ul li a {
  display: block;
  padding: 15px;
}
.widget_tabs .tab-content ul li a:hover {
  background-color: #00aeef;
  text-decoration: none;
}
.widget_tabs .tab-content ul li a:hover .entry-title,
.widget_tabs .tab-content ul li a:hover .entry-meta {
  color: #fff;
}
.widget_tabs #tab3 li a {
  display: block;
}
.widget_tabs #tab3 li a span {
  color: #999999;
  display: block;
  font-size: 12px;
}
.widget_tabs #tab3 li a strong {
  color: #333333;
  display: block;
  margin-bottom: 5px;
}
.widget_tabs #tab3 li a:hover strong,
.widget_tabs #tab3 li a:hover span {
  color: #fff;
}
.widget_tabs #tab4 a {
  background-color: #fff;
  border-radius: 3px;
  color: #999999;
  display: inline-block;
  margin: 0 3px 6px 0;
  padding: 5px 10px;
  text-transform: lowercase;
}
.widget_tabs #tab4 a:hover {
  background-color: #00aeef;
  color: #ffffff;
  text-decoration: none;
}

/* 125 Ad Widget */
.widget_125 img {
  background: #ffffff;
  border: 1px solid #eeeeee;
  margin: 0 0 5px 0;
  padding: 9px;
}

.sidebar2 .widget_125 img.img-right {
  float: right;
}

/* Twitter Widget */
.widget_twitter ul li {
  background: none !important;
  padding-left: 26px !important;
}
.widget_twitter ul li .timestamp a:link,
.widget_twitter ul li .timestamp a:visited {
  color: #9f9f9f;
  font-size: 11px;
  font-style: italic;
}
.widget_twitter ul li:before {
  margin-left: -26px;
  width: 26px;
  font-family: 'FontAwesome';
  content: "\f099";
  display: inline-block;
  font-size: 14px;
  float: left;
  margin-top: 0px;
  color: #09C;
}

/* Ad Widget */
.widget_ads {
  text-align: center;
}
.widget_ads .widget-title {
  background: none;
  border: none;
  color: #9f9f9f;
  font-size: 10px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}

/* Posts Thumbnail Widget */
.widget_posts_thumbnail li:before,
.widget_posts_thumbnail li:after {
  content: "";
  display: table;
}
.widget_posts_thumbnail li:after {
  clear: both;
}
.widget_posts_thumbnail .entry-thumbnail {
  float: left;
  margin: 0 15px 0 0;
}
.widget_posts_thumbnail .entry-meta {
  color: #999;
  margin-top: 3px;
}

/**
 * 8. Footer
 * -----------------------------------------------------------------------------
 */
#footer {
  font-size: 13px;
  padding: 30px 0 0 0;
}
#footer .widget .widget-title {
  border-bottom: none;
  margin-bottom: 15px;
}
#footer .widget ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#footer .widget_newsletter {
  box-shadow: none;
  -webkit-box-shadow: none;
  border: none;
  padding: 0;
}
#footer .widget_newsletter input {
  background: #fff;
  width: 140px;
  height: 32px;
  margin: 0;
}

.footer-column-1,
.footer-column-2,
.footer-column-3 {
  float: left;
  width: 22.5%;
  padding-right: 3%;
}

.footer-column-4 {
  float: left;
  width: 23.5%;
  padding-right: 0;
}

/* Site Bottom */
#site-bottom {
  border-top: 1px solid #e9e9e9;
  color: #333;
  font-size: 12px;
  padding: 20px 0;
}
#site-bottom a:link,
#site-bottom a:visited {
  color: #333;
}
#site-bottom #footer-nav {
  float: left;
}
#site-bottom #footer-nav ul > li {
  border-left: 1px solid #e9e9e9;
  display: inline;
  list-style: none;
  padding: 0 10px;
}
#site-bottom #footer-nav ul > li:first-child {
  border-left: none;
  padding-left: 0;
}
#site-bottom #footer-nav ul > li li {
  display: none;
}
#site-bottom .copyright {
  float: right;
}

.footer-light {
  border-top: 1px solid #e9e9e9;
}

.footer-dark {
  background-color: #222;
  color: #999;
}
.footer-dark .widget .widget-title {
  color: #fff;
}
.footer-dark .widget ul > li {
  border-color: #2e2e2e;
}
.footer-dark .widget a:link, .footer-dark .widget a:visited {
  color: #fff;
}
.footer-dark .widget a:hover {
  color: #00aeef;
}
.footer-dark .widget_twitter li:before {
  color: #999;
}
.footer-dark .widget_newsletter input {
  border: none;
}
.footer-dark #site-bottom {
  border-top-color: #2e2e2e;
  color: #999;
}
.footer-dark #site-bottom a:link, .footer-dark #site-bottom a:visited {
  color: #999;
}
.footer-dark #site-bottom a:hover {
  color: #fff;
}
.footer-dark #site-bottom #footer-nav ul > li {
  border-left-color: #2e2e2e !important;
}

/**
 * 10. Misc.
 * -----------------------------------------------------------------------------
 */
.dropcap {
  float: left;
  font-size: 58px;
  line-height: 54px;
  padding-top: 4px;
  padding-right: 10px;
  margin-top: -2px;
}

.header-ad {
  float: right;
  width: 728px;
  height: 90px;
  margin: 20px auto;
}
.header-ad img {
  width: 100%;
}

/**
 * 10.1 Layouts
 * -----------------------------------------------------------------------------
 */
.sidebar-content-sidebar .sidebar1 {
  float: left;
}
.sidebar-content-sidebar .content-loop {
  float: right;
}

.content-sidebar .content-loop {
  width: 840px;
}
.content-sidebar .loop-grid .hentry {
  width: 400px;
}
.content-sidebar .loop-grid2 .entry-title {
  font-size: 28px;
}
.content-sidebar .sidebar1 {
  display: none;
}

.layout-1c .site-main {
  background: none;
}
.layout-1c .content-area {
  width: 100%;
}

/**
 * 10.2 Social Icons
 * -----------------------------------------------------------------------------
 */
/* 10.3 Forms */
/*
 * jQuery FlexSlider v2.2.0
 */
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* FlexSlider Necessary Styles */
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme */
.flexslider {
  position: relative;
  zoom: 1;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.carousel li {
  margin-right: 5px;
}

#featured-content {
  margin-bottom: 30px;
}
#featured-content .hentry .entry-title {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}
#featured-content .hentry .entry-thumbnail {
  margin-bottom: 15px;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 42px;
  height: 42px;
  margin: -21px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  background-color: #666666;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: pointer;
  color: #fff !important;
  text-align: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.flex-direction-nav .flex-prev {
  left: 0;
}
.flex-direction-nav .flex-next {
  right: 0;
}
.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
}
.flex-direction-nav a:before {
  font-family: "FontAwesome";
  font-size: 32px;
  display: inline-block;
  content: '\f104';
  line-height: 42px;
  text-align: center;
}
.flex-direction-nav a.flex-next:before {
  content: '\f105';
}

.flexslider:hover .flex-prev {
  opacity: 1;
  left: 20px;
}
.flexslider:hover .flex-prev:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.flexslider:hover .flex-next {
  opacity: 1;
  right: 20px;
}
.flexslider:hover .flex-next:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 55px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-nav li a {
  width: 8px;
  height: 8px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-nav li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-nav li .flex-active {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
.btn {
  border: none;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  height: 32px;
}
.btn:hover {
  opacity: 0.8;
  cursor: pointer;
}

/**
 * 1.0 Color
 * -----------------------------------------------------------------------------
 */
a:link,
a:visited,
#secondary-nav ul.sf-menu li li a:hover,
#primary-nav ul.sf-menu li li a:hover,
#secondary-nav .sf-menu li li a:hover,
.widget_tabs .tab-content .entry-title a:hover,
#site-bottom a:hover,
.sidebar2 .widget_tabs .tabs-nav li.active a,
.category-box ul li strong a:hover,
.section-title a:hover,
.widget_latest_comments a:hover .name,
.related-posts ul li a:hover .entry-title {
  color: #00aeef;
}

.widget_tabs .entry-title a:hover,
.posts .cat-posts .view-more a,
.posts .cat-posts a:hover .entry-title {
  color: #00aeef !important;
}

/* Link Hover */
.twitter-widget a:hover,
.entry-content a:hover,
#comments h2 a:hover,
#comments .name a:hover,
.comment-entry p a:hover {
  color: #ff6644;
}

/* Icon Hover */
li a:hover .fa-star,
li.active .fa-star {
  color: #00aeef;
}

li a:hover .fa-clock-o,
li.active .fa-clock-o {
  color: #ff6644;
}

li a:hover .fa-comments,
li.active .fa-comments {
  color: #71a42f;
}

li a:hover .fa-tags,
li.active .fa-tags {
  color: #37b6bd;
}

/**
 * 2.0 Background
 * -----------------------------------------------------------------------------
 */
#respond button,
a:hover .video-icon,
.button,
a.button,
button,
input[type=button],
input[type=submit] {
  background-color: #00aeef;
}

figure > img {
  display: block;
}

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

img[class*="align"],
img[class*="attachment-"] {
  height: auto;
}

embed,
iframe,
object {
  max-width: 100%;
  width: 100%;
}

.wp-caption {
  margin-bottom: 24px;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-bottom: 5px;
}

.wp-caption-text {
  font-style: italic;
  color: #999;
}

.wp-smiley {
  border: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/**
 * Gallery
 * Taken from Twenty Fourteen theme.
 */
.gallery {
  margin-bottom: 20px;
}

.gallery:before,
.gallery:after {
  content: "";
  display: table;
}

.gallery:after {
  clear: both;
}

.gallery {
  clear: both;
}

.gallery-item {
  margin: 0 4px 4px 0;
  float: left;
  overflow: hidden;
  position: relative;
}

.gallery-icon a,
.gallery-icon img {
  display: block;
}
#more-content .entry-content .gallery-icon img {
  margin-bottom: 0;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 48%;
  max-width: -webkit-calc(50% - 4px);
  max-width: calc(50% - 4px);
}

.gallery-columns-3 .gallery-item {
  max-width: 32%;
  max-width: -webkit-calc(33.3% - 4px);
  max-width: calc(33.3% - 4px);
}

.gallery-columns-4 .gallery-item {
  max-width: 23%;
  max-width: -webkit-calc(25% - 4px);
  max-width: calc(25% - 4px);
}

.gallery-columns-5 .gallery-item {
  max-width: 19%;
  max-width: -webkit-calc(20% - 4px);
  max-width: calc(20% - 4px);
}

.gallery-columns-6 .gallery-item {
  max-width: 15%;
  max-width: -webkit-calc(16.7% - 4px);
  max-width: calc(16.7% - 4px);
}

.gallery-columns-7 .gallery-item {
  max-width: 13%;
  max-width: -webkit-calc(14.28% - 4px);
  max-width: calc(14.28% - 4px);
}

.gallery-columns-8 .gallery-item {
  max-width: 11%;
  max-width: -webkit-calc(12.5% - 4px);
  max-width: calc(12.5% - 4px);
}

.gallery-columns-9 .gallery-item {
  max-width: 9%;
  max-width: -webkit-calc(11.1% - 4px);
  max-width: calc(11.1% - 4px);
}

.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
  margin-right: 0;
}

.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
  clear: left;
}

.gallery-caption {
  padding: 2px 8px;
  font-size: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  max-height: 50%;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  width: 100%;
}

.gallery-caption:before {
  content: "";
  height: 100%;
  min-height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
}

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

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}

.alignnone {
  display: block;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  display: none !important;
  position: absolute;
}

.sticky,
.bypostauthor {
  background: inherit;
  color: inherit;
}

/**
 * Widgets
 * -----------------------------------------------------------------------------
 */
.widget .children,
.widget .sub-menu {
  margin-left: 1.5em;
}
.widget .children li:first-child,
.widget .sub-menu li:first-child {
  padding-top: 15px;
}
.widget .children li:last-child,
.widget .sub-menu li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.widget select {
  max-width: 100%;
  width: 100%;
}

.widget_archive li,
.widget_categories li {
  text-align: right;
}
.widget_archive a,
.widget_categories a {
  float: left;
}

.widget_search input[type="text"] {
  width: 93%;
}

/* Posts thumbnail widget. */
.posts-thumbnail-widget ul {
  list-style: none;
  padding-left: 0;
}
.footer-column .posts-thumbnail-widget img {
  width: 48px;
  height: 48px;
}
.posts-thumbnail-widget li {
  line-height: 1.3em;
  padding: 6px 0;
  overflow: hidden;
}
.posts-thumbnail-widget li:last-child {
  border-bottom: 0;
}
.posts-thumbnail-widget .entry-title {
  font-size: 14px;
  font-weight: 400;
}
.sidebar1 .posts-thumbnail-widget .entry-title {
  font-weight: 700;
  font-size: 13px;
}
#footer .posts-thumbnail-widget .entry-title {
  font-size: 13px;
}
.posts-thumbnail-widget .entry-thumb {
  float: left;
  margin-right: 15px;
}
.posts-thumbnail-widget .entry-date {
  margin-top: 5px;
  color: #9f9f9f;
  font-size: 11px;
  text-transform: uppercase;
  display: block;
  font-weight: 400;
}
.tabs-widget .posts-thumbnail-widget .entry-date {
  text-transform: uppercase;
}
.posts-thumbnail-widget .entry-info .entry-date {
  display: inline-block;
  margin-right: 3px;
}
.posts-thumbnail-widget .entry-info .entry-view {
  margin-top: 5px;
  color: #9f9f9f;
  font-size: 11px;
  display: block;
  font-weight: 400;
  display: inline-block;
}

.widget_125 .img-right {
  float: right;
}

#logo {
  margin: 35px 0 35px 0;
}

#masthead {
  height: auto;
}

.form-submit .submit {
  display: none;
}

.layout-sidebar-content .site-main {
  background-position: top left;
}
.layout-sidebar-content .content-area {
  float: right;
}
.layout-sidebar-content .sidebar2 {
  float: left;
  margin-right: 19px;
}

.members .member .member-photo .member-social li {
  margin: 0;
}

.sf-mega {
  z-index: 9999;
}

.sf-menu li {
  z-index: 99;
}

.widget_tabs .tab-content ul li a {
  overflow: hidden;
}

#primary-bar {
  z-index: 9999;
  position: relative;
}