* {
    margin: 0;
    padding: 0;
}






html {


}


@font-face { 
    font-family: "rouble";
    src: url("/rouble.otf") format("opentype");
}
.rub { font-family: "rouble"; }



input[type="radio"] 
{
display:none;
}

@keyframes pulsik {
  from {
    transform: scale(0.65);
  }
  100% {
    transform: scale(1);
  }
  
}



@keyframes pulsikk {
  from {
    transform: scale(0.75);
  }
  100% {
    transform: scale(1);
  }
  
}











::selection {background: #006666; color:#fff;}
::-moz-selection {background: #006666; color:#fff;}
::-webkit-selection {background: #006666; color:#fff;}


::-webkit-input-placeholder {color:#777; font-family: 'Arial', sans-serif; text-indent: 0px;   transition: text-indent 0.3s ease;}
::-moz-placeholder          {color:#777; font-family: 'Arial', sans-serif; text-indent: 0px;   transition: text-indent 0.3s ease;}/* Firefox 19+ */
:-moz-placeholder           {color:#777; font-family: 'Arial', sans-serif; text-indent: 0px;   transition: text-indent 0.3s ease;}/* Firefox 18- */
:-ms-input-placeholder      {color:#777; font-family: 'Arial', sans-serif; text-indent: 0px;   transition: text-indent 0.3s ease;}




:focus::-webkit-input-placeholder {text-indent: 500px; transition: text-indent 0.3s ease;}
:focus::-moz-placeholder          {text-indent: 500px; transition: text-indent 0.3s ease;}
:focus:-moz-placeholder           {text-indent: 500px; transition: text-indent 0.3s ease;}
:focus:-ms-input-placeholder      {text-indent: 500px; transition: text-indent 0.3s ease;}




body {
font-family: 'Arial', sans-serif;
    color: #000;
    font-size: 12px;
    overflow-x: hidden;
background: #FFF;
}



body2 {

font-family: 'Arial', sans-serif;
    color: #000;
    font-size: 12px;
    overflow-x: hidden;

}















































































































































.a-dow
{
width:100%;
opacity:0; /*Элемент полностью прозрачный (невидимый)*/
transition: 1s; /*Скорость перехода состояния элемента*/
animation: dow 3s 1; /* Указываем название анимации, её время и количество повторов*/
animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
animation-delay: 0s; /* Задержка перед началом */
}

@keyframes dow{
0%{
opacity:0;
}
100% {
opacity:1;
}
}




.anim-show
{
width:100%;
opacity:0; /*Элемент полностью прозрачный (невидимый)*/
transition: 0.1s; /*Скорость перехода состояния элемента*/
animation: show 0.2s 1; /* Указываем название анимации, её время и количество повторов*/
animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
animation-delay: 0.1s; /* Задержка перед началом */
}

@keyframes show{
0%{
opacity:0;
}
100% {
opacity:1;
}
}


.anim-show2
{
width:100%;
opacity:0; /*Элемент полностью прозрачный (невидимый)*/
transition: 0.1s; /*Скорость перехода состояния элемента*/
animation: show2 0.1s 1; /* Указываем название анимации, её время и количество повторов*/
animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
animation-delay: 0.1s; /* Задержка перед началом */
}

@keyframes show2{
0%{
opacity:0;
}
100% {
opacity:1;
}
}



.anim-show5
{
width:100%;
opacity:0; /*Элемент полностью прозрачный (невидимый)*/
transition: 0.3s; /*Скорость перехода состояния элемента*/
animation: show5 0.3s 1; /* Указываем название анимации, её время и количество повторов*/
animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
animation-delay: 0.3s; /* Задержка перед началом */
}

@keyframes show5{
0%{
opacity:0;
}
100% {
opacity:1;
}
}


.anim-show6
{
width:100%;
opacity:0; /*Элемент полностью прозрачный (невидимый)*/
transition: 0.2s; /*Скорость перехода состояния элемента*/
animation: show6 0.2s 1; /* Указываем название анимации, её время и количество повторов*/
animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
animation-delay: 0.2s; /* Задержка перед началом */
}

@keyframes show6{
0%{
opacity:0;
}
100% {
opacity:1;
}
}












.users_results_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.users_results_wrap .user_item_wrap {
    display: flex;
    width: 33%;
    height: 170px;
    flex: 1 0 32%;
    margin: 2px 2px;
    position: relative;
    overflow: hidden;
}

.users_results_wrap .user_item_wrap .user_item {
      width: 100%;
    height: 100%;
}

.users_results_wrap .user_item_wrap.blur .user_item {
      filter: blur(10px);
}

.users_results_wrap .user_item_wrap .is_online {
background: #67f72c;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    bottom: 11px;
    right: 5px;
    z-index: 10;
}

.users_results_wrap .user_item_wrap .distance {
position: absolute;
    bottom: 0px;
    left: 0px;
    color: #fff;
    background: rgba(2, 2, 2, 0.42);
    width: 100%;
    text-align: left;
    padding-left: 5px;
    padding: 4px 0px 4px 5px;
        line-height: 20px;
}
.users_results_wrap .user_item_wrap .user_item img {
float: left;
    margin-right: 4px;
}




.horizontal_scroller {
  position: relative;
}
.horizontal_scroller_wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
-webkit-overflow-scrolling: touch;
    width: 450px;
    margin-left: 25px;
position: relative;
-ms-overflow-style: none;
    scrollbar-width: none;
}
.horizontal_scroller_wrapper::-webkit-scrollbar { 
    display: none;
}
.horizontal_scroller_wrapper .itemo {
  flex: 0 0 auto;
  border: 0px solid #000;
  border-radius: 3px;
  margin: 2px;
  overflow: hidden;
  display: inline-block;
}
.horizontal_scroller_wrapper .itemo span {
  overflow: hidden; 
  display: inline-block; 
  width: 46px; 
  height: 46px; 
  border-radius: 3px; 
  border: 0px #FFF solid;
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: cover;
}

.scroll-left, .scroll-right {
    position: absolute;
    height: 50px;
    line-height: 50px;
    background: #ddd;
    width: 20px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    z-index: 5;
    opacity: .5;
    transition: all .3s;
    border-radius: 4px;
}
.scroll-left:hover, .scroll-right:hover{
  opacity: 1;
}
.scroll-left {
  left: 0;
}
.scroll-right {
  right: 180px;
}
.scroll-left img, .scroll-right img {
  position: relative;
      margin-top: 13px;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

  #messages {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

#messages li {
  padding: 1px 0px;
}

#messages li:nth-child(odd) .d_message {
   background: #FFF;
  color:#000;
font-size: 10pt;
text-shadow: 1px 1px 5px #FFF;
}

#messages {
  /*bottom: 70px;*/
  /*position: absolute;*/
  width: 100%;
}

.login_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 0;
}

.login_row {
  left: 0;
  right: 0;
  width: 460px;
  margin: 0 auto;
  margin-top: 300px;
}

.login_row input {
  line-height: 30px;
  width: 320px;
  padding-left: 10px;
  border: none;
  margin: 0;
}

.login_row button {
  line-height: 30px;
  background: #cdff98;
  cursor: pointer;
  border: none;
  width: 120px;
  margin: 0;
}

.chat_wrap {
  margin: 0 auto;
  width: 100%;
}

#msgcont {
  position: relative;
  width:100%;
  /*bottom: 20px;
  padding-left: 15px;*/
}

#msgcont input {
  outline: none;
width: 415px;
line-height: 30px;
border: 1px solid #868686;
background: #FFF;
color:#333;
    padding-left: 10px;
    border-radius: 32px;
    height: 40px;
font-weight:bold;
}

#msgcont button {
    background: none;
    color: #fff;
    line-height: 40px;
    border: 0px solid #CCCCCC;
    height:40px;
    float: right;
    width: 100px;
    cursor: pointer;
    background-image: url(bi/sendas1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 35%;
    border-radius: 30px;
}

.topgradient {
  display: none;
  position: absolute;
  width: 100%;
  height: 40px;
  z-index: 99;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 26%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 26%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 26%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=0);
}




.d_message {
    display: flex;
    position: relative;
    flex-direction: row;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 100%;
    margin-top: -2px;
    background-color: #F9F9F9;
    transition: background 1s;
font-size: 10pt;
color:#000;
text-shadow: 1px 1px 5px #FFF;
}
.d_message.unread, #messages li:nth-child(odd) .d_message.unread {
    /*background: none;*/
    background: #F9F9F9 !important;
