/*
Theme Name: Doo
Theme URI: http://themevs.com/themes/doo/
Author: ThemeVS
Author URI: http://themevs.com/
Description: A beautiful two-columns WordPress theme created by the ThemeVS designers.
Version: 1.0.12
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: doo
Tags: two-columns,left-sidebar,right-sidebar,custom-menu,sticky-post,theme-options,translation-ready,blog

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.

doo is based on Underscores http://underscores.me/, (C) 2012-2016 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 http://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
# Custom css
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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;
}

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,
button,
input,
select,
optgroup,
textarea {
	color: #343434;
	font-size: 14px;
	line-height: 1.6;
	font-family:"Open Sans",sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight:normal;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	padding:5px 10px;
	border-left:2px solid #C51E3A;
	background:#e2e2e2;
	margin:0 0 14px;
}

address {
	margin: 0 0 1.5em;
}

pre {
	line-height:16px;
	background:#e2e2e2;
	border-left:2px solid #C51E3A;
	padding:5px 9px;
	overflow-x:auto;
	margin:0 0 10px;
}

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: border-box;
	margin:0;
	padding:0;
}

body {
	background: #eaeaea; /* Fallback for when there is no custom background color defined. */
}

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 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
	border-bottom:1px solid #c2c2c2;
}
th{
	text-align:left;
	padding:6px 0;
	border-top:1px solid #c2c2c2;
	text-transform:uppercase;
}
td{
	text-align:left;
	padding:6px 0;
	border-top:1px solid #c2c2c2;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: none;
	border-radius: 3px;
	background: #C51E3A;
	color: #ffffff;
	font-size: 13px;
	font-size: 0.813rem;
	line-height: 1;
	padding: 10px 15px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	opacity:0.8;
	filter:alpha(opacity=80);
}

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;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

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:4px;
}

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:#c51e3a;
	text-decoration:none;
}

a:hover,
a:focus,
a:active {
	color: #fe0000;
}

a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## 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: 100%;
	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;
}

.updated:not(.published) {
	display: none;
}

.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%;
}

/* 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;
}

/*--------------------------------------------------------------
## 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.33333%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66667%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28571%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11111%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Custom css
--------------------------------------------------------------*/
/*site*/
.site{
	width:100%;
	margin:0 auto;
	background:#ffffff;
	border-top: 2px solid #c51e3a;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}
.inner{
	max-width:1000px;
	margin:0 auto;
}

/*header*/
.site-header{
	background:#f6f6f6;
}
.site-branding{
	padding:50px 0 0;
}
.site-title {
	line-height:36px;
	text-align:center;
	font-size:34px;
}
.site-title a {
	text-shadow:1px 1px 0 #ffffff;
}
.site-description{
	padding:10px 0 0;
	text-align:center;
	color:#878787;
}

/*navigation*/
.main-navigation {
	width:100%;
	padding:30px 0 0;
}
.main-navigation li {
	display:inline-block;
	position:relative;
}
.main-navigation li a {
	display:block;
	line-height:16px;
	padding:10px 10px;
	color:#343434;
	text-shadow:1px 1px 0 #f2f2f2;
}
.main-navigation li a:hover {
	color:#fe0000;
}
.main-navigation .sub-menu,
.main-navigation .children {
	height:0;
	left:0;
	overflow:hidden;
	padding:0;
	position:absolute;
	width:0;
	z-index:99999;
}
.main-navigation li:hover > ul,
.main-navigation .focus > ul {
	clip:inherit;
	overflow:inherit;
	height:inherit;
	width:inherit;
}
.main-navigation ul ul a {
	padding:8px 10px;
	line-height:16px;
	margin:0;
	width:180px;
	background:#f2f2f2;
	font-size:13px;
	font-size:0.813rem;
}
.main-navigation ul ul li {
	padding:0;
	text-align:left;
	 border-bottom:1px solid #d2d2d2;
}
.main-navigation ul .sub-menu ul,
.main-navigation ul .children ul {
	border-left:0 none;
	left:100%;
	top:0;
}
.main-navigation .menu-toggle {
	background:#787878;
	color:#ffffff;
	font-size:18px;
	height:38px;
	width:100%;
	padding:0 15px;
	border:none;
	box-shadow:none;
	border-radius:0;
}

/*content*/
.site-content {
	padding:0 0 40px;
}
.content-area {
	width:65%;
	float:left;
}

.page-header {
	line-height:20px;
	padding:30px 0 20px;
	text-align:center;
}
.page-title{
	font-size:18px;
}
#nav-below {
	line-height:16px;
	padding:10px 0 20px;
}
#nav-below .nav-previous {
	float:left;
	width:50%;
}
#nav-below .nav-previous i {
	margin:0 4px 0 0;
}
#nav-below .nav-next {
	float:right;
	width:50%;
	text-align:right;
}
#nav-below .nav-next i {
	margin:0 0 0 4px;
}
.page-links {
	height:30px;
	line-height:30px;
}
.page-links a {
	margin:0 0 0 3px;
	text-decoration:underline;
}

