/*------------------------------------------------------------------
    Body
-------------------------------------------------------------------*/
@import 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700|Open+Sans:300,400,600';


form .group {
	display: table;
  table-layout: fixed; /* extremely important for table-cell animations */
	width: 100%;

	padding: 0;
	margin-bottom: 5px;

	/*border: solid 1px;*/
}

form .group input {
	display: table-cell;
  margin-bottom: 0 !important;
  
}

form .group .icon {
  display: table-cell;

  background-color:#fff;
  border:1px solid #ddd;
  color:#000;
  font-size:14px;
  line-height: 18px;
  width: 36px;

  font-weight:normal;
  line-height:1;
  text-align:center;

  border-right-width: 0px;

}

form .group .icon i {
  font-size: 18px;
  margin: 0px 5px 0 5px;
}

form .group .icon  + input {
  border-left-width: 0;
}

form .group .button {
  display: table-cell;

  background-color:#efefef;
  border:1px solid #ddd;
  color:#000;
  font-size:14px;
  line-height: 18px;

  font-weight:normal;
  line-height:1;
  text-align:center;



}

form .group input + .button {
    border-left-width: 0;  
}




form input, select {
  width: 100%;
  margin-bottom: 5px !important;
  /*-webkit-appearance: none;*/
  border-radius: 0;
}

form input[type="radio"] {
  width: auto;
  border: 1px orange;
}

/* spinner for normal buttons */
form .btn > .spinner {
  /*border: solid 1px orange;*/

  position: absolute;

  float: left;

  top: 7px;
  left: 7px;

  background-color: inherit;

  width: 20px;
  height: 20px;

  z-index: 1000;

}

/* spinner for large buttons */
form .btn.btn_large > .spinner {

  position: absolute;

  float: left;

  top: 11px;
  left: 11px;

  background-color: inherit;

  width: 30px;
  height: 30px;

  z-index: 1000;

}

.checkbox_toggle {
  cursor: pointer;
}

.radio_toggle {
  cursor: pointer;
}


/* Customizing the look of the checkboxes */
/* if the label is before the checkbox */
input[type=checkbox] { display:none; } /* to hide the checkbox itself */

input[type=checkbox] + label {
	display: inline-block;
	margin: 0px 30px 0px 0px;
	text-align: left;
	width: auto !important;	
	cursor: pointer;
	vertical-align: middle;
	padding: 0;
	font-size: 18px;
	color: #444;

}

input[type=checkbox] + label.small {
	font-size: 14px;
}

input[type=checkbox] + label:before {
	font-size: 24px;
    font-family: FontAwesome;
    display: inline-block;
    cursor: pointer;
    color: #444;
    margin: 0 5px 0 0;
    content: "\f096";
    width: 24px;
    vertical-align: middle;

}

input[type=checkbox] + label.small:before {
	font-size: 18px;
	width: 18px;

}

input[type=checkbox]:checked + label:before { content: "\f046"; } /* checked icon */


/* Customizing the look of the radio boxes */

input[type=radio] { display:none; } /* to hide the checkbox itself */

/*
input[type=radio] + label {
	display: inline-block;
	margin: 0px 5px 0px 0px;
	text-align: left;
	width: auto !important;	
	cursor: pointer;
	vertical-align: middle;
	padding: 0;
	font-size: 14px;
	color: #444;

}

input[type=radio] + label:before {
	font-size: 18px;
    font-family: FontAwesome;
    display: inline-block;
    cursor: pointer;
    color: #444;
    margin: 0 5px 0 0;
    content: "\f1db";
    width: 18px;

}
*/

/*input[type=radio]:checked + label:before { content: "\f05d"; } // checked icon */



.switch {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  padding: 3px !important;
  width: auto !important;

  /*border: solid 1px orange;*/
}

.switch input[type=radio] {
    display:none; 
    margin:0px;
}

/*
  Change the look'n'feel of labels (which are adjacent to radiobuttons).
  Add some margin, padding to label
*/
.switch input[type=radio] + label {
    display:inline-block;
    vertical-align: middle;
    
    border-radius: 3px;

    padding: 4px 12px;
    margin: 0px;

    color: #fff;

    width: auto;
    height: auto;

    cursor: pointer;


}
/*
 Change background color for label next to checked radio button
 to make it look like highlighted button
*/
.switch input[type=radio]:checked + label { 
	  border-radius: 3px;
  color: rgba(0, 0, 0, 0.65);
  text-shadow: 0 1px rgba(255, 255, 255, 0.25);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -ms-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: color, text-shadow;
  -moz-transition-property: color, text-shadow;
  -ms-transition-property: color, text-shadow;
  -o-transition-property: color, text-shadow;
  transition-property: color, text-shadow;	
  background-color: #ccf0db;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9dd993), color-stop(100%, #ccf0db));
  background-image: -webkit-linear-gradient(top, #9dd993, #ccf0db);
  background-image: -moz-linear-gradient(top, #9dd993, #ccf0db);
  background-image: -ms-linear-gradient(top, #9dd993, #ccf0db);
  background-image: -o-linear-gradient(top, #9dd993, #ccf0db);
  background-image: linear-gradient(top, #9dd993, #ccf0db);
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -ms-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}/* jquery.Jcrop.css v0.9.12 - MIT License */
/*
  The outer-most container in a typical Jcrop instance
  If you are having difficulty with formatting related to styles
  on a parent element, place any fixes here or in a like selector

  You can also style this element if you want to add a border, etc
  A better method for styling can be seen below with .jcrop-light
  (Add a class to the holder and style elements for that extended class)
*/
.jcrop-holder {
  direction: ltr;
  text-align: left;
}
/* Selection Border */
.jcrop-vline,
.jcrop-hline {
  background: #ffffff url("Jcrop.gif");
  font-size: 0;
  position: absolute;
}
.jcrop-vline {
  height: 100%;
  width: 1px !important;
}
.jcrop-vline.right {
  right: 0;
}
.jcrop-hline {
  height: 1px !important;
  width: 100%;
}
.jcrop-hline.bottom {
  bottom: 0;
}
/* Invisible click targets */
.jcrop-tracker {
  height: 100%;
  width: 100%;
  /* "turn off" link highlight */
  -webkit-tap-highlight-color: transparent;
  /* disable callout, image save panel */
  -webkit-touch-callout: none;
  /* disable cut copy paste */
  -webkit-user-select: none;
}
/* Selection Handles */
.jcrop-handle {
  background-color: #333333;
  border: 1px #eeeeee solid;
  width: 7px;
  height: 7px;
  font-size: 1px;
}
.jcrop-handle.ord-n {
  left: 50%;
  margin-left: -4px;
  margin-top: -4px;
  top: 0;
}
.jcrop-handle.ord-s {
  bottom: 0;
  left: 50%;
  margin-bottom: -4px;
  margin-left: -4px;
}
.jcrop-handle.ord-e {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 50%;
}
.jcrop-handle.ord-w {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 50%;
}
.jcrop-handle.ord-nw {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 0;
}
.jcrop-handle.ord-ne {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 0;
}
.jcrop-handle.ord-se {
  bottom: 0;
  margin-bottom: -4px;
  margin-right: -4px;
  right: 0;
}
.jcrop-handle.ord-sw {
  bottom: 0;
  left: 0;
  margin-bottom: -4px;
  margin-left: -4px;
}
/* Dragbars */
.jcrop-dragbar.ord-n,
.jcrop-dragbar.ord-s {
  height: 7px;
  width: 100%;
}
.jcrop-dragbar.ord-e,
.jcrop-dragbar.ord-w {
  height: 100%;
  width: 7px;
}
.jcrop-dragbar.ord-n {
  margin-top: -4px;
}
.jcrop-dragbar.ord-s {
  bottom: 0;
  margin-bottom: -4px;
}
.jcrop-dragbar.ord-e {
  margin-right: -4px;
  right: 0;
}
.jcrop-dragbar.ord-w {
  margin-left: -4px;
}
/* The "jcrop-light" class/extension */
.jcrop-light .jcrop-vline,
.jcrop-light .jcrop-hline {
  background: #ffffff;
  filter: alpha(opacity=70) !important;
  opacity: .70!important;
}
.jcrop-light .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 3px;
}
/* The "jcrop-dark" class/extension */
.jcrop-dark .jcrop-vline,
.jcrop-dark .jcrop-hline {
  background: #000000;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important;
}
.jcrop-dark .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #ffffff;
  border-color: #000000;
  border-radius: 3px;
}
/* Simple macro to turn off the antlines */
.solid-line .jcrop-vline,
.solid-line .jcrop-hline {
  background: #ffffff;
}
/* Fix for twitter bootstrap et al. */
.jcrop-holder img,
img.jcrop-preview {
  max-width: none;
}
/*------------------------------------------------------------------
    Colors
    (links, logo first letter, post meta icon, video list title, title
    icon, block tabs active, blockquotes, service box first letter,
    controls single post)
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
    Normal
-------------------------------------------------------------------*/
a,
.logo_brand h1:first-letter,
.content_meta span:after,
.block_title a.view_all i,
blockquote.alt:before,
.pricing_box .body ul li i,
footer.post_footer .post_controls .prev_post:hover span,
footer.post_footer .post_controls .next_post:hover span,
.pullquotes {
    color: #891427
}

/*------------------------------------------------------------------
    Hover
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
    Background colors
    (button, inputs[buttons],site navigation current, sub menu,
    calendar box, background color, video item label, review label
    mobile menu toggle, tags, calendar links, review posts widget,
    breaking news title, pricing box header, accordion background,
    review lines, shop product label onsale)
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
    Normal
-------------------------------------------------------------------*/
button,
nav.site_navigation ul.menu > li:hover > a,
nav.site_navigation ul.menu > li.current-menu-item > a,
.big_calendar_box,
.video_list .item .transition_line,
.video_list_1 .item .transition_line,
.video_list .item .label,
.video_list_1 .item .label,
.review_list .item .label,
.header_menu .open_menu_mobile,
.header_meta .open_menu_mobile,
.tagcloud a,
.widget_calendar tbody a,
.header_border,
.widget_review_posts .item .item_header .rate_stars,
.breaking_news .breaking_title,
.pricing_box .header,
.accordion_group.colored .accordion_title,
.tab_group.colored .ui-tabs-nav li.ui-tabs-active,
.editor_review .review_group .review .review_footer span,
.editor_review .review_summary .item_header,
.price_slider_wrapper .ui-slider-range,
.onsale {
    background-color: #891427
}
/*------------------------------------------------------------------
    Hover
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
    Border
    (header, block title, widget title, blockquotes)
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
    Normal
-------------------------------------------------------------------*/
.content_wrapper,
.block_title h2, .block_title h1, 
.widget .widget_title h4,
.block_title .ui-tabs-nav li.ui-tabs-active,
blockquote {
    border-color: #891427
}

/*------------------------------------------------------------------
    Hover
-------------------------------------------------------------------*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,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:700}dfn{font-style:italic}h1{font-size:2em;margin:.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:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;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-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*------------------------------------------------------------------
    Body
-------------------------------------------------------------------*/
body {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.025em;
    background-color: #333;
    color: #444;
    margin: 0;
    padding: 0
}
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.container:before,
.container:after,
.row:before,
.row:after,
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table
}
.container:after,
.row:after,
.clearfix:after {
    clear: both
}

/*------------------------------------------------------------------
    Typography
-------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222;
    margin: 0 0 10px 0;
    font-weight: 400
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    text-decoration: underline
}
h1 {
    font-size: 36px;
    line-height: 42px
}
h2 {
    font-size: 30px;
    /*line-height: 36px*/
}
h3 {
    font-size: 24px;
    /*line-height: 30px*/
}
h4 {
    font-size: 18px;
    /*line-height: 24px*/
}
h5 {
    font-size: 14px;
    line-height: 20px
}
h6 {
    font-size: 12px;
    line-height: 18px
}
p {
    margin: 10px 0 10px;
    /*clear: both;*/
}
hr {
    clear: both;
    display: block;
    overflow: hidden;
    border: 0;
    height: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #ddd;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}
/*
img {
    vertical-align: middle;
	width: 100%;
    max-width: 100%;
    border: 0
}
*/
iframe {
    vertical-align: middle;
    border: 0
}
a {
    background-color: transparent;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
a img {
    text-decoration: none
}
.text_left {
    text-align: left !important;
}
.text_right {
    text-align: right !important;
}
.text_center {
    text-align: center !important;
}
.text_justify {
    text-align: justify !important;
}
.dropcap:first-letter {
    float: left;
    display: block;
    font-size: 40px;
    line-height: 42px;
    margin: 0 10px 0 0;
    font-weight: 600
}
.pullquotes {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    font-style: italic
}
.pullquotes.left {
    float: left;
    width: 30%;
    margin: 10px 25px 15px 0;
}
.pullquotes.center {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0;
    clear: both
}
.pullquotes.right {
    float: right;
    width: 30%;
    margin: 10px 0 15px 25px;
}
blockquote {
    padding: 5px 20px;
    margin: 20px 0;
    border-left-style: solid;
    border-left-width: 5px;
    position: relative;
    padding-left: 40px;
    border: 0    
}
blockquote p {
    font-size: 22px;
    line-height: 28px;
    font-style: italic;
    color: #666
}
blockquote footer {
    display: block;
    font-size: 14px;
    color: #222
}
blockquote{
    position: relative;
    padding-left: 40px;
    border: 0
}
blockquote:before {
    font-family: "FontAwesome";
    content: "\f10e";
    font-size: 24px;
    position: absolute;
    left: 5px
}
.alignleft,
img.alignleft {
    float: left;
    margin: 5px 30px 10px 0
}
.alignright,
img.alignright {
    float: right;
    margin: 5px 0 10px 30px
}
.aligncenter,
img.aligncenter {
    /*clear: both;*/
    display: inline-block;
    margin: 20px auto 20px auto;
    float: none !important;
}
.wp-caption {
    text-align: center;
    max-width: 100%
}
.wp-caption img {
    max-width: 100%
}
.wp-caption-text {
    color: #999;
    font-style: italic;
    padding: 5px 0
}
code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
pre {
    display: block;
    overflow: hidden;
    padding: 10px;
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 20px;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f1f1f1;
    border: none
}
mark {
    padding: 2px 4px;
    background-color: #f1f1f1
}
kbd {
    padding: 2px 4px;
    font-size: 12px;
    color: #fff;
    background-color: #222
}
code {
    padding: 2px 4px;
    font-size: 12px;
    background-color: #f1f1f1
}
ol,
ul {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 20px
}
ul {
    list-style: disc
}
ol {
    list-style: decimal
}

ol li {
    margin: 0 0 15px 0;
}

ul ul,
ol ol,
ul ol,
ol ul {
    margin-bottom: 0
}
dl {
    margin-top: 0;
    margin-bottom: 20px
}
dt {
    font-weight: 700
}
dd {
    margin-left: 10px
}
address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 22px
}
.text_left {
    text-align: left
}
.text_right {
    text-align: right
}
.text_center {
    text-align: center
}
.text_justify {
    text-align: justify
}
table {
    border-spacing: 0;
    border-collapse: collapse;
    margin-bottom: 0px;
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    border: 1px solid #ddd
}
th {
    background-color: #ddd;
    color: #000;
}
th,
td {
    text-align: left;
    padding: 8px;
    line-height: 22px;
    vertical-align: bottom;
    border: 1px solid #ddd
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font: inherit;
    color: inherit;
    margin: 0;
    max-width: 100%
}
textarea {
    width: 100%;
    min-height: 160px
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 0px;
    font-weight: 700;
    color: #222;
    font-size: 12px
}
.form_group {
    margin-bottom: 10px
}
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    outline: none;
    height: 36px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    background-image: none;
    border: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
input[type="file"] {
    outline: none;
    padding: 6px;
    color: #666;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ddd
}
input[type="week"],
input[type="time"],
input[type="month"],
input[type="datetime-local"],
input[type="date"] {
    outline: none;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 22px;
    color: #666;
    background-image: none;
    border: 1px solid #ddd
}
select,
textarea,
input[type="url"],
input[type="text"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="datetime"] {
    display: block;
    outline: none;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 22px;
    color: #666;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ddd
}

input[readonly]{
    background-color: #f1f1f1;
    cursor: default;
}

ul.breadcrumb {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 15px 0;
    padding: 0;
    list-style: none
}
ul.breadcrumb li {
    display: inline-block;
    padding-right: 6px;
}
ul.breadcrumb li + li:before {
    padding-right: 4px;
    color: #555;
    content: "/\00a0"
}
ul.breadcrumb .active {
    color: #999
}
ul.page_numbers {
    font-size: 0;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
    float: right;
}
ul.page_numbers li {
    font-size: 14px;
    display: inline-block;
    margin-right: 5px
}
ul.page_numbers li span,
ul.page_numbers li a {
    display: block;
    padding: 6px 12px;
    line-height: 22px;
    background-color: #fff
}
ul.page_numbers li a.active {
    font-weight: bold;
    background-color: #f5f5f5;
}
ul.page_numbers.alt li a {
    background-color: #f5f5f5;
}
ul.page_numbers.alt li a.active {
    font-weight: bold;
    background-color: #ccc;
}




/*------------------------------------------------------------------
    Wrapper
-------------------------------------------------------------------*/
#wrapper {
    background-color: #f1f1f1;
    padding-top: 60px;
}
#wrapper.wide {
    width: 100%
}
#wrapper.boxed {
    margin: 0 auto;
    box-shadow: 0 0 20px 5px #000;
    box-shadow: 0 0 15px 5px rgba(0,0,0,0.1);
}

/*------------------------------------------------------------------
    Main content
-------------------------------------------------------------------*/
.main_content {}

/*------------------------------------------------------------------
    Sidebar
-------------------------------------------------------------------*/
.sidebar {}
.widget {
    color: #666;
    margin-bottom: 30px
}
.widget .widget_title {
    display: block;
    margin-bottom: 15px;
    height: 39px;
    border-bottom: 2px solid #ddd
}
.widget .widget_title h4 {
    display: inline-block;
    height: 39px;
    line-height: 39px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 16px;
    margin: 0
}
.widget_archive ul,
.widget_categories ul,
.widget_links ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_recent_entries ul {
    list-style: none;
    margin: 0;
    padding: 0
}
.widget_archive ul li:first-child,
.widget_categories ul li:first-child,
.widget_links ul li:first-child,
.widget_meta ul li:first-child,
.widget_nav_menu ul li:first-child,
.widget_pages ul li:first-child,
.widget_recent_comments ul li:first-child,
.widget_recent_entries ul li:first-child {
    border-top: 0 !important;
    padding-top: 0 !important
}
.widget_archive ul li,
.widget_categories ul li,
.widget_links ul li,
.widget_meta ul li,
.widget_nav_menu ul li,
.widget_pages ul li,
.widget_recent_comments ul li,
.widget_recent_entries ul li {
    padding: 5px 0;
    border-top: 1px solid #ddd
}
.widget select,
.widget textarea {
    width: 100%
}

