body {
    width: 100%;
    background: url(../images/body-bg-top.jpg) center top no-repeat, url(../images/body-bg-bottom.jpg) center bottom no-repeat;
    background-color: #03080d;
    font-family: Candara, Arial, sans-serif;
    font-size: 13px;
    color: #7a939d;
}

a {
    transition: all 0.3s ease;
    color: #24698f;
}

a:hover,
button:hover {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
}

p {
    margin-bottom: 10px;
}

h1,
h2,
h3 {
    color: #fff;
    margin-bottom: 20px;
    line-height: 24px;
}

input,
textarea {
    background: #0b1c2b;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0);
}

button {
    background: none;
    border: 1px solid #153348;
    padding: 10px 25px;
    border-radius: 2px;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: rgba(21, 51, 72, 0.5);
}

.blue-a,
.green-a,
.gold-a {
    transition: all 0.3s ease;
    cursor: pointer;
    background: url(../images/button-blue-bg.png) repeat-x;
    height: 18px;
    line-height: 18px;
    display: inline-block;
    border: none;
    color: #fff;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 9px;
    text-shadow: 1px 1px 2px #000;
    margin-left: 5px;
    text-decoration: none;
    box-shadow: 0 10px 49px -1px rgba(0, 0, 0, 0.75);
    padding: 0 10px;
}

.blue-a:before,
.green-a:before,
.gold-a:before {
    content: "";
    background: url(../images/button-blue-left-bg.png) no-repeat;
    width: 20px;
    height: 18px;
    position: absolute;
    left: -5px;
    top: 0;
    z-index: -1;
}

.blue-a:after,
.green-a:after,
.gold-a:after {
    content: "";
    background: url(../images/button-blue-right-bg.png) no-repeat;
    width: 20px;
    height: 18px;
    position: absolute;
    right: -5px;
    top: 0;
    z-index: -1;
}

.green-a {
    background: url(../images/button-green-bg.png) repeat-x;
    box-shadow: 0 0 29px -1px #67cc7c;
}

.green-a:before {
    content: "";
    background: url(../images/button-green-left-bg.png) no-repeat;
    width: 20px;
    height: 18px;
    position: absolute;
    left: -5px;
    top: 0;
    z-index: -1;
}

.green-a:after {
    content: "";
    background: url(../images/button-green-right-bg.png) no-repeat;
    width: 20px;
    height: 18px;
    position: absolute;
    right: -5px;
    top: 0;
    z-index: -1;
}

.gold-a {
    background: url(../images/button-gold-bg.png) repeat-x;
    box-shadow: 0 0 29px -1px #ff6816;
}

.gold-a:before {
    content: "";
    background: url(../images/button-gold-left-bg.png) no-repeat;
    width: 20px;
    height: 18px;
    position: absolute;
    left: -5px;
    top: 0;
    z-index: -1;
}

.gold-a:after {
    content: "";
    background: url(../images/button-gold-right-bg.png) no-repeat;
    width: 20px;
    height: 18px;
    position: absolute;
    right: -5px;
    top: 0;
    z-index: -1;
}

.button-n:after {
    display: none;
}

.button-n:before {
    display: none;
}

:focus {
    outline: none;
}

input:focus,
textarea:focus {
    border: 1px solid #2d5572;
}

::-webkit-input-placeholder {
    color: #7a939d;
}

::-moz-placeholder {
    color: #7a939d;
}

:-moz-placeholder {
    color: #7a939d;
}

:-ms-input-placeholder {
    color: #7a939d;
}

