@charset "UTF-8";

@font-face {
  font-family:'Marthina';
  font-style:normal;
  font-weight:400;
  src:local(Marthina),url(https://fonts.cdnfonts.com/s/52424/Marthina-PKP1x.woff) format("woff");
}

* {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html {
  height:100%;
}

body {
  min-height:100%;
}

.grad {
  background-image:linear-gradient(to right,#8d5424,#9b803d,#e4e199,#9b803d,#8d5424);
  width:100%;
  height:25px;
}

.texto {
  color:#fff!important;
  font-family:'Montserrat',sans-serif;
  font-size:16px;
  font-weight:300;
  text-align:justify;
}

.titulo-small {
  font-family:'Marthina',sans-serif;
  background:-webkit-radial-gradient(#8d5424,#9b803d,#e4e199,#9b803d,#8d5424);
  -webkit-background-clip:text;
  font-weight:400;
  -webkit-text-fill-color:transparent;
  font-size:100px;
}

.text-uppercase {
  text-transform:uppercase;
}

:root {
  --color-uno:#101423;
  --color-dos:#8d5424;
  --color-tres:#330410;
}

.grid-container > * {
  box-shadow:2px 2px 2px 0 #101423;
  padding:10px;
  text-align:center;
}

.header {
  grid-area:header;
  background-image:url(https://img.mfcimg.com/photos2/313/31370560/727-784-373-106-13781564.jpg);
  background-position:center;
  background-size:cover;
  height:130vh;
  width:100%;
  text-align:center;
}

.navbar {
  grid-area:navbar;
  background-color:rgba(16,20,35,0.9);
  width:100%;
  z-index:5;
  height:60px;
}

.about {
  grid-area:about;
  background-color:var(--color-uno);
}

.links {
  grid-area:links;
  background-image:url(https://img.mfcimg.com/photos2/313/31370560/278-169-622-925-13756463.jpg);
  background-position:center;
  background-size:cover;
  height:120vh;
  width:100%;
  text-align:center;
}

.rules {
  grid-area:rules;
}

.club {
  grid-area:club;
}

.schedule {
  grid-area:schedule;
}

.store {
  grid-area:store;
}

.grid-container {
  display:grid;
  grid-template-rows:0 100%;
  grid-template-areas:navbar header grad-uno about links rules grad-dos club schedule grad-tres store footer;
}

/* *** nav *** */
.navbar {
  font-family:'Montserrat',sans-serif;
  font-size:16px;
  font-weight:400;
  display:grid;
  justify-items:end;
  align-items:center;
  grid-template-columns:90%;
  grid-template-areas:"item-uno item-dos item-tres item-cuatro";
}

.navbar a {
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
}

.navbar a:hover {
  color:var(--color-dos);
}

.navbar ul li {
  display:inline;
  margin:20px;
}

/* *** header ** */
.nombre {
  font-family:'Marthina',sans-serif;
  background:-webkit-radial-gradient(#8d5424,#9b803d,#e4e199,#9b803d,#8d5424);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:240px;
  filter:drop-shadow(2px 2px 3px #000);
  font-weight:400;
}

/* *** ABOUT *** */
.titulo {
  font-family:'Marthina',sans-serif;
  background:-webkit-radial-gradient(#8d5424,#9b803d,#e4e199,#9b803d,#8d5424);
  -webkit-background-clip:text;
  font-weight:200;
  -webkit-text-fill-color:transparent;
  font-size:200px;
  filter:drop-shadow(2px 2px 3px #000);
}

.linea-dos {
  line-height:114px;
  margin-top:-80px;
  margin-left:120px;
  font-size:140px;
}

.about-uno {
  grid-area:about-uno;
  margin-left:10%;
}

.about-dos {
  grid-area:about-dos;
  margin-right:10%;
}

.texto-about {
  width:400px;
}

.about {
  display:grid;
  grid-template-columns:50% 50%;
  grid-template-rows:420px;
  column-gap:20px;
  align-items:center;
  justify-content:center;
  grid-template-areas:"about-uno about-dos";
  text-align:center;
  padding-top:100px;
  padding-bottom:100px;
}

/* *** LINKS *** */
.links {
  color:#fff!important;
  font-family:'Montserrat',sans-serif;
  font-size:16px;
  font-weight:500;
  list-style:none;
  text-align:center;
}

.links ul {
  padding-top:200px;
  padding-left:200px;
}

.links a {
  text-decoration:none;
  color:var(--color-tres);
}

.links li {
  padding:8px;
  width:250px;
  margin:30px;
  color:var(--color-tres);
  background-image:linear-gradient(to right,#8d5424,#9b803d,#e4e199,#9b803d,#8d5424);
  border-radius:10px;
  box-shadow:5px 5px 10px var(--color-uno);
  list-style:none;
}

.links li:hover {
  background-image:linear-gradient(to right,#e4e199,#e4e199,#e4e199,#e4e199,#e4e199);
}

/* *** RULES *** */
.rules {
  background-color:var(--color-tres);
  display:flex;
  justify-content:center;
  width:100%;
  padding-top:100px;
  padding-bottom:100px;
}

.rules h1 {
  padding-left:20px;
}

.rules ul {
  padding-left:20px;
}

.rules li {
  color:var(--color-dos);
  line-height:28px;
}

.rules span {
  color:#fff;
}

.circle-img {
  width:400px;
  height:400px;
  object-fit:cover;
  border-radius:50%;
  background:linear-gradient(to right,#8d5424,#9b803d,#e4e199,#9b803d,#8d5424);
  border-radius:100%;
  padding:5px;
  box-sizing:border-box;
  margin-left:100px;
}

.texto-rules {
  margin-left:120px;
  margin-right:100px;
}

/* *** CLUB *** */
.club h1 {
  padding-top:150px;
}

.bg-club {
  background-color:var(--color-uno);
  text-align:center;
}

.club img {
  margin:20px;
}

.circle-img-dos {
  width:260px;
  height:260px;
  object-fit:cover;
  border-radius:50%;
  background:linear-gradient(to right,#8d5424,#9b803d,#e4e199,#9b803d,#8d5424);
  border-radius:100%;
  position:relative;
  text-align:center;
  padding:5px;
  box-sizing:border-box;
}

.small-border {
  margin-top:-50px;
  margin-left:20px;
  margin-right:20px;
  border:2px solid var(--color-dos);
  border-radius:10px;
  position:relative;
  background-color:var(--color-uno);
}

.titulo-small-cards {
  font-family:'Marthina',sans-serif;
  color:#fff;
  font-weight:200;
  font-size:40px;
}

.club a {
  text-decoration:none;
  color:#fff;
  padding:10px;
  background-color:var(--color-tres);
  border-radius:10px;
  border:2px solid var(--color-dos);
  font-family:'Montserrat',sans-serif;
  font-size:16px;
  font-weight:300;
}

.club a:hover {
  background-image:linear-gradient(to right,#e4e199,#e4e199,#e4e199,#e4e199,#e4e199);
  color:var(--color-tres);
}

.cards {
  display:flex;
  justify-content:center;
  width:100%;
  padding-bottom:150px;
}

/* *** SCHEDULE *** */
.schedule {
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
}

.schedule::before {
  content:"";
  position:absolute;
  width:100%;
  height:80vh;
  left:-1px;
  z-index:1;
  background:url(https://img.mfcimg.com/photos2/313/31370560/582-240-714-243-13756464.jpg);
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;
  transform:scaleX(-1);
}

.horario {
  position:relative;
  margin-top:-60px;
  margin-bottom:100px;
  color:#fff;
  margin-left:780px;
  margin-right:60px;
  z-index:2;
}

.horario h1 {
  padding-bottom:20px;
}

.horario p {
  margin-top:20px;
}

.week {
  padding-bottom:50px;
}

.horario a {
  text-decoration:none;
  color:#fff;
  padding:10px;
  background-color:var(--color-tres);
  border-radius:10px;
  border:2px solid var(--color-dos);
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  font-weight:300;
}

/* *** STORE *** */
.store {
  width:100%;
  height:100vh;
  background-image:url(https://img.mfcimg.com/photos2/313/31370560/200-578-580-978-13756466.jpg);
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;
  text-align:center;
}

.store-content {
  padding-top:50px;
  padding-bottom:600px;
}

.store-content a {
  text-decoration:none;
  padding-left:20px;
  padding-right:20px;
  margin-top:-200px;
  color:#e4e199;
  background-color:var(--color-tres);
  border-radius:10px;
  border:4px solid var(--color-dos);
  font-size:60px;
  font-family:'Marthina',sans-serif;
}

/* ==========================================================================
 
   ========================================================================== */
html {
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  border:0;
}

@media only all and (max-width: 640px) and (max-height: 480px) {
  body {
    background-size:640px 480px;
    -moz-background-size:640px 480px;
    -webkit-background-size:640px 480px;
  }
}

@media only screen and (orientation: portrait) and (device-width: 320px),(device-width: 768px) {
  body {
    -webkit-background-size:auto 100%;
  }
}

@media only screen and (orientation: landscape) and (device-width: 320px),(device-width: 768px) {
  body {
    -webkit-background-size:100% auto;
  }
}

body {
  margin:0;
  padding:0;
}

#Welcome,#TipMenu,#Rules,#Events,#HTipper,#Clubs,#Loyals,#Fame,#LOEG {
  position:absolute;
  margin-top:-80px;
  height:0;
  width:0;
}

.navbar {
  position:fixed;
  top:0;
}

#HRollers {
  position:absolute;
  margin-top:-100px;
  height:0;
  width:0;
}

.twocolumn {
  -moz-column-count:2;
  -webkit-column-count:2;
  column-count:2;
}

#HTippers3,#HTippersMonth,#SuppModels {
  position:absolute;
  margin-top:0;
  height:0;
  width:0;
}

#profile_avatar,#avatar_holder,#profile_main_photo,#header_bar,#footer_bar,#blurb_label,#blurb_value,#about_me_label,#status_label,#member_type_value,#member_message_value,#unix_last_updated_container,#show_message_dialog {
  display:none;
}

#username_container,#cam_score_container,#gender_container,#age_container,#country_container,#city_container,#ethnicity_container,#sexual_preference_container,#marital_status_container,#occupation_container,#school_container,#body_type_container,#weight_container,#height_container,#hair_container,#eyes_container,#smoke_container,#drink_container,#drugs_container,#favorite_food_container,#pets_container,#automobile_container {
  display:none;
}

/* -------------------------------------------------------------------- */
#member_status_value {
  font-family:Geneva,Helvetica,sans-serif;
  font-weight:600;
  font-style:normal;
  z-index:5;
  position:relative;
}

#member_status_value:before {
  color:#FFF!important;
  content:'I Am   ';
}

#member_status_value:after {
  color:#FFF!important;
  content:' Now';
}

#status_container {
  z-index:10;
  position:fixed;
  top:20px;
  color:#FFF!important;
}

#status_container a:link {
  font-family:Geneva,Helvetica,sans-serif;
  font-weight:600;
  font-style:normal;
  font-size:.9rem;
}

#status_container a {
  color:#fff;
  padding:0 12px;
}

#status_container a:hover {
  color:var(--color-dos);
}

/* -------------------------------------------------------------------- */
.container #last_login_string_label,#unix_last_login_label,#unix_last_broadcast_label {
  display:none;
}

.container #last_login_string_value,#unix_last_login_value,#unix_last_broadcast_value {
  display:none;
}

.heading {
  display:none;
}

#about_me_value {
  display:block;
  margin:0 auto 0 0;
}

#Menu li:hover .DD {
  background:url(https://drive.google.com/uc?id=0BxVxgA3zoQzsSGpxYnpxTDNjekU) no-repeat right 10px;
  background-size:12px;
}

#profile_about_me {
  width:100%;
  z-index:3;
}

.container {
  display:block;
  margin:0;
}

#profile {
  width:100%;
  background:#101423;
}

