/*
Theme Name: Melyric
Description: Song Lyrics WordPress Theme
Theme URI: http://melyric.pixweber.com/
Author: PixWeber
Author URI: http://www.pixweber.com/
Version: 1.0.0
Tags: featured-images, full-width-template, theme-options, translation-ready
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: melyric
*/

/*--------------------------------------------------------------
>>> 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
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

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

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

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

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

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

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
	margin: 0;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 23px;
	font-weight: 400;
	color: #444;
	background: #E9EDF0;
	line-height: 1.2em;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

a {
	color: #222;
	text-decoration: none;
}

a, a:visited, a:focus, a:active{
	outline: 0 none !important;
}

a:hover {
	color: #e4422e;
	text-decoration: none;
}

a:active {
    text-decoration: none;
}

input:focus {
	outline: none;
}

textarea:focus {
	outline: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #FF5500;
    font-weight: normal;
    line-height: 1.125em;
    font-family: Helvetica, Arial, sans-serif;
}

h3, .h3 {
    font-size: 1.3125em;
}

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 http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

/*body {
	background: #E9EDF0;
    line-height: 1.2em;
}*/

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

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

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0;
    list-style: none;
    padding: 0;
}

ul {
    list-style: none;
}

ol {
	list-style: decimal;
    padding: 0;
}

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

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

.no-border {
    border-style: none;
}

.no-padding {
    padding: 0 !important;
    margin: 0;
}

.row.no-gutter > [class*='col-'] {
    padding-right:0;
    padding-left:0;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.margin-0 {
    margin: 0;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-right-20 {
    margin-right: 20px;
}

.margin-top-bottom-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.margin-top-bottom-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.margin-top-0 { margin-top: 0}

.margin-top-5 { margin-top: 5px}

.margin-top-8 { margin-top: 8px}

.margin-top-10 { margin-top: 10px; }

.margin-top-15 { margin-top: 15px; }

.margin-top-20 { margin-top: 20px; }

.margin-top-30 { margin-top: 30px;}


.margin-bottom-0 { margin-bottom: 0;}

.margin-bottom-5 { margin-bottom: 5px;}

.margin-bottom-10 {	margin-bottom: 10px;}

.margin-bottom-15 {	margin-bottom: 15px;}

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

.margin-bottom-25 { margin-bottom: 25px;}

.margin-bottom-30 {margin-bottom: 30px;}

.margin-heading {
    margin-top: 20px;
    margin-bottom: 10px;
}

.padding-0 {
    padding: 0;
}

.padding-5 {
    padding: 5px;
}

.padding-10 {
    padding: 10px;
}

.padding-right-0 {
    padding-right: 0;
}

.padding-right-20 {
    padding-right: 20px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-15 {
    padding-top: 15px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-25 {
    padding-top: 25px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-15 {
    padding-bottom: 15px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-25 {
    padding-bottom: 25px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-left-0 {
    padding-left: 0;
}

.padding-left-10 {
    padding-left: 10px;
}

.padding-left-15 {
    padding-left: 15px;
}

.padding-left-20 {
    padding-left: 20px;
}

.padding-left-25 {
    padding-left: 25px;
}

.padding-left-30 {
    padding-left: 30px;
}

.padding-right-0 {
    padding-right: 0;
}

.padding-right-10 {
    padding-right: 10px;
}

.padding-right-15 {
    padding-right: 15px;
}

.padding-right-20 {
    padding-right: 20px;
}

.padding-right-25 {
    padding-right: 25px;
}

.padding-right-30 {
    padding-right: 30px;
}

/*Header*/
#header {
    /*background-color: #ffffff;*/
    color: #333333;
    background-color: #333;
}

#top-menu {
	background-color: #DC4E41;
}

#top-menu .navbar-nav > li > a {
    border-left: solid 1px rgba(255,255,255,.15);
}

#top-menu .navbar-nav > li:last-child > a {
    border-right: solid 1px rgba(255,255,255,.15);
}

.top-menu-sidebar a > .fa {
    width: 10px;
    text-align: center;
}

.top-menu-sidebar a {
    display: inline-block;
    padding: 0 15px;
    border-left: solid 1px rgba(255,255,255,.15);
}

.top-menu-sidebar a:last-child {
    border-right: solid 1px rgba(255,255,255,.15);
}

.top-menu-sidebar {
    line-height: 36px;
}

#top-menu-wrapper .navbar {
    background: none;
    border: 0;
    margin-bottom: 0;
    min-height: 35px !important;
}

#top-menu .navbar-default .navbar-nav > .active > a, #top-menu .navbar-default .navbar-nav > .active > a:focus, #top-menu .navbar-default .navbar-nav > .active > a:hover {
    color: #ffffff;
    background-color: #FF5500;
}

#top-menu .dropdown-menu {
    padding: 0;
    background: #DC4E41;
    border-radius: 0;
}

