/*
Theme Name: CreditSpot
Theme URI: http://creditspot.org/
Author: CreditSpot
Author URI: http://creditspot.org/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: CreditSpot
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

CreditSpot is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

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

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: 'Open Sans', sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: #f5f5f5;
	text-shadow: 1px 1px 1px rgba(0,0,0,.004)!important;
    -webkit-font-smoothing: antialiased!important;
    -moz-osx-font-smoothing: grayscale!important;
    text-rendering: optimizelegibility!important;
}

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

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

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

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

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

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

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

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

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

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

figure {
	margin: 1em 40px;
}

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

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
}

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

.button,
button {
	overflow: visible;
	outline: 0;
}

.button,
button,
select {
	text-transform: none;
}

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

.button,
button[disabled],
html input[disabled] {
	cursor: default;
}
.button::-moz-focus-inner,
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.button {
	text-decoration: none;
	cursor: pointer;
	margin: .625rem 1.25rem .625rem 1.25rem;
	display: inline-block;
}

input {
	line-height: normal;
	max-width: 100%;
	width: 150px;
}

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

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

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

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

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

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

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
.button
button,
input,
select,
textarea {
	color: #404040;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

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

p {
	margin: 0 0 20px;
	line-height: 1.5;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: 'Open Sans', sans-serif;
	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: 'Open Sans', sans-serif;
	font-size: 15px;
	font-size: 0.9375rem;
}

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

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

*:focus {outline: 0;}

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 10px 30px;
	padding: 0;
}

ul > li, ol > li {
	margin-bottom: 5px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

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

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


/*--------------------------------------------------------------
# Grid System
--------------------------------------------------------------*/


.row { margin: 0 -15px; clear: both; }
.row:after { content: ""; display: block; height: 0; clear: both; overflow: hidden; visibility: hidden; }
.col-0, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { float: left; position: relative; min-height: 1px; padding: 0 15px; }
.smart-col-0, .smart-col-1, .smart-col-2, .smart-col-3, .smart-col-4, .smart-col-5, .smart-col-6 { float: left; position: relative; min-height: 1px; padding: 0 15px; }
.col-12 { width: 100%; } .col-11 { width: 91.66666667%; } .col-10 { width: 83.33333333%; } .col-9 { width: 75%; } .col-8 { width: 66.66666667%; } .col-7 { width: 58.33333333%; }
.col-6 { width: 50%; } .col-5 { width: 41.66666667%; } .col-4 { width: 33.33333333%; } .col-3 { width: 25%; } .col-2 { width: 16.66666667%; } .col-1 { width: 8.33333333%; }
.smart-col-1 { width: 100%; } .smart-col-2 { width: 50%; } .smart-col-3 { width: 33.33333333%; } .smart-col-4 { width: 25%; } .smart-col-5 { width: 20%; } .smart-col-6 { width: 16.66666667%; }

.col-0:after, .col-1:after, .col-2:after, .col-3:after, .col-4:after, .col-5:after, .col-6:after, .col-7:after, .col-8:after, .col-9:after, .col-10:after, .col-11:after, .col-12:after { content: ""; display: block; height: 0; clear: both; overflow: hidden; visibility: hidden; }
.smart-col-0:after, .smart-col-1:after, .smart-col-2:after, .smart-col-3:after, .smart-col-4:after, .smart-col-5:after, .smart-col-6 :after { content: ""; display: block; height: 0; clear: both; overflow: hidden; visibility: hidden; }

@media screen and (max-width: 991px) {
	.col-0, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-9, .col-8, .col-10, .col-11, .col-12 { width: 100%; }
	.smart-col-0, .smart-col-1, .smart-col-2, .smart-col-3, .smart-col-4, .smart-col-5, .smart-col-6  { width: 100%; }
}

@media screen and (min-width: 992px) {
  .col-pull-12 { left: 100%; left: auto; } .col-pull-11 { left: 91.66666667%; left: auto; } .col-pull-10 { left: 83.33333333%; left: auto; } .col-pull-9 { left: 75%; left: auto; }
  .col-pull-8 { left: 66.66666667%; left: auto; } .col-pull-7 { left: 58.33333333%; left: auto; } .col-pull-6 { left: 50%; left: auto; } .col-pull-5 { left: 41.66666667%; left: auto; }
  .col-pull-4 { left: 33.33333333%; left: auto; } .col-pull-3 { left: 25%; left: auto; } .col-pull-2 { left: 16.66666667%; left: auto; } .col-pull-1 { left: 8.33333333%; left: auto; }
  .col-pull-0 { left: auto; left: auto; }
  
  .col-push-12 { left: 100%; right: 0; } .col-push-11 { left: 91.66666667%; right: 0; } .col-push-10 { left: 83.33333333%; right: 0; } .col-push-9 { left: 75%; right: 0; }
  .col-push-8 { left: 66.66666667%; right: 0; } .col-push-7 { left: 58.33333333%; right: 0; } .col-push-6 { left: 50%; right: 0; } .col-push-5 { left: 41.66666667%; right: 0; }
  .col-push-4 { left: 33.33333333%; right: 0; } .col-push-3 { left: 25%; right: 0; } .col-push-2 { left: 16.66666667%; right: 0; } .col-push-1 { left: 8.33333333%; right: 0; }
  .col-push-0 { left: auto; right: 0; }
  
  .col-offset-12 { margin-left: 100%; margin-left: 0; } .col-offset-11 { margin-left: 91.66666667%; margin-left: 0; } .col-offset-10 { margin-left: 83.33333333%; margin-left: 0; } .col-offset-9 { margin-left: 75%; margin-left: 0; }
  .col-offset-8 { margin-left: 66.66666667%; margin-left: 0; } .col-offset-7 { margin-left: 58.33333333%; margin-left: 0; } .col-offset-6 { margin-left: 50%; margin-left: 0; } .col-offset-5 { margin-left: 41.66666667%; margin-left: 0; }
  .col-offset-4 { margin-left: 33.33333333%; margin-left: 0; } .col-offset-3 { margin-left: 25%; margin-left: 0; } .col-offset-2 { margin-left: 16.66666667%; margin-left: 0; } .col-offset-1 { margin-left: 8.33333333%; margin-left: 0; }
  .col-offset-0 { margin-left: 0%; margin-left: 0; }
}

.header-footer-cont{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}
@media (min-width:992px){.header-footer-cont{width:800px}}

.site-content{margin-right:auto;margin-left:auto;}
@media (min-width:768px){.site-content{width:750px}}
@media (min-width:992px){.site-content{width:850px}}

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

.required {
	color: #e12222;
	margin-right: 2px;
}

.link-to-us-code {
	width: 100% !important;
	border: 3px double #ccc !important;
    padding: 3px !important;
    margin: 3px 0px !important;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

input[type=text], input[type=email], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #DDDDDD;
}
 
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  box-shadow: 0 0 5px rgba(200, 200, 200, 1);
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #659cef;
}