#profile_header {
  padding:0;
}

#profile_header_container {
  min-height:0;
}

.profile_section_content {
  border-spacing:0;
  top:-7px;
  z-index:auto;
}

img {
  border-radius:0;
  box-shadow:none;
}

.img_radius_shadow {
  border-radius:0;
  box-shadow:none;
}

#img_preview {
  border-radius:0;
  box-shadow:none;
}

.profile_section_content .label {
  color:#FFF;
}

#profile_photo_galleries {
  position:relative;
  border-radius:5px;
  text-align:center;
}

.photo_gallery_previews {
  text-align:center;
}

.photo_gallery_name {
  display:block;
  width:auto;
}

.photo_gallery_name a:link,.photo_gallery_name a:visited {
  width:auto;
  height:auto;
  color:#FFF;
  text-decoration:none;
}

.photo_gallery_count {
  color:#FFF;
  text-decoration:none;
}

.profile_section_content .value {
  color:#FFF;
}

#profile_friends {
  display:none;
}

#favorite_models_container .value a {
  display:none;
}

#favorite_models_container a:hover {
  display:none;
}

#friends_container .value a {
  display:none;
}

#friends_container .value a:hover {
  display:none;
}

#profile_comments {
  display:none;
}

.AA-Spacer {
  width:930px;
  margin:20px 0;
  background:transparent;
}