/*------------------------------------------------------------------
    Widget - Price filter
-------------------------------------------------------------------*/
form.filter-price {}
form.filter-price .price_slider_wrapper {
    margin-bottom: 20px;
    position: relative;
    height: 8px;
    background-color: #ddd
}
.price_slider_wrapper .ui-slider-range {
    position: absolute;
    z-index: 1;
    height: 100%;
    display: block;
    border: 0;
    background-position: 0 0
}
.price_slider_wrapper .ui-slider-handle {
    cursor: ew-resize;
    outline: none;
    z-index: 1;
    margin-top: -4px;
    border: 1px solid;
    -webkit-transition: none !important;
       -moz-transition: none !important;
        -ms-transition: none !important;
         -o-transition: none !important;
            transition: none !important;
    width: 16px;
    top: 0;
    background-color: #fff;
    position: absolute;
    height: 16px;
}
.price_slider_wrapper .ui-slider-handle {
    margin-left: -1px
}
.price_slider_wrapper .ui-slider-handle:last-child {
    margin-left: -15px
}
.price_slider_amount {
    clear: both;
    overflow: hidden;
}
.price_slider_amount button {
    float: left
}
.price_slider_amount .price_label {
    float: right;
    padding: 7px 0
}

/*------------------------------------------------------------------
    Widget - Product list
-------------------------------------------------------------------*/
ul.product_list_widget {
    list-style: none;
    padding: 0;
    margin: 0
}
ul.product_list_widget li {
    background-color: #fff;
    padding: 15px 20px
}
ul.product_list_widget li:before,
ul.product_list_widget li:after {
    content: " ";
    display: table
}
ul.product_list_widget li:after {
    clear: both
}
ul.product_list_widget li:nth-child(odd) {
    background-color: #f9f9f9
}
ul.product_list_widget li .item_wrapper {
    overflow: hidden
}
ul.product_list_widget li .item_header {
    width: 80px;
    margin: 4px 15px 0 0;
    float: left;
    background-color: #000
}
ul.product_list_widget li .item_content h4 {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 2px 0;
    font-weight: 600
}
ul.product_list_widget li .item_content h4 a {
    display: block;
    color: #222
}
ul.product_list_widget li .item_content .price {
    display: block;
    color: #222;
    font-weight: 700
}
ul.product_list_widget li .item_content del {
    font-weight: 400;
    color: #999
}
ul.product_list_widget li .item_content ins {
    text-decoration: none;
    color: #222;
    font-weight: 700;
}

/*------------------------------------------------------------------
    Widget - Tag cloud
-------------------------------------------------------------------*/
.tagcloud:before,
.tagcloud:after {
    content: " ";
    display: table
}
.tagcloud:after {
    clear: both
}
.tagcloud a {
    float: left;
    font-size: 12px !important;
    color: #fff;
    padding: 4px 10px;
    margin: 0 5px 5px 0
}
.tagcloud a:hover {
    background-color: #222
}

/*------------------------------------------------------------------
    Widget - Search
-------------------------------------------------------------------*/
form.search_form .search_field {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%
}

/*------------------------------------------------------------------
    Widget - Calendar
-------------------------------------------------------------------*/
.widget_calendar {}
.widget_calendar caption {
    text-transform: uppercase;
    margin-bottom: 15px
}
.widget_calendar td,
.widget_calendar th {
    padding: 0;
    line-height: 35px;
    text-align: center
}
.widget_calendar tbody a {
    color: #fff;
    display: block;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.widget_calendar tbody a:hover {
    background-color: #222
}

/*------------------------------------------------------------------
    Widget - Banner 300x250
-------------------------------------------------------------------*/
.widget_banner_300x250 .banner {
    width: 100%;
    max-width: 350px;
    
    background-color: #fff;
    text-align: center;
    padding: 14px
}

/*------------------------------------------------------------------
    Widget - Banners 125x125
-------------------------------------------------------------------*/
.widget_banner_125x125 .banners:before,
.widget_banner_125x125 .banners:after {
    content: " ";
    display: table
}
.widget_banner_125x125 .banners:after {
    clear: both
}
.widget_banner_125x125 .banners .banner {
    padding: 14px;
    background-color: #fff;
    display: block;
    float: left;
    margin: 5px
}

/*------------------------------------------------------------------
    Widget - Reviews posts
-------------------------------------------------------------------*/
.widget_review_posts .item:before,
.widget_review_posts .item:after {
    content: " ";
    display: table
}
.widget_review_posts .item:after {
    clear: both
}
.widget_review_posts .item {
    margin-bottom: 15px
}
.widget_review_posts .item:last-child {
    margin-bottom: 0
}
.widget_review_posts .item .item_header {
    width: 90px;
    margin: 0 15px 0 0;
    float: left;
    background-color: #000
}
.widget_review_posts .item .item_header .rate_box {
    position: relative;
    width: 90px;
    height: 60px;
    text-transform: uppercase;
    text-align: center;
    color: #fff
}
.widget_review_posts .item .item_header .rate_box div.image {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 60px;
    overflow: hidden
}
.widget_review_posts .item .item_header .rate_box div.image img {
    opacity: 0.4
}
.widget_review_posts .item .item_header .rate_box div.info {
    padding-top: 14px;
    z-index: 2;
    position: relative
}
.widget_review_posts .item .item_header .rate_box .score {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 2px
}
.widget_review_posts .item .item_header .rate_box .summary {
    font-size: 10px;
    line-height: 1.1
}
.widget_review_posts .item .item_header .rate_stars {
    padding: 5px 0 6px 0
}
.widget_review_posts .item .item_header .rate_stars .star-rating {
    margin-left: 10px;
    margin-bottom: 0
}
.widget_review_posts .item .item_header .rate_stars .star-rating:before {
    color: #fff;
    color: rgba(255,255,255,0.4);
}
.widget_review_posts .item .item_header .rate_stars .star-rating span:before {
    color: #fff
}
.widget_review_posts .item .item_wrapper {
    overflow: hidden;
    background-color: #fff;
    padding: 10px 15px
}
.widget_review_posts .item .item_content h4 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    font-weight: 600
}
.widget_review_posts .item .item_content h4 a {
    display: block;
    color: #222
}
.widget_review_posts .item .content_meta {
    margin-top: 5px
}
.widget_review_posts .item .content_meta span {
    line-height: 1
}

/*------------------------------------------------------------------
    Widget - Socialize
-------------------------------------------------------------------*/
.widget_socialize:before,
.widget_socialize:after {
    content: " ";
    display: table
}
.widget_socialize:after {
    clear: both
}
.widget_socialize .soc_box {
    background-color: #fff;
    height: 60px;
    width: 49%;
    float: left;
    margin-bottom: 10px
}
.widget_socialize .soc_box:nth-child(2n+1) {
    float: right
}
.widget_socialize .soc_box a {
    display: block
}
.widget_socialize .soc_box .icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: block;
    line-height: 60px;
    text-align: center;
    font-size: 22px;
    background-color: #222;
    color: #fff;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    float: left;
    margin-right: 5px
}
.widget_socialize .soc_box .icon:before {
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 60px 0 0;
    border-color: rgba(255,255,255,0.1) transparent transparent transparent;
    position: absolute;
    left: 0;
    top: 0
}
.widget_socialize .soc_box .icon.facebook {
    background-color: #3b5998
}
.widget_socialize .soc_box .icon.twitter {
    background-color: #00aced
}
.widget_socialize .soc_box .icon.dribbble {
    background-color: #ea4c89
}
.widget_socialize .soc_box .icon.google {
    background-color: #dd4b39
}
.widget_socialize .soc_box .icon.youtube {
    background-color: #bb0000
}
.widget_socialize .soc_box .icon.linkedin {
    background-color: #007bb6
}
.widget_socialize .soc_box .icon.instagram {
    background-color: #517fa4
}
.widget_socialize .soc_box .icon.pinterest {
    background-color: #cb2027
}
.widget_socialize .soc_box .icon.vine {
    background-color: #00bf8f
}
.widget_socialize .soc_box .icon.flickr {
    background-color: #ff0084
}
.widget_socialize .soc_box .icon.tumblr {
    background-color: #32506d
}
.widget_socialize .soc_box .icon.vimeo {
    background-color: #aad450
}
.widget_socialize .soc_box:hover .icon {
    background-color: #222
}
.widget_socialize .soc_box .soc_card {
    overflow: hidden;
    padding: 9px
}
.widget_socialize .soc_box .soc_card .number {
    color: #222;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 26px
}
.widget_socialize .soc_box .soc_card .text {
    text-transform: uppercase;
    font-size: 10px;
    color: #999;
    line-height: 10px
}

/*------------------------------------------------------------------
    Widget - Timeline
-------------------------------------------------------------------*/
.widget_timeline {}
.widget_timeline .item {
    min-height: 56px;
    position: relative;
    padding-left: 35px
}
.widget_timeline .item .item_date:before {
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 56px 70px 0 0;
    border-color: rgba(255,255,255,0.1) transparent transparent transparent;
    position: absolute;
    left: 0;
    top: 0
}
.widget_timeline .item .item_date {
    background-color: #bbb;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 56px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.widget_timeline .item:hover .item_date {
    background-color: #222
}
.widget_timeline .item .item_date .date {
    padding-top: 10px;
    font-size: 20px;
    line-height: 1;
    font-weight: 700
}
.widget_timeline .item .item_date .month {
    font-size: 12px;
    line-height: 1;
    font-weight: 400
}
.widget_timeline .item .item_content {
    min-height: 56px;
    border-left: 1px dotted #bbb;
    padding-left: 50px;
    padding-bottom: 15px;
    position: relative
}
.widget_timeline .item:last-child .item_content {
    border-left: none;
    padding-bottom: 0
}
.widget_timeline .item .item_content h4 {
    background-color: #fff;
    padding: 10px;
    padding-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    font-weight: 600;
    color: #222
}
.widget_timeline .item .item_content h4 a {
    display: block;
    color: #222
}
.widget_timeline .item .item_content .content_meta {
    background-color: #fff;
    padding: 10px;
    padding-top: 0
}

/*------------------------------------------------------------------
    Widget - Latest posts
-------------------------------------------------------------------*/
.widget_latest_posts .item:before,
.widget_latest_posts .item:after,
.widget_latest_comments .item:before,
.widget_latest_comments .item:after {
    content: " ";
    display: table
}
.widget_latest_posts .item:after,
.widget_latest_comments .item:after {
    clear: both
}
.widget_latest_posts .item {
    background-color: #fff;
    padding: 15px 20px
}
.widget_latest_posts .item:nth-child(odd) {
    background-color: #f9f9f9
}
.widget_latest_posts .item .item_wrapper {
    overflow: hidden
}
.widget_latest_posts .item .item_header {
    width: 80px;
    margin: 4px 15px 0 0;
    float: left;
    background-color: #000
}
.widget_latest_posts .item .item_content h4 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    font-weight: 600
}
.widget_latest_posts .item .item_content h4 a {
    display: block;
    color: #222
}
.widget_latest_posts .item .content_meta {
    margin-top: 5px
}
.widget_latest_posts .item .content_meta span {
    line-height: 1
}

/*------------------------------------------------------------------
    Widget - Latest comments
-------------------------------------------------------------------*/
.widget_latest_comments {}
.widget_latest_comments .item {
    margin-bottom: 15px
}
.widget_latest_comments .item:last-child {
    margin-bottom: 0
}
.widget_latest_comments .item .item_header:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    right: -25px;
    top: 15px;
    border-style: solid;
    border-width: 0 15px 20px 0;
    border-color: transparent #fff transparent transparent;
}
.widget_latest_comments .item .item_header {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0px 25px 0 0;
    float: left
}
.widget_latest_comments .item .item_header img {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.widget_latest_comments .item .item_header:hover img {
    opacity: 1
}
.widget_latest_comments .item .item_wrapper {
    background-color: #fff;
    padding: 10px;
    min-height: 50px;
    overflow: hidden
}
.widget_latest_comments .item .item_wrapper .author {
    margin-bottom: 5px;
    color: #222
}
.widget_latest_comments .item .item_wrapper .author a {
    text-decoration: underline;
    color: #222
}
.widget_latest_comments .item .item_wrapper .author span {
    color: #999;
    font-style: italic
}
.widget_latest_comments .item .item_wrapper .comment {
    font-size: 12px;
    line-height: 18px
}

/*------------------------------------------------------------------
    .widget_organization
-------------------------------------------------------------------*/
.widget_organization {
    border: solid 0px;
}
.widget_organization .logo {
    text-align: center;

}
.widget_organization .logo img {
    width: 240px;
    background-color: #fff;
    border: solid 2px #ddd;
}

.widget_organization .item {
    padding: 20px;
}

.widget_organization .item .text {
    padding-left: 10px;
    display: inline-block;
    vertical-align: top;
}








/*------------------------------------------------------------------
    Container
-------------------------------------------------------------------*/
.container {
    position: relative;
    margin-right: auto;
    margin-left: auto
}
.row {
    margin-left: -10px;
    margin-right: -10px;
}
.col {
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;


}
.col_1_of_12 {
    width: 8.33333333%
}
.col_2_of_12 {
    width: 16.66666667%
}
.col_3_of_12 {
    width: 25%
}
.col_4_of_12 {
    width: 33.33333333%
}
.col_5_of_12 {
    width: 41.66666667%
}
.col_6_of_12 {
    width: 50%
}
.col_7_of_12 {
    width: 58.33333333%
}
.col_8_of_12 {
    width: 66.66666667%
}
.col_9_of_12 {
    width: 75%
}
.col_10_of_12 {
    width: 83.33333333%
}
.col_11_of_12 {
    width: 91.66666667%
}
.col_12_of_12 {
    width: 100%
}

/*------------------------------------------------------------------
    Header
-------------------------------------------------------------------*/
#header {}

#header #logo {
    position: relative;

    top: 8px;


    width: auto;
    height: auto;

    float: left;

}

/*------------------------------------------------------------------
    Header meta
-------------------------------------------------------------------*/
.header_meta.dark {
    background-color: #222
}
.header_meta.light {
    background-color: #fff
}

/*------------------------------------------------------------------
    Top navigation
-------------------------------------------------------------------*/
nav.top_navigation {
    float: right;
}
nav.top_navigation ul {
    list-style: none;
    z-index: 9;
    padding: 0;
    margin: 0
}
nav.top_navigation ul li {
    position: relative
}

/* Top links */
nav.top_navigation ul.menu {
    position: relative;
}
nav.top_navigation ul.menu > li {
    float: left
}
nav.top_navigation ul.menu > li > a {
    display: block;
    font-size: 14px;
    padding: 0px 14px;
    line-height: 35px;
    color: #999
}
nav.top_navigation ul.menu > li:hover > a,
nav.top_navigation ul.menu > li.current-menu-item > a {
    color: #fff
}
.header_meta.light nav.top_navigation ul.menu > li:hover > a,
.header_meta.light nav.top_navigation ul.menu > li.current-menu-item > a {
    color: #222
}

/* Top links child */
nav.top_navigation ul.menu ul.sub-menu {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    z-index: 9999;
    min-width: 200px;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s; 
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s
}
nav.top_navigation ul.menu li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    overflow: visible
}
.header_meta.dark nav.top_navigation ul.menu ul.sub-menu {
    background-color: #333
}
.header_meta.light nav.top_navigation ul.menu ul.sub-menu {
    background-color: #f9f9f9
}
nav.top_navigation ul.menu ul.sub-menu li a {
    color: #999;
    display: block;
    padding: 5px 10px
}
.header_meta.dark nav.top_navigation ul.menu ul.sub-menu li {
    border-bottom: 1px solid #444
}
.header_meta.light nav.top_navigation ul.menu ul.sub-menu li {
    border-bottom: 1px solid #eee
}
nav.top_navigation ul.menu ul.sub-menu li:last-child {
    border-bottom: none
}
.header_meta.dark nav.top_navigation ul.menu ul.sub-menu li a:hover {
    color: #fff
}
.header_meta.light nav.top_navigation ul.menu ul.sub-menu li a:hover {
    color: #222
}

/* Top links child */
nav.top_navigation ul.menu ul.sub-menu ul.sub-menu {
    top: 0;
    left: 100%
}
nav.top_navigation ul.menu ul.sub-menu li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    overflow: visible
}
nav.top_navigation ul.menu ul.sub-menu li:last-child {
    border-bottom: none
}

/* Parent drop down */
nav.top_navigation ul.menu > li.menu-item-has-children > a {
    padding-right: 20px
}
nav.top_navigation ul.menu > li.menu-item-has-children > a:after {
    font-family: "FontAwesome";
    content: "\f107";
    font-size: 10px;
    position: absolute;
    right: 10px
}
.header_meta.dark nav.top_navigation ul.menu > li.menu-item-has-children > a:after {
    color: #999
}
.header_meta.light nav.top_navigation ul.menu > li.menu-item-has-children > a:after {
    color: #bbb
}

/* Child drop down */
nav.top_navigation ul.menu ul.sub-menu > li.menu-item-has-children > a {
    padding-right: 20px
}
nav.top_navigation ul.menu ul.sub-menu > li.menu-item-has-children > a:after {
    font-family: "FontAwesome";
    content: "\f105";
    font-size: 10px;
    position: absolute;
    right: 10px
}
.header_meta.dark nav.top_navigation ul.menu ul.sub-menu > li.menu-item-has-children > a:after {
    color: #999
}
.header_meta.light nav.top_navigation ul.menu ul.sub-menu > li.menu-item-has-children > a:after {
    color: #bbb
}

/* Searchg block */
.search_block {
    float: right
}
.search_block form {
    position: relative
}
.search_block form input {
    width: auto;
    padding: 0 47px 0 12px;
    border: none;
    font-size: 14px;
    height: 35px;
    line-height: 22px;
}
.search_block form i {
    color: #999;
    font-size: 10px;
    position: absolute;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 35px;
    right: 0;
    top: 0
}
.header_meta.dark .search_block form input {
    background-color: #444;
    color: #ddd
}
.header_meta.light .search_block form input {
    background-color: #e5e5e5;
    color: #666
}

/*------------------------------------------------------------------
    Mobile site navigation
-------------------------------------------------------------------*/
.header_meta .open_menu_mobile {
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0px 10px;
    line-height: 35px;
    width: 35px;
    text-align: center;
    float: left
}
.open_menu_mobile {
    display: none
}
.mobile_site_navigation {
    display: none;
    clear: both;
    width: 100%
}
.header_meta.dark .mobile_site_navigation {
    color: #999
}
.header_meta.dark .mobile_site_navigation ul.menu_mobile > li > a {
    color: #ddd;
    border-bottom: 1px solid #444;
}
.header_meta.light .mobile_site_navigation ul.menu_mobile > li > a {
    color: #444;
    border-bottom: 1px solid #eee
}
.header_meta .mobile_site_navigation ul.menu_mobile > li:last-child > a {
    border-bottom: 0
}
.header_meta.dark .mobile_site_navigation ul.menu_mobile ul.sub-menu a {
    color: #999;
    border-bottom: 1px solid #444
}
.header_meta.light .mobile_site_navigation ul.menu_mobile ul.sub-menu a {
    color: #999;
    border-bottom: 1px solid #eee
}

/*------------------------------------------------------------------
    Header body
-------------------------------------------------------------------*/
.header_body.dark {
    background-color: #111
}
.header_body.light {
    background-color: #f1f1f1
}
.header_body {
    padding: 30px 0
}

