/*
Theme Name: rsd
Theme URI: http://rsd.com.pl/
Author: Underscores.me
Author URI: http://rsd.com.pl/
Description: Wordpress Themes by RSD version 6
Version: 6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rsd
*/

/*31.03.2016*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/


/*! normalize.css v3.0.0 | 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,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:transparent;text-decoration:none}
a:active,a:hover{outline:0}
abbr[title]{border-bottom:1px dotted}
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}
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],/* 1 */
input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}
button[disabled],html input[disabled]{cursor:default}
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}
table{border-collapse:collapse;border-spacing:0}
h1,h2,h3,h4,h5,h6,{font-weight:700;color:inherit;}
h1,.h1{font-size:41px;line-height:1.1}
h2,.h2{font-size:34px;line-height:1.1}
h3,.h3{font-size:28px;line-height:1.1}
h4,.h4{font-size:20px;line-height:1.1}
h5,.h5{font-size:16px;line-height:1.1}
h6,.h6{font-size:14px;line-height:1.1}
h1,h2,h3{margin-top:15px;margin-bottom:15px}
h4,h5,h6{margin-top:8px;margin-bottom:8px}
b,strong,optgroup{font-weight:700}
pre,textarea{overflow:auto}
button::-moz-focus-inner,input::-moz-focus-inner,legend{border:0;padding:0}

h1, h2, h3, h4 , h5 , h6 { font-weight:400}

body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;word-wrap:break-word;}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #000;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.7;
	font-weight: 600;
}

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

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

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

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

big {
	font-size: 125%;
}

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

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

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

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

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

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

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

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

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

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/



button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	padding: 5px 10px;
	border:solid 2px black;
}

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

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

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea , select {
	color: #666;
	border: 2px solid black;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="search"], select {
	padding: 3px;
}

textarea {
	padding-left: 3px;
	width: 100%;
}

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

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

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

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

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	left: -999em;
	z-index: 99999;
}

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

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

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

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

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

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

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

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

.menu a {
    font-weight:600;
	font-size: 1.1em;
}

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

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

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

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

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

    
.main-navigation-aria {list-style: none}
        
.main-navigation-aria {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

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

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

.main-navigation-aria a {
    display: block;
    text-decoration: none;
    padding: 8px 10px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.main-navigation-aria ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	left: -999em;
	z-index: 99999;
    background: white;
}

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

.main-navigation-aria ul ul a {
	width: 200px;
    color: black
}

.main-navigation-aria ul ul li {

}

.main-navigation-aria li:hover > a,
.main-navigation-aria li.focus > a { background: black; color:#fff
}

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

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

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

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

.main-navigation-aria .current_page_item > a,
.main-navigation-aria .current-menu-item > a,
.main-navigation-aria .current_page_ancestor > a,
.main-navigation-aria .current-menu-ancestor > a {
}
  
    
/*responsive*/
    
    .mf-primary-menu-toggle {display:none}
    

@media (max-width: 767px) {
    
    
 .main-navigation-aria li {
    float:none;
}  
    .mf-primary-menu-toggle {display: block; background:red; color: white}   
    
    }






/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

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

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

aside#secondary {
    border-left: solid 1px;
    padding-left: 20px;
}

.widget_black_studio_tinymce p {
    margin-bottom: 0px;
}

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

.hentry {
	margin: 0 0 1.5em;
}

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

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	 /* margin: 1.5em 0 0; */
}

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

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

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

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

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

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

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

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


body {font-family: 'Open Sans', sans-serif;}