.AA-Section-Hdr {
  display:block;
  width:850px;
  height:auto;
  margin:40px 40px 10px;
  border:solid #B20009 2px;
  border-radius:6px;
  -webkit-border-radius:6px;
  -moz-border-radius:6px;
}

.AA-Generic-Img {
  display:block;
  width:930px;
  height:auto;
  margin:20px auto;
  border-radius:6px;
  -webkit-border-radius:6px;
  -moz-border-radius:6px;
}

#ot_logo {
  position:fixed;
  top:1%;
  right:1%;
}

#tags_container {
  display:inline-block;
  width:900px;
  margin:0 0 0 20px;
}

#Links {
  display:inline-block;
  width:660px;
  margin:25px 0 20px 140px;
}

#AA-GCard-Email {
  display:block;
  width:930px;
  margin:10px auto;
  text-align:center;
}

#AA-TipMenu1 li,#AA-TipMenu2 li {
  list-style:none;
  margin:10px 10px 0;
  padding:10px;
  color:#585858;
  width:auto;
}

#AA-TipMenu-L {
  display:inline-block;
  vertical-align:top;
  margin:10px;
  width:440px;
}

#AA-TipMenu-R {
  display:inline-block;
  vertical-align:top;
  margin:10px;
  width:420px;
}

#AA-Events-Body {
  display:block;
  width:940px;
  height:auto;
  margin:10px auto;
}