#top-menu .dropdown-menu > .active > a, #top-menu .dropdown-menu > .active > a:focus, #top-menu .dropdown-menu > .active > a:hover {
    background-color: #DC4E41;
}

#top-menu .navbar-default .navbar-nav > .open > a, #top-menu .navbar-default .navbar-nav > .open > a:focus, #top-menu .navbar-default .navbar-nav > .open > a:hover {
    color: #ffffff;
    background-color: #DC4E41;
}

#top-menu .dropdown-menu > li > a {
    padding: 7px 20px;
}

#top-menu .dropdown-menu > li:not(:first-child) > a{
    border-top: solid 1px rgba(255,255,255,.15);
}

#top-menu .navbar-nav > li:not(:first-child) > a {
    border-top: solid 1px rgba(255,255,255,.15);
}

#top-menu .navbar-default .navbar-collapse, #top-menu .navbar-default .navbar-form {
    border: 0;
}

@media (min-width: 768px) {
    #top-menu .navbar-nav {
        float: left;
        margin: 0;
    }
    #top-menu .navbar-nav > li {
        float: left;
    }
    #top-menu .navbar-nav > li > a {
        padding-top: 8px;
        padding-bottom: 7px;
    }

    #top-menu .navbar-collapse{
        display: inline-block !important;
    }

    #top-menu-wrapper .navbar {
        height: 35px;
    }
}

@media only screen and (max-width: 767px) {
    #top-menu {
        background-color: #333333;
    }

    #top-menu-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    #top-menu .navbar-brand {
        padding-top: 5px;
    }

    #top-menu .navbar-brand img {
        height: 40px;
    }

    #top-menu .navbar-default .navbar-toggle {
        border-color: #fff;
    }

    #top-menu .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff;
    }

    #top-menu .navbar-default .navbar-nav .open .dropdown-menu > .active > a, #top-menu .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, #top-menu .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
        color: #ffffff;
        background-color: #DC4E41;
    }
}

#top-menu a {
	color: #ffffff;
}

#top-menu .navbar-nav a:hover {
    background-color: #FF5500;
}

#top-logo {
    padding-top: 15px;
    padding-bottom: 10px;
}

#tablet-logo img {
	height: 30px;
	vertical-align: top;
	padding-top: 5px;
}

#header-middle {
    padding: 20px 0;
}

#header-right {
    padding: 20px 0;
}

#header-right #submit-button.lt-button {
    padding: 8px 15px;
    text-transform: uppercase;
    font-weight: bold;
}

#header-right #submit-button.lt-button:before {
    font-family: "FontAwesome";
    content: "\f067";
    margin-right: 10px;
 }

#menu-below {
    background-color: #353535;
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,.15);
}

#menu-below-inner {
    padding: 0;
}

#search-form input {
    width: 100%;
    height: 40px;
    padding: 10px;
}

#browse-top li:first-child a:before {
    font-family: "FontAwesome";
    content: "\f001";
    margin-right: 4px;
}

#browse-top li:nth-child(2) a:before {
    font-family: "FontAwesome";
    content: "\f04b";
    margin-right: 4px;
}