.wrapper {
    width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* Header
-----------------------------------------------------------------------------*/
.header {
    height: 508px;
}

.menu-top {
    text-align: center;
    background: url(../images/menu-top-bg.png) bottom no-repeat;
    height: 130px;
}

.menu-top ul {
    width: 600px;
}

.menu-top ul li {
    display: inline-block;
    margin: 0 25px;
    position: relative;
}

.menu-top ul li:hover {
    background: url(../images/menu-top-active.png) center -1px no-repeat;
}

.menu-top ul li ul {
    position: absolute;
    margin-top: -15px;
    margin-left: -80px;
    opacity: 0;
    left: -9999px;
    z-index: 9999;
    width: 160px;
    background-color: #070f17;
    border: 1px solid #1a2939;
    padding: 20px 0;
    transition: 0.25s linear opacity;
    box-shadow: 10px 10px 64px -16px rgba(0, 0, 0, 0.75);
}

.menu-top ul li ul:after {
    content: "";
    background: url(../images/menu-icon.png) no-repeat;
    width: 22px;
    height: 12px;
    top: -11px;
    left: 50%;
    margin-left: -11px;
    position: absolute;
}

.menu-top ul li ul li {
    display: block;
    margin: 0 0;
    text-align: left;
}

.menu-top ul li ul li:hover {
    background: none !important;
}

.menu-top ul li ul li a {
    text-transform: none;
    padding: 8px 28px;
    border-top: none !important;
    color: #7a939d !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.menu-top ul li ul li a:hover {
    color: #fff;
    background-color: #0f1d2b;
}

.menu-top ul li ul li a:before {
    content: ">";
    padding-right: 10px;
}

.menu-top ul li a {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 35px 10px;
    display: block;
    font-weight: bold;
    border-top: 2px solid rgba(0, 0, 0, 0);
}

.menu-top ul li a:hover {
    border-top: 2px solid #74c564;
    text-shadow: 0 0 27px #74c564;
    color: #74c564;
}

.menu-top ul li:hover ul {
    left: 50%;
    opacity: 1;
}

.menu-top .active {
    background: url(../images/menu-top-active.png) center -1px no-repeat;
}

.menu-top .active a {
    text-shadow: 0 0 27px #74c564;
    color: #74c564;
    border-top: 2px solid #74c564;
}

.menu-top-left {
    float: left;
}

.menu-top-right {
    float: right;
}

.server-load {
    background: url(../images/server-load-bg.png) no-repeat;
    width: 191px;
    height: 86px;
    text-align: center;
    margin: 0 auto;
    padding-left: 4px;
}

.server-load div {
    font-weight: bold;
    color: #fff;
    font-size: 9px;
    text-transform: uppercase;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    padding-top: 14px;
    margin-bottom: 1px;
}

.server-load span {
    color: #6fff52;
    font-size: 18px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.logo {
    padding-top: 76px;
    padding-left: 14px;
}

.logo a {
    background: url(../images/logo.html) no-repeat;
    width: 581px;
    height: 212px;
    display: block;
}

.logo a:hover {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
}

/* Middle
-----------------------------------------------------------------------------*/
.container {
    width: 100%;
    display: flex;
}

.content {
    width: 860px;
    padding: 50px;
    min-height: 1000px;
    background: #07131f;
    -webkit-margin-start: -1px;
    line-height: 1.3;
}

.content img {
    max-width: 860px;
}

.top-content-block {
    display: flex;
    width: 960px;
    margin: -50px 0 50px -50px;
}

.download-bonus-block {
    width: 321px;
    position: relative;
    z-index: 1;
}

.download-bonus-block .download a {
    display: block;
    text-decoration: none;
    background: url(../images/download-button.html) no-repeat;
    width: 321px;
    padding-top: 97px;
    height: 55px;
    text-align: center;
}

.download-bonus-block .download a span {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    color: #c7c9ca;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.bonus-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bonus-block a {
    height: 48px;
    width: 95px;
    display: block;
    text-transform: uppercase;
    padding: 19px 0 0 65px;
    text-decoration: none;
}

.bonus-block a p {
    font-weight: bold;
    font-size: 14px;
    color: #7a939d;
    margin-bottom: 0;
}

.bonus-block a span {
    color: #3d4650;
    font-size: 9px;
}

.bonus-block .bonus {
    background: #122735 url(../images/bonus-bg.html) 0 2px no-repeat;
    border-right: 1px solid #163140;
    border-bottom: 1px solid #163140;
}

.bonus-block .facebook {
    background: #122735 url(../images/bonus-bg.html) -159px 2px no-repeat;
    border-bottom: 1px solid #163140;
}

.bonus-block .support {
    background: #122735 url(../images/bonus-bg.html) 0 -67px no-repeat;
    border-right: 1px solid #163140;
}

.bonus-block .shop {
    background: #122735 url(../images/bonus-bg.html) -159px -67px no-repeat;
}

.slider {
    overflow: hidden;
    position: relative;
    width: 639px;
    height: 288px;
    margin: 0 auto;
}

.slider .slides {
    position: relative;
    transition: 1s;
}

.slider .slides .active div {
    transition: all 2s ease;
    bottom: 4px !important;
}

.slider .slides .active h2 {
    transition: all 2s ease;
    top: 140px !important;
}

.slider .slides .active p {
    transition: all 5s ease;
    opacity: 1 !important;
}

.slider .slides .slide {
    float: left;
    display: block;
    position: relative;
}

.slider .slides .slide h2 {
    position: absolute;
    top: -200px;
    left: 40px;
    font-size: 48px;
    font-weight: normal;
}

.slider .slides .slide p {
    position: absolute;
    bottom: 70px;
    left: 40px;
    font-size: 24px;
    color: #7a939d;
    opacity: 0;
}

.slider .slides .slide div {
    position: absolute;
    bottom: -40px;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #7a939d;
    width: 539px;
    padding-right: 100px;
    height: 29px;
    line-height: 29px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider .slides .slide div span {
    color: #fff;
}

.slider .slides .slide img {
    width: 639px;
    height: 288px;
}

.slider .slides .slide a {
    display: inline-block;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    background: url(../images/slider-button.jpg) no-repeat;
    height: 29px;
    line-height: 29px;
    width: 76px;
    text-align: center;
    float: left;
    margin-right: 15px;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.6);
    text-decoration: none !important;
}

.slider .next {
    position: absolute;
    background: url(../images/right-arrow.png) no-repeat;
    height: 33px;
    width: 33px;
    right: 0;
    top: 120px;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
}

.slider .prev {
    position: absolute;
    background: url(../images/left-arrow.png) no-repeat;
    height: 33px;
    width: 33px;
    left: 0;
    top: 120px;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
}

.slider .navigation {
    position: absolute;
    width: 100%;
    bottom: 8px;
    right: 10px;
    text-align: right;
    z-index: 1;
    cursor: pointer;
}

.slider .navigation .dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #353739;
    cursor: pointer;
    border-radius: 16px;
    margin: 0 5px;
}

.slider:hover .next,
.slider:hover .prev {
    opacity: 1;
    transition: all 0.7s ease;
}

.slider .navigation .active {
    background: #74c564;
    box-shadow: 0 0 14px 2px #74c564;
}

.content-block-info {
    display: flex;
}

.left-content-block-info {
    width: 100%;
}

.right-content-block-info {
    width: 280px;
    padding-left: 25px;
}

.content-title {
    margin-bottom: 16px;
}

.title {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.tab,
.tab-s,
.tab-n {
    display: none;
}

.tab.active,
.tab-s.active {
    display: flex;
}

.tab-n.active {
    display: block;
}

.tab.active,
.tab-s.active {
    animation-name: opasity;
    animation-duration: 1s;
    animation-timing-function: linear;
}

@keyframes opasity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.media-tab,
.news-tab {
    margin-bottom: 20px;
}

.tab-button {
    position: relative;
    background: #091421;
}

.tab-button:after {
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    background: #153348;
    bottom: 0;
    left: 0;
}

.tab-button button {
    display: inline-block;
    color: #3d4650;
    text-transform: uppercase;
    padding: 0 26px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-left: 0;
    text-shadow: none;
}

.tab-button button:hover {
    color: #74c564;
    border-bottom: 2px solid #74c564;
    background: #0c1b29;
    text-shadow: 0 0 10px #74c564;
}

.tab-button .active {
    color: #74c564;
    border-bottom: 2px solid #74c564;
    background: #0c1b29;
    text-shadow: 0 0 10px #74c564;
}

.news-block {
    margin-bottom: 40px;
}

.last-news-block {
    min-height: 155px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px dotted #153348;
    overflow: hidden;
}

.last-news-block .news-img {
    float: left;
    margin-right: 25px;
    margin-bottom: 10px;
}

.last-news-block .news-img img {
    width: 233px;
    height: 155px;
    display: block;
    box-shadow: 0 18px 33px -17px rgba(0, 0, 0, 0.5);
}

.last-news-block h2 {
    font-weight: normal;
    font-size: 20px;
    text-transform: uppercase;
}

.last-news-block h2 a {
    text-decoration: none;
    color: #fff;
}

.last-news-block h2 a:hover {
    text-decoration: underline;
}

.last-news-block .news-b a {
    margin-right: 30px;
}

.last-news-block .news-b span {
    color: #fff;
}

.last-news-block .news-b span b {
    font-size: 14px;
    font-weight: normal;
}

.news-info {
    color: #7a939d;
    padding: 15px 10px 15px 30px;
    border-bottom: 1px dotted #153348;
    position: relative;
}

.news-info:before {
    content: "";
    background: url(../images/nav.png) -5px 0 no-repeat;
    height: 8px;
    width: 5px;
    margin-right: 15px;
    position: absolute;
    left: 15px;
    top: 19px;
    opacity: 0.3;
}

.news-info span {
    color: #fff;
}

.news-info .news-read-more {
    float: right;
    opacity: 0;
    margin: 1px 10px 0 20px;
}

.news-info:hover:before {
    opacity: 1;
}

.news-info:hover {
    background: #091f2f;
    box-shadow: 14px 14px 43px -17px rgba(0, 0, 0, 0.7);
    color: #fff;
}

.news-info:hover a {
    opacity: 1;
    transition: all 0.5s ease;
}

.media-tab button {
    padding: 0 20px;
}

.media-block-i {
    margin-bottom: 40px;
}

.media-block-top a,
.media-block-bottom a {
    cursor: pointer;
    display: inline-block;
}

.media-block-top img,
.media-block-bottom img {
    box-shadow: 0 28px 43px -17px rgba(0, 0, 0, 0.5);
}

.media-block-top img {
    width: 280px;
}

.media-block-bottom img {
    width: 129px;
    height: 85px;
}

.media-block-top {
    text-align: center;
    margin-bottom: 18px;
    position: relative;
}

.media-block-top a:after {
    content: "";
    background: url(../images/video-icon.png);
    height: 39px;
    width: 39px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -19px;
    margin-top: -18px;
}

.media-block-bottom {
    display: flex;
    justify-content: space-between;
}

.forum {
    border-bottom: 1px dotted #153348;
    padding-top: 14px;
    min-height: 50px;
    line-height: 18px;
}

.forum img {
    float: left;
    margin-right: 14px;
    box-shadow: 5px 5px 19px 0 rgba(0, 0, 0, 0.3);
    width: 36px;
    height: 36px;
}

.forum .forum-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.forum .forum-title a {
    color: #7a939d;
    text-decoration: none;
}

.forum .forum-autor {
    font-size: 12px;
    color: #3d4650;
}

.forum .forum-autor a {
    font-size: 12px;
    color: #24698f;
}

.forum .forum-autor a:hover {
    text-decoration: none;
}

.forum .forum-autor span {
    margin-left: 25px;
    position: relative;
}

.forum .forum-autor span:before {
    content: "";
    border-left: 1px solid #373034;
    height: 6px;
    width: 1px;
    position: absolute;
    margin-top: 7px;
    margin-left: -12px;
}

.forum:last-child {
    border-bottom: none;
}

.c-title {
    border-bottom: 2px solid #153348;
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.carousel {
    position: relative;
    width: 530px;
    margin-left: -33px;
    padding: 10px 30px;
}

.carousel .prev {
    left: 15px;
    background: url(../images/nav.png) 0 0 no-repeat;
}

.carousel .next {
    right: 7px;
    background: url(../images/nav.png) -5px 0 no-repeat;
}

.arrow {
    position: absolute;
    top: 80px;
    padding: 0;
    width: 5px;
    height: 8px;
    background: none;
    border: none;
    display: block;
    opacity: 0.3;
}

.arrow:after {
    display: none;
}

.arrow:before {
    display: none;
}

.arrow:hover {
    opacity: 1;
}

.arrow:focus {
    outline: none;
}

.arrow:hover {
    cursor: pointer;
}

.gallery {
    width: 540px;
    padding-top: 10px;
    overflow: hidden;
}

.gallery ul {
    height: 140px;
    width: 9999px;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: margin-left 1700ms;
    display: flex;
}

.gallery li {
    display: inline-block;
    width: 115px;
    height: 135px;
    margin: 0 10px;
    position: relative;
    transition: all 1s ease;
}

.gallery li button {
    position: absolute;
    bottom: -99px;
    left: 17px;
}

.gallery li p {
    color: #fff;
    margin-bottom: 0;
}

.gallery li span {
    color: #ff9b39;
    font-weight: bold;
}

.gallery li .item-s {
    background: #091f2f;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery li .item-s img {
    max-height: 90px;
}

.gallery li .item-price {
    text-align: center;
    background: url(../images/item-price-bg.png) repeat-x;
    height: 39px;
    font-size: 14px;
    padding-top: 5px;
}

.gallery li:hover {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
}

.gallery li:hover button {
    display: block;
    position: absolute;
    left: 17px;
    bottom: 12px;
}

.gallery li:hover p {
    display: none;
}

.gallery li:hover span {
    display: none;
}

/* Right Sidebar
-----------------------------------------------------------------------------*/
.sidebar {
    width: 320px;
    background: url(../images/sidebar-bg.png);
    position: relative;
}

.sidebar:after {
    content: "";
    background: url(../images/sidebar-bg-bottom.jpg) no-repeat;
    height: 25px;
    width: 320px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.shop-block .shop {
    height: 76px;
    width: 285px;
    padding: 20px 0 0 35px;
    position: relative;
    text-transform: uppercase;
}

.shop-block .shop a {
    padding: 0 10px;
    margin-left: 5px;
}

.shop-block .shop p {
    margin-bottom: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.shop-block .shop span {
    display: block;
    color: #95b2bc;
    font-size: 10px;
    margin-bottom: 5px;
}

.shop-block .ninja {
    background: url(../images/shop-bg.jpg) 0 0 no-repeat;
}

.shop-block .ninja:after {
    content: "";
    background: url(../images/ninja-bg.png) no-repeat;
    position: absolute;
    right: 27px;
    top: -10px;
    width: 112px;
    height: 106px;
}

.shop-block .sura {
    background: url(../images/shop-bg.jpg) 0 -96px no-repeat;
}

.shop-block .sura:after {
    content: "";
    background: url(../images/sura-bg.png) no-repeat;
    position: absolute;
    right: 17px;
    top: -9px;
    width: 130px;
    height: 105px;
}

.shop-block .szarfa {
    background: url(../images/shop-bg.jpg) 0 -192px no-repeat;
}

.shop-block .szarfa:after {
    content: "";
    background: url(../images/szarfa-bg.html) no-repeat;
    position: absolute;
    right: 34px;
    top: -15px;
    width: 104px;
    height: 113px;
}

.login-block-b {
    background: url(../images/login-bg-top.jpg) top no-repeat, url(../images/login-bg-bottom.jpg) bottom no-repeat;
}

.block-p {
    padding: 25px 30px;
    min-height: 100px;
}

.block-l {
    padding: 25px 0;
    min-height: 100px;
}

.license {
    margin: 20px 0;
}

.login-block {
    background: #102a3c;
}

.login-block .login-title {
    font-weight: bold;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 45px;
}

.login-block .login-title:after {
    content: "";
    height: 1px;
    background: #132f45;
    width: 100%;
    left: 0;
    margin-top: 37px;
    position: absolute;
}

.login-block .login-title span {
    float: right;
    font-weight: normal;
    font-size: 11px;
    color: #7a939d;
    margin-top: 5px;
}

.login-block .login-title span a {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.login-block input {
    width: 220px;
}

.login-block .lost-pass {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.login-button {
    background: url(../images/login-button.jpg) no-repeat;
    width: 109px;
    height: 35px;
    margin-left: 0;
    margin-right: 30px;
    box-shadow: 0 0 29px 1px #1b532d;
}

.lk-title {
    padding: 0 30px 30px 30px;
}

.lk-title button {
    float: right;
    margin-left: 17px;
    margin-top: 3px;
}

.lk-title .coins {
    float: right;
    color: #ff9b39;
    font-weight: bold;
    font-size: 14px;
    margin-top: 3px;
    display: inline-block;
    margin-bottom: 10px;
}

.lk-title .username {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.lk-form li {
    position: relative;
}

.lk-form li a {
    display: block;
    padding: 10px 25px 10px 60px;
    text-decoration: none;
    color: #95b2bc;
    font-size: 14px;
    border-top: 1px solid #15334a;
}

.lk-form li b {
    font-weight: normal;
    color: #00cd52;
}

.lk-form li span {
    float: right;
}

.lk-form li:hover {
    background: #132f45;
    box-shadow: 0 11px 31px -9px rgba(0, 0, 0, 0.1);
}

.lk-form li:before {
    content: "";
    background: url(../images/nav.png) -5px 0 no-repeat;
    height: 8px;
    width: 5px;
    margin-right: 15px;
    position: absolute;
    left: 35px;
    top: 13px;
    opacity: 0.3;
}

.lk-form li:last-child:before {
    content: "";
    background: url(../images/close-icon.png) 0 0 no-repeat;
    height: 8px;
    width: 8px;
    opacity: 0.4;
}

.sidebar-title {
    background: url(../images/sidebar-title-bg.jpg) repeat-x;
    height: 48px;
    line-height: 48px;
    width: 250px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    padding: 0 35px;
    position: relative;
}

.best-players-title span {
    background: url(../images/flag-icon.png) no-repeat;
    width: 59px;
    height: 62px;
    padding-top: 5px;
    text-align: center;
    position: absolute;
    right: 30px;
    top: -1px;
    line-height: 16px;
    font-size: 10px;
    color: #ffdd8c;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.best-players-title span b {
    display: block;
    font-size: 30px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

.player-info {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    color: #fff;
    height: 35px;
    line-height: 35px;
    padding: 0 6px 0 12px;
    border-bottom: 1px dotted #153347;
    transition: all 0.3s ease;
    font-size: 14px;
}

.player-info .top-number {
    font-size: 18px;
    width: 24px;
}

.player-info .top-ava {
    width: 40px;
    padding-top: 5px;
    position: relative;
    z-index: 1;
}

.player-info .top-ava img {
    width: 29px;
    height: 17px;
}

.player-info .top-name {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bloor-ava {
    position: absolute;
    left: 0;
    top: 9px;
    transform: scale(1.1);
    z-index: -1;
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.top-r {
    width: 85px;
    color: #7fc054;
    text-align: right;
}

.top-r a {
    display: none;
    margin: 10px 5px 0 0;
    padding: 0 5px;
    margin-left: 0;
}

.top-r a img {
    margin: 0 0 -1px 4px;
}

.player-info:hover {
    background: #102a3d;
    box-shadow: 0 8px 43px -17px rgba(0, 0, 0, 0.5);
}

.player-info:hover .top-r span {
    display: none;
}

.player-info:hover .top-r a {
    display: inline-block;
}

.block-bt {
    background: url(../images/sidebar-bg-top.jpg) top no-repeat, url(../images/sidebar-bg-bottom.jpg) bottom no-repeat;
}

.block-t {
    background: url(../images/sidebar-bg-top.jpg) top no-repeat;
}

.fast-links-block li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
}

.fast-links-block li a {
    color: #95b2bc;
    font-size: 14px;
    text-decoration: none;
}

.fast-links-block li a:hover {
    text-decoration: underline;
    color: #24698f;
}

.fast-links-block li:before {
    content: "";
    background: url(../images/nav.png) -5px 0 no-repeat;
    height: 8px;
    width: 5px;
    margin-right: 15px;
    position: absolute;
    left: 10px;
    top: 3px;
    opacity: 0.6;
}

.fast-links-block li:last-child {
    margin-bottom: 0;
}

/* Footer
-----------------------------------------------------------------------------*/
.footer {
    height: 192px;
    position: relative;
}

.footer-links-block {
    background: url(../images/footer-links-bg.png);
}

.footer-links-block-i {
    background: url(../images/footer-links-bg-i.png) center bottom no-repeat;
    padding: 40px 50px 10px 50px;
}

.footer-logo {
    float: left;
    margin-top: -15px;
}

.footer-logo a {
    display: block;
    background: url(../images/footer-logo.html) no-repeat;
    width: 208px;
    height: 83px;
}

.footer-s {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.footer-s span {
    width: 150px;
    margin-left: 60px;
    display: block;
    margin-bottom: 20px;
}

.footer-s a {
    color: #45505b;
    font-size: 14px;
    text-decoration: none;
    text-align: left;
    position: relative;
}

.footer-s a:before {
    content: "";
    background: url(../images/nav.png) -5px 0 no-repeat;
    height: 8px;
    width: 5px;
    margin-right: 15px;
    position: absolute;
    left: -14px;
    top: 5px;
    opacity: 0.1;
}

.footer-s a:hover {
    color: #fff;
}

.footer-s a:hover:before {
    opacity: 1;
}

.footer-nav {
    display: flex;
    padding: 50px 15px 50px 45px;
    border-bottom: 1px dotted #1d3750;
}

.soc-links {
    padding-top: 8px;
}

.soc-links a {
    display: inline-block;
    height: 16px;
    margin-right: 15px;
}

.soc-links .facebook {
    background: url(../images/soc-sprite.png) 0 0 no-repeat;
    width: 7px;
}

.soc-links .inst {
    background: url(../images/soc-sprite.png) -24px 0 no-repeat;
    width: 17px;
}

.soc-links .twitter {
    background: url(../images/soc-sprite.png) -58px 0 no-repeat;
    width: 17px;
}

.banner {
    margin: 0 30px 0 50px;
}

.f-menu {
    margin-left: 122px;
    padding-top: 8px;
}

.f-menu li {
    display: inline-block;
    border-right: 1px solid #3e4953;
    padding: 0 35px 0 34px;
}

.f-menu li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #95b2bc;
    font-size: 12px;
}

.f-menu li a:hover {
    color: #74c564;
    text-shadow: 0 0 20px #74c564;
}

.f-menu li:last-child {
    border-right: none;
}

.footer-info {
    padding: 35px 45px 0 45px;
    font-size: 11px;
    color: #45505b;
}

.footer-info .terms {
    float: right;
}

#toTop {
    width: 40px;
    height: 40px;
    background: url(../images/top-button.png) no-repeat;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: 10px;
    cursor: pointer;
}

.modalx-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    cursor: pointer;
    overflow: auto;
    visibility: hidden;
    -webkit-transition: background 0.25s linear;
    -moz-transition: background 0.25s linear;
    transition: background 0.25s linear;
}

#video_modal, #video_modal_1, #video_modal_2 {
    width: 1000px;
    height: 540px;
    background: url(../images/popup_bg.html) no-repeat;
    box-shadow: 0 10px 63px 0 rgba(0, 0, 0, 0.5);
}

#login_modal,
#reg_modal {
    width: 450px;
    background: url(../images/sidebar-bg.png);
    box-shadow: 0 10px 63px 0 rgba(0, 0, 0, 0.5);
}

.modal_window {
    z-index: 9999;
    position: relative;
    cursor: auto;
    margin: 0 auto;
    display: none;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    transition: all 0.25s linear;
    margin-bottom: 20px;
    transform: scale(0.4);
}

.close-r {
    display: block;
    position: absolute;
    margin-top: -21px;
    width: 70px;
    height: 70px;
    background: url(../images/close_popup.png) no-repeat;
}

#video_modal .close-r, #video_modal_1 .close-r, #video_modal_2 .close-r {
    margin-left: 970px;
}

#login_modal .close-r,
#reg_modal .close-r {
    margin-left: 417px;
    margin-top: -27px;
}

.modal_window iframe {
    border: 0;
}

/* Popup
-----------------------------------------------------------------------------*/
.popup-block {
    padding: 40px 50px 20px 50px;
    border-top: 1px solid #74c564;
    color: #7a939d;
}

.reg-title {
    font-weight: bold;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid #153348;
}

.reg-title span {
    float: right;
    font-weight: normal;
    font-size: 11px;
    color: #7a939d;
    margin-top: 5px;
}

.reg-title span a {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.connect-f {
    margin: 0 0 15px 0;
}

.connect-f button {
    background: url(../images/connect-f.jpg) no-repeat;
    width: 349px;
    height: 40px;
    margin-left: 0;
    border: none;
    box-shadow: 0 12px 31px -12px rgba(0, 0, 0, 0.5);
}

.or {
    text-transform: uppercase;
    text-align: center;
    position: relative;
    margin-bottom: 15px;
}

.or span:before {
    content: "";
    border-top: 1px dotted #153348;
    height: 1px;
    width: 41%;
    position: absolute;
    left: 0;
    bottom: 4px;
}

.or span:after {
    content: "";
    border-top: 1px dotted #153348;
    height: 1px;
    width: 41%;
    position: absolute;
    right: 0;
    bottom: 4px;
}

.reg-form p {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
}

.reg-form input {
    margin-bottom: 25px;
    width: 310px;
    background: rgba(9, 9, 11, 0.6);
}

.pass {
    width: 156px;
    display: inline-block;
}

.pass input {
    width: 126px;
}

.first-pass {
    margin-right: 25px;
}

.license-l {
    margin-top: 4px;
    padding-bottom: 20px;
    text-transform: none;
    border-bottom: 1px dotted #153348;
}

.license-l a {
    color: #fff;
}

.license-l a:hover {
    text-decoration: none;
}

.license-l div {
    margin-bottom: 10px;
}

.license input[type=radio],
input[type=checkbox] {
    display: none;
}

.license label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    color: #7a939d;
    font-size: 14px;
}

.license input[type=checkbox]:checked + label {
    color: #74c564;
}

.license input[type=checkbox]:checked + label:before {
    content: "";
    text-align: center;
    width: 14px;
    height: 14px;
    background: #152b3e url(../images/checkboox.png) center no-repeat;
    border: 1px solid #193a51;
    border-radius: 1px;
}

.license label:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    border: 1px solid #193a51;
    border-radius: 1px;
}

.reg-form {
    padding-bottom: 25px;
}

.reg-buttons {
    margin-top: 25px;
}

.reg-buttons a {
    cursor: pointer;
}

.reg-buttons button:after {
    display: none;
}

.but {
    background: none;
    border: 1px solid #153348;
    padding: 10px 25px;
    border-radius: 3px;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    display: inline-block;
    height: auto;
    line-height: 100%;
    box-shadow: none;
    font-weight: normal;
}

.sign,
.can {
    float: right;
}

.cont {
    margin-right: 7px;
}

.title-b {
    margin-bottom: 25px;
}

.forgot {
    float: right;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #292845
}

.table-striped > tbody > tr a {
    font-weight: 300;
}

.table-striped > tbody > tr > td,
.table-striped > tbody > tr > th,
.table-striped > tfoot > tr > td,
.table-striped > tfoot > tr > th,
.table-striped > thead > tr > td,
.table-striped > thead > tr > th {
    border-color: #343257 !important;
}

.table-hover > tbody > tr:hover {
    background-color: #292845
}

.table-hover > tbody > tr a {
    font-weight: 300;
}

.table-hover > tbody > tr > td,
.table-hover > tbody > tr > th,
.table-hover > tfoot > tr > td,
.table-hover > tfoot > tr > th,
.table-hover > thead > tr > td,
.table-hover > thead > tr > th {
    border-color: #343257 !important;
}

.fsize-0 {
    font-size: 0;
}

.fsize-12 {
    font-size: 12px;
}

.fsize-14 {
    font-size: 14px;
}

.fsize-16 {
    font-size: 16px;
}

.fsize-18 {
    font-size: 18px;
}

.fsize-20 {
    font-size: 20px;
}

.fsize-24 {
    font-size: 24px;
}

.fsize-28 {
    font-size: 28px;
}

.fsize-30 {
    font-size: 30px;
}

.fsize-32 {
    font-size: 32px;
}

.fsize-40 {
    font-size: 40px;
}

.fsize-48 {
    font-size: 48px;
}

.fsize-58 {
    font-size: 58px;
}

.fsize-80 {
    font-size: 80px;
}

.fweight-300 {
    font-weight: 300;
}

.fweight-500 {
    font-weight: 500;
}

.fweight-700 {
    font-weight: 700;
}

.valign-top {
    vertical-align: top;
}

.valign-middle {
    vertical-align: middle;
}

.valign-bottom {
    vertical-align: bottom;
}

.width-100 {
    width: 100%;
}

.height-600 {
    height: 600px;
}

.lheight-normal {
    line-height: normal;
}

.lheight-26 {
    line-height: 26px;
}

.lheight-28 {
    line-height: 28px;
}

.lheight-30 {
    line-height: 30px;
}

.lheight-32 {
    line-height: 32px;
}

.lheight-47 {
    line-height: 47px;
}

.p30 {
    padding: 30px;
}

.p40 {
    padding: 40px;
}

.p60 {
    padding: 60px;
}

.pl20 {
    padding-left: 20px;
}

.plr40 {
    padding-left: 40px;
    padding-right: 40px;
}

.plr50 {
    padding-left: 50px;
    padding-right: 50px;
}

.plr60 {
    padding-left: 60px;
    padding-right: 60px;
}

.plr100 {
    padding-left: 100px;
    padding-right: 100px;
}

.pl0 {
    padding-left: 0;
}

.pl100 {
    padding-left: 100px;
}

.pr0 {
    padding-right: 0;
}

.ptb19 {
    padding-top: 19px;
    padding-bottom: 19px;
}

.ptb20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.ptb30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.ptb50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.ptb90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.ptb100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.ptb120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.ptb150 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.ptb170 {
    padding-top: 170px;
    padding-bottom: 170px;
}

.pt10 {
    padding-top: 10px;
}

.pt25 {
    padding-top: 25px;
}

.pt85 {
    padding-top: 85px;
}

.pt90 {
    padding-top: 90px;
}

.pt150 {
    padding-top: 150px;
}

.pt170 {
    padding-top: 170px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb60 {
    padding-bottom: 60px;
}

.pb85 {
    padding-bottom: 85px;
}

.pb170 {
    padding-bottom: 170px;
}

.m0 {
    margin: 0;
}

.mlr-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml5 {
    margin-left: 5px;
}

.ml15 {
    margin-left: 15px;
}

.ml25 {
    margin-left: 25px;
}

.ml30 {
    margin-left: 30px;
}

.mt-80 {
    margin-top: -80px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mt25 {
    margin-top: 25px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mt80 {
    margin-top: 80px;
}

.mt90 {
    margin-top: 90px;
}

.mt100 {
    margin-top: 100px;
}

.mt120 {
    margin-top: 120px;
}

.mt150 {
    margin-top: 150px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb110 {
    margin-bottom: 110px;
}

.pointer {
    cursor: pointer;
}

.form-control:focus, .btn:focus {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none
}

.alert .message {
    color: #fff !important;
}

.alert p {
    margin: 0 !important;
    color: #fff !important;
    font-size: 14px;
}

.text-center {
    text-align: center !important;
}

.text-danger {
    color: #dd4b39 !important;
}

.alert .icon {
    margin-right: 10px
}

.alert .close {
    color: #000;
    opacity: .2;
    filter: alpha(opacity=20)
}

.alert .close:hover {
    opacity: .5;
    filter: alpha(opacity=50)
}

.alert a {
    color: #fff !important;
    text-decoration: underline
}

.alert-success {
    border-color: #00a65a
}

.alert-danger, .alert-error {
    border-color: #E5343D
}

.alert-warning {
    border-color: #e08e0b
}

.alert-info {
    border-color: #3cf
}

.alert > .alert-link {
    color: #fff
}

.alert-danger, .alert-error, .alert-info, .alert-success, .alert-warning, .bg-aqua, .bg-aqua-active, .bg-black, .bg-black-active, .bg-blue, .bg-blue-active, .bg-fuchsia, .bg-fuchsia-active, .bg-green, .bg-green-active, .bg-light-blue, .bg-light-blue-active, .bg-lime, .bg-lime-active, .bg-maroon, .bg-maroon-active, .bg-navy, .bg-navy-active, .bg-olive, .bg-olive-active, .bg-orange, .bg-orange-active, .bg-purple, .bg-purple-active, .bg-red, .bg-red-active, .bg-teal, .bg-teal-active, .bg-yellow, .bg-yellow-active, .callout.callout-danger, .callout.callout-info, .callout.callout-success, .callout.callout-warning, .label-danger, .label-info, .label-primary, .label-success, .label-warning, .modal-danger .modal-body, .modal-danger .modal-footer, .modal-danger .modal-header, .modal-info .modal-body, .modal-info .modal-footer, .modal-info .modal-header, .modal-primary .modal-body, .modal-primary .modal-footer, .modal-primary .modal-header, .modal-success .modal-body, .modal-success .modal-footer, .modal-success .modal-header, .modal-warning .modal-body, .modal-warning .modal-footer, .modal-warning .modal-header {
    color: #fff !important
}

.alert-danger, .alert-error, .bg-red, .callout.callout-danger, .label-danger, .modal-danger .modal-body {
    background-color: #dd4b39 !important
}

.alert-warning, .bg-yellow, .callout.callout-warning, .label-warning, .modal-warning .modal-body {
    background-color: #f39c12 !important
}

.alert-info, .bg-aqua, .callout.callout-info, .label-info, .modal-info .modal-body {
    background-color: #00c0ef !important
}

.alert-success, .bg-green, .callout.callout-success, .label-success, .modal-success .modal-body {
    background-color: #00a65a !important
}

hr {
    border-color: #153348;
}

input.form-control, select.form-control {
    border: none;
    border-radius: 4px;
    background: #0b1c2b;
    color: #c2d4f8;
}

input.form-control:focus {
    border: none !important;
    outline: none !important;
}

select.form-control {
    padding: 10px;
}

input.form-control::-webkit-input-placeholder,
select.form-control::-webkit-input-placeholder {
    color: #c2d4f8;
}

input.form-control::-moz-placeholder,
select.form-control::-moz-placeholder {
    color: #c2d4f8;
}

input.form-control:-moz-placeholder,
select.form-control:-moz-placeholder {
    color: #c2d4f8;
}

input.form-control:-ms-input-placeholder,
select.form-control:-ms-input-placeholder {
    color: #c2d4f8;
}

textarea.form-control {
    border: none;
    border-radius: 10px;
    background: #0b1c2b;
    resize: none;
    text-transform: uppercase;
    font-style: italic;
    font-size: 14px;
    outline: none;
    font-weight: 400;
    /* Firefox 19+ */
    /* Firefox 18- */
}

textarea.form-control::-webkit-input-placeholder {
    color: #c2d4f8;
}

textarea.form-control::-moz-placeholder {
    color: #c2d4f8;
}

textarea.form-control:-moz-placeholder {
    color: #c2d4f8;
}

textarea.form-control:-ms-input-placeholder {
    color: #c2d4f8;
}

button.search-button {
    padding: 11px 15px !important;
}

.form-group .input-group-addon {
    background: #323154;
    color: #c2d4f8;
    border: none;
}

.floatL {
    float: left;
}

.floatR {
    float: right;
}

.refreshIconCaptcha {
    cursor: pointer;
    margin: 8px 0 0;
    float: right;
}

.ui-datepicker .ui-datepicker-title select {
    color: #000;
}

.cursor {
    cursor: pointer;
}

.pagination a {
    cursor: pointer;
}

.ui-datepicker {
    z-index: 9999 !important;
}

.reg-page {
    background: none repeat scroll 0 0 #FEFEFE;
    border: 1px solid #EEEEEE;
    box-shadow: 0 0 3px #EEEEEE;
    color: #555555;
    padding: 30px;
}

.reg-header {
    border-bottom: 1px solid #EEEEEE;
    color: #555555;
    margin-bottom: 35px;
    text-align: center;
}

.reg-header h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.reg-page label {
    color: #777777;
}

img {
    border: 0 none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.underline {
    text-decoration: underline;
}

.background-black {
    border-color: #000;
}

.margin-right-5 {
    margin-right: 5px;
}

.margin-right-10 {
    margin-right: 10px;
}

.margin-right-15 {
    margin-right: 15px;
}

.margin-right-20 {
    margin-right: 20px;
}

.margin-right-25 {
    margin-right: 25px;
}

.margin-right-30 {
    margin-right: 30px;
}

.margin-left-5 {
    margin-left: 5px;
}

.margin-left-10 {
    margin-left: 10px;
}

.margin-left-15 {
    margin-left: 15px;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-left-25 {
    margin-left: 25px;
}

.margin-left-30 {
    margin-left: 30px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-100 {
    margin-top: 100px;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.panel p {
    margin: 0;
    padding: 0;
}

.logo, .footer-logo {
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.logo img {
    max-height: 100px;
    max-width: 220px;
    width: auto;
    height: auto;
}

.footer-logo img {
    max-height: 80px;
    max-width: 240px;
    width: auto;
    height: auto;
}

.logo img:hover, .footer-logo img:hover {
    opacity: 0.85;
    filter: alpha(opacity=85);
}

.logo span, .footer-logo span {
    color: #afafaf;
    font-weight: 300;
    font-size: 28px;
}

.logo span:hover, .footer-logo span:hover {
    opacity: 0.85;
    filter: alpha(opacity=85);
}

.underline {
    text-decoration: underline;
}

.margin-right-5 {
    margin-right: 5px;
}

.margin-right-10 {
    margin-right: 10px;
}

.margin-right-15 {
    margin-right: 15px;
}

.margin-right-20 {
    margin-right: 20px;
}

.margin-right-25 {
    margin-right: 25px;
}

.margin-right-30 {
    margin-right: 30px;
}

.margin-left-5 {
    margin-left: 5px;
}

.margin-left-10 {
    margin-left: 10px;
}

.margin-left-15 {
    margin-left: 15px;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-left-25 {
    margin-left: 25px;
}

.margin-left-30 {
    margin-left: 30px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-100 {
    margin-top: 100px;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

/* progress bar */

.progress {
    overflow: visible;
    height: 18px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.progress-bar {
    float: left;
    height: 100%;
    font-size: 12px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.06) !important;
    text-align: center;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
    position: relative;
}

.progress-bar-span {
    opacity: 1;
    position: absolute;
    top: -5px;
    background: #D92B4C;
    padding: 3px 10px;
    color: #FFF;
    border-radius: 0;
    right: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.progressbar-text {
    text-align: center;
    margin-bottom: 5px;
    font-size: 14px;
}

.loaderHorizontal {
    background: url('../images/loader_horizontal.gif') no-repeat;
    height: 11px;
    width: 43px;
    margin: 20px auto 0;
}

#ranking .loaderHorizontal {
    margin: 5px auto !important;
}

#search .loaderHorizontal {
    margin: 5px auto !important;
}

.trophyFirst {
    color: #F1A90E
}

.trophySecond {
    color: #b7b6b6
}

.trophyThird {
    color: #a74c39
}

.table {
    font-size: 16px;
}

.table a {
    text-decoration: none;
}

.table {
    text-align: center;
}

.table th {
    text-align: center;
}

.widget-user ul li a {
    padding: 8px 0;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #c2d4f8;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.widget-user ul li:first-child a {
    padding-top: 0;
}

.widget-user ul li a:hover {
    padding-left: 8px;
}

/***** Modal *****/

.modal-dialog {
    width: 400px;
    top: 80px;
}

.modal-content {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 0;
    text-align: left;
}

.modal-body {
    padding: 25px 25px 30px 25px;
    text-align: left;
    -moz-border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}

.modal-header {
    border-color: #292845;
}

/* support Font Awesome icons in form-control */
.form-control-feedback.fa {
    line-height: 34px;
}

/* Register Form Block
---------------------------------- */
.form-reg-block {
    width: 465px;
    padding: 0 15px 15px;
    margin-bottom: 20px;
}

.form-reg-block form {
    margin: 0;
}

.form-reg-block .form-group label.control-label {
    font-size: 14px;
}

.form-reg-block ul {
    padding-left: 0;
    list-style-position: inside;
}

.form-reg-block hr {
    margin-top: 10px;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .form-reg-block {
        width: 90%;
    }
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
}

.list-inline > li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}

.nav-tabs {
    overflow: hidden;
    border-bottom: 2px solid #153348;
    margin: 0;
}

.nav-tabs li {
    float: left;
    margin: 0;
    background-color: #153348;
    cursor: pointer;
}

.nav-tabs li.ui-tabs-active {
    background-color: #112839;
}

.nav-tabs li:not(:last-of-type) {
    margin-right: 2px;
}

.nav-tabs li a {
    display: block;
    color: #fff;
    padding: 14px 16px;
    border: none;
    outline: none;
    transition: 0.3s;
    font-size: 17px;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: " ";
}

.clearfix:after {
    clear: both;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
}

.char-info-list {
    font-size: 15px;
}

.char-info-list a {
    text-decoration: none !important;
}

.master-info {
    text-align: center;
    padding: 20px 10px;
    margin: 5px 0 40px;
    background: #292845;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.13) !important;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.13) !important;
    position: relative;
}

.master-info:before {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    height: 5px;
    content: "";
    width: 100%;
    -webkit-box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.13);
    box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.13);
}

.bg-equipment {
    background: url('../images/equipment/com_bg_tile_d.png') no-repeat !important;
    background-size: 100% 100% !important;
    width: 181px;
    height: 357px;
}

.bg-equipment-avatar {
    background: url('../images/equipment/com_bg_tile_d.png') no-repeat !important;
    background-size: 100% 100% !important;
    width: 181px;
    height: 357px;
}

.slots {
    width: 40px;
    height: 40px;
}

.itemslot {
    float: left;
    width: 40px;
    height: 40px;
    margin: 1px;
    padding: 0 !important;
}

.weapon .itemslot {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 25px;
    background: url('../images/equipment/equip_slot_weapon.png') no-repeat !important;
    background-size: 56px 56px !important;
}

.shield .itemslot {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 25px;
    background: url('../images/equipment/equip_slot_shield.png') no-repeat !important;
    background-size: 56px 56px !important;
}

.head .itemslot {
    background: url('../images/equipment/equip_slot_helm.png') no-repeat !important;
}

.chest .itemslot {
    background: url('../images/equipment/equip_slot_mail.png') no-repeat !important;
}

.shoulder .itemslot {
    background: url('../images/equipment/equip_slot_shoulderguard.png') no-repeat !important;
}

.hands .itemslot {
    background: url('../images/equipment/equip_slot_gauntlet.png') no-repeat !important;
}

.legs .itemslot {
    background: url('../images/equipment/equip_slot_pants.png') no-repeat !important;
}

.foot .itemslot {
    background: url('../images/equipment/equip_slot_boots.png') no-repeat !important;
}

.earring .itemslot {
    background: url('../images/equipment/equip_slot_earring.png') no-repeat !important;
}

.necklace .itemslot {
    background: url('../images/equipment/equip_slot_necklace.png') no-repeat !important;
}

.lring .itemslot {
    background: url('../images/equipment/equip_slot_l_ring.png') no-repeat !important;
}

.rring .itemslot {
    background: url('../images/equipment/equip_slot_r_ring.png') no-repeat !important;
}

.specdress .itemslot {
    background: url('../images/equipment/equip_slot_specialdress.png') no-repeat !important;
    margin-top: 10px !important;
}

.hat .itemslot {
    background: url('../images/equipment/equip_slot_helm.png') no-repeat !important;
}

.dress .itemslot {
    background: url('../images/equipment/equip_slot_cloth.png') no-repeat !important;
}

.attach .itemslot {
    background: url('../images/equipment/equip_slot_pandernt.png') no-repeat !important;
}

.flag .itemslot {
    background: url('../images/equipment/equip_slot_plag.png') no-repeat !important;
}

.spec .itemslot {
    background: url('../images/equipment/equip_slot_extraneous01.png') no-repeat !important;
}

.slots {
    width: 23% !important;
    margin-bottom: 3px !important;
}

.bg-equipment-avatar .slots {
    width: 23% !important;
    margin-bottom: 3px !important;
}

.avatar-margin {
    margin-top: 80px !important;
}

.slots.right {
    float: right;
    clear: right;
    margin-right: 0;
    margin-left: 10%;
}

.slots.left {
    float: left;
    clear: left;
    margin-left: 0;
    margin-right: 10%;
}

.slots.weapon,
.slots.shield {
    width: 31% !important;
    margin-bottom: 40px !important;

}

.image .itemslot .image {
    margin: 3px;
}

.itemslot .image .qinfo {
    font-size: 9px;
    font-weight: lighter;
    font-style: normal;
    text-shadow: 0 -0.5px #000;
    color: #fff;
    padding: 0 0;
    float: left;
}

.move .image.activeItem {
    box-shadow: 0 0 7px 4px gray;
}

.itemslot .image {
    width: 100%;
    height: 100%;
    float: left;
    padding: 0 !important;
    margin: 3px;
}

.itemslot .imageavatar {
    width: 34px !important;
    height: 34px !important;
    float: left;
    margin: 3px;
    padding: 0 !important;
    margin-top: 84px !important;
}

.slots.left .itemslot .imageavatar {
    margin-left: 2px !important;
}

.weapon .itemslot .image {
    width: 100%;
    height: 100%;
    float: left;
    margin: 3px;
    padding: 0 !important;
    margin-top: 11px !important;
    margin-left: 11px !important;
}

.shield .itemslot .image {
    width: 100%;
    height: 100%;
    float: left;
    margin: 3px;
    padding: 0 !important;
    margin-top: 11px !important;
    margin-left: 11px !important;
}

.imageclear {
    margin-top: -2px;
    display: inline-block;
}

.itemInfo {
    color: #fff;
    z-index: 80;
    position: absolute;
    left: 34px;
    top: 3px;
    width: 180px;
    background: rgba(88, 98, 170, 0.85);
    border: 2px solid #303d4d;
    padding: 5px;
    display: none;
    line-height: 18px;
    font-size: 10px;
}

.ui-tooltip {
    position: absolute;
    z-index: 9999;
    max-width: 190px;
    padding: 8px !important;
    background: url('../images/equipment/com_bg_tile_tl.png') no-repeat !important;
    background-size: 100% 100% !important;
    box-shadow: none !important;
    border: none !important;
    -webkit-border-radius: 1px !important;
    -moz-border-radius: 1px !important;
    border-radius: 1px !important;
}

.ui-tooltip-content {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 11px !important;
    line-height: 15px;
    font-weight: lighter;
    font-style: normal;
    text-shadow: 1px 1px #000;
    color: #fff;
}

.equip-suit-slot {
    background: url('../images/equipment/equip_slot_specialdress.png') no-repeat !important;
    width: 40px !important;
    height: 40px !important;
    margin-top: 10px;
    float: right;
    clear: right;
}

.bg-equipment-avatar .equip-suit-slot {
    background: url('../images/equipment/equip_slot_specialdress.png') no-repeat !important;
    width: 40px !important;
    height: 40px !important;
    margin-top: 96px;
    float: right;
    clear: right;
}

.equip-suit-slot .image {
    width: 34px !important;
    height: 34px !important;
    margin-left: 2px !important;
    margin-top: 2px !important;
}

.btn-equip-avatar {
    background: url('../images/equipment/equip_slot_avata_button.png') no-repeat !important;
    width: 40px !important;
    height: 40px !important;
    margin-top: 10px;
    float: left;
    clear: left;
    border: none;
    outline: 0;
}

.btn-equip-avatar:hover {
    background: url('../images/equipment/equip_slot_avata_button_focus.png') no-repeat !important;
}

.btn-equip-avatar:active {
    background: url('../images/equipment/equip_slot_avata_button_press.png') no-repeat !important;
}

.btn-equip-set {
    background: url('../images/equipment/equip_slot_equipment_button.png') no-repeat !important;
    width: 40px !important;
    height: 40px !important;
    margin-top: 96px;
    float: left;
    clear: left;
    border: none;
    outline: 0;
}

.btn-equip-set:hover {
    background: url('../images/equipment/equip_slot_equipment_button_focus.png') no-repeat !important;
}

.btn-equip-set:active {
    background: url('../images/equipment/equip_slot_equipment_button_press.png') no-repeat !important;
}

.btn-rotate-group {
    position: relative;
    left: 12px;
    top: 32px;
    display: inline-block;
}

.bg-equipment-avatar .btn-rotate-group {
    position: relative;
    left: -7px;
    margin-top: 134px;
    display: inline-block;
}

.btn-rotate-left {
    background: url('../images/equipment/equip_rotate_left_button.png') no-repeat !important;
    width: 28px !important;
    height: 16px !important;
    margin-right: -5px;
    margin-left: 5px;
    border: none;
    outline: 0;
}

.btn-rotate-left:hover {
    background: url('../images/equipment/equip_rotate_left_button_focus.png') no-repeat !important;
}

.btn-rotate-left:active {
    background: url('../images/equipment/equip_rotate_left_button_press.png') no-repeat !important;
}

.btn-rotate-right {
    background: url('../images/equipment/equip_rotate_right_button.png') no-repeat !important;
    width: 28px !important;
    height: 16px !important;
    margin-left: -5px;
    border: none;
    outline: 0;
}

.btn-rotate-right:hover {
    background: url('../images/equipment/equip_rotate_right_button_focus.png') no-repeat !important;
}

.btn-rotate-right:active {
    background: url('../images/equipment/equip_rotate_right_button_press.png') no-repeat !important;
}

.btn-rotate-top {
    background: url('../images/equipment/equip_rotate_reset_button.png') no-repeat !important;
    width: 16px !important;
    height: 16px !important;
    border: none;
    outline: 0;
}

.btn-rotate-top:hover {
    background: url('../images/equipment/equip_rotate_reset_button_focus.png') no-repeat !important;
}

.btn-rotate-top:active {
    background: url('../images/equipment/equip_rotate_reset_button_press.png') no-repeat !important;
}

div.image span.plus {
    display: block;
    width: 32px;
    height: 32px;
    background: url(../images/itemplus.png) left top;
    -webkit-animation: play 1.8s steps(32) infinite;
    -moz-animation: play 1.8s steps(32) infinite;
    -ms-animation: play 1.8s steps(32) infinite;
    -o-animation: play 1.8s steps(32) infinite;
    animation: play 1.8s steps(32) infinite;
}

@-webkit-keyframes play {
    100% {
        background-position: -1024px;
    }
}

@-moz-keyframes play {
    100% {
        background-position: -1024px;
    }
}

@-ms-keyframes play {
    100% {
        background-position: -1024px;
    }
}

@-o-keyframes play {
    100% {
        background-position: -1024px;
    }
}

@keyframes play {
    100% {
        background-position: -1024px;
    }
}

.ranking-nav-section-menu .ranking-nav,
.ranking-nav-section-menu.ranking-nav {
    padding: 2em 0;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    list-style: none;
}

.ranking-nav-section-menu .ranking-nav .ranking-nav-header,
.ranking-nav-section-menu.ranking-nav .ranking-nav-header {
    padding-left: 5px;
    margin: 2px 0;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    display: block;
}

.ranking-nav-section-menu .ranking-nav .ranking-nav-link,
.ranking-nav-section-menu.ranking-nav .ranking-nav-link {
    color: #c2d4f8;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #193d56;
    margin: -1px -1px 0 3px;
    background: #153348;
    text-shadow: none;
    padding: 8px 30px 8px 15px;
    position: relative;
    display: block;
    text-decoration: none;
}

.ranking-nav-section-menu .ranking-nav .ranking-nav-link i,
.ranking-nav-section-menu.ranking-nav .ranking-nav-link i {
    font-size: 22px;
    position: absolute;
    top: 50%;
    margin-top: -11px;
    right: 25px;
    color: #1e1d32;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.ranking-nav-section-menu .ranking-nav .ranking-nav-link:hover i,
.ranking-nav-section-menu.ranking-nav .ranking-nav-link:hover i {
    color: #292845 !important;
}

.ranking-nav-section-menu .ranking-nav .ranking-nav-link:hover,
.ranking-nav-section-menu .ranking-nav .show.ranking-nav-link,
.ranking-nav-section-menu.ranking-nav .ranking-nav-link:hover,
.ranking-nav-section-menu.ranking-nav .show.ranking-nav-link {
    background: #07131f;
}

.ranking-nav-section-menu .ranking-nav .ranking-nav-link.active,
.ranking-nav-section-menu .ranking-nav .ranking-nav-link.active:hover,
.ranking-nav-section-menu .ranking-nav .active .ranking-nav-link,
.ranking-nav-section-menu .ranking-nav .active .ranking-nav-link:hover,
.ranking-nav-section-menu.ranking-nav .ranking-nav-link.active,
.ranking-nav-section-menu.ranking-nav .ranking-nav-link.active:hover,
.ranking-nav-section-menu.ranking-nav .active .ranking-nav-link,
.ranking-nav-section-menu.ranking-nav .active .ranking-nav-link:hover {
    border-left: 4px solid #296b94;
    background: #07131f;
}

.ranking-nav-section-menu.ranking-nav-section-menu-right .ranking-nav .ranking-nav-link i,
.ranking-nav-section-menu.ranking-nav-section-menu-right.ranking-nav .ranking-nav-link i {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.ranking-nav-section-menu .ranking-nav .ranking-nav-section-menu,
.ranking-nav-section-menu.ranking-nav .ranking-nav-section-menu {
    padding: 0;
    margin-left: 10px;
}

.ranking-nav-section-menu .ranking-nav .ranking-nav-section-menu .ranking-nav-link,
.ranking-nav-section-menu.ranking-nav .ranking-nav-section-menu .ranking-nav-link {
    font-weight: 400;
    font-size: 90%;
    padding: 6px 30px 5px 10px;
}

.ranking-nav-section-menu .ranking-nav-section-menu-right.ranking-nav .ranking-nav-section-menu,
.ranking-nav-section-menu.ranking-nav-section-menu-right.ranking-nav .ranking-nav-section-menu {
    margin-left: 0;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .ranking-nav-section-menu .ranking-nav,
    .ranking-nav-section-menu.ranking-nav {
        border-right: 1px solid #193d56;
    }

    .ranking-nav-section-menu .ranking-nav .ranking-nav-link i,
    .ranking-nav-section-menu.ranking-nav .ranking-nav-link i {
        right: 10px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .ranking-nav-section-menu .ranking-nav .ranking-nav-link.active,
    .ranking-nav-section-menu .ranking-nav .ranking-nav-link.active:hover,
    .ranking-nav-section-menu .ranking-nav .active .ranking-nav-link,
    .ranking-nav-section-menu .ranking-nav .active .ranking-nav-link:hover,
    .ranking-nav-section-menu.ranking-nav .ranking-nav-link.active,
    .ranking-nav-section-menu.ranking-nav .ranking-nav-link.active:hover,
    .ranking-nav-section-menu.ranking-nav .active .ranking-nav-link,
    .ranking-nav-section-menu.ranking-nav .active .ranking-nav-link:hover {
        border-right-color: #07131f;
    }

    .ranking-nav-section-menu .ranking-nav .show.ranking-nav-link i,
    .ranking-nav-section-menu.ranking-nav .show.ranking-nav-link i {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        color: silver;
    }

    .ranking-nav-section-menu.ranking-nav-section-menu-right .ranking-nav,
    .ranking-nav-section-menu.ranking-nav-section-menu-right.ranking-nav {
        border-right: none;
        border-left: 1px solid #193d56;
    }

    .ranking-nav-section-menu.ranking-nav-section-menu-right .ranking-nav .ranking-nav-header,
    .ranking-nav-section-menu.ranking-nav-section-menu-right.ranking-nav .ranking-nav-header {
        text-align: right;
        padding-right: 5px;
    }

    .ranking-nav-section-menu.ranking-nav-section-menu-right .ranking-nav .ranking-nav-link i,
    .ranking-nav-section-menu.ranking-nav-section-menu-right.ranking-nav .ranking-nav-link i {
        right: auto;
        left: 10px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .ranking-nav-section-menu.ranking-nav-section-menu-right .ranking-nav .ranking-nav-link,
    .ranking-nav-section-menu.ranking-nav-section-menu-right.ranking-nav .ranking-nav-link {
        margin-left: -1px;
        margin-right: 0;
        padding-left: 30px;
        padding-right: 15px;
    }

    .ranking-nav-section-menu.ranking-nav-section-menu-right .ranking-nav .ranking-nav-link.active,
    .ranking-nav-section-menu.ranking-nav-section-menu-right .ranking-nav .ranking-nav-link.active:hover,
    .ranking-nav-section-menu.ranking-nav-section-menu-right .ranking-nav .active .ranking-nav-link,
    .ranking-nav-section-menu.ranking-nav-section-menu-right .ranking-nav .active .ranking-nav-link:hover,
    .ranking-nav-section-menu.ranking-nav-section-menu-right.ranking-nav .ranking-nav-link.active,
    .ranking-nav-section-menu.ranking-nav-section-menu-right.ranking-nav .ranking-nav-link.active:hover,
    .ranking-nav-section-menu.ranking-nav-section-menu-right.ranking-nav .active .ranking-nav-link,
    .ranking-nav-section-menu.ranking-nav-section-menu-right.ranking-nav .active .ranking-nav-link:hover {
        border-left-color: white;
        border-right: 4px solid #55A79A;
    }

    .ranking-nav .ranking-nav-section-menu .ranking-nav-link,
    .ranking-nav .ranking-nav-section-menu .ranking-nav-link {
        margin-right: -2px;
    }

    .ranking-nav-section-menu-right.ranking-nav .ranking-nav-section-menu .ranking-nav-link,
    .ranking-nav-section-menu-right.ranking-nav .ranking-nav-section-menu .ranking-nav-link {
        margin-right: 0;
        margin-left: -2px;
    }
}

ul.widget-categories {
    font-size: 15px;
}

ul.widget-categories li a {
    padding: 8px 0;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #0f406a;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    font-size: 15px;
}

ul.widget-categories li:first-child a {
    padding-top: 0;
}

ul.widget-categories li a:hover {
    padding-left: 8px;
}

.fortress-wrapper .fortress {
    margin-bottom: 25px;
    padding-left: 10px;
}

.fortress-wrapper .fortress:last-child {
    margin-bottom: 0;
}

.fortress-wrapper .fortress a:hover {
    color: #FFFFFF;
}

.fortress-wrapper .fortress h3 {
    float: left;
    clear: both;
    margin: -4px 0 0;
    padding: 0 10px 5px 10px;
    font-size: 15px;
    font-weight: bold;
}

.fortress-wrapper .fortress .guildname {
    float: left;
    clear: both;
    margin-left: 10px;
}

.fortress-wrapper .fortress .guildtax {
    min-height: 30px;
    text-align: right;
}

.fortress-wrapper #jangan_fortress {
    background: url('../images/fort-jangan.png') no-repeat 0 0;
}

.fortress-wrapper #hotan_fortress {
    background: url('../images/fort-hotan.png') no-repeat 0 0;
}

.fortress-wrapper #bandit_fortress {
    background: url('../images/fort-bandit.png') no-repeat 0 0;
}

.fortress-wrapper #constantinople_fortress {
    background: url('../images/fort-constantinople.png') no-repeat 0 0;
}

.char-info-menu {
    margin: 0 auto;
    display: block;
    color: #370F0F;
    background: #725445;
    width: 80%;
    border-radius: 4px;
    overflow: hidden;
    font-size: 15px;
}

.char-info-menu a {
    display: block
}

.char-info-menu ul {
    height: 100%;
    float: left;
    width: 100%
}

.char-info-menu li {
    float: left;
    width: 34%;
    height: 100%;
    text-align: center;
    line-height: 30px
}

.char-info-menu li:last-child {
    width: 32%;
}

.char-info-menu li:hover {
    background: #563E32;
}

ul.guild-features {
    border-radius: 4px;
    background: transparent;
}

ul.guild-features > li {
    background: url(../images/bullet2.gif) no-repeat 3px 8px;
    padding: 4px 0 5px 20px;
    text-shadow: 0 1px 2px #000;
    color: #ddd;
    font-size: 15px;
    display: block;
}

ul.guild-features > li > b {
    color: #24698f;
    display: block;
}