.meter {
  height:20px;
  width:500px;
  position:relative;
  margin:0 0 20px;
  background:#FFFFFF;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  border-radius:5px;
  padding:10px;
  -webkit-box-shadow:inset 0 -1px 1px rgba(255,255,255,0.3);
  -moz-box-shadow:inset 0 -1px 1px rgba(255,255,255,0.3);
  box-shadow:inset 0 -1px 1px rgba(255,255,255,0.3);
}

.meter > span {
  display:block;
  height:100%;
  -webkit-border-top-right-radius:2px;
  -webkit-border-bottom-right-radius:2px;
  -moz-border-radius-topright:2px;
  -moz-border-radius-bottomright:2px;
  border-top-right-radius:2px;
  border-bottom-right-radius:2px;
  -webkit-border-top-left-radius:2px;
  -webkit-border-bottom-left-radius:2px;
  -moz-border-radius-topleft:2px;
  -moz-border-radius-bottomleft:2px;
  border-top-left-radius:2px;
  border-bottom-left-radius:2px;
  background-color:rgb(43,194,83);
  background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,rgb(43,194,83)),color-stop(1,rgb(84,240,84)));
  background-image:-moz-linear-gradient(center bottom,rgb(43,194,83) 37%,rgb(84,240,84) 69%);
  -webkit-box-shadow:inset 0 2px 9px rgba(255,255,255,0.3),inset 0 -2px 6px rgba(0,0,0,0.4);
  -moz-box-shadow:inset 0 2px 9px rgba(255,255,255,0.3),inset 0 -2px 6px rgba(0,0,0,0.4);
  box-shadow:inset 0 2px 9px rgba(255,255,255,0.3),inset 0 -2px 6px rgba(0,0,0,0.4);
  position:relative;
  overflow:hidden;
  text-align:right;
  height:18px;
  line-height:18px;
  font-weight:bold;
}