/*------------------------------------------------------------------
    Header menu
-------------------------------------------------------------------*/
.header_menu {
    z-index: 99;
}
.header_border {
    height: 2px
}
.header_menu.dark {
    background-color: #222
}
.header_menu.light {
    background-color: #fff
}
.header_main-parent {

}
#header.fixed {
    position: fixed;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 99;
    width: 100%;
    left: 0px;
    top: 0px;


}
.shadow {
    -webkit-box-shadow: 6px 6px 10px 2px rgba(0,0,0,0.5);
    -moz-box-shadow: 6px 6px 10px 2px rgba(0,0,0,0.5);
    box-shadow: 6px 6px 10px 2px rgba(0,0,0,0.5);
}

/*------------------------------------------------------------------
    Logo
-------------------------------------------------------------------*/
#header.style_1 .logo_brand {
    float: left
}
#header.style_2 .logo_brand {
    margin: 0 auto 20px auto;
    text-align: center
}
.header_body.dark .logo_brand h1 a {
    color: #fff
}
.logo_brand h1 {
    letter-spacing: -1px;
    font-size: 36px;
    line-height: 36px;
    margin: 0
}
.logo_brand h1 a {
    color: #222
}
.logo_brand h2 {
    color: #999;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    margin: 0
}

/*------------------------------------------------------------------
    Site navigation
-------------------------------------------------------------------*/
nav.site_navigation {
    position: relative;
}
nav.site_navigation ul {
    list-style: none;
    z-index: 8;
    padding: 0;
    margin: 0 0 0 15px;

   /*border: solid 1px orange;*/
}

/* Top links */
nav.site_navigation ul.menu {
    position: relative;
    display: inline-block;
    float: left;

}
nav.site_navigation ul.menu > li {
    float: left
}
nav.site_navigation ul.menu > li > a {
    position: relative;
    display: block;
    font-size: 16px;
    padding: 0px 16px;
    line-height: 45px;
    color: #999
}
nav.site_navigation ul.menu > li:hover > a,
nav.site_navigation ul.menu > li.current-menu-item > a {
    color: #fff
}

/* Top links child */
nav.site_navigation ul.menu ul.sub-menu {
    margin: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    min-width: 200px;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s; 
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s
}
nav.site_navigation ul.menu li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    overflow: visible
}
.header_menu.dark nav.site_navigation ul.menu ul.sub-menu {
    background-color: #333
}
.header_menu.dark nav.site_navigation ul.menu ul.sub-menu li {
    border-bottom: 1px solid #444
}
.header_menu.light nav.site_navigation ul.menu ul.sub-menu {
    background-color: #f9f9f9
}
.header_menu.light nav.site_navigation ul.menu ul.sub-menu li {
    border-bottom: 1px solid #eee
}
nav.site_navigation ul.menu ul.sub-menu li {
    position: relative;
}
nav.site_navigation ul.menu ul.sub-menu li:last-child {
    border-bottom: none;
}
nav.site_navigation ul.menu ul.sub-menu li a {
    color: #999;
    display: block;
    padding: 5px 10px
}
.header_menu.dark nav.site_navigation ul.menu ul.sub-menu li a:hover {
    color: #fff
}
.header_menu.light nav.site_navigation ul.menu ul.sub-menu li a:hover {
    color: #222
}

/* Top links child */
nav.site_navigation ul.menu ul.sub-menu ul.sub-menu {
    top: 0;
    left: 100%
}
nav.site_navigation ul.menu ul.sub-menu li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    overflow: visible
}
nav.site_navigation ul.menu ul.sub-menu li:last-child {
    border-bottom: none;
}

/* Parent drop down */
nav.site_navigation ul.menu > li.menu-item-has-children > a {
    padding-right: 20px
}
nav.site_navigation ul.menu > li.menu-item-has-children > a:after {
    font-family: "FontAwesome";
    content: "\f107";
    font-size: 10px;
    position: absolute;
    right: 10px
}
.header_menu.dark nav.site_navigation ul.menu > li.menu-item-has-children > a:after {
    color: #999
}
.header_menu.light nav.site_navigation ul.menu > li.menu-item-has-children > a:after {
    color: #bbb
}
.header_menu.dark nav.site_navigation ul.menu > li.menu-item-has-children:hover > a:after,
.header_menu.light nav.site_navigation ul.menu > li.menu-item-has-children:hover > a:after,
.header_menu.dark nav.site_navigation ul.menu > li.current-menu-item > a:after,
.header_menu.light nav.site_navigation ul.menu > li.current-menu-item > a:after {
    color: #fff
}

/* Child drop down */
nav.site_navigation ul.menu ul.sub-menu > li.menu-item-has-children > a {
    padding-right: 20px
}
nav.site_navigation ul.menu ul.sub-menu > li.menu-item-has-children > a:after {
    color: #999;
    font-family: "FontAwesome";
    content: "\f105";
    font-size: 10px;
    position: absolute;
    right: 10px
}

/* Mega menu */
nav.site_navigation ul.menu ul.cs_mega_menu {
    padding: 10px;
    color: #999;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    height: auto;
    position: absolute;
    z-index: 1;
    left: 0;
    width: 100%;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s; 
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s
}
nav.site_navigation ul.menu li:hover > ul.cs_mega_menu {
    opacity: 1;
    visibility: visible;
    overflow: visible
}
.header_menu.dark nav.site_navigation ul.menu ul.cs_mega_menu {
    background-color: #333
}
.header_menu.light nav.site_navigation ul.menu ul.cs_mega_menu {
    background-color: #f9f9f9
}

/* Widgets */
nav.site_navigation .widget {
    position: relative;
    width: 25%;
    float: left;
    margin: 0;
    padding: 10px
}
nav.site_navigation .widget .widget_title {
    height: 30px;
}
nav.site_navigation .widget .widget_title h4 {
    height: 30px;
    line-height: 30px;
    font-size: 16px
}

/* Widgets dark */
.header_menu.dark nav.site_navigation .widget .widget_title {
    border-bottom: 2px solid #444
}
.header_menu.dark nav.site_navigation .widget .widget_title h4 {
    color: #fff
}
.header_menu.dark nav.site_navigation .widget_archive ul li,
.header_menu.dark nav.site_navigation .widget_categories ul li,
.header_menu.dark nav.site_navigation .widget_links ul li,
.header_menu.dark nav.site_navigation .widget_meta ul li,
.header_menu.dark nav.site_navigation .widget_nav_menu ul li,
.header_menu.dark nav.site_navigation .widget_pages ul li,
.header_menu.dark nav.site_navigation .widget_recent_comments ul li,
.header_menu.dark nav.site_navigation .widget_recent_entries ul li {
    border-top: 1px solid #444
}


/*------------------------------------------------------------------
    Mobile site navigation
-------------------------------------------------------------------*/
.header_menu .open_menu_mobile {
    cursor: pointer;
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
    padding: 0px 10px;
    line-height: 45px;
    width: 45px;
    text-align: center;


}
.header_menu.dark .mobile_site_navigation {
    color: #999
}
.mobile_site_navigation ul.menu_mobile {
    border-top: solid 1px #444;
}

.mobile_site_navigation ul.menu_mobile > li > a {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    padding: 10px 0
}
.header_menu.dark .mobile_site_navigation ul.menu_mobile > li > a {
    color: #ddd;
    border-bottom: 1px solid #444;
}
.header_menu.light .mobile_site_navigation ul.menu_mobile > li > a {
    color: #444;
    border-bottom: 1px solid #eee
}
.mobile_site_navigation ul.menu_mobile > li:last-child > a {
    border-bottom: 0 !important;
}

.mobile_site_navigation ul.menu_mobile ul.sub-menu {
    display: none;
}

.mobile_site_navigation ul.menu_mobile ul.sub-menu a {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px
}
.mobile_site_navigation ul.menu_mobile ul.sub-menu ul a {
    padding-left: 10px
}
.mobile_site_navigation ul.menu_mobile ul.sub-menu ul ul a {
    padding-left: 20px
}
.mobile_site_navigation ul.menu_mobile ul.sub-menu ul ul ul a {
    padding-left: 30px
}
.mobile_site_navigation ul.menu_mobile ul.sub-menu ul ul ul ul a {
    padding-left: 40px
}
.mobile_site_navigation ul.menu_mobile ul.sub-menu ul ul ul ul ul a {
    padding-left: 50px
}
.header_menu.dark .mobile_site_navigation ul.menu_mobile ul.sub-menu a {
    color: #999;
    border-bottom: 1px solid #444
}
.header_menu.light .mobile_site_navigation ul.menu_mobile ul.sub-menu a {
    color: #999;
    border-bottom: 1px solid #eee
}

/*------------------------------------------------------------------
    Banner
-------------------------------------------------------------------*/
#header.style_1 .header_body .banner {
    float: right
}
#header.style_2 .header_body .banner {
    display: block;
    margin: 0 auto;
    text-align: center
}

/*------------------------------------------------------------------
    Featured carousel
-------------------------------------------------------------------*/
.featured_carousel {
    padding: 0 10px
}
.featured_carousel.light {
    background-color: #f1f1f1
}
.featured_carousel.dark {
    background-color: #111
}

/* Override */
.featured_carousel .article_list_big_1 {
    margin-bottom: 0
}

/* Controls */
.featured_carousel .owl-controls .owl-buttons div {
    font-family: "FontAwesome";
    font-size: 28px;
    background-color: #000;
    opacity: 0.3;
    position: absolute;
    color: #FFF;
    display: block;
    top: 50%;
    width: 50px;
    height: 100px;
    line-height: 100px;
    margin-top: -50px;
    text-align: center;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.featured_carousel .owl-controls .owl-buttons div:hover {
    opacity: 0.7;
    text-decoration: none
}
.featured_carousel .owl-controls .owl-buttons div.owl-prev {
    left: 0
}
.featured_carousel .owl-controls .owl-buttons div.owl-next {
    right: 0
}

/* Items */
.featured_carousel .owl-item .item {
    padding: 30px 10px
}

/*------------------------------------------------------------------
    Grid block articles
-------------------------------------------------------------------*/
.grid_block {
    background-repeat: no-repeat
}
.grid_block.light {
    background-color: #f1f1f1
}
.grid_block.dark {
    background-color: #000
}
.grid_block_articles {
    padding: 0px 0 20px 0
}
.grid_block_articles h1, 
.grid_block_articles h2, 
.grid_block_articles h3, 
.grid_block_articles h4 {
    font-family: "Open Sans Condensed";
} 

.grid_block_articles:before,
.grid_block_articles:after {
    content: " ";
    display: table
}
.grid_block_articles:after {
    clear: both
}
.grid_block_articles .item {    
    position: relative;
    float: left;
    width: 25%
}
.grid_block_articles .item.cover {
    width: 49%;
}
.grid_block_articles .item .inner {
    overflow: hidden;
    margin: 0 0 10px 10px;
    background-color: #000;
    height: 210px;
}
.grid_block_articles .item:first-of-type .inner {
    margin: 0;
}

.grid_block_articles .item.cover .inner {
    height: 430px;
    margin: 0;
    text-align: center;
}
.grid_block_articles .item.cover .inner img {
    opacity: 1;
    
}
.grid_block_articles .item .inner img {

    display: block;
    object-fit: cover;
    height: 100%;
    width: 100% !important;
    opacity: .8;

    border: solid 2px orange



    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.grid_block_articles .item .inner:hover img {
    opacity: 1;
    -webkit-transform: rotate(2deg) scale(1.1,1.1);
    -moz-transform: rotate(2deg) scale(1.1,1.1);
    -ms-transform: rotate(2deg) scale(1.1,1.1);
    transform: rotate(2deg) scale(1.1,1.1);
}
.grid_block_articles .item .meta_wrapper {
    z-index: 3;
    position: absolute;
    left: 20px;
    bottom: 15px;
    margin-right: 20px
}
.grid_block_articles .item .meta_wrapper h3 {
    font-size: 16px;
    line-height: 23px;
    margin: 0;
    font-weight: 600;



   text-shadow:
       1px 1px 0 #000,
     -1px -1px 0 #000,  
      1px -1px 0 #000,
      -1px 1px 0 #000,
       1px 1px 0 #000;

}
.grid_block_articles .item.cover .meta_wrapper h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px
}
.grid_block_articles .item .meta_wrapper h3 a {
    color: #fff;
    text-decoration: none;
}
.grid_block_articles .item .meta_wrapper .content_meta span,
.grid_block_articles .item .meta_wrapper .content_meta a {
    color: #bbb
}
.grid_block_articles .item .meta_wrapper .content_meta a:hover {
    color: #fff
}

/*------------------------------------------------------------------
    Main slider
-------------------------------------------------------------------*/
.main_content_slider {
    padding: 30px 0
}
.main_content_slider .owl-item {}
.main_content_slider .item {
    position: relative
}
.main_content_slider .item .meta_wrapper {
    position: absolute;
    bottom: 0;
    z-index: 2;
    padding: 0 25px 25px 25px
}
.main_content_slider .item .meta_wrapper h1 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: #fff
}
.main_content_slider .item .meta_wrapper h1 a {
    color: #fff
}
.main_content_slider .item .meta_wrapper .content_meta span,
.main_content_slider .item .meta_wrapper .content_meta span a {
    color: #bbb
}
.main_content_slider .item .meta_wrapper .content_meta span a:hover {
    color: #fff
}
.main_content_slider .owl-controls .owl-buttons div {
    z-index: 2;
    font-family: "FontAwesome";
    font-size: 28px;
    background-color: #000;
    opacity: 0.3;
    position: absolute;
    color: #FFF;
    display: block;
    top: 50%;
    width: 30px;
    height: 70px;
    line-height: 70px;
    margin-top: -35px;
    text-align: center;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.main_content_slider .owl-controls .owl-buttons div:hover {
    opacity: 0.7;
    text-decoration: none
}
.main_content_slider .owl-controls .owl-buttons div.owl-prev {
    left: 0
}
.main_content_slider .owl-controls .owl-buttons div.owl-next {
    right: 0
}

/*------------------------------------------------------------------
    Breaking news
-------------------------------------------------------------------*/
.breaking_news {
    height: 30px
}
.breaking_news.footer.dark {
    background-color: #333
}
.breaking_news.dark {
    background-color: #222
}
.breaking_news.light {
    background-color: #f9f9f9
}
.breaking_news .breaking_title {
    float: left;
    display: block;
    position: relative;
    width: 154px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    text-transform: uppercase
}
.breaking_news .breaking_block {
    float: left;
    display: block;
    width: 870px;
    height: 30px
}
.breaking_news .breaking_block .owl-wrapper-outer {
    float: left;
    display: block;
    width: 830px
}
.breaking_news .breaking_block .owl-controls {
    text-align: right;
    float: left;
    display: block;
    width: 40px;
    position: relative
}
.breaking_news .breaking_block .item span.date {
    font-size: 12px;
    color: #999;
    margin: 0 5px 0 10px
}
.breaking_news .breaking_block .item {
    white-space: nowrap;
    overflow: hidden
}
.breaking_news .breaking_block .item h4 {
    font-size: 12px;
    line-height: 30px;
    margin: 0;
    font-weight: 400;
    display: inline-block
}
.breaking_news.dark .breaking_block .item h4 a {
    color: #fff
}
.breaking_news.light .breaking_block .item h4 a {
    color: #222
}
.breaking_news .breaking_block .owl-controls .owl-buttons div {
    font-family: "FontAwesome";
    font-size: 14px;
    position: absolute;
    display: block;
    top: 0;
    width: 20px;
    height: 30px;
    line-height: 30px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.breaking_news.dark .breaking_block .owl-controls .owl-buttons div {
    color: #fff
}
.breaking_news.light .breaking_block .owl-controls .owl-buttons div {
    color: #222
}
.breaking_news .breaking_block .owl-controls .owl-buttons div.owl-prev {
    left: 0
}
.breaking_news .breaking_block .owl-controls .owl-buttons div.owl-next {
    right: 0
}

/*------------------------------------------------------------------
    Featured banner
-------------------------------------------------------------------*/
.featured_banner {
    text-align: center
}
.featured_banner .banner {
    margin-bottom: 30px;
    padding: 14px;
    background-color: #fff;
    display: inline-block
}
.featured_banner .banner img {
    width: 100%
}

/*------------------------------------------------------------------
    Content banner
-------------------------------------------------------------------*/
.content_banner {
    text-align: center
}
.content_banner .banner {
    margin-bottom: 30px;
    padding: 14px;
    background-color: #fff;
    display: inline-block;

    width: 728px;

}

.content_banner .banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/*------------------------------------------------------------------
    Page wrapper
-------------------------------------------------------------------*/
#page_wrapper {
    padding: 20px 0;
    min-height: 72vh;
}

/*------------------------------------------------------------------
    Shortcodes
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
    Buttons
-------------------------------------------------------------------*/
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 5px 5px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    outline: none;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    background-color: #aaa;
    color: #fff;
    position: relative;
    height: auto;
}
.btn.nolink {
	cursor: inherit;
}
.btn.nolink:hover {
	background-color: #aaa !important;
}
.btn:hover {
    background-color: #999;
    color: #fff;
}
.btn.btn_small {
    padding: 2px 6px;
    font-size: 11px;
    line-height: 20px
}
.btn.btn_large {
    padding: 12px 18px;
    font-size: 18px;
    line-height: 26px;
    text-align: left;
}
.btn.btn_extralarge {
    text-transform: uppercase;
    padding: 20px 26px;
    font-size: 24px;
    line-height: 32px
}
.btn.btn_wide {
    padding-left: 50px !important;
    padding-right: 50px  !important;

    
}
.btn.btn_expand {
    width: 100%;
    display: block
}
.btn.btn_expand + .btn.btn_expand {
    margin-top: 5px
}
.btn.btn_white {
    background-color: #fff;
    color: #444
}
.btn.btn_white:hover {
    background-color: #fdfdfd;
    color: #222
}
.btn.btn_black {
    background-color: #333
}
.btn.btn_black:hover {
    background-color: #222
}
.btn.btn_red {
    background-color: #891427
}
.btn.btn_red:hover {
    background-color: #ce4031
}
.btn.btn_maroon {
    background-color: #891427
}
.btn.btn_maroon:hover {
    background-color: #800000
}
.btn.btn_green {
    background-color: #7ab55c
}
.btn.btn_green:hover {
    background-color: #6aa44d
}
.btn.btn_blue {
    background-color: #2980b9
}
.btn.btn_blue:hover {
    background-color: #2271a5
}
.btn.btn_turquoise {
    background-color: #16a085
}
.btn.btn_turquoise:hover {
    background-color: #118971
}
.btn.btn_pink {
    background-color: #d65799
}
.btn.btn_pink:hover {
    background-color: #c44a89
}
.btn.btn_orange {
    background-color: #eb8000
}
.btn.btn_orange:hover {
    background-color: #d17200
}
.btn.btn_purple {
    background-color: #9b59b6
}
.btn.btn_purple:hover {
    background-color: #8948a3
}
.btn.btn_dblue {
    background-color: #2c3e50
}
.btn.btn_dblue:hover {
    background-color: #233648
}
.btn.btn_grey {
    background-color: #aaa
}
.btn.btn_grey:hover {
    background-color: #999
}
.btn.btn_right {
    float: right;
}

/*------------------------------------------------------------------
    Service box
-------------------------------------------------------------------*/
.service_box {
    margin-bottom: 20px
}
.service_box i {
    color: #999;
    font-size: 48px;
    margin-bottom: 10px
}
.service_box h4 {
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 5px
}