text-shadow: none;
color:#000;

}
/*#messages li:nth-child(odd) .d_message.unread {
    background: none;
}*/
.d_avatar_wrap {
    float: none;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.d_avatar {
    float: left;
    height: 50px;
    overflow: hidden;
    text-align: center;
    border-radius: 50%;
    display: block;
    width: 50px;
    position: relative;
    display: flex;
    align-items: center;
  justify-content: center;
}
.d_premium {
    float: left;
    margin-left: 3px;
margin-top: -3px;
}
.d_avatar img {
width: 50px;
}
.d_premium img {
    height: 15px;
        align-self: center;
}
.d_text {
    display: flex;
    flex-direction: column;
    padding: 0 15px 0 5px;
}
.d_username {
    margin-bottom: 6px;
    display: flex;
font-size: 9pt;
    width: 100%;
    color: #000;
font-weight: bold;
    /*border-bottom: 1px solid #e4e4e4;*/
}
.d_username .time {
  margin-left: 10px;

}
.d_username a {
      color: #000;
font-weight: bold;
}
.d_txt {
  display: flex;
  word-break: break-word;
  padding-right: 15px;
  font-size: 11pt;
}

.char_wrapper {
display: flex;
    flex-direction: column;
    margin-bottom: -50px;
}

.d_form_wrap {
display: flex;
    position: fixed;
    bottom: 0px;
border-bottom:23px #F9F9F9 solid;
    background: #F9F9F9;
    padding-top: 23px;
    padding-bottom: 23px;
    padding-left: 5px;
    padding-right: 5px;
    width: 600px;

}

.d_new_messages_scroller {
    background: none;
    position: absolute;
    z-index: 10;
    top: -2px;
    text-align: center;
    left: 50%;
    border: 2px solid #9dc8e8;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    padding: 1px 12px;
    color: #FFF;
    cursor: pointer;
    display: none;
}
 

.chat_err {
  display:none;
      position: fixed;
    top: 50%;
    left: 50%;
    background: #0078D7;
    z-index: 1000;
    color: #fff;
    font-size: 14px;
    border-radius: 30px;
    padding: 10px 40px;
    transform: translate(-50%, -50%);
}

span.chat_reply {
    float: right;
    position: absolute;
    right: 5px;
    bottom: 4px;
    cursor: pointer;
    opacity: .5;
    transition: all .2s;
}
span.chat_reply:hover {
  opacity: .9;
}

.fileContainer {
    overflow: hidden;
    position: relative;
}

.fileContainer [type=file] {
    cursor: inherit;
    display: block;
    font-size: 999px;
    filter: alpha(opacity=0);
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
}

/* Example stylistic flourishes */

.fileContainer {
background: none;
    padding: .5em;
    border: 0px solid #7BBBDA;
    height: 40px;
    float: right;
    border-radius: 30px;
    width: 50px;
        margin-right: 7px;
        cursor: pointer;
}
.fileContainer img {
      max-width: 34px;
    margin-top: -4px;
}

.fileContainer [type=file] {
    cursor: pointer !important;
}

.mod_tools {
  position: absolute;
  top: 7px;
  right: 6px;
}
.mod_tools span {
cursor: pointer;
    opacity: .2;
    transition: all .2s;
    background: #e0e0e0;
    padding: 0 4px;
    border-radius: 5px;
    border: 1px solid #bf6e6e;
}
.mod_tools span:hover {
  cursor: pointer;
  opacity: 1;
}


/**
* CSS themes for simplePagination.js
* Author: Flavius Matis - http://flaviusmatis.github.com/
* URL: https://github.com/flaviusmatis/simplePagination.js
*/

ul.simple-pagination {
  list-style: none;
}

.simple-pagination {
  display: block;
  overflow: hidden;
  padding-top: 9px;
  padding-bottom: 9px;
  text-align: center;
width:95%;
background: #FFF;
border-top:1px #CCCCCC solid;
border-radius:2px;

}

.simple-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.simple-pagination li {
  list-style: none;
  padding: 0;
  margin: 0;
  float: left;
}
span.ellipse.clickable {
  cursor: pointer;
}

.ellipse input {
  width: 3em;
}

/*------------------------------------*\
  Compact Theme Styles
\*------------------------------------*/
.compact-theme span {
  cursor:pointer;
}

.compact-theme a, .compact-theme span {
  float: left;
  color: #333;
  font-size:14px;
  line-height:24px;
  font-weight: normal;
  text-align: center;
  border: 1px solid #AAA;
  border-left: none;
  min-width: 14px;
  padding: 0 7px;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  background: #efefef; /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Opera11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%); /* IE10+ */
  background: linear-gradient(top, #ffffff 0%,#efefef 100%); /* W3C */
}

.compact-theme a:hover, .compact-theme li:not(.disabled):not(.active) span:hover {
  text-decoration: none;
  background: #efefef; /* Old browsers */
  background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#efefef), color-stop(100%,#bbbbbb)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* Opera11.10+ */
  background: -ms-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* IE10+ */
  background: linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* W3C */
}

.compact-theme li:first-child a, .compact-theme li:first-child span {
  border-left: 1px solid #AAA;
  border-radius: 3px 0 0 3px;
}

.compact-theme li:last-child a, .compact-theme li:last-child span {
  border-radius: 0 3px 3px 0;
}

.compact-theme .current {
  background: #bbbbbb; /* Old browsers */
  background: -moz-linear-gradient(top, #bbbbbb 0%, #efefef 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bbbbbb), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* Opera11.10+ */
  background: -ms-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* IE10+ */
  background: linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* W3C */
  cursor: default;
}

.compact-theme .ellipse {
  background: #EAEAEA;
  padding: 0 10px;
  cursor: default;
}

/*------------------------------------*\
  Light Theme Styles
\*------------------------------------*/
.light-theme span {
  cursor:pointer;
}

.light-theme a, .light-theme span {
  float: left;
  color: #666;
  font-size:14px;
  line-height:24px;
  font-weight: normal;
  text-align: center;
  border: 1px solid #BBB;
  min-width: 14px;
  padding: 0 7px;
  margin: 0 5px 0 0;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  background: #efefef; /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Opera11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%); /* IE10+ */
  background: linear-gradient(top, #ffffff 0%,#efefef 100%); /* W3C */
}

.light-theme a:hover, .light-theme li:not(.disabled):not(.active) span:hover {
  text-decoration: none;
  background: #FCFCFC;
}

.light-theme .current {
  background: #666;
  color: #FFF;
  border-color: #444;
  box-shadow: 0 1px 0 rgba(255,255,255,1), 0 0 2px rgba(0, 0, 0, 0.3) inset;
  cursor: default;
}

.light-theme .ellipse {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-weight: bold;
  cursor: default;
}

/*------------------------------------*\
  Dark Theme Styles
\*------------------------------------*/
.dark-theme span {
  cursor:pointer;
}

.dark-theme a, .dark-theme span {
  float: left;
  color: #CCC;
  font-size:14px;
  line-height:24px;
  font-weight: normal;
  text-align: center;
  border: 1px solid #222;
  min-width: 14px;
  padding: 0 7px;
  margin: 0 5px 0 0;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  background: #555; /* Old browsers */
  background: -moz-linear-gradient(top, #555 0%, #333 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555), color-stop(100%,#333)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #555 0%,#333 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #555 0%,#333 100%); /* Opera11.10+ */
  background: -ms-linear-gradient(top, #555 0%,#333 100%); /* IE10+ */
  background: linear-gradient(top, #555 0%,#333 100%); /* W3C */
}

.dark-theme a:hover, .dark-theme li:not(.disabled):not(.active) span:hover {
  text-decoration: none;
  background: #444;
}

.dark-theme .current {
  background: #222;
  color: #FFF;
  border-color: #000;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2), 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
  cursor: default;
}

.dark-theme .ellipse {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-weight: bold;
  cursor: default;
}










.animation-examples {
  width: 189px;
  height: 180px;
  border-radius:50%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;

  font-weight: bold;
  font-family: cambria;
  margin-right: -100px;
}





.animation-examples.two {
  color: #fff;
  box-shadow: 0 0 0 0px #fff;
  animation: 3s animateBorderTwo ease infinite;
  border-radius:50%;
}

@keyframes animateBorderTwo {
  to {
    outline-color: #fff;
    box-shadow: 0 0 0px 0px #fff;
  border-radius:50%;
  }
}





#animation-examples{
  margin: 3px 3px;
  border-radius:50%;
}




#vk_groups{

}



/* Navigation Menu - Background */
.navigation {
  /* critical sizing and position styles */
  width: 900px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: -900px;
  z-index: 0;
  
  /* non-critical appearance styles */
  list-style: none;
  background: #fff;
}

/* Navigation Menu - List items */
.nav-item {
  /* non-critical appearance styles */
  width: 900px;
  border-top: 0px solid #111;
  border-bottom: 0px solid #000;
}

.nav-item a {
  /* non-critical appearance styles */
  display: block;
  padding: 0.7em;
  background: #333;
  color: #fff;

  text-decoration: none;
  transition: color 0.3s, background 0.5s;
  margin-top: -2px;

}




.hidecolor{ 
margin:-2px;
overflow: hidden; 
display: inline-block; 
width: 100px; 
height: 100px;
background-position: center top; 
background-repeat: no-repeat; 
background-size: cover;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
opacity: 0.2;
filter:alpha(opacity= 10);
}
.hidecolor:hover { 
    filter:none;
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
opacity: 1.0;
filter:alpha(opacity= 100);
}




















.nav-item a:hover {
  color: #000;
  background: #fff;
}

/* Site Wrapper - Everything that isn't navigation */
.site-wrap {
  /* Critical position and size styles */
min-width: 100%;
  position: relative;
  top: 0;
  bottom: 100%;
  left: 0;
  z-index: 1;
    background: #fff;

  
}

/* Nav Trigger */
.nav-trigger {
  /* critical styles - hide the checkbox input */
  display: block;
  height: 0;
  width: 0;
}

label[for="nav-trigger"] {
  /* critical positioning styles */
  position: fixed;
  left: 0px; top: 0px;
  z-index: 999;
  
  /* non-critical apperance styles */
  height: 206px;
  width: 223px;
  cursor: pointer;
  background-image: url(/bik/mn9999.png);
background-position: 0 0px;
}

/* Make the Magic Happen */
.nav-trigger + label, .site-wrap {
  transition: left 0.6s;
}

.nav-trigger:checked + label {
  width: 100%;
background-position: 0 -206px;
}

.nav-trigger:checked ~ .site-wrap {
  left: 900px;
    display: block;
  box-shadow: 0 0 15px 25px rgba(0,0,0,0.5);
  position: fixed;

}

.nav-trigger:checked ~ .navigation {
  position: relative;
margin-left: 900px;

}



code {
    padding: -2px;
    background: #ddd;
}

body {
   overflow-x: hidden;
width: 100%;
}

/* Micro reset */
*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box; box-sizing:border-box;margin:0;padding:0;}
html, body { height: 115%; width: 100%;}






.bonus91 {
width:450px;
height: 250px;
padding:0px;
position:fixed;
left:-50px;
bottom: -60px;
z-index:7000;

}








.tag_link{


color: #F4511E;
    text-decoration: none;
font-weight: bold;
} 

.tag_link:hover{
        text-decoration: none;
	color: #CC0033;

} 


.sheensay_fixed {
   position: fixed !important;
   top: 50px !important;

}

#lidermenu {
width:300px;
height: 930px;
position:fixed;
top:10px;
right:0px;
z-index:1998;

}


.elent {
width:202px;
height: 200px;
display: block;
background:url('/bik1/try3.png');
}
.elent:hover {
    background-position: 0 -200px; /* Смещение фона */
}

.bonus2 {
width:50px;
height: 50px;
background:url('/bik1/y777.png');
padding:0px;
position:fixed;
top:350px;
left:5px;
z-index:1999;
cursor:pointer;
border-radius: 0px;

}

.music {
    color: #000;

    min-height: 50px;
}


.bonus9 {
width:300px;
height: 400px;
padding:0px;
position:fixed;
bottom:10px;
z-index:999;
cursor:pointer;
border-radius: 0px;
right:100px;

}

.bonus999 {
width:100%;
height: 150px;
padding:0px;
position:fixed;
bottom:0px;
z-index:999;
cursor:pointer;
border-radius: 0px;

}

.bonus888 {
width:100%;
height: 200px;
padding:0px;
position:fixed;
bottom:0px;
z-index:999;
cursor:pointer;
border-radius: 0px;
box-shadow: 0 0 35px 10px #fff;

}

.bonus8888 {
width:100%;
height: 200px;
position:fixed;
top:206px;
bottom: 200px;
z-index:999;
cursor:pointer;
border-radius: 0px;
box-shadow: 0 0 35px 10px #fff;

}




.bonus2:hover {
    background-position: 0 -50px; /* Смещение фона */
}


.bonus5 {
width:199px;
height: 125px;
background:url('/bik1/lgbt7.png');
padding:0px;
position:fixed;
top:-1px;
left:-1px;
z-index:0;
border-radius: 0px;

}

.bonus6 {
width:150px;
height: 597px;
background:url('/bik1/lgbt3.png');
padding:0px;
position:fixed;
top:10px;
right:-1px;
z-index:0;
border-radius: 0px;

}

.bonus7 {
max-height: 110px;

}


 a.rollover61 {
    background: url(/graf/13.png); /* Путь к файлу с исходным  рисунком */
    display: block; /* Рисунок как блочный элемент */
    width: 72px; /* Ширина рисунка в пикселах */
    height: 40px; /* Высота рисунка */
   }
a.rollover61:hover {
    background-position: 0 -40px; /* Смещение фона */
   }

 a.rollover23 {
    background: url(/graf/24.png); /* Путь к файлу с исходным  рисунком */
    display: block; /* Рисунок как блочный элемент */
    width: 245px; /* Ширина рисунка в пикселах */
    height: 40px; /* Высота рисунка */
   }
a.rollover23:hover {
    background-position: 0 -40px; /* Смещение фона */
   }

a.help1 {
    background: url(/graf/25.png); /* Путь к файлу с исходным  рисунком */
    display: block; /* Рисунок как блочный элемент */
    width: 322px; /* Ширина рисунка в пикселах */
    height: 40px; /* Высота рисунка */
   }
a.help1:hover {
    background-position: 0 -40px; /* Смещение фона */
   }

 a.group1 {
    background: url(/vid71.png); /* Путь к файлу с исходным  рисунком */
    display: block; /* Рисунок как блочный элемент */
    width: 495px; /* Ширина рисунка в пикселах */
    height: 50px; /* Высота рисунка */
   }
a.group1:hover {
    background-position: 0 -50px; /* Смещение фона */
   }


 a.lider1 {
    background: url(/graf/4.png); /* Путь к файлу с исходным  рисунком */
    display: block; /* Рисунок как блочный элемент */
    width: 180px; /* Ширина рисунка в пикселах */
    height: 30px; /* Высота рисунка */
   }
a.lider1:hover {
    background-position: 0 -30px; /* Смещение фона */
   }

.lent1 {
width:85px;
height:39px;
display: block;
background: url(/diz/lentos578.png); /* Путь к файлу с исходным  рисунком */
border:0px solid #ccc;
color:#fff;
text-align:left;
text-shadow: 0.1em 0.1em 0.06em #006699;
margin-top: 0px;
padding-top:11px;
padding-left:4px;
padding-right:0px;
margin-left: 0px;
padding-bottom:px;
z-index:41;
cursor:pointer;

font-weight:bold;

}
.lent1:hover {
border:0px solid #ccc;
background-position: 0 -50px; /* Смещение фона */
color:#fff;
z-index:41;
cursor:pointer;

text-decoration:none;

}

  a.rollover24 {
    background: url(/ken700.png); /* Путь к файлу с исходным  рисунком */
    display: block; /* Рисунок как блочный элемент */
    width: 175px; /* Ширина рисунка в пикселах */
    height: 20px; /* Высота рисунка */
   }
a.rollover24:hover {
    background-position: 0 -20px; /* Смещение фона */
   }

 a.rollover25 {
    background: url(/klk98.png); /* Путь к файлу с исходным  рисунком */
    display: block; /* Рисунок как блочный элемент */
    width: 179px; /* Ширина рисунка в пикселах */
    height: 25px; /* Высота рисунка */
   }
a.rollover25:hover {
    background-position: 0 -25px; /* Смещение фона */
   }


.mens {
 color: #fff;
font-weight:600;
text-shadow: 0.1em 0.1em 0.05em #006699;
 text-decoration:none;
 }
 
.mens:hover {
 text-decoration:none;
font-weight:600;
text-shadow: 0.1em 0.1em 0.06em #fff;
 color: #006699;
 }

.mens2 {
text-shadow: 0.1em 0.1em 0.06em #fff;
 text-decoration:none;
 }
 
.mens2:hover {
 text-decoration:none;
 }

.mens5 {
 color: #005E8A;
text-shadow: 0.1em 0.1em 0.05em #fff;
 text-decoration:none;
 }
 
.mens5:hover {
 text-decoration:none;
 color: #0086C6;
 }

.mens9 {
text-decoration: underline;
    -moz-text-decoration-style: dotted;
    -moz-text-decoration-color: #D25400;
 }
 
.mens9:hover {
text-decoration: underline;
    -moz-text-decoration-style: dashed;
    -moz-text-decoration-color: #D25400;
 }

.mens10 {
text-decoration: underline;
color: #fff;
 }
 
.mens10:hover {
text-decoration: none;
color: #E15A00;
 }

.mens13 {
color: #006699;
text-decoration: none;
text-shadow: 0.01em 0.01em 0.01em #fff;
 }
 
.mens13:hover {
color: #E15A00;
text-decoration: underline;
text-shadow: 0.1em 0.1em 0.02em #fff;
 }

.mens15 {
color: #FFF;
text-decoration: underline;
text-shadow: 0.1em 0.1em 0.03em #000;
 }
 
.mens15:hover {
color: #FFF;
text-decoration: none;
text-shadow: 0.1em 0.1em 0.03em #000;
 }

.mens16 {
text-decoration: none;
text-shadow: 0.1em 0.1em 0.03em #000;
 }
  </style>
<style>
.menss16 {
color: #FFF;
text-decoration: none;
text-shadow: 0.05em 0.05em 0.01em #000;
 }

.mens17 {
text-decoration: none;
text-shadow: 0.1em 0.1em 0.02em #fff;
 }
  </style>
<style>
.mens30 {
color: #FFF;
text-decoration: none;
 }

.mens30:hover {
color: #FF6600;
text-decoration: none;
 }

.topbutton {
width:100px;
border:2px solid #ccc;
background:url('https://linkgay.ru/trtr4.png');
text-align:center;
padding:10px;
position:fixed;
bottom:70px;
right:50px;
z-index:40;
cursor:pointer;
color:#fff;

font-weight:600;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
}
.topbutton:hover {
width:100px;
border:2px solid #fff;
background:url('https://linkgay.ru/trtr4.png');
background:#006699;
text-align:center;
padding:10px;
position:fixed;
bottom:70px;
right:50px;
z-index:40;
cursor:pointer;
color:#fff;

font-weight:600;
text-decoration: none;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
}

.menu {
width:170px;
height:20px;
border:0px solid #ccc;
text-align:left;
text-shadow: 0.1em 0.1em 0.06em #555555;
color: #fff;
margin-top: 0px;
padding-top:5px;
margin-left: 10px;
padding-bottom:0px;
z-index:41;
cursor:pointer;


}
.menu:hover {
width:170px;
height:20px;
border:0px solid #ccc;
text-shadow: none;
background:#2C2C2C;
border-radius: 7px 0px 0px 7px;
color: #fff;
text-align:left;
margin-top: 0px;
padding-top:5px;
padding-bottom:0px;
z-index:41;
cursor:pointer;


}

.menu_p {
width:180px;
height:35px;
background: url(/diz/fos51.png);
text-align:right;
color: #FFF;
margin-top: 10px;
padding-top:5px;
border-radius: 7px 23px 7px 7px;
margin-left: 20px;
padding-bottom:5px;
z-index:41;
cursor:pointer;


}
.menu_p:hover {
width:180px;
height:35px;
background-position: 0 -27px;
text-align:right;
color: #FFF;
margin-top: 10px;
padding-top:5px;
padding-bottom:5px;
z-index:41;
cursor:pointer;


}

.menu_p2 {
min-width:160px;
height:35px;
border:0px solid #ccc;
background: url(/graf/83.png);
text-align:right;
color: #FFF;
margin-top: 10px;
padding-top:5px;
border-radius: 3px;
margin-left: 5px;
padding-bottom:5px;
z-index:41;
cursor:pointer;


}
.menu_p2:hover {
min-width:160px;
height:35px;
border:0px solid #ccc;
background-position: 0 -25px;
text-align:right;
color: #FFF;
margin-top: 10px;
padding-top:5px;
padding-bottom:5px;
z-index:41;
cursor:pointer;
text-decoration: none;


}

.menu_p3 {
min-width:160px;
height:35px;
border:0px solid #ccc;
background: url(/graf/g191.png);
text-align:right;
color: #FFF;
margin-top: -20px;
padding-top:10px;
border-radius: 3px;
margin-left: 5px;
padding-bottom:10px;
z-index:41;
cursor:pointer;


}
.menu_p3:hover {
min-width:160px;
height:35px;
border:0px solid #ccc;
background-position: 0 -35px;
text-align:right;
color: #FFF;
margin-top: -20px;
padding-top:10px;
padding-bottom:10px;
z-index:41;
cursor:pointer;
text-decoration: none;


}

.menu_plid {
width:190px;
height:35px;
border:2px solid #CC3366;
background: #CC3366;
text-align:right;
color: #FFF;
margin-top: 10px;
padding-top:5px;
border-radius: 5px;
margin-left: 0px;
padding-bottom:5px;
z-index:41;
cursor:pointer;
text-decoration: none;


}
.menu_plid:hover {
width:190px;
height:35px;
border:2px solid #FFF;
text-align:right;
color: #FFF;
margin-top: 10px;
padding-top:5px;
padding-bottom:5px;
z-index:41;
cursor:pointer;
text-decoration: none;


}


.g1 {
width:158px;
height:35px;
border:0px solid #ccc;
background: url(/bik1/g001.png);
color: #FFF;
margin-top: 0px;
text-align: center;
padding-top:15px;
padding-left:-20px;
border: 0px #fff solid;
margin-left: 0px;
padding-bottom: 0px;
cursor:pointer;

text-decoration: none;
    display: inline-block;
font-family: 'Lobster', cursive;

}
.g1:hover {
background-position: 0 -50px;
color: #FFF;
text-decoration: none;


}

.g2 {
width:158px;
height:35px;
border:0px solid #ccc;
background: url(/bik1/g002.png);
color: #fff;
margin-top: 0px;
text-align: center;
padding-top:15px;
padding-left:5px;
border: 0px #fff solid;
margin-left: 0px;
padding-bottom: 0px;
cursor:pointer;

text-decoration: none;
    display: inline-block;
font-family: 'Lobster', cursive;

}
.g2:hover {
background-position: 0 -50px;
color: #FFF;
text-decoration: none;


}



div {
    border: none;
}

table {
    display: inline-table;
}

h1, h2, h3 {
    color: #000;
    margin: 0px;
    text-align: left;
}

h1 {

    margin-bottom: 10px;
    margin-top: 5px;
    max-width: 85%;
    font-size:15pt;
}

h15 {
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 15px;
    margin-bottom: 3px;
    margin-top: 6px;
    margin-left: 4px;
    border-radius: 5px;
    background: #f7820c;
    max-width: 100px;
    color: #fff;
}

h6578 {

    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 10px;
    margin-top: -40px;
    border-radius: 5px;
    background: none;
    width: 100%;
    color: #35B5998;
display: block;
text-align: center;

}

h6579 {

    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 10px;
    margin-top: -40px;
    border-radius: 5px;
    background: none;
    width: 100%;

    color: #35B5998;
display: block;
text-align: center;
}

h15:hover {
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 15px;
    margin-bottom: 3px;
    margin-top: 6px;
    margin-left: 4px;
    border-radius: 5px;
    background: #F89129;
    max-width: 100px;
    color: #fff;
}

h31 {
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;

    padding-right: 15px;
    margin-bottom: 5px;
    margin-top: 6px;
    margin-left: 0px;
    border-radius: 9px;
    border: 1px #fff solid;
    background: #009330;
    max-width: 250px;
    color: #fff;
 text-decoration:none;
}

h266 {
    padding-left: 15px;
    padding-top: 3px;

    padding-bottom: 3px;
    padding-right: 15px;
    margin-bottom: 3px;
    margin-top: 13px;
    margin-left: -20px;
    border-radius: 9px;
    background: #fff;
    width: 55px;
    color: #507299;
    text-decoration: none;
display: block;
}

h25 {
    padding-left: 3px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 3px;
    margin-bottom: 3px;
    margin-top: 2px;
    margin-left: 4px;
    border-radius: 25px;
    background: #888;
    max-width: 500px;
    color: #fff;

}

h26 {
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 2px;
    padding-right: 40px;
    margin-bottom: 35px;
    margin-top: 3px;

    font-weight:bold;
    margin-left: 4px;
    border-radius: 15px;
    border: 3px #FFF solid;
    background: #CE4F00;
    max-width: 400px;
    color: #fff;
    text-decoration: none;
}

h126 {
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 2px;
    padding-right: 40px;
    margin-bottom: 35px;
    margin-top: 3px;

    font-weight:bold;
    margin-left: 4px;
    border-radius: 15px;
    border: 0px #FFF solid;
    background: none;
    max-width: 400px;
    color: #fff;
    text-decoration: none;
}

h101 {
    padding-top: 19px;
    padding-bottom: 19px;
    margin-bottom: 1px;
    margin-top: 1px;
    border-radius: 0px;
    background: none;
    width: 100%;
    color: #507299;
    text-decoration: none;

display: inline-block;
}

h101:hover {
    padding-top: 19px;
    padding-bottom: 19px;
    margin-bottom: 1px;
    margin-top: 1px;
    border-radius: 0px;
    background: #507299;
    width: 100%;
    color: #fff;
    text-decoration: none;

display: inline-block;
}

.h102 {
    padding-top: 29px;
    padding-bottom: 29px;
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 0px 45px 45px 0px;
    background: #F2F2F2;
    width: 100%;
    color: #000;
    text-decoration: none;

display: inline-block;
}

.h102:hover {
    padding-top: 29px;
    padding-bottom: 29px;
    margin-bottom: 0px;
    margin-top: 0px;
    background: #777;
    width: 100%;
    color: #fff;
    text-decoration: none;

display: inline-block;
}

.h103 {
 padding-top: 29px;
    padding-bottom: 29px;
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 0px 45px 45px 0px;
    background: #F2F2F2;
    width: 100%;
    color: #000;
    text-decoration: none;

display: inline-block;
}

.h103:hover {
 padding-top: 29px;
    padding-bottom: 29px;
    margin-bottom: 0px;
    margin-top: 0px;
    background: #FF7F00;
    width: 100%;
    color: #fff;
    text-decoration: none;

display: inline-block;
}









h27 {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 10px;
    margin-bottom: 3px;
    margin-top: 6px;

    margin-left: 4px;
    border-radius: 5px;
    background: #666666;
    max-width: 150px;
    color: #FFF;
    text-decoration: none;
display: inline-block;
}

h27:hover {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 10px;
    margin-bottom: 3px;
    margin-top: 6px;
    margin-left: 4px;
    border-radius: 5px;
    background: #D80027;
    max-width: 150px;
    color: #FFF;
    text-decoration: none;
}

h28 {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 2px;
    border-radius: 5px;
    border: 1px #043B56 solid;
    background: #043B56;
    min-width: 60%;
    color: #FFF;
    text-decoration: none;
display: inline-block;
}

h28:hover {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 2px;
    border-radius: 5px;
    border: 1px #F0F0F0 solid;
    background: #F0F0F0;
    min-width: 60%;
    color: #045B56;
    text-decoration: none;
display: inline-block;
}



h100 {
    color: #FFFFFF;

    font-weight:bold;
    background: #7292B6;
    border: none;
    border-radius: 3px;
    display: table;
    padding-top: 9px;
    padding-bottom: 9px;
    position: relative;
    min-width: 200px;
    min-height: 26px;
    cursor: pointer;
}

h100:hover {
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.5);
    text-shadow: 0px 0px 15px #fff;
    color: #FFFFFF;

}

h140 {
    color: #FFFFFF;

    font-weight:bold;
    background: #999;
    border: none;
    border-radius: 3px;
    display: table;
    padding-top: 9px;
    position: relative;
    min-width: 200px;
    min-height: 26px;
    cursor: pointer;
}

h140:hover {
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.5);
    text-shadow: 0px 0px 15px #fff;
    color: #FFFFFF;

}

h210 {
display: inline-block;
    padding-left: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 5px;
    margin-bottom: 0px;
    margin-top: 5px;
    border-radius: 13px 2px 13px 2px;
    border: 0px #f7820c dotted;
    background: none;
    width: 90%;
    color: #f7820c;

}

h210:hover {
display: inline-block;
    padding-left: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 5px;
    margin-bottom: 0px;
    margin-top: 5px;
    border-radius: 13px 2px 13px 2px;
    border: 0px #fff dotted;
    background: none;
    width: 90%;
    color: #fff;

}

h211 {
display: inline-block;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
    margin-bottom: 0px;
    margin-top: 5px;
    border-radius: 5px;
    border: 2px #94DE5E solid;
    background: #94DE5E;
    width: 70%;
    color: #fff;

font-weight:bold;
}

h211:hover {
display: inline-block;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
    margin-bottom: 0px;
    margin-top: 5px;
    border-radius: 5px;
    border: 3px #94DE5E solid;
    background: #94DE5E;
    width: 70%;
    color: #fff;

font-weight:bold;
}

a {
    color: #F4511E;
    outline: none;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #CC0033;
}

z {
    color: #0A80BA;
    outline: none;
    text-decoration: none;
    cursor: pointer;
font-weight:bold;
}

z:hover {
    color: #607D8B;
    text-decoration: none;
font-weight:bold;
}


h1 a, h2 a, h3 a {
    color: #000000;
    text-decoration: none;
}

h1:hover a, h2:hover a, h3:hover a {
    color: #000000;
    text-decoration: none;
}

p {
    margin: 0px 0px;
}

img {
    border: none;
}

img.smile {
	width:16px;
	height:16px;
border-radius: none;
}

input {
    vertical-align: middle;
}



#wrapper {

    width: 100%;
    margin-top: 0px;
background: none;

}

