@charset "UTF-8";
/*!
Theme Name: WP4U
Theme URI: http://underscores.me/
Author: Bogdan Kurbetyev
Author URI: http://underscores.me/
Description: Theme made for 4u website network.
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: wp4u
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.

WP4U 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
# Skeleton
# Custom pages and stuff
	# Homepage
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries


--------------------------------------------------------------*/
.flexcontainer {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  /* You can set flex-wrap and flex-direction individually */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* Or do it all in one line with flex flow */
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  /* tweak the where items line up on the row */
  /* valid values are: flex-start, flex-end, space-between, space-around, stretch */
  -webkit-align-content: flex-end;
  align-content: flex-end; }

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

body {
  margin: 0; }

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

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

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

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

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

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

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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: monospace, monospace;
  font-size: 1em; }

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

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

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

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

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

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

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

/*--------------------------------------------------------------
# Skeleton
--------------------------------------------------------------*/
/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 1285px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box; }

.column, .columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; } }

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 90%; }
  .column, .columns {
    margin-left: 4%; }
  .column:first-child, .columns:first-child {
    margin-left: 0; }
  .one.column, .one.columns {
    width: 4.66666666667%; }
  .two.columns {
    width: 13.3333333333%; }
  .three.columns {
    width: 22%; }
  .four.columns {
    width: 30.6666666667%; }
  .five.columns {
    width: 39.3333333333%; }
  .six.columns {
    width: 48%; }
  .seven.columns {
    width: 56.6666666667%; }
  .eight.columns {
    width: 65.3333333333%; }
  .nine.columns {
    width: 74.0%; }
  .ten.columns {
    width: 82.6666666667%; }
  .eleven.columns {
    width: 91.3333333333%; }
  .twelve.columns {
    width: 100%;
    margin-left: 0; }
  .one-third.column {
    width: 30.6666666667%; }
  .two-thirds.column {
    width: 65.3333333333%; }
  .one-half.column {
    width: 48%; }
  /* Offsets */
  .offset-by-one.column, .offset-by-one.columns {
    margin-left: 8.66666666667%; }
  .offset-by-two.column, .offset-by-two.columns {
    margin-left: 17.3333333333%; }
  .offset-by-three.column, .offset-by-three.columns {
    margin-left: 26%; }
  .offset-by-four.column, .offset-by-four.columns {
    margin-left: 34.6666666667%; }
  .offset-by-five.column, .offset-by-five.columns {
    margin-left: 43.3333333333%; }
  .offset-by-six.column, .offset-by-six.columns {
    margin-left: 52%; }
  .offset-by-seven.column, .offset-by-seven.columns {
    margin-left: 60.6666666667%; }
  .offset-by-eight.column, .offset-by-eight.columns {
    margin-left: 69.3333333333%; }
  .offset-by-nine.column, .offset-by-nine.columns {
    margin-left: 78.0%; }
  .offset-by-ten.column, .offset-by-ten.columns {
    margin-left: 86.6666666667%; }
  .offset-by-eleven.column, .offset-by-eleven.columns {
    margin-left: 95.3333333333%; }
  .offset-by-one-third.column, .offset-by-one-third.columns {
    margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column, .offset-by-two-thirds.columns {
    margin-left: 69.3333333333%; }
  .offset-by-one-half.column, .offset-by-one-half.columns {
    margin-left: 52%; } }

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after, .row:after, .u-cf {
  content: "";
  display: table;
  clear: both; }

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button, button:not(.mobile-menu-toggle), .btn {
  display: inline-block;
  height: 48px;
  padding: 5px 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  cursor: pointer;
  box-sizing: border-box;
  min-width: 25%;
  margin-right: 10px;
  background: #C3473A !important;
  color: #fff; }

.button:visited, button:not(.mobile-menu-toggle):visited, .btn:visited,
.button:hover, button:not(.mobile-menu-toggle):hover, .btn:hover {
  background: #333 !important;
  color: #fff; }

input[type="submit"], input[type="reset"], input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }

.button:hover, button:hover {
  color: #333;
  border-color: #888;
  outline: 0; }

input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  color: #333;
  border-color: #888;
  outline: 0; }

.button:focus, button:focus {
  color: #333;
  border-color: #888;
  outline: 0; }

input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }

.button.button-primary, button.button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }

input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }

.button.button-primary:hover, button.button-primary:hover {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }

input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }

.button.button-primary:focus, button.button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }

input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }

input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"] {
  height: 38px;
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
textarea, select {
  height: 38px;
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }

/* Removes awkward default styles on some inputs for iOS */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }

input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus {
  border: 1px solid #33C3F0;
  outline: 0; }

textarea:focus, select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }

label, legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }

fieldset {
  padding: 0;
  border-width: 0; }

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

label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
/* Larger than mobile */
/* Larger than phablet (also point when grid becomes active) */
/* Larger than tablet */
/* Larger than desktop */
/* Larger than Desktop HD */
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@font-face {
  font-family: RobotoRegular;
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(fonts/RobotoRegular.woff2); }

@font-face {
  font-family: RobotoBold;
  font-style: normal;
  font-weight: 700;
  src: local("Roboto"), local("Roboto-Regular"), url(fonts/Roboto-Bold.woff2); }