.meter > span:after,.animate > span > span {
  content:"";
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
  background-image:-webkit-gradient(linear,0 0,100% 100%,color-stop(.25,rgba(255,255,255,.2)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,.2)),color-stop(.75,rgba(255,255,255,.2)),color-stop(.75,transparent),to(transparent));
  background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent 75%,transparent);
  z-index:1;
  -webkit-background-size:50px 50px;
  -moz-background-size:50px 50px;
  background-size:50px 50px;
  -webkit-animation:move 2s linear infinite;
  -moz-animation:move 2s linear infinite;
  -webkit-border-top-right-radius:8px;
  -webkit-border-bottom-right-radius:8px;
  -moz-border-radius-topright:8px;
  -moz-border-radius-bottomright:8px;
  border-top-right-radius:8px;
  border-bottom-right-radius:8px;
  -webkit-border-top-left-radius:20px;
  -webkit-border-bottom-left-radius:20px;
  -moz-border-radius-topleft:20px;
  -moz-border-radius-bottomleft:20px;
  border-top-left-radius:20px;
  border-bottom-left-radius:20px;
  overflow:hidden;
}

.animate > span:after {
  display:none;
}

.AAMtr > span {
  background-color:#D4A4F0;
  background-image:-moz-linear-gradient(top,#DF0101,#DF5C5C);
  background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,#DF0101),color-stop(1,#DF5C5C));
  background-image:-webkit-linear-gradient(#DF0101,#DF5C5C);
}

#AA-HTipper-Body {
  display:block;
  width:940px;
  height:340px;
  background:url(https://drive.google.com/uc?id=0BxVxgA3zoQzsZUVnZW9SUEtIZlE) top center no-repeat;
}

#AA-HTipper-Name {
  display:block;
  width:940px;
  margin:0 auto;
  padding:100px 0 0;
  color:#000;
}

.AA-Panel {
  width:940px;
  height:auto;
  margin:20px auto;
  border-radius:6px;
  -webkit-border-radius:6px;
  -moz-border-radius:6px;
  background:transparent;
  text-align:center;
  z-index:99;
}

#AA-HTipper-Tokens {
  display:block;
  width:940px;
  margin:10px auto;
  color:#000;
}

#AA-TipMenu-Body {
  display:block;
  width:930px;
  height:auto;
  margin:0 auto;
  border-radius:8px;
  -moz-border-radius:8px;
  -webkit-border-radius:8px;
}

#AA-TipMenu-Body a {
  text-decoration:none;
  color:#FFF;
}

#AA-TipMenu-Body a:hover {
  text-decoration:none;
  color:#DF0101;
}

.wall_post_avatar {
  float:left;
  margin-top:5px;
  width:80px;
  height:68px;
  background:url(https://drive.google.com/uc?id=0BxVxgA3zoQzsZjAxX3dMc2RFbnc);
  z-index:98;
}

.wall_post_avatar img {
  width:53px;
  height:53px;
  border:none;
  border-radius:1px;
  padding:8px 0 0 7px;
}

#AA-TipMenu-Content {
  display:inline-block;
  vertical-align:top;
  margin:10px;
  width:480px;
}

.TmImg {
  margin:-35px 5px;
}

.TipMenu-Note {
  display:inline-block;
  margin:-95px 0 0 60px;
  text-align:left;
  width:380px;
  z-index:1;
}

.TipMenu-Note2 {
  display:inline-block;
  margin:-10px 0 0 60px;
  text-align:left;
  width:380px;
  z-index:1;
}

#wall_poster_username {
  display:none;
}

.wall_post_info a:link {
  color:#DF0101;
  text-decoration:none;
}

.wall_post_info a:visited {
  color:#A4A4A4;
  text-decoration:none;
}