.pagination {
	padding:50px 0 0;
	font-size:16px;
}
.pagination .nav-links {
	width:100%;
	height:40px;
	line-height:40px;
	position:relative;
	text-align:center;
	background:#f2f2f2;
	border-radius:3px 3px 3px 3px;
}
.pagination .nav-links .fa {
	color:#ffffff;
}
.pagination .nav-links a,
.pagination .nav-links span {
	padding:0 10px;
	display:inline-block;
	height:40px;
}
.pagination .nav-links a {
	color:#343434;
}
.pagination .nav-links a:hover {
	color:#fe0000;
}
.pagination .prev {
	width:40px;
	height:40px;
	position:absolute;
	top:0;
	left:0;
	text-align:center;
	background:#343434;
	border-radius:3px 0 0 3px;
}
.pagination .prev:hover {
	background:#676767;
}
.pagination .next {
	width:40px;
	height:40px;
	position:absolute;
	top:0;
	right:0;
	text-align:center;
	background:#343434;
	border-radius:0 3px 3px 0;
}
.pagination .next:hover {
	background:#676767;
}
.pagination .current {
	color:#C51E3A;
}
.pagination .screen-reader-text,
.pagination .nav-links .screen-reader-text {
	display:none;
}

/*post*/
.site-main .post,
.site-main .page {
	padding:20px 0 30px;
}
.entry-title {
	width:100%;
	line-height:24px;
	font-size:22px;
	word-wrap: break-word;
}
.entry-title a{
	text-shadow:1px 1px 0 #ffffff;
	color:#c51e3a;
}
.entry-title a:hover {
	color:#fe0000;
}
.entry-meta {
	line-height:15px;
	padding:15px 0 0;
	font-size:13px;
	position:relative;
	min-height:36px;
}
.entry-meta >span {
	margin:0 12px 0 0;
}
.entry-meta span a {
	padding:0 4px 0 0;
	color:#343434;
	display:inline-block;
}
.entry-meta span a:hover {
	color:#fe0000;
}
.entry-meta .post-format{
	position:absolute;
	top:0;
	right:0;
	background:#c51e3a;
	color:#ffffff;
	width:36px;
	height:36px;
	border-radius: 5px;
	line-height:36px;
	text-align:center;
	font-size:20px;
	margin:0;
}
.entry-content {
	width:100%;
	padding:10px 0 0;
	font-size:14px;
}
.entry-content img {
	margin:0 0 5px;
}
.entry-content p:last-child{
	margin-bottom:0;
}
.more-link {
	display:block;
	padding:10px 0 0;
}
.entry-footer {
	line-height:20px;
	padding:15px 0 0;
	font-size:13px;
}
.entry-footer >span {
	margin:0 12px 0 0;
}
.entry-footer span a {
	padding:0 4px 0 0;
	color:#343434;
	display:inline-block;
}
.entry-footer span a:hover {
	color:#fe0000;
}
.post-entry-media {
	font-size:0;
	line-height:0;
	text-align:center;
}
.post-entry-media img {
	margin:0 0 10px;
}