/*------------------------------------------------------------------
    Pricing box
-------------------------------------------------------------------*/
.pricing_box {
    margin-bottom: 20px;
    padding-bottom: 15px;
    background-color: #f9f9f9;
    text-align: center
}
.pricing_box .header {
    margin-bottom: 15px;
    color: #fff
}
.pricing_box.featured .header {
    background-color: #222
}
.pricing_box .header .title {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    padding: 12px 5px
}
.pricing_box .header .info {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 5px;
    background-color: rgba(255,255,255,0.2)
}
.pricing_box .body {
    margin-bottom: 15px
}
.pricing_box .body .price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 52px;
}
.pricing_box .body .price span {
    color: #999;
    font-style: italic;
    font-size: 13px;
    font-weight: 400
}
.pricing_box .body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 26px
}
.pricing_box .body .icon {
    float: left;
    box-sizing: border-box;
    display: inline-block !important;
    width: 50% !important;
}

/*------------------------------------------------------------------
    Accordion
-------------------------------------------------------------------*/
.accordion_group {
    margin-bottom: 20px
}
.accordion_group .accordion_title {
    font-weight: 600;
    color: #222;
    font-size: 15px;
    outline: none;
    border: 1px solid #eee;
    cursor: pointer;
    padding: 10px 45px 10px 15px;
    position: relative;
    margin-top: -1px
}
.accordion_group .accordion_title:after {
    color: #ddd;
    content: "\f055";
    font-family: "FontAwesome";
    position: absolute;
    right: 15px;
    top: 10px
}
.accordion_group .accordion_title.ui-state-active:after {
    content: "\f056"
}
.accordion_group .accordion_panel {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-top: 0;
    padding: 15px
}
.accordion_group .accordion_panel p:last-child {
    margin: 0
}

/* Colored */
.accordion_group.colored .accordion_title {
    color: #fff;
    border: 0;
    margin-top: 0;
    margin-bottom: 1px
}
.accordion_group.colored .accordion_title:after {
    color: #fff
}
.accordion_group.colored .accordion_panel {
    margin-top: -1px
}

/*------------------------------------------------------------------
    Tabs
-------------------------------------------------------------------*/
.tab_group {
    margin-bottom: 20px
}
.tab_group .ui-tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0
}
.tab_group .ui-tabs-nav li {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    outline: none;
    border: 1px solid #eee;
    background-color: #f5f5f5;
    border-bottom: 0;
    margin-right: -1px
}
.tab_group .ui-tabs-nav li a {
    color: #222;
    outline: none;
    padding: 10px 15px;
    display: block
}
.tab_group .ui-tabs-nav li.ui-tabs-active {
    background-color: #fff;
    margin-bottom: -1px;
    padding-bottom: 1px
}
.tab_group .ui-tabs-panel {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 15px
}
.tab_group .ui-tabs-panel p:last-child {
    margin: 0
}

/* Colored */
.tab_group.colored .ui-tabs-nav li {
    border: 1px solid #eee;
    border-bottom: 0;
    margin-right: -1px
}
.tab_group.colored .ui-tabs-nav li a {
    color: #222
}
.tab_group.colored .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: 0;
    padding-bottom: 0
}
.tab_group.colored .ui-tabs-nav li.ui-tabs-active a {
    color: #fff
}

/*------------------------------------------------------------------
    Testimonials
-------------------------------------------------------------------*/
.testimonial_default,
.testimonial_slider {
    margin-bottom: 20px
}
.testimonial_default p,
.testimonial_slider p {
    line-height: 20px
}
.testimonial_default footer,
.testimonial_slider footer {
    display: inline-block
}
.testimonial_default footer img.avatar,
.testimonial_slider footer img.avatar {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}
.testimonial_default footer .author,
.testimonial_slider footer .author {
    padding-top: 8px
}
.testimonial_default footer .author .name,
.testimonial_slider footer .author .name {
    font-weight: 700;
    color: #222;
    font-size: 16px;
    line-height: 19px
}
.testimonial_default footer .author .title,
.testimonial_slider footer .author .title {
    color: #999;
    font-style: italic;
    font-size: 13px;
    line-height: 17px
}

.testimonial_slider {}
.testimonial_slider .owl-controls {
    margin-top: 5px;
    overflow: hidden
}
.testimonial_slider .owl-controls .owl-page {
    display: inline-block;
}
.testimonial_slider .owl-controls .owl-page span {
    display: block;
    margin: 0 2px;
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #869791;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.testimonial_slider .owl-controls .owl-page.active span,
.testimonial_slider .owl-controls.clickable .owl-page:hover span {
    background-color: #222
}


/*------------------------------------------------------------------
    Spacers
-------------------------------------------------------------------*/
.spacer {
    display: block;
    position: relative;
    width: 100%;
    clear: both;
    border: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    height: 1px;
    background-color: #ddd;
    color: #ddd;
    text-align: center
}
.spacer i {
    width: 40px;
    height: 30px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -20px;
    text-align: center;
    line-height: 30px;
    background-color: #fff !important
}

/*------------------------------------------------------------------
    Dividers
-------------------------------------------------------------------*/
hr.divider_blank {
    border: 0
}
hr.divider_dashed {
    border-top-style: dashed
}
hr.divider_dotted {
    border-top-style: dotted
}

/*------------------------------------------------------------------
    Alerts
-------------------------------------------------------------------*/
.alert {
    /*float: left;*/
    position: relative;
    /*padding: 15px;*/
    margin-bottom: 20px
}
.alert p, .alert form, .alert h3 {
    /*overflow: hidden;*/
    padding: 15px;
    margin: 2px 0 0 46px;
    vertical-align: middle;
}
.alert i {
    position: relative;
    margin: 0px 10px 0px 0px;

}
.alert>i {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 24px;
}
.alert>i.fa-2x {
    position: absolute;
    left: 20px;
    top: 13px;
}
.alert.alert_green {
    background-color: #dff0d8;
    color: #3c763d
}
.alert.alert_blue {
    background-color: #d9edf7;
    color: #31708f
}
.alert.alert_red {
    background-color: #f2dede;
    color: #a94442
}
.alert.alert_yellow {
    background-color: #fcf8e3;
    color: #8a6d3b
}

/*------------------------------------------------------------------
    Title
-------------------------------------------------------------------*/
.block_title {
    display: block;
    height: 39px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    font-family: "Open Sans Condensed";
}
.block_title h1 {
    display: inline-block;
    height: 39px;
    line-height: 39px;
    border-bottom-style: solid;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 24px;
    margin: 0;
    border-bottom-width: 2px;
}

.block_title h2 {
    display: inline-block;
    height: 39px;
    line-height: 39px;
    border-bottom-style: solid;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 20px;
    margin: 0;
    border-bottom-width: 2px;
}
.block_title h3 {
    display: inline-block;
    float: right;
    font-weight: 200;
    font-size: 16px;
    margin: 10px 0px 5px;

    /*border: solid 1px;*/

}

.block_title h3>div {
    display: inline-block;
    /*border: solid 1px;*/
    line-height: 1;
    padding-top: 3px;
    vertical-align: middle;
    color: #891427;
}



.block_title a.view_all {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
    float: right;
    padding-top: 8px
}
.block_title a.view_all i {
    font-size: 11px
}
/* Tabs */
.block_with_tabs {}
.block_title .ui-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0
}
.block_title .ui-tabs-nav:before,
.block_title .ui-tabs-nav:after {
    content: " ";
    display: table
}
.block_title .ui-tabs-nav:after {
    clear: both
}
.block_title .ui-tabs-nav li {
    float: left;
    display: block;
    height: 39px;
    line-height: 39px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: transparent;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
    margin: 0;
    padding: 0 5px;
    text-decoration: none;
    outline: none    
}
.block_title .ui-tabs-nav li a {
    text-decoration: none;
    outline: none;
    color: #999
}
.block_title .ui-tabs-nav li.ui-tabs-active {
    border-bottom-style: solid;
    border-bottom-width: 2px
}
.block_title .ui-tabs-nav li.ui-tabs-active a {
    color: #222
}
.block_title .ui-tabs-panel {}

/*------------------------------------------------------------------
    Blog posts
-------------------------------------------------------------------*/
/* Big calendar box */
.big_calendar_box:before {
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 56px 70px 0 0;
    border-color: rgba(255,255,255,0.1) transparent transparent transparent;
    position: absolute;
    left: 0;
    top: 0
}
.big_calendar_box {
    width: 70px;
    height: 56px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    z-index: 2
}
.big_calendar_box .date {
    padding-top: 10px;
    font-size: 20px;
    line-height: 1;
    font-weight: 700
}
.big_calendar_box .month {
    font-size: 12px;
    line-height: 1;
    font-weight: 400
}

/* Thumb wrapper */
.thumb_wrapper {
    position: relative;
}
.thumb_wrapper img {
    width: 100%;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.thumb_wrapper:hover img {
    opacity: 0.8;
    -webkit-transform: rotate(2deg) scale(1.1,1.1);
    -moz-transform: rotate(2deg) scale(1.1,1.1);
    -ms-transform: rotate(2deg) scale(1.1,1.1);
    transform: rotate(2deg) scale(1.1,1.1);
}
.thumb_wrapper iframe {
    width: 100%;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
    display: block
}
.gallery_list .item .inner .gradient_shadow,
.video_list_1 .item .item_header .gradient_shadow,
.parallax_container .gradient_shadow,
.thumb_wrapper .gradient_shadow,
.main_content_slider .gradient_shadow,
.grid_block_articles .item .inner .gradient_shadow {
    /*border: dotted 2px orange;*/
    position: absolute;
    left: 0;
    bottom: 0;
    margin: inherit;
    height: 50%;
    width: 100%;
    z-index: 1;
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC44Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.8))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); /* IE6-8 */
}

/* Item slider */
.item_slider img {
    width: 100%;
    opacity: 1 !important;
    -webkit-transform: rotate(0deg) scale(1) !important;
    -moz-transform: rotate(0deg) scale(1) !important;
    -ms-transform: rotate(0deg) scale(1) !important;
    transform: rotate(0deg) scale(1) !important;
}
.item_slider .owl-controls .owl-buttons div {
    z-index: 2;
    font-family: "FontAwesome";
    font-size: 28px;
    background-color: #000;
    opacity: 0.3;
    position: absolute;
    color: #FFF;
    display: block;
    top: 50%;
    width: 30px;
    height: 70px;
    line-height: 70px;
    margin-top: -35px;
    text-align: center;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.item_slider .owl-controls .owl-buttons div:hover {
    opacity: 0.7;
    text-decoration: none
}
.item_slider .owl-controls .owl-buttons div.owl-prev {
    left: 0
}
.item_slider .owl-controls .owl-buttons div.owl-next {
    right: 0
}

/* Content wrapper */
.content_wrapper {
    position: relative;
    border-top-style: solid;
    border-top-width: 3px
}
.thumb_wrapper  + .content_wrapper {
    margin-top: 0
}
.content_wrapper h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0px;
}
.content_wrapper h3 a {
    color: #222
}
.content_wrapper p {
    margin: 0
}
.content_wrapper .star-rating {
    margin-top: -5px;
    margin-bottom: 10px
}



.content_wrapper .author {
    color: #999;
    margin-bottom: 15px;
}

/* Content meta */
.content_meta {
    overflow: hidden;
}
.content_meta span {
    text-transform: uppercase;
    color: #999;
    font-size: 12px;
    margin-right: 10px;
    float: left
}
.content_meta span a {
    color: #999
}
.content_meta span a:hover {
    color: #222
}
.content_meta span:last-child {
    margin-right: 0
}
.content_meta span:after {
    font-family: "FontAwesome";
    font-size: 12px;
    margin-left: 4px;
}

.content_meta span:before {
    font-family: "FontAwesome";
    font-size: 12px;
    margin-right: 4px;
}

.content_meta span.category:before {
    content: "\f08e"
}
.content_meta span.comments:before {
    content: "\f0e5"
}
.content_meta span.date:before {
    content: "\f017"
}
.content_meta span.author:before {
    content: "\f007"
}
.content_meta span.time:before {
    content: "\f144"
}
.content_meta span.views:before {
    content: "\f06e"
}

.content_meta span.tags:before {
    content: "\f02b"
}
 
.content_meta span.organization:before {
    content: "\f0f7"
}

.content_meta span.photo {
    color: #fff !important
}
.content_meta span.photo:before {
    font-family: "FontAwesome";
    font-size: 10px;
    margin-right: 5px;
    content: "\f03e"
}

/* Footer wrapper */
.footer_wrapper {
    /*overflow: hidden;*/
}
.footer_wrapper .btn {
    width: auto;
    margin-right: 1px;
    margin-bottom: 0;
    line-height: 18px
}
.footer_wrapper .share_it span.share_it {
    display: inline-block;
    color: #fff;
    padding: 4px 10px;
    font-size: 14px;
    text-align: center;
    background-color: #ddd
}
.footer_wrapper .share_it span.share_number {
    padding: 4px 0;
    display: inline-block;
    color: #999;
    font-size: 12px;
    text-transform: uppercase
}

.footer_wrapper.text-center {
    text-align: center;
}

/* Star rating */
@font-face {
  font-family: "fontello";
  src: url('../fonts/Fontello/fontello.eot?13710586');
  src: url('../fonts/Fontello/fontello.eot?13710586#iefix') format('embedded-opentype'),
       url('../fonts/Fontello/fontello.woff?13710586') format('woff'),
       url('../fonts/Fontello/fontello.ttf?13710586') format('truetype'),
       url('../fonts/Fontello/fontello.svg?13710586#fontello') format('svg');
  font-weight: normal;
  font-style: normal
}
.star-rating {
    font-family: "fontello";
    letter-spacing: 1px;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
    height: 15px;
    line-height: 15px;
    font-size: 15px;
    width: 70px;
    white-space: nowrap
}
.star-rating:before {
    content: "\e800\e800\e800\e800\e800";
    color: #ddd;
    float: left;
    top: 0;
    left: 0;
    position: absolute
}
.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 15px
}
.star-rating span:before {
    content: "\e800\e800\e800\e800\e800";
    color: #F89406;
    top: 0;
    position: absolute;
    left: 0;
}

/* Item reviews */
.item_reviews .rate_type {
    border-top: 1px dashed #ddd;
    padding-top: 3px;
    margin-top: 3px;
}
.item_reviews .rate_type:before,
.item_reviews .rate_type:after {
    content: " ";
    display: table
}
.item_reviews .rate_type:after {
    clear: both
}
.item_reviews .rate_type strong {
    color: #999;
    font-weight: 400;
    float: left
}
.item_reviews .rate_type .star-rating {
    margin-top: 2px;
    float: right
}

/*------------------------------------------------------------------
    Article list big
-------------------------------------------------------------------*/
.article_list_big {
    margin-bottom: 30px;
    padding-top: 28px;
}
.article_list_big + .small_article_list,
.article_list_big + .tiny_article_list {
    margin-top: -30px
}
.article_list_big .big_calendar_box {
    position: absolute;
    z-index: 1;
    top: -31px
}
.article_list_big .thumb_wrapper {
    background-color: #000;
    margin-top: -28px;
    overflow: hidden;
    max-height: 180px;

    /*border: solid 2px orange;*/
}
.article_list_big .content_wrapper {
    background-color: #fff;
    padding: 35px 20px 10px 20px
}
.article_list_big .content_meta {
    background-color: #fff;
    padding: 0 20px
}
.article_list_big .footer_wrapper {
    background-color: #fff;
    padding: 10px 20px 20px 20px
}



/*------------------------------------------------------------------
    Article list big
-------------------------------------------------------------------*/
.article_list_big_1 {
    margin-bottom: 30px
}
.article_list_big_1 .big_calendar_box {
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 20px
}
.article_list_big_1 + .small_article_list,
.article_list_big_1 + .tiny_article_list {
    margin-top: -30px
}
.article_list_big_1 .thumb_wrapper {
    overflow: hidden;
    background-color: #000;
    max-height: 200px;
}
.article_list_big_1 h1, 
.article_list_big_1 h2, 
.article_list_big_1 h3, 
.article_list_big_1 h4 {
    font-family: "Open Sans Condensed";
} 

.article_list_big_1 .thumb_wrapper .meta_wrapper {
    z-index: 3;
    position: absolute;
    left: 20px;
    bottom: 15px;
    margin-right: 20px
}
.article_list_big_1 .thumb_wrapper .meta_wrapper .star-rating:before {
    color: #fff;
    color: rgba(255,255,255,0.4);
}
.article_list_big_1 .thumb_wrapper .meta_wrapper .star-rating span:before {
    color: #fff
}
.article_list_big_1 .thumb_wrapper h1 {
    font-size: 32px;
    line-height: 32px;
    margin: 0;
    /*font-weight: 800;*/
    /*font-family: Arial;*/


   
   text-shadow:
       1px 1px 0 #000,
     -1px -1px 0 #000,  
      1px -1px 0 #000,
      -1px 1px 0 #000,
       1px 1px 0 #000;
}
.article_list_big_1 .thumb_wrapper h2 {
    font-size: 24px;
    line-height: 24px;
    margin: 0;
    font-weight: 400
}
.article_list_big_1 .thumb_wrapper h3 {
    font-size: 18px;
    line-height: 18px;
    margin: 0;
    font-weight: 400
}
.article_list_big_1 .thumb_wrapper a {
    color: #fff;
    text-decoration: none;
}
.article_list_big_1 .content_wrapper {
    background-color: #fff;
    padding: 10px 20px
}
.article_list_big_1 .content_wrapper a {
    font-weight: 700;
}

.article_list_big_1 .content_meta {
    background-color: #fff;
    padding: 0 20px
}
.article_list_big_1 .thumb_wrapper .meta_wrapper .content_meta {
    padding: 0;
    background: none
}
.article_list_big_1 .thumb_wrapper .meta_wrapper .content_meta span,
.article_list_big_1 .thumb_wrapper .meta_wrapper .content_meta a {
    color: #bbb
}
.article_list_big_1 .thumb_wrapper .meta_wrapper .content_meta a:hover {
    color: #fff
}
.article_list_big_1 .footer_wrapper {
    background-color: #fff;
    padding: 10px 20px 20px 20px
}

/*------------------------------------------------------------------
    Small article list
-------------------------------------------------------------------*/
.small_article_list {
    background-color: #fff;
    margin-bottom: 30px
}
.small_article_list .item {
    padding: 15px 20px
}
.small_article_list .item .button {
    width: 100%
}
.small_article_list .item:before,
.small_article_list .item:after {
    content: " ";
    display: table
}
.small_article_list .item:after {
    clear: both
}
.small_article_list .item:nth-child(odd) {
    background-color: #f9f9f9
}
.small_article_list .item .item_wrapper {
    overflow: hidden
}
.small_article_list .item .item_header {
    width: 80px;
    margin: 4px 15px 0 0;
    float: left;
    background-color: #000
}
.small_article_list .item .item_content h4 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    font-weight: 600
}
.small_article_list .item .item_content h4 a {
    display: block;
    color: #222
}
.small_article_list .item .content_meta {
    margin-top: 5px
}
.small_article_list .item .content_meta span {
    line-height: 1
}