#new_comment_buttons input[type='submit'] {
  text-decoration:none;
  text-align:center;
  padding:5px 13px;
  border:solid 1px #FFF;
  -webkit-border-radius:4px;
  -moz-border-radius:4px;
  border-radius:4px;
  color:#FFF;
  background-color:#B20009;
  background-image:-moz-linear-gradient(top,#b20009 0%,#ff787f 100%);
  background-image:-webkit-linear-gradient(top,#b20009 0%,#ff787f 100%);
  background-image:-o-linear-gradient(top,#b20009 0%,#ff787f 100%);
  background-image:-ms-linear-gradient(top,#b20009 0%,#ff787f 100%);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff787f',endColorstr='#ff787f',GradientType=0);
  background-image:linear-gradient(top,#b20009 0%,#ff787f 100%);
  -webkit-box-shadow:0 0 2px #bababa,inset 0 0 1px #ffffff;
  -moz-box-shadow:0 0 2px #bababa,inset 0 0 1px #ffffff;
  box-shadow:0 0 2px #bababa,inset 0 0 1px #ffffff;
  text-shadow:1px 1px 5px #000;
  filter:dropshadow(color=#000,offx=1,offy=1);
}

#profile_password_photo_galleries .photo_gallery_link img {
  display:block;
  background-image:url(https://drive.google.com/uc?id=0BxVxgA3zoQzsYzBwa1ZkRjZhMFU);
  background-repeat:no-repeat;
  background-position:0 0;
  width:85px;
  height:80px;
  margin-left:15px;
  padding-top:0!important;
  padding-right:0!important;
  padding-bottom:0!important;
  padding-left:120px!important;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  -webkit-box-shadow:0 0 0 #A09C94;
  -moz-box-shadow:0 0 0 #A09C94;
  -o-box-shadow:0 0 0 #A09C94;
  box-shadow:0 0 0 #A09C94;
}

#profile_password_photo_galleries .photo_gallery_preview .photo_gallery_link:nth-child(2) {
  display:block;
  background-image:url(https://drive.google.com/uc?id=0BxVxgA3zoQzsZ0NxUy1DQXBVT1U);
  background-position:top right;
  background-repeat:no-repeat;
  width:70px;
  height:90px;
  margin-left:10px;
  background-position:26px 106px;
  -webkit-transition:all 1s;
  -moz-transition:all 1s;
  -o-transition:all 1s;
  transition:all 1s;
}

.Valentines-Names {
  margin:0 0 0 80px;
  color:#FFF;
  text-shadow:0 0 2px #FFF,0 0 2px #FF0040,0 0 2px #FF0040,0 0 2px #FF0040,0 0 2px #FF0040,0 0 2px #FF0040;
  line-height:1.2rem;
  word-spacing:;
  overflow:auto;
  white-space:pre-line;
  padding:4px;
  -webkit-column-count:4;
  -moz-column-count:4;
  column-count:4;
  -webkit-column-width:170px;
  -moz-column-width:170px;
  column-width:170px;
  -webkit-column-gap:10px;
  -moz-column-gap:10px;
  column-gap:10px;
  -moz-column-fill:auto;
  column-fill:auto;
}

.wall_post_time {
  display:inline-table;
  background:transparent;
  padding:5px;
  color:#FFF;
}

.wall_post_time:before {
  content:'posted on ';
}

#profile_interests_content .profile_section_content {
  display:inline-block;
  width:450px;
  text-align:center;
  margin-left:230px;
}

#profile_interests_content .profile_section_content .label {
  display:inline-block;
  width:450px;
  text-align:center;
  color:#FF0000;
}

.wall_post_body {
  width:auto;
  color:#000;
  border-radius:4px;
  -moz-border-radius:4px;
  -webkit-border-radius:4px;
  border-top:.5rem solid #B20009;
  border-bottom:.15rem solid rgba(102,102,102,0.5);
  padding:10px;
  margin:0 0 3px 10px;
  background:linear-gradient(to bottom,#F6F6F6 0%,#FFFFFF 100%) repeat scroll 0 0 rgba(0,0,0,0);
  box-shadow:0 0 3px rgba(0,0,0,0.3);
  -moz-box-shadow:0 0 3px rgba(0,0,0,0.3);
  -ms-box-shadow:0 0 3px rgba(0,0,0,0.3);
  -o-box-shadow:0 0 3px rgba(0,0,0,0.3);
}

.wall_post_info {
  display:inline-table;
  width:auto;
  text-decoration:none;
  text-transform:capitalize;
  background:transparent;
  padding:5px;
  color:#6E6E6E;
}

#new_comment_buttons input[type='submit']:hover,#new_comment_buttons input[type='submit']:focus {
  text-decoration:none;
  text-align:center;
  padding:5px 13px;
  border:solid 1px #0B610B;
  -webkit-border-radius:4px;
  -moz-border-radius:4px;
  border-radius:4px;
  color:#FFF;
  background:#53922A;
  -webkit-box-shadow:0 0 2px #BABABA,inset 0 0 1px #FFF;
  -moz-box-shadow:0 0 2px #BABABA,inset 0 0 1px #FFF;
  box-shadow:0 0 2px #BABABA,inset 0 0 1px #FFF;
  text-shadow:1px 1px 5px #000;
  filter:dropshadow(color=#000,offx=1,offy=1);
}

#profile_password_photo_galleries .photo_gallery_preview .photo_gallery_link:nth-child(2):hover {
  background-position:20px 60px;
  -webkit-transition:all 1s;
  -moz-transition:all 1s;
  -o-transition:all 1s;
  transition:all 1s;
}

#profile_interests_content #know_me_label {
  display:none;
}

#profile_schedule .container {
  position:relative;
  display:inline-block;
  width:100px;
  height:75px;
  margin:0;
  margin-left:14px;
  padding:8px;
  border-radius:8px;
  -webkit-border-radius:8px;
  -moz-border-radius:8px;
}

#profile_schedule .heading {
  display:block;
  margin:20px auto;
  padding:8px 0;
  text-align:center;
  color:#FF0000;
}