#menuu2 {

    position: relative;

}


#popup {
    width: 100%;


}

/* Header
-----------------------------------------------------------------------------*/
#header {
    margin: 0px auto;
    height: 0px;
    width: 100%;
    text-align: left;


}



#mega {
    width: 600px;
    position: absolute;
    z-index: 2;
background: none;
float:left;

}


#boke2 {
width: 300px;
margin-left:625px;
    position: fixed;
top:55px;
    z-index: 3;
box-shadow: 0 0 2px #000;
    overflow: auto;
    width: 300px;
    z-index: 3;
background: none;
bottom:100px;
}

#boke3 {

position: static; 
overflow: auto;
}




#boke {
    width: 300px;
    z-index: 3;
background: none;

margin-left:625px;

}







#content {
    width: 950px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
margin-top:55px;
}





#shadow {
    background: url(img/middle.png) center top no-repeat;
    width: 100%;
    height: 37px;
    position: absolute;
    z-index: 2;
}

#loadingn {
    background: url(bi/saga.gif);
    width: 250px;
    height: 250px;
    position: fixed;
    z-index: 9999;
    top:150px;
left:40%;
background-position: center; background-repeat: no-repeat; background-size: cover;
overflow: hidden; display: inline-block;
}



#levo {
    margin-left: -10px;

}

#middle {
    width: 100%;
    padding: 0px 0px;
    padding-bottom: 15px;
margin-top:13px;
background: #FFF;
border-radius:4px;


}

#sideleft {
    width: 190px;
    padding: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 20px;
    /* border-top: #e3e3e3 4px solid; */
    float: left;
    margin-right: 0px;
    margin-left: -4px;
    margin-top: -20px;
background: none;
}

#hm {
    margin-left: -250px;

}

#sideleft5 {
    width: 215px;
    padding: 0px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
    /* border-top: #e3e3e3 4px solid; */
    float: left;
    margin-left: 0px;
   margin-top: -275px;
}

#content_body {
    /* border-top: #e3e3e3 4px solid; */
    width: 100%;
    margin-left: 0px;
background: none;

}


#content_body2 {
    /* border-top: #e3e3e3 4px solid; */
    width: 100%;
    margin-left: 0px;
background: none;

}

/* new
-----------------------------------------------------------------------------*/
.userItem {width:32%;display: inline-block;height: 370px;overflow: hidden;vertical-align: top;}
.userItem.noLogin {width:32%;display: inline-block;height: 370px;overflow: hidden;vertical-align: top;}
.userItem.noLogin .content {width:100%;border: 1px #e3e3e3 solid;height: 350px;border-radius: 3px;text-align: center; background: #fff; margin: 10px auto;vertical-align: top;}
.userItem .content {width:100%;border: 1px #e3e3e3 solid;height: 350px;border-radius: 3px;text-align: center; background: #fff; margin: 10px auto;vertical-align: top;}
.userItem .content:hover {border: 3px #fff solid;}
.userItem .content .avatar {display:block; height: 270px;overflow: hidden; margin-top:0px;}
.userItem .content .avatar img {min-width:99%; max-width:100%; height:270px; size: cover; repeat: no-repeat; position: center top;}
.userItem .content .user {background: #fff;padding: 15px;display: block;height:37px; margin-bottom: 50px}
.userItem .content .user a {text-decoration:none;}
.userItem .content .user a .fio {color:#919191;}
.userItem .content .button {line-height:22px;margin-bottom:1px;height:23px;text-decoration:none;width:100%;display:inline-block;color: #FFFFFF;background-color: #333333;background-size: 10px 10px;border:none;border-radius:0px;cursor:pointer;}
.userItem .content .button:hover {box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.5);text-shadow: 0px 0px 15px #fff;}
.userItem .content .load {width:auto;}
.userItem .content .fr {color: #666;height:17px;}
.userItem .content .fio {}
.userItem .content .fr .mes {display: none;position: absolute;background: none; border: #CCC 1px solid;padding: 5px;width: 152px;margin-top: -5px;border:0px;}
.userItem .content .fr .small {line-height: 9px;}
.userItem .content .fr:hover .mes, .userItem .content .mes:hover {display: block;}
.userItem .content .lineStatus {position:center;display:block;height:22px;margin-top: -80px}
.userItem .content .online {position:relative;left:6px;top:-210px;display:inline-block;color:#FFFFFF;background-color: #FF6600;padding: 2px;height: 14px;margin: 2px 0px;}
/* Footer
-----------------------------------------------------------------------------*/
#footer {
    background-color: #282828;
    margin: 0px auto;
    width: 100%;
    text-align: left;

    color: #b9b8b8;
}

#footer:before {
    content: '';

}

#footer a {
    color: #b9b8b8;
}

#footer hr {
    height: 0px;
    width: 100%;
    border-top: #b9b8b8 7px solid;
}

#autorization {
    padding: 0px;
    background: url(/fonmax.png);
    color: #006699;
}

#autorization a {
    color: #006699;
}

#autorization strong {

    vertical-align: middle;
    margin: 0px 6px;

}

#autoriz {
    margin-top: 5px;
    margin-left: 0px;


}

#autorization input[type="text"], #autorization input[type="password"] {
    background: #2a3134;
    border: #FFFFFF 7px solid;
    border-radius: 10px;
    color: #FFFFFF;

    padding: 10px;
    height: 42px;
    width: 170px;
    box-shadow: inset 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
}

#autorization p {
    margin-top: 0px;
    margin-right: 0px;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="button"]:focus,
input[type="submit"]:focus {
    outline: none;
}

#reg_button {

    border-radius: 10px;
    display: inline-block;
}

#reg_button input[type="button"] {
    width: 320px;
    padding: 10px 20px;
    color: #fff;

    background: #2a3134;
    cursor: pointer;
    border: none;
    border-radius: 15px;
}

#reg_button:after {
    content: 'Регистрация бесплатная и займет не более минуты';
    position: absolute;
    width: 320px;
    text-align: center;
}

#bottom_menu {
    width: 860px;
    background: rgba(0, 87, 150, 0.39);
    color: #fff;

    font-weight: bold;
    padding: 10px;
    padding-right: 130px;
    text-align: center;
    position: absolute;
}

#bchat2 {
    margin-bottom: -137px;
}

#diall {
    margin-bottom: -95px;
}


#bottom_menu:before {
    height: 34px;
    width: 42px;
    padding-top: 8px;
    text-align: center;
    border: 7px #0e7daf solid;
    border-radius: 50%;
    background: #dddddd;
    content: '18+';
    color: #0e7daf;
    position: absolute;

    top: -3px;
    right: 70px;
}

#bottom_menu a {
    color: #fff;

    text-decoration: none;
}

#bottom_menu a:hover {
    text-decoration: underline;
}

#bottom_menu li {
    display: inline-block;
}

#users_online {
    text-align: right;
    margin: 0px;
}

#users_online p {

    font-weight: bold;
    color: #FB673F;

}

#users_online strong {
    color: #4eb5df;
}











#nav{
	float:center;
	width:100%;
	list-style:none;
	margin-bottom:10px;
        margin-left:19px;
}
#nav li{
	float:left;
	margin-right:10px;
	position:relative;
	display:block;
}
#nav li a{
	display:block;
	padding:5px;
	color:#FFF;
	background:none;
        border: 1px #FFF solid;
        border-radius: 3px;
	text-decoration:none;
	
	-moz-border-radius:3px;
	-webkit-border-radius:3px;

}
#nav li a:hover{
	color:#777;
	background:#fff;
	text-decoration:underline;
}

/*--- ВЫПАДАЮЩИЕ ПУНКТЫ ---*/
#nav ul{
	list-style:none;
	position:absolute;
	left:-9999px; /* Скрываем за экраном, когда не нужно (данный метод лучше, чем display:none;) */
	opacity:0; /* Устанавливаем начальное состояние прозрачности */
	-webkit-transition:0.25s linear opacity; /* В Webkit выпадающие пункты будут проявляться */
}
#nav ul li{
	padding-top:1px; /* Вводим отступ между li чтобы создать иллюзию разделенных пунктов меню */
	float:none;
        z-index:9999;

}
#nav ul a{
	white-space:nowrap; /* Останавливаем перенос текста и создаем многострочный выпадающий пункт */
	display:block;
        z-index:9999;
}
#nav li:hover ul{ /* Выводим выпадающий пункт при наведении курсора */
	left:0; /* Приносим его обратно на экран, когда нужно */
	opacity:1; /* Делаем непрозрачным */
        z-index:9999;
}
#nav li:hover a{ /* Устанавливаем стили для верхнего уровня, когда выводится выпадающий список */
	background:#FFF;
        z-index:9999;
	text-decoration:none;
color:#000;
box-shadow: 0 0 3px #000;
}
#nav li:hover ul a{ /* Изменяем некоторые стили верхнего уровня при выводе выпадающего пункта */
	text-decoration:none;
	-webkit-transition:-webkit-transform 0.075s linear;
        z-index:9999;
}
#nav li:hover ul li a:hover{ /* Устанавливаем стили для выпадающих пунктов, когда курсор наводится на конкретный пункт */
	background:#FF3300;
color:#FFF;
border: 1px #FF3300 solid;
	text-decoration:none;
	-moz-transform:scale(1.05);
	-webkit-transform:scale(1.05);
        z-index:9999;
}
























#admin_panel {
    color: #FFF;
    position: fixed;
    top: 0px;
    left: 0px;
    text-align: center;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
z-index: 10000;
}

#admin_panel_buttons {
    display: none;
}

#admin_panel:hover #admin_panel_buttons {
    display: block;
}

#admin_panel a {
    color: #FFF;
}

.show_div {
    width: 600px;
    position: fixed;
height: 89.9%;
top:10px;
left: 300px;
z-index: 1000;
box-shadow: 0 0 355px #000;
background: rgba(0, 0, 0, 0.9);
overflow: auto;
border-radius:9px;

}

#show_messege_iframe {
background: #FFF;

}


.show_messege_iframe {
background: #FFF;

}

.show_div #body {
background: #FFF;
}

.show_div .body {
background: #FFF;
}

.show_div body {
background: #FFF;
}


#iframe .body {
    background: #FFF;
}

.iframe #body {
    background: #FFF;
}

#iframe {
background: #FFF;

}

.iframe {
background: #FFF;

}


.html_txt {
background: #FFF;

}


.show_div body {
background: #FFF;
}

.show_div body {
background: #FFF;
}

.show_div iframe {
background: #FFF;
}

.show_div iframe {
background: #FFF;
}




.show_div html {
background: #FFF;
}

.show_div html {
background: #FFF;
}


.show_div #tab_2 img {
    width: 600px;
    border-radius: 3px;
position: static; 
overflow-y: scroll;
background: #FFF;

}

.show_div #tab_1 {
    width: 600px;
height: 99.9%;
position: static; 
overflow-y: scroll;
background: #FFF;

}


.show_div #tab_2 {
    width: 600px;
    border-radius: 0px;
    background: #FFF;
    margin-left: 0px;
    color: #000;
height: 99.9%;
position: static; 
overflow-y: scroll;
z-index:8888;

}

#tab_1 img {
    width: 600px;
    border-radius: 0px;
    margin-left: 0px;
position: static; 
overflow-y: scroll;
background: #FFF;

}

#tab_2 img {
    width: 100%;
    border-radius: 0px;
position: static; 
overflow-y: scroll;
background: #FFF;

}

.nav {
    width: 30px;
    color: #fff;

    vertical-align: middle;
    text-align: center;
    border: #999 thin solid;
    cursor: pointer;
    text-decoration: none;
    border-radius: 10px;
}

.nav:hover {
    color: #000;
    text-decoration: none;
    border: #000 thin solid
}

.nav_select {
    width: 30px;
    color: #000;

    vertical-align: middle;
    text-align: center;
    border: #000 thin solid;
    border-radius: 20px;
}

.er {
    color: #000;

    margin: 3px;
  font-weight: bold;
    text-align: center;

}

.er2 {
    color: #fff;

    margin: 1px;
    text-align: center;
    padding: 35px 0px;
    background: url(/avto6.png);

}

net {
display: none;

}

input[type="text"], input[type="password"] {
    color: #000;
font-size:13px;
    padding: 5px;
    border: 1px #999 solid;
    border-radius: 15px;
    width: 60%;
    height: 30px;
    background: #fff;
    margin: 5px 0px;
}

input[type="text2"], input[type="password2"] {
    color: #333333;

    padding: 9px 10px;
    text-align: center;
    border: 1px #555555 solid;
    border-radius: 7px;
    width: 60%;
    height: 37px;
    background: #FFF;
    margin: 5px 0px;
    margin-left: 70px;
}

input[type="text3"], input[type="password3"] {
    color: #333333;

    width: 0px;
    height: 0px;
    background: #555555;
    margin: 0px 0px;
    margin-left: 70px;
}

#enter {
    float: left;
    margin-top: 40px;
    margin-left: 120px;

    color: #70312b;
    width: 400px;
    height: 130px;
}

#enter a {
    color: #666666;
}

textarea {
    color: #555555;

    padding: 3px;
    border: 0px #7E7E7E solid;
    border-radius: 3px;
    width: 95%;
    height: 30px;
    background: #FFF;
    resize: none;
}

textaria {
    color: #555555;

    padding: 3px;
    border: 0px #7E7E7E solid;
    border-radius: 3px;
    width: 95%;
    height: 1px;
    background: #FFF;
    resize: none;
}

#fotos_head {
    float: right;
    width: 490px;
    height: 144px;
    margin-top: 6px;
    margin-right: 40px;
    background: url(img/head2.png) center center no-repeat;
}


.foto_ceil {
    background-image: url(img/head.png);
    height: 48px;
    width: 49px;
    position: absolute;
    z-index: 2;
}

.foto_ceil:hover {
    opacity: 0;
}

#logo {
    float: left;
    width: 359px;
    height: 50px;
}

#logo a {
    text-decoration: none;
}