#browse-artist {
	font-size: 18px;
	font-weight: bold;
	color: #999999;
}

#browse-top a, #browse-alphabet a {
    font-weight: bold;
    color: #bfbfbf;
}

#browse-top a:hover, #browse-alphabet a:hover {
    color: #ffffff;
    background-color: #DC4E41;
}

#menu-below .nav.navbar-nav li a {
    padding: 10px 8px;
}

/*Ajax Search*/
#search-results-wrapper {
    position: relative;
}

.melyric-ajax-search {
    position: absolute;
    left: 0;
    top: -4px;
    z-index: 999;
    border-top:none;
    padding: 0;
    display: none;
    box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px rgba(0,0,0,0.08);
    border: none;
    background-color: #ffffff;
    width: 100%;
    max-height: 295px;
    overflow-y: scroll;
}

.melyric-ajax-search li {
    padding: 5px 10px;
    list-style-type: none;
}

.melyric-ajax-search li:hover {
    background-color: #EEEEEE;
}

.melyric-ajax-search li a {
    display: block;
    color: #444444;
}

.melyric-ajax-search li a:hover {
    text-decoration: none;
}

.melyric-ajax-search li .artist {
    color: #999999;
}
/*End Ajax Search*/

/*End Header*/

/*Content*/
#content {
    background-color: #ffffff;
    min-height: 1000px;
    margin-top: 30px;
    padding-top: 15px;
    padding-bottom: 20px;
}

/*Slider*/
#featured-slider {
    margin-bottom: 20px;
}

#featured-slider .owl-prev {
    position: absolute;
    left: 20px;
    top: 40%;
    color: #fff;
}

#featured-slider .owl-prev:hover {
    left: 18px;
    cursor: pointer;
}

#featured-slider .owl-prev:hover .fa {
    color: #ffffff;
}

#featured-slider .owl-next:hover {
    right: 18px;
    cursor: pointer;
}

#featured-slider .owl-next:hover .fa {
    color: #ffffff;
}

#featured-slider .owl-next {
    position: absolute;
    right: 20px;
    top: 40%;
    color: #fff;
}

#featured-slider .owl-nav .fa {
    font-size: 55px;
    color: #9D9B9A;
}

#featured-slider .owl-dots {
    z-index: 999;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 48%;
}

#featured-slider .owl-dots .owl-dot {
    display: inline-block;
    margin-right: 8px;
}

#featured-slider .owl-dots .owl-dot:before {
    font-family: "FontAwesome";
    content: "\f192";
    color: #ffffff;
}

#featured-slider .owl-dots .owl-dot.active:before {
    color: #00a0d2;
}

#featured-slider ul {
    padding-left: 0;
}

.slider-item {
    position: relative;
}

.slider-item-bg {
}

.slider-item-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    padding: 20px 30px;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.65);
}

.slider-item .category {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: #FF5500;
    padding: 8px 10px 5px 10px;
}

.slider-item .category a {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
}

.slider-item-content a {
    color: #ffffff;
}

.slider-item-content h3 {
	margin-top: 0;
    margin-bottom: 5px;
}

.slider-item-content h3 a {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 28px;
    line-height: 2.8rem;
    color: #FF5500;
}

.slider-item-description a:link, .slider-item-description a:visited {
    color: #f2f2f2;
    font-weight: normal;
}

