* { margin: 0; padding: 0; }
ul, li { list-style-type: none; }
A { color: yellow; }
body {
  background-color: black;
  color: white;
  font-size: 14px;
  font-family: Tahoma, Verdana;
  min-height: 100%;    
  min-width: 320px;
}
.clearfloat {
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}

/* header */
.header {
background: #4c4c4c;
background: -moz-linear-gradient(top,  #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #000000 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%);
background: -webkit-linear-gradient(top,  #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%);
background: linear-gradient(to bottom,  #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313',GradientType=0 );

}
.srchInpt {
  display: inline-block;
  height: 25px;
  background-color: white;
  border: 1px solid #fff;
  border-radius: 15px;
  text-indent: 15px;
}

.srchBtn {
  color: white;
  width: 60px;
  height: 25px;
  background-color: #410d0d;
  border: 0px;
  border-radius: 15px;
  font-size: 10px;
}

.srchBtn:HOVER { 
  background-color: black;
  border: 0px;
  cursor: pointer;
}
.logo {
  text-align: center;
  text-transform: capitalize;
  text-shadow: 2px 2px black;
}
.logo A {
  font-family: Bevan;
  color: white;
  text-decoration: none;

}
.logo A B { color: #ff7f8e;  }
.logo A:HOVER { color: #ff7f8e; }
.logo A:HOVER B { color: white; }

.menu UL { width: 100%; display: table; }
.menu UL LI { display: table-cell; text-align: center; }
.menu UL LI A { color: #ff7f8e; cursor: pointer; }
.menu UL LI A span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.menu UL LI A span:after {
  content: '~';
  position: absolute;
  opacity: 0;
  top: 0;
  right: 0px;
  transition: 0.5s;
}

.menu UL LI A span:before {
  content: '~';
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0px;
  transition: 0.5s;
}

.menu UL LI A:hover span {
  padding-right: 25px;
    padding-left: 25px;
}

.menu UL LI A:hover span:after {
  opacity: 1;
  right: 0;
}
.menu UL LI A:hover span:before {
  opacity: 1;
  left: 0;
}

.menu UL LI A:HOVER { background-color: #6f2932; text-decoration: none; color: yellow; }

.search {  text-align: center; white-space: nowrap; }
.searches { font-size: 14px; background-color: black; padding: 4px 6px; }
.searches A { color: #ce2200; margin: 0 3px; }
.searches A:HOVER { color: yellow; text-decoration: none; } 

.network { font-size: 11px; background-color: black; padding: 4px 6px; color: white; }
.network A { font-weight: bolder; color: #ce2200; margin: 0 5px; }
.network A:HOVER { color: white; text-decoration: none; } 

@media screen and (min-width: 200px) {
  .logo {
    min-width: 260px;
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 1px;
    margin-bottom: 5px;
  }
  .logo A {
      font-size: 28px;
      line-height: 35px;
      letter-spacing: 0px;
  }
  .menu UL LI A { 
    font-size: 15px; 
    line-height: 26px; 
    background-color: black;
    display: block; 
  }
  .search { height: 32px; padding-top: 4px; }
  .srchInpt { width: 80%; }
}

@media screen and (min-width: 600px) {
  .logo {
    min-width: 270px;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 2px;
  }
  .logo A {
      font-size: 32px;
      line-height: 35px;
      letter-spacing: 0px;
  }
  .header { display: flex; }
  .navsearch { flex: 1; }
  .menu UL LI A { 
    line-height: 25px; 
    border-radius: 4px;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    background-color: #4c4c4c; 
  }
}

@media screen and (min-width: 918px) {
  .navsearch { display: flex; }
  .menu { flex: 2; }
  .menu UL LI A { 
    border-radius: 10px;
    border: none;
    font-size: 17px;
    padding: 10px;
    margin: 4px;
    background-color: black; 
  }
  .search { flex: 1; text-align: left; height: auto; padding-top: 13px; }
  .srchInpt { width: 70%; margin-left: 2%; }
}

@media screen and (min-width: 1200px) {
  .srchInpt { width: 75%; margin-left: 2%; }
}
/* header END */

/* rest boxes */
.thboxheader {
  width: 100%;
  background-color: #393838;
  text-align: center;
}

.thboxheader h1 {
  color: #ffa6b0;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.thboxheader SPAN {
  font-size: 15px;
  color: white;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px; 
  display: inline-block;
  line-height: 41px;
}

.thboxheader SPAN A {color: white; }
.thboxheader SPAN A:HOVER {color: #ffa6b0; text-decoration: none; }
.thboxheader SPAN B { background-color: #ffa6b0; color: #333131; padding: 0 3px; }

.hlbox {
  display: inline-block;
  width: 100%;
  background-color: #625f60;
}
.hlbox UL LI { 
  float: left; 
  text-align: left; 
  text-transform: uppercase;
}
.hlbox UL LI A { 
  display: block;
  padding: 5px;
  text-decoration: none;
  font-size: 15px;
  line-height: 18px;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
}
.hlbox UL LI A:HOVER { background-color: black; color: yellow; }
/* rest boxes END*/


/* thumbnails */
.thbox {
  display: inline-block;
  width: 100%;
}

.thwrap {
  width: 20%;
  position: relative;
  float: left;
}

.th {
  /*background-color: black;*/
  padding: 2px;
  text-align: left;
  min-height: 1px;
}

.th A DIV {
  padding-bottom: 75%;
  position: relative;
}

.th A DIV IMG {
  position: absolute;
  max-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

.th A {
  color: white;
  text-decoration: none;
  font-size: 12px;
}

.th A:HOVER {
  color: yellow;
  text-decoration: none;
}

.th SPAN {
  background-color: black;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.5s;
}

.th SPAN.thtitle { 
  position: absolute; 
  bottom: 40px; 
  width: 100%; 
  text-align: center; 
  font-size: 25px;
  line-height: 25px;
  text-transform: uppercase;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
.th A:HOVER SPAN { background-color: #7b1e1e; transition: 0.2s; }

A.report {
  bottom: 20px;
  right: 4px;
  position: absolute;
  background-color: #1d1b1d;
  text-transform: uppercase;
  font-size: 8px;
  line-height: 11px;
  padding-left: 3px;
  padding-right: 3px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}

A.sponsor {
  top:3px;
  left:4px;
  position: absolute;
  background-color: #3f3e3e;
  font-size: 11px;
  line-height: 16px;
  padding-left:5px;
  padding-right:5px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
    font-style: normal;
}

.duration {
  bottom: 20px;
  left: 4px;
  position: absolute;
  background-color: #1d1b1d;
  font-size: 11px;
  line-height: 15px;
  padding-left: 5px;
  padding-right: 5px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  font-style: normal;
}



@media screen and (min-width: 200px) {
  .thwrap, .hlbox UL LI { width: 50%; }
}

@media screen and (min-width: 600px) {
  .thwrap, .hlbox UL LI { width: 33.33%; }
}

@media screen and (min-width: 918px) {
  .thwrap, .hlbox UL LI { width: 25%; }
}

@media screen and (min-width: 1200px) {
  .thwrap, .hlbox UL LI { width: 20%; }
}

@media screen and (min-width: 1600px) {
  .thwrap, .hlbox UL LI { width: 16.66%; max-width: 320px; }
}
/* thumbnail END */

/* pagination */
.wrapper { text-align: center; }

.pagination {
  margin: 5px;
  display: inline-block;
}

.pagination LI {
  color: yellow;
  float: left;
  margin-left: 3px;
  display: inline-block;
  font-size: 19px;
  width: 35px;
  height: 35px;
  background-color: #393838;
  text-align: center;
  border-radius: 4px;
  padding-top:13px;
}

.pagination LI A {
  display: inline-block;
  font-size: 19px;
  width: 35px;
  height: 35px;
  color: white;
  text-decoration: none;
}

.pagination LI A:HOVER, .hl A:HOVER {
  color: yellow;
  text-decoration: underline;
}
/* pagination END*/

/* embed */
.content {
  display: block;
  margin: 0px auto;
  max-width: 1270px;
  width: 100%;
}

.block_title H1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blockPlayer {
  float: left;
}

.player {
  position: relative;
  padding-bottom: 53.45%;
  height: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}
.player .videoPlay IFRAME { width: 100%; height: 100%;}

.line A { color: yellow;}
.line A:Hover { color: white; text-decoration: none; }

.line ul LI {
  display: inline-block;
  float: left;
  margin: 5px 2px;
}
.line ul LI A {
  display: block;
  background-color: #333131;
  text-transform: capitalize;
  text-decoration: none;
  border-radius:15px;
  padding: 5px 10px;
}
.line ul LI A.rprt{
    background-color: #572323;
    color: white;
}
.line ul LI A:HOVER {
  color: #333131;
  background-color: yellow;
}
@media screen and (min-width: 200px) {
  .blockPlayer { width: 100%;position: relative; }
  .playerAd { width: 310px; margin: 0 auto;}
}
@media screen and (min-width: 1025px) {
  .blockPlayer { width: 68%; }
  .player { margin-right: 2px;}
}
@media screen and (min-width: 1270px) {
  .blockPlayer { width: 940px; padding: 2px; }
}
/* embed end*/

/* model list */
.model_list { 
  background-color: #4c4c4c; 
  display: inline-block; 
  width: 100%; 
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.model_list OL { margin-bottom: 10px; }
.model_list OL LI { padding-left: 10px; color: silver; font-size: 12px;}
.model_list OL LI A { color: white; text-decoration: none; font-size: 18px; }
.model_list OL LI A:HOVER { color: yellow; text-decoration: underline; }
.model_list OL LI H2 { margin-top: 10px; padding-left: 15px; color: yellow; }

@media screen and (min-width: 200px) {
  .model_list OL { float: left; width: 50%; }
}
@media screen and (min-width: 600px) {
  .model_list OL { float: left; width: 33.33%; }
}
@media screen and (min-width: 800px) {
  .model_list OL { width: 20%; }
}
/* model list END*/

/* report */
.rprt_block { border: 1px solid; max-width: 792px; margin: 0 auto; text-align: center; border-radius: 15px; margin-top: 20px; }
.rprt_block A { color: yellow; }
.note { background-color: #731a1a; margin: 10px; padding: 15px; border-radius: 15px;  }
.note B { font-size: 25px; }
/* report END */

/* footer */
footer { 
  max-width: 1200px;
  font-size: 11px;
  margin: 0 auto;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

footer A { color: white; }
footer A:HOVER { color: yellow; text-decoration: none; }

@media screen and (min-width: 200px) {
  .wrap_footer { margin: 0 auto; width: 80%; height: 100%; }
}

@media screen and (min-width: 800px) {
  .wrap_footer { display: flex; }
  .flex1_footer { width: 300px; line-height: 100px; height: 100px; text-align: center; }
  .flex2_footer { flex: 1; padding-top: 10px; }
}
/* footer END */

/* css for banners */
.pl_spot{
  float: left;
  margin: 5px 0px 5px 10px;
  overflow: hidden;
  width: 300px;
  height: 250px;
}
.plm_spot{
  margin: 2px;
}
.p_spot {
  padding-bottom: 5px;
}
.m_spot {
  text-align: center;
  padding: 5px;
  overflow: hidden;
  margin: 0px auto;
}
.block-pub-side {
  float: left;
  position: relative;
  margin: 5px 0px 0px 5px;
}
.playerAd {
  width: auto;
}
.box {
  background: #393838;
  padding: 10px;
  overflow: hidden;
}
.bottom-adv {
  margin: 10px 0 10px;
  text-align: center;
  font-size: 0;
}
.bottom-adv .p_spot, .bottom-adv .m_spot, .bottom-adv .w_spot, .bottom-adv .q_spot {
  display: inline-block;
  vertical-align: top;
  width: 305px;
  overflow: hidden;
  margin: 1px;
}
.hide--first > *:first-child {
  display: none;
}
.hide--second > *:last-child {
  display: none;
}
.close {
  float: none;
  opacity: 0.8;
  color: #ffff00;
  font-size: 21px;
  font-weight: 700;
}
.close:focus, .close:hover {
  color: #f9ffff;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.8;
}
.adPlBlock{
  position: absolute;
  top: 20%;
  left: 50%;
  margin: 0 0 0 -316px;
  width: 635px;
  height:auto;
  z-index: 12;
  background: rgba(0,0,0,0.50);
  border: 1px solid rgba(0,0,0,1.00);
  display: block;
  overflow: hidden;
  text-align: center;
}
.message {
  width: 100%;
  height: 100%;
  background-image: none;
  text-align: center;
  width: 100%;
}
.message:last-of-type {
  float: right;
}
/* end css for banners */

/* @media css for banners */
@media (max-width: 1024px){
  .block-pub-side {
    width: 100%;
    position: relative;
    margin: 5px auto 0;
  }
  .playerAd {
    width: 620px;
    margin: 0px auto;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
  }
  .block-pub-side .p_spot {
    margin: 0px 5px;
    float: left;
    flex-grow: 1;
    text-align: center;
  }
  .adPlBlock{
    position: absolute;
    top: 20%;
    left: 50%;
    margin: 0 0 0 -316px;
    width: 635px;
    height:auto;
    z-index: 12;
    background: rgba(0,0,0,0.50);
    border: 1px solid rgba(0,0,0,1.00);
    display: block;
    overflow: hidden;
    text-align: center;
  }
}
@media (max-width: 861px) {
  .playerAd {
    width: 100%;
  }
  .adPlBlock {
    position: absolute;
    top: 10%;
    left: 50%;
    margin: 0 0 0 -156px;
    width: 310px;

  }
  .box {
    padding: 10px 0px;
  }
}
/* end @media css for banners */
