<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*
Theme Name: BitcoinMagazine
Theme URI: http://www.simplewpthemes.com
Version: 1.0
Author: Simple WP Themes
Author URI: http://www.simplewpthemes.com
Description: Free Wordpress theme by &lt;a href="http://www.simplewpthemes.com/"&gt;SimpleWPThemes.com&lt;/a&gt;.
Text Domain: swt
*/

/*--------------------------------------------------------------
&gt;&gt;&gt; TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
5.1 - Links
5.2 - Menus
6.0 - Alignments
7.0 - Clearings
8.0 - Widgets
9.0 - Content
9.1 - Posts and pages
9.2 - Comments
10.0 - Infinite scroll
11.0 - Media
11.1 - Captions
11.2 - Galleries
12.  - Layout
13.  - Slider
14.  - Ticker
15.  - Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%;  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll;  /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%;  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust: 100%;  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	-webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
 /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box;  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing: border-box;  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing: border-box;
}

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

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

ol,
ul {
	list-style: none;
}

table {
 /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #e8e8e8;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
	border: 1px solid #e8e8e8;
}

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

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

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

a:focus {
	outline: thin dotted;
}

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

a img {
	border: 0;
}


/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
textarea {
	color: #737373;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: italic;
	line-height: 1.5;
	word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: 700;
	font-style: italic;
	margin: 0 0 20px 0;
}

h1 {
	font-size: 30px;
}
h2 {
	font-size: 25px;
}
h3 {
	font-size: 21px;
}
h4 {
	font-size: 18px;
}
h5 {
	font-size: 17px;
}
h6 {
	font-size: 16px;
}

p {
	margin-bottom: 1.5em;
}

b,
strong {
	font-weight: bold;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
	font-style: italic;
}

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

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

code {
	background: #f6f6f6;
	color: #000;
	border: 1px solid #e3e3e3;
	padding: 0 5px;
}

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

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

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

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

.fa,
.entry-byline:before,
.entry-published:before,
.entry-author:before,
.entry-terms.category:before,
.comments-link:before,
.entry-terms.post_tag:before  {
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/

blockquote {
	font-size: 15px;
	font-style: italic;
	margin: 0 0 1.5em;
	padding: 3%;
	color: #666;
	background: #f9f9f9;
	border-left: 5px solid #ddd;
}

blockquote blockquote {
	padding: 0.5% 2%;
}

blockquote p {
	margin: 0;
}

blockquote cite {
	font-variant: small-caps;
}

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 &gt; ul,
li &gt; ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

figure {
	margin: 0;
}

/* Tables. */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 0 1.5em 0;
	width: 100%;
}

th,
td {
	padding: 6px 2%;
}

caption,
th,
td {
	text-align: left;
}

caption {
	margin: 1em 0;
	border: 0;
}

th {
	font-weight: bold;
}

/* wp-calendar &lt;table&gt; */

#wp-calendar th,
#wp-calendar td {
	font-size: 16px;
	font-weight: normal;
	padding: 4px 1%;
	text-align: center;
}
#wp-calendar tr:hover td,
#wp-calendar td.pad,
#wp-calendar #prev,
#wp-calendar #next {
	background: transparent;
}
#wp-calendar #prev {
	text-align: left;
}
#wp-calendar #next {
	text-align: right;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/

button,
input,
select,
textarea {
	font-size: 100%;  /* Corrects font size not being inherited in all browsers */
	margin: 0;  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline;  /* Improves appearance and consistency in all browsers */;
	-webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
        -ms-transition: all 0.25s ease-out;
         -o-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 0;
	background: #000;
	color: #fff;
	font-weight: bold;
	cursor: pointer;  /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button;  /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 18px;
	line-height: 1;
	padding: 0.8em 1.5em;

}

input[name="post_password"] { margin-bottom: 20px; }

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {

}

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

input[type="checkbox"],
input[type="radio"] {
	padding: 0;  /* Addresses excess padding in IE8/9 */;
}

input[type="search"] {
	-webkit-appearance: textfield;  /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box;  /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
 /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
 /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #737373;
	border: 1px solid #e9e9e9;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {

}

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

textarea {
	overflow: auto;  /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding: 10px;
	vertical-align: top;  /* Improves readability and alignment in all browsers */
	width: 100%;
	min-height: 170px;
}