#main_menu {
    width: 1000px;
    height: 36px;
    background-color: #1a99ca;
    background: linear-gradient(270deg, #1a99ca, #187195, #025b82, #005694);

    background: -webkit-linear-gradient(270deg, #1a99ca, #187195, #025b82, #005694); /* Р Т‘Р В»РЎРЏ webkit-Р В±РЎР‚Р В°РЎС“Р В·Р ВµРЎР‚Р С•Р Р† */
    background: -moz-linear-gradient(270deg, #1a99ca, #187195, #025b82, #005694); /* Р Т‘Р В»РЎРЏ firefox 3.6+ */
    background: -o-linear-gradient(270deg, #1a99ca, #187195, #025b82, #005694); /* Р Т‘Р В»РЎРЏ Opera 11.10+ */
    background: -ms-linear-gradient(270deg, #1a99ca, #187195, #025b82, #005694); /* Р Т‘Р В»РЎРЏ IE10+ */


    padding: 0px;
    text-align: left;
}


#main_menu ul {
    padding: 0px;
    margin: 0px;
    text-align: left;
}

#main_menu li {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.menu, .menu_select, .menu_foto {
    min-width: 80px;
    height: 16px;
    padding: 10px 10px;
    text-align: center;
    margin: 0px;
    float: left;
}

.menu_foto {
    background: #333333;
}

.menu:hover, .menu_select, .menu_foto:hover {
    background-color: #3c3c3c;
    background: linear-gradient(270deg, #3c3c3c, #1c1c1c);

    background: -webkit-linear-gradient(270deg, #3c3c3c, #1c1c1c); /* Р Т‘Р В»РЎРЏ webkit-Р В±РЎР‚Р В°РЎС“Р В·Р ВµРЎР‚Р С•Р Р† */
    background: -moz-linear-gradient(270deg, #3c3c3c, #1c1c1c); /* Р Т‘Р В»РЎРЏ firefox 3.6+ */
    background: -o-linear-gradient(270deg, #3c3c3c, #1c1c1c); /* Р Т‘Р В»РЎРЏ Opera 11.10+ */
    background: -ms-linear-gradient(270deg, #3c3c3c, #1c1c1c); /* Р Т‘Р В»РЎРЏ IE10+ */
}

.line {
    width: 2px;
    height: 30px;
    background-color: #1a99ca;
    background: linear-gradient(270deg, #1a99ca, #187195, #025b82, #005694);

    background: -webkit-linear-gradient(270deg, #1a99ca, #187195, #025b82, #005694); /* Р Т‘Р В»РЎРЏ webkit-Р В±РЎР‚Р В°РЎС“Р В·Р ВµРЎР‚Р С•Р Р† */
    background: -moz-linear-gradient(270deg, #1a99ca, #187195, #025b82, #005694); /* Р Т‘Р В»РЎРЏ firefox 3.6+ */
    background: -o-linear-gradient(270deg, #1a99ca, #187195, #025b82, #005694); /* Р Т‘Р В»РЎРЏ Opera 11.10+ */
    background: -ms-linear-gradient(270deg, #1a99ca, #187195, #025b82, #005694); /* Р Т‘Р В»РЎРЏ IE10+ */

    float: left;
    margin: 0px;
    padding: 0px;
    vertical-align: top;
}

#main_menu a {
    text-decoration: none;
    color: #fff;
    text-shadow: 0px 1px 1px #222;
}

#header_txt {
    width: 100%;
    height: 0px;
    overflow: hidden;
    padding: 0px 0px;
    text-align: center;
    /* background: #e5e3e4; */
    color: #404040;
}




#vertical {
    float: left;
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}















#container9 {
    display: inline-block;
    position: relative;
    width: 30%;
}
#dummy9 {
    margin-top: 100%;
}
#element9 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 3px;
    padding-top: 50%;
    text-align: center;

}


#container {
    display: inline-block;
    position: relative;
    width: 100%;
}
#dummy {
    margin-top: 50%;
}
#element {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 3px;
    padding-top: 50%;
    text-align: center;

}


#container2 {
    display: inline-block;
    position: relative;
    width: 30%;
}
#dummy2 {
    margin-top: 100%;
}
#element2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 3px;
    padding-top: 85%;
    text-align: left;

}



#container3 {
    display: inline-block;
    position: relative;
    width: 30%;
    margin: 1%;

}
#dummy3 {
    margin-top: 100%;
}
#element3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 2px;
    padding-top: 80%;
    text-align: center;
    font-size: 27px;


}




.toli {
position: absolute;
margin-left: -7px;
color: #85CD17;
font-size: 27px;
text-shadow:0px 1px 0 rgb(255,255,255),0px -1px 0 rgb(255,255,255),1px 0px 0 rgb(255,255,255),-1px 0px 0 rgb(255,255,255),1px 1px 0 rgb(255,255,255),1px -1px 0 rgb(255,255,255),-1px 1px 0 rgb(255,255,255),-1px -1px 0 rgb(255,255,255),2px 2px 1px rgba(0,0,0,0.88);
-webkit-text-shadow:0px 1px 0 rgb(255,255,255),0px -1px 0 rgb(255,255,255),1px 0px 0 rgb(255,255,255),-1px 0px 0 rgb(255,255,255),1px 1px 0 rgb(255,255,255),1px -1px 0 rgb(255,255,255),-1px 1px 0 rgb(255,255,255),-1px -1px 0 rgb(255,255,255),2px 2px 1px rgba(0,0,0,0.88);
-moz-text-shadow:0px 1px 0 rgb(255,255,255),0px -1px 0 rgb(255,255,255),1px 0px 0 rgb(255,255,255),-1px 0px 0 rgb(255,255,255),1px 1px 0 rgb(255,255,255),1px -1px 0 rgb(255,255,255),-1px 1px 0 rgb(255,255,255),-1px -1px 0 rgb(255,255,255),2px 2px 1px rgba(0,0,0,0.88);
}




#header_txt p {
    margin: 0px;
    padding: 0px;
}

.input_titl {
    float: left;
    color: #F75932;
    width: 90%;

    text-align: center;
    padding-top: 3px;
    padding-bottom: 3px;
  font-weight: bold;
  display: block;
}

#oon {
    float: left;
    width: 1000px;
  display: block;
position: relative;
}

#popup .input_titl {
    width: 400px;
}

select {
    color: #555555;
    background: #fff;
    margin-left: 5%;
    font-size:13px;
    padding: 5px;
    border: 1px #777 solid;
    border-radius: 5px;
    width: 90%;
}

labels {
    color: #999999;
margin-top: 5px;
padding-top:5px;


}

select2 {
    color: #555555;
    background: #fff;
    width: 316px;

    padding: 3px;
    border: 1px #e7e8ec solid;
    border-radius: 3px;
    height: 37px;
}

.arrow_left {
    width: 0px;
    height: 0%;
    background: url(img/arrow_left.png) center center no-repeat rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.arrow_right {
    width: 60px;
    height:120px;
    top: 210px;
    background: url(bi/right1.png);
    cursor: pointer;
background-position: center top; 
background-repeat: no-repeat; 
background-size: cover;
    display: block;
position:fixed;
right:3%;
z-index:9999;

}

.arrow_left:hover, .arrow_right:hover {

}

.close_button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FFF;
    text-align: center;
    vertical-align: middle;
    color: #000;
    padding-top: 6px;
    padding-bottom: 0px;
    text-decoration: none;
    float: right;
font-size:21pt;
    cursor: pointer;
    left: 855px;
z-index: 9999;
position: fixed;
bottom:9%;
transform: rotate(-45deg);
box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.close_button:before {

    color: #040707;
box-shadow: 0 0 5px #FFF;
    position: absolute;
    margin-left: 0px;
}

.close_button:hover {
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3);
}

.ceil_rotate {
    background-image: url(img/head.png);
    height: 48px;
    width: 49px;
    position: absolute;
    z-index: 2;

    -webkit-animation-name: 'rotate';
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-name: 'rotate';
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#loading {
    width: 80px;
    height: 80px;
    background-image: url(bik/adings.gif);
}

@-webkit-keyframes 'rotate' {
    from {
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    to {
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes 'rotate' {
    from {
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    to {
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }
}

.messege {
    background-color: #279dc8;
    background: linear-gradient(270deg, #279dc8, #137eb3);

    background: -webkit-linear-gradient(270deg, #279dc8, #137eb3); /* Р Т‘Р В»РЎРЏ webkit-Р В±РЎР‚Р В°РЎС“Р В·Р ВµРЎР‚Р С•Р Р† */
    background: -moz-linear-gradient(270deg, #279dc8, #137eb3); /* Р Т‘Р В»РЎРЏ firefox 3.6+ */
    background: -o-linear-gradient(270deg, #279dc8, #137eb3); /* Р Т‘Р В»РЎРЏ Opera 11.10+ */
    background: -ms-linear-gradient(270deg, #279dc8, #137eb3); /* Р Т‘Р В»РЎРЏ IE10+ */
    padding: 10px;
    margin: 2px -20px;
    color: #FFF;
}

.fiolet {
    color: #33167b;
}

#regbutton #loading {
    margin-top: 8px;
}

#enter_button {
    width: 56px;
    height: 55px;
    min-width: 56px;
    max-width: 56px;
    padding: 0px;
    margin: 0px;
    background: none;
    background: #CC3366;
    background-size: 50px 49px;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    border-radius: 50%;
    margin-left: 3px;
    margin-top: 3px;
    margin-right: 0px;
    margin-bottom: 0px;
    border: none;
    display: inline;
}

#enter_button:hover {
    background-size: 56px 55px;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 3px;
    margin-bottom: 3px;
    border: none;
    padding: 0px;
    text-shadow: none;
    box-shadow: none;
}


input[type="buttons"] {
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    font-weight:bold;
    background: #F75932;
    border-radius: 5px;
    display: table;
    padding: 10px;
    position: relative;
    min-width: 30%;
    min-height: 20px;
    cursor: not-allowed;
    text-align: center;
    border:none;
}

input[type="button"], input[type="submit"] {
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    font-size:13px;
    font-weight:bold;
    background: #F75932;
    border: 1px #F75932 solid;
    border-radius: 10px;
    display: table;
    padding: 10px;
    position: relative;
    min-width: 20%;
    min-height: 15px;
    cursor: pointer;
}


input[type="submits"] {
    color: #FFFFFF;
    font-weight:bold;
    background: #FF7F00;
    border: 3px #fff solid;
    border-radius: 10px;
    display: table;
    padding-top: 20px;
    padding-bottom: 25px;
    padding-left: -40px;
    position: relative;
    width: 70%;
    min-height: 50px;
    cursor: pointer;
    text-align: center;
}

input[type="buttons"]:hover, input[type="submits"]:hover {
    cursor: pointer;

}

input[type="button"]:hover, input[type="submit"]:hover {
    text-shadow: 0px 0px 15px #fff;
    color: #FFFFFF;
    background: #0A80BA;
    border: 1px #0A80BA solid;
}



.elent21 {
    color: #fff;

    font-weight:bold;
    border: 0px #CB5049 solid;
    border-radius: 4px;
    display: table;
    padding-top: 7px;
    position: relative;
    width: 180px;
    height: 23px;
    cursor: pointer;
    margin-top: 5px;
background:url('/bik1/pol1.png');
}
.elent21:hover {
    background-position: 0 -30px; /* Смещение фона */
        color: #fff;
}

.elent22 {
    color: #fff;

    font-weight:bold;
    border: 0px #CB5049 solid;
    border-radius: 4px;
    display: table;
    padding-top: 7px;
    position: relative;
    width: 180px;
    height: 23px;
    cursor: pointer;
    margin-top: 5px;
background:url('/bik1/rew345.png');
}
.elent22:hover {
    background-position: 0 -30px; /* Смещение фона */
        color: #fff;
}



.fak {
    color: #09375E;

}



.dalist {
    color: #FFF;
    font-weight:bold;
    background: #FB673F;
    border: 1px #FB673F solid;
    border-radius: 3px;
    padding: 7px;
    position: inherit;
    min-height: 15px;
    cursor: pointer;
    margin-left: 10px;
}

.dalist:hover {
    color: #000;
    background: #F0F0F0;

}

.nolist {
    color: #FFF;
    font-weight:bold;
    background: #999999;
    border: 1px #999999 solid;
    border-radius: 3px;
    padding: 7px;
    position: inherit;
    min-height: 10px;
    cursor: pointer;
    margin-left: 10px;
}






.tokoalbom {
    color: #FFFFFF;

    background: none;
    border: 1px #FFF solid;
    border-radius: 15px;
    display: table;
    padding: 9px;
    position: relative;
    min-width: 40%;
    min-height: 15px;
    cursor: pointer;
}

.tokoalbom:hover {
    color: #FFFFFF;

    background: #9D9E9E;
    border: 1px #9D9E9E solid;
    border-radius: 15px;
    display: table;
    padding: 9px;
    position: relative;
    min-width: 40%;
    min-height: 15px;
    cursor: pointer;
}





.toko5 {
    color: #CB5049;

    font-weight:bold;
    background: none;
    border: 1px #CB5049 solid;
    border-radius: 4px;
    display: table;
    padding-top: 9px;
    position: relative;
    min-width: 200px;
    min-height: 26px;
    cursor: pointer;
    margin-top: -5px;
}

.toko5:hover {
    color: #000;
    background: #F0F0F0;

}



.toko7 {
    color: #fff;

    background: none;
    border: 3px #fff solid;
    border-radius: 3px;
    display: table;
    padding-top: 11px;
    padding-bottom: 11px;
    position: relative;
    width: 90%;
    cursor: pointer;
    text-shadow: 0px 0px 5px #000;
    font-weight: bold;
}

.toko7:hover {
    background: #364558;
    border: 3px #fff solid;
    color: #fff;
    text-decoration: none;
}

.toko8 {
    color: #fff;

    background: none;
    border: 3px #fff solid;
    border-radius: 3px;
    display: table;
    padding-top: 11px;
    padding-bottom: 11px;
    position: relative;
    width: 90%;
    cursor: pointer;
    text-shadow: 0px 0px 5px #000;
    font-weight: bold;
}

.toko8:hover {
    background: #364558;
    border: 3px #fff solid;
    color: #fff;
    text-decoration: none;
}



.toko77 {
    color: #507299;

    font-weight:bold;
    background: #F0F0F0;
    border: none;
    border-radius: 3px;
    display: table;
    padding-top: 20px;
    padding-bottom: 10px;
    position: relative;
    width: 95%;
    min-height: 50px;
    cursor: pointer;
}

.toko77:hover {
    text-shadow: 0px 0px 15px #fff;
    color: #FFFFFF;
    background: #507299;
}

.albom {
margin-top: 3px;
    color: #000;
    font-size: 10px;
    background: #FFF;
    border-radius: 2px;
    display: table;
    padding: 2px;
    position: relative;
    min-width: 40%;
    min-height: 15px;
    cursor: pointer;
    box-shadow: 0 0 5px #000;
}

.premium {
margin-top: 5px;
margin-left: 5px;
    color: #FFF;
    background: #FF6600;
    border-radius: 3px;
    display: table;
    padding: 2px;
    position: relative;
    min-width: 30%;
    min-height: 15px;
    cursor: pointer;
}

.premium2 {
margin-top: 5px;
margin-left: 5px;
    color: #FFF;
    background: #666;
    border-radius: 3px;
    display: table;
    padding: 2px;
    position: relative;
    min-width: 5%;
    min-height: 15px;
    cursor: pointer;
}


.topko {
    color: #FFF;

    background: #CB4828;
    border: 1px #CB4828 solid;
    border-radius: 11px;
    display: table;
    padding: 9px;
    position: relative;
    min-width: 40%;
    min-height: 15px;
    cursor: pointer;
margin-top:-11px;
}

.topko:hover {
    background: #D56B51;
color: #FFF;
    border: 1px #D56B51 solid;
}


.toko {
    color: #FFFFFF;
    background: #DB486B;
    border: 0px #DB486B solid;
    border-radius: 15px;
    display: table;
    padding: 9px;
    position: relative;
    min-width: 40%;
    min-height: 15px;
    cursor: pointer;
}

.toko:hover {
    color: #FFFFFF;
    background: #CC0033;
    border: 0px #FF0000 solid;
    border-radius: 15px;
    display: table;
    padding: 9px;
    position: relative;
    min-width: 40%;
    min-height: 15px;
    cursor: pointer;
}



.zoto {
    color: #FFF;
    background: #648FC9;
    border: 0px #CCCCCC solid;
    border-radius: 9px;
    display: table;
    padding: 9px;
    position: relative;
    width: 95%;
    min-height: 15px;
    cursor: pointer;
}

.zoto:hover {
    color: #FFF;
    background: #607D8B;
}









.tokod {
    color: #FFF;
    margin-top:10px;
    background: #F75932;
    border: 1px #F75932 solid;
    border-radius: 15px;
    display: table;
    padding: 6px;
    position: relative;
    min-width: 90%;
    min-height: 15px;
    cursor: pointer;
    font-size: 11pt;
    text-decoration: none;
}

.tokod:hover {
    color: #000;
    text-decoration: none;
    background: #FFF;
    border: 1px #FFF solid;
    border-radius: 15px;
    display: table;
    padding: 6px;
    position: relative;
    min-width: 90%;
    min-height: 15px;
    cursor: pointer;
}


.tokods {
    color: #333;
    background: #FFF;
    border: 1px #0A80BA solid;
    border-radius: 15px;
    display: table;
    padding: 7px;
    position: relative;
    min-width: 50%;
    min-height: 15px;
    cursor: pointer;
    font-size: 11pt;
    text-decoration: none;
}

.tokods:hover {
    color: #000;
    text-decoration: none;
    background: #FFF;
    border: 1px #FFF solid;
    border-radius: 15px;
    display: table;
    padding: 7px;
    position: relative;
    min-width: 50%;
    min-height: 15px;
    cursor: pointer;
}


.tokodi {
    color: #F0F0F0;
    margin-top:10px;
    background: none;
    border: 1px #F0F0F0 solid;
    border-radius: 15px;
    display: table;
    padding: 6px;
    position: relative;
    min-width: 90%;
    min-height: 15px;
    cursor: pointer;
    font-size: 11pt;
    text-decoration: none;
}

.tokodi:hover {
    color: #000;
    text-decoration: none;
    background: #FFF;
    border: 1px #FFF solid;
    border-radius: 15px;
    display: table;
    padding: 6px;
    position: relative;
    min-width: 90%;
    min-height: 15px;
    cursor: pointer;
}

.koko1 {
    color: #FF6633;
    background: #FFF;
    border: 1px #FF6633 dashed;
    border-radius: 5px;
    display: table;
    padding: 9px;
    position: static;
    width: 95%;
    min-height: 15px;
    cursor: pointer;
    margin: 5px;
}

.koko1:hover {
    background: #FFF;
    cursor: pointer;
    color: #FF0000;
    border: 1px #FF6633 solid;
}

.koko2 {
    color: #FF6633;
    background: #FFF;
    border: 1px #FF6633 dashed;
    border-radius: 5px;
    display: table;
    padding: 9px;
    position: static;
    width: 95%;
    min-height: 15px;
    cursor: pointer;
    margin: 5px;
}

.koko2:hover {
    background: #FFF;
    cursor: pointer;
    color: #FF0000;
    border: 1px #FF6633 solid;
}


.tokko {
    color: #000;

    background: #FFE2C6;
    border: 0px #000 solid;
    border-radius: 9px;
    display: table;
    padding: 9px;
    position: relative;
    width: 60%;
    min-height: 15px;
    cursor: pointer;
}

.tokko:hover {
    color: #FFF;

    background: #FF3300;

}

.toko51 {
    color: #F4511E;
    background: #FFF;
    border: 2px #F4511E solid;
    border-radius: 15px;
    display: table;
    padding: 9px;
    position: relative;
    min-width: 40%;
    min-height: 15px;
    cursor: pointer;
}

.toko51:hover {
    color: #000;

    background: #FFF;
    border: 2px #CC0033 solid;
    border-radius: 15px;
    display: table;
    padding: 9px;
    position: relative;
    min-width: 40%;
    min-height: 15px;
    cursor: pointer;
}








.tokoli {
    color: #000;

    background: #FFFFCC;
    border: 3px #FFFFCC solid;
    border-radius: 15px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 75%;
    min-height: 50px;
    cursor: pointer;
}

.tokors {
    color: #FFF;

    background: #5181B8;
    border: 5px #5181B8 solid;
    border-radius: 35px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 93%;
    min-height: 50px;
    cursor: pointer;
}

.tokorrs {
    color: #FFF;

    background: #933EC5;
    border: 5px #933EC5 solid;
    border-radius: 35px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 93%;
    min-height: 50px;
    cursor: pointer;
}

.tokoreg {
    color: #677883;

    font-weight:bold;
    background: #fff;
    border: 3px #fff solid;
    border-radius: 15px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 93%;
    min-height: 50px;
    cursor: pointer;
}

.tokoreg2 {
    color: #000;

    font-weight:bold;
    background: #fff;
    border: 3px #fff solid;
    border-radius: 15px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 93%;
    min-height: 50px;
    cursor: pointer;
}


.tokonss {
    color: #FFFFFF;

    font-weight:bold;
    background: #FF7F00;
    border: 3px #FF7F00 solid;
    border-radius: 15px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 93%;
    min-height: 50px;
    cursor: pointer;
}


.tokons {
    color: #FFFFFF;

    font-weight:bold;
    background: #00AA00;
    border: 3px #00AA00 solid;
    border-radius: 15px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 93%;
    min-height: 50px;
    cursor: pointer;
}


.tokom {
    color: #CE4F00;

    background: none;
    border: 3px #CE4F00 solid;
    border-radius: 15px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 90%;
    min-height: 50px;
    cursor: pointer;
}

.tokoi {
    color: #FFFFFF;

    font-weight:bold;
    background: #F26100;
    border: 3px #F26100 solid;
    border-radius: 15px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 93%;
    min-height: 50px;
    cursor: pointer;
}

.tokof {
    color: #FFFFFF;

    font-weight:bold;
    background: #FF6600;
    border: 3px #FF6600 solid;
    border-radius: 15px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 90%;
    min-height: 50px;
    cursor: pointer;
}

.tokol {
    color: #FFFF00;

    font-weight:bold;
    background: #000;
    border: 6px #FFF solid;
    border-radius: 15px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 95%;
    min-height: 50px;
    cursor: pointer;
}

.tokoh {
    color: #FFFFFF;

    font-weight:bold;
    background: rgba(220, 111, 44, 0.8);
    border: 3px #fff solid;
    border-radius: 15px;
    display: table;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    width: 80%;
    min-height: 50px;
    cursor: pointer;
}

.tokoh2 {
    color: #FFFFFF;


    background-color: rgba(0, 0, 0, 0.5);
    border: 3px #fff solid;
    border-radius: 15px;
    display: table;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    width: 80%;
    min-height: 50px;
    cursor: pointer;
}

.tokoo {
    color: #FF7F00;

    font-weight:bold;
    background: #fff;
    border: 3px #FF7F00 solid;
    border-radius: 15px;
    display: table;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 97%;
    min-height: 50px;
    cursor: pointer;
}



.toko19 {
    color: #FFFFFF;

    font-weight:bold;
    background: #D80027;
    border: none;
    border-radius: 11px;
    display: table;
    padding-top: 30px;
    padding-bottom: 10px;
    position: relative;
    width: 95%;
    min-height: 50px;
    cursor: pointer;
}

.toko19:hover {
    text-shadow: 0px 0px 15px #fff;
    color: #FFFFFF;

}


.toko2 {
    color: #FFFFFF;

    font-weight:bold;
    background: #CB5049;
    border: none;
    border-radius: 3px;
    display: table;
    padding-top: 9px;
    position: relative;
    min-width: 200px;
    min-height: 26px;
    cursor: pointer;
}

.toko2:hover {
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.5);
    text-shadow: 0px 0px 15px #fff;
    color: #FFFFFF;

}



input[type="knopgr"] {
    color: #FFFFFF;

    font-weight:bold;
    background: #507299;
    text-align:center;
    margin-left:200px;
    border: none;
    border-radius: 3px;
    display: table;
    position: relative;
    min-width: 200px;
    min-height: 30px;
    cursor: pointer;
}

input[type="knopgr"]:hover {
    background: #507299;

}

.small_18 {
    background: #FF0000;
    padding: 3px;
    overflow: hidden;
    width: 15px;
    height: 15px;

    color: #FFFFFF;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
}

#footer .clear {
    height: 40px;
}

.er_big {
    color: 000;

    margin: 5px;
}

#skrol {
position: fixed;

}

#yvedoml {


}

#left2 {
    width: 200px;
    padding: 0px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
    /* border-top: #e3e3e3 4px solid; */
    float: left;
    margin-top: 50px;
    margin-left: -10px;
    z-index: 1;

}

#headerik {
    z-index: 10;
margin-top: 40px;

}