/*--------------------------------------------------------------
# Navigation & Header
--------------------------------------------------------------*/



/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:hover,
a:focus,
a:active {
	color: midnightblue;
}

a:focus {
	outline: none;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.site-footer {
	background-color: #fff;
	border-top: 1px solid #dedede;
}

.logo {
	margin: 6px 0;
	display: inline-block;
	min-height: 1px;
	position: relative;
}

@media screen and (max-width: 991px) {
	.logo {margin: 6px 15px;}
}

.menu-title-not-active > a {
	pointer-events: none;
	cursor: default;
	color: #659cef !important;
}

/* Small menu. */

.site-header {background-color: #ffffff; border-bottom: 1px solid #dedede;}

.site-logo-nav {height: 50px; margin: 0 auto; padding: 6px 0;}

#mobile-menu
{
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #727272;
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	position: relative;
	float: right;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#menu-button {
	position: absolute;
	top: 2px;
	right: 15px;
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;	
}

.show-header-menu {display: block !important;}

#header-menu-wrapper {
	display:none;
	background-color: #f7f7f7;
	width: 120px;
	height: auto;
	padding: 10px 0;
	position: absolute;
	margin: 20px 10px;
	border: 1px solid #737373;
	z-index: 999;
	box-shadow: 0 0 2px rgba(0,0,0,0.4);
	float: none;
	line-height: 15px;
	right: -2px;
	top: 30px;
}

#header-menu-wrapper:after, #header-menu-wrapper:before {
	bottom: 100%;
	right: 20%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

#header-menu-wrapper:after {
	border-color: rgba(247, 247, 247, 0);
	border-bottom-color: #f7f7f7;
	border-width: 12px;
	margin-right: -12px;
}
#header-menu-wrapper:before {
	border-color: rgba(115, 115, 115, 0);
	border-bottom-color: #737373;
	border-width: 14px;
	margin-right: -14px;
}

#header-menu-wrapper a {
	display: block;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 15px;
	text-decoration: none;
	color: #444444;
	z-index: 3;
}

#header-menu-wrapper a:hover {
	background: #e2e2e2;
	color: #000000;
	z-index: 3;
}

#header-menu-wrapper span {
	font-size: 14px;
	font-weight: normal;
	margin: 10px 0;
	display: block;
}

#another-mobile-menu
{
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #727272;
	font-size: 25px;
	text-align: left;
	position: relative;
	float: right;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#another-menu-button {
	position: absolute;
	top: 2px;
	right: 15px;
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;	
}

.another-show-header-menu {display: block !important;}

#another-header-menu-wrapper {
	display:none;
	background-color: #f7f7f7;
	width: 160px;
	height: auto;
	padding: 10px 0;
	position: absolute;
	margin: 20px -2px;
	border: 1px solid #737373;
	z-index: 999;
	box-shadow: 0 0 2px rgba(0,0,0,0.4);
	float: none;
	line-height: 15px;
	right: -2px;
	top: 30px;
}

#another-header-menu-wrapper:after, #another-header-menu-wrapper:before {
	bottom: 100%;
	right: 20%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

#another-header-menu-wrapper:after {
	border-color: rgba(247, 247, 247, 0);
	border-bottom-color: #f7f7f7;
	border-width: 12px;
	margin-right: -12px;
}
#another-header-menu-wrapper:before {
	border-color: rgba(115, 115, 115, 0);
	border-bottom-color: #737373;
	border-width: 14px;
	margin-right: -14px;
}

#another-header-menu-wrapper a {
	display: block;
	padding: 6px 20px;
	cursor: pointer;
	font-size: 13px;
	text-decoration: none;
	color: #444444;
	z-index: 3;
	font-weight: bold;
}

#another-header-menu-wrapper a:hover {
	background: #e2e2e2;
	color: #000000;
	z-index: 3;
}

#another-header-menu-wrapper span {
	font-size: 14px;
	font-weight: normal;
	margin: 10px 0;
	display: block;
}

#another-header-menu-wrapper ul {
	display: block;
	margin: 0;
}

#another-header-menu-wrapper li {
	display: block;
}

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

.menu-toggle {
	background: #efefef url(img/menu.png) no-repeat center center;
	width: 30px;
	height: 30px;
	border: 0;
	box-shadow: 0 0 0 rgba(0,0,0,0);
	position: absolute;
	top: 10px;
	right: 20px;
}

.menu-toggle:hover, .menu-toggle:focus {
	border: 0;
	box-shadow: 0 0 0 rgba(0,0,0,0);
}

.main-navigation {
	margin-top: 8px;
	float: right;
}

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

.main-navigation li {
	float: left;
	position: relative;
	margin: 0 15px;
}

.main-navigation a {
	display: inline;
	text-decoration: none;
	color: #666666;
	padding-bottom: 10px;
	white-space: nowrap;
}

.main-navigation ul ul {
	width: 150px;
	min-width: 150px;
    padding: 6px 0;
    background: #fff;
    border: 1px solid #c1c1c1;
	border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: absolute;
    visibility: hidden;
    opacity: 0;
	z-index: 999999;
    transform: translateZ(0);
    transform: translateY(10%);
    transition: all .2s linear;
	right: -40px;
	top: 40px;
}

.main-navigation ul li:hover > ul {
	visibility: visible;
	opacity: 1;
	transform: translateX(0%);
}

.dropdown > a {
	cursor: default;
	
}

/*.dropdown > a:after {
    color: #000;
    content: ' ▾';
}*/

.main-navigation ul ul:after {
	width: 0;
	height: 0;
	content: '';
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
	position: absolute;
	top: -10px;
	right: 40px;
	z-index: 999999;
}

.main-navigation ul ul:before {
	width: 0;
	height: 0;
	content: '';
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #c1c1c1;
	position: absolute;
	top: -11px;
	right: 40px;
	z-index: 999999;
}

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

.main-navigation ul ul a {
	color: #444;
	padding: 5px 10px;
	font-size: 13px;
	width: 100%;
	display: block;
}

.main-navigation ul ul li {
	margin: 0;
	float: none;
}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
	color: #000;
}

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

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
	background-color: #eee;
	color: #444;
}

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

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

	.main-navigation ul li {
		float: none;
		display: inline;
	}
	
	.main-navigation ul ul {
		width: 150px;
		min-width: 150px;
	}
	
	.main-navigation ul ul li {
		display: block;
	}

	.main-navigation li:hover > a, .main-navigation li.focus > a {
		color: #666666;
	}
	
	.main-navigation ul li:hover > ul, .main-navigation:after:hover .sub-menu
	{
		    visibility: visible;
			opacity: 1;
	}
	
	.main-navigation ul li.focus > ul
	{
		    visibility: visible;
			opacity: 1;
			display: block;
			margin-bottom: 10px;
	}	
	
	.main-navigation ul ul:after, .main-navigation ul ul:before {
		border: 0;
	}
	
	.main-navigation.toggled ul ul a {
		color: #666666;
	}
	
	.main-navigation ul ul a:hover, .main-navigation ul ul a.focus {
		color: #000;
		background: #efefef;
	}
	
	.site-logo-nav {padding: 5px 0;}

}