fieldset {
	margin: 0 0 1.5em 0;
	padding: 3%;
	border: 1px solid #e8e8e8;
}

legend {
	border: 0;
	font-weight: bold;
	margin: 0 0 32px 0;
	padding: 0;
	white-space: normal;
}


input {
	display: block;
}
input[type="checkbox"],
input[type="radio"] {
	display: inline-block;
}

input[type="number"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="password"],
input[type="reset"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea,
select {
	display: block;
	padding: 9px 10px;
}
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea,
select {
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/


/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/

a {
	color: #000;
	text-decoration: none;
	transition: all 0.25s ease-in-out;
}

a:visited {
}

a:hover,
a:focus,
a:active {
	color: #000;
	text-decoration: underline;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/

#menu-primary {
	background: #252424;
	min-height: 30px;
}

#menu-primary-items,
#menu-secondary-items {
	margin: 0;
	width: 100%;
}

#menu-secondary {
	background: #252424;
	border-bottom: 10px solid #fbbd2c;
}

@media only screen and (min-width: 990px) {

	.js .menu-items {
		position: relative;
	}

	.js .menu-items.closed {
		max-height: none;
	}

	#toggle-primary-menu,
	#toggle-secondary-menu {
		display: none;
	}

	/*=== Menu Primary ===*/

	.social-profiles-on #menu-primary-items { width: 85%; }

	#menu-primary-items li {
 		display: inline-block;
		float: left;
		height: 30px;
		line-height: 30px;
		position: relative;
	}

	#menu-primary-items a {
		display: block;
		float: left;
		margin: 0 8px 0 0;
		white-space: nowrap;
		font-size: 12px;
		font-weight: bold;
		color: #747474;
	}

	#menu-primary-items li.current-menu-item,
	#menu-primary-items li.current-menu-item &gt; a,
	#menu-primary-items li:hover &gt; a,
	#menu-primary-items ul a:hover { color: #fff; text-decoration: underline; }


	#menu-primary-items &gt; li:after {
		content: "I";
		font-size: 11px;
		font-weight: bold;
		color: #000;
		margin-right: 8px;
	}

	#menu-primary-items li:last-child:after {
		content: "";
	}

	#menu-primary-items li.current-menu-item { text-decoration: none; }


	#menu-primary-items ul {
		float: left;
		margin: 0;
		position: absolute;
		top: 30px;
		left: -999em;
		z-index: 99999;
		transition-property: opacity, visibility;
		transition-duration: .25s, 0s;
		transition-delay: 0.25s, .25s;
		visibility: hidden;
		opacity: 0;
	}

	#menu-primary-items li li {
 		display: block;
		height: auto;
		line-height: 1;
	}

	#menu-primary-items ul ul {
		left: -999em;
		top: 0;
	}

	#menu-primary-items ul a {
		padding: 5px 10px;
		white-space: normal;
		width: 140px;
	}

	#menu-primary-items li:hover &gt; ul,
	#menu-primary-items li.focus &gt; ul {
		left: -13px;
		opacity: 1;
		visibility: visible;
		width: 140px !important;
	}

	#menu-primary-items ul li:hover &gt; ul,
	#menu-primary-items ul li.focus &gt; ul {
		left: 100%;
		opacity: 1;
		visibility: visible;
	}

	#menu-primary .menu-item-has-children &gt; a,
	#menu-primary .page_item_has_children &gt; a {
		padding-right: 0;
	}

	#menu-primary .menu-item-has-children &gt; a:after,
	#menu-primary .page_item_has_children &gt; a:after {
		content: "\f107";
		display: inline-block;
		font-family: FontAwesome;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		padding: 0 0 0 6px;
	}

	#menu-primary-items li .menu-item-has-children &gt; a,
	#menu-primary-items li .page_item_has_children &gt; a {
		padding-right: 20px;
		width: 140px;
	}

	#menu-primary .menu-item-has-children li.menu-item-has-children &gt; a:after,
	#menu-primary .menu-item-has-children li.page_item_has_children &gt; a:after,
	#menu-primary .page_item_has_children li.menu-item-has-children &gt; a:after,
	#menu-primary .page_item_has_children li.page_item_has_children &gt; a:after {
		content: "\f107";
	}

	#menu-primary .sub-menu li a:after,
	#menu-secondary .sub-menu li a:after	{
		-ms-transform: rotate(-90deg); /* IE 9 */
		-webkit-transform: rotate(-90deg); /* Chrome, Safari */
		-moz-transform: rotate(-90deg); /* FF */
		-o-transform: rotate(-90deg); /* Opera */
		transform: rotate(-90deg);
		position: absolute;
		right: 15px;
		top: 15px;
	}

	#menu-primary .sub-menu { background: #252424; width: 100% !important;  }

	#menu-primary .sub-menu li:first-child,
	#menu-primary .sub-menu li:only-child a	{
		padding-top: 10px;
	}

	#menu-primary .sub-menu li:last-child {
		padding: 0 0 10px;
	}


	/*=== Menu Secondary ===*/

	#menu-secondary { height: 50px; }
	#menu-secondary ul {
		margin: 0;
 	}

	#menu-secondary-items li {
 		display: inline-block;
		position: relative;
		line-height: 40px;
	}

	#menu-secondary-items a {
		float: left;
		display: inline-block;
		padding: 0 15px 0;
		white-space: nowrap;
		font-size: 15px;
		font-weight: 500;
		color: #fff;
	}

	#menu-secondary a:hover { color: #fff; }


	#menu-secondary ul ul {
		float: left;
		margin: 0;
		position: absolute;
		top: 40px;
		left: -999em;
		z-index: 999999999;
		transition-property: opacity, visibility;
		transition-duration: .25s, 0s;
		transition-delay: 0.25s, .25s;
		visibility: hidden;
		opacity: 0;
	}

	#menu-secondary li li {
 		display: block;
		height: auto;
		line-height: 1;
	}

	#menu-secondary ul ul ul {
		left: -999em;
		top: 0;
	}

	#menu-secondary ul ul a {
		padding: 8px 15px;
		margin-right: 0;
		white-space: normal;
		width: 200px;
	}

	#menu-secondary ul li:hover &gt; ul,
	#menu-secondary ul li.focus &gt; ul {
		left: auto;
		opacity: 1;
		visibility: visible;
	}

	#menu-secondary ul ul li:hover &gt; ul,
	#menu-secondary ul ul li.focus &gt; ul {
		left: 100%;
		opacity: 1;
		visibility: visible;
	}

	#menu-secondary .menu-item-has-children &gt; a,
	#menu-secondary .page_item_has_children &gt; a {
		padding-right: 10px;
	}

	#menu-secondary .menu-item-has-children &gt; a:after,
	#menu-secondary .page_item_has_children &gt; a:after {
		content: "\f107";
		display: inline-block;
		font-family: FontAwesome;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		padding: 0 5px;
	}

	#menu-secondary li .menu-item-has-children &gt; a,
	#menu-secondary li .page_item_has_children &gt; a {
		padding-right: 20px;
		width: 200px;
	}

	#menu-secondary .menu-item-has-children li.menu-item-has-children &gt; a:after,
	#menu-secondary .menu-item-has-children li.page_item_has_children &gt; a:after,
	#menu-secondary .page_item_has_children li.menu-item-has-children &gt; a:after,
	#menu-secondary .page_item_has_children li.page_item_has_children &gt; a:after {
		content: "\f107";
		right: 8px;
		top: 17px;
	}

	#menu-secondary .sub-menu { background: #fbbd2c; padding-bottom: 8px; }

	#menu-secondary .sub-menu li:only-child a,
	#menu-secondary .sub-menu li:first-child {
		padding-top: 8px;
	}

	#menu-secondary .sub-menu li:last-child {
		padding-bottom: 6px;
	}

	#menu-secondary li.current-menu-item,
	#menu-secondary li.current-menu-item &gt; a,
	#menu-secondary li:hover &gt; a,
	#menu-secondary ul ul a:hover { background: #fbbd2c; color: #000; text-decoration: none; }

}

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

	.menu-items ul{margin:0;padding:0;width:100%;display:block;list-style:none}.menu-items li{width:100%;display:block}.js .menu-items{clip:rect(0 0 0 0);max-height:0;position:absolute;display:block;overflow:hidden;zoom:1}.menu-items.opened{max-height:9999px}.disable-pointer-events{pointer-events:none!important}.nav-toggle{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}

	#toggle-primary-menu:before,
	#toggle-secondary-menu:before	{
		content: "\f0c9";
		display: inline-block;
		font-family: FontAwesome;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	#toggle-secondary-menu:before {
		background: #fbbd2c;
		display: inline-block;
		width: 50px;
		line-height: 40px;
	}

	#toggle-primary-menu {
		width: 40px;
		display: block;
		margin: 0 auto;
		text-align: center;
		font-size: 20px;
		color: #fff;
		background: #000;
	}
	#toggle-secondary-menu {
		width: 100%;
 		text-align: center;
		font-size: 20px;
		color: #000;
		display: block;
	}

	#menu-primary-items a {
		color: #747474;
		font-weight: bold;
		width: 100%;
		display: block;
		line-height: 40px;
		padding: 0 4%;
		border-bottom: 1px solid #747474;
	}

	#menu-primary-items a:hover { color: #fff; }

	#menu-primary-items ul li a { padding-left: 8%; }
	#menu-primary-items ul ul li a { padding-left: 10%; }
	#menu-primary-items ul ul ul li a { padding-left: 12%; }
	#menu-primary-items ul ul ul ul li a { padding-left: 14%; }


	/*=== Menu Secondary ===*/

	.js-nav-active #menu-secondary { background: #fbbd2c; }
	.js-nav-active #toggle-secondary-menu:before { background: #252424; color: #fff; }

	#menu-secondary-items a {
		color: #000000;
		font-weight: bold;
		width: 100%;
		display: block;
		line-height: 40px;
		padding: 0 4%;
		border-bottom: 1px solid #000;
	}

	#menu-secondary-items ul li a { padding-left: 8%; }
	#menu-secondary-items ul ul li a { padding-left: 10%; }
	#menu-secondary-items ul ul ul li a { padding-left: 12%; }
	#menu-secondary-items ul ul ul ul li a { padding-left: 14%; }

}