/*------------------------------------------------------------------
    Medium article list
-------------------------------------------------------------------*/
.medium_article_list {
    background-color: #fff;
    margin-bottom: 30px
}
.medium_article_list .item {
    padding: 15px 20px
}
.medium_article_list .item .button {
    width: 100%
}
.medium_article_list .item:before,
.medium_article_list .item:after {
    content: " ";
    display: table
}
.medium_article_list .item:after {
    clear: both
}
.medium_article_list .item:nth-child(odd) {
    background-color: #f9f9f9
}
.medium_article_list .item .item_wrapper {
    overflow: hidden
}
.medium_article_list .item .item_header {
    width: 100px;
    margin: 2px 0 0 15px;
    float: right;
    background-color: #000
}
.medium_article_list .item .item_content h4 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    font-weight: 600
}
.medium_article_list .item .item_content h4 a {
    display: block;
    color: #222
}
.medium_article_list .item .content_meta {
    margin-top: 5px
}
.medium_article_list .item .content_meta span {
    line-height: 1
}

/*------------------------------------------------------------------
    Text article list
-------------------------------------------------------------------*/
.text_article_list {
    background-color: #fff;
    margin-bottom: 30px
}
.text_article_list .item {
    padding: 15px 20px
}
.text_article_list .item .button {
    width: 100%
}
.text_article_list .item:before,
.text_article_list .item:after {
    content: " ";
    display: table
}
.text_article_list .item:after {
    clear: both
}
.text_article_list .item:nth-child(odd) {
    background-color: #f9f9f9
}
.text_article_list .item .item_wrapper {
    text-align: center
}
.text_article_list .item .item_content h4 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    font-weight: 600
}
.text_article_list .item .item_content h4 a {
    display: block;
    color: #222
}
.text_article_list .item .content_meta {
    margin-top: 5px;
    line-height: 1;
}
.text_article_list .item .content_meta span {
    float: none
}

/*------------------------------------------------------------------
    Article list
-------------------------------------------------------------------*/
.article_list {
    margin-bottom: 30px
}
.article_list .item {
    margin-bottom: 15px;
}
.article_list .item:last-child {
    margin-bottom: 0
}
.article_list .item:before,
.article_list .item:after {
    content: " ";
    display: table
}
.article_list .item:after {
    clear: both
}
.item .item_header img {
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.item .item_header:hover img {
    /*opacity: 0.95;*/
}
.article_list .item .item_content h4 {
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 5px 0;
    font-weight: 600
}
.article_list .item .item_content h3 a {
    display: block;
    color: #222
}
.article_list .item .item_content h4 a {
    display: block;
    color: #222
}
.article_list .item .item_content .star-rating {
    margin-bottom: 10px
}

/* Standard */
.article_list.standard .item .item_wrapper {
    padding: 20px;
    background-color: #fff;
    overflow: hidden
}
.article_list.standard .item .item_wrapper p:last-child {
    margin: 0
}
.article_list.standard .item .item_header {
    overflow: hidden;
    width: 100%;
    background-color: #fff
}
.article_list.standard .item .item_header:hover img {
    opacity: 0.7;
    -webkit-transform: rotate(2deg) scale(1.1,1.1);
    -moz-transform: rotate(2deg) scale(1.1,1.1);
    -ms-transform: rotate(2deg) scale(1.1,1.1);
    transform: rotate(2deg) scale(1.1,1.1);
}
.article_list.standard .item .content_meta {
    margin: 0px 0
}

/* Small */
.article_list.small .item .item_header {
    overflow: hidden;
    width: 25%;
    margin: 0 15px 0 0;
    float: left;
    /*background-color: #fff*/
}

.article_list.small .item .item_header.large {
    /*border: solid 1px orange;*/

    width: 40%;
}


.article_list.small .item .item_header:hover img {
    opacity: 0.7;
    -webkit-transform: rotate(2deg) scale(1.1,1.1);
    -moz-transform: rotate(2deg) scale(1.1,1.1);
    -ms-transform: rotate(2deg) scale(1.1,1.1);
    transform: rotate(2deg) scale(1.1,1.1);
}
.article_list.small .item .item_header .big_calendar_box {
    position: absolute;
    left: 20px;
    top: 0
}
.article_list.small .item .item_wrapper {
    padding: 0px;
    background-color: #fff;
    overflow: hidden
}

.article_list.small .item .item_content {
    padding: 20px;
}


.article_list.small .item .item_wrapper p:last-child {
    margin: 0
}
.article_list.small .item .item_wrapper .content_meta {
    margin: 0px !important;
    /*padding: 10px 20px !important;*/

    /*border: solid 1px;*/
    /*background-color: #FAFAFA;*/
    display: block;
}

.article_list .item .item_content div.date {
    /*border: solid 1px;*/
    margin-bottom: 20px;
}

.article_list .item .item_content div.date:before {
    font-family: "FontAwesome";
    font-size: 14px;
    margin-right: 5px;
    content: "\f073";

    /*border: solid 1px;*/
}

/*------------------------------------------------------------------
    Review block
-------------------------------------------------------------------*/
.review_list {
    margin-bottom: 30px
}
.review_list:before,
.review_list:after {
    content: " ";
    display: table
}
.review_list:after {
    clear: both
}
.review_list .item {
    position: relative;
    background-color: #fff;
    padding: 20px;
    float: left
}
.review_list.two .item {
    width: 50%
}
.review_list.three .item {
    width: 33.33%
}
.review_list.four .item {
    width: 25%
}
.review_list.five .item {
    width: 20%
}
.review_list .item:nth-child(odd) {
    background-color: #f9f9f9
}
.review_list .item .item_header {
    position: relative;
    margin: 0 0 10px 0;
    background-color: #000
}
.review_list .item .item_content h4 {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 8px 0;
    font-weight: 600
}
.review_list .item .item_content h4 a {
    display: block;
    color: #222
}
.review_list .item .label {
    z-index: 2;
    font-size: 12px;
    position: absolute;
    text-align: center;
    left: 20px;
    top: 40px;
    height: 25px;
    text-transform: uppercase;
    line-height: 25px;
    color: #fff;
    padding: 0 5px
}

/*------------------------------------------------------------------
    Video list
-------------------------------------------------------------------*/
.video_list {
    margin-bottom: 30px
}
.video_list:before,
.video_list:after {
    content: " ";
    display: table
}
.video_list:after {
    clear: both
}
.video_list .item .item_header {
    position: relative;
    margin: 0 0 10px 0;
    background-color: #000
}
.video_list .item .item_header .video_icon {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 24px
}
.video_list .item .item_header .video_icon i {
    color: #fff
}
.video_list .item {
    position: relative;
    background-color: #fff;
    padding: 20px;
    float: left;
    text-align: center
}
.video_list.dark .item {
    background-color: #222
}
.video_list.dark .item:nth-child(odd) {
    background-color: #333
}
.video_list.two .item {
    width: 50%
}
.video_list.three .item {
    width: 33.33%
}
.video_list.four .item {
    width: 25%
}
.video_list.five .item {
    width: 20%
}
.video_list .item:nth-child(odd) {
    background-color: #f9f9f9
}
.video_list .item .item_content h4 {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 5px 0
}
.video_list .item .item_content h4 a {
    display: block;
    color: #222
}
.video_list.dark .item .item_content h4 a {
    color: #fff
}
.video_list .item .content_meta {
    line-height: 1
}
.video_list .item .content_meta span {
    float: none
}
.video_list .item .transition_line {
    width: 0;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: width 0.2s ease;
    -moz-transition: width 0.2s ease;
    -o-transition: width 0.2s ease;
    transition: width 0.2s ease
}
.video_list .item:hover .transition_line {
    width: 100%
}
.video_list .item .label {
    z-index: 2;
    font-size: 10px;
    position: absolute;
    text-align: center;
    left: 20px;
    top: 40px;
    height: 20px;
    text-transform: uppercase;
    line-height: 20px;
    color: #fff;
    padding: 0 4px
}

/*------------------------------------------------------------------
    Video list #1
-------------------------------------------------------------------*/
.video_list_1 {
    margin-bottom: 30px
}
.video_list_1:before,
.video_list_1:after {
    content: " ";
    display: table
}
.video_list_1:after {
    clear: both
}
.video_list_1 .item {
    position: relative;
    float: left;
    text-align: center;
    width: 30%
}
.video_list_1 .item .inner {
    margin: 0 0 2px 2px;
    background-color: #fff;
    height: 150px
}
.video_list_1 .item .item_header {
    position: relative;
    overflow: hidden;
    margin: 0 0 10px 0;
    background-color: #000
}
.video_list_1 .item:first-child {
    width: 40%;
    margin-left: 0
}
.video_list_1 .item:first-child .inner {
    height: 302px;
    margin: 0
}
.video_list_1 .item:first-child .item_header {
    height: 200px
}
.video_list_1 .item .item_header {
    height: 150px
}
.video_list_1 .item .item_header img {
    display: block
}
.video_list_1 .item .item_header .video_icon {
    z-index: 1;
    position: absolute;
    left: 50%;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: rgba(255,255,255,0.2)
}
.video_list_1 .item .item_header .video_icon {
    top: 44%;
    margin-left: -15px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px
}
.video_list_1 .item:first-child .item_header .video_icon {
    top: 50%;
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px
}
.video_list_1 .item .item_header .video_icon i {
    color: #fff
}
.video_list_1 .item .item_header h4 {
    position: absolute;
    left: 0;
    bottom: 10px;
    padding: 0 10px;
    font-weight: 600;
    width: 100%;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    margin: 0;
    max-height: 38px;
    overflow: hidden
}
.video_list_1 .item .item_header h4 a {
    color: #fff
}
.video_list_1 .item:first-child .item_content {
    padding: 0 10px;
    max-height: 45px;
    overflow: hidden
}
.video_list_1 .item:first-child .item_content h4 {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 5px 0;
    font-weight: 600
}
.video_list_1 .item:first-child .item_content h4 a {
    display: block;
    color: #222
}
.video_list_1 .item .label {
    z-index: 2;
    font-size: 12px;
    position: absolute;
    text-align: center;
    left: 0px;
    top: 20px;
    height: 25px;
    text-transform: uppercase;
    line-height: 25px;
    color: #fff;
    padding: 0 5px
}
.video_list_1 .item .content_meta span {
    float: none
}
.video_list_1 .item .transition_line {
    width: 0;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: width 0.2s ease;
    -moz-transition: width 0.2s ease;
    -o-transition: width 0.2s ease;
    transition: width 0.2s ease
}
.video_list_1 .item:hover .transition_line {
    width: 100%
}

/*------------------------------------------------------------------
    Gallery list #1
-------------------------------------------------------------------*/
.gallery_list {
    margin-bottom: 30px;
}
.gallery_list:before,
.gallery_list:after {
    content: " ";
    display: table
}
.gallery_list:after {
    clear: both
}
.gallery_list .item {
    float: left;
    text-align: center;
    padding: 0 0 1px 1px
}
.gallery_list .item .inner {
    position: relative;
    overflow: hidden;
    background-color: #222
}
.gallery_list .item .inner img {
    width: 100%;
    opacity: 0.5;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.gallery_list .item:hover .inner img {
    opacity: 1;
    -webkit-transform: rotate(2deg) scale(1.1,1.1);
    -moz-transform: rotate(2deg) scale(1.1,1.1);
    -ms-transform: rotate(2deg) scale(1.1,1.1);
    transform: rotate(2deg) scale(1.1,1.1);
}
.gallery_list.two .item {
    width: 50%
}
.gallery_list.three .item {
    width: 33.33%
}
.gallery_list.four .item {
    width: 25%
}
.gallery_list.five .item {
    width: 20%
}
.gallery_list .item .inner .item_header {
    z-index: 3;
    position: absolute;
    left: 0px;
    bottom: 10px;
    padding: 0 10px;
    font-weight: 600;
    width: 100%;
    max-height: 55px;
    overflow: hidden
}
.gallery_list .item .inner .item_header h4 {
    padding: 0 10px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    margin: 0;
}
.gallery_list .item .inner .item_header h4 a {
    color: #fff
}
.gallery_list .item .inner .gallery_icon {
    z-index: 1;
    position: absolute;
    top: 45%;
    left: 0;
    margin-top: -14px;
    width: 100%;
    text-align: center;
    color: #fff
}
.gallery_list .item .inner .gallery_icon .icon_inner {
    font-size: 12px;
    display: inline-block;
    padding: 2px 8px;
    border: 1px dotted #fff
}
.gallery_list .item .inner .gallery_icon .icon_inner i {
    color: #fff;
    margin-right: 5px
}

/*------------------------------------------------------------------
    Gallery single
-------------------------------------------------------------------*/
.gallery_single {
    padding: 20px;
    background-color: #fff;
    margin-bottom: 30px
}
.gallery_single .item_slider {
    margin-bottom: 20px
}
.gallery_single p {}

/*------------------------------------------------------------------
    Timeline list
-------------------------------------------------------------------*/
.timeline_list {
    margin-bottom: 15px
}
.timeline_list .item {
    min-height: 56px;
    position: relative;
    padding-left: 35px
}
.timeline_list .item .item_date:before {
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 56px 70px 0 0;
    border-color: rgba(255,255,255,0.1) transparent transparent transparent;
    position: absolute;
    left: 0;
    top: 0
}
.timeline_list .item .item_date {
    background-color: #bbb;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 56px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.timeline_list .item:hover .item_date {
    background-color: #222
}
.timeline_list .item .item_date .date {
    padding-top: 10px;
    font-size: 20px;
    line-height: 1;
    font-weight: 700
}
.timeline_list .item .item_date .month {
    font-size: 12px;
    line-height: 1;
    font-weight: 400
}
.timeline_list .item .item_content {
    min-height: 56px;
    border-left: 1px dotted #bbb;
    padding-left: 50px;
    padding-bottom: 15px;
    position: relative;

}
.timeline_list .item:last-child .item_content {
    border-left: none
}
.timeline_list .item .item_content h2 {
    display: block;
    font-size: 28px;
    font-weight: 500;
    line-height: 24px;

    margin: 0px 0px 10px 0;
    padding: 0px;

    /*border: solid 1px;*/


}
.timeline_list .item .item_content h3 {
    display: block;
    font-size: 22px;
    line-height: 14px;

    /*border: solid 1px;*/
}

.timeline_list .item .item_content > div {
    background-color: #fff;
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    font-weight: 600;
    color: #222;
    font-family: "Open Sans", Arial, sans-serif !important;
}
.timeline_list .item .item_content h4 a {
    display: block;
    color: #222
}
.timeline_list .item .item_content .content_meta {
    background-color: #fff;
    padding: 10px;
    padding-top: 20px;
}
.timeline_list + ul.page_numbers {
    margin-left: 86px;
    margin-top: -15px;
    margin-bottom: 15px;
}

/*------------------------------------------------------------------
    Shop category
-------------------------------------------------------------------*/
.woocommerce-result-count {
    width: 50%;
    float: left;
    padding: 6px 0;
    margin-bottom: 20px
}
.woocommerce-ordering {
    text-align: right;
    margin-bottom: 20px
}
.woocommerce-ordering select {
    display: inline-block
}
ul.products {
    clear: both;
    display: block;
    list-style: none;
    padding: 0;
    margin: 0
}
ul.products:before,
ul.products:after {
    content: " ";
    display: table
}
ul.products:after {
    clear: both
}
ul.products li.product {
    margin-bottom: 20px;
    position: relative;
    float: left;
    clear: none;
    background-color: #fff
}
ul.products.three li.product {
    width: 32%;
    margin-right: 2%
}
ul.products.four li.product {
    width: 23%;
    margin-right: 2.66%
}
ul.products li.product.first {
    clear: left
}
ul.products li.product.last {
    margin-right: 0
}
ul.products li.product .product_item {
    position: relative;
    overflow: hidden;
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.onsale {
    z-index: 1;
    padding: 2px 6px;
    text-align: center;
    color: white;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    position: absolute;
    background-color: #bbb;
    top: 10px;
    left: 10px;
}
ul.products li.product .onsale {
    top: 10px;
    left: 10px;
}
ul.products li.product .product_item img {
    width: 100%
}

ul.products li.product .product_item .product_hover {
    position: absolute;
    left: 100%;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #000;
    background-color: rgba(0,0,0,0.7);
    -webkit-transition: all 200ms cubic-bezier(0.3, 0, 0.3, 1);
    -moz-transition: all 200ms cubic-bezier(0.3, 0, 0.3, 1);
    -o-transition: all 200ms cubic-bezier(0.3, 0, 0.3, 1);
    transition: all 200ms cubic-bezier(0.3, 0, 0.3, 1);
}
ul.products li.product .product_item:hover .product_hover {
    left: 0;
    -webkit-transition: all 200ms cubic-bezier(0.3, 0, 0.3, 1);
    -moz-transition: all 200ms cubic-bezier(0.3, 0, 0.3, 1);
    -o-transition: all 200ms cubic-bezier(0.3, 0, 0.3, 1);
    transition: all 200ms cubic-bezier(0.3, 0, 0.3, 1);
}
ul.products li.product .product_item .product_hover table {
    height: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent
}
ul.products li.product .product_item .product_hover table td {
    vertical-align: middle;
    text-align: center;
    padding: 0 5px;
    margin: 0;
    border: 0
}

ul.products li.product .product_footer {
    text-align: center;
    padding: 10px
}
ul.products li.product .product_footer .star-rating {
    left: 50%;
    margin-left: -35px
}
ul.products li.product .product_footer .price {
    margin-bottom: 10px;
    font-size: 15px;
    display: block;
    color: #222;
    font-weight: 700
}
ul.products li.product .product_footer del {
    font-weight: 400;
    color: #999
}
ul.products li.product .product_footer ins {
    text-decoration: none;
    color: #222;
    font-weight: 700;
}
ul.products li.product .product_footer a {
    display: block;
    margin: 0
}
ul.products li.product .product_footer .btn {
    text-transform: uppercase
}

/*------------------------------------------------------------------
    Shop single
-------------------------------------------------------------------*/
div.product {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff
}
div.product:before,
div.product:after {
    content: " ";
    display: table
}
div.product:after {
    clear: both
}
div.product .onsale {
    top: 30px;
    left: 30px;
}
div.product .images {
    width: 38%;
    margin-right: 2%;
    float: left;
    margin-bottom: 20px
}
div.product .images img {
    width: 100%;
    height: auto
}
div.product .images a {
    display: block;
    margin-bottom: 5px
}
div.product .images .thumbnails {
    overflow: hidden
}
div.product .images .thumbnails a {
    float: left;
    width: 80px;
    margin-right: 5px;
    margin-bottom: 5px
}

div.product .summary {
    width: 60%;
    float: right;
    margin-bottom: 20px
}
div.product .summary h1.product_title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600
}
div.product .summary .woocommerce-product-rating {
    margin-bottom: 10px
}
div.product .summary p.price {
    margin-bottom: 15px;
    font-size: 18px;
    display: block;
    color: #222;
    font-weight: 700
}
div.product .summary p.price del {
    font-weight: 400;
    color: #999
}
div.product .summary p.price ins {
    text-decoration: none;
    color: #222;
    font-weight: 700;
}
div.product .summary form {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin: 15px 0
}
div.product .summary .quantity {
    float: left;
    margin-right: 10px;
    width: 80px;
    text-align: center
}
div.product .summary .quantity input {
    text-align: center
}

div.product .summary .product_meta {}
div.product .summary .product_meta > span {
    display: block
}

div.product .woocommerce-tabs {
    clear: both;
    padding-top: 20px
}
div.product .woocommerce-tabs h2 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px
}

/*------------------------------------------------------------------
    Page title
-------------------------------------------------------------------*/
#page_title h1 {
    font-weight: 600;
    font-size: 26px;
    margin: 0;
    line-height: 38px
}