.user_rejting {
    padding: 0px;
    border-radius: 2px;
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 1px;
    z-index:99;

}

.user_rejting strong {

}

.txt_line {
    font-weight: bold;
    background: linear-gradient(90deg, transparent, transparent 25%, #e3e3e3 25%, #e3e3e3 50%, transparent 50%, transparent);
    background: -webkit-linear-gradient(90deg, transparent, transparent 25%, #e3e3e3 25%, #e3e3e3 50%, transparent 50%, transparent); /* Р Т‘Р В»РЎРЏ webkit-Р В±РЎР‚Р В°РЎС“Р В·Р ВµРЎР‚Р С•Р Р† */
    background: -moz-linear-gradient(90deg, transparent, transparent 25%, #e3e3e3 25%, #e3e3e3 50%, transparent 50%, transparent); /* Р Т‘Р В»РЎРЏ firefox 3.6+ */
    background: -o-linear-gradient(90deg, transparent, transparent 25%, #e3e3e3 25%, #e3e3e3 50%, transparent 50%, transparent); /* Р Т‘Р В»РЎРЏ Opera 11.10+ */
    background: -ms-linear-gradient(90deg, transparent, transparent 25%, #e3e3e3 25%, #e3e3e3 50%, transparent 50%, transparent); /* Р Т‘Р В»РЎРЏ IE10+ */
}

.txt_line a {
    background: #FFF;
    padding: 0px 10px;
    color: #ad4482;
    text-decoration: none;
}

.txt_line a:hover {
    text-shadow: 0px 2px 2px #ccc;
}

#column {
    width: 195px;
    float: right;
    text-align: center;
    vertical-align: top;
    background: none;
    margin-right: 30px;

}

#column5 {
    width: 300px;
    float: right;
    text-align: center;
    vertical-align: top;
    background: none;
    margin-right: -400px;
    margin-top: 15px;
    z-index: 999;


}

#column_2 {
    width: 195px;
    float: right;
    text-align: center;
    vertical-align: top;
    background: none;
    margin-left: -100px;
}

#avatar {
    width: 191px;
    margin-top: 0px;
    margin-bottom: 7px;
    overflow: hidden;
display: inline-block;
border-radius: 5px 5px 15px 15px;


}

#avatar div, .user_ava div {
    background: rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    padding: 0px;
    width: 167px;
    position: absolute;
    display: none;
}

.user_ava div {
    width: 185px;
}

.user_ava img {
    max-width: 191px;
    max-height: 177px;
}

#avatar:hover div, .user_ava:hover div {
    display: block;
}

#avatar div img, #avatar img {
    cursor: pointer;
    width: 210px;
}

.column_titl {
    background: #1a9aca;
    text-shadow: 1px 1px 2px #000;
    color: #FFFFFF;

    text-align: center;
    padding-bottom: 5px;
}

.user_h {

    padding: 0px;
    display: block;
}

.user_h10 {
    background: nont;
    padding: 0px;
    display: block;
}

.user_h h1, .user_h h2 {
    color: #FFF;

    min-height: 22px;
    border: none;
    padding: 0px;
    margin: 0px;
    text-align: left;
    background: #006699;
    text-shadow: 0px 1px 1px #222;
    border-radius: 0px;
}

.user_h h2 {
    text-align: center;

    min-height: 17px;
}

#friends_informer, #photoalboms_informer, #audio_informer {
    margin-top: 5px;
}

#friends_informer2 {
    margin-top: -40px;
    margin-left: 230px;
}

#friends_informer a, #photoalboms_informer a, #audio_informer a {
    text-decoration: none;
}

.user_h h1 strong {

}

.user_h span {
    margin: 1px 5px;
}

#column .user_h {
    min-height: 40px;
    text-align: right;
}

.inf {
    color: #777;
    float: left;
}

#fans {
    float: right;
    vertical-align: top;
}

#user_status {
    text-align: left;
padding-right: 10px;
padding-top: -3px;
padding-bottom: 3px;
padding-left: 55px;
margin-bottom: 215px;
margin-top: -227px;
margin-left: 169px;
    color: #000;
    background: none;
font-weight:bold;
    width: 350px;
    overflow: hidden;

z-index:999;
}

#gay {
    text-align: left;
margin-top: -100px;
margin-left: 200px;

}

#user_status a {
    text-decoration: none;
    color: #000;

}

#user_status a:hover {
    text-decoration: underline;
}

#user_status_input input[type="text"] {
    border: 1px solid #ccc;
    color: #AE0000;

    padding: 3px;
    border-radius: 2px;
    width: 95%;
    vertical-align: middle;
    height: 15px;
    max-height: 15px;
    min-height: 15px;
}

#change_status_div #loading {
    margin-left: 0px;
}

.gray_titl {
    background: #e3e3e3;
    text-align: left;

    color: #444;
    margin-bottom: 5px;
}

.gray_titl2 {
    background: url(/title.png);
    width: 510px;
    height: 20px;
    text-align: left;

    color: #fff;
    margin-bottom: 5px;
}

#user_dop_menu {
    border-bottom: 1px #e3e3e3 solid;
    padding: 1px;

}

#user_dop_menu a {
    margin-right: 20px;
}

#user_info {
    float: center;
    width: 90%;


}

#name_tabl {
    margin-left: -10px;
}

#group_info
{
    float: left;
    width: 545px;
}

#info_txt {
    color: #333;
    width: 90%;
    margin-left: 45px;

}

#info_txt strong {
    color: #666666;
}

.info_block {
    padding: 5px;
    background-color: #9a3769;
    background-size: 10px 10px;
    background-image: linear-gradient(45deg, #9a3769 25%, #a53e76 25%, #a53e76 50%, #9a3769 50%, #9a3769 75%, #a53e76 75%, #a53e76);

    background-image: -webkit-linear-gradient(45deg, #9a3769 25%, #a53e76 25%, #a53e76 50%, #9a3769 50%, #9a3769 75%, #a53e76 75%, #a53e76); /* Р Т‘Р В»РЎРЏ webkit-Р В±РЎР‚Р В°РЎС“Р В·Р ВµРЎР‚Р С•Р Р† */
    background-image: -moz-linear-gradient(45deg, #9a3769 25%, #a53e76 25%, #a53e76 50%, #9a3769 50%, #9a3769 75%, #a53e76 75%, #a53e76); /* Р Т‘Р В»РЎРЏ firefox 3.6+ */
    background-image: -o-linear-gradient(45deg, #9a3769 25%, #a53e76 25%, #a53e76 50%, #9a3769 50%, #9a3769 75%, #a53e76 75%, #a53e76); /* Р Т‘Р В»РЎРЏ Opera 11.10+ */
    background-image: -ms-linear-gradient(45deg, #9a3769 25%, #a53e76 25%, #a53e76 50%, #9a3769 50%, #9a3769 75%, #a53e76 75%, #a53e76); /* Р Т‘Р В»РЎРЏ IE10+ */

}

.zamok {
    background: url(img/zamok.png) 36px center no-repeat;
    padding-left: 40px;
    text-align: center;
    color: #FFFFFF;
}

.zamok a {
    color: #FFFFFF;
}

#settings_menu {
    border-bottom: 5px #e3e3e3 solid;
    text-align: center;
    width: 100%;
    margin-top: 0px;
}

#settings_menu li {
    display: block;
    padding: 7px;
    cursor: pointer;
    width: 100%;
    background: #FFF;
    color: #555555;

}

#settings_menu a {
    color: #000;
    text-decoration: none;
}

.settings_div {
    display: none;
}

.hide_s_kem {
    display: none;
}

#user_button2 {
    text-align: center;
    margin-bottom: 10px;
    margin-top: -79px;
    margin-left: -25px;
}

#user_button2 input[type="button"] {

    background-color: #CC3366;
    border-radius: 5px;
    border: 1px #FFF solid;
    width: 151px;
    min-width: 150px;
    height: 14px;
    max-height: 24px;
    min-height: 24px;

    text-align: center;
    padding: 1px;
    margin-top: 1px;
    margin-left: 5px;
}


#user_button {
    text-align: center;
    margin-bottom: 10px;

}

#user_button input[type="button"] {

    background-color: #CC3366;
    border-radius: 5px;
    border: 1px #FFF solid;
    width: 181px;
    min-width: 170px;
    height: 14px;
    max-height: 24px;
    min-height: 24px;

    text-align: center;
    padding: 1px;
    margin-top: 1px;
    margin-left: 5px;
}



.fr {
    color: #666;
    padding: 4px 0px;
    margin-left: -0px;
}

.fr .mes {
    background: none;
    padding: 5px;
    width: 170px;
    margin-top: -5px;
    margin-left: 0px;
}

.fr:hover .mes, .mes:hover {
    display: block;
    margin-left: -0px;
}