/*--------------------------------------------------------------
6.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: 0 auto;
}

.portrait.swt-full {
	float: right;
	width: 33%;
	margin-left: 1.5em;
}

.left { float: left; }
.right { float: right; }

/*--------------------------------------------------------------
7.0 Clearings
--------------------------------------------------------------*/

#main:before,
#main:after,
.clear:before,
.clear:after,
.entry:before,
.entry:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
#header:before,
#header:after,
#sidebar-primary .widget:before,
#sidebar-primary .widget:after,
#sidebar-subsidiary:before,
#sidebar-subsidiary:after,
#footer:before,
#footer:after {
	content: '';
	display: table;
}

#main:before,
#main:after,
.clear:after,
.entry:before,
.entry:after,
.entry-content:after,
.comment-content:after,
#sidebar-primary .widget:before,
#sidebar-primary .widget:after,
#header:after,
#content:after,
#footer:after {
	clear: both;
}

/*--------------------------------------------------------------
8.0 Widgets
--------------------------------------------------------------*/

#sidebar-primary .widget {
	margin: 0 0 40px;
	font-size: 15px;
	font-weight: 300;
}

#sidebar-primary .widget-title {
	color: #737373;
	font-size: 21px;
	line-height: 1;
	margin-bottom: 20px;
}
#sidebar-primary .widget_recent_comments .widget-title,
#sidebar-primary .widget-tags .widget-title {
	margin-bottom: 30px !important;
}