@media only screen and (max-width: 767px) {

    .slider-item-content h3 a {
        font-size: 23px;
        line-height: 23px;
    }

    .owl-nav {
        display: none;
    }

    .slider-item-description {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .slider-item-content h3 a {
        font-size: 17px;
        line-height: 17px;
    }

    .slider-item-content {
        bottom: 25px;
        padding: 5px 15px;
        width: 100%;
    }
}

.slider-item-content a:hover {
    color: #ffffff;
}
/*End Slider*/

/*Top sections*/
.top-section {
    margin-bottom: 20px;
}

.top-section img {
    display: block;
}

.section-body {
    border: 1px solid #d0d0d0;
    border: 1px solid rgba(139,139,139,0.2);
}

.top-section .top-item {
    padding: 10px 0 10px 20px;
    min-height: 57px;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.top-section .top-item .number {
    color: #FF5500;
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 1.875em;
    line-height: 57px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.top-section .top-item .lyric {
	margin-bottom: 2px;
    padding-right: 10px;
}

.top-section .top-item .lyric a {
	line-height: 1;
	font-weight: bold;
}

.top-section .top-item .lyric a:hover {
	text-decoration: underline;
}

.top-section .top-item .thumb img {
    width: 65px;
}

.section-body span.artist {
    display: block;
}

.section-body .album a {
    font-weight: bold;
}

.section-body .artist a {
    font-weight: normal;
    color: #666;
}

.section-body .artist a:hover {
	text-decoration: underline;
}

.top-item:nth-child(2n) {
    background-color: #f3f3f3;
}

@media only screen and (min-width: 1200px) {
    #top-lyrics-albums .col-lg-6:first-child {
        padding-right: 5px;
    }

    #top-lyrics-albums .col-lg-6:nth-child(2) {
        padding-left: 10px;
    }

    #sidebar {
        padding-left: 0;
    }
}

/*End top section*/

/*Single*/
.lyric .artist {
    color: #999999;
}

.lyric:hover .artist {
    color: #333333;
}

#lyric-infos {
    -webkit-box-shadow: 0px 1px 2px #bebebe;
    box-shadow: 0px 1px 2px #bebebe;
    margin-bottom: 20px;
}

#lyric-infos span {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
}

#lyric-infos-content {
    padding: 10px 12px;
}

#lyric-infos ul {
    list-style: none;
    font-size: 12px;
    padding-left: 0;
}

#lyric-infos ul li:not(:last-child) {
    list-style: none;
    margin-bottom: 7px;
}

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

@media only screen and (min-width: 992px) {
    .single #content-left {
        padding-left: 5px;
    }
}

#lyric-content {
    font-size: 15px;
    line-height: 1.5;
}

#lyrics-details-mobile > div {
    margin-bottom: 7px;
}

#related-content {
}

#related-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

#related-lyrics-title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
    margin-top: 10px;
}

#related-lyrics ul {
    padding-left: 0;
}

#related-lyrics ul li {
}

#related-lyrics ul li:nth-child(2n) {
    background-color: #f3f3f3;
}

#related-lyrics ul li {
    padding: 5px 0 5px 10px;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}
/*End Single*/

/*Artist*/
.lyrics-list-box, .albums-list-box {
	margin-bottom: 25px;
}

.lyrics-list-box h2, .albums-list-box h2 {
    margin: 0;
	color: #808080;
}

.lyrics-list-box-header {
    background-color: #808080;
    color: #ffffff;
    padding: 7px 10px;
}

.lyrics-list-box-header h2 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
}

.lyrics-list-box-body {
    border: 1px solid #f2f2f2;
}

.lyrics-list-box-body ul {
    padding-left: 0;
}

.lyrics-list-box-body .number {
    color: #FF5500;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    padding: 8px 0;
    border-right: 1px solid #ddd;
}

.lyrics-list-box-body .lyric {
    padding: 8px 15px;
}

.lyrics-list-item:nth-child(2n), .albums-list-item:nth-child(2n) {
    background-color: #f3f3f3;
}

.lyrics-list-item, .albums-list-item {
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.albums-list-item {
	padding: 10px;
}
/*End Artist*/

/*Album*/
.album-detail > div {
    margin-bottom: 3px;
}

.album-detail .album-title a {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 7px;
}

.albums-list-item .number {
    border-right: 0;
    padding-top: 50px;
    text-align: center;
}

.top-albums.albums-list-item .thumb {
    padding-left: 0;
}
/*End Album*/

#left-sidebar {
    /*padding-right: 0;*/
}

/*Single post*/
.single-post h1.page-title {
    margin-bottom: 5px;
    font-size: 1.8em !important;
}