#profile_schedule .label {
  display:block;
  width:100%;
  font-size:1.15em;
  line-height:1.2em;
  text-align:center;
}

#profile_schedule .value {
  position:absolute;
  display:inline-block;
  font-size:.85em;
  line-height:.9em;
  bottom:10px;
  color:#FFF;
  text-align:center;
}

#schedule_converted {
  text-align:center;
}

#Disclaimer {
  position:relative;
  display:block;
  margin:-10px auto;
  width:800px;
  height:auto;
  padding:10px;
  color:#FFF;
  text-align:center;
}

#AA-HTippers3-Body {
  display:block;
  width:940px;
  height:315px;
  background:url(https://drive.google.com/uc?id=1wImmZI0yzw81jHzbPtd70ssM9lT95qSS) top center no-repeat;
}

#AA-HTippersGold-Name {
  display:inline-block;
  width:270px;
  margin:255px 0 0 55px;
  text-align:center;
  color:#FFF;
  text-shadow:1px 1px 2px #A4A4A4;
}

#AA-HTippersSilver-Name {
  display:inline-block;
  width:270px;
  margin:255px 0 0 10px;
  text-align:center;
  color:#FFF;
  text-shadow:1px 1px 2px #A4A4A4;
}

#AA-HTippersBronze-Name {
  display:inline-block;
  width:270px;
  margin:255px 0 0 20px;
  text-align:center;
  color:#FFF;
  text-shadow:1px 1px 2px #A4A4A4;
}

#AA-Calendar-Container {
  width:930px;
  height:auto;
  margin:10px auto;
}

.AA-CalendarCell {
  width:150px;
  height:150px;
  padding-top:1px;
  padding-right:1px;
  padding-left:1px;
  color:#FFF;
  background-color:#FFFFFF;
  vertical-align:middle;
  white-space:normal;
  border-bottom-right-radius:10px;
  -moz-border-bottom-right-radius:10px;
  -webkit-border-bottom-right-radius:10px;
  background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0.49,rgb(178,0,9)),color-stop(0.95,rgb(128,17,23)));
  background-image:-o-linear-gradient(top,rgb(178,0,9) 49%,rgb(128,17,23) 95%);
  background-image:-moz-linear-gradient(top,rgb(178,0,9) 49%,rgb(128,17,23) 95%);
  background-image:-webkit-linear-gradient(top,rgb(178,0,9) 49%,rgb(128,17,23) 95%);
  background-image:-ms-linear-gradient(top,rgb(178,0,9) 49%,rgb(128,17,23) 95%);
  background-image:linear-gradient(to top,rgb(178,0,9) 49%,rgb(128,17,23) 95%);
}

.AA-CalendarCellClean {
  width:150px;
  height:20px;
  padding-top:1px;
  padding-right:1px;
  padding-left:1px;
  background-color:#FFFFFF;
  vertical-align:middle;
}

.AA-CalendarCellSize {
  width:150px;
  height:150px;
}

.AA-CalendarMonth {
  position:relative;
  width:150px;
  height:14px;
  top:4px;
  left:4px;
  color:#FFF;
  z-index:10;
  text-align:center;
}