.mf-site {max-width: 1320px;margin: 0 auto; background: #fff;}

.mf-page-title, .mf-widget-title {
    color: white;
    padding: 10px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.mf-article {border: solid 2px #000; padding: 10px}

.mf-scrollup {position: fixed;bottom: 20px;right: 20px;background: #000;font-size: 30px;cursor: pointer; color: #fff; padding: 5px 10px;}
.mf-scrollup a { color:#fff}

.mf-social-share {}
.mf-social-share a {text-decoration: none}
.mf-social-share span {padding: 5px 10px;}

/*Numeric pagination*/
.mf-pagination ul {padding: 0px;margin: 0px;}
.mf-pagination li a {-webkit-transition: all 400ms ease-in-out;-moz-transition: all 400ms ease-in-out;-ms-transition: all 400ms ease-in-out;-o-transition: all 400ms ease-in-out;transition: all 400ms ease-in-out;}
.mf-pagination li a, .mf-pagination li a:hover, .mf-pagination li.active a, .mf-pagination li.disabled {color:#fff;text-decoration:none; display:inline-block; margin-top: 5px;}
.mf-pagination li {display: inline;}
.mf-pagination li a,.mf-pagination li a:hover,.mf-pagination li.active a,
.mf-pagination li.disabled {background-color: #333;cursor: pointer;padding: 6px 14px;}
.mf-pagination li a:hover,.mf-pagination li.active a {background-color: #ccc;color:#000;}

/*widget style*/

.widget {list-style: none;}

.widget ul {list-style: none; padding:0; margin:0px}
	
.widget li { padding:5px; border-bottom:solid 2px black }

/* calendar widget */
#wp-calendar {width: 100%; }
#wp-calendar caption { text-align: right; color: #333; font-size: 12px; margin-top: 10px; margin-bottom: 15px; }
#wp-calendar thead { font-size: 10px; }
#wp-calendar thead th { padding-bottom: 10px; }
#wp-calendar tbody { color: #aaa; }
#wp-calendar tbody td { border: 1px solid #000; text-align: center; padding:8px;}
#wp-calendar tbody td:hover { background: #fff; }
#wp-calendar tbody .pad { background: none; }
#wp-calendar tfoot #next { font-size: 10px; text-transform: uppercase; text-align: right; }
#wp-calendar tfoot #prev { font-size: 10px; text-transform: uppercase; padding-top: 10px; }


/* comments */

ol.commentlist { list-style:none; margin:0 0 1em; padding:0; text-indent:0; }
ol.commentlist li.comment { border-bottom:1px dotted #666; padding:1em; }
ol.commentlist li div.comment-author {}
ol.commentlist li div.vcard { font:normal 16px georgia,times,serif; }
ol.commentlist li div.vcard cite.fn { font-style:normal; }
ol.commentlist li div.vcard cite.fn a.url {}
ol.commentlist li div.vcard img.avatar { border:5px solid #ccc; float:left; margin: 0px 20px 0px 0px; }
ol.commentlist li div.comment-meta { font-size:9px; }
ol.commentlist li div.comment-meta a { color:#ccc; }
ol.commentlist li p { font-size:14px; margin:0 0 1em; }
ol.commentlist li ul { font-size:14px; list-style:square; margin:0 0 1em 2em; }
ol.commentlist li div.reply { font-size:11px; }
ol.commentlist li div.reply a { font-weight:bold; }
ol.commentlist li ul.children { list-style:none; margin:1em 0 0; text-indent:0; }
ol.commentlist li ul.children li.depth-2 { border-left:5px solid #c52127; margin:0 0 .25em .25em; }
ol.commentlist li ul.children li.depth-3 { border-left:5px solid #c52127; margin:0 0 .25em .25em; }
ol.commentlist li ul.children li.depth-4 { border-left:5px solid #c52127; margin:0 0 .25em .25em; }
ol.commentlist li.even { background:#fff; }
ol.commentlist li.odd { background:#f6f6f6; }
ol.commentlist li.parent { border-left:5px solid #c52127; }
ol.commentlist li.pingback { border-bottom:1px dotted #666; padding:1em; }


/* MF GRID*/
.mf-boxed-container{width:1250px;margin:0px auto;padding:0px;min-height:100%}

@media (max-width: 1260px) {
.mf-boxed-container {
max-width: 100%;
} }
 
.mf-core {width:100%;}
 
.wew {padding:10px;}
 
.wew-h {padding:0px 10px 0px 10px;}

.mf-container {margin:0 auto; padding:0; position:relative; width:1180px;}

.mf-container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.mf-row { padding:0px 10px 0px 10px}
 
/* responsive */
 
.mf-col1, .mf-col2, .mf-col2_4, .mf-col3, .mf-col4, .mf-col5, .mf-col6, .mf-col7, .mf-col8, .mf-col9, .mf-col10, .mf-col11, .mf-col12, .mf-col13, .mf-col14, .mf-col15, .mf-col16 {
    display:inline;
    float:left;
}
 

@media only screen and (min-width: 960px) and (max-width: 1200px) {
.mf-container{width:960px}
 
}


@media only screen and (min-width: 768px) and (max-width: 959px) {
.mf-container{width:768px}
 
}

@media only screen and (max-width: 767px) {
.mf-container{width:100%}
 
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
.mf-container{width:100%}
}

 .mf-col1{width:8.333333333333332%} .mf-col2{width:16.666666666666664%} .mf-col2_4{width:20%} .mf-col3{width:25%} .mf-col4{width:33.33333333333333%} .mf-col5{width:41.66666666666667%} .mf-col6{width:50%} .mf-col7{width:58.333333333333336%} .mf-col8{width:66.66666666666666%} .mf-col9{width:75%} .mf-col10{width:83.33333333333334%} .mf-col11{width:91.66666666666666%} .mf-col12{width:100%}

 
@media only screen and (min-width: 960px) and (max-width: 1200px) {
 .mf-col1{width:8.333333333333332%} .mf-col2{width:16.666666666666664%} .mf-col2_4{width:20%} .mf-col3{width:25%} .mf-col4{width:33.33333333333333%} .mf-col5{width:41.66666666666667%} .mf-col6{width:50%} .mf-col7{width:58.333333333333336%} .mf-col8{width:66.66666666666666%} .mf-col9{width:75%} .mf-col10{width:83.33333333333334%} .mf-col11{width:91.66666666666666%} .mf-col12{width:100%}
 
}
 
@media only screen and (min-width: 768px) and (max-width: 959px) {
 .mf-col1{width:8.333333333333332%} .mf-col2{width:16.666666666666664%} .mf-col2_4{width:20%} .mf-col3{width:25%} .mf-col4{width:33.33333333333333%} .mf-col5{width:41.66666666666667%} .mf-col6{width:50%} .mf-col7{width:58.333333333333336%} .mf-col8{width:66.66666666666666%} .mf-col9{width:75%} .mf-col10{width:83.33333333333334%} .mf-col11{width:91.66666666666666%} .mf-col12{width:100%}
 
}
 
@media only screen and (max-width: 767px) {
 .mf-col1, .mf-col2, .mf-col2_4, .mf-col3, .mf-col4, .mf-col5, .mf-col6, .mf-col7, .mf-col8, .mf-col9, .mf-col10, .mf-col11, .mf-col12{margin:0 0 20px 0;width:100%}
 
}
 
@media only screen and (min-width: 480px) and (max-width: 767px) {
 .mf-col1, .mf-col2, .mf-col3, .mf-col4, .mf-col5, .mf-col6, .mf-col7, .mf-col8, .mf-col9, .mf-col10, .mf-col11, .mf-col12,.container16 .mf-col13,.container16 .mf-col14,.container16 .mf-col15,.container16 .mf-col16{margin:0 0 20px 0;width:100%}
 
}


@media (min-width: 268px) {
  .mf-col-sm-1, .mf-col-sm-2, .mf-col-sm-3, .mf-col-sm-4, .mf-col-sm-5, .mf-col-sm-6, .mf-col-sm-7, .mf-col-sm-8, .mf-col-sm-9, .mf-col-sm-10, .mf-col-sm-11, .mf-col-sm-12 {
    float: left;
  }
  .mf-col-sm-12 {
    width: 100%;
  }
  .mf-col-sm-11 {
    width: 91.66666667%;
  }
  .mf-col-sm-10 {
    width: 83.33333333%;
  }
  .mf-col-sm-9 {
    width: 75%;
  }
  .mf-col-sm-8 {
    width: 66.66666667%;
  }
  .mf-col-sm-7 {
    width: 58.33333333%;
  }
  .mf-col-sm-6 {
    width: 50%;
  }
  .mf-col-sm-5 {
    width: 41.66666667%;
  }
  .mf-col-sm-4 {
    width: 33.33333333%;
  }
  .mf-col-sm-3 {
    width: 25%;
  }
  .mf-col-sm-2 {
    width: 16.66666667%;
  }
  .mf-col-sm-1 {
    width: 8.33333333%;
  }
 
}


.clearfix:before, .clearfix:after,
.mf-row:before, .mf-row:after,
.mf-container:before, .mf-container:after, .container16:before, .container16:after {
 content:'.';
 display:block;
 height:0;
 overflow:hidden;
 visibility:hidden;
 width:0;
}
 
.mf-row:after, .clearfix:after, .mf-container:after, .container16:after {clear:both;}
/* For IE7. Move this to separate file when you notice some problems */
.mf-row, .clearfix {zoom: 1;}

/* static - no responsive */
 
.st-mf-col1, .st-mf-col2, .st-mf-col2_4, .st-mf-col3, .st-mf-col4, .st-mf-col5, .st-mf-col6, .st-mf-col7, .st-mf-col8, .st-mf-col9, .st-mf-col10, .st-mf-col11, .st-mf-col12, .st-mf-col13, .st-mf-col14, .st-mf-col15, .st-mf-col16 {
 display:inline;
 float:left;
}
 
.mf-container .st-mf-col1{width:8.333333333333332%}.mf-container .st-mf-col2{width:16.666666666666664%}.mf-container .st-mf-col2_4{width:20%}.mf-container .st-mf-col3{width:25%}.mf-container .st-mf-col4{width:33.33333333333333%}.mf-container .st-mf-col5{width:41.66666666666667%}.mf-container .st-mf-col6{width:50%}.mf-container .st-mf-col7{width:58.333333333333336%}.mf-container .st-mf-col8{width:66.66666666666666%}.mf-container .st-mf-col9{width:75%}.mf-container .st-mf-col10{width:83.33333333333334%}.mf-container .st-mf-col11{width:91.66666666666666%}.mf-container .st-mf-col12{width:100%}
 
/* Responsive Input & Select */

.button { display:inline-block}

select,input[type="text"],input[type="password"],input[type="email"] , input[type="search"]{
	-moz-box-sizing:border-box;-webkit-box-sizing:border-box;background-color:#fff;box-sizing:border-box;margin:0;outline:none;vertical-align:middle;width:100%; 
	font-size: 1.000em;}
area:focus,input:focus, textarea:focus {}
button,html input[type="button"],input[type="reset"],input[type="submit"] {border:0px; display:inline-block}
area,textarea{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;background-color:#fff;box-sizing:border-box;height:auto;overflow:auto;margin:0;outline:none;padding:8px 10px;width:100%;}



select::-ms-expand { /* for IE 11 */
    display: none;
}

@media screen and (min-width: 0\0) {
  select {
    background: none;
    padding: 5px;
  }
}

/* Media Query Class*/

@media (max-width: 980px) {.no-b-tab {display: none !important;}}
@media (max-width: 850px) {.no-tab {display: none !important;}}
@media (max-width: 767px) {.no-mobile {display: none !important;}}
@media (min-width: 768px) {.no-desktop {display: none !important;}} 
@media print {.no-print {display: none !important;}}



/* .mf-highcontrast */


.mf-highcontrast {
    background:black;
	color: yellow;
}

.mf-highcontrast .mf-site {
    background:black;
	color: yellow;
}
  

.mf-highcontrast .btn-hc {
    cursor: pointer;
    border: solid 2px yellow;
    color: yellow;
} 

.mf-highcontrast .mf-site-title {
  background-color: black;
  color: yellow;
}

.mf-highcontrast a, .mf-highcontrast a:visited {
  color: yellow;
}

.mf-highcontrast .mf-widget-title {
  background-color: black;
  color: yellow;
  border: yellow solid 2px;
}

.mf-highcontrast .mf-page-title {
    background-color: black;
    color: yellow;
    border: yellow solid 2px;
}

.mf-highcontrast .mf-button {
    background-color: black;
    color: yellow;
    border: yellow solid 2px;}



.mf-highcontrast .widget li { padding:5px; border-bottom:solid 2px yellow }

.mf-highcontrast .main-navigation-aria {
    list-style: none;
    background:black;
}

.mf-highcontrast .main-navigation {
    background: black;
}

.mf-highcontrast .main-navigation li {
    background: black;
    border: yellow solid 2px;
}
    
.mf-highcontrast .main-navigation-aria li {
    background: black;
    border: yellow solid 2px;
}   
    
.mf-highcontrast .mf-article {
    border: solid 2px yellow;
}

.mf-highcontrast img {
    border: solid 3px yellow;
}
    
    
.mf-highcontrast .mf-site-title i {
    background: yellow;
    color: black
}

.mf-highcontrast .mf-fontsize-reset-btn  {
    background: black;
    color: yellow;
	border:solid 2px yellow
}

.mf-highcontrast .mf-fontsize-big-btn {
    background: black;
    color: yellow;
	border:solid 2px yellow
}

.mf-highcontrast .mf-fontsize-small-btn {
    background: black;
    color: yellow;
	border:solid 2px yellow
}

.mf-highcontrast input[type="text"] {
    background-color: #000;
	color:yellow;
	border:solid 2px yellow

}

.mf-highcontrast input[type="email"] {
    background-color: #000;
	color:yellow;
	border:solid 2px yellow

}

.mf-highcontrast input[type="search"]  {
  background-color: black;
  color: yellow;
  border:solid 2px yellow
}

.mf-highcontrast textarea  {
  background-color: black;
  color: yellow;
  border:solid 2px yellow
}

/*end hightcontrast*/


/*highcontrast Y*/

.mf-highcontrast-y {
    background:yellow;
	color: black;
}

.mf-highcontrast-y .mf-site {
    background:yellow;
	color: black;
}


.mf-highcontrast-y .mf-button {
    background-color: yellow;
    color: black;
    border: black solid 2px;
	font-weight:bold}


.mf-highcontrast-y .mf-article {
    border: solid 2px black;
}


.mf-highcontrast-y .main-navigation-aria {
    list-style: none;
    background:yellow;
}
    
.mf-highcontrast-y .main-navigation-aria li {
    background: yellow;
    border: black solid 2px;
}   

.mf-highcontrast-y .main-navigation-aria li a {
	color:black

}

.mf-highcontrast-y .main-navigation-aria li a:hover {
	background:yellow;

}

.mf-highcontrast-y .main-navigation-aria li:hover {
	background:yellow !important;

}



.mf-highcontrast-y img {
    border: solid 3px black;
}

.mf-highcontrast-y .mf-widget-title {
   background-color: yellow;
	color:black;
	border:solid 2px black
}

.mf-highcontrast-y .mf-page-title {
   background-color: yellow;
	color:black;
	border:solid 2px black
}

.mf-highcontrast-y input[type="text"] {
    background-color: yellow;
	color:black;
	border:solid 2px black

}

.mf-highcontrast-y input[type="email"] {
    background-color: yellow;
	color:black;
	border:solid 2px black

}

.mf-highcontrast-y input[type="search"]  {
  background-color: yellow;
  color: black;
  border:solid 2px black
}

.mf-highcontrast-y textarea  {
  background-color: yellow ;
  color: black;
  border:solid 2px black
}

/*end highcontrast Y*/

.mf-greyscale {
 -webkit-filter: grayscale(100%);
 -moz-filter: grayscale(100%);
 -ms-filter: grayscale(100%);
 -o-filter: grayscale(100%);
 filter: grayscale(100%);
 filter: gray;}


.mf-right-header {
    text-align: right;
}


.site-branding {background:transparent;  margin: 20px 0px 0px;  font-weight: bold;}
.site-branding h1 { margin-top: 35px; padding: 0px}

.mf-icons-wcag { font-size: 1.250em}

.mf-site-title {
    font-size: 1.563em;
    font-weight: bold;
	color: black;
}


.site-description {
    padding: 20px 0px 0px;
    display: block;
}

.mf-icons-main {
    text-align: center
}

.mf-icons-main i {
    font-size: 92px;
    
}

.mf-slider-main img {
    width: 100%
}

/* FONT SIZE*/

.mf-fontsize-small-btn {}
.mf-fontsize-reset-btn {}
.mf-fontsize-big-btn {}

.mf-fontsize-big { font-size:24px}
.mf-fontsize-small { font-size:10px}


.mf-fontsize-big .main-navigation-aria a {

    font-size: 24px;
}

.mf-fontsize-small .main-navigation-aria a {

    font-size: 14px !important;
}

.mf-fontsize-big .mf-widget-title { font-size:26px}


.mf-fontsize-reset-btn, .mf-fontsize-big-btn , .mf-fontsize-small-btn {
    padding: 3px 8px;
    cursor: pointer;
    margin: 0px 0px 0px 5px;
    background: #000;
    color: #fff;
    font-weight: bold;
	border:solid 2px black
}

.btn-hc {
    cursor: pointer;
    font-weight: bold;
    border: solid 2px black;
    color: black;
    padding: 3px 8px;
	margin-left:5px
}

.hc-info , .big-font { display:none}

.head-acs { font-size:15px}
 
.mf-site-info {
    background: #333;
    color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1999;
    width: 100%;
    text-align: center;
}

.mf-site-info a {
    color: #fff;
}

.mf-site-info-btn {
    display: inline-block;
    background: red;
    padding: 10px;
	margin: 10px;
}

.mf-settings {
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 199;
    padding: 5px 1px;
    border: solid 2px;
	background:#fff;
	cursor:pointer
}

.mf-fb-btn {
    position: fixed;
    top: 200px;
    right: 0px;
    background: #056894;
    padding: 10px 15px;
    color: #fff;
    font-size: 25px;
}