.load {
    width: 50%;
    height: 80px;
    background-size: 5px 5px;
    background-color: #999999;
    background-image: linear-gradient(45deg, #9a3769 25%, #a53e76 25%, #a53e76 50%, #9a3769 50%, #9a3769 75%, #a53e76 75%, #a53e76);

    background-image: -webkit-linear-gradient(45deg, #9a3769 25%, #a53e76 25%, #a53e76 50%, #9a3769 50%, #9a3769 75%, #a53e76 75%, #a53e76); /* Р Т‘Р В»РЎРЏ webkit-Р В±РЎР‚Р В°РЎС“Р В·Р ВµРЎР‚Р С•Р Р† */
    background-image: -moz-linear-gradient(45deg, #9a3769 25%, #a53e76 25%, #a53e76 50%, #9a3769 50%, #9a3769 75%, #a53e76 75%, #a53e76); /* Р Т‘Р В»РЎРЏ firefox 3.6+ */
    background-image: -o-linear-gradient(45deg, #9a3769 25%, #a53e76 25%, #a53e76 50%, #9a3769 50%, #9a3769 75%, #a53e76 75%, #a53e76); /* Р Т‘Р В»РЎРЏ Opera 11.10+ */
    background-image: -ms-linear-gradient(45deg, #9a3769 25%, #a53e76 25%, #a53e76 50%, #9a3769 50%, #9a3769 75%, #a53e76 75%, #a53e76); /* Р Т‘Р В»РЎРЏ IE10+ */
    text-align: center;
    margin-top: 3px;
}

.load p, .load div, .load span {
    display: inline-block;
    width: 5px;
    height: 0px;
    margin: 1px;
    background: #677883;
    -webkit-animation-name: 'load_anime';
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-name: 'load_anime';
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    opacity: 0;
}

.load span {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.load p {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.anke {
    padding: 2px;
    margin-top: 3px;
    margin-left: -10px;
    text-align: center;
    min-width: 25px;
    display: inline-block;
    position: absolute;
font-weight: bold;
    text-shadow:none;
    background: none;
    text-decoration: none;
    color: #000;

}


.news_nokar {
    padding: 2px;
    margin-top: -90px;
    margin-left: -55px;
    border: 0px #FFF solid;
    border-radius: 9px;
    text-align: center;
    min-width: 36px;
    display: inline-block;
    position: relative;
font-weight: bold;

    background-color: rgba(247, 89, 50, 0.5);
    text-decoration: none;
    color: #FFF;
box-shadow: 0px 0px 0px #FFF;
}

.news_nokar2 {
    padding: 2px;
    margin-top: -22px;
    margin-left: -10px;
    border: 1px #648FC9 solid;
    border-radius: 9px;
    text-align: center;
    min-width: 25px;
    display: inline-block;
    position: relative;
font-weight: bold;

    background-color: #FFF;
    text-decoration: none;
    color: #648FC9;
box-shadow: 0px 0px 0px #FFF;
}






.news_nok {
    padding: 2px;
    margin-top: 9px;
    margin-left: -24px;
    border: 2px #F4511E solid;
    border-radius: 50%;
    text-align: center;
    min-width: 22px;
    display: inline-block;
    position: absolute;
font-weight: bold;
z-index:9999;
    background: #F4511E;
    text-decoration: none;
    color: #FFF;
text-shadow: none;
}


.news_nokk {

    margin-top: -1px;
    margin-left: 6px;
    border: 1px #FFF solid;
    border-radius: 50%;
    text-align: center;
    width: 7px;
height:7px;
    display: inline-block;
    position: absolute;
font-weight: bold;
z-index:9999;
    background: #FFF;
    text-decoration: none;
    color: #FFF;
}



.news_oz {
    padding: 2px;
    margin-top: -2px;
    margin-left: 3px;
    border: 0px #FFF solid;
    border-radius: 9px;
    text-align: center;
    min-width: 27px;
    display: inline-block;
    position: absolute;
font-weight: bold;

    background: #CD4828;
    text-decoration: none;
    color: #FFF;
box-shadow: 0px 0px 9px #FFF;
}









.news_noka {
    padding: 2px;
    margin-top: -7px;
    margin-left: -20px;
    border: 1px #648FC9 solid;
    border-radius: 9px;
    text-align: center;
    min-width: 36px;
    display: inline-block;
    position: absolute;
font-weight: bold;
font-size:7pt;
    background-color: #FFF;
    text-decoration: none;
    color: #648FC9;
box-shadow: 0px 0px 0px #FFF;
}




.news_nhsss {
    padding: 2px;
    margin-top: -2px;
    margin-left: 5px;
    border: 1px #F4511E solid;
    border-radius: 50%;
    text-align: center;
    min-width: 25px;
    display: inline-block;
    position: absolute;
box-shadow: 0 0 2px #FFF;
    text-shadow:none;
    background: #F4511E;
    text-decoration: none;
    color: #FFF;

}


.news_nhh {
    margin-top: 10px;
    margin-left: -9px;
    border: 2px #F4511E solid;
    border-radius: 50%;
    text-align: center;
    width:6px;
height:6px;
    display: inline-block;
    position: absolute;
font-weight: bold;
z-index:9999;
    background: #F4511E;
    text-decoration: none;
    color: #FFF;
}


.news_bi {
    padding: 2px;
    margin-top: 6px;
    margin-left: -25px;
    border: 2px #FFF solid;
    border-radius: 50%;
    text-align: center;
    min-width: 23px;
    display: inline-block;
    position: fixed;
box-shadow: 0 0 3px #333;
    text-shadow:none;
    background: #FFF;
    text-decoration: none;
    color: #000;
font-weight: bold;
}



.news_np {
    padding: 4px;
    margin-top: -4px;
    margin-left: -125px;
    border: 2px #FFF solid;
    border-radius: 50%;
    text-align: center;
    min-width: 23px;
    display: inline-block;
    position: fixed;
box-shadow: 0 0 3px #333;
    text-shadow:none;
    background: #FFF;
    text-decoration: none;
    color: #000;
font-weight: bold;
font-size:10px;
}




.news_chat {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 6px;
    margin-left: -25px;
    border: 2px #FFF solid;
    border-radius: 50%;
    text-align: center;
    min-width: 23px;
    display: inline-block;
    position: fixed;
box-shadow: 0 0 0px #555;
    text-shadow:none;
    background: #FFF;
    text-decoration: none;
    color: #333;

}




.news_biko {

    margin-top: 13px;
    left: 1080px;
    border: 2px #FF3838 solid;
    border-radius: 50%;
    text-align: center;
    width: 8px;
    height: 8px;
    display: inline-block;
    position: fixed;
box-shadow: 0 0 5px #FFF;
    text-shadow:none;
    background: #FF3838;
    text-decoration: none;
    color: #FFF;
font-weight: bold;
}

.news_bas {
    padding: 2px;
    margin-top: 6px;
    left: 1060px;
    border: 2px #FF3838 solid;
    border-radius: 50%;
    text-align: center;
    min-width: 23px;
    display: inline-block;
    position: fixed;
box-shadow: 0 0 0px #333;
    text-shadow:none;
    background: #FF3838;
    text-decoration: none;
    color: #FFF;
font-weight: bold;
}


.news_basu {
    padding: 2px;
    margin-top: 6px;
    left: 1060px;
    border: 2px #CCCCCC solid;
    border-radius: 50%;
    text-align: center;
    min-width: 23px;
    display: inline-block;
    position: fixed;
box-shadow: 0 0 0px #333;
    text-shadow:none;
    background: #CCCCCC;
    text-decoration: none;
    color: #FFF;
font-weight: bold;
}



.news_nebr {
    padding: 2px;
    margin-top: 8px;
    left: 1060px;
    border: 1px #F6D961 solid;
    border-radius: 50%;
    text-align: center;
    min-width: 23px;
    display: inline-block;
    position: fixed;
box-shadow: 0 0 2px #FFF;
    text-shadow:none;
    background: #F6D961;
    text-decoration: none;
    color: #000;

}




.news_bis {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 4px;
    padding-right: 4px;
    left: 1050px;
margin-top:-3px;
    border: 1px #EBECEC solid;
    border-radius: 3px;
    text-align: center;
    min-width: 25px;
    display: inline-block;
    position: fixed;
box-shadow: 0 0 2px #FFF;
    text-shadow:none;
    background: #EBECEC;
    text-decoration: none;
    color: #000;

}

.news_biz {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 4px;
    padding-right: 4px;
    margin-top: -2px;
    left: 1050px;
    border: 1px #666 solid;
    border-radius: 3px;
    text-align: center;
    min-width: 25px;
    display: inline-block;
    position: fixed;
box-shadow: 0 0 2px #FFF;
    text-shadow:none;
    background: #666;
    text-decoration: none;
    color: #FFF;

}



.end_news {
    position: absolute;
    width: 100%;
}

.end_news .load, .prev_news .load, .new_coment_button .load, .show_all_coments .load,
#add_new_messege .load {
    background: none;
    margin: 0px auto;
}

.user_list img {
    max-height: 177px;
    max-width: 191px;
}

.user_list_div_div {
    display: inline-block;
    width: 213px;
    height: 270px;
    overflow: hidden;
    vertical-align: top;
}

.user_list_div {
    border: 1px #999999 dotted;
    width: 191px;
    border-radius: 7px;
    text-align: center;
    margin: 10px auto;
    vertical-align: top;
    background: none;
}

.user_list_div:hover {
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
}

.user_ava {
    height: 177px;
}

.user_list_div p {
    padding: 2px;
    width: 187px;
    height: 14px;
    overflow: hidden;
    margin: 2px 0px;
}

.news_n {
    padding: 15px;
    margin-top: 15px;
    border: 5px #677883 solid;
    border-radius: 50%;
    text-align: center;
    min-width: 100px;
    display: inline-block;
    position: relative;
    right:3px;

    text-shadow:none;
    background: #677883;
    text-decoration: none;
    color: #fff;

}


.news_nu {
    padding: 15px;
    margin-top: 15px;
    border: 5px #999999 solid;
    border-radius: 50%;
    text-align: center;
    min-width: 100px;
    display: inline-block;
    position: relative;
    right:3px;

    text-shadow:none;
    background: #999999;
    text-decoration: none;
    color: #fff;

}

.news_nuka {
    padding: 15px;
    margin-top: 15px;
    border: 5px #999999 solid;
    border-radius: 50%;
    text-align: center;
    min-width: 100px;
    display: inline-block;
    position: relative;
    right:3px;

    text-shadow:none;
    background: #933EC5;
    text-decoration: none;
    color: #fff;
font-weight:bold;

}


.news_nr {
    padding: 15px;
    margin-top: 3px;
    border: 5px #fff solid;
    border-radius: 50%;
    text-align: center;
    min-width: 120px;
    display: inline-block;
    position: relative;
    right:3px;

    text-shadow:none;
    background: #999;
    text-decoration: none;
    color: #fff;

}

.news_nh {
    padding: 2px;
    margin-top: 1px;
    margin-left: 5px;
    border: 2px #FFF solid;
    border-radius: 50%;
    text-align: center;
    min-width: 25px;
    display: inline-block;
    position: absolute;
    text-shadow:none;
    background: #CC0033;
    text-decoration: none;
    color: #FFF;

}

.news_nhf {
    padding: 15px;
    margin-top: 0px;
    margin-left: -115px;
    border: 0px #FFF solid;
    border-radius: 50%;
    text-align: center;
    min-width: 90px;
    display: inline-block;
    position: absolute;

    text-shadow:none;
    background: #677883;
    text-decoration: none;
    color: #fff;

}



.news_nhs {
    padding: 15px;
    margin-top: -25px;
    margin-left: -100px;
    border: 0px #FFF solid;
    border-radius: 50%;
    text-align: center;
    min-width: 90px;
    display: inline-block;
    position: absolute;

    text-shadow:none;
    background: #707070;
    text-decoration: none;
    color: #fff;

}

.news_n a {
    padding: 15px;
    margin-top: 3px;
    border: 5px #fff solid;
    border-radius: 50%;
    text-align: center;
    min-width: 120px;
    display: inline-block;
    position: relative;
    right:3px;

    text-shadow:none;
    background: #CE4F00;
    text-decoration: none;
    color: #fff;

}

.news_nd {
    padding: 15px;
    margin-top: 3px;
    border: 5px #fff solid;
    border-radius: 50%;
    text-align: center;
    min-width: 100px;
    display: inline-block;
    position: relative;
    right:3px;

    text-shadow:none;
    background: #FF7F00;
    text-decoration: none;
    color: #fff;

}

.news_n2 {
    padding: 2px;
    border-radius: 50%;
  background: linear-gradient(#CC0066, #CC0066, #CC0066, #CC0066, #CC0066);
    background: -webkit-linear-gradient(#CC0066, #CC0066, #CC0066, #CC0066, #CC0066); /* Р Т‘Р В»РЎРЏ webkit-Р В±РЎР‚Р В°РЎС“Р В·Р ВµРЎР‚Р С•Р Р† */
    background: -moz-linear-gradient(#CC0066, #CC0066, #CC0066, #CC0066, #CC0066); /* Р Т‘Р В»РЎРЏ firefox 3.6+ */
    background: -o-linear-gradient(#CC0066, #CC0066, #CC0066, #CC0066, #CC0066); /* Р Т‘Р В»РЎРЏ Opera 11.10+ */
    background: -ms-linear-gradient(#CC0066, #CC0066, #CC0066, #CC0066, #CC0066); /* Р Т‘Р В»РЎРЏ IE10+ */
    text-align: center;
    min-width: 15px;
    display: inline-block;
    position: relative;
    right:3px;
    text-shadow:none;
}

.news_n2 a {
    text-decoration: none;
}
.user_small {
    width: 50px;
    height: 50px;
    border-radius: 0px;
    padding: 0px;
    margin: 2px;
    display: inline-block;

    overflow: hidden;
}

.ff {
    padding: 15px;
    margin-top: -150px;
    border: 0px #fff solid;
    border-radius: 50%;
    text-align: center;
    min-width: 100px;
    display: inline-block;
    position: relative;
    color: #fff;
    right:3px;

font-weight:bold;
    text-shadow:none;
    background: #FF7F00;
    text-decoration: none;

}

.fff {
    padding: 15px;
    margin-top: -150px;
    border: 0px #fff solid;
    border-radius: 50%;
    text-align: center;
    min-width: 100px;
    display: inline-block;
    position: relative;
    color: #fff;
    right:3px;

font-weight:bold;
    text-shadow:none;
    background: #999;
    text-decoration: none;

}

.user_ava_small {
    width: 25px;
    height: 25px;

    border-radius: 50%;
    overflow: hidden;
    padding: 0px;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.user_small3 {
    width: 22px;
    height: 23px;
    border-radius: 0px;
    padding: 0px;
    margin: 0px;
    display: inline-block;

    overflow: hidden;
}

.user_ava_small3 {
    width: 21px;
    height: 21px;

    border-radius: 2px;
    border: 0px #DBDBDB solid;

    padding: 0px;
    text-align: left;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
}


.user_ava_small2 {
    width: 65px;
    height: 65px;
    border-radius: 0px;
    overflow: hidden;
    padding: 0px;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.add_new {
    text-align: center;
    padding: 20px;
    padding-left: 150px;
    color: #666;
    cursor: pointer;
    background-repeat: no-repeat;
}

.add_new:hover, .input_file:hover .add_new {

    color: #333;
}

.input_file {
    overflow: hidden;
    width: 140px;
    height: 50px;
    cursor: pointer;
background-image: url(bi/lilkaa.png);
background-position: center top; 
background-repeat: no-repeat; 
background-size: cover;
}

.input_file22 {
    overflow: hidden;
    width: 140px;
    height: 50px;
    cursor: pointer;
background-image: url(bi/lilkaa.png);
background-position: center top; 
background-repeat: no-repeat; 
background-size: cover;
}

.input_file22 input[type="file"] {
    margin-top: -50px;
    margin-left: 0px;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;

    height: 50px;
    width: 100%;
    cursor: pointer;
}


.input_file input[type="file"] {
    margin-top: -50px;
    margin-left: 0px;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;

    height: 50px;
    width: 100%;
    cursor: pointer;
}

#add_photoalbom {
    background-image: url(img/add_photoalbom.png);
}

#add_audio {
    background-image: url(img/add_audio.png);
}

#add_photo {


}

.photos_pre_div {
    width: 150px;
    height: 150px;
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    text-align: center;
    margin: 5px;
background-position: center; background-repeat: no-repeat; background-size: cover;
}

.photoalbom_div {
    width: 150px;
    height: 150px;
    border-radius: 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px;
    overflow: hidden;
    vertical-align: top;
}

.photo_titl, .photo_descript, .video_red {
    background: rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    padding: 5px;

    
}

.photo_titl span {
    float: right;
}

.photo_descript, .photo_red {
    display: none;
}



.photoalbom_div .photo_descript, .photoalbom_div .photo_red {
    display: block;
}

.photoalbom_div .photo_red {
    margin-left: 0px;
    margin-top: 140px;
    width: 140px;
}

.photos {
    display: inline-block;
}

.photos:hover .photo_red {
    display: block;
}

.photo_red {
    position: absolute;
    width: 140px;
    margin-left: 7px;
    margin-top: 135px;
    background: #FFF;
    border:1px #999 solid;
    padding: 4px;
}

.photo_red img {
    cursor: pointer;
}

.show_photo img {
    width: 90%;
}

.messege_ava {
    max-height: 140px;
    max-width: 140px;
    border: 1px solid #e3e3e3;
    border-radius: 0px;
}

small {
    color: #666;

}

.mail_m {
border:#FFF 3px solid;
    border-radius: 13px;
    background: #E9E9E9;
    margin: 7px;
    cursor: pointer;
    width: 95%;
height:25px;
    padding: 5px;
}


.mailst {
border-bottom:#BEBEBE 1px solid;
    border-radius: 0px;
    background: none;
    cursor: pointer;

    color: #707070;
}

.mail, .mail_new {
    border-radius: 3px;
    background: none;
    margin-top: 5px;
    cursor: pointer;
}

.mail_new {
    background: none;
}

.mail .user_small, .mail_new .user_small {
    height: 150px;
}

.mail:hover {
    border-bottom: #edeef0 2px dotted;
    background: #fff;
}

.mail_new:hover {
    background: #fff;
border-bottom: #edeef0 2px dotted;
}






.mailt, .mailt_new {
border-bottom:#edeef0 0px solid;
    border-radius: 0px;
    background: none;
    margin-top: 5px;
    cursor: pointer;
}

.mailt_new {
    background: none;
    border-bottom: #edeef0 0px solid;
}

.mailt .user_small, .mailt_new .user_small {
    height: 50px;
}

.mailt:hover {
    border-bottom: #edeef0 0px dotted;
    background: #F5F5F5;
}

.mailt_new:hover {
    background: #F5F5F5;
border-bottom: #edeef0 0px dotted;
}


.pe {
    width: 100%;
    overflow: auto;
}


#e-fileinfo {
    display: block;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    background: none;
    color: #DF0000;
    font-size:11pt;
font-weight: bold;
}

#messe {
    width: 100%;
    overflow: auto;
}


#messenger {

background: #FFF;
margin-bottom:1px;
width: 100%;
display:block;
cursor: pointer;


}

#stads {
width: 95%;
position: absolute;
height: 105%;
overflow-y: scroll;
bottom:0px;

}


.messege_mail {
    margin-bottom: 2px;
    margin-top: -2px;
    word-break: break-word;
    background: none;
    padding: 3px;
min-height: 30px;


}

.messka {


}

.messege_mail88 {
background: #FFF;
}

.messege_mail99 {

}


.stenfoto {
   height: 200px;
margin-left:25px;
border-radius: 5px;


}



.ziks {

-ms-word-break: break-all; word-break: break-all; word-break: break-word;
min-width: 30%;
max-width: 100%;
      min-height: 40px;
      background: #F0F0F0;
color:#000;
      position: relative;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      border-radius: 10px;
margin-top:8px;
padding:10px;
font-size:13px;
margin-left:-15px;
}

.ziks:before {

display:none;
}


.frazi {
background: rgba(0, 0, 0, 0.6);
}


.frazi:hover {
background: rgba(0, 0, 0, 0.3);
}

.frab {
background: #F0F0F0;
}


.frab:hover {
background: #F9F9F9;
}











.messege_mail7 {


background: #F9F9F9;
-ms-word-break: break-all; word-break: break-all; word-break: break-word;
min-width: 45%;
max-width: 90%;
      min-height: 50px;

color:#000;
      position: relative;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      border-radius: 10px;
margin-top:8px;
padding-left:5%;
padding-right:5%;
font-size:14px;
margin-left:3%;
border:1px #F0F0F0 solid;
}





.messege_mail808 {

-ms-word-break: break-all; word-break: break-all; word-break: break-word;
min-width: 45%;
max-width: 90%;
      min-height: 50px;
      background: #FFF;
color:#555;
      position: relative;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      border-radius: 10px;
margin-top:8px;
padding-left:5%;
padding-right:5%;
font-size:14px;
margin-right:3%;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}



.messege_mail8 {

-ms-word-break: break-all; word-break: break-all; word-break: break-word;
min-width: 45%;
max-width: 90%;
      min-height: 50px;
      background: #FFF;
color:#000;
padding-left:5%;
padding-right:5%;
      position: relative;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      border-radius: 10px;
margin-top:8px;
font-size:14px;
margin-right:3%;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}









.ord {
color:#FFF;
}


.ord:hover {
    background: #E3EBF6;
color:#000;
text-decoration:none;
border-radius:2px;
}



.orden {
background: #FFF;
box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}


.orden:hover {
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}




.ordes {
background: none;
color:#000;
}


.ordes:hover {
background: #F0F0F0;
color:#000;
text-shadow: none;
}


.ordez {
background: none;
width: 50px;
height:50px;
display: inline-block;
}


.ordez:hover {
background: #F0F0F0;
}

.ordezz {
background: none;
width: 70px;
height:50px;
display: inline-block;
}


.ordezz:hover {
background: #F0F0F0;
}



.ordesa {
background: #D56B51;
color:#FFF;
text-shadow: 1px 1px 2px #555;
}


.ordesa:hover {
background: #CB4828;
color:#FFF;
text-shadow: none;
}



.messege_mail5 {
    margin-bottom: 35px;
    word-break: break-word;
    background: none;
    border-bottom: 0px #999999 solid;
    border-radius: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;

}

#messege_mail_s {
    margin-bottom: 15px;
    word-break: break-word;
font-weight:bold;
    border-radius: 15px;
}

.messege_mail img {
    max-width: 100%;
    margin-top: 40px;
    border-radius: 15px;


}



.frameId img {
    height: 16px;

}

.messege_mail7 img {
    max-width: 150px;
    border-radius: 1px;

}







.messege_mail8 img {
    max-width: 150px;
    border-radius: 1px;
}

.messege_mail5 img {
    max-width: 110%;
    border-radius: 15px;
}

.del_messege {
    color: #CCC;
    cursor: pointer;
}

.del_messege:hover {
    color: #000;
}

.new_coment_div {
    padding-top: 3px;
    padding-bottom: 3px;
    margin-top: 0px;
    background: #FFF;
    text-align: center;
    border:1.5px #CCCCCC solid;
    border-radius: 5px;
    width: 96%;
    margin-left: 2%;
    margin-bottom: 5px;
height: 55px;
}

.new_coment_txt {
    max-height: 50px;
    max-width: 90%;
    padding: 2px;
    border-radius: 1px;
    font-size:15px;

}

.new_coment_button {
    display: none;
    text-align: left;
}

.small_button {
    padding: 3px;
    width: 95%;
    color: #FFFFFF;
    background: #D56B51;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    display: inline-block;
    border-radius: 7px;
    border: 1px #FFF solid;
font-size:11pt;
}

.small_but {
    margin-top: -2px;

    padding: 3px;
    min-width: 20%;
    color: #FFFFFF;
    background: #D56B51;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    display: inline-block;
    border-radius: 5px;
font-weight:bold;
}

.small_but:hover {

}

.small_but5 {
    margin: 5px;

    padding: 10px;
    min-width: 50px;
    color: #FFFFFF;
    background: #none;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    display: inline-block;
    border-radius: 3px;
    border: 3px #fff solid;
}

.messege_mail .user_small {
    height: 50px;
}

.repost {
    padding: 3px;
    background: none;
    border-radius: 0px;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    font-weight:bold;
    font-style: none;
}

.repost:hover {
    background: none;
}

.repost_button {
    border-bottom: 0px solid #e3e3e3;
    padding: 1px;
    margin: 2px 0px;
}

.show_all_coments {
    text-align: center;
    min-height: 15px;
    background: none;
    color: #8B3FFD;
    padding: 5px;
    cursor: pointer;
}

.show_all_coments:hover {

color: #9741A5;
}

.search_form input[type="text"], .search_form select {
    background: #F3F3F3;
    border: 1px solid #555555;
    border-radius: 2px;

    color: #333;
    padding: 25px;
    width: 350px;
    margin: 5px;
}

.search_form select {
    width: 90%;
    height: 100px;

}

.search_form p {
    margin: 0px;
margin-left: px;
}

#add_present_cat {
    background-image: url(img/add_present_cat.png);
}

.bottom_border_gray td {
    border-bottom: 1px solid #ccc;
}

.bottom_border_gray tr:hover {
    background: #CCCCCC;
}

#add_present {
    background-image: url(img/add_present.png);
}

.present {
    max-height: 40px;
    max-width: 80px;
}

#add_user_present {
    background: url(img/arrow_present2.png) 60px center no-repeat;
    padding-right: 20px;
    width: 70px;
    text-align: left;
    cursor: pointer;
    display: inline-block;
    vertical-align: bottom;

    color: #33167b;
}

#add_user_present:hover {
    background: url(img/arrow_present.png) right center no-repeat;
}

.present_small, .user_present_small {
    display: inline-block;
    vertical-align: top;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 150px;
    height: 130px;
    cursor: pointer;
    margin: 25px;
}

.user_present_small {
    height: 130px;
    width: 150px;
    margin: 15px;
}

.present_cena, .get_money_summa {
    text-align: center;
    padding: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    font-weight: bold;
    border-radius: 0px;
    display: none;
    margin-top: 54px;
}

.present_small:hover .present_cena {
    display: block;
}

.get_money {
    border: 7px #e3e3e3 solid;
    border-radius: 0px;
    margin: 10px;
    padding: 10px;
    width: 50px;
    height: 50px;
    display: inline-block;
    cursor: pointer;
}

.get_money:hover {
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
}

.get_money_summa {
    display: block;
    margin-top: 10px;
    margin-left: -10px;
    margin-right: -10px;
}

.city_select {
    display: none;
}

#add_group {
    background-image: url(img/add_group.png);
}