#sidebar-primary .widget ul {
	list-style: none;
	margin: 0;
	font-weight: 700;
}

#sidebar-primary .widget li {
	line-height: 1.85;
}

#sidebar-primary .widget li ul {
	margin-left: 15px;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/* Tag cloud widget */
.widget .post_tag-cloud a {
	display: inline-block;
	margin: 0 0 4px;
	padding: 7px 10px;
	line-height: 1;
	font-size: 14px !important;
	color: #000;
	background: #fbbd2c;
}

.widget .post_tag-cloud a:hover {
	background: #000;
	color: #ffffff;
	text-decoration: none;
}


.widget *:last-child { margin-bottom: 0; }

/* Widget with icon */
#sidebar-subsidiary .widget_with_icon {
	position: relative;
	top: -20px;
}

.widget_with_icon .widget-title {
	font-size: 35px !important;
}

.widget_with_icon .widget-title i {
	font-size: 50px;
	font-style: italic;
	margin-right: 13px;
	float: left;
	color: #fbbd2c;
}

/* Newsletter widget */

.newsletter-text { margin-bottom: 24px; }

.newsletter-email {
	font-weight: 300;
	font-size: 15px;
	margin-bottom: 5px;
}

.swt_newsletter #response { margin-top: 10px; display: block; }