/*sidebar*/
.widget-area {
	width:30%;
	float:right;
	padding:25px 0 0;
	font-size:13px;
}
.widget-area ul,
.widget-area ol{
	list-style:none;
	margin:0;
}
.widget-area .widget{
	margin:0 0 20px;
}
.widget-area .widget-title {
	line-height:20px;
	font-size:18px;
	text-transform:uppercase;
	margin:0 0 2px;
	text-shadow:1px 1px 0 #f2f2f2;
}
.widget-area li {
	line-height:16px;
	padding:10px 0 0;
}
.widget-area li a{
	word-wrap: break-word;
}
.widget-area select {
	max-width:100%;
}
.widget-area table {
	width:100%;
}
.widget-area ul ul {
	padding-left:10px;
}
.left-sidebar .content-area{
	float:right;
}
.left-sidebar .widget-area{
	float:left;
}
.no-sidebar-full-width .content-area{
	float:none;
	width:100%;
}

.sidebar-footer{
	background:#d9d9d9;
	padding:25px 0 5px;
	font-size:13px;
}
.sidebar-footer ul,
.sidebar-footer ol{
	list-style:none;
	margin:0;
}
.sidebar-footer .widget{
	margin:0 0 20px;
}
.sidebar-footer .widget-title {
	line-height:20px;
	font-size:18px;
	margin:0 0 2px;
	text-shadow:1px 1px 0 #f2f2f2;
}
.sidebar-footer li {
	line-height:16px;
	padding:10px 0 0;
}
.sidebar-footer li a{
	color:#383838;
}
.sidebar-footer select {
	max-width:100%;
}
.sidebar-footer table {
	width:100%;
}
.sidebar-footer ul ul {
	padding-left:10px;
}
.sidebar-footer .sfdiv{
	width: 31.2883%;
	float: left;
    margin-right: 3.06749%;
}
.sidebar-footer .sfdiv-last{
	margin-right: 0;
}


/*comments*/
.comments-area {
}
.no-comments {
	line-height:16px;
	 padding:5px 5px 0;
}
.comments-title{
	display:none;
}
.comment-list {
	list-style:none;
	margin:0;
}
.comment {
	padding:0 0 20px;
}
.comment-body {
	padding:0 0 10px;
	position:relative;
}
.comment-author {
	display:inline-block;
}
.comment-author img {
	width:40px;
	height:40px;
	border-radius:5px 5px 5px 5px;
	position:absolute;
	top:0;
	left:0;
}
.comment-metadata{
	display:inline-block;
}
.comment-meta {
	line-height:16px;
	margin:0 0 0 52px;
	padding:2px 0;
	font-size:13px;
}
.comment-meta span {
	margin:0 5px 0 0;
}
.comment-meta a {
	color:#343434;
}
.comment-meta .fn {
	font-size:14px;
	color:#c51e3a;
}
.comment-meta .fn a {
	color:#c51e3a;
}
.comment-content {
	margin:0 0 0 52px;
	padding:2px 0 0;
}
.comment-content p:last-child{
	margin-bottom:0;
}
.reply {
	position:absolute;
	top:0;
	right:0;
	line-height:20px;
	font-size:13px;
	text-transform:uppercase;
}
#comments .children {
	margin:0 0 0 52px;
	list-style:none;
}
#comments .children .comment {
	padding:0;
}
#comments .children .comment-body {
	padding:0 0 10px;
}



#respond {
	padding:10px 0 0;
}
.comment-reply-title {
	height:40px;
	line-height:40px;
	text-transform:uppercase;
}
.comment-reply-title small {
	float:right;
	line-height:40px;
	font-size:13px;
}
.input-container {
	margin:0 0 8px;
}
.input-container span {
	margin:0 0 0 8px;
}
.input-container-full {
	display:block;
	width:100%;
	margin:0 0 8px;
}
.comment-form{}
.comment-form label{
	display:block;
}
.comment-form input[type="text"],.comment-form input[type="email"],.comment-form input[type="url"]{
	width:100%;
}
#submit {

}
.logged-in-as {
	height:30px;
	line-height:20px;
}
.comment #respond {
	margin:0 0 0 40px;
	padding:10px 0 20px;
}