.single-post #post-details {
    margin-bottom: 20px;
    /*text-transform: uppercase;*/
}
/*End Single post*/

/*Comments*/
.comments-title {
    font-size: 16px;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 26px;
    border-bottom: 2px solid #cccccc;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 3px;
}

#reply-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
    margin-top: 10px;
}

.pw-form-comment, .pw-form-author, .pw-form-email, .pw-form-url {
    margin-top: 0;
    margin-bottom: 21px;
}

.comment {
    list-style: none;
    margin-left: 0;
    padding-bottom: 13px;
    border-bottom: 1px dashed #ededed;
    margin-bottom: 21px;
}

.comment .avatar {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    width: 50px;
}

.comment cite {
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 1;
}

.comment a {
    color: #444444;
}

.comment footer {
    margin-bottom: 3px;
}

a.comment-link {
    color: #b4b4b4;
    padding-left: 10px;
}

.comment .comment-content, .comment .comment-meta, .comment .comment-respond {
    margin-left: 70px;
}
.comment-meta {
    margin-top: 3px;
}

.comment .children {
    margin-top: 10px;
    border-top: 1px dashed #ededed;
    padding-top: 13px;
}
/*End Comments*/

/*Home featured news*/
#featured-news .section-body {
    border: 0;
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (min-width: 768px) {
    .post-list-item-inner > div:nth-child(1) > div:nth-child(1) {
        padding-right: 0;
    }
}

.post-list-item {
    border: 1px solid #dddddd;
}

.post-list-item .entry-title {
    font-size: 16px;
    line-height: 1.05;
    font-weight: bold;
    margin-bottom: 7px;
}

.post-list-item-info {
    margin-bottom: 7px;
}

.post-list-item-info.entry-details a {
    color: #999999;
}

.post-list-item-info.entry-details .date {
    color: #999999;
}

.post-list-item-info.entry-details .fa {
    color: #999999;
}

.post-list-item-thumbnail img {
    width: 100%;
}

.post-list-item-details  {
    padding: 10px 10px 10px 0;
}

.post-list-item .item-excerpt {
    line-height: normal;
    font-size: 14px;
    margin-top: 10px;
}

@media only screen and (max-width: 767px) {
    .post-list-item .post-list-item-details {
        padding: 15px;
    }
}
/*End Home featured news*/

/*Embed Videos*/
.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/***************************/
/*End Content*/
/***************************/

/*Sidebar*/
.sidebar-widget {
    margin-bottom: 20px;
    text-shadow: 0 1px rgba(255,255,255,0.5);
}

.sidebar-widget ul {
	border: 1px solid rgba(139,139,139,0.2);
    padding: 10px;
}

.sidebar-widget ul.content.news {
    border: 0 !important;
    padding: 0 !important;
}