#sidebar-subsidiary .newsletter-email {
	border-color: #4f4f4f;
	background: #252424;
	color: #4f4f4f;
}

input.newsletter-submit {
	font-size: 15px;
	font-weight: 300;
	padding: 10px 12px;
}

#sidebar-subsidiary .newsletter-submit {
	background: #fbbd2c;
	color: #fff;
}

/* Twitter widget */

.swt_twitter_widget li {
	position: relative;
	padding: 1px 0 0 30px;
	margin-bottom: 15px;
	line-height: 1.5 !important;
}
.swt_twitter_widget li:before {
	position: absolute;
	left: 0;
	top: 4px;
	color: #4f4f4f;
	font-size: 25px;
	line-height: 1;
}

.swt_twitter_widget li span { font-family: 'Roboto', sans-serif; font-weight: 300; font-style: italic; display: block; }

/* Widget Recent Images */

.recent_posts_images li {
	float: left;
	width: 31.33%;
	line-height: 1 !important;
	margin: 0 3% 2% 0;
	position: relative;
}

.recent_posts_images li.no-margin { margin-right: 0; }

.recent_posts_images a:hover img { opacity: 0.8; }

.recent_posts_images li a[title]:hover:before {
	content: attr(title);
	padding: 8px;
	color: #fff;
	position: absolute;
	left: 0;
	top: -35px;
	white-space: nowrap;
	z-index: 999;
	background: rgba( 12, 12, 12, 0.8 );
	line-height: 1;
}

.recent_posts_images li a[title]:hover:after {
	top: -4px;
	left: 30%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(12, 12, 12, 0);
	border-top-color: rgba(12, 12, 12, 0.8);
	border-width: 5px;
	margin-left: -5px;
}

#sidebar-subsidiary .recent_posts_images li a[title]:hover:before { background: rgba( 251, 189, 44, 0.9 );  }
#sidebar-subsidiary .recent_posts_images li a[title]:hover:after {
	border-color: rgba( 251, 189, 44, 0 );
	border-top-color: rgba( 251, 189, 44, 0.9 );
}

#sidebar-subsidiary .widget {
	float: left;
	margin-bottom: 50px;
	font-size: 15px;
	font-weight: 300;
	color: #fff;
}
#sidebar-subsidiary .widget-last,
#sidebar-subsidiary .widget-4,
#sidebar-subsidiary .widget-8 {
	margin-right: 0 !important;
}
#sidebar-subsidiary .widget-title {
    color: #fff;
	font-size: 20px;
	margin-bottom: 50px;
}
#sidebar-subsidiary .widget ul {
	list-style: none;
    margin: 0;
	padding: 0;
}
#sidebar-subsidiary .widget li {
	line-height: 1.8;
}
#sidebar-subsidiary .widget li ul {
	margin-left: 0px;
	padding-left: 15px;
}
#sidebar-subsidiary .widget a {
	color: #fbbd2c;
}
#sidebar-subsidiary .widget a:hover {

}
#sidebar-subsidiary .widget li a:hover {

}
#sidebar-subsidiary .widget .post_tag-cloud a {
	color: #000;
}
#sidebar-subsidiary .widget .post_tag-cloud a:hover {
	color: #fff;
}

/* Flexible Widgets */

.sidebar-col-1 .widget {
	width: 100%;
	margin: 0;
}
.sidebar-col-2 .widget {
	width: 47%;
	margin-right: 6%;
}
.sidebar-col-3 .widget {
	width: 30%;
	margin-right: 5%;
}
.sidebar-col-4 .widget {
	width: 22%;
	margin-right: 4%;
}

#sidebar-subsidiary .widget-5,
#sidebar-subsidiary .widget-9 {
	clear: both;
}


/* Banners Widget */

.banner-list li { margin-bottom: 15px; }
.banner-list &gt; li:nth-last-of-type(-n+2) {
    margin-bottom: 0px;
}

/* Recent Comments With Avatars Widget*/

li.recentcomments {
	clear: both;
	margin-bottom: 28px;
	overflow: hidden;
	font-size: 15px;
	font-weight: 300;
}

.recent-image {
 	float: left;
	margin-right: 14px;
}

.recent-comment {
 	overflow: hidden;
	line-height: 1.45;
}

.recent-comment-author {
	display: block;
	font-weight: 700;
	line-height: 1;
	margin: -2px 0 5px;
}