/*------------------------------------------------------------------
    Single article
-------------------------------------------------------------------*/
article.single_post {
    background-color: #fff;
    margin-bottom: 30px
}
header.post_header h1 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    padding: 20px;
    margin: 0
}



/* Meta */
header.post_header .content_meta {
    padding: 5px 20px;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1
}

/* Post featured */
.post_featured iframe {
    width: 100%
}
.post_featured img {
    width: auto;
    height: auto;

    border: dashed 1px red;

    margin: 0;
    padding: 20px;
}
.post_featured {
    padding: 0px;


    float: left;

    margin: 0;

    /*border: solid 1px orange;*/

    display: inline-block;

    /*width: 100px;*/
}

/* Post content */
article.single_post .post_content {
    padding: 20px
}

article .post_content img {

    padding: 0px;

    vertical-align: text-top;

    max-width: 100%;

    /*border: solid 2px orange;*/
   
}

/* Footer */
footer a {
    color: #777;
}

footer.post_footer .source_tag {
    border-top: 1px solid #f1f1f1;
    padding: 20px
}
footer.post_footer .source_tag .content {
    font-size: 12px;
    margin-bottom: 1px
}
footer.post_footer .source_tag .content span {
    background-color: #bbb;
    color: #fff;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    padding: 3px 5px;
    margin-right: 5px
}
footer.post_footer .source_tag .content a {
    color: #666
}
footer.post_footer .source_tag .content a:hover {
    text-decoration: underline
}

/* Sharing */
footer.post_footer .post_sharing {
    width: 100%;
    padding: 20px;
    border-top: 1px solid #f1f1f1
}
footer.post_footer .post_sharing:before,
footer.post_footer .post_sharing:after {
    content: " ";
    display: table
}
footer.post_footer .post_sharing:after {
    clear: both
}
footer.post_footer .post_sharing a {
    display: block;
    float: left;
    line-height: 30px;
    height: 30px;
    color: #fff;
    margin-right: 5px
}
footer.post_footer .post_sharing a.facebook {
    background-color: #3b5998
}
footer.post_footer .post_sharing a.twitter {
    background-color: #00aced
}
footer.post_footer .post_sharing a.google {
    background-color: #dd4b39
}
footer.post_footer .post_sharing a.pinterest {
    background-color: #ca212a
}
footer.post_footer .post_sharing a.linkedin {
    background-color: #02669a
}
footer.post_footer .post_sharing a.tumblr {
    background-color: #44546b
}
footer.post_footer .post_sharing a.email {
    background-color: #222
}
footer.post_footer .post_sharing a .share_icon {
    float: left;
    width: 30px;
    text-align: center;
    border-right: 1px solid #fff;
    position: relative
}
footer.post_footer .post_sharing a .share_icon:before {
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 0;
    border-color: rgba(255,255,255,0.10) transparent transparent transparent;
    position: absolute;
    left: 0;
    top: 0
}
footer.post_footer .post_sharing a .share_text {
    float: left;
    font-size: 12px;
    padding: 0 8px
}

/* Controls */
footer.post_footer .post_controls {
    position: relative;
    border-top: 1px solid #f1f1f1;
}
footer.post_footer .post_controls:before,
footer.post_footer .post_controls:after {
    content: " ";
    display: table
}
footer.post_footer .post_controls:after {
    clear: both
}
footer.post_footer .post_controls .prev_post,
footer.post_footer .post_controls .next_post {
    width: 50%;
    float: left;
    min-height: 1px;
    display: block;
    position: relative;
    padding: 20px
}
footer.post_footer .post_controls span {
    display: block;
    text-transform: uppercase;
    color: #999;
    font-size: 12px
}
footer.post_footer .post_controls a {
    display: block;
    font-weight: 700;
    color: #222;
    font-size: 15px;
    line-height: 23px
}
footer.post_footer .post_controls a:hover {
    text-decoration: underline
}
footer.post_footer .post_controls .post_separator {
    position: absolute;
    left: 50%;
    display: block;
    width: 1px;
    height: 100%;
    background-color: #f1f1f1
}
footer.post_footer .post_controls .prev_post {}
footer.post_footer .post_controls .next_post {
    text-align: right
}

/* Author box */
.author_box {
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #f1f1f1
}
.author_box + .row {
    margin-top: 20px
}
.author_box:before,
.author_box:after {
    content: " ";
    display: table
}
.author_box:after {
    clear: both
}
.author_box .avatar {
    float: left;
    width: 100px;
    margin: 0 20px 0 0
}
.author_box .info {
    overflow: hidden
}
.author_box .info .author_name {
    font-weight: 700;
    font-size: 16px;
    color: #222
}
.author_box .info .author_name a {
    color: #222
}
.author_box .info .author_url {
    font-size: 12px
}
.author_box .info .author_social {
    font-size: 0
}
.author_box .info .author_social a {
    display: inline-block;
    font-size: 16px;
    width: 20px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: #222
}
.author_box .info .author_social a:hover {
    color: #999
}

/*------------------------------------------------------------------
    Contact form
-------------------------------------------------------------------*/
.contact_form {}
.contact_form input[type="text"] {
    width: 100%
}

/*------------------------------------------------------------------
    404 Page
-------------------------------------------------------------------*/
.page_404 {
    text-align: center;
    padding: 10px 0 20px 0
}
.page_404 .title_404 {
    font-size: 130px;
    line-height: 130px;
    font-weight: 400;
    color: #ddd
}
.page_404 form {
    margin: 10px 0;
    display: inline-block;
}

/*------------------------------------------------------------------
    Parallax container
-------------------------------------------------------------------*/
.parallax_container {
    position: relative;
    width: 100% !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.parallax_container .parallax_element {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 50%;
    background-size: cover;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}
.parallax_container .parallax_header {
    bottom: 30px;
    z-index: 1;
    display: block;
    position: absolute;
    left: 50%
}
.parallax_container .parallax_header h1 {
    color: #fff;
    font-weight: 700
}
.parallax_container .parallax_header h1 a {
    color: #fff
}
.parallax_container .parallax_header .content_meta span,
.parallax_container .parallax_header .content_meta span a {
    color: #bbb
}
.parallax_container .parallax_header .content_meta span a:hover {
    color: #fff
}

/*------------------------------------------------------------------
    Comments
-------------------------------------------------------------------*/
#comments {}
.comments_list {
    list-style: none;
    padding: 0;
    margin: 0
}
.comments_list .comment {
    margin-bottom: 15px
}
.comments_list .comment article {}
.comments_list .comment .comment_avatar {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0px 25px 0 0;
    float: left
}
.comments_list .comment .comment_avatar:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    right: -25px;
    top: 15px;
    border-style: solid;
    border-width: 0 15px 20px 0;
    border-color: transparent #fff transparent transparent;
}
.comments_list .comment .comment_avatar img {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px
}
.comments_list .comment .comment_content {
    background-color: #fff;
    padding: 10px 15px;
    min-height: 50px;
    overflow: hidden
}
.comments_list .comment .comment_content .meta {
    color: #999;
    margin-bottom: 6px;
    font-size: 16px
}
.comments_list .comment .comment_content .meta .comment_author,
.comments_list .comment .comment_content .meta .comment_author a {
    font-weight: 600;
    color: #222
}
.comments_list .comment .comment_content .meta .comment_date {
    font-size: 12px;
    margin-left: 5px
}
.comments_list .comment .comment_reply {
    color: #999;
    font-size: 12px;
    text-decoration: underline
}

/* Children */
.comments_list .children {
    margin-top: 15px;
    padding-left: 75px;
    list-style: none;
}
.comments_list .children .comment .comment_avatar,
.comments_list .children .comment .comment_avatar img {
    width: 50px;
    height: 50px
}

/* Author */
.comments_list .comment.bypostauthor .comment_content {
    position: relative
}

/* Respond */
#respond form p input {
    width: 100%
}
#respond form p.form_submit input {
    width: auto
}

/*------------------------------------------------------------------
    Editor review
-------------------------------------------------------------------*/
.editor_review {
    border-top: 1px solid #f1f1f1
}
.editor_review:before,
.editor_review:after {
    content: " ";
    display: table
}
.editor_review:after {
    clear: both
}
.editor_review .block_title h2 {
    font-size: 18px
}
.editor_review .review_group {
    background-color: #f9f9f9;
    padding: 20px
}
.editor_review .review_group .review {
    margin-bottom: 10px
}
.editor_review .review_group .review .review_header {
    overflow: hidden;
    margin-bottom: 2px
}
.editor_review .review_group .review .review_header .title {
    color: #222;
    font-size: 14px;
    font-weight: 600;
    float: left
}
.editor_review .review_group .review .review_header .result {
    float: right;
    color: #999;
    font-size: 12px
}
.editor_review .review_group .review .review_footer {
    height: 7px;
    overflow: hidden;
    background-color: #ddd
}
.editor_review .review_group .review .review_footer span {
    height: 100%;
    display: block;
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.3) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.3) 50%,rgba(255,255,255,.3) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.3) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.3) 50%,rgba(255,255,255,.3) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.3) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.3) 50%,rgba(255,255,255,.3) 75%,transparent 75%,transparent);
    -webkit-background-size: 20px 20px;
    background-size: 20px 20px;
}

.editor_review .review_summary {
    position: relative;
    overflow: hidden
}
.editor_review .review_summary .item_header {
    width: 20%;
    height: 100%;
    float: left;
    display: block;
    position: relative;
    margin: 0 0 -1000px 0;
    padding: 20px 0 1020px 0;
    text-align: center;
    text-transform: uppercase;
    color: #fff
}
.editor_review .review_summary .item_header .score {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 2px
}
.editor_review .review_summary .item_header .summary {
    font-size: 12px;
    line-height: 1.1;
    margin-bottom: 8px
}
.editor_review .review_summary .item_header .rate_stars .star-rating {
    display: inline-block
}
.editor_review .review_summary .item_header .rate_stars .star-rating:before {
    color: #fff;
    color: rgba(255,255,255,0.4);
}
.editor_review .review_summary .item_header .rate_stars .star-rating span:before {
    color: #fff
}
.editor_review .review_summary .item_wrapper {
    margin: 0 0 -1000px 0;
    padding: 20px 20px 1010px 20px;
    width: 80%;
    float: left;
    background-color: #222;
    color: #999
}
.editor_review .review_summary .item_wrapper h5 {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 5px 0;
    text-transform: uppercase
}
.editor_review .review_summary .item_wrapper p {}

/*------------------------------------------------------------------
    Related articles
-------------------------------------------------------------------*/
.related_articles {
    border-top: 1px solid #f1f1f1;
    padding: 20px;
    padding-top: 10px;
    background-color: #f9f9f9
}
.related_articles:before,
.related_articles:after {
    content: " ";
    display: table
}
.related_articles:after {
    clear: both
}
.related_articles .block_title h2 {
    font-size: 18px
}
.related_articles .item {
    width: 32.44%;
    margin-right: 1.33%;
    float: left
}
.related_articles .item:last-child {
    margin-right: 0
}
.related_articles .item .item_header {
    background-color: #000;
    margin-bottom: 10px
}
.related_articles .item h4 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    font-weight: 600
}
.related_articles .item h4 a {
    color: #222
}

/*------------------------------------------------------------------
    Footer
-------------------------------------------------------------------*/
#footer {
    background-color: #222;
    padding: 30px 0 0 0
}
#footer .widget {
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px
}
#footer .widget .widget_title {
    border-bottom: 2px solid #444;
    height: 30px;
}
#footer .widget .widget_title h4 {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #fff
}
#footer.two .widget {
    width: 50%
}
#footer.three .widget {
    width: 33.33333333%
}
#footer.four .widget {
    /*width: 25%*/
}

/*------------------------------------------------------------------
    Copyright
-------------------------------------------------------------------*/
#copyright {
    padding: 10px 0;
    font-size: 12px;
    text-align: center;
    color: #999;
    background-color: #333
}
#copyright p {
    margin: 0
}
#copyright p a {
    color: #ddd
}/*
customized styles used primarily in the registration processes
*/

.accordion {
	margin: 0 0 30px 0;

	display: inline-block !important;


	width: 100% !important;

	border: solid 0px orange !important;

}



/* IF VIEWPORT IS GREATER THAN 768px wide */
@media only screen and (min-width: 1024px) {

	.accordion {
		/*width: 690px !important;*/
		/*border: solid 3px green !important;*/
		float: left;
	}

}

/* IF VIEWPORT IS GREATER THAN 768px wide */
@media only screen and (min-width: 1280px) {

	.accordion {
		/*width: 800px !important;*/
		/*border: solid 3px orange !important;*/
		float: left;
	}

}


.accordion > .section {
	position: relative;
	display: block;


	padding: 0px;
	margin-bottom: 10px;

	/*background-color: rgba(23, 61, 80, 0.06);*/
	/*background-color: #DDD;*/
	/*background-color: #891427;*/

	/*background-color: rgba(127, 20, 39, 0.8);*/
	/*color: #fff;*/

    /*border: 2px solid #891427;*/
    background-color: #fff;



}

.accordion > .section > h2 {

    margin: 0;

    font-size: 20px;
    line-height: 36px;
    font-weight: 200;

    /*padding: 5px;*/

    background-color: #444;
    color: white;

}

.accordion > .section > h2 > div {
	display: inline-block;
	background-color: #891427;
	padding: 5px 10px 5px 10px !important;
	margin-right: 10px;
}

.accordion > .complete > h2 > div {
	background-color: #666;
}

.accordion h2 i {
	color: #fff;
}

.accordion > .hidden > h4 > div {

	/*color: #fff !important;*/
	/*cursor: pointer;*/
	/*background-color: #555;*/
}



.accordion  .section > h4 {



}


.accordion > .section > .content {
	position: relative;
	/*background-color: blue;*/

	padding: 20px;

	/*border: dashed 2px orange;*/
	/*border-top: 2px solid #891427;*/

	/*border-left: solid 2px rgba(127, 20, 39, 0.8);*/
	/*border-right: solid 2px rgba(127, 20, 39, 0.8);*/
	/*border-bottom: solid 2px rgba(127, 20, 39, 0.8);*/
/**/
	/*border-top: solid 3px #891427;*/
	border-left: solid 2px #444;
	border-right: solid 2px #444;
	border-bottom: solid 2px #444;
}

.accordion > .section > .content  textarea {
	height: 300px;
}

.accordion  .section  .content .alert  input {
	display: inline-block;
	width: auto !important;
	margin-right: 15px;

}

.accordion .section > h3 {
	display: inline-block;

	position: absolute;
	top: 0px;
	right: 10px;

	padding: 10px 0px 0px 0px;

	font-size: 10px;
	font-family: Arial, sans-serif;

}

.accordion .section > h3 a {
	color: white;
}

.accordion .section > h3 {
	/*display: none;*/
}

/*
.complete:after {
  content: "\f00c";

  background-position: 0px 0px;

  text-align: right;

  position: absolute;
  top: 5px;
  right: 10px;



  display: inline-block;

  width: 42px;
  height: 42px;

  font-size: 18px;
  font-family: "FontAwesome", serif;
  line-height: 34px;
  font-weight: bold;

  border: dotted 2px red;

  vertical-align: middle;

  opacity: .5;
}*/



.complete {

  /*opacity: .7;*/
  /*border: solid 0px blue !important;*/

}

.accordion > .section > .complete  {

	display: none;
}

/*.accordion > .section.hidden > .complete  {

	display: inline-block;
}*/

.accordion > .section.collapsed > .content {
	display: none;
}




.accordion > .section > .content  label {
	display: inline-block;
	width: 100px;
	text-align: right;
	margin: 0px 10px 0px 0px;
	/*font-weight: bold;*/
}

/*.accordion > .section > .content  input {
	margin: 4px;
	width: 45% !important;

	display: inline-block;

}*/

/* IF VIEWPORT IS GREATER THAN 768px wide */
@media only screen and (min-width: 768px) {

	.accordion > .section > .content > input {
		margin: 4px;
		width: 42%;

		/*border: solid 3px orange;*/
	}

}




.accordion > .section > .content > .footer {

	border: solid 0px;

	padding: 0px;

	margin: 20px 0px 0px 0px;

	text-align: right;

	height: 60px; /* why is there a height needed? what is overwriting the default */
}

.accordion > .section > .content > .footer > .junkie-button {
	margin: 0px;

}




#modal {
	position: fixed;
	top: 0px;
	left: 0px;

	opacity: .8;

	z-index: 99998;

	width: 100%;
	height: 100%;

	background-color: #000;
}



.dialog {
	position: absolute;
	z-index: 99999;
	overflow-x: hidden;
	overflow-y: auto !important;
}

.dialog .content {
	position: static;

	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

}

.media {
  position: relative;
  padding-top: 56.25%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #000;

}




.media.play:before {
	position: absolute;

	top: 0;
	left: 0;
	bottom: 0;
	right: 0;

	padding-top: 26%;
	
	/*width: 100%;*/
	/*height: 100%;*/

	font-family: "FontAwesome";
	/*content: "\f16a"; */
	content: "\f04b"; 

	text-align: center;
	vertical-align: middle;


	font-size: 48px;
	color: red;
	/*background-color: white;*/
	/*text-shadow: 1px 1px #ccc;*/

	cursor: pointer;

	border: dotted 0px orange;

	/*z-index: 1000;*/
}



.media.youtube {

	background-repeat: no-repeat;
	background-position: center; 
	background-size:cover;

	cursor: pointer;
	margin-bottom:30px;

}

.media.youtube2:before {
	position: absolute;

	top: 0;
	left: 0;
	bottom: 0;
	right: 0;

	padding-top: 30%;
	font-size: 12px;
	font-family: "Open Sans";
	color: white;

	text-align: center;
	vertical-align: middle;

	content: "Click to Play";

}

.media iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100% !important;

}


.tooltip {
	position: absolute;
	z-index: 99999;
}

.tooltip #close {
	position: absolute;
	top: -15px;
	right: -15px;

	opacity: 0;

	z-index: 999999;
}

.tooltip #close .fa-circle-thin {
	color: #ddd !important;
}






.loader {
	position: absolute;
	z-index: 99999;	
}

.loader #close {
	position: absolute;
	top: -15px;
	right: -15px;

	opacity: 0;

	z-index: 999999;
}

.loader #close .fa-circle-thin {
	color: #ddd !important;
}


.loader i {
	margin: 0px 10px 0px 0px;
}

.loader .text {
	display: inline-block;
	margin: 10px 0px 0px 0px;


	font-size: 24px;
	font-weight: 600;
	font-family: "Open Sans Condensed";

	vertical-align: middle;
}









.popdown {
	border: solid 6px #DDD;
	border-top-width: 0;

	background-color: #fff;
}/*
Customizations to theme
*/
body {
    font-family: "Open Sans", sans-serif;
    
}

h1,h2,h3,h4 {
	
	font-weight: 400;

	/*font-family: "Roboto Condensed";*/
	font-family: "Open Sans Condensed";
	/*letter-spacing: .05em;*/

}

.site_navigation2 {
	 /*font-family: "Roboto", sans-serif;*/
	/*font-family: "Open Sans Condensed";*/
	/*text-transform: uppercase !important;*/
}


.flip {
-moz-transform: scale(-1, 1);
-webkit-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}

.pointer {
	cursor: pointer;
}



.underline {
	text-decoration: underline;
}