.my_balans {
    border-radius: 2px 2px 5px 2px;
    padding: 2px;
    color: #CE4F00;
    border: 1px #CE4F00 solid;
    text-shadow:none;

}

#lenta {
    width: 1000px;
    height: 50px;
    border: 0px #fff solid;
    position: relative;
    z-index: 1;
overflow:hidden;
    border-radius: 0px;
}

#lentos {

    padding: 0px;
    /* border-top: #e3e3e3 4px solid; */
    margin-left: 0px;
   margin-top: 0px;

}

#lentos3 {

    padding: 0px;
    /* border-top: #e3e3e3 4px solid; */
    margin-left: -230px;
   margin-top: 5px;
}

#gallery li {
    height: 350px;
    width: 100%;
    margin-left: -9px;
    border-radius: 25px;
  border: 0px #fff solid;
    overflow: hidden;
    display: inline-block;
margin-bottom: 40px;

}

#gallery li:hover {
  border: 0px #FFF solid;


}

#banners {
        height:100px;
	width:1000px;
	overflow:hidden;


}

.lenta_div {
    height: 350px;
    width: 350px;
    margin-left: 100px;
    border-radius: 50%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.lids {
    background-image:url(<? echo $path; ?>img/users/<? echo $foto; ?>);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}


.lenta_txt {
    width: 40%;
    height: 350px;
    padding: 0px;
    border-radius: 9px;
    border: 0px solid #C0C0C0;
    background-image: none;
    text-align: left;
    display: block;
    z-index: 800;
    position: absolute;
    margin-top: -350px;
margin-left:-0px;
}

.descr{
    display:block;
    margin-left:100%;
    padding:10px;
    margin-top:0px;
    min-height:70px;
}



.menu_txt {
    width: 223px;
    height: 200px;
    display: block;
}

.descr_menu{
    display:none;
    margin-left:-1px;
    padding:0px;
    margin-top:-300px;
    background: url(/bik/jjj.png);;
    height:100%;
    border-radius: 0px;
    border-top: 0px #507299 solid;
    border-right: 0px #364558 solid;
    border-bottom: 0px #364558 solid;
}
.menu_txt:hover .descr_menu{
    display:block;
    position:absolute;
    top:-600px;
    z-index:9999;
    width:100%;
}






.real {
    text-align: left;
    display: block;
    width:136px;
    height:27px;
}

.real2{
    display:none;
    margin-left:-5px;
    padding:10px;
    margin-top:-77px;
    background: #fff;
    min-height:45px;
    border-radius: 0px;
    border: 0px #CC3366 dashed;
    -moz-box-shadow:0 5px 5px rgba(0,0,0,0.3);
    -webkit-box-shadow:0 5px 5px rgba(0,0,0,0.3);
    box-shadow:0 5px 5px rgba(0,0,0,0.3);
}
.real:hover .real2{
    display:block;
    position:absolute;
    top:120px;
    z-index:9999;
    width:300px;
}


#lider {
    padding: 10px;
    background-image: url(https://LinkGay.ru/liddd2.png);
}

#lider2 {
    padding: 10px;

}

#lider h2 {
    padding: 5px;
    border-radius: 7px;

    background-color: #fff;
    background: linear-gradient(270deg, #fff, #ccc);
    background: -webkit-linear-gradient(270deg, #fff, #ccc); /* Р Т‘Р В»РЎРЏ webkit-Р В±РЎР‚Р В°РЎС“Р В·Р ВµРЎР‚Р С•Р Р† */
    background: -moz-linear-gradient(270deg, #fff, #ccc); /* Р Т‘Р В»РЎРЏ firefox 3.6+ */
    background: -o-linear-gradient(270deg, #fff, #ccc); /* Р Т‘Р В»РЎРЏ Opera 11.10+ */
    background: -ms-linear-gradient(270deg, #fff, #ccc); /* Р Т‘Р В»РЎРЏ IE10+ */
    font-weight: normal;
    color: #000;
    text-shadow: #fff -1px -1px 0;
}

#lider input[type="button"] {

    width: 190px;
    max-width: 190px;
    min-width: 190px;
    padding: 5px;
    height: 25px;
    min-height: 25px;
    max-height: 25px;
}

#lider:hover .lenta_txt {
    display: block;
    font-color: #000;
    margin: 0px;
    margin-top: -70px;
    margin-left: 150px;
}

#enter_button_informer {
    width: 17px;
    padding: 0px;
    margin: 0px;
    max-height: 13px;
    min-height: 13px;
    max-width: 17px;
    min-width: 17px;
    height: 13px;
    background: url(img/enter_2.png) left top no-repeat;
    float: right;
}

#enter_button_informer {
    box-shadow: none;
}

#reg_2 {
    padding: 5px;
    min-width: 200px;
    max-width: 200px;
    width: 200px;
    background: #2a3134;

    margin-top: 5px;
    height: 30pz;
    max-height: 30px;
    min-height: 30px;
    border-radius: 10px;
}

.play {
    background: url(/bi/nottt.png);
background-position: center; background-repeat: no-repeat; background-size: cover;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: left;
    vertical-align: top;
    cursor: pointer;
margin-left:5px;
margin-top: 10px;
border:2px #FFF solid;
position: relative;
}



.audio_admin_button {
    display: block;
}

.mail:hover .audio_admin_button {
    display: block;
}

.prev_audio {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 45px solid #333;
    border-bottom: 20px solid transparent;
    float: left;
    margin: 0px;
    padding: 0px;
}

.next_audio {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 45px solid #333;
    border-bottom: 20px solid transparent;
    float: left;
    margin: 0px;
    padding: 0px;
}

#audioplayer {
    background: none;
    border: 0px solid #d1d1d1;
    width: 100%;
}

#audioplayer td {
    padding: 0px 3px;
}

.pause {
    background: url(/bik/muzks.gif);
background-position: center; background-repeat: no-repeat; background-size: cover;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: left;
    vertical-align: top;
    cursor: pointer;
margin-left:5px;
margin-top: 10px;
border:2px #FFF solid;
position: relative;

opacity:0; /*Элемент полностью прозрачный (невидимый)*/
transition: 0.5s; /*Скорость перехода состояния элемента*/
animation: show 2.5s 1; /* Указываем название анимации, её время и количество повторов*/
animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
animation-delay: 0.8s; /* Задержка перед началом */


}



.big_play {
    border-radius: 50%;
    border: 5px #CE4F00 double;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0.8;
    text-align: center;
    margin-left: 130px;
    margin-top: 100px;
}

.video_div:hover .big_play {
    opacity: 1;
}

.big_play:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-left: 32px solid #CE4F00;
    border-bottom: 16px solid transparent;
    margin-top: 10px;
    margin-left: -13px;
}

.super_play {
    background: #fff;
    border-radius: 50%;
    border: 5px #fff double;
    width: 130px;
    height: 130px;
    cursor: pointer;
    margin-left: 25px;
}

.super_play:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 35px solid transparent;
    border-left: 70px solid #333;
    border-bottom: 35px solid transparent;
    margin-top: 25px;
    margin-left: 35px;
}

.super_pause {
    background: url(/bik/mus7.gif);
    border-radius: 50%;
    border: 5px #fff double;
    width: 130px;
    height: 130px;
    cursor: pointer;
    margin-left: 25px;
}

.super_pause:after {
    position: absolute;
    height: 70px;
    width: 20px;
    background: #fff;
    content: '';
    margin-top: 25px;
    margin-left: 34px;
}

.super_pause:before {
    position: absolute;
    height: 70px;
    width: 20px;
    background: #fff;
    content: '';
    margin-top: 25px;
    margin-left: 67px;
}

.repeat {
    width: 197px;
    height: 100px;
    background: url(bik/repeat2.png) left top no-repeat;
    opacity: 0.4;
    cursor: pointer;
    margin-top: 8px;
    margin-left: 20px;
}

.random {
    width: 262px;
    height: 100px;
    background: url(bik/random.png) left top no-repeat;
    opacity: 0.4;
    cursor: pointer;
    margin-top: 8px;
    margin-left: -150px;
}

.video_div {
    display: inline-block;
    width: 150px;
    height: 150px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    cursor: pointer;
    margin: 3px;
    border: 2px #999999 solid;
    border-radius: 7px;
}

#add_video {
    background-image: url(img/add_video.png);
}

.video_red {
    position: absolute;
    width: 41%;

    height:400px;
z-index:110;
}

.video_div_small .video_red {
	height:145px;
}

.video_div:hover .video_red {
    
}

.ban_table {
    background: #D95700;
    color: #FFFFFF;

    margin: 10px 0px;
}

.ban_table td {
    padding: 5px;
}

.ban_txt {
    background: #FFFFFF;
    padding: 5px;
    min-height: 100px;
}

.countdownHolder {
    width: 200px;
    margin: 0 auto;
    font: 17px 'Open Sans Condensed', sans-serif;
    text-align: center;
    letter-spacing: -3px;
}

.position {
    display: inline-block;
    height: 1.6em;
    overflow: hidden;
    position: relative;
    width: 1.05em;

}

.digit {
    position: absolute;
    display: block;
    width: 1em;
    background-color: #ccc;
    border-radius: 0.2em;
    text-align: center;
    color: #000;
    letter-spacing: -1px;
}

.digit.static {
    box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.35);

    background-image: linear-gradient(bottom, #fff 50%, #F5F5F5 50%);
    background-image: -o-linear-gradient(bottom, #fff 50%, #F5F5F5 50%);
    background-image: -moz-linear-gradient(bottom, #fff 50%, #F5F5F5 50%);
    background-image: -webkit-linear-gradient(bottom, #fff 50%, #F5F5F5 50%);
    background-image: -ms-linear-gradient(bottom, #fff 50%, #F5F5F5 50%);

    background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.5, #fff),
    color-stop(0.5, #F5F5F5)
    );
}

/**
 * You can use these classes to hide parts
 * of the countdown that you don't need.
 */

.countDays {
    /* display:none !important;*/
}

.countDiv0 {
    /* display:none !important;*/
}

.countHours {}

.countDiv1 {}

.countMinutes {}

.countDiv2 {}

.countSeconds {}

.countDiv {
    display: inline-block;
    width: 16px;
    height: 1.6em;
    position: relative;
}

.countDiv:before,
.countDiv:after {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #F5F5F5;
    border-radius: 50%;
    left: 50%;
    margin-left: -3px;
    top: 0.5em;
    box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
    content: '';
}

.countDiv:after {
    top: 0.9em;
}

.prikrepit_list {
    padding: 0px;
    margin: 0px;
    display: none;
    width: 1px;
    margin-top: 0px;
    margin-left: 0px;
    color: #000;
}

.prikrepit_list div {
    padding: 0px;
    cursor: pointer;
    text-align: left;
}

.prikrepit_list div:hover {
    background: #CCC;
}

.prikrepit_a {
    float: right;
    width: 0px;
    padding: 0px;
    color: #000;
    text-align: center;
    cursor: pointer;

    border: 0px solid transparent;
    margin-top: 0px;
    margin-right: 0px;
}

.prikrepit_a:hover {
    border: 0px solid #e3e3e3;
}

.prikrepit_a:hover .prikrepit_list, .prikrepit_list:hover {
    display: block;
}

.adds_prev {
    width: 100px;
    height: 150px;
    float: left;
    vertical-align: top;
background-position: center top; 
background-repeat: no-repeat; 
background-size: cover;
    margin-top: 1px;
}

.del_add {
    width: 100px;
    position: absolute;
    text-align: right;
margin-top:70px;
}

.video_add {
    position: absolute;
    width: 320px;
    height: 260px;
    background: none;
    cursor: pointer;
}

#eprst {
    width: 65px;
    height: 100%;
    background: #E8E8E8;
    opacity: 0.3;
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 30px 10px;
    cursor: pointer;

    color: #1a9aca;
}

#eprst:hover {
    opacity: 0.5;
}

#triangle-up {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid #1a9aca;
    display: inline-block;
}

#triangle-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #1a9aca;
    display: inline-block;
}

#add_obl {
    background-image: url(img/add_obl.png);
}

#adds_obl .adds_prev {
    width: 210px;
    height: 210px;
}

#adds_obl .del_add {
    display: none;
}

.adds_obl_photo {
    border: #ccc solid 5px;
    width: 200px;
    height: 130px;
    color: #999999;

    text-align: center;
    padding-top: 70px;
    border-radius: 4px;
}

#obama_go_home {
    position: fixed;
    top: 10%;
    left: -200px;
    width: 188px;
    height: 209px;
    z-index: 1000;
}

#obama_go_home img {
    width: 188px;
    height: 209px;
}

#add_vid_vid {
    width: 250px;
    height: 100px;
    border: 0px solid #ccc;
    margin-top: -30px;
    overflow: hidden;
    cursor: pointer;
    float: center;
    margin-right: 0px;
    background-image: url(bi/dod.png);
background-position: center top; background-repeat: no-repeat; background-size: cover;
}