/* Call To Action Widget */

.widget_call_to_action {
	background: #252424;
	padding: 48px 38px 23px;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: visible !important;
}

.swt-call-top {
	width: 131px;
	height: 40px;
	background: url(images/call-top.png) no-repeat;
	position: absolute;
	top: -17px;
	left: 16.6%;
}

.call-title {
	font-size: 26px;
}

.call-text {
	font-weight: 700;
	margin-bottom: 20px;
}

.call-button {
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	line-height: 35px;
	padding: 0 20px;
	background: #fb2c2c;
	color: #fff;
}

.call-button:hover { color: #fff; text-decoration: none; }

/*--------------------------------------------------------------
9.0 Content
--------------------------------------------------------------*/

.entry {
	margin-bottom: 9%;
}

.entry-title {
	font-size: 30px;
	margin-bottom: 13px;
	clear: none; /* Removing default clear for vertical image post look. */
	color: #000;
}

.entry-byline {
	font-size: 13px;
	font-weight: 500;
	color: #737373;
	margin-bottom: 23px;
}

.entry-byline a,
.entry-byline a:visited { color: #737373; }

.entry-published:before {
	content: "\f133";
	padding-right: 2px;
}
.entry-author:before {
	content: "\f007";
	padding-right: 5px;
}
.entry-terms.category:before {
	content: "\f114";
	padding-right: 5px;
}
.entry-terms.post_tag:before {
	content: "\f02c";
	padding-right: 5px;
}
.comments-link:before {
	content: "\f086";
	padding-right: 6px;
}

.entry-published,
.entry-author,
.entry-terms.category {
	margin-right: 20px;
	display: inline-block;
}

.entry-summary,
.entry-content {
	font-weight: 300;
}

.entry-content *:last-child { margin-bottom: 0; }

.more-link {
	font-size: 14px;
	font-weight: 300;
	line-height: 1;
	padding: 7px 17px;
	border: 1px solid #000;
}

/*--------------------------------------------------------------
9.1 Posts and pages
--------------------------------------------------------------*/

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

.page-links a {
	display:   inline-block;
	margin:    0 5px;
}

/* === 10.3 Loop meta === */

.loop-meta {
	margin-bottom: 1.5em;
	text-align: center;
}

.loop-title {
	margin: 0;
	font-size: 30px;
	color: #000;
	text-transform: uppercase;
}

.loop-description {
	font-style: italic;
	margin-top: 1em;
}

/*--------------------------------------------------------------
9.2. Comments
--------------------------------------------------------------*/

#comments-number {
	margin: 0 0 30px;
	padding-bottom: 9%;
	border-bottom: 1px solid #e9e9e9;
}

.comment-list { margin-left: 0; }

.comment-list,
.comment-list .children {
	list-style: none;
}

.comment-meta .avatar {
	float: left;
	margin-right: 35px;
}

.comment-author {
	display: block;
	font-size: 17px;
	line-height: 1;
	margin-bottom: 8px;
}

.comment-meta { font-size: 13px; font-weight: 500; }

.comment-published,
.comment-reply-link {
	display: inline-block;
	color: #737373;
}

.comment-content,
.pingback {
	margin: 13px 0 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e9e9e9;
	font-size: 17px;
	font-weight: 300;
}

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

.comment-content *:last-child { margin-bottom: 0; }

/*=== Commentform ===*/

#commentform p {
	margin-bottom: 17px;
}

#commentform label {
	font-weight: 300;
	font-size: 15px;
	display: inline-block;
	margin-bottom: 11px;
}

#commentform input { width: 42%; }
#commentform input[type="submit"] { width: auto; }
#commentform textarea#comment { margin-bottom: 32px; }

/*--------------------------------------------------------------
10.0 Infinite scroll
--------------------------------------------------------------*/

/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-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;
}

#infscr-loading {
	position: absolute;
	margin: -45px 0 0;
	left: 40%;
}

#ajax_load_posts a {
	width: 100%;
	display: block;
	padding: 14px 0;
	font-size: 17px;
	text-align: center;
	background: #000;
	color: #fff;
}

/*--------------------------------------------------------------
11.0 Media
--------------------------------------------------------------*/

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.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%;
}

/*--------------------------------------------------------------
11.1 Captions
--------------------------------------------------------------*/

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
	position: relative;
}

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