.AA-CalendarContent {
  position:relative;
  width:150px;
  height:150px;
  margin:20px auto;
  font-family:Arial,sans-serif;
  font-size:1rem;
  font-weight:600;
  line-height:1.25rem;
  color:#FFF;
  vertical-align:middle;
  text-align:center;
  z-index:50;
}

#AA-Cuba-Body {
  display:block;
  width:940px;
  height:1050px;
  margin:0 auto;
  border-radius:6px;
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
}

.AA-CalendarHd {
  padding:5px;
  background-color:transparent;
  text-align:center;
  vertical-align:middle;
}

.ModelImg {
  display:inline-block;
  width:110px;
  height:140px;
  padding:0 0 0 10px;
}

#AA-SuppModels-Body {
  width:380px;
  margin:10px auto;
}

.HR-Names-Container {
  display:block;
  width:940px;
  margin:10px auto;
  height:auto;
  min-height:100px;
  border-radius:8px;
  -moz-border-radius:8px;
  -webkit-border-radius:8px;
  -moz-box-shadow:0 0 0 4px #FFFFFF,1px 1px 4px 4px rgba(10,10,0,.5);
  -webkit-box-shadow:0 0 0 4px #FFFFFF,1px 1px 4px 4px rgba(10,10,0,.5);
  box-shadow:0 0 0 2px #FFFFFF,2px 1px 6px 4px rgba(10,10,0,.5);
}

.HR-Names {
  margin:0 0 0 80px;
  color:#FF0000;
  word-spacing:;
  overflow:auto;
  white-space:pre-line;
  padding:4px;
  -webkit-column-count:4;
  -moz-column-count:4;
  column-count:4;
  -webkit-column-width:170px;
  -moz-column-width:170px;
  column-width:170px;
  -webkit-column-gap:10px;
  -moz-column-gap:10px;
  column-gap:10px;
  -moz-column-fill:auto;
  column-fill:auto;
}

#HT100K-Names-Container {
  display:block;
  width:940px;
  margin:15px auto;
  min-height:100px;
  height:auto;
  padding:0 0 20px;
}

.HT100K-Ribbon {
  display:block;
  width:940px;
  height:100px;
  margin:0 auto;
  background:url(https://drive.google.com/uc?id=0BxVxgA3zoQzsNU1UUThHV2VhUkU) top center no-repeat;
}

.HT100K-Name {
  display:block;
  width:940px;
  text-align:center;
  color:#000;
  padding:10px 0 0;
}

.HT100K-Tokens {
  display:block;
  width:940px;
  text-align:center;
  color:#000;
  padding:5px 0 0;
}

@media all and (max-width: 1024px) {
  #ot_logo,.container #last_login_string_label,#unix_last_login_label,#unix_last_broadcast_label,.container #last_login_string_value,#unix_last_login_value,#unix_last_broadcast_value {
    display:none;
  }
}

#AA-Mtr-Container {
  width:550px;
  margin-left:190px;
  margin-top:30px;
  padding:155px 0 0;
  background:transparent;
  z-index:99;
}

@-webkit-keyframes move {
  0% {
    background-position:0 0;
  }

  100% {
    background-position:50px 50px;
  }
}

@-moz-keyframes move {
  0% {
    background-position:0 0;
  }

  100% {
    background-position:50px 50px;
  }
}

/* ==========================================================================
 
   ========================================================================== */
#AA-BFC-Body {
  width:940px;
  min-height:480px;
  margin:0 auto;
}

#AA-BFC-Container {
  display:block;
  margin:0 0 0 15px;
  width:940px;
}

.BFC-ST-Container {
  position:relative;
  float:left;
  width:180px;
  margin:0 auto;
  text-align:center;
}

.BFC-Seg {
  position:relative;
  width:180px;
  height:140px;
  float:left;
  margin:5px auto;
  text-align:center;
}

.BFC-Birthday-Name {
  position:absolute;
  width:180px;
  top:90px;
  overflow:hidden;
  font-family:"Franklin Gothic Medium","Franklin Gothic",Arial,sans-serif;
  font-weight:500;
  font-size:.93rem;
  line-height:1rem;
  color:#FFF;
  text-align:center;
  padding:10px 0;
}

.GBFC-Seg-TMB {
  width:172px;
  height:98px;
}

.BFC-Seg-TMB-Cont {
  display:inline-block;
  position:absolute;
  top:5px;
  left:0;
}