/*search-form*/
.search-form {
	width:100%;
}
.search-form .search-field {
	width:100%;
}
.search-submit {
	width:25%;
	height:32px;
	line-height:32px;
	text-align:center;
	float:right;
	background:none;
	border:none;
	background-color:#83AF9B;
	color:#ffffff;
	cursor:pointer;
	text-transform:uppercase;
	transition:all 0.2s linear;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
}
.search-form input[type="submit"] {
	display:none;
}
.search-submit:hover {
	background:#9ec4b3;
}
.search-form input {
	float:left;
}

/*footer*/
.site-footer {
	text-shadow:1px 1px 0 #eeeeee;
}
.site-footer a {
	color:#343434;
}
.site-footer a:hover {
	color:#fe0000;
}
.site-info{
	padding:20px 10px 30px;
	text-align:center;
	border-top: 2px solid #c51e3a;
}

#back_top {
	border-radius:5px 5px 5px 5px;
	bottom:20px;
	cursor:pointer;
	height:36px;
	position:fixed;
	right:20px;
	text-align:center;
	width:36px;
	z-index:100;
	background:#c51e3a;
}
#back_top i {
	line-height:36px;
	font-size:20px;
	color:#ffffff;
}
#back_top:hover {
	opacity:0.8;
}

/*slider*/
.site-slider{
	line-height:0;
	font-size:0;
}
#slider-text-box {
	color: #ffffff;
}
.slider-content {
	font-size: 14px;
}
#featured-slider {
	position: relative;
}
.slider-text-wrap {
	position: absolute;
	bottom: 15%;
	left: 5%;
	width:90%;
}
.slider-text-wrap span{
	display:block;
}
.slider-text-wrap span a{
	display:inline-block;
}
.wide .slider-text-wrap {
	left: 15%;
}
#slider-title {
	font-size: 18px;
	margin-bottom: 2px;
}
#slider-title a {
	color: #FFFFFF;
	padding: 10px;
	line-height: 1;
	background: #C51E3A;
}
#slider-content {
	background: none repeat scroll 0 0 rgb(255, 255, 255);
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7);
	padding: 10px;
	display: inline-block;
	max-width: 40%;
	color: #777777;
	line-height:1;
	font-size:14px;
}
.slider-wrap {
	position: relative;
}
.slider-wrap .displayblock {
    display: block;
}
.slider-wrap .displaynone {
    display: none;
}
#controllers {
    bottom: 15px;
    line-height: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 9999;
}
#controllers a {
    background-color: #ffffff;
    color: #ffffff;
    display: inline-block;
    height: 6px;
    margin: 0 4px;
    overflow: hidden;
    width: 18px;
}
#controllers a:hover, #controllers a.active {
	color: #C51E3A;
	background-color: #C51E3A;
}

/*responsive*/
@media screen and (max-width: 37.5em) {
	.main-navigation li {
		width:100%;
		height:auto;
		display:block;
		position:inherit;
		border-top:1px solid #767676;
	}
	.main-navigation li a {
		text-align:center;
		padding:10px 0;
		background:#343434;
		color:#ffffff;
		text-shadow:none;
	}
	.main-navigation li a:hover {
		color:#ffffff;
		background:#767676;
	}
	.main-navigation .sub-menu,
	.main-navigation .children {
		position:inherit;
		height:auto;
		width:100%;
		overflow:inherit;
	}
	.main-navigation ul ul a {
		padding:10px 0;
		width:100%;
		background:#343434;
		color:#ffffff;
	}

	.content-area{
		width:100%;
		float:none;
		padding:0 20px;
	}
	.widget-area{
		width:100%;
		float:none;
		padding:20px 20px 0;
	}
	.widget-area .widget {
		width:100%;
		margin:0 0 20px;
	}
	.sidebar-footer{
		padding:25px 20px 5px;
	}
	.sidebar-footer .sfdiv{
		width:100%;
		float:none;
	}
}