.wp-caption .wp-caption-text {
	position:   absolute;
	bottom:     1.5em;
	padding:    0.5em 0.75em;
	font-size:  1em;
	background: rgba( 0, 0, 0, 0.8 );
	color: #fff;
}

.wp-caption .wp-caption-text a { color: #fb2c2c; }

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

/*--------------------------------------------------------------
12. Layout
--------------------------------------------------------------*/

.wrap,
#main {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

#header {
	padding: 44px 0 46px;
 	background: #000;
}

#site-title {
	font-size: 35px;
	line-height: 1;
	margin: 0;
}

#site-title i {
	font-size: 45px;
	margin-right: 15px;
	color: #fff;
}

#site-title a {
	color: #fff;
}

#site-title i { font-style: italic; }

#site-title a span { color: #fbbd2c; }
#site-title a:hover {
	text-decoration: underline;
}

#site-description {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	margin: 5px 0 0px 45px;
	position: absolute;
}

.has-icon #site-description { margin-left: 1px; }

/*=== Social Profiles ===*/

#social-profiles {
	position: absolute;
	right: 0;
	top: 6px;
	list-style: none;
	margin: 0;
	width: 112px;
}


#social-profiles a {
	float: left;
	display: inline-block;
	font-size: 18px;
	color: #797979;
	margin-right: 8px;
}

#social-profiles a:hover { text-decoration: none; color: #fff; }

#social-profiles li:last-child a { margin-right: 0; }

/*=== Main ===*/

#main {
	padding: 35px 0 5%;
}

.singular #main { padding-bottom: 4.5%; }

#content {
	float: left;
	width: 64%;
}

.post-wrapper { position: relative; }

#sidebar-primary {
	float: right;
	width: 30%;
	padding-top: 10px;
}

.layout-1c #content { width: 100%; }
.layout-2c-r #content { float: right; }
.layout-2c-r #sidebar-primary { float: left; }

/*=== Sidebar Subsidiary ===*/

#sidebar-subsidiary {
	max-width: 100%;
	margin: 0 auto;
	padding: 55px 0 25px;
	overflow: hidden;
	background: #252424;
}


/*=== Footer ===*/

#footer {
	background: #000;
	color: #535353;
	font-size: 14px;
	font-weight: 500;
	padding-top: 22px;
}

#footer a { color: #fff; }

.scroll-to-top {
	font-size: 22px;
	width: 48px;
	height: 48px;
	float: right;
	margin: -45px 0 12px;
	padding-top: 13px;
	overflow: hidden;
	display: block;
	text-align: center;
	background: #2c6bfb;
}

.scroll-to-top:hover { text-decoration: none; }

/*--------------------------------------------------------------
13. - Slider
--------------------------------------------------------------*/

/*=== BX Reset ===*/

#slider { margin-bottom: 40px; }

.bx-wrapper {
	position: relative;
	margin: 0 auto 50px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

.bxslider { margin: 0; }

/*=== BX Viewport ===*/

.bx-wrapper .bx-viewport {
	/*fix other elements on the page moving (on Chrome)*/
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
	-ms-transform: translatez(0);
	-o-transform: translatez(0);
	transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/*=== BX Loader ===*/

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/bx_loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/*=== BX Pagination ===*/

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/*=== BX Controls Direction ===*/

.bx-wrapper .bx-controls {
	position: relative;
	top: -44px;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 44px;
	outline: 0;
	width: 44px;
	height: 44px;
 	z-index: 9999;
	background: #fb2c2c;
	text-align: center;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

.bx-wrapper .bx-controls-direction .bx-prev {
	right: 45px;
}

.bx-wrapper .bx-controls-direction a i {
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	margin: 5px 0 0;
}

.bx-wrapper .bx-controls-direction a:hover i { color: #000; }

/*=== BX Caption ===*/

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 14%;
	left: 0;
	width: 100%;
}

.slider-title {
	font-size: 26px;
	line-height: 1.2;
	padding: 14px 28px 14px;
	display: inline-block;
	float: left;
	margin: 0;
	background: rgba(0, 0, 0, 0.85);
}

.slider-title a { color: #fff; }

.slider-cat {
	clear: both;
	float: left;
	padding: 9px 28px;
	background: #eeb52d;
	font-size: 17px;
	font-weight: 700;
}

/*--------------------------------------------------------------
14. - Ticker
--------------------------------------------------------------*/

#ticker {
	width: 100%;
	background: #000;
}

#ticker .wrap { min-height: 40px; }

.breaking-title {
	background: #fb2c2c;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	padding: 11px 12px;
	position: absolute;
	left: 0;
	z-index: 99999;
}

#ticker .bx-wrapper { margin: 0; float: left; }
#ticker .bx-wrapper .bx-viewport { height: 40px !important; }

#ticker ul { margin: 7px 0 0; }

#ticker ul li {
	list-style: disc outside !important;
	color: #fff;
}
#ticker li a {
	color: #747474;
	font-size: 14px;
}

@media only screen and ( max-width: 860px ) {
	#ticker .bx-wrapper {
		width: 70%;
	}
}