.border-test {
	border: dashed 2px orange !important;
}

.login input, .login select {
	

	font-size: 24px;
	line-height: 32px;

	padding: 8px;

	margin: 0;
}

.login select:first {
	color: red;
}

.login button {
	font-size: 18px;
	line-height: 24px;
	padding: 12px;
	height: auto !important;
	width: 300px;

}


a.icon {
	vertical-align: middle;
	margin: 20px;
}

a.icon i {
	vertical-align: middle;
	padding: 0 4px;
}

.nav {
	/*border: solid 1px;*/
}

.nav+i {
	border: solid 1px;
}


.widget .item input, .widget .item select {
	width: 100%;
}

.payment_method {
	border: solid 2px #ddd;
	padding: 8px;
	background-color: #fff;

	text-align: left;

	margin: 0 0 10px 0;
}

.payment_method .card {
	width: 100px;
	display: inline-block;

	vertical-align: middle;

	/*border: solid 1px;*/

	padding: 0 20px 0 20px;
}

.payment_method .text {
	/*width: 100px;*/
	display: inline-block;
	vertical-align: middle;

	padding: 12px 0px 0px 0px;

	/*border: solid 1px;*/
	
}

.payment_method .actions {
	display: inline-block;
	vertical-align: middle;	

	float: right;

	padding: 12px 0 0 0;
}

#default_payment_method {
	min-height: 90px; 
	/*border: solid 1px;*/
}

#default_payment_method .loading {
	padding: 20px 0px 0px 0px;
	/*font-size: 24px;*/
}

#default_payment_method .loading i {
/*	font-size: 32px;*/
	margin: 0px 20px 0px 20px;
}

.payment_method .cards {
	/*border: solid 1px;*/
	padding: 5px 20px 5px 20px;
}

.padding {
	padding: 15px !important;
}

.xpadding {
	padding: 25px !important;
}

.hidden {
	display: none;
}

.top {
	vertical-align: top;
}

.middle {
	vertical-align: middle !important
}

.block {
	display: block;
}

a.box {
	display: block;
}

.box {
	/*display: block;*/

	border: solid 2px #ddd;
	
	background-color: #fff;

	text-align: left;

	margin: 0 0 10px 0;

	/*padding: 12px;*/

}

.box i {
	/*float: left;*/
	display: inline-block;
	/*min-height: 60px;*/
}

.box.maroon {
	background-color: #891427;
	color: white;
}

.box.margins {
	margin-right: 10px;

}

.box.margins:last-child {
	margin-right: 0px;
}

.box.profile {
	background-image: url("/images/DevicesBlog.png");

}

.event > .calendar {
	border: solid 0px;
	margin-right: 5px;
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 20%;
}

.event > .text {
	display: inline-block;
	width: 70%;
}

.btn > span.large {
	vertical-align: middle;
	margin: 0px 10px 0px 10px;
	font-size: 120%;
}

.btn > i {
	margin: 0px 5px 0px 0px;
}

/*.left, .left i {
	position: relative;
	display: inline-block;
	float: left;

	border: solid 1px orange;
}
*/

.text_shrink {
	font-size: smaller !important;
}

.text_small {
	/*font-family: Arial;*/
	font-size: 10px !important;
	line-height: 11px;
}

.text_medium {
	font-size: 12px !important;
}

.text_large {
	font-size: 16px !important;
}

.text_large p {
	font-size: 16px;
}

.text_strong, .text_bold {
	font-weight: 600;
}


.text_blue {
	color: #5fa1e5
}

.text_green {
	color: #8ec3a7;
}

.text_red {
	color: #f2dede;
}

.text_cranberry {
	color: #DD53A8;
}

.text_yellow {
	color: #f0cb69;
}

/*.errorField+input, .errorField+select, .errorField+input[type="text"] {
	border: solid 1px #AE7F7F;
	background-color: #f2dede !important;
}*/



.sticky_menu .personal {
	/*display: none;*/
	display: inline-block;
}

.sticky_menu.fixed .personal {
	display: inline-block;
}




.site_navigation  .personal {
	float: right !important;

}

.site_navigation .personal li a {
	font-size: 14px !important;
}

textarea.small {
	width: 100%;
	height: 110px !important;
	min-height: 110px;
}


.expand .expanded {
	display: none;
}

.time h2 {
	line-height: 28px;
	
}

.time h4 {
	line-height: 18px;
	
}

.fa.left {
	float: left;
	padding: 0px 10px 10px 0px;
}

.fa.right {
	float: right;
}

.right {
	float: right !important;
}


#mediaPreviewButton {

	width: 100px;
	overflow: hidden !important;
}

#mediaPreviewButton.hidden {
		width: 0px;	
}

.green {
	color: #6aa44d;
}


ul.page-numbers {
    font-size: 0;
    margin-bottom: 20px;
    list-style: none;
    padding: 0
}
ul.page-numbers li {
    font-size: 14px;
    display: inline-block;
    margin-right: 5px
}
ul.page-numbers li span,
ul.page-numbers li a {
    display: block;
    padding: 6px 12px;
    line-height: 22px;
    background-color: #fff
}


/* left box pricing on registration pages */

.pricing {
	margin: 0px auto 40px auto;
}

.pricing h1 {
	margin: auto;
	font-size: 36px;
	width: 250px;
}

.pricing h2 {
	margin: 50px 0px 0px 0px;
}

.pricing .amount {
	font-size: 72px;
	font-weight: 400;

}

.pricing .currency {
	color: #333;
	font-size: 32px;
	vertical-align: super;
}

.pricing .duration {
	color: #333;
	font-size: 22px;
}





.contact_list .item .item_header {

	display: inline-block;
	padding: 8px;
}

.contact_list .item .item_wrapper {
	display: inline-block;
	padding: 8px;
}

.ads img {
	max-width: 250px;
}

.col img {
	max-width: 100%;
}

.working {
  height: 100vh !important;
  width: 100%;
  
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.working div {
  
  color: white;
  padding: 40px;
  overflow: hidden;

}

.working div h1 {
	color: white;
	
}


.table {
	display: table;
	width: 100%;
}

.table-row {
	display: table-row;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
}

.benefits .icon {
	width: 15%;
}


/* override default table style for older content */
table.noborder {
	border: none;
}

table.noborder  td {
	border: none;
}

.social i {
	/*border: solid 1px !important;*/

	margin: 10px;

	/*display: block;*/

}

.grecaptcha-badge {
    display: none;
}



.m-10 {
	margin: 10px;
}

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

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

.video iframe {
	width: 100%;
	height: 300px;
}

.headshot {
	max-height: 150px;
	overflow: hidden;
}

.rounded {
	border-radius: 5px;
}

.checkboxes {
	position: relative !important;
	border: solid 1px #ddd !important;
	background-color: #fff !important;
	padding: 6px 12px 6px 12px !important;
	color: #aaa !important;
	cursor: pointer;
	font-weight: normal !important;
	font-size: 14px !important;
}

.checkboxes .options {
	display: none;
}
.checkboxes::after {
	/*position: absolute;*/
	/*border: solid 1px red;*/
	top: 7px !important;
	font-size: 18px;
	color: #aaa !important;
}

.accordion_panel label {
	font-size: 12px !important;
}

.accordion_panel input[type="checkbox"] + label::before {
	font-size: 14px;
	width: 10px;
}


.bronze {
	color: #cd7f32;
}

.silver {
	color: #c0c0c0 ;
	/*background-color: #c0c0c0;*/
}

.gold {
	color: #FFD700;
}

.black {
	color: #000;
}

.nowrap {
	white-space: nowrap;
}

.bgwhite {
	background-color: #fff !important;
	
}








/* end radio buttons */

/* Recruiting.tpl customization */
.full_width_container {
	 margin-left: calc(50% - 50vw);
  	 width: 100vw;
  	 padding: 0px;
  	 margin-bottom: -20px;
}
.center {
	text-align: center;
}
.whiteText {
	color: white;
	line-height: normal;
}
.recruit-logo {
	width: 400px;
}
.pb-60 {
	padding-bottom: 60px;
}
.pb-20 {
	padding-bottom: 20px;
}
.pb-10 {
	padding-bottom: 10px;
}
.pt-20 {
	padding-top:20px;
}
.recruit-header-text {
	color: #A42B24;
    font-weight: bold;
}
.recruit-section {
	margin-top:0px;
	padding-top:20px;
	position:relative;
}
.scholarship-img {
	background-image: url('https://media.csmusic.net/wp-content/uploads/2019/07/05233114/Scholarships2019.jpg');
	background-repeat: no-repeat;
	opacity:0.20;
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;

	/*Parallax*/
	background-attachment: fixed;
    background-position: 50% 120%;
    background-repeat: no-repeat;
    background-size: auto;
}

.scholarship-caption {
	line-height:42px;
	padding:5px;
}
#artists-programs {
	margin-top:0px;
	background-color: #1D1D1D;
	padding-top:20px;
	position:relative;
	min-height:600px;
	/*padding-top:128px*/
	color: white;
}
#artists-programs .artist {
	position: relative;
	margin-top: 9%;
}
#artists-programs .organization {
	position: relative;
	margin-top: 9%;
}
#artists-programs .icon {
	color: white;
}
#artists-programs .block {
	position: absolute;
    top: 0px;
    bottom: 0px;
    border-radius: 3px;
    background-color: white;
    left: 90px;
    right: 90px;
    opacity: 0.2;
}

.artist-content {
	position:relative;
	padding:20px;
}

@media only screen and (max-width: 600px) {
/*	#youtube-vid {
		width:304px;
		height:171px;
	}*/	
	.scholarship-img {
		background-position:50% -300%;
	}
	#artists-programs .block {
		left: 30px;
		right: 30px;
	}
}
@media only screen and (max-height: 700px) {
	.scholarship-img {
		background-size: cover;
	}
}
.artist-button {
	width: 170px;
}
/* used in old page*/

.heading_space {
	padding-bottom: 35px;
}
#howItWorks {
	position: relative;
	margin: auto;
	text-align: center;
	background-color: #891427;
	padding-bottom:60px;
}
.recruit-section-header {
	padding-top:30px;
	margin-bottom: 50px;
}
#howitworks .step {
	display: inline-block;
	text-align:center;
}
.circle {
	background-color: white;
	position: relative;
	margin: auto;
	margin-bottom: 20px;
	border-radius:50%;
	width:50px;
	height:50px;
}
.number {
	position: relative;
	top: 28%;
	font-size: 25px;
}
.artist-profile {
	color: white;
	font-size: 50px;
	margin-top:16px;
	margin-bottom:40px;
}
.artist-certificate {
	color: #3D763D;
	margin-top:16px;
	margin-bottom:40px;
}
.artist-recruit {
	color: black;
	background-color: white;
	border-radius: 10px;
	margin-top:16px;
	margin-bottom:40px;
}

#schools-and-programs {
	padding:20px;
	position: relative;
	margin: auto;
	text-align: center;
	background-color: #1E1C1C;
	padding-bottom:60px;
}
.schools-header {
	margin-bottom:90px;
}

.school-text {
	color:white;
	padding-bottom: 8px;
	font-size:24px;
}

#get-certified {
	position: relative;
	margin: auto;
	text-align: center;
	background-color: #DFF0D8;
	padding-bottom: 60px;
}

/*Check what the actual colors are before production*/
#get-certified .medal-spacing {
	margin-right:40px;
}
#get-certified .bronze {
	color:#cd7f32
}
#get-certified .silver {
	color:#c0c0c0;
}
#get-certified .gold {
	color:#FFD700;
}

#watch-certified-vids {
	position: relative;
	margin: auto;
	text-align: center;
	background-color:#222222;
}
#youtube-vid {

}
#cs-proven-resource {
	padding:20px 20px 60px 20px;
	margin: auto;
	text-align: center;
	background-color: #891427;
}
#cs-proven-resource .quote {
 text-align:left;
 padding-top:50px;
}
#cs-proven-resource .author {
	float:right;
}
#get-started {
	padding:20px 20px 30px 20px;
	margin: auto;
	text-align: center;
	/*background-color: #222222;*/

}
#get-started .buttons {
	padding-top:30px;
	padding-bottom:30px;
}
#get-started .start-button {
	width:300px;
	height:60px;
	font-size:22px;
}
.email-link {
	color:#EB4B52;
	text-decoration: underline;
}
/*END recruiting/recruiting.tpl */

/*recruiting/artists.tpl*/
#artist-profile {
	margin-top:0px;
	background-color: #1D1D1D;
	padding-top:20px;
	position:relative;
	min-height:600px;
	/*padding-top:128px*/
	color: white;	
}
.artist-img {
	background-image: url('https://media.csmusic.net/wp-content/uploads/2019/08/13230518/mt_audition.jpg');
	background-repeat: no-repeat;
	opacity:0.80;
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;

	/*Parallax*/
	background-attachment: fixed;
    background-position: 50% -70%;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (max-width: 1700px) {
	.artist-img {
		background-attachment: scroll;
		background-position: 84% 0;
	}
	
}

.artist-text {
	position: relative;
	padding:5px;
	z-index:1;
}

#scholarships {
	background-color: #891427;
	padding: 100px 50px 100px 50px;
	margin: 0px;
	position:relative;
}
#universities {
	position: relative;
	height: 800px;
	margin-top:0px;
	background-color: #1D1D1D;
	padding-top:20px;
}
.recruit-img {
	background-image: url('https://media.csmusic.net/wp-content/uploads/2019/09/17172751/expo_recruiting.jpg');
	background-repeat: no-repeat;
	opacity:0.80;
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;

	/*Parallax*/
	background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.line-height-normal {
	line-height: normal;
}
.profile-btn {
	margin-top: 12%;
    padding: 20px 20px 40px 20px;
    font-size:20px;
}

.bottom-text {
	bottom: 100px;
    position: absolute;
    margin: auto;
    left: 1px;
    right: 1px;
    padding: 5px;
    z-index: 1;
}





/*END recruiting/artists.tpl*/


/*ORGANIZATIONS.tpl */
#certified-artists {
	background-color: #222222;
	min-height: 310px;
}
.checkmark {
	color: #3D763D;
	position: relative;
    top: 10px;
    left: 1px;
    text-align: center;
}
#filter-artists {
	background-color: #222222;
	position: relative;
}
#filter-artists button {
	position:relative;
}
.winners-img {
	background-image: url('https://media.csmusic.net/wp-content/uploads/2019/03/12223026/winners_line_2015.png');
	background-repeat: no-repeat;
	opacity:0.80;
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;

	/*Parallax*/
	background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.filters {
	position: relative;
    /*left: 37%;*/
    display: inline-block;
    text-align: left;
    padding-bottom: 40px;
}
#sponsored-email {
	background-color: #222222;
	min-height: 400px;
}
.large-email {
	display: initial;
	color:white;
	padding-right: 24px;
    position: relative;
    bottom: 8px;
}
.open-envelopes {
	display: inline-block;
	color: white;
	position: relative;
	top: 15px;
}
.open-envelope {
	padding-left:5px;
}
#recruiting-subscription {
	min-height:200px;
}












/*END organizations.tpl*/

/*review.tpl*/
#certified-header {
position:relative;
background-color:#222222;
min-height: 350px;
}
#certified-header .bottom-text {
	bottom: 20px;
    position: absolute;
    margin: auto;
    left: 1px;
    right: 1px;
    padding: 5px;
    z-index: 1;
}
#certified-header .artist-content {
	position: relative;
	padding: 100px;

}
#certified-header .scholarship-winners-img {
	background-image: url('https://media.csmusic.net/wp-content/uploads/2018/06/14221802/scholarshipWinners2018.jpg');
	background-repeat: no-repeat;
	opacity:0.80;
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;

	/*Parallax*/
	background-position: center;
	background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
}
@media only screen and (max-width: 600px) {
	#certified-header .scholarship-winners-img {
		background-attachment: initial;
	}
}

#certified-howitworks {
	position:relative;
	background-color: #222222;
}

#certified-howitworks .smaller-container {
	max-width: 800px;
    margin: auto;
}





/*END review.tpl*/



/*account/profile.tpl*/
.contactPadding {
	padding-top: 3px;
}
.profile {
	min-height: 30px;
}
.edit-info:hover {
	cursor: pointer;
	color: #944148;
	text-decoration: underline;
}
.edit-info {
	color: #891427;
	font-size: 16px;
}
.purchase_subscription {
	background-color: #F1BFBB;
	padding: 10px;
	max-width: 363px;
	padding: 10px;
}
/*END profile.tpl*/



/*
 * Tipped - A Complete Javascript Tooltip Solution - v4.5.6
 * (c) 2012-2016 Nick Stakenburg
 *
 * http://www.tippedjs.com
 *
 * License: http://www.tippedjs.com/license
 */

.tpd-tooltip {
  position: absolute;
}

/* Fix for CSS frameworks that don't keep the use of box-sizing: border-box
   within their own namespace */
.tpd-tooltip,
.tpd-tooltip [class^="tpd-"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* Content */
.tpd-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tpd-content-spacer,
.tpd-content-relative,
.tpd-content-relative-padder {
  float: left;
  position: relative;
}
.tpd-content-relative {
  width: 100%;
}

.tpd-content {
  float: left;
  clear: both;
  position: relative;
  padding: 10px;
  font-size: 11px;
  line-height: 16px;
  color: #fff;
}
.tpd-has-inner-close .tpd-content-relative .tpd-content { padding-right: 0 !important; }
.tpd-tooltip .tpd-content-no-padding { padding: 0 !important; }

.tpd-title-wrapper {
  float: left;
  position: relative;
  overflow: hidden;
}
.tpd-title-spacer {
  float: left;
}
.tpd-title-relative,
.tpd-title-relative-padder {
  float: left;
  position: relative;
}
.tpd-title-relative { width: 100%; }
.tpd-title {
  float: left;
  position: relative;
  font-size: 11px;
  line-height: 16px;
  padding: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}
.tpd-has-title-close .tpd-title { padding-right: 0 !important; }
.tpd-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
  overflow: hidden;
  color: #fff;
}
.tpd-close-icon {
  float: left;
  font-family: Arial, Baskerville, monospace;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  width: 28px;
  height: 28px;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
}


/* Skin */
.tpd-skin {
  position: absolute;
  top: 0;
  left: 0;
}

.tpd-frames {
  position: absolute;
  top: 0;
  left: 0;
}
.tpd-frames .tpd-frame {
  float: left;
  width: 100%;
  height: 100%;
  clear: both;
  display: none;
}

.tpd-visible-frame-top .tpd-frame-top { display: block; }
.tpd-visible-frame-bottom .tpd-frame-bottom { display: block; }
.tpd-visible-frame-left .tpd-frame-left { display: block; }
.tpd-visible-frame-right .tpd-frame-right { display: block; }

.tpd-backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}
.tpd-background-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  pointer-events: none;
}
.tpd-no-shadow .tpd-skin .tpd-background-shadow { box-shadow: none !important; }

.tpd-background-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
/* only the top background box should be shown when not using a stem */
.tpd-no-stem .tpd-background-box,
.tpd-no-stem .tpd-shift-stem { display: none; }
.tpd-no-stem .tpd-background-box-top { display: block; }