.module .content {
    margin-top: 0;
    margin-bottom: 0;
    font-family: proxnov-sbold,arial,sans-serif;
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.sidebar-widget .widget-header {
    position: relative;
    padding-bottom: 6px;
    border-bottom: 1px solid #d0d0d0;
    border-bottom: 1px solid rgba(139,139,139,0.2);
}

.sidebar-widget .widget-header .view-all, .top-section-header .view-all {
    position: absolute;
    right: 0;
    bottom: 8px;
    margin: 0;
    color: #8b8b8b;
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 0.6875em;
    text-transform: uppercase;
}

.top-section-header .view-all {
    right: 10px;
    bottom: -3px;
    font-size: 15px;
}

.sidebar-widget .widget-header h3 span, .top-section .top-section-header h3 span {
    padding-bottom: 7px;
    color: #FF5500;
    border-bottom: 3px solid #FF5500;
    margin-right: 1rem;
    font-weight: 200;
}

.sidebar-widget .widget-header .more-link a:last-child {
    padding-right: 0;
}

.sidebar-widget .widget-header h3, .top-section .top-section-header h3 {
    margin-top: 0;
    color: #FF5500;
    font-weight: 600;
    padding-left: 10px;
}

h2.widget-title {
    margin: 0;
	background-color: #DC4E41;
	padding: 8px 10px;
	color: #fff;
    font-size: 1.3125em;
}

.widget-body, .social-count-plus {
    border: 1px solid #d0d0d0;
    border: 1px solid rgba(139,139,139,0.2);
}

.sidebar-widget .social-count-plus {
    padding-top: 20px;
}

.top-section-header {
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}

.sidebar-widget .news img {
    display: block;
}

.widget-body ul {
    padding-left: 0;
}

.widget-body ul li {
}

.sidebar-widget ul.news li {
    padding: 10px 0 10px 20px;
    min-height: 57px;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.sidebar-widget ul.news li a {
	font-weight: bold;
}

.sidebar-widget ul.news li:nth-child(2) {
    background-color: #f3f3f3;
}

.sidebar-widget ul li:last-child {
    margin-bottom: 0;
}

.widget-body .list-item-desc {
    padding-left: 0;
    padding-right: 25px;
}

/*Facebook page plugin*/
.fb-page,
.fb-page span,
.fb-page span iframe[style] {
    width: 100% !important;
}

.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
    width: 100% !important;
}
/*End Facebook page plugin*/

#sidebar-ads-banner img {
    width: 100%;
}

/*End Sidebar*/

/*Footer*/
footer#footer {
    background-color: #333333;
    margin-top: 30px;
    padding: 25px 10px;
    color: #ffffff;
}

footer#footer a {
    color: #ffffff;
}

footer#footer a:hover {
    color: #ffffff;
}

footer #bottom-nav ul {
    padding-left: 0;
}

footer #bottom-nav ul li {
    display: inline-block;
    margin-right: 20px;
}

#footer-1 {
    padding-bottom: 20px;
}

#footer-1 #social ul {
    padding-left: 0;
}

#footer-1 #social ul li {
    display: inline-block;
    margin-right: 8px;
    font-size: 35px;
}

#social img {
    height: 40px;
    width: 40px;
}

@media only screen and (max-width: 767px) {
    #bottom-logo {
        text-align: center;
    }

    #social {
        text-align: center;
        margin-top: 10px;
    }

    #counters {
        text-align: center;
        margin-top: 10px;
    }
}

#counters {
    padding-top: 10px;
}

#footer-1 .counter {
    display: inline-block;
    font-size: 16px;
    margin-right: 20px;
}

#footer-1 .counter span {
    color: #888888;
}

footer .footer-separator {
    clear: both;
    height: 0;
    border-top: 1px solid rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}
/*End Footer*/

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"], .lt-button {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 2px 11px 2px 10px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    font-weight: 100;
    text-align: center;
    vertical-align: baseline;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    box-sizing: border-box;
    background-color: #f50;
    border-color: #f50;
    color: #fff;
}

a.lt-button:hover {
    color: #ffffff;
}

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

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	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;
    width: 100%;
    max-width: 100%;
    height: 34px;
    padding: 3px 9px;
}

textarea {
    height: 168px;
    min-height: 168px;
    padding: 6px 9px 6px 9px;
}

select {
	border: 1px solid #ccc;
}

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;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
    color: #3C91B6;
}

a:visited {
	color: #3C91B6;
}

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

a:focus {
	outline: thin dotted;
}

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

.pagination span, .pagination a {
	display: block;
	float: left;
	margin: 2px 5px 2px 0;
	padding: 6px 9px 5px 9px;
	text-decoration: none;
	width: auto;
	color: #fff;
	background: #3C91B6;;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.pagination a:hover {
    background: #F7941E;
}

.pagination .current {
    padding: 6px 9px 5px 9px;
    background: #F7941E;
    color: #fff;
}

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

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

.main-navigation li {
	float: left;
	position: relative;
}

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

.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.focus > a {
}

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

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

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

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

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

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.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%;
}

/*--------------------------------------------------------------
# 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;
	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;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	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. */
}

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

.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;
}

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

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

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

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