.menu-open {
	display: block !important;
}



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

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

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

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

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

.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,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

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

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

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

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

.hentry {
	margin: 0 0 1.5em;
}

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

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

.page-content,
.entry-summary {
    margin: 0;
    padding: 0;
	line-height: 1.5;
}

@media screen and (max-width: 991px) {
	.entry-content {
		float: none;
		width: 100%;
		margin: 0;
	}
	
}

.left-content {
    width: 55%;
    margin: 0;
    padding: 0;
	line-height: 1.5;
	float: left;
}

.left-content p {
	margin-top: 10px;
}

@media screen and (max-width: 991px) {
	.left-content {
		float: none;
		width: 100%;
		margin: 0;
	}
	
}

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

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

#comments {margin-top: 20px;}
#comment{background:#fff !important;width:100%;height:150px;color:#464646;font-size:12px;padding:8px 10px;margin:5px 0 5px 0;border:1px solid 1px solid #659cef}
.comment-list,.children{margin:0;padding:0}
.ping-list{margin:0 0 40px 0;padding:0}
.comment-list ol, .ping-list ol{margin:0;padding:10px;max-width:550px}
.comment-list li, .ping-list li{font-weight:bold;margin:15px 0 5px 0;padding:10px 0px;list-style:none;border-bottom:0px solid #d2d2d2;position:relative}
.comment-list li ul li{margin-left:40px;margin-top:20px}
.comment-list li ul li #respond{margin-left:-40px !important;margin-top:20px}
.comment-list li ul li li #respond{margin-left:-80px !important}
.comment-list p, .ping-list p{font-weight:normal;text-transform:none;margin:10px 5px 10px 0;padding:0}
.comment-list li .avatar{background:#FFF;float:left;margin:0 10px 0 0px;border-radius:50%;-moz-border-radius:50%}
.comment-list cite, .comment-list cite a, .ping-list cite, .ping-list cite a{font-weight:normal;font-style:normal}
#respond:after{content:".";display:block;height:0;clear:both;visibility:hidden}
#email:focus {border: 1px solid #659cef;}
.nocomments{text-align:center}
#comments .navigation{display:block;margin:10px 0 0 0}
#comments h3{font-size:24px;padding:0 0 10px !important}
.comment-list li .fn,.comment-list li .cfn{font-size:18px}
.comment-list li .says{display:none}
.comment-list li .commentmetadata{font-weight:normal;font-size:13px;font-style:italic;padding:5px 0 0 !important}
.comment-list li .commentmetadata a{color:#999}
.comment-list li .reply{right:1px;position:absolute;bottom:31px;background:#eee;padding:5px 10px}
.depth-4 .reply{display:none !important}
.commentfields-left{float:left;width:290px;margin:-10px 0 0 !important}
.commentpolicy{margin:30px 0 !important}
.reply a, .reply a:visited{text-decoration:none;color:#999;font-size:13px;font-weight:normal}
.reply a:hover, #cancel-comment-reply-link a:hover{color:#464646;font-weight:bold}
h3#reply-title{font-size:24px;line-height:26px;padding:0px !important;margin:10px 0px !important}
#cancel-comment-reply-link{font-size:11px}
.form-submit{text-align:left}
.comment-form-author, .comment-form-email {width: 49.5%; display: inline-block;}
.comment-form-author input, .comment-form-email input {width: 98%;}
.comment-form-author label, .comment-form-email label, .comment-form-url label{font-size:18px; display: block;}
.comment-content{border:1px solid #d2d2d2;padding:10px 20px 25px;margin:20px 0;background:#fff;position:relative;font-size:16px;}
.comment-number {color:#659cef;font-weight:bold;}
.comments-title {font-size: 20px; font-weight: normal;}
.comment-content:after, .comment-content:before {
	bottom: 100%;
	left: 15px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.comment-content:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #ffffff;
	border-width: 6px;
	margin-left: -6px;
}
.comment-content:before {
	border-color: rgba(210, 210, 210, 0);
	border-bottom-color: #d2d2d2;
	border-width: 7px;
	margin-left: -7px;
}

@media screen and (max-width: 600px) {
	.comment-form-author, .comment-form-email {width: 100%;}
}

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

.scroller {
	background: rgba(75,75,75,0.9);
	padding: 20px;
	display: table;
	margin: 0 auto;
	position: absolute;
	width: 90px;
	left: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
}

.scroller span
{
  display: block;
  width: 15px;
  height: 15px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  margin: 0 auto 4px;
}

.unu
{
  margin-top: 6px;
}

.unu, .doi, .trei
{
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
}

.unu
{
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
}

.doi
{
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
}

.trei
{
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
}


@-webkit-keyframes mouse-scroll {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}


.typed-cursor {
  font-weight: 100;
  color: #444;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
  text-shadow: none;
}

@keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #444;
  }
}

@-moz-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: #444;
  }
}

@-webkit-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #444;
  }
}

@-ms-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-o-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

.home-header
{
	color: #fff;
    line-height: 1.7;
    position: relative;
    width: 100%;
	min-height: 100vh;
}

.cat-header
{
	color: #fff;
    line-height: 1.7;
    position: relative;
    width: 100%;
	min-height: 210px;
}

.cat-cont
{
	max-width: 850px;
    margin: 0 auto;
    padding: 5% 25px;
	position: relative;
}

.home-cont
{
	max-width: 850px;
    margin: 0 auto;
    padding: 60px 25px 40px;
	position: relative;
}

.cat-cont h1
{
	color: #fff;
    text-shadow: 1px 1px 2px #888;
    font-size: 65px;
	text-align: center;
	line-height: 1;
	position: relative;
}

.home-cont h1 {
	color: #fff;
	font-family: 'Open Sans', sans-serif;
    text-shadow: 1px 1px 2px #888;
    font-size: 65px;
	text-align: center;
	line-height: 1;
	position: relative;
	display: table;
	margin: 0 auto 25px;
}

.home-cont h1:before {
	position: absolute;
	content: '';
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background-color: #659cef;
	top: 5.5%;
	left: 45.5%;
}

.home-cont h1:after {
	position: absolute;
	content: '';
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background-color: #659cef;
	bottom: 5px;
	left: 101.5%;
}

.home-intro p
{
	text-align: center;
	font-size: 25px;
	text-shadow: 1px 1px 2px #002373;
	color: #fff;
	margin: 0;
	line-height: 1.5;
	height: 80px;
	font-weight: bold;
}

.typed-text {
	color: #65a2ff;
}

@media screen and (max-width: 991px) {
	.home-cont h1, .cat-cont h1 {font-size: 35px;}
	.home-cont h1:before {height: 8px; width: 8px;}
	.home-cont h1:after {height: 8px; width: 8px;}
	.home-intro p {font-size: 20px;}
	.home-header {height: 520px; min-height: 520px; max-height: 520px;}
	.home-cont {padding: 25px;}
}

.home-text
{
	clear: both;
	margin: 0;
	padding: 20px 0;
	color: #000;
	font-size: 18px;
}

.text-center {
	text-align: center;
	padding: 20px 5px;
	margin: 0;
}

.main-post
{
	clear: both;
}

.post-edit-link:visited, .post-edit-link
{
    background-color: #444444;
	text-decoration: none;
    border: 1px solid #222222;
    color: #f1f1f1;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 5px;
    text-align: center;
	position: fixed;
	bottom: 0;
	left: 0;
}

.post-edit-link:hover, .post-edit-link:active, .post-edit-link:focus 
{
	color: #ffffff;
	background-color: #000000;
}

.entry-header img.wp-post-image {
    margin: 0 20px 5px 0;
    vertical-align: top;
    display: block;
	width: 150px;
	height: 100px;
	float: left;
}
.entry-header .entry-title {
	font-size: 32px;
	color: #000;
	line-height: 1.4;
	font-weight: bold;
	margin-top: 10px;
	max-width: 85%;
	display: inline;
}

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

.single-header img {
	border: 0 !important;
}

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

footer {
	min-height: 60px;
	margin-top: 20px;
	clear: both;
}

.footer-blocks {
	max-width: 900px;
	margin: 0 auto;
}

.footer-block {
	float: left;
	width: 30%;
	height: 130px;
	text-align: center;
}

.footer-block-links {
	float: left;
	width: 40%;
	height: 130px;
	text-align: center;
}

.footer-logo {
	display: block;
	margin-top: 25px;
}

.footer-arrow-cont {
	height: 130px;
	line-height: 130px;
	text-align: center;
}

.footer-arrow {
    display: inline-block;
    width: 1.7em;
    height: 1.7em;
    border-right: 0.12em solid black;
    border-top: 0.12em solid black;
    transform: rotate(-45deg);
	vertical-align: middle;
	line-height: normal;
	border-color: #888;
	cursor: pointer;
}

.footer-arrow:hover {
	border-color: #659cef;
}

.footer-title {
    text-align: left;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
}

.site-info p, .footer-line p {
	text-align: left;
	line-height: 1.5;
	font-size: 14px;
	margin: 22px 0;
	color: #444;
	display: inline-block;
}

.footer-links {
	line-height: 1.5;
	font-size: 14px;
	margin: 20px;
	display: inline-block;
}

.footer-links a {
	display: block;
	color: #444;
    text-decoration: none;
	text-align: left;
}

.footer-links a:hover {
	text-decoration: underline;
}

.only-mobile {
	display: none;
}

@media screen and (max-width: 991px) {
	
	.footer-links, .site-info p, .footer-line p {
		float: none;
		text-align: center;
	}
	
	.footer-block-links {
		height: auto;
		float: none;
		width: 100%;
	}
	
	.no-mobile {
		display: none;
	}
	
	.only-mobile {
		display: block;
	}
	
	.footer-links {
		margin: 20px 0 20px 20px;
	}
	
	.site-info p, .footer-line p {
		margin: 0 0 20px 0;
	}
	
	.footer-links a {
		margin-top: 10px;
	}
	
}

.information {width: 40%; float:right; position: relative; padding: 1vh 1vw; color: #000000; margin: 0 0 10px 20px; clear: both;}
	.information > * {margin-bottom: 10px;}
	.information h2 {margin: 0 0 20px;}

	.information a {}
	.information img {display: inline-block; border: inherit;}
	.information ul {margin:0;padding:0;clear:both;text-align:left;}
		.information ul li {list-style-type: circle; list-style-position: outside; margin-bottom: 10px; word-break: break-word;}

@media screen and (max-width: 600px) {
.information p, .information h2 {padding: 0 5px;}
}

@media screen and (max-width: 960px) {
.information {width:100%;margin:20px 0 10px 0;float:none;clear:both;}
}

.error-link {
	text-align: center;
	font-size: 20px;
	line-height: 40px;
	margin: 30px auto;
	display: block;
	width: 50% !important;
}

.error-title {
	font-size: 25px !important;
	text-align: center;
}

.clickable, #submitReview, #submit, .submit {
	background-color: #659cef;
    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5);
    box-shadow: inset 0 1px 0 rgba(120,200,230,0.5);
    color: #fff;
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(0,0,0,0.1);
	padding: 6px 12px;
	border-radius: 3px;
	display: block;
	font-weight: bold;
	text-align: center;
	width: 150px;
	margin-bottom: 20px;
	border-style: hidden;
	font-size: 14px !important;
}