.tpd-background-box-shift,
.tpd-background-box-shift-further {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
}
.tpd-background {
  border-radius: 10px;
  float: left;
  clear: both;
  background: none;
  -webkit-background-clip: padding-box; /* Safari */
  background-clip: padding-box; /* IE9+, Firefox 4+, Opera, Chrome */
  border-style: solid;
  border-width: 1px;
  border-color: #282828;
  border-color: rgba(255,255,255,.1); /* opacity here bugs out in firefox, .tpd-background-content should have no opacity if this opacity is less than 1 */
}
.tpd-background-loading { display: none; }
/* no radius */
.tpd-no-radius .tpd-skin .tpd-frames .tpd-frame .tpd-backgrounds .tpd-background { border-radius: 0; }
.tpd-background-title {
  float: left;
  clear: both;
  width: 100%;
  background-color: #282828;
}
.tpd-background-content {
  float: left;
  clear: both;
  width: 100%;
  background-color: #282828;
}
.tpd-background-border-hack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-style: solid;
}

.tpd-background-box-top { top: 0; }
.tpd-background-box-bottom { bottom: 0; }
.tpd-background-box-left { left: 0; }
.tpd-background-box-right { right: 0; }

/* iframeshim IE6 */
.tpd-iframeshim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  zoom: 1;
  filter: alpha(opacity=0);
  opacity: 0;
}

/* Skin / Stems */
.tpd-shift-stem {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.tpd-shift-stem-side {
  position: absolute;
}
.tpd-frame-top .tpd-shift-stem-side,
.tpd-frame-bottom .tpd-shift-stem-side { width: 100%; }
.tpd-frame-left .tpd-shift-stem-side,
.tpd-frame-right .tpd-shift-stem-side { height: 100%; }

.tpd-stem {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; /* shows possible invalid subpx rendering */
  width: 16px; /* best cross browser stem: width = 2 x height (90deg angle) */
  height: 8px;
  margin-left: 3px; /* space from the side */
  margin-top: 2px; /* space between target and stem */
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}
/* remove margins once we're done measuring */
.tpd-tooltip .tpd-skin .tpd-frames .tpd-frame .tpd-shift-stem .tpd-stem-reset { margin: 0 !important; }

.tpd-stem-spacer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tpd-stem-reset .tpd-stem-spacer { margin-top: 0; }

.tpd-stem-point {
  width: 100px;
  position: absolute;
  top: 0;
  left: 50%;
}
.tpd-stem-downscale,
.tpd-stem-transform {
  float: left;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  position: relative;
}

.tpd-stem-side {
  width: 50%;
  height: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}
.tpd-stem-side-inversed {
  -webkit-transform: scale(-1,1);
  transform: scale(-1,1);
}
.tpd-stem-triangle {
  width: 0;
  height: 0;
  border-bottom-style: solid;
  border-left-color: transparent;
  border-left-style: solid;
  position: absolute;
  top: 0;
  left: 0;
}
.tpd-stem-border {
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #fff; /* will become transparent */
  border-right-color: #fff;
  border-right-style: solid;
  border-right-width: 0;
}

.tpd-stem-border-corner {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  border-right-style: solid;
  border-right-width: 0;
}

/* fixes rendering issue in IE */
.tpd-stem * { z-index: 0; zoom: 1; }

/* used by IE < 9 */
.tpd-stem-border-center-offset,
.tpd-stem-border-center-offset-inverse {
  float: left;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tpd-stem-notransform {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}
.tpd-stem-notransform .tpd-stem-border {
  height: 100%;
  position: relative;
  float: left;
  top: 0;
  left: 0;
  margin: 0;
}
.tpd-stem-notransform .tpd-stem-border-center {
  position: absolute;
}
.tpd-stem-notransform .tpd-stem-border-corner {
  background: #fff;
  border: 0;
  top: auto;
  left: auto;
}
.tpd-stem-notransform .tpd-stem-border-center,
.tpd-stem-notransform .tpd-stem-triangle {
  height: 0;
  border: 0;
  left: 50%;
}

/* transformations for left/right/bottom */
.tpd-stem-transform-left {
  -webkit-transform: rotate(-90deg) scale(-1,1);
  transform: rotate(-90deg) scale(-1,1);
}
.tpd-stem-transform-right {
  -webkit-transform: rotate(90deg) translate(0, -100%);
  transform: rotate(90deg) translate(0, -100%);
}
.tpd-stem-transform-bottom {
  -webkit-transform: scale(1,-1) translate(0, -100%);
  transform: scale(1,-1) translate(0, -100%);
}


/* Spinner */
.tpd-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 36px;
}
.tpd-spinner-spin {
  position: relative;
  float: left;
  margin: 8px 0 0 13px;
  text-indent: -9999em;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid #fff;
  -webkit-animation: tpd-spinner-animation 1.1s infinite linear;
  animation: tpd-spinner-animation 1.1s infinite linear;
  box-sizing: border-box !important;
}
.tpd-spinner-spin,
.tpd-spinner-spin:after {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
@-webkit-keyframes tpd-spinner-animation {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes tpd-spinner-animation {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

/* show the loader while loading and hide all the content */
.tpd-is-loading .tpd-content-wrapper,
.tpd-is-loading .tpd-title-wrapper { display: none; }
.tpd-is-loading .tpd-background { display: none; }
.tpd-is-loading .tpd-background-loading { display: block; }



/* Resets while measuring content */
.tpd-tooltip-measuring {
  top: 0;
  left: 0;
  position: absolute;
  max-width: 100%;
  width: 100%;
}
.tpd-tooltip-measuring .tpd-skin,
.tpd-tooltip-measuring .tpd-spinner {
  display: none;
}

.tpd-tooltip-measuring .tpd-content-wrapper,
.tpd-tooltip-measuring .tpd-title-wrapper { display: block; }


/* Links */
.tpd-tooltip a,
.tpd-tooltip a:hover { color: #808080; text-decoration: underline; }
.tpd-tooltip a:hover { color: #6c6c6c; }


/*
 * Sizes
 */
/* x-small */
.tpd-size-x-small .tpd-content,
.tpd-size-x-small .tpd-title {
  padding: 7px 8px;
  font-size: 10px;
  line-height: 15px;
}
.tpd-size-x-small .tpd-background { border-radius: 5px; }
.tpd-size-x-small .tpd-stem {
  width: 12px;
  height: 6px;
  margin-left: 4px;
  margin-top: 2px; /* space between target and stem */
}
.tpd-size-x-small.tpd-no-radius .tpd-stem { margin-left: 7px; }
.tpd-size-x-small .tpd-close { margin-bottom: 1px; }
.tpd-size-x-small .tpd-spinner {
  width: 35px;
  height: 29px;
}
.tpd-size-x-small .tpd-spinner-spin { margin: 6px 0 0 9px; }
.tpd-size-x-small .tpd-spinner-spin,
.tpd-size-x-small .tpd-spinner-spin:after {
  width: 17px;
  height: 17px;
}

/* small */
.tpd-size-small .tpd-content,
.tpd-size-small .tpd-title {
  padding: 8px;
  font-size: 10px;
  line-height: 16px;
}
.tpd-size-small .tpd-background { border-radius: 6px; }
.tpd-size-small .tpd-stem {
  width: 14px;
  height: 7px;
  margin-left: 5px;
  margin-top: 2px; /* space between target and stem */
}
.tpd-size-small.tpd-no-radius .tpd-stem { margin-left: 8px; }
.tpd-size-small .tpd-close { margin: 2px 1px; }
.tpd-size-small .tpd-spinner {
  width: 42px;
  height: 32px;
}
.tpd-size-small .tpd-spinner-spin { margin: 7px 0 0 13px; }
.tpd-size-small .tpd-spinner-spin,
.tpd-size-small .tpd-spinner-spin:after {
  width: 18px;
  height: 18px;
}


/* medium (default) */
.tpd-size-medium .tpd-content,
.tpd-size-medium .tpd-title {
  padding: 10px;
  font-size: 11px;
  line-height: 16px;
}
.tpd-size-medium .tpd-background { border-radius: 8px; }
.tpd-size-medium .tpd-stem {
  width: 16px;      /* best cross browser stem width is 2xheight, for a 90deg angle */
  height: 8px;
  margin-left: 6px; /* space from the side */
  margin-top: 2px; /* space between target and stem */
}
.tpd-size-medium.tpd-no-radius .tpd-stem { margin-left: 10px; }
.tpd-size-medium .tpd-close { margin: 4px 2px; }
/* ideal spinner dimensions don't cause movement op top and
   on the stem when switching to text using position:'topleft' */
.tpd-size-medium .tpd-spinner {
  width: 50px;
  height: 36px;
}
.tpd-size-medium .tpd-spinner-spin { margin: 8px 0 0 15px; }
.tpd-size-medium .tpd-spinner-spin,
.tpd-size-medium .tpd-spinner-spin:after {
  width: 20px;
  height: 20px;
}


/* large */
.tpd-size-large .tpd-content,
.tpd-size-large .tpd-title {
  padding: 10px;
  font-size: 13px;
  line-height: 18px;
}
.tpd-size-large .tpd-background { border-radius: 8px; }
.tpd-size-large .tpd-stem {
  width: 18px;
  height: 9px;
  margin-left: 7px;
  margin-top: 2px; /* space between target and stem */
}
.tpd-size-large.tpd-no-radius .tpd-stem { margin-left: 10px; }
.tpd-size-large .tpd-close { margin: 5px 2px 5px 2px; }
.tpd-size-large .tpd-spinner {
  width: 54px;
  height: 38px;
}
.tpd-size-large .tpd-spinner-spin { margin: 9px 0 0 17px; }
.tpd-size-large .tpd-spinner-spin,
.tpd-size-large .tpd-spinner-spin:after {
  width: 20px;
  height: 20px;
}



/* Skins */
/* default (dark) */
.tpd-skin-dark .tpd-content,
.tpd-skin-dark .tpd-title,
.tpd-skin-dark .tpd-close { color: #fff; }
.tpd-skin-dark .tpd-background-content,
.tpd-skin-dark .tpd-background-title {
  background-color: #282828;
}
.tpd-skin-dark .tpd-background {
  border-width: 1px;
  border-color: #282828;
  border-color: rgba(255,255,255,.1);
}
/* line below the title */
.tpd-skin-dark .tpd-title-wrapper { border-bottom: 1px solid #404040; }
/* spinner */
.tpd-skin-dark .tpd-spinner-spin {
  border-color: rgba(255,255,255,.2);
  border-left-color: #fff;
}
/* links */
.tpd-skin-dark a { color: #ccc; }
.tpd-skin-dark a:hover { color: #c0c0c0; }


/* light */
.tpd-skin-light .tpd-content,
.tpd-skin-light .tpd-title,
.tpd-skin-light .tpd-close { color: #333; }
.tpd-skin-light .tpd-background-content {
  background-color: #fff;
}
.tpd-skin-light .tpd-background {
  border-width: 1px;
  border-color: #838383;
  border-color: rgba(0,0,0,.3);
}
.tpd-skin-light .tpd-background-title {
  background-color: #f7f7f7;
}
.tpd-skin-light .tpd-title-wrapper { border-bottom: 1px solid #c0c0c0; }
.tpd-skin-light .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
/* fallback for no/disabled shadow */
.tpd-skin-light.tpd-no-shadow .tpd-background {
  border-color: #acacac;
  border-color: rgba(100,100,100,.3);
}
.tpd-skin-light .tpd-spinner-spin {
  border-color: rgba(51,51,51,.2);
  border-left-color: #333;
}
.tpd-skin-light a { color: #808080; }
.tpd-skin-light a:hover { color: #6c6c6c; }


/* gray */
.tpd-skin-gray .tpd-content,
.tpd-skin-gray .tpd-title,
.tpd-skin-gray .tpd-close { color: #fff; }
.tpd-skin-gray .tpd-background-content,
.tpd-skin-gray .tpd-background-title {
  background-color: #727272;
}
.tpd-skin-gray .tpd-background {
  border-width: 1px;
  border-color: #727272;
  border-color: rgba(255,255,255,.1);
}
.tpd-skin-gray .tpd-title-wrapper { border-bottom: 1px solid #505050; }
.tpd-skin-gray .tpd-spinner-spin {
  border-color: rgba(255,255,255,.2);
  border-left-color: #fff;
}
.tpd-skin-gray a { color: #ccc; }
.tpd-skin-gray a:hover { color: #b6b6b6; }


/* red */
.tpd-skin-red .tpd-content,
.tpd-skin-red .tpd-title,
.tpd-skin-red .tpd-close { color: #fff; }
.tpd-skin-red .tpd-background-content { background-color: #e13c37; }
.tpd-skin-red .tpd-background {
  border-width: 1px;
  border-color: #a30500;
  border-color: rgba(12,0,0,.6);
}
.tpd-skin-red .tpd-background-title { background-color: #e13c37; }
.tpd-skin-red .tpd-title-wrapper { border-bottom: 1px solid #a30500; }
.tpd-skin-red .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
.tpd-skin-red .tpd-spinner-spin {
  border-color: rgba(255,255,255,.2);
  border-left-color: #fff;
}
.tpd-skin-red a { color: #ddd; }
.tpd-skin-red a:hover { color: #c6c6c6; }


/* green */
.tpd-skin-green .tpd-content,
.tpd-skin-green .tpd-title,
.tpd-skin-green .tpd-close { color: #fff; }
.tpd-skin-green .tpd-background-content { background-color: #4aab3a; }
.tpd-skin-green .tpd-background {
  border-width: 1px;
  border-color: #127c00;
  border-color: rgba(0,12,0,.6);
}
.tpd-skin-green .tpd-background-title { background-color: #4aab3a; }
.tpd-skin-green .tpd-title-wrapper { border-bottom: 1px solid #127c00; }
.tpd-skin-green .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
.tpd-skin-green .tpd-spinner-spin {
  border-color: rgba(255,255,255,.2);
  border-left-color: #fff;
}
.tpd-skin-green a { color: #ddd; }
.tpd-skin-green a:hover { color: #c6c6c6; }


/* blue */
.tpd-skin-blue .tpd-content,
.tpd-skin-blue .tpd-title,
.tpd-skin-blue .tpd-close { color: #fff; }
.tpd-skin-blue .tpd-background-content { background-color: #45a3e3; }
.tpd-skin-blue .tpd-background {
  border-width: 1px;
  border-color: #1674b4;
  border-color: rgba(0,0,12,.6);
}
.tpd-skin-blue .tpd-background-title { background-color: #45a3e3; }
.tpd-skin-blue .tpd-title-wrapper { border-bottom: 1px solid #1674b4; }
.tpd-skin-blue .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
.tpd-skin-blue .tpd-spinner-spin {
  border-color: rgba(255,255,255,.2);
  border-left-color: #fff;
}
.tpd-skin-blue a { color: #ddd; }
.tpd-skin-blue a:hover { color: #c6c6c6; }


/* lightyellow */
.tpd-skin-lightyellow .tpd-content,
.tpd-skin-lightyellow .tpd-title,
.tpd-skin-lightyellow .tpd-close { color: #333; }
.tpd-skin-lightyellow .tpd-background-content { background-color: #ffffa9; }
.tpd-skin-lightyellow .tpd-background {
  border-width: 1px;
  border-color: #9d9c8c;
  border-color: rgba(8,8,0,.35);
}
.tpd-skin-lightyellow .tpd-background-title { background-color: #ffffa9; }
.tpd-skin-lightyellow .tpd-title-wrapper { border-bottom: 1px solid #a7a697; }
.tpd-skin-lightyellow .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
.tpd-skin-lightyellow .tpd-spinner-spin {
  border-color: rgba(51,51,51,.2);
  border-left-color: #333;
}
.tpd-skin-lightyellow a { color: #777; }
.tpd-skin-lightyellow a:hover { color: #868686; }


/* lightblue */
.tpd-skin-lightblue .tpd-content,
.tpd-skin-lightblue .tpd-title,
.tpd-skin-lightblue .tpd-close { color: #333; }
.tpd-skin-lightblue .tpd-background-content { background-color: #bce5ff; }
.tpd-skin-lightblue .tpd-background {
  border-width: 1px;
  border-color: #7c868a;
  border-color: rgba(0,0,8,.35);
}
.tpd-skin-lightblue .tpd-background-title { background-color: #bce5ff; }
.tpd-skin-lightblue .tpd-title-wrapper { border-bottom: 1px solid #909b9f; }
.tpd-skin-lightblue .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
.tpd-skin-lightblue .tpd-spinner-spin {
  border-color: rgba(51,51,51,.2);
  border-left-color: #333;
}
.tpd-skin-lightblue a { color: #777; }
.tpd-skin-lightblue a:hover { color: #868686; }


/* lightpink */
.tpd-skin-lightpink .tpd-content,
.tpd-skin-lightpink .tpd-title,
.tpd-skin-lightpink .tpd-close { color: #333; }
.tpd-skin-lightpink .tpd-background-content { background-color: #ffc4bf; }
.tpd-skin-lightpink .tpd-background {
  border-width: 1px;
  border-color: #8d817c;
  border-color: rgba(8,0,0,.35);
}
.tpd-skin-lightpink .tpd-background-title { background-color: #ffc4bf; }
.tpd-skin-lightpink .tpd-title-wrapper { border-bottom: 1px solid #a08f8f; }
.tpd-skin-lightpink .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
.tpd-skin-lightpink .tpd-spinner-spin {
  border-color: rgba(51,51,51,.2);
  border-left-color: #333;
}
.tpd-skin-lightpink a { color: #777; }
.tpd-skin-lightpink a:hover { color: #868686; }.profile {
	position: relative;
	/*background: transparent !important;*/
    /*border: none  !important;*/
    /*color: #444;*/
    /*border-bottom: solid 1px transparent !important;*/
}

.profile:focus {
	border-bottom: solid 1px #891427 !important;
}

input.profile {
	display: inline-block;
	font-family: "Open Sans Condensed";
    font-size: 36px;
    line-height: 42px;
	font-weight: 400;
	padding-left: 0px;
}

.profile.city {
	font-family: "Open Sans Condensed";
	display: inline-block;
	width: 200px;
	font-size: 30px;
	padding-left: 0px;
}

.profile.state {
	font-family: "Open Sans Condensed";
	display: inline-block;
	width: 200px;
	font-size: 30px;
}

.profile.country {
	font-family: "Open Sans Condensed";
	display: inline-block;
	width: 200px;
	font-size: 30px;
}

.profile.website {
    font-size: 14px;
    line-height: 14px;
	/*font-family: "Open Sans Condensed";*/
	font-weight: 400;
	color: #891427;
	padding-left: 0px;
}

.profile.name:required:invalid {
	border: solid 1px red;
}

.profile.bio {
	min-height: 350px;
}

checkbox.profile {

}

.profile.image {
	position: relative;
	/*border: solid 2px pink;*/
}


.profile.image > #photo_container > img {
	width: 100%;
	height: auto;
	/*opacity: .5;*/
}

.profile.image > #photo_container > .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;

	/*border: solid 2px blue;*/
}

.profile.image > #photo_container > .overlay > i {
	display: none;
}

.profile.image > #photo_container > .overlay:hover > i {
	display: block;
	position: absolute;
	color: #fff;

	top: 200px;
	left: 140px;

}

.profile.image:hover .overlay {
	/*border: solid 2px orange;*/
	background-color: #000;
	opacity: .5;
	cursor: pointer;
}

.profile.delete {
	/*border: solid 2px orange;*/
}

.profile.delete a {
	position: absolute;
	top: 20px;
	right: 25px;
	display: inline-block;
	z-index: 10000;
}