html,
body,
button,
input,
select,
textarea {
  color: #404040;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400; }

body {
  font-size: 16px;
  line-height: 1.5; }

/*!
 *  Font Awesome 4.6.2 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("fonts/fontawesome-webfont.eot?v=4.6.2");
  src: url("fonts/fontawesome-webfont.eot?#iefix&v=4.6.2") format("embedded-opentype"), url("fonts/fontawesome-webfont.woff2?v=4.6.2") format("woff2"), url("fonts/fontawesome-webfont.woff?v=4.6.2") format("woff"), url("fonts/fontawesome-webfont.ttf?v=4.6.2") format("truetype"), url("fonts/fontawesome-webfont.svg?v=4.6.2#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.85714em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper-pp:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

.fa-fort-awesome:before {
  content: ""; }

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

.fa-bluetooth-b:before {
  content: ""; }

.fa-percent:before {
  content: ""; }

.fa-gitlab:before {
  content: ""; }

.fa-wpbeginner:before {
  content: ""; }

.fa-wpforms:before {
  content: ""; }

.fa-envira:before {
  content: ""; }

.fa-universal-access:before {
  content: ""; }

.fa-wheelchair-alt:before {
  content: ""; }

.fa-question-circle-o:before {
  content: ""; }

.fa-blind:before {
  content: ""; }

.fa-audio-description:before {
  content: ""; }

.fa-volume-control-phone:before {
  content: ""; }

.fa-braille:before {
  content: ""; }

.fa-assistive-listening-systems:before {
  content: ""; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: ""; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: ""; }

.fa-glide:before {
  content: ""; }

.fa-glide-g:before {
  content: ""; }

.fa-signing:before,
.fa-sign-language:before {
  content: ""; }

.fa-low-vision:before {
  content: ""; }

.fa-viadeo:before {
  content: ""; }

.fa-viadeo-square:before {
  content: ""; }

.fa-snapchat:before {
  content: ""; }

.fa-snapchat-ghost:before {
  content: ""; }

.fa-snapchat-square:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-first-order:before {
  content: ""; }

.fa-yoast:before {
  content: ""; }

.fa-themeisle:before {
  content: ""; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

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

p {
  margin-bottom: 1.5em;
  font-family: inherit;
  line-height: 1.8; }

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

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

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

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

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

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

big {
  font-size: 125%; }

/*--------------------------------------------------------------
# Custom Page and SETTINGS
--------------------------------------------------------------*/
@font-face {
  font-family: RobotoRegular;
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(fonts/RobotoRegular.woff2); }

@font-face {
  font-family: RobotoBold;
  font-style: normal;
  font-weight: 700;
  src: local("Roboto"), local("Roboto-Regular"), url(fonts/Roboto-Bold.woff2); }

.homepage-container {
  position: relative;
  width: 100%;
  max-width: 1750px;
  margin: 0px auto;
  padding: 0 10px;
  box-sizing: border-box; }
  .homepage-container .homepage-half-sections {
    display: flex;
    flex: 1 1 auto;
    text-align: center;
    margin: 25px auto 35px auto;
    max-width: 1600px; }
    .homepage-container .homepage-half-sections > div {
      display: flex;
      flex-direction: row;
      height: 290px;
      width: 50%;
      text-align: center;
      padding: 0; }
      .homepage-container .homepage-half-sections > div#section1 {
        background: #333;
        margin-right: 25px; }
        .homepage-container .homepage-half-sections > div#section1 > div {
          margin: 0 auto; }
      .homepage-container .homepage-half-sections > div#section2 {
        background: #7ece4e;
        /* blockchain banner */
        /* background: #1B5BAC; blue */
        /*  background: #903eb9;  ultimate angular */
        /*background: #C3473A; */ }
  .homepage-container #homepage-text {
    background: #fff;
    padding: 5px 30px 30px 30px;
    margin-bottom: 30px; }
    .homepage-container #homepage-text p {
      margin: 0; }
    .homepage-container #homepage-text a {
      color: #C3473A;
      border-bottom: 1px solid #dedede;
      font-weight: bold;
      transition: color .2s ease-out,background .2s ease-out,opacity .2s ease-out,border .2s ease-out;
      padding-bottom: 1px; }
      .homepage-container #homepage-text a:hover {
        border-bottom: 1px solid blue; }
  .homepage-container ul.article-list {
    overflow: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1 1 auto; }
    .homepage-container ul.article-list li.article-list-item {
      float: left;
      width: 345px;
      height: 350px;
      margin: 0 10px 20px 10px;
      display: flex;
      flex-direction: row; }
      .homepage-container ul.article-list li.article-list-item article.email-signup {
        position: relative;
        width: 620px;
        margin-left: 10px;
        height: 100%;
        border: 1px solid #e9e9e9;
        background-color: #fff;
        border-radius: 2px; }
      .homepage-container ul.article-list li.article-list-item article {
        position: relative;
        width: 365px;
        margin: 0 auto;
        height: 100%;
        border: 1px solid #e9e9e9;
        background-color: #fff;
        border-radius: 2px; }
        .homepage-container ul.article-list li.article-list-item article .entry-header {
          height: 45px;
          display: block;
          padding: 10px 20px;
          border-bottom: 2px solid royalblue;
          font-weight: bold; }
          .homepage-container ul.article-list li.article-list-item article .entry-header .category-article-header {
            float: left; }
            .homepage-container ul.article-list li.article-list-item article .entry-header .category-article-header a {
              line-height: 26px; }
          .homepage-container ul.article-list li.article-list-item article .entry-header .comments-article-header {
            float: right; }
            .homepage-container ul.article-list li.article-list-item article .entry-header .comments-article-header span.comment-count-hp {
              font-size: 12px;
              color: #949494; }
          .homepage-container ul.article-list li.article-list-item article .entry-header a {
            text-decoration: none; }
        .homepage-container ul.article-list li.article-list-item article .entry-content {
          display: block;
          padding: 0 20px;
          margin: 0; }
          .homepage-container ul.article-list li.article-list-item article .entry-content h2 {
            font-size: 1.5rem;
            line-height: 1.25;
            font-family: RobotoBold; }
          .homepage-container ul.article-list li.article-list-item article .entry-content a {
            text-decoration: none;
            word-wrap: break-word; }
          .homepage-container ul.article-list li.article-list-item article .entry-content p {
            margin-bottom: 0;
            line-height: 1.5; }
        .homepage-container ul.article-list li.article-list-item article .entry-footer {
          position: absolute;
          bottom: 0;
          padding: 10px 20px;
          width: 100%;
          font-size: 14px; }
          .homepage-container ul.article-list li.article-list-item article .entry-footer .posted-on {
            float: right;
            color: #949494; }
          .homepage-container ul.article-list li.article-list-item article .entry-footer .byline {
            float: left;
            color: #949494; }
            .homepage-container ul.article-list li.article-list-item article .entry-footer .byline a {
              text-decoration: none; }
        .homepage-container ul.article-list li.article-list-item article.ad-inject {
          text-align: center;
          padding-top: 50px; }

body.home .homepage-container {
  max-width: 1500px; }

@media (max-width: 1023px) {
  .homepage-container {
    padding: 0; }
    .homepage-container .homepage-half-sections {
      flex-direction: column;
      margin-bottom: 0; }
      .homepage-container .homepage-half-sections > div {
        flex-direction: column;
        width: 100%;
        margin-bottom: 25px;
        height: auto; } }

@media (max-width: 750px) {
  .homepage-container {
    width: 100%; }
    .homepage-container ul.article-list {
      margin: 0;
      width: 100%; }
      .homepage-container ul.article-list li.article-list-item {
        width: 100% !important;
        height: auto;
        margin: 0; }
        .homepage-container ul.article-list li.article-list-item form.header-subscribe.email-signup-inject {
          padding: 20px 0;
          margin: 0; }
          .homepage-container ul.article-list li.article-list-item form.header-subscribe.email-signup-inject h3 {
            margin: 0;
            font-size: 24px; }
          .homepage-container ul.article-list li.article-list-item form.header-subscribe.email-signup-inject input.header-email-subscribe-field, .homepage-container ul.article-list li.article-list-item form.header-subscribe.email-signup-inject input.header-email-subscribe-btn {
            width: 100%;
            margin: 5px 0; }
        .homepage-container ul.article-list li.article-list-item article.ad-inject {
          display: none; }
        .homepage-container ul.article-list li.article-list-item article.email-signup {
          padding: 0;
          margin: 0;
          width: 100%; }
        .homepage-container ul.article-list li.article-list-item article {
          padding: 0;
          margin: 0;
          width: 100%; }
          .homepage-container ul.article-list li.article-list-item article .entry-header {
            display: none; }
          .homepage-container ul.article-list li.article-list-item article .entry-content h2.entry-title {
            width: 100%;
            display: flex;
            align-items: center; }
            .homepage-container ul.article-list li.article-list-item article .entry-content h2.entry-title a {
              width: 95%;
              float: left; }
            .homepage-container ul.article-list li.article-list-item article .entry-content h2.entry-title::after {
              width: 5%;
              font-family: FontAwesome;
              content: "\f054";
              color: royalblue;
              float: right; }
          .homepage-container ul.article-list li.article-list-item article .entry-footer {
            display: none; } }

.test {
  border: 1px solid red; }

body.search-results h1.page-title {
  margin-left: 10px; }

body.author .author-page-header {
  margin-top: 25px; }

#scroll-top-link {
  position: fixed;
  border-radius: 2px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-decoration: none;
  text-align: center;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 1030;
  opacity: 0;
  background-color: #fff;
  color: #333;
  opacity: 0.7;
  border: 1px solid #e1e1e1; }
  #scroll-top-link:hover {
    background-color: #f8f8f8;
    color: #4fba58;
    border: 1px solid #e1e1e1; }

/* email signup */
.email-signup-container {
  background-color: #333;
  float: right;
  margin-right: -450px;
  width: 450px; }
  .email-signup-container form.header-subscribe {
    padding: 20px 20px;
    color: #fff; }
    .email-signup-container form.header-subscribe .form-left {
      float: left;
      padding-left: 5px;
      padding-bottom: 5px; }
    .email-signup-container form.header-subscribe .form-right {
      display: inline-block;
      width: 250px;
      margin-left: 15px; }
      .email-signup-container form.header-subscribe .form-right h3 {
        margin: 10px 0; }
    .email-signup-container form.header-subscribe .form-head {
      margin: 0;
      padding: 0;
      display: flex;
      align-items: flex-end; }
      .email-signup-container form.header-subscribe .form-head i {
        font-size: 36px;
        color: #C3473A; }
      .email-signup-container form.header-subscribe .form-head h3 {
        margin: 0;
        margin-left: 15px;
        padding: 0; }
    .email-signup-container form.header-subscribe hr {
      width: 100px;
      margin-left: 0;
      margin-top: 15px; }
    .email-signup-container form.header-subscribe .form-fields {
      display: flex;
      align-items: center; }
      .email-signup-container form.header-subscribe .form-fields input.header-email-subscribe-field {
        width: 100%;
        background: #FDFCFB;
        color: #737373;
        letter-spacing: 1px;
        text-indent: 5%;
        border-radius: 5px 0 0 5px; }
      .email-signup-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
        background: #C3473A;
        border: 1px solid #ddd;
        font-weight: bold;
        color: #fff;
        letter-spacing: 1px;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        transition: background .2s ease-in-out; }
  @media all and (max-width: 1024px) {
    .email-signup-container {
      float: none;
      padding-bottom: 0;
      margin-bottom: 0;
      width: 100%; } }

/* udemy container */
.udemy-container {
  /*  img {
    margin-top: 10px;
  }*/ }
  .udemy-container a {
    height: 100%;
    width: 100%;
    display: inline-block; }

@media (min-width: 768px) and (max-width: 1440px) {
  .udemy-container img {
    margin-top: 20px; } }

@media (max-width: 1023px) {
  .email-signup-container form.header-subscribe .form-left {
    float: none !important; } }

.homepage-container .category-page-header {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center; }
  .homepage-container .category-page-header i {
    padding: 30px;
    background: #C3473A;
    border-radius: 5px;
    font-size: 36px;
    color: #fff;
    margin-left: 10px;
    margin-right: 40px; }
  .homepage-container .category-page-header h2 {
    font-size: 28px;
    padding: 0;
    margin: 0; }

.homepage-container header.entry-header {
  border-bottom: 2px solid #C3473A; }
  .homepage-container header.entry-header .comments-article-header {
    font-weight: 400;
    color: #C3473A; }
  .homepage-container header.entry-header a {
    color: #C3473A;
    line-height: 26px; }

.homepage-container .entry-content h1.entry-title, .homepage-container .entry-content h2.entry-title {
  font-size: 1.5rem;
  line-height: 1.25;
  font-family: RobotoBold; }
  .homepage-container .entry-content h1.entry-title a, .homepage-container .entry-content h2.entry-title a {
    color: #333; }
    .homepage-container .entry-content h1.entry-title a:hover, .homepage-container .entry-content h2.entry-title a:hover {
      color: #C3473A !important; }
    .homepage-container .entry-content h1.entry-title a:visited, .homepage-container .entry-content h2.entry-title a:visited {
      color: #333; }
  @media (max-width: 750px) {
    .homepage-container .entry-content h1.entry-title::after, .homepage-container .entry-content h2.entry-title::after {
      color: #C3473A !important; } }

.homepage-container footer.entry-footer .entry-meta span.byline span.author a {
  color: #C3473A; }

.category-default .category-page-header i {
  background: #C3473A !important; }

.category-default .category-page-header h1 {
  width: 100%; }

.category-default .cat-desc {
  padding: 0 20px; }

.category-default header.entry-header {
  border-bottom: 2px solid #C3473A !important; }
  .category-default header.entry-header .comments-article-header {
    color: #C3473A !important; }
  .category-default header.entry-header a {
    color: #C3473A !important; }
    .category-default header.entry-header a:hover {
      color: #9c392e; }

.category-default .entry-content h1.entry-title a:hover, .category-default .entry-content h2.entry-title a:hover {
  color: #C3473A !important; }

@media (max-width: 750px) {
  .category-default .entry-content h1.entry-title::after, .category-default .entry-content h2.entry-title::after {
    color: #C3473A !important; } }

.category-default footer.entry-footer .entry-meta span.byline span.author a {
  color: #C3473A !important; }
  .category-default footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #9c392e; }

.category-uncategorized .category-page-header i {
  background: #333 !important; }

.category-uncategorized .category-page-header h1 {
  width: 100%; }

.category-uncategorized .cat-desc {
  padding: 0 20px; }

.category-uncategorized header.entry-header {
  border-bottom: 2px solid #333 !important; }
  .category-uncategorized header.entry-header .comments-article-header {
    color: #333 !important; }
  .category-uncategorized header.entry-header a {
    color: #333 !important; }
    .category-uncategorized header.entry-header a:hover {
      color: #1a1a1a; }

.category-uncategorized .entry-content h1.entry-title a:hover, .category-uncategorized .entry-content h2.entry-title a:hover {
  color: #333 !important; }

@media (max-width: 750px) {
  .category-uncategorized .entry-content h1.entry-title::after, .category-uncategorized .entry-content h2.entry-title::after {
    color: #333 !important; } }

.category-uncategorized footer.entry-footer .entry-meta span.byline span.author a {
  color: #333 !important; }
  .category-uncategorized footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #1a1a1a; }

.category-modules .category-page-header i {
  background: #E44D26 !important; }

.category-modules .category-page-header h1 {
  width: 100%; }

.category-modules .cat-desc {
  padding: 0 20px; }

.category-modules header.entry-header {
  border-bottom: 2px solid #E44D26 !important; }
  .category-modules header.entry-header .comments-article-header {
    color: #E44D26 !important; }
  .category-modules header.entry-header a {
    color: #E44D26 !important; }
    .category-modules header.entry-header a:hover {
      color: #bf3a18; }

.category-modules .entry-content h1.entry-title a:hover, .category-modules .entry-content h2.entry-title a:hover {
  color: #E44D26 !important; }

@media (max-width: 750px) {
  .category-modules .entry-content h1.entry-title::after, .category-modules .entry-content h2.entry-title::after {
    color: #E44D26 !important; } }

.category-modules footer.entry-footer .entry-meta span.byline span.author a {
  color: #E44D26 !important; }
  .category-modules footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #bf3a18; }

.category-directives .category-page-header i {
  background: #0084b4 !important; }

.category-directives .category-page-header h1 {
  width: 100%; }

.category-directives .cat-desc {
  padding: 0 20px; }

.category-directives header.entry-header {
  border-bottom: 2px solid #0084b4 !important; }
  .category-directives header.entry-header .comments-article-header {
    color: #0084b4 !important; }
  .category-directives header.entry-header a {
    color: #0084b4 !important; }
    .category-directives header.entry-header a:hover {
      color: #005f81; }

.category-directives .entry-content h1.entry-title a:hover, .category-directives .entry-content h2.entry-title a:hover {
  color: #0084b4 !important; }

@media (max-width: 750px) {
  .category-directives .entry-content h1.entry-title::after, .category-directives .entry-content h2.entry-title::after {
    color: #0084b4 !important; } }

.category-directives footer.entry-footer .entry-meta span.byline span.author a {
  color: #0084b4 !important; }
  .category-directives footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #005f81; }

.category-services .category-page-header i {
  background: #FF6600 !important; }

.category-services .category-page-header h1 {
  width: 100%; }

.category-services .cat-desc {
  padding: 0 20px; }

.category-services header.entry-header {
  border-bottom: 2px solid #FF6600 !important; }
  .category-services header.entry-header .comments-article-header {
    color: #FF6600 !important; }
  .category-services header.entry-header a {
    color: #FF6600 !important; }
    .category-services header.entry-header a:hover {
      color: #cc5200; }

.category-services .entry-content h1.entry-title a:hover, .category-services .entry-content h2.entry-title a:hover {
  color: #FF6600 !important; }

@media (max-width: 750px) {
  .category-services .entry-content h1.entry-title::after, .category-services .entry-content h2.entry-title::after {
    color: #FF6600 !important; } }

.category-services footer.entry-footer .entry-meta span.byline span.author a {
  color: #FF6600 !important; }
  .category-services footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #cc5200; }

.category-angularjs1 .category-page-header i {
  background: #C3473A !important; }

.category-angularjs1 .category-page-header h1 {
  width: 100%; }

.category-angularjs1 .cat-desc {
  padding: 0 20px; }

.category-angularjs1 header.entry-header {
  border-bottom: 2px solid #C3473A !important; }
  .category-angularjs1 header.entry-header .comments-article-header {
    color: #C3473A !important; }
  .category-angularjs1 header.entry-header a {
    color: #C3473A !important; }
    .category-angularjs1 header.entry-header a:hover {
      color: #9c392e; }

.category-angularjs1 .entry-content h1.entry-title a:hover, .category-angularjs1 .entry-content h2.entry-title a:hover {
  color: #C3473A !important; }

@media (max-width: 750px) {
  .category-angularjs1 .entry-content h1.entry-title::after, .category-angularjs1 .entry-content h2.entry-title::after {
    color: #C3473A !important; } }

.category-angularjs1 footer.entry-footer .entry-meta span.byline span.author a {
  color: #C3473A !important; }
  .category-angularjs1 footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #9c392e; }

.category-angularjs2 .category-page-header i {
  background: #C3473A !important; }

.category-angularjs2 .category-page-header h1 {
  width: 100%; }

.category-angularjs2 .cat-desc {
  padding: 0 20px; }

.category-angularjs2 header.entry-header {
  border-bottom: 2px solid #C3473A !important; }
  .category-angularjs2 header.entry-header .comments-article-header {
    color: #C3473A !important; }
  .category-angularjs2 header.entry-header a {
    color: #C3473A !important; }
    .category-angularjs2 header.entry-header a:hover {
      color: #9c392e; }

.category-angularjs2 .entry-content h1.entry-title a:hover, .category-angularjs2 .entry-content h2.entry-title a:hover {
  color: #C3473A !important; }

@media (max-width: 750px) {
  .category-angularjs2 .entry-content h1.entry-title::after, .category-angularjs2 .entry-content h2.entry-title::after {
    color: #C3473A !important; } }

.category-angularjs2 footer.entry-footer .entry-meta span.byline span.author a {
  color: #C3473A !important; }
  .category-angularjs2 footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #9c392e; }

.category-angularjs4 .category-page-header i {
  background: #C3473A !important; }

.category-angularjs4 .category-page-header h1 {
  width: 100%; }

.category-angularjs4 .cat-desc {
  padding: 0 20px; }

.category-angularjs4 header.entry-header {
  border-bottom: 2px solid #C3473A !important; }
  .category-angularjs4 header.entry-header .comments-article-header {
    color: #C3473A !important; }
  .category-angularjs4 header.entry-header a {
    color: #C3473A !important; }
    .category-angularjs4 header.entry-header a:hover {
      color: #9c392e; }

.category-angularjs4 .entry-content h1.entry-title a:hover, .category-angularjs4 .entry-content h2.entry-title a:hover {
  color: #C3473A !important; }

@media (max-width: 750px) {
  .category-angularjs4 .entry-content h1.entry-title::after, .category-angularjs4 .entry-content h2.entry-title::after {
    color: #C3473A !important; } }

.category-angularjs4 footer.entry-footer .entry-meta span.byline span.author a {
  color: #C3473A !important; }
  .category-angularjs4 footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #9c392e; }

.category-demos .category-page-header i {
  background: #0769ad !important; }

.category-demos .category-page-header h1 {
  width: 100%; }

.category-demos .cat-desc {
  padding: 0 20px; }

.category-demos header.entry-header {
  border-bottom: 2px solid #0769ad !important; }
  .category-demos header.entry-header .comments-article-header {
    color: #0769ad !important; }
  .category-demos header.entry-header a {
    color: #0769ad !important; }
    .category-demos header.entry-header a:hover {
      color: #054b7c; }

.category-demos .entry-content h1.entry-title a:hover, .category-demos .entry-content h2.entry-title a:hover {
  color: #0769ad !important; }

@media (max-width: 750px) {
  .category-demos .entry-content h1.entry-title::after, .category-demos .entry-content h2.entry-title::after {
    color: #0769ad !important; } }

.category-demos footer.entry-footer .entry-meta span.byline span.author a {
  color: #0769ad !important; }
  .category-demos footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #054b7c; }

.category-tutorials .category-page-header i {
  background: #1ab76f !important; }

.category-tutorials .category-page-header h1 {
  width: 100%; }

.category-tutorials .cat-desc {
  padding: 0 20px; }

.category-tutorials header.entry-header {
  border-bottom: 2px solid #1ab76f !important; }
  .category-tutorials header.entry-header .comments-article-header {
    color: #1ab76f !important; }
  .category-tutorials header.entry-header a {
    color: #1ab76f !important; }
    .category-tutorials header.entry-header a:hover {
      color: #148a54; }

.category-tutorials .entry-content h1.entry-title a:hover, .category-tutorials .entry-content h2.entry-title a:hover {
  color: #1ab76f !important; }

@media (max-width: 750px) {
  .category-tutorials .entry-content h1.entry-title::after, .category-tutorials .entry-content h2.entry-title::after {
    color: #1ab76f !important; } }

.category-tutorials footer.entry-footer .entry-meta span.byline span.author a {
  color: #1ab76f !important; }
  .category-tutorials footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #148a54; }

.category-books .category-page-header i {
  background: #755100 !important; }

.category-books .category-page-header h1 {
  width: 100%; }

.category-books .cat-desc {
  padding: 0 20px; }

.category-books header.entry-header {
  border-bottom: 2px solid #755100 !important; }
  .category-books header.entry-header .comments-article-header {
    color: #755100 !important; }
  .category-books header.entry-header a {
    color: #755100 !important; }
    .category-books header.entry-header a:hover {
      color: #422e00; }

.category-books .entry-content h1.entry-title a:hover, .category-books .entry-content h2.entry-title a:hover {
  color: #755100 !important; }

@media (max-width: 750px) {
  .category-books .entry-content h1.entry-title::after, .category-books .entry-content h2.entry-title::after {
    color: #755100 !important; } }

.category-books footer.entry-footer .entry-meta span.byline span.author a {
  color: #755100 !important; }
  .category-books footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #422e00; }

.category-premium .category-page-header i {
  background: #1c1ab7 !important; }

.category-premium .category-page-header h1 {
  width: 100%; }

.category-premium .cat-desc {
  padding: 0 20px; }

.category-premium header.entry-header {
  border-bottom: 2px solid #1c1ab7 !important; }
  .category-premium header.entry-header .comments-article-header {
    color: #1c1ab7 !important; }
  .category-premium header.entry-header a {
    color: #1c1ab7 !important; }
    .category-premium header.entry-header a:hover {
      color: #15148a; }

.category-premium .entry-content h1.entry-title a:hover, .category-premium .entry-content h2.entry-title a:hover {
  color: #1c1ab7 !important; }

@media (max-width: 750px) {
  .category-premium .entry-content h1.entry-title::after, .category-premium .entry-content h2.entry-title::after {
    color: #1c1ab7 !important; } }

.category-premium footer.entry-footer .entry-meta span.byline span.author a {
  color: #1c1ab7 !important; }
  .category-premium footer.entry-footer .entry-meta span.byline span.author a:hover {
    color: #15148a; }

body.category .homepage-container ul.article-list {
  display: block; }
  body.category .homepage-container ul.article-list .article-list-item {
    width: 380px; }

.site-main {
  margin: 0px auto 30px auto; }
  .site-main a:not(.btn) {
    color: #C3473A;
    border-bottom: 1px solid #dedede;
    font-weight: bold;
    transition: color .2s ease-out,background .2s ease-out,opacity .2s ease-out,border .2s ease-out;
    padding-bottom: 1px; }
    .site-main a:not(.btn):hover {
      border-bottom: 1px solid blue; }
  .site-main .main-header {
    padding-right: 450px;
    overflow: hidden; }
    @media all and (max-width: 1024px) {
      .site-main .main-header {
        padding: 0;
        overflow: visible; } }
    .site-main .main-header .left-container {
      float: left;
      width: 100%;
      background-color: #C3473A;
      color: #fff; }
      .site-main .main-header .left-container .entry-header.header-content {
        position: relative;
        padding: 20px 10px 0 10px;
        border: 0 !important;
        text-align: center; }
        .site-main .main-header .left-container .entry-header.header-content h1 {
          font-size: 48px;
          line-height: 52px;
          padding: 0;
          margin: 0 0 20px 0;
          color: #fff; }
        .site-main .main-header .left-container .entry-header.header-content .entry-meta {
          margin: 0;
          padding: 0;
          margin-top: 7px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 14px; }
          .site-main .main-header .left-container .entry-header.header-content .entry-meta img {
            width: 50px;
            border-radius: 50%;
            margin: 0;
            padding: 0;
            margin-right: 10px; }
          .site-main .main-header .left-container .entry-header.header-content .entry-meta a {
            color: #fff;
            text-decoration: none;
            margin: 0;
            padding: 0;
            margin-right: 10px;
            border: 0; }
          .site-main .main-header .left-container .entry-header.header-content .entry-meta i {
            font-size: 16px;
            margin-left: 20px;
            margin-right: 10px; }
          @media all and (max-width: 768px) {
            .site-main .main-header .left-container .entry-header.header-content .entry-meta {
              display: none; } }
        @media all and (max-width: 768px) {
          .site-main .main-header .left-container .entry-header.header-content h1 {
            font-size: 24px; } }
      @media all and (max-width: 1024px) {
        .site-main .main-header .left-container {
          float: none;
          padding-bottom: 0;
          margin-bottom: 0; } }
    .site-main .main-header .left-container, .site-main .main-header .email-container {
      padding-bottom: 9999px;
      margin-bottom: -9999px;
      border-left: 1px solid #ddd; }
      @media all and (max-width: 1024px) {
        .site-main .main-header .left-container, .site-main .main-header .email-container {
          padding-bottom: 0;
          margin-bottom: 0; } }
  .site-main .main-article {
    padding-right: 450px;
    overflow: hidden;
    /*text-align: center;*/ }
    @media all and (max-width: 1024px) {
      .site-main .main-article {
        padding: 0;
        overflow: visible; } }
    .site-main .main-article h2 {
      font-size: 34px;
      line-height: 46px;
      margin-top: 80px;
      margin-bottom: 20px;
      text-align: center; }
      .site-main .main-article h2:first-of-type {
        margin-top: 40px; }
    .site-main .main-article .article-container {
      float: left;
      width: 100%; }
      .site-main .main-article .article-container img {
        margin-top: 10px;
        margin-bottom: 0; }
      .site-main .main-article .article-container p {
        margin: 20px auto;
        word-wrap: break-word; }
      @media all and (max-width: 1024px) {
        .site-main .main-article .article-container {
          float: none;
          padding-bottom: 0;
          margin-bottom: 0; } }
      .site-main .main-article .article-container .post {
        background-color: #fff; }
        .site-main .main-article .article-container .post .entry-content {
          line-height: 1.8;
          padding: 30px;
          padding-top: 30px;
          max-width: 960px;
          margin: 0 auto; }
          .site-main .main-article .article-container .post .entry-content p {
            font-size: 18px;
            font-family: Georgia,Cambria,"Times New Roman",Times,serif; }
          .site-main .main-article .article-container .post .entry-content ul {
            list-style: none;
            padding-left: 10px;
            margin: 0; }
            .site-main .main-article .article-container .post .entry-content ul li:before {
              font-family: FontAwesome;
              font-size: 7px;
              content: "\f111 ";
              margin-right: 10px;
              color: #C3473A;
              /* or whatever color you prefer */
              vertical-align: middle; }
          .site-main .main-article .article-container .post .entry-content figure {
            width: 100% !important;
            margin: 30px auto !important; }
            .site-main .main-article .article-container .post .entry-content figure .wp-caption-text {
              font-style: italic;
              margin: 0 auto;
              color: #6e6e6e; }
        .site-main .main-article .article-container .post .entry-footer {
          padding: 30px;
          padding-top: 0; }
        @media all and (max-width: 768px) {
          .site-main .main-article .article-container .post a.btn {
            height: auto;
            max-width: 100%;
            white-space: normal;
            line-height: 22px;
            padding: 10px; } }
      .site-main .main-article .article-container .comments-area {
        background-color: #fff;
        padding: 0;
        margin: 0;
        overflow: hidden; }
        .site-main .main-article .article-container .comments-area textarea {
          width: 100%; }
      .site-main .main-article .article-container .author-info-after-article p {
        margin: 0;
        display: inline-block;
        float: none; }
        .site-main .main-article .article-container .author-info-after-article p.author-bio {
          margin-left: 15px; }
    .site-main .main-article .sidebar-container {
      float: right;
      margin-right: -450px;
      width: 450px;
      background: #f3f3f3; }
      @media all and (max-width: 1024px) {
        .site-main .main-article .sidebar-container {
          float: none;
          padding-bottom: 0;
          margin-bottom: 0;
          width: 100%; } }
    .site-main .main-article .article-container, .site-main .main-article .sidebar-container {
      padding-bottom: 99999px;
      margin-bottom: -99999px; }
      @media all and (max-width: 1024px) {
        .site-main .main-article .article-container, .site-main .main-article .sidebar-container {
          padding-bottom: 0;
          margin-bottom: 0; } }
  .site-main #disqus-comments-row {
    padding: 20px 40px; }
  @media all and (max-width: 1024px) {
    .site-main {
      margin: 0; } }

.site-main .default .main-header .left-container {
  background-color: #C3473A;
  color: #fff; }
  .site-main .default .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .default .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .default .main-header .email-container form.header-subscribe .form-head i {
  color: #C3473A; }

.site-main .default .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #C3473A;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .default .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #9c392e;
    border: 1px solid #9c392e; }

.site-main .default .main-article .article-container .post .entry-content ul li:before {
  color: #C3473A;
  /* or whatever color you prefer */ }

.site-main .uncategorized .main-header .left-container {
  background-color: #333;
  color: #fff; }
  .site-main .uncategorized .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .uncategorized .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .uncategorized .main-header .email-container form.header-subscribe .form-head i {
  color: #333; }

.site-main .uncategorized .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #333;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .uncategorized .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #1a1a1a;
    border: 1px solid #1a1a1a; }

.site-main .uncategorized .main-article .article-container .post .entry-content ul li:before {
  color: #333;
  /* or whatever color you prefer */ }

.site-main .modules .main-header .left-container {
  background-color: #E44D26;
  color: #fff; }
  .site-main .modules .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .modules .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .modules .main-header .email-container form.header-subscribe .form-head i {
  color: #E44D26; }

.site-main .modules .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #E44D26;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .modules .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #bf3a18;
    border: 1px solid #bf3a18; }

.site-main .modules .main-article .article-container .post .entry-content ul li:before {
  color: #E44D26;
  /* or whatever color you prefer */ }

.site-main .directives .main-header .left-container {
  background-color: #0084b4;
  color: #fff; }
  .site-main .directives .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .directives .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .directives .main-header .email-container form.header-subscribe .form-head i {
  color: #0084b4; }

.site-main .directives .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #0084b4;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .directives .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #005f81;
    border: 1px solid #005f81; }

.site-main .directives .main-article .article-container .post .entry-content ul li:before {
  color: #0084b4;
  /* or whatever color you prefer */ }

.site-main .services .main-header .left-container {
  background-color: #FF6600;
  color: #fff; }
  .site-main .services .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .services .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .services .main-header .email-container form.header-subscribe .form-head i {
  color: #FF6600; }

.site-main .services .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #FF6600;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .services .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #cc5200;
    border: 1px solid #cc5200; }

.site-main .services .main-article .article-container .post .entry-content ul li:before {
  color: #FF6600;
  /* or whatever color you prefer */ }

.site-main .angularjs1 .main-header .left-container {
  background-color: #C3473A;
  color: #fff; }
  .site-main .angularjs1 .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .angularjs1 .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .angularjs1 .main-header .email-container form.header-subscribe .form-head i {
  color: #C3473A; }

.site-main .angularjs1 .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #C3473A;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .angularjs1 .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #9c392e;
    border: 1px solid #9c392e; }

.site-main .angularjs1 .main-article .article-container .post .entry-content ul li:before {
  color: #C3473A;
  /* or whatever color you prefer */ }

.site-main .angularjs2 .main-header .left-container {
  background-color: #C3473A;
  color: #fff; }
  .site-main .angularjs2 .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .angularjs2 .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .angularjs2 .main-header .email-container form.header-subscribe .form-head i {
  color: #C3473A; }

.site-main .angularjs2 .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #C3473A;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .angularjs2 .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #9c392e;
    border: 1px solid #9c392e; }

.site-main .angularjs2 .main-article .article-container .post .entry-content ul li:before {
  color: #C3473A;
  /* or whatever color you prefer */ }

.site-main .angularjs4 .main-header .left-container {
  background-color: #C3473A;
  color: #fff; }
  .site-main .angularjs4 .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .angularjs4 .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .angularjs4 .main-header .email-container form.header-subscribe .form-head i {
  color: #C3473A; }

.site-main .angularjs4 .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #C3473A;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .angularjs4 .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #9c392e;
    border: 1px solid #9c392e; }

.site-main .angularjs4 .main-article .article-container .post .entry-content ul li:before {
  color: #C3473A;
  /* or whatever color you prefer */ }

.site-main .demos .main-header .left-container {
  background-color: #0769ad;
  color: #fff; }
  .site-main .demos .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .demos .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .demos .main-header .email-container form.header-subscribe .form-head i {
  color: #0769ad; }

.site-main .demos .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #0769ad;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .demos .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #054b7c;
    border: 1px solid #054b7c; }

.site-main .demos .main-article .article-container .post .entry-content ul li:before {
  color: #0769ad;
  /* or whatever color you prefer */ }

.site-main .tutorials .main-header .left-container {
  background-color: #1ab76f;
  color: #fff; }
  .site-main .tutorials .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .tutorials .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .tutorials .main-header .email-container form.header-subscribe .form-head i {
  color: #1ab76f; }

.site-main .tutorials .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #1ab76f;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .tutorials .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #148a54;
    border: 1px solid #148a54; }

.site-main .tutorials .main-article .article-container .post .entry-content ul li:before {
  color: #1ab76f;
  /* or whatever color you prefer */ }

.site-main .books .main-header .left-container {
  background-color: #755100;
  color: #fff; }
  .site-main .books .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .books .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .books .main-header .email-container form.header-subscribe .form-head i {
  color: #755100; }

.site-main .books .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #755100;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .books .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #422e00;
    border: 1px solid #422e00; }

.site-main .books .main-article .article-container .post .entry-content ul li:before {
  color: #755100;
  /* or whatever color you prefer */ }

.site-main .premium .main-header .left-container {
  background-color: #1c1ab7;
  color: #fff; }
  .site-main .premium .main-header .left-container .entry-header.header-content h1 {
    color: #fff; }
  .site-main .premium .main-header .left-container .entry-header.header-content .entry-meta a {
    color: #fff; }

.site-main .premium .main-header .email-container form.header-subscribe .form-head i {
  color: #1c1ab7; }

.site-main .premium .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn {
  background: #1c1ab7;
  border: 1px solid #ddd;
  color: #fff; }
  .site-main .premium .main-header .email-container form.header-subscribe .form-fields input.header-email-subscribe-btn:hover {
    background: #15148a;
    border: 1px solid #15148a; }

.site-main .premium .main-article .article-container .post .entry-content ul li:before {
  color: #1c1ab7;
  /* or whatever color you prefer */ }

@media (min-width: 768px) {
  .site-main .main-article .article-container .author-info-after-article p {
    margin: 0;
    display: inline-block;
    float: none; }
    .site-main .main-article .article-container .author-info-after-article p.author-bio {
      max-width: 600px;
      vertical-align: top;
      padding: 5px;
      line-height: 22px;
      margin-bottom: 20px; } }

@media (min-width: 768px) {
  body.single-post .site-main .main-header .left-container .entry-header.header-content,
  body.single-post .email-signup-container {
    min-height: 305px; } }

.sidebar {
  padding-bottom: 20px; }
  .sidebar .widget_search form.search-form .search-submit {
    background: #fff;
    border: 1px solid #C3473A;
    color: #fff; }
  .sidebar ul a {
    color: #4a4a4a;
    word-wrap: break-word; }
    .sidebar ul a:visited {
      color: #4a4a4a; }
  .sidebar ul li {
    margin-bottom: 5px; }
    .sidebar ul li:before {
      color: #C3473A; }
  .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 20px;
    line-height: 1.8; }
    .sidebar .widget h2 {
      background-color: #C3473A;
      margin: 0;
      margin-bottom: 20px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #C3473A;
        vertical-align: middle; }

.default .sidebar {
  margin: 0;
  height: auto; }
  .default .sidebar ul a:hover {
    color: #C3473A; }
  .default .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .default .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .default .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .default .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .default .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #C3473A;
        border: 1px solid #C3473A;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .default .sidebar .widget_search form.search-form .search-submit:hover {
          background: #9c392e;
          border: 1px solid #9c392e; }
  .default .sidebar .widget_text {
    background: none !important; }
  .default .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .default .sidebar .widget h2 {
      background-color: #C3473A;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .default .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .default .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .default .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #C3473A;
        vertical-align: middle; }

.uncategorized .sidebar {
  margin: 0;
  height: auto; }
  .uncategorized .sidebar ul a:hover {
    color: #333; }
  .uncategorized .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .uncategorized .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .uncategorized .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .uncategorized .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .uncategorized .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #333;
        border: 1px solid #333;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .uncategorized .sidebar .widget_search form.search-form .search-submit:hover {
          background: #1a1a1a;
          border: 1px solid #1a1a1a; }
  .uncategorized .sidebar .widget_text {
    background: none !important; }
  .uncategorized .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .uncategorized .sidebar .widget h2 {
      background-color: #333;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .uncategorized .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .uncategorized .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .uncategorized .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #333;
        vertical-align: middle; }

.modules .sidebar {
  margin: 0;
  height: auto; }
  .modules .sidebar ul a:hover {
    color: #E44D26; }
  .modules .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .modules .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .modules .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .modules .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .modules .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #E44D26;
        border: 1px solid #E44D26;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .modules .sidebar .widget_search form.search-form .search-submit:hover {
          background: #bf3a18;
          border: 1px solid #bf3a18; }
  .modules .sidebar .widget_text {
    background: none !important; }
  .modules .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .modules .sidebar .widget h2 {
      background-color: #E44D26;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .modules .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .modules .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .modules .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #E44D26;
        vertical-align: middle; }

.directives .sidebar {
  margin: 0;
  height: auto; }
  .directives .sidebar ul a:hover {
    color: #0084b4; }
  .directives .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .directives .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .directives .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .directives .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .directives .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #0084b4;
        border: 1px solid #0084b4;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .directives .sidebar .widget_search form.search-form .search-submit:hover {
          background: #005f81;
          border: 1px solid #005f81; }
  .directives .sidebar .widget_text {
    background: none !important; }
  .directives .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .directives .sidebar .widget h2 {
      background-color: #0084b4;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .directives .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .directives .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .directives .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #0084b4;
        vertical-align: middle; }

.services .sidebar {
  margin: 0;
  height: auto; }
  .services .sidebar ul a:hover {
    color: #FF6600; }
  .services .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .services .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .services .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .services .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .services .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #FF6600;
        border: 1px solid #FF6600;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .services .sidebar .widget_search form.search-form .search-submit:hover {
          background: #cc5200;
          border: 1px solid #cc5200; }
  .services .sidebar .widget_text {
    background: none !important; }
  .services .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .services .sidebar .widget h2 {
      background-color: #FF6600;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .services .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .services .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .services .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #FF6600;
        vertical-align: middle; }

.angularjs1 .sidebar {
  margin: 0;
  height: auto; }
  .angularjs1 .sidebar ul a:hover {
    color: #C3473A; }
  .angularjs1 .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .angularjs1 .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .angularjs1 .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .angularjs1 .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .angularjs1 .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #C3473A;
        border: 1px solid #C3473A;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .angularjs1 .sidebar .widget_search form.search-form .search-submit:hover {
          background: #9c392e;
          border: 1px solid #9c392e; }
  .angularjs1 .sidebar .widget_text {
    background: none !important; }
  .angularjs1 .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .angularjs1 .sidebar .widget h2 {
      background-color: #C3473A;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .angularjs1 .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .angularjs1 .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .angularjs1 .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #C3473A;
        vertical-align: middle; }

.angularjs2 .sidebar {
  margin: 0;
  height: auto; }
  .angularjs2 .sidebar ul a:hover {
    color: #C3473A; }
  .angularjs2 .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .angularjs2 .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .angularjs2 .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .angularjs2 .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .angularjs2 .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #C3473A;
        border: 1px solid #C3473A;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .angularjs2 .sidebar .widget_search form.search-form .search-submit:hover {
          background: #9c392e;
          border: 1px solid #9c392e; }
  .angularjs2 .sidebar .widget_text {
    background: none !important; }
  .angularjs2 .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .angularjs2 .sidebar .widget h2 {
      background-color: #C3473A;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .angularjs2 .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .angularjs2 .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .angularjs2 .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #C3473A;
        vertical-align: middle; }

.angularjs4 .sidebar {
  margin: 0;
  height: auto; }
  .angularjs4 .sidebar ul a:hover {
    color: #C3473A; }
  .angularjs4 .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .angularjs4 .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .angularjs4 .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .angularjs4 .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .angularjs4 .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #C3473A;
        border: 1px solid #C3473A;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .angularjs4 .sidebar .widget_search form.search-form .search-submit:hover {
          background: #9c392e;
          border: 1px solid #9c392e; }
  .angularjs4 .sidebar .widget_text {
    background: none !important; }
  .angularjs4 .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .angularjs4 .sidebar .widget h2 {
      background-color: #C3473A;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .angularjs4 .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .angularjs4 .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .angularjs4 .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #C3473A;
        vertical-align: middle; }

.demos .sidebar {
  margin: 0;
  height: auto; }
  .demos .sidebar ul a:hover {
    color: #0769ad; }
  .demos .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .demos .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .demos .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .demos .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .demos .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #0769ad;
        border: 1px solid #0769ad;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .demos .sidebar .widget_search form.search-form .search-submit:hover {
          background: #054b7c;
          border: 1px solid #054b7c; }
  .demos .sidebar .widget_text {
    background: none !important; }
  .demos .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .demos .sidebar .widget h2 {
      background-color: #0769ad;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .demos .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .demos .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .demos .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #0769ad;
        vertical-align: middle; }

.tutorials .sidebar {
  margin: 0;
  height: auto; }
  .tutorials .sidebar ul a:hover {
    color: #1ab76f; }
  .tutorials .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .tutorials .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .tutorials .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .tutorials .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .tutorials .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #1ab76f;
        border: 1px solid #1ab76f;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .tutorials .sidebar .widget_search form.search-form .search-submit:hover {
          background: #148a54;
          border: 1px solid #148a54; }
  .tutorials .sidebar .widget_text {
    background: none !important; }
  .tutorials .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .tutorials .sidebar .widget h2 {
      background-color: #1ab76f;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .tutorials .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .tutorials .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .tutorials .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #1ab76f;
        vertical-align: middle; }

.books .sidebar {
  margin: 0;
  height: auto; }
  .books .sidebar ul a:hover {
    color: #755100; }
  .books .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .books .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .books .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .books .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .books .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #755100;
        border: 1px solid #755100;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .books .sidebar .widget_search form.search-form .search-submit:hover {
          background: #422e00;
          border: 1px solid #422e00; }
  .books .sidebar .widget_text {
    background: none !important; }
  .books .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .books .sidebar .widget h2 {
      background-color: #755100;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .books .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .books .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .books .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #755100;
        vertical-align: middle; }

.premium .sidebar {
  margin: 0;
  height: auto; }
  .premium .sidebar ul a:hover {
    color: #1c1ab7; }
  .premium .sidebar .widget_search {
    padding: 0 !important;
    margin: 0; }
    .premium .sidebar .widget_search form.search-form {
      display: inline-block;
      width: 100%;
      padding: 30px; }
      .premium .sidebar .widget_search form.search-form .screen-reader-text {
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        position: relative !important; }
      .premium .sidebar .widget_search form.search-form .search-field {
        display: block;
        text-indent: 10px;
        width: 65%;
        margin: 0;
        float: left;
        position: relative !important; }
      .premium .sidebar .widget_search form.search-form .search-submit {
        display: block;
        margin: 0;
        float: right;
        background: #1c1ab7;
        border: 1px solid #1c1ab7;
        position: relative !important;
        color: #fff;
        transition: all .2s ease-in-out; }
        .premium .sidebar .widget_search form.search-form .search-submit:hover {
          background: #15148a;
          border: 1px solid #15148a; }
  .premium .sidebar .widget_text {
    background: none !important; }
  .premium .sidebar .widget {
    background-color: #fff;
    margin: 20px;
    padding: 0;
    padding-bottom: 30px;
    line-height: 1.8; }
    .premium .sidebar .widget h2 {
      background-color: #1c1ab7;
      margin: 0;
      margin-bottom: 30px;
      padding: 5px 20px;
      color: #fff;
      font-size: 20px;
      font-weight: 700; }
    .premium .sidebar .widget ul {
      list-style: none;
      padding: 0 30px;
      margin: 0; }
      .premium .sidebar .widget ul li {
        text-indent: -25px;
        padding-left: 20px; }
      .premium .sidebar .widget ul li:before {
        font-family: FontAwesome;
        font-size: 7px;
        content: "\f111 ";
        margin-right: 15px;
        color: #1c1ab7;
        vertical-align: middle; }

.sidebar-container .sidebar .google-ad-300-250 {
  width: 300px;
  height: 250px;
  margin: 30px auto; }

.sidebar-container .sidebar .google-ad-300-600 {
  width: 300px;
  height: 600px;
  margin: 0 auto; }

.sidebar-container .sidebar .google-ad-336-280 {
  width: 336px;
  height: 280px;
  margin: 30px auto; }

.sidebar-container .sidebar .large-ad {
  width: 410px;
  height: 270px;
  margin: 20px auto; }

.sidebar-container .sidebar .four-small-ads {
  width: 410px;
  margin: 0 auto; }
  .sidebar-container .sidebar .four-small-ads .google-ad-4-200-125 {
    float: left;
    width: 200px;
    height: 125px;
    margin-bottom: 10px; }
    .sidebar-container .sidebar .four-small-ads .google-ad-4-200-125:nth-child(odd) {
      margin-right: 10px; }

.sidebar-container .sidebar .custom-spots {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  margin-top: 25px; }
  .sidebar-container .sidebar .custom-spots a {
    text-decoration: none;
    border: 0; }

@media screen and (max-width: 1025px) {
  .sidebar-container .sidebar {
    /*display: none;*/ } }

.sidebar-container .sidebar .customspot-sidebar {
  text-align: center; }
  .sidebar-container .sidebar .customspot-sidebar a {
    text-decoration: none;
    margin-top: 20px !important;
    border: 0;
    display: inline-block; }

#tower-ad-sticky {
  /*border: 1px solid blue;*/
  display: block;
  margin-bottom: 1.875em;
  overflow: hidden;
  position: relative;
  text-align: center;
  min-height: 300px;
  /*    border: 1px solid red;
    min-height: 600px;
    margin: 20px;*/ }
  #tower-ad-sticky.sticky {
    position: fixed;
    top: 80px; }
  @media screen and (max-width: 768px) {
    #tower-ad-sticky {
      /*display: none !important;*/ } }

/*
.long-block-728-90 {
    border: 1px solid red;
    height: 90px;
    width: 728px;
}*/
footer#footer {
  background: #3A3A3A;
  color: #fff; }
  @media screen and (max-width: 550px) {
    footer#footer {
      text-align: center; } }
  footer#footer .widgets-row {
    /*margin-bottom: 20px;*/ }
  footer#footer .menu-footer-menu-container {
    text-align: center; }
    footer#footer .menu-footer-menu-container ul#footer-menu {
      display: inline-block;
      margin-top: 100px;
      padding: 0;
      list-style: none; }
      footer#footer .menu-footer-menu-container ul#footer-menu li.menu-item {
        float: left;
        margin-right: 25px; }
        footer#footer .menu-footer-menu-container ul#footer-menu li.menu-item a {
          color: rgba(255, 255, 255, 0.7);
          transition: color 200ms ease-in-out; }
          footer#footer .menu-footer-menu-container ul#footer-menu li.menu-item a:hover {
            color: white; }
      @media screen and (max-width: 550px) {
        footer#footer .menu-footer-menu-container ul#footer-menu {
          margin: 20px auto; }
          footer#footer .menu-footer-menu-container ul#footer-menu li.menu-item {
            width: 100%;
            margin-bottom: 10px;
            float: left; } }
  footer#footer a.site-link {
    display: inline-block; }
  footer#footer .logo-wrap {
    text-align: right; }
  footer#footer .menu-wrap ul {
    float: left; }
  footer#footer img.footer-logo {
    max-width: 100%;
    margin: 30px 0; }
    @media screen and (max-width: 550px) {
      footer#footer img.footer-logo {
        max-width: 90%;
        margin: 10px 5%; } }
  footer#footer .footer-widget {
    position: relative;
    min-height: 200px;
    height: 100%;
    color: rgba(255, 255, 255, 0.6); }
    footer#footer .footer-widget ul {
      list-style: none;
      margin: 0;
      padding: 0; }
    footer#footer .footer-widget h2 {
      text-align: center;
      margin-bottom: 0;
      color: white; }
    footer#footer .footer-widget a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.2s ease; }
      footer#footer .footer-widget a:hover {
        color: white; }
    @media all and (max-width: 550px) {
      footer#footer .footer-widget {
        padding: 20px;
        min-height: 0;
        text-align: center; } }
  footer#footer .social-icons-footer {
    text-align: center;
    background: #2d2d2d;
    margin-bottom: 0; }
    footer#footer .social-icons-footer ul.social-icons-list {
      display: inline-block;
      list-style: none;
      padding: 0;
      padding-top: 50px;
      padding-bottom: 30px;
      margin: 0; }
      footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item {
        float: left;
        margin: 0 5px;
        cursor: pointer; }
        footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item .envelope-icon:hover {
          background-color: #3c3c3c; }
        footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item .youtube-icon:hover {
          background-color: #cb2027; }
        footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item .github-icon:hover {
          background-color: #3c3c3c; }
        footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item .facebook-icon:hover {
          background-color: #3b5998; }
        footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item .twitter-icon:hover {
          background-color: #0084b4; }
        footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item .rss-icon {
          color: #FF6600; }
          footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item .rss-icon:hover {
            background-color: #FF6600; }
        footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item .social-icon {
          font-size: 28px;
          color: #ccc;
          width: 60px;
          height: 60px;
          background: #777;
          border-radius: 50%;
          line-height: 58px;
          vertical-align: middle;
          text-align: center;
          border: 2px solid #555;
          transition: background-color 0.2s ease-in-out; }
          footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item .social-icon:hover {
            line-height: 54px;
            color: #fff;
            border: 4px solid #f7f7f7; }
          @media all and (max-width: 460px) {
            footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item .social-icon {
              font-size: 20px;
              width: 45px;
              height: 45px;
              line-height: 43px; }
              footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item .social-icon:hover {
                line-height: 39px; } }
        @media all and (max-width: 1085px) {
          footer#footer .social-icons-footer ul.social-icons-list li.social-icons-item {
            float: right; } }
      @media all and (max-width: 550px) {
        footer#footer .social-icons-footer ul.social-icons-list {
          padding-top: 20px;
          padding-bottom: 10px; } }
  footer#footer .footer-endorsement-text {
    text-align: center;
    height: 100px;
    padding: 0;
    margin: 0;
    background: #2d2d2d; }
    footer#footer .footer-endorsement-text p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7); }

@media all and (max-width: 550px) {
  #pagination-wrap.container {
    width: 100%; } }

.container .row .pagination_links_wide {
  text-align: center;
  margin-bottom: 50px; }
  .container .row .pagination_links_wide a.page-numbers {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 5px;
    background: #e9e9e9;
    color: #333;
    border: 1px solid #d2d2d2;
    border-radius: 2px;
    transition: all 500ms ease; }
    .container .row .pagination_links_wide a.page-numbers:hover {
      background: #d5d5d5; }
    .container .row .pagination_links_wide a.page-numbers:last-child {
      margin-right: 0; }
  .container .row .pagination_links_wide span.page-numbers.current {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 5px;
    background: #949494;
    color: #fff;
    border: 1px solid #949494;
    border-radius: 2px; }
  @media screen and (max-width: 750px) {
    .container .row .pagination_links_wide {
      display: none; } }

.container .row .pagination_links_mobile {
  text-align: center;
  margin-bottom: 50px;
  display: none; }
  .container .row .pagination_links_mobile a.page-numbers {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 5px;
    background: #e9e9e9;
    color: #333;
    border: 1px solid #d2d2d2;
    border-radius: 2px;
    transition: all 500ms ease; }
    .container .row .pagination_links_mobile a.page-numbers:hover {
      background: #d5d5d5; }
    .container .row .pagination_links_mobile a.page-numbers:last-child {
      margin-right: 0; }
  .container .row .pagination_links_mobile span.page-numbers.current {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 5px;
    background: #949494;
    color: #fff;
    border: 1px solid #949494;
    border-radius: 2px; }
  @media screen and (max-width: 750px) {
    .container .row .pagination_links_mobile {
      display: block;
      margin-top: 50px; } }

.author-info-after-article {
  border-top: 1px solid #21759b;
  border-bottom: 1px solid #21759b;
  margin: 0 30px;
  padding: 0 10px; }
  .author-info-after-article .author-image-wrap {
    float: left; }
    .author-info-after-article .author-image-wrap img {
      margin: 0 !important;
      border-radius: 64px; }
  .author-info-after-article .author-info-top {
    margin-top: 20px; }
    .author-info-after-article .author-info-top .entry_author_image {
      float: left;
      display: inline-block;
      width: 50px;
      height: 50px;
      border-radius: 50%; }
      .author-info-after-article .author-info-top .entry_author_image img {
        margin: 0 !important;
        border-radius: 50%; }
    .author-info-after-article .author-info-top .author_image_custom {
      float: left;
      display: inline-block;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      padding: 0;
      margin: 0 !important; }
    .author-info-after-article .author-info-top a.author-after-post {
      border: 0;
      margin-top: 15px;
      margin-left: 15px;
      font-size: 24px; }
    .author-info-after-article .author-info-top ul.author-social-icons-list {
      float: right;
      display: inline-block;
      list-style: none;
      margin-top: 5px;
      margin-right: 20px;
      padding: 0; }
      .author-info-after-article .author-info-top ul.author-social-icons-list li.author-social-icons-item {
        float: left;
        margin-left: 10px; }
        .author-info-after-article .author-info-top ul.author-social-icons-list li.author-social-icons-item a {
          text-decoration: none;
          border: 0;
          font-size: 28px; }
  .author-info-after-article .author-info-bottom {
    margin: 20px 0; }
  @media screen and (max-width: 500px) {
    .author-info-after-article .author-info-top {
      width: 100%;
      text-align: center; }
      .author-info-after-article .author-info-top .entry_author_image {
        float: none; }
      .author-info-after-article .author-info-top a.author-after-post {
        float: none;
        display: block;
        margin: 0 auto; }
      .author-info-after-article .author-info-top ul.author-social-icons-list {
        float: none;
        display: inline-block;
        margin: 0 auto; }
    .author-info-after-article .author-info-bottom {
      text-align: center; } }

.author-info-after-article {
  border-top: 1px solid #21759b;
  border-bottom: 1px solid #21759b;
  margin: 0 30px;
  padding: 0 10px; }
  .author-info-after-article .author-image-wrap {
    float: left; }
    .author-info-after-article .author-image-wrap img {
      margin: 0 !important;
      border-radius: 64px; }
  .author-info-after-article .author-info-top {
    margin-top: 20px; }
    .author-info-after-article .author-info-top .entry_author_image {
      float: left;
      display: inline-block;
      width: 50px;
      height: 50px;
      border-radius: 50%; }
      .author-info-after-article .author-info-top .entry_author_image img {
        margin: 0 !important;
        border-radius: 50%; }
    .author-info-after-article .author-info-top .author_image_custom {
      float: left;
      display: inline-block;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      padding: 0;
      margin: 0 !important; }
    .author-info-after-article .author-info-top a.author-after-post {
      border: 0;
      margin-top: 15px;
      margin-left: 15px;
      font-size: 24px; }
    .author-info-after-article .author-info-top ul.author-social-icons-list {
      float: right;
      display: inline-block;
      list-style: none;
      margin-top: 5px;
      margin-right: 20px;
      padding: 0; }
      .author-info-after-article .author-info-top ul.author-social-icons-list li.author-social-icons-item {
        float: left;
        margin-left: 10px; }
        .author-info-after-article .author-info-top ul.author-social-icons-list li.author-social-icons-item a {
          text-decoration: none;
          border: 0;
          font-size: 28px; }
  .author-info-after-article .author-info-bottom {
    margin: 20px 0; }
  @media screen and (max-width: 500px) {
    .author-info-after-article .author-info-top {
      width: 100%;
      text-align: center; }
      .author-info-after-article .author-info-top .entry_author_image {
        float: none; }
      .author-info-after-article .author-info-top a.author-after-post {
        float: none;
        display: block;
        margin: 0 auto; }
      .author-info-after-article .author-info-top ul.author-social-icons-list {
        float: none;
        display: inline-block;
        margin: 0 auto; }
    .author-info-after-article .author-info-bottom {
      text-align: center; } }

@media screen and (max-width: 750px) {
  .author_template {
    text-align: center; }
    .author_template .author_temp_name {
      width: 100%;
      margin: 0; }
    .author_template .author_temp_img {
      width: 100%;
      display: block;
      text-align: center; }
      .author_template .author_temp_img img {
        margin-top: 0 !important;
        margin-bottom: 20px; }
    .author_template .author_temp_bio {
      width: 100%;
      margin: 0;
      margin-bottom: 20px; } }

.author_template .author_temp_img img {
  border-radius: 50%;
  margin-top: -55px; }

.author_template .author_temp_bio p {
  margin: 0; }

.author_template .author_temp_bio ul.author_temp_social_links {
  list-style: none;
  display: inline-block;
  margin: 0;
  margin-top: 20px;
  padding: 0; }
  .author_template .author_temp_bio ul.author_temp_social_links li {
    float: left;
    margin-right: 15px; }
    .author_template .author_temp_bio ul.author_temp_social_links li:last-child {
      margin-right: 0; }
    .author_template .author_temp_bio ul.author_temp_social_links li a {
      font-size: 24px; }

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

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

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

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

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

ul, ol {
  margin: 0; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

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

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

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

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/* Button styles are in skeleton scss */
/* Forms and other fields are in skeleton scss */
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #333;
  text-decoration: none; }
  a:visited {
    color: #333; }
  a:hover, a:focus, a:active {
    color: #1a1a1a; }
  a:focus {
    outline: 0; }
  a:hover, a:active {
    outline: 0; }

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
/* ############### Site Header(Logo, icons, search) ############### */
.site-header {
  background: #333;
  min-height: 150px;
  display: flex;
  align-items: center;
  min-width: 320px; }
  .site-header .homepage-container {
    display: flex;
    align-items: center;
    padding: 0 10px; }
    @media all and (max-width: 1085px) {
      .site-header .homepage-container {
        display: block;
        padding: 0; } }
    .site-header .homepage-container .header-logo {
      position: relative;
      float: left;
      width: 30%; }
      .site-header .homepage-container .header-logo a {
        display: inline-block; }
      @media all and (max-width: 1024px) {
        .site-header .homepage-container .header-logo {
          width: 50%;
          display: inline-block;
          margin: 0 auto;
          text-align: center; }
          .site-header .homepage-container .header-logo img.header-logo-img {
            max-width: 350px;
            margin: 10px auto; } }
      @media all and (max-width: 768px) {
        .site-header .homepage-container .header-logo {
          width: 100%; }
          .site-header .homepage-container .header-logo img.header-logo-img {
            max-width: 300px;
            margin: 10px auto 0 auto; } }
    .site-header .homepage-container .header-social-icons {
      float: left;
      width: 50%;
      text-align: right;
      margin-right: 20px; }
      @media all and (max-width: 1024px) {
        .site-header .homepage-container .header-social-icons {
          text-align: center;
          margin-right: 0;
          float: none;
          width: 100%;
          margin-top: 20px; } }
      .site-header .homepage-container .header-social-icons ul.social-icons-list {
        list-style: none;
        display: inline-block;
        padding: 0; }
        .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item {
          float: left;
          margin: 0 5px;
          cursor: pointer; }
          .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item .envelope-icon:hover {
            background-color: #3c3c3c; }
          .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item .youtube-icon:hover {
            background-color: #cb2027; }
          .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item .github-icon:hover {
            background-color: #3c3c3c; }
          .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item .facebook-icon:hover {
            background-color: #3b5998; }
          .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item .twitter-icon:hover {
            background-color: #0084b4; }
          .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item .rss-icon {
            color: #FF6600; }
            .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item .rss-icon:hover {
              background-color: #FF6600; }
          .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item .social-icon {
            font-size: 28px;
            width: 60px;
            height: 60px;
            color: #fff;
            background: #777;
            border-radius: 50%;
            line-height: 58px;
            vertical-align: middle;
            text-align: center;
            border: 2px solid #555;
            transition: background-color 0.2s ease-in-out; }
            .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item .social-icon:hover {
              line-height: 54px;
              color: #fff;
              border: 4px solid #f7f7f7; }
            @media all and (max-width: 460px) {
              .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item .social-icon {
                font-size: 20px;
                width: 40px;
                height: 40px;
                line-height: 38px; }
                .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item .social-icon:hover {
                  line-height: 34px; } }
          @media all and (max-width: 1085px) {
            .site-header .homepage-container .header-social-icons ul.social-icons-list li.social-icons-item {
              float: right; } }
        @media all and (max-width: 1085px) {
          .site-header .homepage-container .header-social-icons ul.social-icons-list {
            float: right;
            padding-bottom: 0;
            padding-top: 20px;
            margin: 10px auto; } }
        @media all and (max-width: 1024px) {
          .site-header .homepage-container .header-social-icons ul.social-icons-list {
            float: none;
            text-align: center;
            padding: 0; }
            .site-header .homepage-container .header-social-icons ul.social-icons-list #social-icons-header-div {
              display: inline-block; } }
        @media all and (max-width: 768px) {
          .site-header .homepage-container .header-social-icons ul.social-icons-list {
            margin: 0; } }
      @media all and (max-width: 900px) {
        .site-header .homepage-container .header-social-icons {
          width: 100%; }
          .site-header .homepage-container .header-social-icons #social-icons-header-div {
            display: inline-block; } }
    .site-header .homepage-container .header-search {
      position: absolute;
      right: 20px;
      top: 40px; }
      .site-header .homepage-container .header-search form.search-form {
        position: relative; }
        .site-header .homepage-container .header-search form.search-form .header-search-input-field {
          width: 120px;
          background: none;
          border: 0;
          transition: all 200ms ease;
          font-size: 20px;
          border-radius: 0;
          color: #FFF;
          padding-right: 36px; }
          .site-header .homepage-container .header-search form.search-form .header-search-input-field:focus {
            background: #fff;
            border: normal;
            color: #333;
            width: 220px; }
        .site-header .homepage-container .header-search form.search-form .search-submit {
          position: absolute;
          bottom: 0;
          right: 0;
          width: 40px;
          padding: 0;
          margin: 0;
          font-family: FontAwesome;
          font-size: 20px;
          border: 0; }
          .site-header .homepage-container .header-search form.search-form .search-submit:hover {
            color: #555; }
      @media all and (max-width: 1024px) {
        .site-header .homepage-container .header-search {
          width: 100%;
          position: relative;
          right: 0;
          top: 0; }
          .site-header .homepage-container .header-search .header-search-input-field {
            width: 100% !important; } }

/* ########################### Main Navigation ########################## */
.main-navigation {
  float: left;
  width: 100%;
  background: #fff;
  /*padding: 15px 5px;*/
  text-decoration: none;
  text-transform: uppercase;
  color: #333;
  font-size: 14px;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9; }
  .main-navigation .mobile-menu-toggle {
    font-size: 24px;
    display: none;
    background: #fff; }
  .main-navigation ul.menu {
    display: flex;
    justify-content: space-around; }
    .main-navigation ul.menu li {
      float: left; }
    .main-navigation ul.menu a {
      padding: 15px 15px 10px 15px;
      height: 50px;
      width: 100%;
      display: block;
      color: #333; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-default a:hover {
      background: #C3473A !important;
      color: #fff; }
    .main-navigation ul.menu li.category-default.current-menu-item a, .main-navigation ul.menu li.category-default.current-menu-parent a {
      /*	    		background: #C3473A;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-uncategorized a:hover {
      background: #333 !important;
      color: #fff; }
    .main-navigation ul.menu li.category-uncategorized.current-menu-item a, .main-navigation ul.menu li.category-uncategorized.current-menu-parent a {
      /*	    		background: #333;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-modules a:hover {
      background: #E44D26 !important;
      color: #fff; }
    .main-navigation ul.menu li.category-modules.current-menu-item a, .main-navigation ul.menu li.category-modules.current-menu-parent a {
      /*	    		background: #E44D26;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-directives a:hover {
      background: #0084b4 !important;
      color: #fff; }
    .main-navigation ul.menu li.category-directives.current-menu-item a, .main-navigation ul.menu li.category-directives.current-menu-parent a {
      /*	    		background: #0084b4;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-services a:hover {
      background: #FF6600 !important;
      color: #fff; }
    .main-navigation ul.menu li.category-services.current-menu-item a, .main-navigation ul.menu li.category-services.current-menu-parent a {
      /*	    		background: #FF6600;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-angularjs1 a:hover {
      background: #C3473A !important;
      color: #fff; }
    .main-navigation ul.menu li.category-angularjs1.current-menu-item a, .main-navigation ul.menu li.category-angularjs1.current-menu-parent a {
      /*	    		background: #C3473A;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-angularjs2 a:hover {
      background: #C3473A !important;
      color: #fff; }
    .main-navigation ul.menu li.category-angularjs2.current-menu-item a, .main-navigation ul.menu li.category-angularjs2.current-menu-parent a {
      /*	    		background: #C3473A;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-angularjs4 a:hover {
      background: #C3473A !important;
      color: #fff; }
    .main-navigation ul.menu li.category-angularjs4.current-menu-item a, .main-navigation ul.menu li.category-angularjs4.current-menu-parent a {
      /*	    		background: #C3473A;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-demos a:hover {
      background: #0769ad !important;
      color: #fff; }
    .main-navigation ul.menu li.category-demos.current-menu-item a, .main-navigation ul.menu li.category-demos.current-menu-parent a {
      /*	    		background: #0769ad;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-tutorials a:hover {
      background: #1ab76f !important;
      color: #fff; }
    .main-navigation ul.menu li.category-tutorials.current-menu-item a, .main-navigation ul.menu li.category-tutorials.current-menu-parent a {
      /*	    		background: #1ab76f;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-books a:hover {
      background: #755100 !important;
      color: #fff; }
    .main-navigation ul.menu li.category-books.current-menu-item a, .main-navigation ul.menu li.category-books.current-menu-parent a {
      /*	    		background: #755100;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li a:hover {
      background: #C3473A;
      color: #fff; }
    .main-navigation ul.menu li.category-premium a:hover {
      background: #1c1ab7 !important;
      color: #fff; }
    .main-navigation ul.menu li.category-premium.current-menu-item a, .main-navigation ul.menu li.category-premium.current-menu-parent a {
      /*	    		background: #1c1ab7;
	    		color: #fff;*/
      background: #f3f3f3; }
    .main-navigation ul.menu li {
      /* sub menus */ }
      .main-navigation ul.menu li ul {
        display: none;
        position: absolute;
        background: #FFF;
        border-top: 1px solid #e9e9e9;
        border-bottom: 1px solid #e9e9e9;
        z-index: 1001;
        padding: 0 10px; }
  .main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0; }

/* Small menu. */
@media screen and (max-width: 900px) {
  .main-navigation .mobile-menu-toggle {
    display: block;
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    margin-left: 20px; }
  .main-navigation ul.menu {
    display: block;
    display: none; }
    .main-navigation ul.menu li {
      float: left;
      width: 100%; } }

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */ }
  .widget select {
    max-width: 100%; }

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

.hentry {
  margin: 0 0; }

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

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

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

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

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

.bypostauthor {
  display: block; }

/* RANDOM CSS */
body.search-no-results #main {
  padding: 0 50px; }

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

/*--------------------------------------------------------------
# Crayon Syntax Highlighter
--------------------------------------------------------------*/
/* plugin */
#colorbox.crayon-colorbox, #cboxOverlay.crayon-colorbox, .crayon-colorbox #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden; }

#cboxOverlay.crayon-colorbox {
  position: fixed;
  width: 100%;
  height: 100%; }

.crayon-colorbox #cboxMiddleLeft, .crayon-colorbox #cboxBottomLeft {
  clear: left; }

.crayon-colorbox #cboxContent {
  position: relative; }

.crayon-colorbox #cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

.crayon-colorbox #cboxTitle {
  display: none !important; }

.crayon-colorbox #cboxLoadingOverlay, .crayon-colorbox #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.crayon-colorbox #cboxPrevious, .crayon-colorbox #cboxNext, .crayon-colorbox #cboxClose, .crayon-colorbox #cboxSlideshow {
  cursor: pointer; }

.crayon-colorbox .cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic; }

.crayon-colorbox .cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0; }

#colorbox.crayon-colorbox, .crayon-colorbox #cboxContent, .crayon-colorbox #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

#cboxOverlay.crayon-colorbox {
  background: #000; }

#colorbox.crayon-colorbox {
  outline: 0; }

.crayon-colorbox #cboxContent {
  margin-top: 20px;
  background: #000; }

.crayon-colorbox .cboxIframe {
  background: #fff; }

.crayon-colorbox #cboxError {
  padding: 50px;
  border: 1px solid #ccc; }

.crayon-colorbox #cboxLoadedContent {
  border: 5px solid #000;
  background: #fff; }

.crayon-colorbox #cboxTitle {
  position: absolute;
  top: -20px;
  left: 0;
  color: #ccc; }

.crayon-colorbox #cboxCurrent {
  position: absolute;
  top: -20px;
  right: 0;
  color: #ccc; }

.crayon-colorbox #cboxPrevious, .crayon-colorbox #cboxNext, .crayon-colorbox #cboxSlideshow, .crayon-colorbox #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: 0; }

.crayon-colorbox #cboxPrevious:active, .crayon-colorbox #cboxNext:active, .crayon-colorbox #cboxSlideshow:active, .crayon-colorbox #cboxClose:active {
  outline: 0; }

.crayon-colorbox #cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff; }

.crayon-colorbox #cboxContent {
  margin-top: 0; }

.crayon-colorbox #cboxLoadedContent {
  border: 0; }

#crayon-main-wrap .form-table th {
  width: 100px; }

#crayon-log {
  display: none;
  max-height: 200px;
  border-color: #dfdfdf;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 1px;
  padding: 3px;
  overflow: auto;
  white-space: pre;
  margin-bottom: 5px; }

.crayon-span, .crayon-span-5, .crayon-span-10, .crayon-span-50, .crayon-span-100, .crayon-span-110 {
  line-height: 24px;
  display: inline-block; }

.crayon-span-5 {
  min-width: 5px; }

.crayon-span-10 {
  min-width: 10px; }

.crayon-span-50 {
  min-width: 50px; }

.crayon-span-100 {
  min-width: 100px; }

.crayon-span-110 {
  min-width: 117px; }

.crayon-span-margin {
  margin-left: 5px; }

#height_mode, #width_mode {
  min-width: 65px; }

.crayon-error {
  color: red; }

.crayon-success {
  color: #00f; }

.crayon-warning {
  color: #ff8000; }

.crayon-help {
  min-height: 30px;
  padding: 5px 10px; }

.crayon-help .crayon-help-close, .crayon-help .crayon-help-close:active, .crayon-help .crayon-help-close:hover {
  text-decoration: none;
  float: right;
  color: #000; }

.crayon-help span, .crayon-help a {
  margin: 0;
  padding: 0;
  font-size: 12px; }

#crayon-log-text {
  font: 11px/13px Monaco,'MonacoRegular','Courier New',monospace; }

#crayon-log-controls {
  float: left;
  margin-right: 5px; }

.crayon-table {
  font-size: 12px;
  border: 1px solid #999;
  padding: 0;
  margin: 0;
  margin-top: 12px; }

.crayon-table td {
  vertical-align: top;
  border-bottom: 1px solid #aaa;
  padding: 0 6px;
  margin: 0;
  background: #eee; }

.crayon-table-light td {
  background: #f8f8f8; }

.crayon-table-header td {
  font-weight: bold;
  background: #ccc; }

.crayon-table-last td, .crayon-table tr:last-child td {
  border: 0; }

#lang-info div {
  padding: 5px 0; }

.crayon-table .not-parsed {
  color: red; }

.crayon-table .parsed-with-errors {
  color: #f90; }

.crayon-table .successfully-parsed {
  color: #77a000; }

#crayon-live-preview, #crayon-log-wrapper {
  padding: 0;
  width: 100%;
  float: left;
  clear: both; }

#crayon-live-preview {
  float: none;
  padding: 0; }

#crayon-logo {
  text-align: center; }

#crayon-info, #crayon-info td {
  border: 0;
  padding: 0 5px;
  margin: 0; }

.crayon-admin-button {
  display: inline-block;
  text-align: center; }

#crayon-subsection-langs-info {
  margin-top: 5px; }

#crayon-theme-editor-admin-buttons {
  display: inline; }

#crayon-theme-editor-admin-buttons .crayon-admin-button {
  margin-left: 5px; }

#crayon-theme-info {
  display: table;
  padding: 0;
  margin: 0;
  margin-top: 5px; }

#crayon-theme-info > div {
  display: table-cell;
  vertical-align: middle; }

#crayon-theme-info .content * {
  float: left; }

#crayon-theme-info .field {
  font-weight: bold; }

#crayon-theme-info .field, #crayon-theme-info .value {
  margin-left: 5px; }

#crayon-theme-info .description.value {
  font-style: italic;
  color: #999; }

#crayon-theme-info .type {
  text-align: center;
  min-width: 120px;
  font-weight: bold;
  border-right: 1px solid #ccc;
  padding-right: 5px; }

#crayon-theme-info .type.stock {
  color: #666; }

#crayon-theme-info .type.user {
  color: #5b9a00; }

#crayon-editor-table td {
  vertical-align: top; }

.small-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin: 5px 5px 0 0; }

#twitter-icon {
  background: url(http://www.angularjs4u.com/wp-content/plugins/crayon-syntax-highlighter/css/images/xtwitter.png.pagespeed.ic.devZ-_So7P.png); }

#gmail-icon {
  background: url(http://www.angularjs4u.com/wp-content/plugins/crayon-syntax-highlighter/css/images/xgoogle.png.pagespeed.ic.kYt-ctGz0c.png); }

#docs-icon {
  background: url(http://www.angularjs4u.com/wp-content/plugins/crayon-syntax-highlighter/css/images/xdocs.png.pagespeed.ic.74qix6eelX.png); }

#git-icon {
  background: url(http://www.angularjs4u.com/wp-content/plugins/crayon-syntax-highlighter/css/images/xgithub.png.pagespeed.ic.cq05jlMuXz.png); }

#wp-icon {
  background: url(http://www.angularjs4u.com/wp-content/plugins/crayon-syntax-highlighter/css/images/xwordpress-blue.png.pagespeed.ic.Ia2-9ZEvR7.png); }

#donate-icon {
  background: url(http://www.angularjs4u.com/wp-content/plugins/crayon-syntax-highlighter/css/images/xdonate.png.pagespeed.ic.JGglthSK7b.png);
  width: 75px; }

#crayon-donate, #crayon-donate input {
  margin: 0;
  display: inline;
  padding: 0; }

#crayon-theme-editor-info a {
  text-decoration: none !important;
  font-style: italic !important;
  color: #666 !important; }

#crayon-main-wrap .form-table .note {
  font-style: italic;
  color: #999; }

#crayon-change-code-text {
  width: 400px;
  height: 300px; }

.crayon-syntax {
  overflow: hidden !important;
  position: relative !important;
  direction: ltr;
  text-align: left;
  box-sizing: border-box;
  direction: ltr !important;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-text-size-adjust: none; }

.crayon-syntax div {
  background: 0;
  border: 0;
  padding: 0;
  margin: 0;
  text-align: left; }

.crayon-syntax.crayon-loading {
  visibility: hidden; }

.crayon-syntax, .crayon-syntax .crayon-main, .crayon-syntax .crayon-toolbar, .crayon-syntax .crayon-info, .crayon-syntax .crayon-plain, .crayon-syntax .crayon-code {
  width: 100%; }

.crayon-syntax .crayon-main, .crayon-syntax .crayon-plain {
  overflow: auto; }

.crayon-syntax, .crayon-syntax .crayon-main, .crayon-syntax .crayon-plain, .crayon-syntax .crayon-table {
  padding: 0;
  margin: 0; }

.crayon-syntax-inline {
  margin: 0 2px;
  padding: 0 2px; }

.crayon-syntax .crayon-table {
  border: none !important;
  background: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  width: auto !important;
  border-spacing: 0 !important;
  border-collapse: collapse !important;
  table-layout: auto !important; }

.crayon-syntax .crayon-table td, .crayon-syntax .crayon-table tr {
  padding: 0 !important;
  border: none !important;
  background: 0;
  vertical-align: top !important;
  margin: 0 !important; }

.crayon-syntax .crayon-invisible {
  display: none !important; }

.crayon-plain-tag {
  margin-bottom: 12px; }

.crayon-popup .crayon-plain {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 100 !important;
  position: relative !important; }

.crayon-popup-window {
  background: #fff; }

.crayon-syntax .crayon-num {
  text-align: center;
  padding: 0 5px;
  margin: 0; }

.crayon-syntax .crayon-toolbar {
  position: relative;
  overflow: hidden;
  z-index: 4; }

.crayon-syntax .crayon-info {
  position: absolute;
  overflow: hidden;
  display: none;
  z-index: 3;
  padding: 0;
  min-height: 18px;
  line-height: 18px; }

.crayon-syntax .crayon-info div {
  padding: 2px !important;
  text-align: center; }

.crayon-syntax .crayon-toolbar span {
  padding: 0 4px !important; }

.crayon-syntax .crayon-toolbar .crayon-button {
  display: inline;
  float: left !important;
  position: relative;
  width: 24px;
  background-repeat: no-repeat;
  line-height: 15px;
  border: 0;
  text-decoration: none; }

.crayon-toolbar .crayon-button, .crayon-toolbar .crayon-button:hover, .crayon-toolbar .crayon-button.crayon-pressed:hover {
  background-position: 0 center; }

.crayon-toolbar .crayon-button.crayon-pressed, .crayon-toolbar .crayon-button:active, .crayon-toolbar .crayon-button.crayon-pressed:active {
  background-position: -24px 0; }

.crayon-toolbar .crayon-button.crayon-popup-button .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-popup-button:hover .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-popup-button.crayon-pressed:hover .crayon-button-icon {
  background-position: 0 0; }

.crayon-toolbar .crayon-button.crayon-copy-button .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-copy-button:hover .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-copy-button.crayon-pressed:hover .crayon-button-icon {
  background-position: 0 -16px; }

.crayon-toolbar .crayon-button.crayon-nums-button .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-nums-button:hover .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-nums-button.crayon-pressed:hover .crayon-button-icon {
  background-position: 0 -32px; }

.crayon-toolbar .crayon-button.crayon-plain-button .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-plain-button:hover .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-plain-button.crayon-pressed:hover .crayon-button-icon {
  background-position: 0 -48px; }

.crayon-toolbar .crayon-button.crayon-mixed-button .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-mixed-button:hover .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-mixed-button.crayon-pressed:hover .crayon-button-icon {
  background-position: 0 -64px; }

.crayon-toolbar .crayon-button.crayon-minimize .crayon-button-icon {
  background-position: 0 -80px;
  background-color: transparent !important; }

.crayon-toolbar .crayon-button.crayon-expand-button .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-expand-button:hover .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-expand-button.crayon-pressed:hover .crayon-button-icon {
  background-position: 0 -96px; }

.crayon-toolbar .crayon-button.crayon-wrap-button .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-wrap-button:hover .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-wrap-button.crayon-pressed:hover .crayon-button-icon {
  background-position: 0 -112px; }

.crayon-toolbar .crayon-button.crayon-popup-button.crayon-pressed .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-popup-button:active .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-popup-button.crayon-pressed:active .crayon-button-icon {
  background-position: -24px 0; }

.crayon-toolbar .crayon-button.crayon-copy-button.crayon-pressed .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-copy-button:active .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-copy-button.crayon-pressed:active .crayon-button-icon {
  background-position: -24px -16px; }

.crayon-toolbar .crayon-button.crayon-nums-button.crayon-pressed .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-nums-button:active .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-nums-button.crayon-pressed:active .crayon-button-icon {
  background-position: -24px -32px; }

.crayon-toolbar .crayon-button.crayon-plain-button.crayon-pressed .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-plain-button:active .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-plain-button.crayon-pressed:active .crayon-button-icon {
  background-position: -24px -48px; }

.crayon-toolbar .crayon-button.crayon-mixed-button.crayon-pressed .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-mixed-button:active .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-mixed-button.crayon-pressed:active .crayon-button-icon {
  background-position: -24px -64px; }

.crayon-toolbar .crayon-button.crayon-minimize .crayon-button-icon {
  background-position: -24px -80px;
  background-color: transparent !important; }

.crayon-toolbar .crayon-button.crayon-expand-button.crayon-pressed .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-expand-button:active .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-expand-button.crayon-pressed:active .crayon-button-icon {
  background-position: -24px -96px; }

.crayon-toolbar .crayon-button.crayon-wrap-button.crayon-pressed .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-wrap-button:active .crayon-button-icon, .crayon-toolbar .crayon-button.crayon-wrap-button.crayon-pressed:active .crayon-button-icon {
  background-position: -24px -112px; }

.crayon-syntax .crayon-toolbar .crayon-language {
  padding-right: 8px !important; }

.crayon-syntax .crayon-title, .crayon-syntax .crayon-language {
  float: left; }

.crayon-main::-webkit-scrollbar, .crayon-plain::-webkit-scrollbar {
  height: 6px;
  overflow: visible;
  width: 6px;
  background: #eee; }

.crayon-main::-webkit-scrollbar-thumb, .crayon-plain::-webkit-scrollbar-thumb {
  background-color: #ccc;
  background-clip: padding-box;
  border: 1px solid #aaa;
  box-shadow: inset 0 0 2px #999;
  min-height: 8px;
  padding: 0;
  border-width: 1px; }

.crayon-main::-webkit-scrollbar-button, .crayon-plain::-webkit-scrollbar-button {
  height: 0;
  width: 0;
  padding: 0; }

.crayon-main::-webkit-scrollbar-track, .crayon-plain::-webkit-scrollbar-track {
  background-clip: padding-box;
  border: solid transparent;
  border-width: 0 0 0 4px;
  border: 1px solid #bbb;
  border-right: 0;
  border-bottom: 0; }

.crayon-main::-webkit-scrollbar-corner, .crayon-plain::-webkit-scrollbar-corner {
  background: #eee; }

.crayon-main::-webkit-scrollbar-thumb:hover, .crayon-plain::-webkit-scrollbar-thumb:hover {
  background: #aaa;
  border: 1px solid #777;
  box-shadow: inset 0 0 2px #777; }

.crayon-syntax .crayon-pre, .crayon-syntax pre {
  color: #000;
  white-space: pre;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: none !important;
  border: none !important;
  tab-size: 4; }

.crayon-syntax .crayon-line {
  padding: 0 5px; }

.crayon-syntax.crayon-wrapped .crayon-line {
  white-space: pre-wrap !important;
  height: auto;
  word-break: break-all; }

.crayon-syntax-inline .crayon-pre, .crayon-syntax-inline pre {
  white-space: normal; }

.crayon-syntax-inline-nowrap .crayon-pre, .crayon-syntax-inline-nowrap pre {
  white-space: pre; }

.crayon-syntax {
  font-family: Monaco,'MonacoRegular','Courier New',monospace;
  font-weight: 500; }

.crayon-syntax .crayon-toolbar *::selection, .crayon-syntax .crayon-nums *::selection {
  background: transparent; }

.crayon-table .crayon-nums-content {
  white-space: nowrap; }

.crayon-syntax .crayon-num, .crayon-syntax .crayon-pre .crayon-line, .crayon-syntax .crayon-toolbar *, .crayon-syntax .crayon-pre * {
  font-family: inherit;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  height: inherit; }

.crayon-syntax .crayon-toolbar .crayon-button .crayon-button-icon {
  background-image: url(http://www.angularjs4u.com/wp-content/plugins/crayon-syntax-highlighter/css/images/toolbar/xbuttons.png.pagespeed.ic.jaVRj2xmD4.png);
  height: 16px !important;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px; }

.crayon-syntax .crayon-toolbar .crayon-tools {
  position: absolute;
  right: 0; }

.crayon-syntax.crayon-expanded {
  position: absolute !important;
  margin: 0 !important; }

.crayon-syntax.crayon-expanded .crayon-main {
  overflow: hidden !important; }

.crayon-placeholder {
  width: 100% !important; }

.crayon-toolbar-visible .crayon-toolbar {
  position: relative !important;
  margin-top: 0 !important;
  display: block !important; }

.crayon-syntax.crayon-expanded .crayon-toolbar .crayon-tools {
  position: relative;
  right: auto;
  float: left !important; }

.crayon-syntax .crayon-plain-wrap {
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important; }

.crayon-syntax .crayon-plain {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  padding: 0 5px;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-shadow: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  white-space: pre;
  word-wrap: normal;
  overflow: auto;
  resize: none;
  color: #000;
  background: #fff; }

.crayon-wrapped .crayon-plain {
  white-space: pre-wrap; }

.bbp-body .crayon-syntax {
  clear: none !important; }

.crayon-minimized .crayon-toolbar {
  cursor: pointer; }

.crayon-minimized .crayon-plain-wrap, .crayon-minimized .crayon-main, .crayon-minimized .crayon-toolbar .crayon-tools * {
  display: none !important; }

.crayon-minimized .crayon-toolbar .crayon-tools .crayon-minimize {
  display: block !important; }

.crayon-minimized .crayon-toolbar {
  position: relative !important; }

.crayon-syntax.crayon-minimized .crayon-toolbar {
  border-bottom: none !important; }

.crayon-te *, #crayon-te-bar-content {
  font-family: "Lucida Grande", Arial, sans-serif !important;
  font-size: 12px; }

.crayon-te input[type="text"], .crayon-te textarea {
  background: #f9f9f9;
  border: 1px solid #ccc;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
  padding: 2px 4px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid; }

.crayon-te #crayon-code {
  font-family: monospace !important; }

#crayon-te-content, #crayon-te-table {
  width: 100%;
  height: auto !important; }

#crayon-range, #crayon-mark {
  width: 100px; }

#crayon-te-table th, #crayon-te-table td {
  vertical-align: top;
  text-align: left; }

.rtl #crayon-te-table th, .rtl #crayon-te-table td {
  text-align: right; }

#crayon-te-table .crayon-tr-center td, #crayon-te-table .crayon-tr-center th {
  vertical-align: middle; }

#crayon-te-table .crayon-nowrap {
  white-space: nowrap; }

#crayon-te-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }

#crayon-te-bar-content {
  border: 1px solid #666;
  border-bottom: 0;
  height: 26px;
  line-height: 25px;
  padding: 0 8px;
  padding-right: 0;
  background-color: #222;
  color: #cfcfcf; }

#crayon-te-bar-content a {
  line-height: 25px;
  padding: 5px 10px;
  color: #ddd;
  font-weight: bold;
  text-decoration: none !important; }

#crayon-te-bar-content a:hover {
  color: #fff; }

.crayon-te-seperator {
  color: #666;
  margin: 0;
  padding: 0; }

#crayon-te-bar-block {
  height: 34px;
  width: 100%; }

#crayon-te-title {
  float: left; }

#crayon-te-controls {
  float: right; }

#crayon-url-th {
  vertical-align: top !important;
  padding-top: 5px; }

.crayon-te-heading {
  font-size: 14px;
  font-weight: bold; }

#crayon-te-settings-info {
  text-align: center; }

.crayon-te-section {
  font-weight: bold;
  padding: 0 10px; }

#crayon-te-sub-section {
  margin-left: 10px; }

#crayon-te-sub-section .crayon-te-section {
  font-weight: normal;
  padding: 0; }

#crayon-code {
  height: 200px;
  white-space: pre; }

#crayon-code, #crayon-url {
  width: 555px !important; }

.crayon-disabled {
  background: #eee !important; }

.qt_crayon_highlight {
  background-image: -ms-linear-gradient(bottom, #daf2ff, white) !important;
  background-image: -moz-linear-gradient(bottom, #daf2ff, white) !important;
  background-image: -o-linear-gradient(bottom, #daf2ff, white) !important;
  background-image: -webkit-linear-gradient(bottom, #daf2ff, white) !important;
  background-image: linear-gradient(bottom, #daf2ff, white) !important; }

.qt_crayon_highlight:hover {
  background: #ddebf2 !important; }

.crayon-tag-editor-button-wrapper {
  display: inline-block; }

.mce_crayon_tinymce {
  padding: 0 !important;
  margin: 2px 3px !important; }

.mce-i-crayon_tinymce, .mce_crayon_tinymce {
  background: url(../images/crayon_tinymce.png) 0 0 !important; }

a.mce_crayon_tinymce {
  background-position: 2px 0 !important; }

.wp_themeSkin .mceButtonEnabled:hover span.mce_crayon_tinymce, .wp_themeSkin .mceButtonActive span.mce_crayon_tinymce {
  background-position: -20px 0; }

.wp_themeSkin span.mce_crayon_tinymce {
  background: none !important; }

#crayon-te-table {
  margin-top: 26px;
  padding: 10px;
  border-collapse: separate !important;
  border-spacing: 2px !important; }

#crayon-te-table th {
  width: 100px; }

#crayon-te-clear {
  margin-left: 10px;
  color: #666;
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-left: 8px; }

#crayon-title {
  width: 360px; }

#TB_window.crayon-te-ajax {
  overflow: auto !important; }

#TB_window.crayon-te-ajax, #TB_window.crayon-te-ajax #TB_ajaxContent, #TB_window.crayon-te-ajax #TB_title {
  width: 680px !important; }

#TB_window.crayon-te-ajax #TB_ajaxContent {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  height: auto !important;
  margin-top: 28px !important; }

#TB_window.crayon-te-ajax #TB_title {
  position: fixed !important; }

#TB_window.crayon-te-ajax #TB_title .crayon-te-submit {
  margin-top: 3px !important;
  float: right !important; }

#TB_window.crayon-te-ajax a {
  color: #2587e2;
  text-decoration: none; }

#TB_window.crayon-te-ajax a:hover {
  color: #499ce9; }

.crayon-te-quote {
  background: #ddd;
  padding: 0 2px; }

#crayon-te-submit-wrapper {
  display: none; }

#crayon-te-clear {
  display: none;
  margin: 0;
  margin-top: 10px; }

.crayon-syntax-pre {
  background: red;
  white-space: pre;
  overflow: auto;
  display: block;
  word-wrap: break-word; }

.crayon-question {
  padding: 1px 4px !important;
  text-decoration: none !important;
  color: #83b3cb !important;
  border-radius: 10px !important;
  height: 15px !important;
  width: 15px !important; }

.crayon-question:hover {
  background: #83b3cb !important;
  color: #fff !important;
  height: 15px !important;
  width: 15px !important; }

.crayon-setting-changed, .crayon-setting-selected {
  background: #fffaad !important; }

.crayon-question:hover {
  color: #fff;
  background: #a6d6ef; }

#crayon-te-warning {
  display: none; }

.crayon-te-info {
  padding: 5px !important;
  margin: 2px 0 !important; }

#crayon-te-submit {
  margin-bottom: 5px; }

/* theme */
.crayon-theme-sublime-text {
  border-width: 1px !important;
  border-color: #999 !important;
  border-style: solid !important;
  text-shadow: none !important;
  background: #272822 !important; }

.crayon-theme-sublime-text-inline {
  border-width: 1px !important;
  border-color: #999 !important;
  border-style: solid !important;
  background: #272822 !important; }

.crayon-theme-sublime-text .crayon-table .crayon-nums {
  background: #272822 !important;
  color: #868686 !important; }

.crayon-theme-sublime-text .crayon-striped-line {
  background: #272822 !important; }

.crayon-theme-sublime-text .crayon-striped-num {
  background: #32322a !important;
  color: #868686 !important; }

.crayon-theme-sublime-text .crayon-marked-line {
  background: #272822 !important;
  border-width: 1px !important;
  border-color: #272822 !important; }

.crayon-theme-sublime-text .crayon-marked-num {
  color: #868686 !important;
  background: #272822 !important;
  border-width: 1px !important;
  border-color: #272822 !important; }

.crayon-theme-sublime-text .crayon-marked-line.crayon-striped-line {
  background: #272822 !important; }

.crayon-theme-sublime-text .crayon-marked-num.crayon-striped-num {
  background: #272822 !important;
  color: #868686 !important; }

.crayon-theme-sublime-text .crayon-marked-line.crayon-top {
  border-top-style: solid !important; }

.crayon-theme-sublime-text .crayon-marked-num.crayon-top {
  border-top-style: solid !important; }

.crayon-theme-sublime-text .crayon-marked-line.crayon-bottom {
  border-bottom-style: solid !important; }

.crayon-theme-sublime-text .crayon-marked-num.crayon-bottom {
  border-bottom-style: solid !important; }

.crayon-theme-sublime-text .crayon-info {
  background: #272822 !important;
  border-bottom-width: 1px !important;
  border-bottom-color: #e6db5d !important;
  border-bottom-style: solid !important;
  color: #e6db5d !important; }

.crayon-theme-sublime-text .crayon-toolbar {
  background: #ddd !important;
  border-bottom-width: 1px !important;
  border-bottom-color: #bbb !important;
  border-bottom-style: solid !important; }

.crayon-theme-sublime-text .crayon-toolbar > div {
  float: left !important; }

.crayon-theme-sublime-text .crayon-toolbar .crayon-tools {
  float: right !important; }

.crayon-theme-sublime-text .crayon-title {
  color: #333 !important; }

.crayon-theme-sublime-text .crayon-language {
  color: #999 !important; }

.crayon-theme-sublime-text .crayon-button {
  background-color: #ddd !important; }

.crayon-theme-sublime-text .crayon-button:hover {
  background-color: #eee !important;
  color: #666; }

.crayon-theme-sublime-text .crayon-button.crayon-pressed:hover {
  background-color: #eee !important;
  color: #666; }

.crayon-theme-sublime-text .crayon-button.crayon-pressed {
  background-color: #bcbcbc !important;
  color: #fff; }

.crayon-theme-sublime-text .crayon-button.crayon-pressed:active {
  background-color: #bcbcbc !important;
  color: #fff; }

.crayon-theme-sublime-text .crayon-button:active {
  background-color: #bcbcbc !important;
  color: #fff; }

.crayon-theme-sublime-text .crayon-pre .crayon-c {
  color: #75715e !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-s {
  color: #e6db5d !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-p {
  color: #b85c00 !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-ta {
  color: #f8f8f2 !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-k {
  color: #66d9ef !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-st {
  color: #66d9ef !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-r {
  color: #66d9ef !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-t {
  color: #a6e22d !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-m {
  color: #66d9ef !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-i {
  color: #f8f8f2 !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-e {
  color: #f92650 !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-v {
  color: #f8f8f2 !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-cn {
  color: #ae81ff !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-o {
  color: #f8f8f2 !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-sy {
  color: #f8f8f2 !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-n {
  color: #666 !important;
  font-style: italic !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-f {
  color: #999 !important; }

.crayon-theme-sublime-text .crayon-pre .crayon-h {
  color: #006fe0 !important; }

.crayon-theme-sublime-text .crayon-pre {
  color: #f8f8f2 !important; }

/* monaco font */
@font-face {
  font-family: 'MonacoRegular';
  src: url("wp-content/plugins/crayon-syntax-highlighter/fonts/monaco/monaco-webfont.eot");
  src: url("wp-content/plugins/crayon-syntax-highlighter/fonts/monaco/monaco-webfont.eot?#iefix") format("embedded-opentype"), url("wp-content/plugins/crayon-syntax-highlighter/fonts/monaco/monaco-webfont.woff") format("woff"), url("wp-content/plugins/crayon-syntax-highlighter/fonts/monaco/monaco-webfont.ttf") format("truetype"), url("wp-content/plugins/crayon-syntax-highlighter/fonts/monaco/monaco-webfont.svg#MonacoRegular") format("svg");
  font-weight: normal;
  font-style: normal; }

.crayon-font-monaco * {
  font-family: Monaco, "MonacoRegular", "Courier New", monospace !important; }

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