#add_reklama_img {
    width: 150;
    height: 100px;
    border: 0px solid #ccc;
    overflow: hidden;
    cursor: pointer;
    float: center;
    margin-right: 0px;
}

#add_reklama_img input[type="file"] {
    margin-top: -100px;
    margin-left: 0px;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;

    height: 100px;
    width: 150px;
    cursor: pointer;
}

#add_reklama_img #preview {
    width: 150px;
    height: 100px;
    cursor: pointer;
}

.plus {
    background-image: url(bi/lilu.png);
background-position: center top; 
background-repeat: no-repeat; 
background-size: cover;
    width: 150px;
    height: 100px;

}


.plusi {
    background-image: url(bik/uuti.png);
    width: 700px;
    height: 420px;

}


.pluz {
    background-image: url(bi/lilu.png);
    width: 150px;
    height: 100px;
background-position: center top; 
background-repeat: no-repeat; 
background-size: cover;
}


.superpluz {
    background-image: url(bi/superlilu.png);
    width: 150px;
    height: 100px;
background-position: center top; 
background-repeat: no-repeat; 
background-size: cover;
}


.reklamaprevimg {
    width: 700px;
    height: 420px;
    float: center;
    margin-right: 0px;
}

.reklamaprevtxt {

    width: 131px;
    height: 85px;
    float: right;
    overflow: hidden;
    word-break: break-word;
}

.reklama {
    background: #FFF;
    padding: 5px;
    word-break: break-word;
    border-radius: 5px;
    border: 1px #CC3366 dotted;
    color: #CC3366;
}

.reklama img {
    max-width: 60px;
    max-height: 60px;
}

.print_messege_area {
    margin-top: 0px;
    width: 98%;
    max-height: 70px;
    padding: 2px;
background: none;
left:1px;
position:absolute;
color:#444;

}

.go_mes {
    margin-top: 0px;
    width: 15%;
    max-height: 70px;

background: none;
right:3%;
position:absolute;

}

.print_messege_area2 {
    margin-top: 10px;
    width: 100%;
    min-height: 70px;
    border-radius: 9px;
    padding: 5px;
background: none;
border: 0px #CCCCCC solid;

}

#frameId {
    width: 97%;
    max-height: 60px;
    margin-top: 2px;
    margin-bottom: 15px;
border: 1px #999 solid;
    border-radius: 3px;
    background: #FFF;
padding: 2px;
position:relative; 
overflow: auto; 
-webkit-overflow-scrolling:touch;
color:#000;
box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

#frameId2 {
    width: 97%;
    margin-top: 3px;
    border: 3px solid #999;
    border-radius: 15px;
    background: #fff;
    height: 620px;
    position: center;
padding: 30px;
}


#smilez {

    width: 55px;
    height: 55px;
    cursor: pointer;
    display: inline-block;
    position: inherit;
}

#smilez_div {
    background: #555555;
    color:#FFF;
    border-radius: 0px 0px 9px 9px;
    border: 2px #FFF solid;
    padding: 0px;
    position: absolute;
    display: none;
    width: 300px;
    min-height: 70px;
    margin-left: -130px;
    margin-top: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 2000;
    box-shadow: 0 0 10px #FF0000;


}

#smilez:hover #smilez_div {
    display: block;
}




#smiles {
    background: url(/bi/smu.png);
background-position: center top; 
background-repeat: no-repeat; 
background-size: cover;
    margin-top: -108px;
    margin-left: 88%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: block;
z-index: 3999;
    position: absolute;
}

#smiles_div {
    background: #fff;
    border-radius: 5px;
    border-left: 1px #CCCCCC solid;
    border-right: 1px #CCCCCC solid;
    border-bottom: 1px #CCCCCC solid;
    padding: 10px;
    position: fixed;
    display: none;
    width: 300px;
    height: 390px;
    margin-left: -250px;
    bottom: 70px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 2000;


}

#smiles_div2 {

position: static;
    overflow-y: scroll;
    width: 100%;

}


#smiles:hover #smiles_div {
    display: block;
}







#smiles_div img {
    width: 19px;
    height: 19px;
    margin: 2px;
}

.round_blue {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #1a9aca;
}

.round_0 {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #093;
    color: #FFF;
    font-weight: bold;

    text-align: center;
}

.round_1 {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #33167b;
    color: #fff;
    font-weight: bold;

    text-align: center;
}

.round_2 {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #F60;
    color: #fff;
    font-weight: bold;

    text-align: center;
}

.video_player {
    background: url(/bik1/nvideo3.gif);
    width: 640px;
    height: 520px;
    text-align: left;
}

.video_shtorka {
    width: 640px;
    height: 520px;
    position: absolute;
    z-index: 10;
    border: none;
    background: rgba(0, 0, 0, 0.4);
}

.video_shtorka .big_play {
    margin-left: 0px;
    margin-top: 0px;
}

.video_shtorka:hover .big_play {
    opacity: 1;
}

.control_panel {
    background: rgba(100, 100, 100, 0.5);
    display: none;
    padding: 5px;
    position: absolute;
    width: 630px;
    height: 20px;
    margin: 0px auto;
    margin-top: -30px;
    z-index: 15;
}

.control_panel .play, .control_panel .pause {
    background: #999;
    display: inline-block;
    vertical-align: middle;
    margin: 0px 2px;
}

.control_panel .play:hover, .control_panel .pause:hover {
    background: #666;
}

.time {
    display: inline-block;
    color: #888;
    vertical-align: middle;

}

.progress {
    display: inline-block;
    width: 100%;
    height: 5px;
    border: 0px solid #999;
    border-radius: 2px;
    cursor: pointer;
    vertical-align: middle;
}

.s_play {
    width: 0px;
    height: 5px;
    background: #999;
    position: absolute;
    z-index: 2;
}

.bufer {
    width: 0px;
    height: 5px;
    background: #666;
    position: absolute;
    z-index: 1;
}

.full_screan {
    width: 12px;
    height: 12px;
    border: 3px double #999;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

.full_screan:hover {
    border: 3px double #666;
}

.video_player:-webkit-full-screen, .video_player:-webkit-full-screen,
.video_player:-webkit-full-screen .video_shtorka, .video_player:-webkit-full-screen  {
    width: 100%;
    height: 100%;
}

.video_player:-moz-full-screen, .video_player:-moz-full-screen,
.video_player:-moz-full-screen .video_shtorka, .video_player:-moz-full-screen {
    width: 100%;
    height: 100%;
}

.video_player:-ms-full-screen, .video_player:-ms-full-screen,
.video_player:-ms-full-screen .video_shtorka, .video_player:-ms-full-screen {
    width: 100%;
    height: 100%;
}

.video_player:full-screen, .video_player:full-screen, .video_player:full-screen .video_shtorka,
.video_player:full-screen {
    width: 100%;
    height: 100%;
}

.dinamik {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 2px;
    cursor: pointer;
    text-align: left;
    height: 20px;
}

.dinamik div {
    width: 4px;
    height: 10px;
    background: #999;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 1px;
    border-radius: 2px 0px 0px 2px;
}

.dinamik span {
    width: 0px;
    height: 10px;
    border-top: 5px solid transparent;
    border-right: 7px solid #999;
    border-bottom: 5px solid transparent;
    border-radius: 0px 2px 2px 0px;
    display: inline-block;
    vertical-align: middle;
}

.dinamik:hover div {
    background: #666;
}

.dinamik:hover span {
    border-right: 7px solid #666;
}

.volume_div {
    display: inline-block;
    margin: 0px 5px;
    vertical-align: middle;
    cursor: pointer;
}

.video_volume {
    width: 1px;
    height: 15px;
    margin: 0px;
    display: inline-block;
    vertical-align: middle;
    background: #999;
    border: 1px solid #666;
    opacity: 0.5;
}

.video_volume:hover {
    height: 18px;
    opacity: 1;
}

.video_div_click {
    width: 320px;
    height: 260px;
    position: absolute;
z-index:100;
}

.video2_div_click {
    width: 150px;
    height: 98px;
    position: absolute;
z-index:100;
}

.video_div_small {
    background: #000;
    width: 200px;
    height: 200px;
    text-align: left;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    margin: 1px;
}

.video_div_small2 {
    background: #000;
    width: 91px;
    height: 55px;
    text-align: center;
    border-radius: 15px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    margin: 0px;
}

.video_div_small:hover .video_red {
    display: block;
}

.video_div_small .big_play {
    margin-left: 65.5px;
    margin-top: 47.5px;
}

.video_div_small .video_div_click {
    width: 191px;
    height: 155px;
}

.big_play2 {
    width: 200px;
    height: 200px;
    cursor: pointer;
    text-align: center;
    display: block;
    background: url(/bik/tyr.png);
background-repeat: no-repeat; background-size: cover;
}

.big_play2:hover {

    background-position: 0 -200px;
}

#audioplayer .dinamik {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 2px;
    cursor: pointer;
    text-align: left;
    height: 20px;
}

#audioplayer .dinamik div {
    width: 4px;
    height: 10px;
    background: #ad4482;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 1px;
    border-radius: 2px 0px 0px 2px;
}

#audioplayer .dinamik span {
    width: 0px;
    height: 10px;
    border-top: 5px solid transparent;
    border-right: 7px solid #ad4482;
    border-bottom: 5px solid transparent;
    border-radius: 0px 2px 2px 0px;
    display: inline-block;
    vertical-align: middle;
}

#audioplayer .volume_div {
    display: inline-block;
    margin: 0px 5px;
    vertical-align: middle;
    cursor: pointer;
}

#audioplayer .video_volume {
    width: 2px;
    height: 15px;
    margin: 0px;
    display: inline-block;
    vertical-align: middle;
    background: #ad4482;
    border: 1px solid #fff;
    opacity: 0.5;
}

#audioplayer .video_volume:hover {
    height: 18px;
    opacity: 1;
}

#audioplayer .time {
    display: inline-block;
    color: #777;

    vertical-align: middle;
}

#audioplayer .progress {
    display: inline-block;
    width: 101%;
    height: 35px;
background: none;
    cursor: pointer;
    vertical-align: middle;
margin-left:-0.5%;

}

#audioplayer .s_play {
    width: 0px;
    height: 4px;
margin-top:15px;
    background: #F75932;
    position: absolute;
    z-index: 2;

}

#audioplayer .bufer {
    width: 0px;
    height: 35px;
    position: absolute;
    z-index: 1;
background: #000;
opacity: 0.8;
}

#audio {
    display: none;
}

.mail .dinamik {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 2px;
    cursor: pointer;
    text-align: left;
    height: 15px;
}

.mail .dinamik div {
    width: 4px;
    height: 5px;
    background: #5087b2;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 1px;

    border-radius: 2px 0px 0px 2px;
}

.mail .dinamik span {
    width: 0px;
    height: 5px;
    border-top: 5px solid transparent;
    border-right: 7px solid #5087b2;
    border-bottom: 5px solid transparent;
    border-radius: 0px 2px 2px 0px;
    display: inline-block;
    vertical-align: middle;
}

.mail .volume_div {
    display: inline-block;
    margin: 0px 1px;
    vertical-align: middle;
    cursor: pointer;
}

.mail .video_volume {
    width: 1px;
    height: 10px;
    margin: 0px;
    display: inline-block;
    vertical-align: middle;
    background: #5087b2;
    border: 1px solid #fff;
    opacity: 0.5;
}

.mail .video_volume:hover {
    height: 13px;
    opacity: 1;
}

.mail .time {
    display: inline-block;
    color: #5087b2;
    vertical-align: middle;

}

.mail .progress {
    display: inline-block;
    width: 340px;
    height: 5px;
    border: 1px solid #5087b2;
    border-radius: 2px;
    cursor: pointer;
    vertical-align: middle;
}

.mail .s_play {
    width: 0px;
    height: 5px;
    background: #5087b2;
    position: absolute;
    z-index: 2;
}

.mail .bufer {
    width: 0px;
    height: 5px;
    background: #5087b2;
    opacity: 0.5;
    position: absolute;
    z-index: 1;
}

.show_likes_div {
	position:absolute;
	margin-top:-93px;
	text-align:right;
	z-index:1000;
	height:64px;
	overflow:hidden;
}

.show_likes_div:hover {
	display:block;
}

.show_likes_bg {
	padding:5px;
	border-radius:5px;
	background:rgba(0,0,0,0.5);
	display:inline-block;
	height:54px;
	overflow:hidden;
}

.gygygy {
	position:absolute;
	width:100%;
	left:0px;
	top:0%;
	height:100px;
	overflow:hidden;
}

.gygygy div {
	display:inline-block;
	width:20px;
	height:20px;
	padding:5px;

	color:#000;
	font-weight:bold;
	text-align:center;
	border-radius:50%;
	-webkit-animation-name: 'autorization_anime';
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-name: 'autorization_anime';
    animation-duration: 15s;
	position:absolute;
	left:-30px;
	top:50%;
	z-index:100;
	box-shadow:inset 1px 1px 10px 1px rgba(0,0,0,0.3);
	background:#FFF;
}

#headtxt {
	color:#FFF;
	text-align:right;

	height:35px;
	overflow:hidden;
}

.textik-shadow {
   text-shadow: 2px 1px 0px #000000;
}

.textik-shadow2 {
   text-shadow: 0.5px 0.5px 0px #FFFFFF;
} 

.textik-shadow3 {
   text-shadow: 0.2px 0.2px 0px #C0C0C0; 
}

.textik-shadow4 {
   text-shadow: 0.5px 0.5px 0px #000000;
}

.textik-shadow5 {
    text-decoration: none; 
    display: inline-block; 
    border-bottom-style:dashed; 
    border-bottom-width:1px; 
    border-bottom-style:none;
}

.textik-shadow6 {
   text-shadow: 0.4px 0.4px 0px #FFFFFF;
}
#lenta_arrow {display:none}

.snew a {
 -moz-transition: color 0.2s 0.02s ease;
 -o-transition: color 0.2s 0.02s ease;
 -webkit-transition: color 0.2s 0.02s ease;
 color:#222;
 
 }
 
.snew a:hover {
 color: #ff6f5b;
 }

.sdvig a {
 -moz-transition: all 0.1s ease-in-out;
 -o-transition: all 0.1s ease-in-out;
 -webkit-transition: all 0.1s ease-in-out;
 color:#004993;
 display:block;
 }
 
.sdvig a:hover {
 -webkit-transform: translate(3px,0);
 -moz-transform: translate(3px,0);
 -o-transform: translate(3px,0);
 color: #C60000;
 }

.foottter a {
 text-decoration:none;
 }
 
.foottter a:hover {
 font-weight:bold;

 text-decoration:underline;
 color: #FFFFFF;
 }

.gallery li2 {
    height: 50px;
    width: 50px;
    border: #FFFFFF solid 0px;
    margin: 3px;
    overflow: hidden;
    display: inline-block;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius:10px;
    border-radius: 10px;
}

.stenka {
    background: none;
    color:#333333;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 5px;
    border-radius: 0px 0px 3px 3px;
    z-index: 1000;
}

.stenks {
    background: #F1F1F1;
    color:#333333;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 5px;
    border-radius: 0px 0px 3px 3px;
    z-index: 1000;
    width: 100%;
}


.lenlen {
    background: #FFF;
}

.tilt {
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}
 
.tilt:hover {
  -webkit-transform: rotate(-10deg);
     -moz-transform: rotate(-10deg);
       -o-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
          transform: rotate(-10deg);
}

.knop {
 
-moz-transition: color 0.2s 0.02s ease;
 -o-transition: color 0.2s 0.02s ease;
 -webkit-transition: color 0.2s 0.02s ease;
 color:#FFFFFF;
    position:absolute;
    left:-20px;
    padding:5px 10px;
    bottom:2.3em;
    color:#222;
    font:12px/1.2 Verdana, sans-serif;
    border-radius:4px;
    background: background-color: #CC0000;
    box-shadow: 0px 0px 4px #000;  
.knop:hover {
 color: #020202;
 }

.ask { position:relative; z-index:1; }
.ask span {display: none;}
.ask:hover {z-index:2;}
.ask:hover span {
display:block;
position:absolute;
width:120px;
top:25px;
left:20px;
background-color:#cbd4e1;
border:1px solid #0039a6;
padding:5px;r

color:#000;
text-decoration:none;
font-family: Verdana;
}

a.rollover {
    background: url(fon/glaz400.png); /* Путь к файлу с исходным  рисунком */
    display: block; /* Рисунок как блочный элемент */
    width: 140px; /* Ширина рисунка в пикселах */
    height: 30px; /* Высота рисунка */
   }
a.rollover:hover {
    background-position: 0 -30px; /* Смещение фона */
   }

.mens {
 color: #CCCCCC;
 text-decoration:none;
 }
 
.mens:hover {

 text-decoration:none;
 color: #FFFFFF;
 }

#knopka {
background: #2E8CE3;
padding: 7px 30px;

font-weight: bold;
color: #FFFFFF;
text-align: center;
border: solid 1px #73C8F0;
cursor: pointer;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
background: -moz-linear-gradient(0% 100% 90deg, #2E8CE3, #73C2FD);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#73C2FD), 
to(#2E8CE3));
box-shadow: inset 0 1px 0 0 #FFFFFF;
-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
border-bottom: 1px solid rgba(0,0,0,0.25); 
text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
}
	
#knopka:hover { 
background: #2E69E3; 
background: -moz-linear-gradient(0% 100% 90deg, #2E69E3, #59C2FF);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#59C2FF), 
to(#2E69E3));
}

#knopka:active {
background: #2E69E3; 
background: -moz-linear-gradient(0% 100% 90deg, #2E69E3, #59C2FF);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#59C2FF), 
to(#2E69E3));
box-shadow: inset 1px 1px 0 0 #004A7F;
-moz-box-shadow: inset 1px 1px 0 0 #004A7F;
-webkit-box-shadow: inset 1px 1px 0 0 #004A7F;
padding: 8px 29px 6px 31px;
}

.scrollup{
width:40px;
height:40px;
opacity:0.3;
position:fixed;
bottom:50px;
right:100px;
display:none;
text-indent:-9999px;
background: url('https://linkgay.ru/trtr.png') no-repeat;
}