@media only screen and ( max-width: 500px ) {
	.breaking-title,
	#ticker .bx-wrapper {
		display: none;
	}
	#ticker .search { width: 100%; text-align: right; }
	#ticker .search-text {
		width: 100% !important;
		left: 0;
	}

}

/*=== Search Form ===*/

#ticker .search {
	position: absolute;
	right: 0;
}

#ticker .search-text {
	display: none;
	position: absolute;
	right: 48px;
	width: 175px;
	height: 40px;
	border: 0;
	padding: 0 15px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	background: #2c6bfb;
}

.fa-search { display: none; }

#ticker .fa-search {
	font-size: 22px;
	color: #fff;
	background: #2c6bfb;
	text-align: center;
	width: 48px;
	height: 48px;
	padding: 0;
	display: inline-block;
	cursor: pointer;
	position: relative;
	z-index: 999999;
}

#ticker .fa-search.expand {
	color: #000;
	background: #fbbd2c;
	outline-color: #fbbd2c;
	border: 0;
}

.search,
#ticker .fa-search {
	-webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
        -ms-transition: all 0.25s ease-out;
         -o-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
}

#ticker .search-text::-webkit-input-placeholder {
   color: #9ebbfd;
}

#ticker .search-text:-moz-placeholder { /* Firefox 18- */
   color: #9ebbfd;
}

#ticker .search-text::-moz-placeholder {  /* Firefox 19+ */
   color: #9ebbfd;
}

#ticker .search-text:-ms-input-placeholder {
   color: #9ebbfd;
}


/*--------------------------------------------------------------
15. - Media Queries
--------------------------------------------------------------*/

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

	.wrap,
	#main {
		width: 910px;
	}

}

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

	.wrap,
	#main {
		width: 682px;
	}

	#header .wrap { width: 100% !important; text-align: center; }

	.sidebar-col-4 .widget {
		width: 47%;
		margin-right: 6%;
	}

	.sidebar-col-4 .widget-2,
	.sidebar-col-4 .widget-4,
	.sidebar-col-4 .widget-6,
	.sidebar-col-4 .widget-8 {
		margin-right: 0;
	}

	.sidebar-col-4 .widget-3,
	.sidebar-col-4 .widget-6,
	.sidebar-col-4 .widget-9 {
		clear: both;
	}

	.banner-list li {
		max-width: 45%;
	}

}

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

	.wrap,
	#main,
	#sidebar-primary {
		width: 428px;
	}

	#content {
		width: 100%;
		margin-bottom: 20px;
	}

	#sidebar-primary { clear: both; }

	#sidebar-subsidiary .widget {
		width: 100%;
		margin-right: 0;
		clear: both;
	}

	.banner-list li {
		max-width: 25%;
	}

	.slider-title {
		padding: 8px 14px;
		font-size: 20px;
	}

	.slider-cat {
		padding: 5px 14px;
		font-size: 13px;
	}

	.scroll-to-top {
		float: none;
		margin: -70px auto 17px;
	}

}

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

	.wrap,
	#main,
	#sidebar-primary {
		width: 268px;
	}

	#social-profiles { right: -15px; }

	.banner-list li {
		max-width: 49%;
	}

	.slider-title,
	.slider-cat { display: none; }

	#commentform input { width: 100%; }
	.comment-meta .avatar { max-width: 40px; margin-right: 15px; }

	.comment-author,
	.comment-published,
	.comment-reply-link { display: inline; }

}

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

	.wrap,
	#main {
		width: 80%;
	}
	#sidebar-primary { width: 100%; }

	#social-profiles { display: none; }

}</pre></body></html>