body {
  margin: 0;
  padding: 0;
  font: 12px/1.25em Verdana, Arial, Sans-Serif;
  color: black;
  background-color: white;
}
@media only screen and (min-width: 1000px) {
  body::after {
    content: 'desktop';
    display: none;
  }
}
@media only screen and (max-width: 999px) {
  body::after {
    content: 'mobile';
    display: none;
  }
}
a:link,
a:visited {
  color: #964b00;
  text-decoration: underline;
}
a:hover,
a:focus,
a:active {
  color: #ad5c00;
  text-decoration: underline;
}
a:focus {
  outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* common */
.cdrWrapper {
  min-width: 320px;
  max-width: 1300px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0 auto;
  padding: 0 25px;
}
@media only screen and (max-width: 520px) {
  .cdrWrapper {
    padding: 0 15px;
  }
}
.cdrRelative {
  position: relative;
}
.cdrClear {
  clear: both;
}
.cdrRating {
  position: relative;
  left: -2px;
}
.cdr240x400 {
  float: right;
  width: 240px;
  min-height: 400px;
  margin: 0 0 30px 20px;
}
.cdrSticky {
  position: sticky;
  top: 55px;
}
.cdrTopline {
  width: 970px;
  margin: 12px auto 20px;
}
@media only screen and (max-width: 999px) {
  .cdrTopline {
    display: none;
  }
}
body > header {
  height: 120px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 12px 0;
  border-bottom: 3px solid #999;
  background-color: #fff;
}
@media only screen and (max-width: 999px) {
  body > header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    height: 62px;
    padding: 6px 0;
    border-bottom-width: 2px;
  }
}
@media only screen and (max-width: 520px) {
  body > header {
    height: 48px;
    padding: 3px 0;
  }
}
body > header hgroup {
  float: left;
  margin: 25px 0 0 116px;
}
@media only screen and (max-width: 999px) {
  body > header hgroup {
    margin: 0 48px 0 62px;
  }
}
@media only screen and (max-width: 520px) {
  body > header hgroup {
    margin-left: 34px;
  }
}
body > header #cdrMainTitle {
  margin: 0;
  font-size: 26px;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 100%;
}
@media only screen and (max-width: 999px) {
  body > header #cdrMainTitle {
    display: table-cell;
    height: 50px;
    font-size: 22px;
    vertical-align: middle;
  }
}
@media only screen and (max-width: 520px) {
  body > header #cdrMainTitle {
    height: 42px;
    font-size: 18px;
  }
}
body > header h2 {
  margin: 15px 0 0;
  font-size: 14px;
  font-weight: normal;
  font-style: italic;
  letter-spacing: normal;
}
@media only screen and (max-width: 999px) {
  body > header h2 {
    display: none;
  }
}
body > header .cdr_right {
  float: right;
  margin-top: 14px;
  text-align: right;
}
@media only screen and (max-width: 999px) {
  body > header .cdr_right {
    display: none;
  }
}
body > header .cdr_right div:first-child {
  margin-bottom: 12px;
  font-style: italic;
}
body > header .cdr_right .s29OpenSelectCityBox {
  font-size: 14px;
  font-weight: bold;
}
a#cdrGerb {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 96px;
  height: 96px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (max-width: 999px) {
  a#cdrGerb {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 520px) {
  a#cdrGerb {
    left: -12px;
    width: 42px;
    height: 42px;
  }
}
a#cdrGerb.cdr_articles {
  margin-top: -7px;
  margin-right: 20px;
}
#cdrArticlesUrl {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}
#cdrMenuButton {
  display: none;
  position: absolute;
  z-index: 1001;
  right: 0;
  top: 0;
  width: 48px;
  height: 62px;
  padding: 0;
  border: none;
  background-color: transparent;
  background-image: url(../img/menu-button.png);
  background-size: 24px 24px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media only screen and (max-width: 999px) {
  #cdrMenuButton {
    display: block;
  }
}
@media only screen and (max-width: 520px) {
  #cdrMenuButton {
    height: 48px;
  }
}
#cdrMenu {
  display: none;
}
@media only screen and (max-width: 999px) {
  #cdrMenu {
    display: block;
    z-index: 900;
    position: fixed;
    left: 0;
    right: 0;
    top: calc(62px - 100%);
    transition: top 0.5s ease-out;
    -webkit-transition: top 0.5s ease-out;
    -moz-transition: top 0.5s ease-out;
    -o-transition: top 0.5s ease-out;
    height: calc(100% - 62px);
    background-color: #eee;
    border-bottom: solid #d7ba9a 3px;
    overflow-y: scroll;
  }
  #cdrMenu.cdr_visible {
    top: 62px;
  }
}
@media only screen and (max-width: 520px) {
  #cdrMenu {
    top: calc(48px - 100%);
    height: calc(100% - 48px);
  }
  #cdrMenu.cdr_visible {
    top: 48px;
  }
}
#cdrMenu .cdr_body {
  width: 280px;
  margin: 45px auto 45px;
}
@media only screen and (max-width: 359px) {
  #cdrMenu .cdr_body {
    width: 240px;
  }
}
#cdrMenu .cdr_body > .cdr_top {
  margin: 0 0 35px;
  font-size: 16px;
  font-weight: bold;
  line-height: 45px;
}
#cdrMenu .cdr_body > .cdr_calendar {
  margin: 0 0 25px;
}
#cdrMenu .cdr_body > .cdr_calendar > .cdr_bottom {
  margin-top: 12px;
  text-align: right;
  font-size: 14px;
  font-weight: bold;
  line-height: 35px;
}
#cdrMenu .cdr_body > .cdr_bottom {
  font-size: 14px;
  font-weight: bold;
  line-height: 35px;
}
/* footer */
body > footer {
  clear: both;
  margin: 50px 0 70px;
  font-size: 11px;
}
body > footer .cdr_left {
  float: left;
}
body > footer .cdr_right {
  float: right;
  margin-left: 10px;
  text-align: right;
  line-height: 180%;
}
#cdrContent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 30px 0;
}
@media only screen and (max-width: 999px) {
  #cdrContent {
    margin-top: 77px;
  }
}
@media only screen and (max-width: 520px) {
  #cdrContent {
    margin-top: 63px;
  }
}
#cdrContent h2 {
  font-size: 18px;
  letter-spacing: normal;
  line-height: 120%;
}
@media only screen and (max-width: 999px) {
  #cdrContent h2 {
    font-size: 20px;
  }
}
#cdrContent > .cdr_left {
  float: left;
  width: 160px;
}
#cdrContent > .cdr_left > * {
  margin: 0 0 40px;
}
@media only screen and (max-width: 999px) {
  #cdrContent > .cdr_left {
    display: none;
  }
}
#cdrContent > .cdr_right {
  float: right;
  width: calc(100% - 220px);
}
@media only screen and (max-width: 999px) {
  #cdrContent > .cdr_right {
    width: 100%;
  }
}
#cdrContent.cdr_wide > .cdr_right {
  width: 100%;
}
#cdrNavChain {
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: bold;
}
@media only screen and (max-width: 999px) {
  #cdrNavChain {
    font-size: 12px;
    line-height: 140%;
  }
}
#cdrMainBlock {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#cdrMainBlock > .cdr_left {
  float: left;
  width: calc(100% - 300px);
}
@media only screen and (max-width: 999px) {
  #cdrMainBlock > .cdr_left {
    width: 100%;
  }
}
#cdrMainBlock > .cdr_right {
  float: right;
  width: 240px;
}
@media only screen and (max-width: 999px) {
  #cdrMainBlock > .cdr_right {
    display: none;
  }
}
#s29MiniCalendarBlock nav {
  margin-top: 15px;
  text-align: right;
  font-weight: bold;
  line-height: 170%;
}
#s29MiniCalendarBlock .s29MiniCalendar {
  float: right;
}
nav.cdr_small {
  margin: 25px 0 45px 10px;
  font-size: 11px;
  font-weight: bold;
  line-height: 240%;
}
/* секции */
section {
  margin: 0 0 40px;
}
section > footer {
  clear: left;
  font-weight: bold;
  text-align: right;
}
section.s29MiniCalendar {
  margin: 3px 0 0;
}
/* новости */
#cdrNews article.s29_margin,
#cdrNews footer.s29_margin {
  margin-right: 270px;
}
#cdrNews footer {
  font-weight: normal !important;
}
#cdrNews h2 {
  margin-bottom: 30px;
}
#cdrNews nav {
  text-align: right;
  font-size: 11px;
  line-height: 150%;
}
@media only screen and (max-width: 520px) {
  .s29NewsList {
    margin-left: -15px;
    margin-right: -15px;
  }
}
/* Недавние новости */
.s29BriefNewsList {
  margin-bottom: 20px;
}
.s29BriefNewsList ul {
  float: left;
  width: 50%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
}
@media only screen and (max-width: 520px) {
  .s29BriefNewsList ul {
    float: none;
    width: 100%;
    padding-left: 20px;
  }
}
.s29BriefNewsList ul li {
  margin: 0 0 7px;
}
@media only screen and (max-width: 520px) {
  .s29BriefNewsList ul li {
    margin-bottom: 15px;
  }
}
/* статья */
#cdrArticleSection {
  margin-top: -10px;
}
#cdrArticleSection #cdrMainBlock > .cdr_left > footer {
  margin: 30px 0;
  text-align: left;
  font-weight: bold;
}
@media only screen and (max-width: 999px) {
  #cdrArticleSection #cdrMainBlock > .cdr_left > footer {
    font-size: 14px;
    line-height: 160%;
  }
}
#cdrArticleSection #cdrMainBlock > .cdr_left > footer h2 {
  margin: 30px 0 15px;
}
#cdrArticle > header > h1 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: normal;
}
@media only screen and (max-width: 999px) {
  #cdrArticle > header > h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 360px) {
  #cdrArticle > header > h1 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 999px) {
  #cdrArticle > header .s29Source .s29_link {
    font-size: 12px;
  }
}
#cdrArticle > header .s29ViewCount {
  margin-left: 20px;
}
#cdrArticle .cdr_body {
  margin: 20px 0 35px;
  margin-right: 0 !important;
}
@media only screen and (max-width: 999px) {
  #cdrArticle .cdr_body {
    margin-top: 28px;
    font-size: 15px;
    line-height: 150%;
  }
}
@media only screen and (max-width: 360px) {
  #cdrArticle .cdr_body {
    margin-top: 25px;
    font-size: 14px;
    line-height: 160%;
  }
}
#cdrArticle img {
  max-width: 100% !important;
  height: auto !important;
}
#cdrArticleImg {
  margin-bottom: 10px;
}
/* один сайт */
#cdrOneSite > header > div {
  display: inline-block;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  background: #e3ceb5;
}
#cdrOneSite h3 {
  margin: 14px 0 10px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: normal;
}
@media only screen and (max-width: 999px) {
  #cdrOneSite h3 {
    margin: 16px 0 12px;
    font-size: 16px;
  }
}
#cdrOneSite > .cdr_left {
  float: left;
}
@media only screen and (max-width: 520px) {
  #cdrOneSite > .cdr_left {
    float: none;
  }
}
#cdrOneSite > .cdr_left > a {
  display: block;
  width: 180px;
  height: 135px;
  border: solid 1px #994c00;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 360px) {
  #cdrOneSite > .cdr_left > a {
    width: 100%;
    height: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding-top: 75%;
  }
}
#cdrOneSite > .cdr_left > div {
  margin-top: 7px;
}
#cdrOneSite .cdr_right {
  margin: 0 0 0 210px;
}
@media only screen and (max-width: 520px) {
  #cdrOneSite .cdr_right {
    margin: 10px 0 0 0;
  }
}
#cdrOneSite .cdr_right > div {
  min-height: 135px;
  font-size: 11px;
  font-style: italic;
}
@media only screen and (max-width: 999px) {
  #cdrOneSite .cdr_right > div {
    font-size: 12px;
  }
}
@media only screen and (max-width: 520px) {
  #cdrOneSite .cdr_right > div {
    min-height: 0;
  }
}
#cdrOneSite h4 {
  margin: 0 0 15px;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
}
@media only screen and (max-width: 999px) {
  #cdrOneSite h4 {
    font-size: 14px;
  }
}
#cdrOneSite footer {
  margin-top: 3px;
  text-align: right;
  font-weight: bold;
}
#cdrOneSite .cdrRating div {
  float: none !important;
}
/* топ сайтов и витрина */
#cdrTopSites,
#cdrShowcase {
  clear: both;
}
.cdrSiteThumbsBlock > section {
  display: inline-block;
  vertical-align: top;
  width: calc((100% - 80px) / 5);
  min-width: 122px;
  margin: 10px 20px 25px 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 10px;
}
.cdrSiteThumbsBlock > section:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 520px) {
  .cdrSiteThumbsBlock > section {
    width: 45%;
    margin-right: 10%;
  }
  .cdrSiteThumbsBlock > section:nth-child(2n) {
    margin-right: 0;
  }
  .cdrSiteThumbsBlock > section:nth-child(5) {
    display: none;
  }
}
@media only screen and (max-width: 360px) {
  .cdrSiteThumbsBlock > section {
    width: 100%;
    min-width: none;
    margin-right: 0;
  }
}
.cdrSiteThumbsBlock > section header {
  margin: 0;
  overflow: hidden;
}
.cdrSiteThumbsBlock > section header div {
  display: inline-block;
  height: 15px;
  margin-bottom: 7px;
  padding: 2px 4px;
  font-size: 11px;
  font-weight: bold;
  font-style: italic;
  background: #e3ceb5;
}
@media only screen and (max-width: 360px) {
  .cdrSiteThumbsBlock > section header div {
    font-size: 13px;
  }
}
.cdrSiteThumbsBlock > section header h3 {
  height: 15px;
  overflow: hidden;
  margin: 0 0 9px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: normal;
}
@media only screen and (max-width: 520px) {
  .cdrSiteThumbsBlock > section header h3 {
    font-size: 12px;
  }
}
@media only screen and (max-width: 360px) {
  .cdrSiteThumbsBlock > section header h3 {
    font-size: 13px;
  }
}
.cdrSiteThumbsBlock > section > a {
  display: block;
  width: 120px;
  height: 90px;
  margin-bottom: 3px;
  border: solid 1px #994c00;
}
@media only screen and (max-width: 520px) {
  .cdrSiteThumbsBlock > section > a {
    width: 100%;
    padding-top: 75%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin-bottom: 5px;
  }
}
.cdrSiteThumbsBlock > section .cdrRating {
  margin: 0 0 20px;
}
@media only screen and (max-width: 520px) {
  .cdrSiteThumbsBlock > section .cdrRating {
    margin: 6px 0 25px;
  }
}
.cdrSiteThumbsBlock > section.cdr_placeholder .cdrRating {
  width: 67px;
  height: 14px;
  background: url(/plugins/s29_ratings/img/stars/rating_0_0.png);
}
.cdrSiteThumbsBlock > section p {
  clear: both;
  margin: 0 0 0;
  font-size: 11px;
}
@media only screen and (max-width: 520px) {
  .cdrSiteThumbsBlock > section p {
    font-size: 12px;
  }
}
/* Реклама */
.s29Adv3,
.s29Adv2,
.s29Adv1,
.s29Adv {
  margin-bottom: 20px;
  border: #b7b7b7 solid 1px;
  background: #e9e9e9;
}
.s29Adv3 {
  padding: 20px 10px 10px;
}
.s29Adv2 {
  padding: 20px 30px 10px;
}
.s29Adv1 {
  padding: 20px 0px 10px 15px;
  /* margin-left:10px; */
  width: 145px;
  background: #f0f0f0;
  /* #f0f0f0 */
  border-color: #b0b0b0;
}
.s29AdvTitle,
.s29Adv1Title {
  margin-top: 20px;
  font-size: 10px;
}
.s29AdvTitle {
  color: #999;
}
.s29Adv1Title {
  /* margin-left:10px; */
  color: #828282;
}
@media only screen and (max-width: 999px) {
  .s29Adv1Title {
    font-size: 11px;
  }
}
/* Читайте также */
#n123ReadAlso {
  display: table;
  margin: 10px 0 15px;
  padding: 0;
  list-style: none;
}
#n123ReadAlso li {
  display: table-row;
}
@media only screen and (max-width: 520px) {
  #n123ReadAlso li {
    display: block;
  }
}
#n123ReadAlso li time {
  display: table-cell;
  padding-right: 10px;
  text-align: right;
  vertical-align: top;
  font-size: 11px;
  font-weight: normal;
  color: #999;
}
@media only screen and (max-width: 999px) {
  #n123ReadAlso li time {
    font-size: 12px;
  }
}
@media only screen and (max-width: 520px) {
  #n123ReadAlso li time {
    display: block;
    margin-bottom: 5px;
    text-align: left;
  }
}
#n123ReadAlso li .n123_right {
  display: table-cell;
  padding-bottom: 10px;
  vertical-align: top;
}
@media only screen and (max-width: 520px) {
  #n123ReadAlso li .n123_right {
    display: block;
    padding-bottom: 14px;
  }
}
/* Другие разделы */
#n123OtherSections .n123_item {
  float: left;
  width: calc((100% - 28px * 3) / 4);
  min-width: 150px;
  margin-right: 28px;
}
#n123OtherSections .n123_item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 520px) {
  #n123OtherSections .n123_item {
    width: 45%;
    min-width: auto;
    margin-right: 10%;
  }
  #n123OtherSections .n123_item:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 360px) {
  #n123OtherSections .n123_item {
    width: 100%;
    margin-right: 0;
  }
}
#n123OtherSections .n123_item h3 {
  height: 18px;
  margin: 0 0 8px;
  color: #000;
  overflow: hidden;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: normal;
}
@media only screen and (max-width: 999px) {
  #n123OtherSections .n123_item h3 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 360px) {
  #n123OtherSections .n123_item h3 {
    font-size: 16px;
  }
}
#n123OtherSections .n123_item h3 a {
  color: #000 !important;
  text-decoration: none !important;
}
#n123OtherSections .n123_item h3 a:hover,
#n123OtherSections .n123_item h3 a:active,
#n123OtherSections .n123_item h3 a:focus {
  border-bottom: 1px solid #000;
}
#n123OtherSections .n123_item a {
  text-decoration: none !important;
}
#n123OtherSections .n123_item .n123_image {
  margin-bottom: 5px;
  display: block;
  width: 100%;
  padding-top: 67%;
  background-size: cover;
  background-position: center center;
}
#n123OtherSections .n123_item .n123_title {
  font-weight: bold;
  line-height: 120%;
}
@media only screen and (max-width: 999px) {
  #n123OtherSections .n123_item .n123_title {
    font-size: 13px;
  }
}
@media only screen and (max-width: 360px) {
  #n123OtherSections .n123_item .n123_title {
    font-size: 14px;
  }
}
#n123OtherSections .n123_item a:hover .n123_title {
  border-bottom: 1px solid #ad5c00;
}
/* лайки */
.s29Likes {
  margin: 0 !important;
}
@media only screen and (max-width: 360px) {
  .s29Calendar .s29_body {
    width: 240px;
    margin: 0 auto;
  }
  .s29Calendar section {
    margin-right: 0;
  }
}
#cdrBottomLeft {
  position: relative;
}
@media only screen and (max-width: 999px) {
  #cdrBottomLeft {
    display: none;
  }
}
#cdrProjects {
  margin: 20px 0;
}
#cdrProjects p {
  margin-bottom: 20px;
}
@media (max-width: 429px) {
  #cdrProjects #s29MainMenu {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 360px) {
  #cdrProjects #s29MainMenu {
    max-width: 95%;
  }
}
/* переключатель - пока не используется */
/*
#cdrTopSites .cdr_switch button {
	float:left;
	display:block;
	margin:0; padding:0;
	width:116px; height:24px;	
	border:none;
	background-position:0 0;
	font-size:11px;
}

#cdrTopSites .cdr_switch button.cdr_on {
	background-position:0 -24px;
}

#cdrTopSites .cdr_switch button.cdr_inactive {
	background-position:0 -48px;
}

#cdrTopSites .cdr_switch button.cdr_left {
	background-image:url(img/cdr_switch_left.png)
}
 
#cdrTopSites .cdr_switch button.cdr_right {
	background-image:url(img/cdr_switch_right.png)	
}

#cdrTopSites .cdr_switch .cdr_seprt {
	float:left;
	width:1px; height:24px;
	background-position:0 0;
	background-color:#765b39;
}

#cdrTopSites .cdr_switch .cdr_seprt.inactive {
	background-color:#808080;	
}
*/
/* =============================================================== */
/* cotonti default skin styles */
#top {
  background: url(img/SED-Light_BG.gif) repeat-x;
  width: 100%;
}
#container {
  width: 800px;
  margin: 0px auto;
}
#header {
  background: url(img/SED-Light_HD.png) no-repeat;
  width: 800px;
  height: 110px;
}
#header #userBar {
  width: 420px;
  height: 70px;
  margin: 0 0 0 360px;
  line-height: 30px;
  vertical-align: middle;
  padding: 0 0 0 10px;
}
#header #userBar a {
  text-decoration: none;
}
#header #userBar .userBarR {
  float: right;
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
#header #userBar .userBarL {
  float: left;
  height: 30px;
  margin: 0 -40px 0 40px;
  text-align: right;
  font-size: 0.9em;
}
#header #userBar b {
  margin: 0 0 0 40px;
}
#header #navBar {
  width: 800px;
  height: 30px;
  margin-top: 1px;
}
#header #navBar .text {
  width: 755px;
  height: 30px;
  float: right;
}
#header #navBar .text a {
  font-size: 11px;
  line-height: 30px;
  vertical-align: middle;
  font-weight: bold;
  margin: 0 15px 0 0;
  text-decoration: none;
  text-transform: uppercase;
}
#header #navBar .text ul {
  padding: 0;
  margin: 0;
}
#header #navBar .text li {
  display: inline;
  list-style: none;
  padding: 0;
  margin: 0;
}
#header #navBar .homeLink {
  width: 35px;
  height: 30px;
}
#header #navBar .homeLink a {
  width: 35px;
  height: 0;
  display: block;
  padding-top: 30px;
  text-indent: -9999px;
}
#content {
  background: #e6ebf0 none;
  width: 800px;
}
#content #lSide {
  float: left;
  width: 550px;
}
#content #lSide .lboxHD {
  color: #3E606F;
  background: url(img/SED-Light_lBoxHD.gif) no-repeat;
  width: 540px;
  height: 35px;
  line-height: 35px;
  vertical-align: middle;
  font-size: 0.9em;
  text-transform: uppercase;
  padding: 0 0 0 10px;
  font-weight: bold;
}
#content #lSide .lboxBody {
  width: 530px;
  background: #FFF url(img/SED-Light_lBoxFT.gif) no-repeat bottom;
  min-height: 20px;
  padding: 10px;
  margin-bottom: 10px;
}
#content #rSide {
  float: right;
  width: 240px;
}
#content #rSide .rboxHD {
  color: #3E606F;
  background: url(img/SED-Light_rBoxHD.gif) no-repeat;
  width: 230px;
  height: 35px;
  line-height: 35px;
  vertical-align: middle;
  font-size: 0.9em;
  text-transform: uppercase;
  padding: 0 0 0 10px;
  font-weight: bold;
}
#content #rSide .rboxBody {
  width: 220px;
  background: #FFF url(img/SED-Light_rBoxFT.gif) no-repeat bottom;
  min-height: 20px;
  padding: 10px;
  margin-bottom: 10px;
}
.mboxHD {
  color: #3E606F;
  background: url(img/SED-Light_mBoxHD.gif) no-repeat;
  width: 790px;
  height: 35px;
  line-height: 35px;
  vertical-align: middle;
  font-size: 0.9em;
  text-transform: uppercase;
  padding: 0 0 0 10px;
  font-weight: bold;
}
.mboxBody {
  width: 780px;
  background: #FFF url(img/SED-Light_mBoxFT.gif) no-repeat bottom;
  min-height: 20px;
  padding: 10px;
}
.mboxBody img {
  vertical-align: middle;
}
#footer {
  background: url(img/SED-Light_FT.gif) no-repeat;
  width: 800px;
  height: 40px;
  padding: 10px 0 0 0;
  clear: both;
}
#footer a {
  text-decoration: none;
}
#footer #ftBar {
  width: 790px;
  height: 40px;
  margin: 0;
  padding: 0 0 0 10px;
}
#footer #ftBar .text {
  float: left;
  width: 700px;
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
}
#footer #ftBar .topLink {
  width: 75px;
  height: 30px;
  float: right;
}
#footer #ftBar .topLink a {
  width: 75px;
  height: 0;
  display: block;
  padding-top: 30px;
  text-indent: -9999px;
}
#copyBar {
  font-size: 0.8em;
  text-transform: uppercase;
}
#sedCopy {
  float: right;
  font-size: 0.8em;
  text-transform: uppercase;
}
#sedCopy a {
  text-decoration: none;
}
.newsTitle {
  background: url(img/SED-Light_NewsTitle.gif) no-repeat;
  width: 505px;
  height: 25px;
  line-height: 25px;
  vertical-align: middle;
  padding: 0 0 0 25px;
}
.newsTitle a {
  font-weight: bold;
}
.newsDate {
  float: right;
  padding: 0 10px 0 0;
  height: 25px;
  line-height: 25px;
  vertical-align: middle;
}
.newsBody {
  margin: 10px 0 0 10px;
}
.newsPosted {
  float: left;
  margin: 8px 0 0 10px;
}
.newsOther {
  text-align: right;
  margin: 8px 0;
}
.pageTop {
  background: url(img/SED-Light_tPCap.gif) no-repeat;
  width: 780px;
  height: 10px;
}
.pageBody {
  background: #e6ebf0 url(img/SED-Light_bPCap.gif) no-repeat bottom;
  width: 780px;
  min-height: 10px;
  padding: 0;
  margin-bottom: 10px;
}
.pageText {
  width: 760px;
  padding: 0 10px 10px 10px;
}
.popupTitle {
  color: #AAA;
  background: #171717 none;
  width: 100%;
  height: 35px;
  line-height: 35px;
  vertical-align: middle;
  font-size: 0.9em;
  text-transform: uppercase;
  padding: 0 0 0 10px;
  font-weight: bold;
}
.tCap {
  background: url(img/SED-Light_TCap.gif) no-repeat;
  width: 780px;
  height: 10px;
  overflow: hidden;
}
.tCap2 {
  background: url(img/SED-Light_TCap2.gif) no-repeat;
  width: 780px;
  height: 10px;
  overflow: hidden;
}
.bCap {
  background: url(img/SED-Light_BCap.gif) no-repeat;
  width: 780px;
  height: 10px;
  overflow: hidden;
}
.pCap {
  background: url(img/SED-Light_TCap_Posts.gif) no-repeat;
  width: 780px;
  height: 10px;
  overflow: hidden;
}
#subtitle {
  padding-bottom: 0.75em;
}
#pfsBack {
  float: right;
}
#pfsHeader {
  background: #c8d9e2 none;
  padding: 15px;
}
#pfsTitle {
  font-size: 1.3em;
  font-weight: bold;
}
#pfsImage {
  text-align: center;
  margin: 10px;
  overflow: auto;
}
hr {
  border: 1px solid;
  border-color: #c8d9e2 transparent transparent transparent;
  margin: 0.5em 0;
}
* html hr {
  border: 1px solid #c8d9e2;
  margin: 0.5em 0;
}
/* ============== Overall ============== */
h1 {
  font-size: 250%;
  letter-spacing: -1px;
  font-weight: normal;
}
h2 {
  font-size: 170%;
  letter-spacing: -1px;
  font-weight: normal;
}
h3 {
  font-size: 140%;
  margin: 1em 1em 1em 0;
  letter-spacing: -1px;
  font-weight: normal;
}
h4 {
  font-size: 100%;
  font-weight: bold;
  margin: 1.5em 1em 1em 0;
}
h5 {
  font-size: 95%;
  margin: 1em 1em 1em 0;
}
h6 {
  font-size: 90%;
  margin: 1em 1em 1em 0;
}
.bbstyle1 {
  font-size: 160%;
  font-weight: bold;
}
.bbstyle2 {
  font-size: 130%;
  font-weight: bold;
}
.bbstyle3 {
  font-size: 120%;
  font-weight: bold;
}
.bbstyle4 {
  font-size: 110%;
  font-weight: bold;
}
/* ============== Various ============== */
.disp {
  padding: 0.8em;
  margin: 0;
}
.block {
  background-color: #e8edf1;
  border: 1px solid #C8D9E2;
  padding: 8px;
  margin: 12px;
}
.block h4 {
  margin-top: 0;
}
.error {
  padding: 24px 8px 24px 8px;
  margin: 0;
  color: #CC1212;
  font-weight: bold;
  font-size: 110%;
  text-align: center;
}
.codetitle {
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: bold;
  padding: 2px;
  margin-top: 5px;
}
.code {
  background-color: #FFF;
  border: 1px solid #C8D9E2;
  overflow: auto;
  padding: 2px;
  margin-bottom: 5px;
  font-family: monospace;
}
.valid {
  height: 48px;
  text-align: center;
  vertical-align: middle;
}
.download {
  font-size: 110%;
  text-align: center;
  background-color: #FFFFFF;
  padding: 16px;
  margin-top: 16px;
}
.small {
  font-size: 75%;
}
.paging,
.pagenav {
  padding: 6px;
  text-align: right;
  font-size: 0.9em;
}
.pagenav_small {
  padding: 0;
  text-align: right;
  font-size: 0.8em;
}
.pagenav_prev,
.pagenav_next,
.pagenav_first,
.pagenav_last,
.pagenav_pages {
  padding: 2px 6px;
  background: #F5F5F5;
  margin: 1px;
  border: 1px solid #C8D9E2;
}
.pagenav_current {
  padding: 2px 6px;
  font-weight: bold;
  text-decoration: underline;
  background: #dddddd;
  margin: 1px;
  border: 1px solid #c8c7c7;
}
.coltop {
  text-align: center;
  background-color: #c8d9e2 !important;
  color: #3E606F;
  padding: 5px 0;
  font-weight: bold;
  height: 25px;
  vertical-align: middle;
}
.centerall {
  text-align: center;
  vertical-align: middle;
}
.desc {
  font-size: 95%;
  padding: 3px;
  color: #646464;
}
.spoiler {
  padding: 8px;
  margin: 8px;
  border: 1px dashed #CCCCCC;
  background-color: #DBE5E9;
}
.searchhighlight {
  background-color: #EFFF00;
}
.odd {
  background-color: #dee4e9 !important;
}
.even {
  background-color: #e8edf1 !important;
}
li {
  margin: 2px;
}
img {
  border-width: 0;
}
ul {
  list-style-type: square;
}
form {
  margin: 0;
}
.colleft {
  float: left;
  margin: 0px 4px 0px 4px;
}
.colright {
  float: right;
  margin: 0px 4px 0px 4px;
}
.bar_front {
  background-color: #c8d9e2;
  border-right: 0px solid #dee4e9;
  padding: 0;
  height: 8px;
  overflow: hidden;
}
.bar_back {
  background-color: #e8edf1;
  border: 1px solid #dee4e9;
  margin: 0 7px 0 7px;
  height: 8px;
  overflow: hidden;
}
.bbcodes a img {
  border: 0;
  background-color: transparent;
}
.smilies a img {
  border: 0;
  background-color: transparent;
}
.today {
  border: 1px dashed #DDAA00;
}
.signature {
  color: #3E606F;
  font-size: 0.9em;
  max-height: 100px;
  overflow: auto;
}
.signature a {
  color: #3E606F;
}
.maintenance {
  margin: 10px;
  padding: 2px;
  border: 2px solid #ccc;
  background: #efeefe;
  font: normal 12px lucida console;
}
/* ============== Tables ============== */
table td {
  vertical-align: top;
}
table.flat {
  width: 100%;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
}
table.flat td {
  padding: 0;
  margin: 0;
}
table.main {
  width: 100%;
  margin: 0;
  padding: 4px;
}
table.main td {
  padding: 4px;
}
table.main td img {
  margin-right: 6px;
}
table.cells {
  width: 100%;
  border-spacing: 1px;
  margin: 0;
  padding: 0;
}
table.cells td {
  background-color: #e8edf1;
  padding: 2px;
}
table.list {
  width: 100%;
  margin: 0;
  padding: 5px;
}
table.list td {
  padding: 12px;
}
/* ============== Tables ============== */
input {
  background-color: #fff;
  border: 1px solid #dee4e9;
  color: #3E606F;
  padding: 2px;
  font-size: 1em;
  margin: 0;
}
select {
  background-color: #fff;
  border: 1px solid #dee4e9;
  color: #3E606F;
  padding: 2px;
  font-size: 1em;
  margin: 0;
}
textarea {
  background-color: #fff;
  border: 1px solid #dee4e9;
  color: #3E606F;
  padding: 2px;
  font-size: 1em;
  font: 1em/1.25em Lucida Grande, Arial, Verdana, Sans-Serif;
  margin: 0;
}
/* ============== Plugins ============== */
/* ============== Indexpolls ============== */
.loading {
  position: relative;
  left: 45%;
  top: -50px;
  z-index: 99;
}
.rss-icon-title {
  margin: 6px 10px 0 5px;
  float: right;
}
.rss-icon {
  margin: 0px 5px 0px 5px;
}
/* ============== Tag Cloud Fixes ============== */
.tag_cloud {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.35em;
}
.tag_cloud li {
  margin: 0 5px 0 0;
  display: inline;
}
.tag_cloud li span {
  display: none;
}
.tag_cloud a.xs {
  font-size: 10pt;
  color: #c4c4c4;
}
.tag_cloud a.xs:hover {
  color: #000;
}
.tag_cloud a.s {
  font-size: 12pt;
  color: #336699;
}
.tag_cloud a.s:hover {
  color: #000;
}
.tag_cloud a.m {
  font-size: 14pt;
  color: #A0522D;
}
.tag_cloud a.m:hover {
  color: #000;
}
.tag_cloud a.l {
  font-size: 16pt;
  color: #B0C4DE;
}
.tag_cloud a.l:hover {
  color: #000;
}
.tag_cloud a.xl {
  font-size: 18pt;
  color: #aad815;
}
.tag_cloud a.xl:hover {
  color: #000;
}
/* ============== Ratings CSS ============== */
/* jQuery.Rating Plugin CSS - http://www.fyneworks.com/jquery/star-rating/ */
div.rating-cancel,
div.star-rating {
  float: left;
  width: 17px;
  height: 15px;
  text-indent: -999em;
  cursor: pointer;
  display: block;
  background: transparent;
  overflow: hidden;
}
div.rating-cancel,
div.rating-cancel a {
  background: url(img/system/delete.gif) no-repeat 0 -16px;
}
div.star-rating,
div.star-rating a {
  background: url(img/system/star.gif) no-repeat 0 0px;
}
div.rating-cancel a,
div.star-rating a {
  display: block;
  width: 16px;
  height: 100%;
  background-position: 0 0px;
  border: 0;
  font-size: 0;
}
div.star-rating-on a {
  background-position: 0 -16px !important;
}
div.star-rating-hover a {
  background-position: 0 -32px;
}
/* Read Only CSS */
div.star-rating-readonly a {
  cursor: default !important;
}
/* Partial Star CSS */
div.star-rating {
  background: transparent!important;
  overflow: hidden !important;
}
/* END jQuery.Rating Plugin CSS */
/* ============== Search ============== */
#sea_pagtitle,
#sea_pagdesc,
#sea_pagtext,
#sea_frmtitle,
#sea_frmtext,
#sea_frmreply,
#sea_pagfile {
  margin: 0 10px 0 0;
}
select[name*=sea_frmsub] {
  width: 300px;
}
select[name*=sea_frmsort] {
  margin: 0 0 5px;
  width: 200px;
}
select[name*=sea_pagsub] {
  width: 300px;
}
select[name*=sea_pagsort] {
  margin: 0 0 5px;
  width: 200px;
}
select[name=within] {
  width: 200px;
}
table.srch {
  border-collapse: collapse;
  width: 100%;
}
table.srch td {
  padding: 5px;
  margin: 0;
  border: 0;
}
table.srch td:first-child {
  padding: 5px 5px 5px 0;
}
input[id*=pagsort2_],
input[id*=frmsort2_] {
  margin: 0 5px 0 0;
}
label[for*=pagsort2_],
label[for*=frmsort2_] {
  margin: 0 15px 0 0;
}