.clickable:visited, .clickable:hover, .clickable:active, .clickable:focus {
	color: #fff !important;
	text-decoration: none !important;
}

.clickable:hover, #submitReview:hover, #submit:hover, .submit:hover {
	background-color: #83b4fd !important;
}

#submit {
	margin-top: 5px;
}

.leave-review-title {margin-top: 10px;}
.leave-review-title img {display: inline-block !important; vertical-align: middle; margin: 0 !important; border: 0 !important;}
.leave-review-title h3 {display: inline; margin-left: 10px;}
.wpcr3_respond_2 {display: block !important;}
.wpcr3_button_1 {visibility:hidden; display: none;}
.wpcr3_submit_btn {visibility:visible; display: block !important;}
.stars, .rr_star {font-size: 22px; display: block !important; margin: 0;}
.form_table .rr_star {float: left;}
.rr_stars_container .stars, .rr_star {font-size: 25px; padding: 0 2px; cursor: pointer;}
.rr_review_form {margin-top: 20px;}
.drop_cap {display: none;}
.rr_title:before {content: '" '; color: #bbb;}
.rr_title:after {content: ' "'; color: #bbb;}
.testimonial_group .full-testimonial .rr_date {font-size: 12px !important;}
.testimonial_group .full-testimonial {width: 99% !important; border-bottom: 1px solid #e1e1e1; margin: 5px 2px; padding: 15px 25px 10px 25px !important; background: #fff !important;}
.rr_review_form .form_table .rr_form_row .rr_form_heading {width: 135px !important; text-align: left !important;}
.rr_review_form .form_table .rr_form_row .rr_required:after {right: auto !important;}
span[itemprop="reviewBody"]:before {content: '"';}

@media only screen and (max-width: 767px) {
	.rr_review_form .form_table .rr_form_row .rr_form_input textarea {
		width: 100% !important;
	}
	.rr_review_form .form_table .rr_form_row .rr_form_input input[type="text"] {
		width: 100% !important;
	}
	.rr_review_form .form_table .rr_form_row .rr_form_heading {
		width: 20% !important;
	}
	
	.entry-header img.wp-post-image {
		float: none;
		margin: 10px auto;
	}
	
}

.clickable img {
	vertical-align: top;
	float: left;
	border: 0 !important;
	margin: 0 !important;
}

.dict-letter {
	font-size: 20px;
	text-align: center;
	padding: 10px 5px !important;
    margin: 30px 0 50px;
	position: relative;
	clear: both;
}

.dict-letter:after, .dict-letter:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.dict-letter:after {
	border-color: rgba(241, 241, 241, 0);
	border-top-color: #eeeeee;
	border-width: 25px;
	margin-left: -25px;	
}

.dict-letter:before {
	border-color: rgba(221, 221, 221, 0);
	border-top-color: #efefef;
	border-width: 26px;
	margin-left: -26px;
}

.dict-term {
	margin: 0 auto;
	max-width: 900px;
	padding: 20px;
	border-bottom: 1px solid #e0e0e0;
	border-radius: 4px;
	width: 100%;
	display: table;
}

.dict-term:last-of-type {
	border-bottom: 0;
}

.dict-term .lazycard {
	border-radius: 5px;
	width: 150px;
	height: 100px;
	vertical-align: top;
	margin: 0 30px 0 0;
	border: 0;
	display: inline-block;
	/*background: #444444 url(img/lazycard.jpg) no-repeat center center;*/
}

.dict-term .card-main-link {
	display: block;
	text-align: left;
	margin: 0;
	position: relative;
	padding: 5px 20px 5px 0px;
	width: 220px;
	vertical-align: middle;
	font-size: 20px;
	text-decoration: none;
	color: #000;
	font-weight: 700;
}

.dict-term .card-main-link:hover {
	text-decoration: underline;
	color: #000;
}

.card-reviews-link {
	font-size: 15px;
	text-decoration: none;
	margin-left: 5px;
	color: royalblue;
}

.card-reviews-link:hover, .card-reviews-link:focus {
	color: royalblue;
}

.card-reviews-link:hover {
	text-decoration: underline;
}

.total-reviews {
	color: #000;
	cursor: help;
	margin-left: 5px;
	vertical-align: middle;
	font-weight: bold;
	font-size: 15px;
}

.table-block {
	display: inline-block;
	vertical-align: top;
}

.post-ribbon {
	width: 100%;
	height: 40vh;
	background-color: #659cef;
	position: absolute;
}

.post-box {
	border-radius: 2px;
	padding-top: 40px;
	padding-bottom: 50px;
	padding-right: 40px;
	padding-left: 40px;
    margin-bottom: 80px;
	margin-top: 40px;
	-webkit-box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);	
	background-color: #fff;
	color: #404040;
	position: relative;
	z-index: 99;
	display: block;
}

.post-box h1 {
	font-size: 32px;
    color: #404040;
    line-height: 1.6;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.post-full-width {
	width: calc(100% + 80px);
    margin-left: -40px;
    margin-right: -40px;
    padding: 0;
}

.post-full-width .full-width-img {
	width: 100%;
	margin: 10px 0;
}

@media screen and (max-width: 991px) {
	.post-box {padding-top: 20px; padding-bottom: 40px; padding-right: 20px; padding-left: 20px; margin: 40px -15px;}
	.post-box h1 {font-size: 24px;}
	.post-full-width {width: calc(100% + 40px); margin-left: -20px; margin-right: -20px;}
}

@media screen and (max-width: 770px) {
	.post-box {margin: 0; border-radius: 0;}
}

.home-box {
	max-width: 900px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0;
	margin-bottom: 40px;
	clear: both;
	padding-top: 0;
	border-top: 1px solid #e1e1e1;	
}

.home-box-button {
	padding: 6px 9px !important;
	text-align: center !important;
	margin: 70px 0 0 !important;
	float: right;
	width: 100px !important;
	display: inline-block !important;
	vertical-align: middle;
}

.home-stars {
	color: #ffb607;
}

.home-review {
	width: 150px;
	text-align: center;
}

.purchases-apr {
    width: 175px;
    padding: 0 30px 0 0;
    text-align: center;
}

.annual-fee {
    width: 250px;
    padding: 0 30px;
    text-align: center;
}

.big-review {
    text-align: center;
    display: block;
    font-weight: bold;
    font-size: 30px;
    text-shadow: 0px 0px 1px #ddd;
}

.small-heading {
	text-align: center;
	font-weight: bold;
    font-size: 13px;
    margin-bottom: 5px;
}

@media screen and (max-width: 850px) {
	.home-box {margin-top: 0;}
	.home-box-button {display: block !important; margin: 10px auto !important; float: none;}
}

@media screen and (max-width: 800px) {
	.dict-term .card-main-link {float: none; width: 100%; text-align: center; padding: 10px 0;}
	.dict-term {display: block;}
	.dict-term .lazycard {margin: 0 auto; display: block;}
	.table-block {display: block;}
	.purchases-apr {display: none;}
	.card-reviews-link {display: none;}
	.annual-fee {width: 100%;}
	.home-review {display: block; width: 100%;}
	.home-stars .stars {display: block;}
	.home-stars {display: table !important; margin: 0 auto 10px;}
}

.credit-card-table {
	margin: 0;
}

.credit-card-table td {
	padding: 10px;
	vertical-align: top;
}

.credit-card-table tr td:first-of-type {

}

.credit-card-table tr {
	background-color: #ffffff;
}

.credit-card-table tr:nth-of-type(odd) {
	font-weight: bold;
}

.default-title {
	display: block !important;
}

.box {
	-webkit-box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
    background-color: #fff;
    margin: 0 auto 10px;
    padding: 20px;
	border-top: 1px solid #e1e1e1;
	position: relative;
	width: 100%;
	max-width: 900px;
}

.box iframe {
    margin: 0 auto;
    display: table;
}

.nav-box {
	-webkit-box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
    background-color: #fff;
    margin: 0 auto 10px;
    padding: 20px 0;
	border-top: 1px solid #e1e1e1;
	position: relative;
	width: 100%;
	max-width: 900px;
}

.box img {
	border: 4px solid #d8d8d8;
    clear: both;
    display: block;
    margin: 30px auto;
}

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

.float-left {
	float: left;
}

.nav-box-header {
	background-color: #fff;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
    margin: 10px auto 0;
    position: relative;
	padding: 10px 20px;
	clear: both;
	width: 100%;
	max-width: 900px;
}

.box-header {
	background-color: #fff;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
    margin: 10px auto 0;
    position: relative;
	padding: 10px 20px;
	clear: both;
	width: 100%;
	max-width: 900px;
	min-width: 100px;
}

.box-footer {
	background-color: #fff;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
    margin: 0 auto 10px;
    position: relative;
	padding: 20px;
	clear: both;
	border-top: 1px solid #e1e1e1;
	width: 100%;
	max-width: 900px;	
}

.cat-big-box {
	max-width: 900px;
	margin-right: auto;
	margin-left: auto;
	margin-top: -60px;
	clear: both;
}

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

.page-table-in {
	display: table-cell;
	padding: 0 10px;
	width: 50%;
}

.page-table-block h3 {
	font-size: 17px;
}

.pros h3, .cons h3 {
	font-size: 17px;
}

.pros h3 {
	color: #008800;
}

.cons h3 {
	color: #ee0000;
}

.cons, .pros {
	width: 49%;
	display: inline-block;
	padding: 0 10px;
	vertical-align: top;
}

.pros span {
	color: green;
	font-weight: bold;
	margin-right: 5px;
}

.cons span {
	color: red;
	font-weight: bold;
	margin-right: 5px;
}

@media screen and (max-width: 700px) {
	
	.page-table-in, .page-table-block {display: block; padding: 0; width: 95%;}
	.page-table-in {margin-bottom: 20px;}
	.cons, .pros {display: block; width: 100%;}
}

.full-content img {border: 1px solid #d8d8d8; clear: both; display: block; margin: 20px auto;}

.full-content h2 {
    padding: 10px 5px;
    background: #e8e8e8;
    position: relative;
	border-bottom: 1px solid #dcdada;
    clear: both;
    margin: 30px 0 45px -50vw;
    left: 50%;
    width: 100vw;
	text-align: center;
}

.full-content h2:after, .full-content h2:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.full-content h2:after {
	border-color: rgba(241, 241, 241, 0);
	border-top-color: #e8e8e8;
	border-width: 25px;
	margin-left: -25px;	
}

.full-content h2:before {
	border-color: rgba(221, 221, 221, 0);
	border-top-color: #dcdada;
	border-width: 26px;
	margin-left: -26px;
}

.filed-under {
	display: table;
	text-align: center;
}

.filed-under a {
	text-decoration: none;
	text-align: center;
	display: table-cell;
	width: 140px;
}

.filed-under a img {
	opacity: 0.8;
	border: 0;
	display: inline;
}

.filed-under a:hover > img {
	opacity: 1;
}

@media screen and (max-width: 991px) {
	.filed-under a {display: inline-block; margin: 20px 0;}
}

.similar-card {
	display: inline-flex;
	width: 24.5%;
	text-decoration: none;
}

.similar-card span {
	overflow: hidden;
	width: 100px;
	text-decoration: none;
	text-align: left;
	float: left;
	margin: 8px 7px 7px;
	height: 50px;
}

.similar-card img {
	width: 75px;
	height: 50px;
	border: 1px solid #d8d8d8;
	vertical-align: middle;
	display: block;
	float: left;
	margin: 5px;
}

@media screen and (max-width: 991px) {
	.similar-card {width: 49.5%;}
}

@media screen and (max-width: 600px) {
	.similar-card {width: 100%;}
}

.category-bg {
	background: linear-gradient(to left, #43bfa7 0%,#43bfa7 50%,#43bfa7 50%,#7545bd 50%,#7545bd 100%);
	min-width: 100vw;
	min-height: 100vh;
	margin: -20px 0;
}

.category-bg h1 {
	font-size: 9vw;
	text-align: center;
	text-shadow: 1px 1px 5px #000000;
	margin: 20px 0;
	color: #fbfbfb;
	clear: both;
}

@media screen and (max-width: 991px) {
	.category-bg h1 {font-size: 13vw;}
}

.category-link > a{position:relative;display:block;margin:10px auto;min-height:92px;padding:20px 10px 10px 140px;background:#FFF;border:0;text-decoration:none;width: 90%; max-width: 600px;}
.category-link > a{box-shadow:0 0 0 2px #ddd;}
.category-link > a:hover{position:relative;text-decoration:none;background:#efefef;}
.category-link > a > h2{font-size:150%;color:#444;line-height:1.1;}
.category-link > a > img{position:absolute;top:0;left:0;z-index:1;width:122px;height:122px}
.category-link > a > p{color:#333}
.category-link > a > span{position:absolute;top:0;left:0;bottom:0;width:100px;padding:10px;color:#FFF;z-index:2}
.category-link > a:nth-child(odd) > span{background:rgba(26,160,219,0.7)}
.category-link > a:nth-child(even) > span{background:rgba(150,187,60,0.7)}

@media screen and (max-width: 500px) {
	.category-link {max-width: 97%;}
	.category-link > a > img{position:relative;top:0;left:0;z-index:1;width:100%;height:60vw;}
	.category-link > a{padding: 0;}
	.category-link > a > h2{padding: 0 20px;}
}

.share-link {
    padding: 2px 8px 4px 8px !important;
    color: white;
    font-size: 12px;
    border-radius: 2px;
    margin-right: 2px;
    cursor: pointer;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,.2);
    -moz-box-shadow: inset 0 -3px 0 rgba(0,0,0,.2);
    -webkit-box-shadow: inset 0 -3px 0 rgba(0,0,0,.2);
    margin-top: 2px;
    display: inline-block;
    text-decoration: none;
}

.share-link:hover,.share-link:active {
    color: white;
}

.share-twitter {
    background: #00aced;
}

.share-twitter:hover,.share-twitter:active {
    background: #0084b4;
}

.share-facebook {
    background: #3B5997;
}

.share-facebook:hover,.share-facebook:active {
    background: #2d4372;
}
 
.share-social {
    margin: 20px 0px 25px 0px;
    -webkit-font-smoothing: antialiased;
    font-size: 12px;
}

.share-span {
	font-size: 14px;
    background: #717171;
    padding: 3px 3px 5px;
    vertical-align: middle;
    margin-right: 4px;
    color: #fff;
}

.post-thumb img {
	float: right;
    width: 220px;
    height: 220px;
    margin-left: 40px;
    margin-bottom: 20px;
    border: 4px solid #cccccc;
}

@media screen and (max-width: 500px) {
	.post-thumb img {float: none; display: block; margin: 10px auto;}
}

.free-content img {
	border: 4px solid #d8d8d8;
    clear: both;
    display: block;
    margin: 20px auto;
}

.free-content ul > li, .free-content ol > li {
	margin-bottom: 14px;
}

.why-box {
	background-color: #f5f5f5;
	padding: 30px;
	margin-bottom: 15px;
	margin-top: 15px;
}

.why-title {
	font-size: 28px;
	text-align: center;
}

.why-item
{
	position: relative;
	padding: 0 15px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	border: #aaa solid 1px;
	margin: 30px auto;
	max-width: 700px;
	background-color: #fff;
	-webkit-box-shadow: -1px -9px 37px -4px rgba(128,128,128,0.5);
	-moz-box-shadow: -1px -9px 37px -4px rgba(128,128,128,0.5);
	box-shadow: -1px -9px 37px -4px rgba(128,128,128,0.5);	
}

.why-item:after, .why-item:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.why-item:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 14px;
	margin-left: -14px;
}
.why-item:before {
	border-color: rgba(170, 170, 170, 0);
	border-bottom-color: #aaa;
	border-width: 15px;
	margin-left: -15px;
}

.why-item span
{
	font-size: 50px;
	line-height: 1.6;
	margin: 0;
	display: table-cell;
}

.why-item p
{
    font-weight: 700;
    margin: 17px 0 0 35px;
	display: table-cell;
	vertical-align: middle;
	padding: 0 15px;
}

@media screen and (max-width: 750px) { .why-item span {margin: 0 auto; display: table;} .why-item p {margin: 0 auto; text-align: center; padding: 0 10px 10px; display: block; word-wrap: break-word;} }

.qa-title {
	background-color: #f5f5f5;
    padding: 1px 20px;
	text-align: center;
    margin-top: 15px;
}

.accordion { margin-bottom: 30px; background-color: #ffffff; overflow: hidden; border-bottom: 1px solid #ddd; }
.accordion h3 { font-size: 18px; font-weight: normal; line-height: 24px; margin: 0; padding: 14px 70px; position: relative; }
.accordion h3:before { position: absolute; left: 20px; font-size: 24px; content: '+'; color: #4285f4; }
.accord-active h3:before { position: absolute; left: 22px; font-size: 24px; content: '-'; color: #4285f4; font-weight: bold;}
.accord-content { display: none; }
.accord-header p, .accord-content p { margin: 0 0 15px !important; padding: 0 70px; }
.accord-content ul li, .accord-content ol li { list-style: disc inside; margin: 10px 0; padding: 0 70px; }
.accord-object { }
.accord-active { color: #659cef !important; }
.accord-header { cursor: pointer; color: #444; background: #fff; border-top: 1px solid #ddd; padding: 0; }
.accord-header p, .accord-content  {  }
.accord-header:hover { background-color: #f5f5f5; }

.ad-margin {clear: both; position: relative; margin: 20px 0 40px; top: 10px;}
.bottom-ad {max-width: 820px; margin: 0 auto 35px;}
.top-ad {max-width: 820px; margin: 0 auto 10px; max-height: 150px;}

.blog-title {text-align: center; margin-top: 0; margin-bottom: 35px;}
.blog-links a { border-bottom: 1px solid #ddd; text-decoration: none; font-size: 18px; font-weight: normal; line-height: 24px; margin: 0; padding: 14px 70px; position: relative; display: block; }
.post-box .blog-links a:first-of-type {border-top: 1px solid #ddd; }
.blog-links a:before { position: absolute; left: 20px; font-size: 24px; content: '◊'; color: #4285f4; }
.blog-links { background-color: #ffffff; overflow: hidden; }
.blog-links a:hover { background-color: #f5f5f5; }
.glossary-box { position: relative; background-color: #dc3f2e; font-weight: 900; color: #fff !important; text-decoration: none; font-size: 30px; text-align: center; }
.glossary-box:hover { background-color: #dc6153; }
.glossary-box:before {content: '★'; position: absolute; left: 10px; top: -60px; font-size: 70px; color: #ffc137; }

.share-bar
{
    background-color: #fff;
    z-index: 1;
    position: fixed;
    min-width: 55px;
    top: 10em;
    margin-left: -60px;
    padding: .3em;
    padding: 9px;
	border: 1px solid #e8e8e8;
}

@media screen and (max-width: 991px) {
	
	.share-bar {display: none;}
	
}

.share-bar-icons {
	
}

.share-bar-icons a {
	display: block;
	cursor: pointer;
	opacity: 0.8;
}

.share-bar-icons a:hover {
	opacity: 1;
}

.share-bar-icons img {
	display: block;
	margin: 0 auto;
}

.bar-twitter {
	margin: 10px 0 20px;
}

.bar-facebook {
	margin: 10px 0 10px;
}

.cat-grid-container {
	display: block;
	margin: 0 auto 40px;
	max-width: 900px;
	position: relative;
	padding-bottom: 110px;
	clear: both;
}

#cat-grid-cont {
	margin: 0 auto 3px;
	display: block;
	z-index: 999;
	position: relative;
	text-align: center;
	padding: 0;
}

.cat-box {
	display: inline-block;
	padding: 20px;
	margin: 0;
	color: #fff;
	text-decoration: none;
	border: 2px solid #444444;
	background: rgba(0,0,0,0.7);
}

.cat-box span {
	display: block;
}

.three-box {
	width: 32.5%;
}

.two-box {
	width: 49%;
}

.four-box {
	width: 24.2%;
}

.cat-box:hover {
	color: #fff;
	text-decoration: none;
	background: rgba(0,0,0,0.9);
}

.cat-box:focus {
	color: #fff;
}

@media screen and (max-width: 991px) {
	.cat-grid-container {box-shadow: none; margin: -20px auto 40px;
	   -ms-transform: scale(0.8); /* IE 9 */
		-webkit-transform: scale(0.8); /* Safari */
		transform: scale(0.8); /* Standard syntax */}

	.scroller {display: none;}
	.cat-box {width: 33.3%; height: 130px; float: left; display: block;}
	.cat-box img {width: 35px; height: 35px;}
}

*[data-title] {position: relative;}

/* Hide the tooltip content by default */
*[data-title]:before,
*[data-title]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
*[data-title]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -60px;
  padding: 7px;
  width: 120px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #444;
  color: #fff;
  content: attr(data-title);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
*[data-title]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #444;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: '';
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
*[data-title]:hover:before,
*[data-title]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.compare-menu {height: 500px; overflow-y: scroll; overflow-x: hidden; border: 1px solid #ccc; padding: 10px 5px 10px 0;}

.vs-title {color: #659cef;}
.compare-cards h1 {text-align: center;}
.compare-cards td {padding: 10px; width: 50%;}
.compare-cards td h2 {text-align: center;}
.compare-cards tr td:first-child {border-right: 1px solid #e1e1e1;}
.compare-cards table {width: auto; margin: 0 -20px;}
.compare-cards td img {border: 0; margin: 10px auto; width: 150px; height: 100px;}

.compare-cards .home-stars {display: table !important; margin: 0 auto;}

.compare-cards td h3 {font-size: 12px !important; font-weight: normal !important; margin: 0 !important;}
.compare-cards .td-header {color: #111; background-color: #eee; padding: 2px; text-align: center;}

.compare-button {margin: 10px auto !important;}

.compare-form {display: table;}
.compare-form select {border: 1px solid #ccc; padding: 8px; margin: 0 1%; width: 48%; text-align: center; display: table-cell;}

.compare-index-links {text-align: center;}
.compare-index-links a.clickable {display: inline-block;}

#sidebar {
    width:300px;
    float:left;
    padding-right:24px;
    clear:both;
}

#side-with-ad {
    width:300px;
    float:left;
    padding-right:24px;
    clear:both;
}

.margin-sidebar {
	/* margin-left: 300px; USED FOR STICKY SIDEBAR WITHOUT AD */
}

.nav-anchor {
	padding-top: 1px;
	margin-top: -1px;
	display: block;
}

.two-sided {max-width: 1100px; margin: 20px auto 0;}

.bigger-side-content {
    max-width:800px;
    float:left;
}

.scroll-top {
	cursor: pointer;
}

/* navigation */
nav {
    width: 300px;
    padding: 0 12px;
}

.stick {
    position: fixed;
    top: 0;
    z-index: 10000;
}

nav b {padding-bottom: 5px; border-bottom: 1px solid #e1e1e1; margin-bottom: 5px;}

nav ul {
    list-style-type: decimal;
    margin: 0 0 0 30px;
    padding: 0;
	
}

nav li {
	margin: 0;
	color: #aaa;
	position: relative;
	cursor: pointer;
}

nav li:hover:before {
    background-color: rgba(0,0,0,0.04);
    border-right: 5px #e1e1e1 solid;
}

nav li:before, nav li:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -30px;
}

nav li a {
    color: #aaa;
	padding: 3px 0;
	display: block;
	text-decoration: none;
	position: relative;
	z-index: 999;
}

nav li a:hover, nav li a:focus {
	color: #aaa;
}

nav li.active:after {
    background-color: rgba(101, 156, 239, 0.12);
	border-right: 5px solid #659cef;
	color: royalblue;
}

@media screen and (max-width: 1150px) {
	.bigger-side-content {float: none; margin: 0 auto;}
	#sidebar {display: none;}
}

@media screen and (min-width: 1150px) {
	.biggerHeader {width: 1100px;}
}

.pt-like-it {clear: both; height: 20px;}

.like-button {
margin-right: 6px;
font-size: 14px;
color: #fff;
position: relative;
float: left;
height: 25px;
padding: 2px 8px;
background-color: #659cef;
border-radius: 3px;
text-decoration: none;
font-style: italic;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

.like-button:hover {
	background-color: #83b4fd !important;
}

.like-button:hover, .like-button:focus {color: #fff;}

.like-text {font-size: 11px; clear: both; line-height: 16px;}

.clicked, .clicked:hover, .clicked:focus {background-color: #888 !important;}

.like-count {
float: left;
font-size: 14px;
color: #555;
position: relative;
height: 25px;
padding: 2px 8px;
background: #FFFFFF;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
border: #CCCCCC solid 1px;
}

.like-count:after {
content: '';
position: absolute;
border-style: solid;
border-width: 4px 4px 4px 0;
border-color: transparent #FFFFFF;
display: block;
width: 0;
z-index: 1;
margin-top: -4px;
left: -4px;
top: 50%;
}

.like-count:before {
content: '';
position: absolute;
border-style: solid;
border-width: 4px 4px 4px 0;
border-color: transparent #CCCCCC;
display: block;
width: 0;
z-index: 0;
margin-top: -4px;
left: -5px;
top: 50%;
}

.ads-strip {
	margin: 10px auto 0;
    padding: 5px 0 0;
    max-width: 770px;
}

#review-cont .full-testimonial {display:none;}
#loadMore {cursor: pointer; display: table; margin: 20px auto;}

.calc-cont {margin: 0 auto; padding: 20px; background-color: #e8e8e8; margin-top: 20px; border: 4px solid #d2d2d2; width: 100%; max-width: 500px;}
.calc-cont input[type=number] {border: 2px solid #659cef; text-align: center;}
.calc-cont input[type=number]:focus {border: 2px solid #ef6592;}
#calc_interest {margin-left: auto; margin-right: auto; margin-top: 16px; margin-bottom: 10px;}

.calc-half {margin: 0 auto; width: 95%; text-align: center; background: #f5f5f5; box-shadow: 0 0 5px rgba(0,0,0,0.3); padding: 10px 0;}

.amount {display: inline-block; color: #fff; background: #659cef; padding: 2px 5px; border-radius: 4px;}

.ad-right {float: left;}
@media screen and (max-width: 1150px) {
	.ad-right {display: none;}
}

.forum-box, #wpforo-wrap {padding-right: 0 !important; padding-left: 0 !important;}
#wpforo-title, .wpf-subscribe-topic, #wpf-reply-form-title {margin-left: 10px !important;}

/** **** BB PRESS **** */
.forum-link {margin-top: 5px; margin-right: 10px; float: right;cursor: pointer; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;}
.subscription-toggle {margin: 0 10px; border: 1px solid #cecece; padding: 1px 5px;}
.ed_button {width: 75px;}
#bbpress-forums div.bbp-search-form {float: none;}
#bbp_search_submit {width: 70px;}
#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {border: 1px solid #cecece;}
#bbp_topic_title {width: 85%;}
fieldset.submit, fieldset.submit:hover {background: rgba(255,255,255,0) !important; box-shadow: 0 0;}
#bbpress-forums .bbp-body div.bbp-reply-author {max-width: 90%;}
#bbp_topic_subscription {width: 20px;}
.bbp-reply-form #bbp_anonymous_website,
.bbp-topic-form #bbp_anonymous_website,
label[for="bbp_anonymous_website"] {
	display: none !important;
}
#bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums .widget_display_replies img.avatar {margin-bottom: -3px;}

.compare-cards {margin: 15px auto 15px !important;}

.cc-faqs h3 {font-style: italic;}
.cc-faqs-qa {border-bottom: 1px dotted #c0c0c0;}
.cc-faqs-qa:last-child {border-bottom: none;}

.cardscore {max-width: 750px; position: relative;}
.cardscore a {float: right;}
.cardscore img {vertical-align: middle; margin: 0 8px 0 0; display: inline-block; border: 0;}
.cardscore .with-copyright {vertical-align: middle; margin-right: 12px;}
.cardscore .with-copyright:after {position: absolute; content: '®'; height: 15px; width: 15px; top: 0; font-size: 14px;}

#progress {
 width: calc(100% - 8px);
 border: 1px solid black;
 position: relative;
 padding: 3px;
 margin-bottom: 20px;
 margin-top: 20px;
}

#percent {
 position: absolute;
 bottom: 0;
 color: white;
 background: black;
 line-height: 26px;
 padding: 0 5px;
}

#bar {
 height: 20px;
}