/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: Verdana, sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}
/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8+, and Opera
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* Контейнеры без отступов */
.c_1,
.c_2,
.c_3,
.c_4,
.c_5,
.c_6,
.c_7,
.c_8,
.c_9,
.c_10,
.c_11,
.c_12,
.c_13,
.c_14,
.c_15,
.c_16,
.c_17,
.c_18,
.c_19,
.c_20,
.c_21,
.c_22,
.c_23,
.c_24 {
  display: inline-block;
  vertical-align: top;
}
.c_1 {
  width: 44px;
}
.c_2 {
  width: 88px;
}
.c_3 {
  width: 132px;
}
.c_4 {
  width: 176px;
}
.c_5 {
  width: 220px;
}
.c_6 {
  width: 264px;
}
.c_7 {
  width: 308px;
}
.c_8 {
  width: 352px;
}
.c_9 {
  width: 396px;
}
.c_10 {
  width: 440px;
}
.c_11 {
  width: 484px;
}
.c_12 {
  width: 528px;
}
.c_13 {
  width: 572px;
}
.c_14 {
  width: 616px;
}
.c_15 {
  width: 660px;
}
.c_16 {
  width: 704px;
}
.c_17 {
  width: 748px;
}
.c_18 {
  width: 792px;
}
.c_19 {
  width: 836px;
}
.c_20 {
  width: 880px;
}
.c_21 {
  width: 924px;
}
.c_22 {
  width: 968px;
}
.c_23 {
  width: 1012px;
}
.c_24 {
  width: 1056px;
}
/* Контейнеры с отступами */
.g_1,
.g_2,
.g_3,
.g_4,
.g_5,
.g_6,
.g_7,
.g_8,
.g_9,
.g_10,
.g_11,
.g_12,
.g_13,
.g_14,
.g_15,
.g_16,
.g_17,
.g_18,
.g_19,
.g_20,
.g_21,
.g_22,
.g_23,
.g_24 {
  display: inline-block;
  vertical-align: top;
}
.g_1 {
  margin-left: 6px;
  margin-right: 6px;
  width: 32px;
}
.g_2 {
  margin-left: 6px;
  margin-right: 6px;
  width: 76px;
}
.g_3 {
  margin-left: 6px;
  margin-right: 6px;
  width: 120px;
}
.g_4 {
  margin-left: 6px;
  margin-right: 6px;
  width: 164px;
}
.g_5 {
  margin-left: 6px;
  margin-right: 6px;
  width: 208px;
}
.g_6 {
  margin-left: 6px;
  margin-right: 6px;
  width: 252px;
}
.g_7 {
  margin-left: 6px;
  margin-right: 6px;
  width: 296px;
}
.g_8 {
  margin-left: 6px;
  margin-right: 6px;
  width: 340px;
}
.g_9 {
  margin-left: 6px;
  margin-right: 6px;
  width: 384px;
}
.g_10 {
  margin-left: 6px;
  margin-right: 6px;
  width: 428px;
}
.g_11 {
  margin-left: 6px;
  margin-right: 6px;
  width: 472px;
}
.g_12 {
  margin-left: 6px;
  margin-right: 6px;
  width: 516px;
}
.g_13 {
  margin-left: 6px;
  margin-right: 6px;
  width: 560px;
}
.g_14 {
  margin-left: 6px;
  margin-right: 6px;
  width: 604px;
}
.g_15 {
  margin-left: 6px;
  margin-right: 6px;
  width: 648px;
}
.g_16 {
  margin-left: 6px;
  margin-right: 6px;
  width: 692px;
}
.g_17 {
  margin-left: 6px;
  margin-right: 6px;
  width: 736px;
}
.g_18 {
  margin-left: 6px;
  margin-right: 6px;
  width: 780px;
}
.g_19 {
  margin-left: 6px;
  margin-right: 6px;
  width: 824px;
}
.g_20 {
  margin-left: 6px;
  margin-right: 6px;
  width: 868px;
}
.g_21 {
  margin-left: 6px;
  margin-right: 6px;
  width: 912px;
}
.g_22 {
  margin-left: 6px;
  margin-right: 6px;
  width: 956px;
}
.g_23 {
  margin-left: 6px;
  margin-right: 6px;
  width: 1000px;
}
.g_24 {
  margin-left: 6px;
  margin-right: 6px;
  width: 1044px;
}
/* Притягивание */
.f_n {
  float: none;
}
.f_l {
  float: left;
}
.f_r {
  float: right;
}
/* Ширина (проценты) */
.w_10 {
  width: 10%;
}
.w_20 {
  width: 20%;
}
.w_25 {
  width: 25%;
}
.w_30 {
  width: 30%;
}
.w_33 {
  width: 33.33%;
}
.w_40 {
  width: 40%;
}
.w_50 {
  width: 50%;
}
.w_60 {
  width: 60%;
}
.w_70 {
  width: 70%;
}
.w_75 {
  width: 75%;
}
.w_80 {
  width: 80%;
}
.w_90 {
  width: 90%;
}
.w_100 {
  width: 100%;
}
.w_fit1 {
  width: 100%;
}
.w_fit2 {
  width: 50%;
}
.w_fit3 {
  width: 33.33%;
}
.w_fit4 {
  width: 25%;
}
.w_fit5 {
  width: 20%;
}
.w_fit6 {
  width: 16.66%;
}
.w_fit7 {
  width: 14.28%;
}
.w_fit8 {
  width: 12.5%;
}
.w_fit9 {
  width: 11.11%;
}
.w_fit10 {
  width: 10%;
}
/* Отступы */
.m_0 {
  margin: 0 !important;
}
.m_1 {
  margin: 1px !important;
}
.m_2 {
  margin: 2px !important;
}
.m_3 {
  margin: 3px !important;
}
.m_5 {
  margin: 5px !important;
}
.m_6 {
  margin: 6px !important;
}
.m_7 {
  margin: 7px !important;
}
.m_8 {
  margin: 8px !important;
}
.m_10 {
  margin: 10px !important;
}
.m_15 {
  margin: 15px !important;
}
.mt_0 {
  margin-top: 0 !important;
}
.mt_1 {
  margin-top: 1px !important;
}
.mt_2 {
  margin-top: 2px !important;
}
.mt_3 {
  margin-top: 3px !important;
}
.mt_5 {
  margin-top: 5px !important;
}
.mt_6 {
  margin-top: 6px !important;
}
.mt_7 {
  margin-top: 7px !important;
}
.mt_8 {
  margin-top: 8px !important;
}
.mt_10 {
  margin-top: 10px !important;
}
.mt_15 {
  margin-top: 15px !important;
}
.mr_0 {
  margin-right: 0 !important;
}
.mr_1 {
  margin-right: 1px !important;
}
.mr_2 {
  margin-right: 2px !important;
}
.mr_3 {
  margin-right: 3px !important;
}
.mr_5 {
  margin-right: 5px !important;
}
.mr_6 {
  margin-right: 6px !important;
}
.mr_7 {
  margin-right: 7px !important;
}
.mr_8 {
  margin-right: 8px !important;
}
.mr_10 {
  margin-right: 10px !important;
}
.mr_15 {
  margin-right: 15px !important;
}
.mb_0 {
  margin-bottom: 0 !important;
}
.mb_1 {
  margin-bottom: 1px !important;
}
.mb_2 {
  margin-bottom: 2px !important;
}
.mb_3 {
  margin-bottom: 3px !important;
}
.mb_5 {
  margin-bottom: 5px !important;
}
.mb_6 {
  margin-bottom: 6px !important;
}
.mb_7 {
  margin-bottom: 7px !important;
}
.mb_8 {
  margin-bottom: 8px !important;
}
.mb_10 {
  margin-bottom: 10px !important;
}
.mb_15 {
  margin-bottom: 15px !important;
}
.ml_0 {
  margin-left: 0 !important;
}
.ml_1 {
  margin-left: 1px !important;
}
.ml_2 {
  margin-left: 2px !important;
}
.ml_3 {
  margin-left: 3px !important;
}
.ml_5 {
  margin-left: 5px !important;
}
.ml_6 {
  margin-left: 6px !important;
}
.ml_7 {
  margin-left: 7px !important;
}
.ml_8 {
  margin-left: 8px !important;
}
.ml_10 {
  margin-left: 10px !important;
}
.ml_15 {
  margin-left: 15px !important;
}
.p_0 {
  padding: 0 !important;
}
.p_1 {
  padding: 1px !important;
}
.p_2 {
  padding: 2px !important;
}
.p_3 {
  padding: 3px !important;
}
.p_5 {
  padding: 5px !important;
}
.p_6 {
  padding: 6px !important;
}
.p_7 {
  padding: 7px !important;
}
.p_8 {
  padding: 8px !important;
}
.p_10 {
  padding: 10px !important;
}
.p_15 {
  padding: 15px !important;
}
.pt_0 {
  padding-top: 0 !important;
}
.pt_1 {
  padding-top: 1px !important;
}
.pt_2 {
  padding-top: 2px !important;
}
.pt_3 {
  padding-top: 3px !important;
}
.pt_5 {
  padding-top: 5px !important;
}
.pt_6 {
  padding-top: 6px !important;
}
.pt_7 {
  padding-top: 7px !important;
}
.pt_8 {
  padding-top: 8px !important;
}
.pt_10 {
  padding-top: 10px !important;
}
.pt_15 {
  padding-top: 15px !important;
}
.pr_0 {
  padding-right: 0 !important;
}
.pr_1 {
  padding-right: 1px !important;
}
.pr_2 {
  padding-right: 2px !important;
}
.pr_3 {
  padding-right: 3px !important;
}
.pr_5 {
  padding-right: 5px !important;
}
.pr_6 {
  padding-right: 6px !important;
}
.pr_7 {
  padding-right: 7px !important;
}
.pr_8 {
  padding-right: 8px !important;
}
.pr_10 {
  padding-right: 10px !important;
}
.pr_15 {
  padding-right: 15px !important;
}
.pb_0 {
  padding-bottom: 0 !important;
}
.pb_1 {
  padding-bottom: 1px !important;
}
.pb_2 {
  padding-bottom: 2px !important;
}
.pb_3 {
  padding-bottom: 3px !important;
}
.pb_5 {
  padding-bottom: 5px !important;
}
.pb_6 {
  padding-bottom: 6px !important;
}
.pb_7 {
  padding-bottom: 7px !important;
}
.pb_8 {
  padding-bottom: 8px !important;
}
.pb_10 {
  padding-bottom: 10px !important;
}
.pb_15 {
  padding-bottom: 15px !important;
}
.pl_0 {
  padding-left: 0 !important;
}
.pl_1 {
  padding-left: 1px !important;
}
.pl_2 {
  padding-left: 2px !important;
}
.pl_3 {
  padding-left: 3px !important;
}
.pl_5 {
  padding-left: 5px !important;
}
.pl_6 {
  padding-left: 6px !important;
}
.pl_7 {
  padding-left: 7px !important;
}
.pl_8 {
  padding-left: 8px !important;
}
.pl_10 {
  padding-left: 10px !important;
}
.pl_15 {
  padding-left: 15px !important;
}
body {
  background: url("https://odnokartinki.ru/wp-content/themes/seTheme/css/../img/bg-top.png") no-repeat center top, url("https://odnokartinki.ru/wp-content/themes/seTheme/css/../img/bg-btm.png") no-repeat center bottom, url("https://odnokartinki.ru/wp-content/themes/seTheme/css/../img/bg-mid.png") repeat-y center top, url("https://odnokartinki.ru/wp-content/themes/seTheme/css/../img/bg1.png") repeat-x left top, url("https://odnokartinki.ru/wp-content/themes/seTheme/css/../img/bg2.png") repeat-x left bottom, url("https://odnokartinki.ru/wp-content/themes/seTheme/css/../img/bg.png") repeat left top;
}
.workspace {
  margin: 0 auto;
  padding: 0 6px;
  width: 1068px;
}
.workspace > .wrap {
  padding: 0 6px;
  width: 1056px;
}
#premain {
  padding-top: 12px;
}
#main {
  padding-top: 6px;
}
#postmain {
  padding-top: 6px;
}
/* Виджет */
.block > .header > .wrap > a.more {
  float: right;
}
.block > .content p.excerpt {
  margin: 0;
  padding: 0;
}
.block > .content ul.items {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.block > .content ul.items > li {
  display: inline-block;
  vertical-align: top;
}
.block > .content ul.meta {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.block > .content ul.meta > li {
  display: inline-block;
}
.block > .content ul.meta > li > span {
  font-size: 0.85em;
}
/* Расширенная миниатюра */
div.superthumb {
  float: left;
}
div.superthumb > div.top {
  float: left;
  position: relative;
  z-index: 101;
}
div.superthumb > div.bottom {
  float: left;
  position: absolute;
  z-index: 100;
}
/* Меню */
ul.simple_menu {
  list-style: none;
  z-index: 1000;
}
ul.simple_menu > li {
  display: inline-block;
}
ul.simple_menu > li > a {
  display: block;
}
ul.dropdown_menu {
  list-style: none;
  z-index: 1001;
}
ul.dropdown_menu > li {
  display: inline-block;
}
ul.dropdown_menu > li > a {
  display: block;
}
ul.dropdown_menu > li > ul {
  display: none;
  position: absolute;
  z-index: 1002;
}
ul.dropdown_menu > li:hover > ul {
  display: block;
}
ul.dropdown_menu > li > ul > li {
  display: block;
}
/* Прочее */
.taleft {
  text-align: left;
}
.taright {
  text-align: right;
}
.tacenter {
  text-align: center;
}
/* Шрифт */
.fancy,
.block > .header,
.block > .content a.link,
.block > .content ul.meta,
.block.sidebar ul > li,
.block.sidebar ol > li,
.block.single.single-content th,
.block.single.single-content td.td_desc b,
.block.single h1,
.block.single h2,
.block.single h3,
.block.single h4,
.block.single h5,
.block.single h6,
div#respond label,
div#respond input[type="submit"],
.block.single.single-title .breadcrumbs {
  font-family: 'Roboto Condensed';
  tfont-family: 'Open Sans';
}
/* Структура */
#header {
  height: 175px;
}
.logo {
  display: block;
  float: left;
  margin: 0 0 16px -12px;
  width: 250px;
  height: 74px;
}
.banner {
  display: block;
  float: right;
  margin: 16px 0 0px 0;
  width: 468px;
  height: 60px;
  tbox-shadow: 0 0 1px #df9d00;
}
.search-form {
  margin: 7px 0 0 16px;
  text-align: left;
  font-size: 14px;
}
.search-form label span {
  display: none;
}
.search-form label input {
  width: 152px;
  height: 22px;
  padding: 1px 4px;
  background: none;
  border: none;
  color: #7a4300;
  font-size: 13px;
}
.search-form button {
  float: right;
  margin: -24px -10px 0 0;
  width: 25px;
  height: 24px;
  background: transparent;
  border: none;
  color: #7a4300;
  opacity: 0.5;
}
.search-form button:hover {
  opacity: 1;
}
#footer {
  margin-top: 12px;
  margin-bottom: 12px;
  height: 60px;
}
.copyrights {
  margin: 13px 0 0 6px;
  font-size: 14px;
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.copyrights span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  opacity: 0.75;
}
.copyrights a {
  color: #ffffff;
}
.counters {
  margin: 16px 6px 0 0;
}
/* Виджет */
.block {
  margin-bottom: 9px;
}
.block > .header {
  height: 33px;
  border-radius: 4px;
}
.block > .header > .wrap {
  padding: 0 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.block > .header > .wrap > a.more {
  font-size: 13.5px;
  font-weight: 400;
  color: #fff;
  opacity: 0.80;
  text-decoration: none;
}
.block > .header > .wrap > a.more:hover {
  opacity: 1;
}
.block > .content {
  border-radius: 4px;
}
.block > .content > .wrap {
  padding: 3px 0;
}
.block > .content a.link {
  font-size: 14px;
  line-height: 21px;
}
.block > .content p.excerpt {
  font-size: 11px;
  line-height: 18px;
}
.block > .content img.thumb {
  border-radius: 1.33333333px;
}
.block > .content ul.items > li {
  margin-bottom: 3px;
}
.block > .content ul.items > li td {
  tvertical-align: top;
  padding: 3px;
}
.block > .content ul.meta > li {
  font-size: 13px;
  border-radius: 2px;
  margin-right: 6px;
}
.block > .content ul.meta > li:last-child {
  margin-right: 0;
}
.block > .content ul.meta.supermeta > li {
  background: rgba(0, 0, 0, 0.625) !important;
  border: none !important;
  border-radius: 1px !important;
  color: #fff !important;
}
.block > .content ul.meta.supermeta > li > a {
  color: #fff !important;
}
/* Блок в сайдбаре */
.block.sidebar ul {
  margin: 0;
  padding: 0;
}
.block.sidebar ul > li {
  margin: 6px;
  font-size: 14px;
}
.block.sidebar ol {
  margin: 0;
  padding: 0;
}
.block.sidebar ol > li {
  margin: 6px;
  font-size: 14px;
}
/* Блок контента */
.block.single > .content > .wrap {
  padding: 12px !important;
}
.block.single > .content ul.meta > li {
  padding: 0 !important;
  background: none !important;
  border: none !important;
}
/* Фиксы */
.block.single.single-title h1 {
  font-weight: normal;
  margin: 3px 0 0 0;
}
.block.single.single-title .breadcrumbs {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.8);
}
.block.single.single-content .thumbbox {
  float: left;
  margin: 0 12px 12px 0;
}
.block.single.single-content .thumbbox .wrap {
  margin-top: 12px;
  padding: 12px;
  width: 320px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.block.single.single-content p {
  font-size: 0.95em;
  line-height: 1.8em;
}
.block.single.single-content li {
  padding-bottom: 12px;
}
.block.single.single-content td.td_map #map {
  width: 360px !important;
  height: 280px !important;
  margin-right: 12px;
}
.block.single.single-content td.td_desc {
  padding-top: 12px;
  font-size: 14px;
}
.block.single.single-content td.td_desc p {
  display: none;
}
.block.single.single-content td.td_desc tr.second td {
  padding-bottom: 12px;
}
.block.single.single-social table {
  width: 100%;
}
.block.single.single-social .rating {
  line-height: 36px;
  height: 36px;
  text-align: right;
  font-size: 14px;
}
.block.single.single-social .rating #spr_container {
  float: right;
  margin: 10px 0 0 6px;
}
.block.single.single-comments ol.commentlist li.comment {
  list-style: none;
}
.block.single.single-comments div.navigation {
  display: none;
}
.block.single div.wp-pagenavi {
  font-size: 14px;
}
/* Главное меню */
ul.main {
  margin: 0 0 0 -12px;
  padding: 0;
  ttext-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
ul.main > li {
  height: 40px;
}
ul.main > li > a {
  line-height: 40px;
  height: 40px;
  padding: 0 15px;
  text-align: center;
  text-decoration: none;
  font-size: 13.5px;
  color: #7a4300;
}
ul.main > li:hover > a,
ul.main > li > a:hover {
  ttext-decoration: underline;
  color: #ffffff;
  background: #935000;
}
ul.main > li.current-menu-item > a {
  text-decoration: underline;
  tcolor: #ffffff;
}
ul.main > li > ul {
  padding: 0;
  background: #935000;
  tborder-radius: 0;
  tbox-shadow: 1px 1px 2px rgba(0, 0, 0, 0.175);
}
ul.main > li > ul > li.current-menu-item > a {
  text-decoration: underline;
}
ul.main > li > ul > li:last-child {
  border: none;
}
ul.main > li > ul > li {
  line-height: 27.5px;
  margin-bottom: 3px;
}
ul.main > li > ul > li:last-child {
  margin-bottom: 0;
}
ul.main > li > ul > li > a {
  padding: 0 12.5px;
  line-height: 27.5px;
  text-align: left;
  text-decoration: none;
  font-size: 12.5px;
  color: #fff;
}
ul.main > li > ul > li:hover {
  background: rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.025);
}
/* Меню категорий */
ul.category {
  margin: 0 0 0 0;
  padding: 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
ul.category > li {
  height: 45px;
}
ul.category > li > a {
  line-height: 45px;
  height: 45px;
  padding: 0 12.5px;
  margin-right: 2.5px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
}
ul.category > li:hover > a,
ul.category > li > a:hover {
  ttext-decoration: underline;
  tcolor: #ffffff;
  background: #935000;
}
ul.category > li.current-menu-item > a {
  text-decoration: underline;
  tcolor: #ffffff;
}
ul.category > li > ul {
  padding: 0;
  background: #935000;
  tborder-radius: 0;
  tbox-shadow: 1px 1px 2px rgba(0, 0, 0, 0.175);
}
ul.category > li > ul > li.current-menu-item > a {
  text-decoration: underline;
}
ul.category > li > ul > li:last-child {
  border: none;
}
ul.category > li > ul > li {
  line-height: 27.5px;
  margin-bottom: 3px;
}
ul.category > li > ul > li:last-child {
  margin-bottom: 0;
}
ul.category > li > ul > li > a {
  padding: 0 12.5px;
  line-height: 27.5px;
  text-align: left;
  text-decoration: none;
  font-size: 13.5px;
  color: #fff;
}
ul.category > li > ul > li:hover {
  background: rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.025);
}
/* Оформление блоков */
.block.color1 a {
  color: #603400;
}
.block.color1 > .header {
  background: #935000;
  /* Old browsers */
  background: -moz-linear-gradient(top, #cb7200 0%, #935000 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cb7200), color-stop(100%, #935000));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #cb7200 0%, #935000 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #cb7200 0%, #935000 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #cb7200 0%, #935000 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #cb7200 0%, #935000 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@color1-start', endColorstr='@color1-end', GradientType=0);
  /* IE6-9 */
  border-bottom: 1px solid #7a4200;
}
.block.color1 > .content a.link {
  color: #603400;
}
.block.color1 > .content ul.meta > li {
  color: #603400;
  padding: 1px 5px 1px 7px;
  background: #edd5b7;
  border: 1px solid #e6c59b;
}
.block.color1 > .content ul.meta > li > a {
  color: #603400;
}
.block.color2 a {
  color: #472700;
}
.block.color2 > .header {
  background: #7a4300;
  /* Old browsers */
  background: -moz-linear-gradient(top, #935000 0%, #7a4300 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #935000), color-stop(100%, #7a4300));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #935000 0%, #7a4300 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #935000 0%, #7a4300 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #935000 0%, #7a4300 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #935000 0%, #7a4300 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@color2-start', endColorstr='@color2-end', GradientType=0);
  /* IE6-9 */
  border-bottom: 1px solid #613500;
}
.block.color2 > .content a.link {
  color: #472700;
}
.block.color2 > .content ul.meta > li {
  color: #472700;
  padding: 1px 5px 1px 7px;
  background: #e4c094;
  border: 1px solid #ddaf77;
}
.block.color2 > .content ul.meta > li > a {
  color: #472700;
}
.block.with-bg {
  margin-bottom: 12px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.0825);
}
.block.with-bg > .content {
  background: #fff;
}
.block.with-bg > .content > .wrap {
  padding: 3px 6px;
}
/* Блоки слайдера */
.block.slider > .content ul.meta > li {
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}
.block.slider > .content ul.meta > li > a {
  color: #fff;
}
.block.slider-side > .content ul.items > li.slider-active {
  background: #e5e5e5;
  border-radius: 5px;
}
.block.slider-side > .content ul.items > li.slider-active table {
  margin: 0 6px 6px 6px;
}
