/*
 * main.css
 * "Galatasaray"
 * HTML,CSS,Design Level JS Code developed by :
 * Author:Harsh Acharya,@acharyaharsh
 */

@import url("fonts.css");
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,800,700,600,300);

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

body {
    font-size: 1em;
    line-height: 1.4;
    text-rendering: optimizeLegibility;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    padding-top: 29px;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
    vertical-align: middle; /* min-width:100%;
	height:auto; */
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

a:active, a:selected, a:visited {
    border: none;
    outline: none;
}

a:hover{
    color:#ffb400;
}
/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Custom Select Box
   ========================================================================== */
.s-hidden {
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font: normal 11px/22px Arial, Sans-Serif;
    color: black;
    border: 1px solid #ccc;
}

.styledSelect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    padding: 0 10px;
    font-weight: bold;
}

    .styledSelect:after {
        content: "";
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-color: black transparent transparent transparent;
        position: absolute;
        top: 9px;
        right: 6px;
    }

    .styledSelect:active,
    .styledSelect.active {
        background-color: #eee;
    }

.options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    border: 1px solid #ccc;
    background-color: white;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

    .options li {
        padding: 0 6px;
        margin: 0 0;
        padding: 0 10px;
    }

        .options li:hover {
            background-color: #39f;
            color: white;
        }

/* ==========================================================================
   Custom Select Box
   ========================================================================== */

/*	wrapper divs */
.custom-checkbox, .custom-radio {
    position: relative;
}

    /* input, label positioning */
    .custom-checkbox input,
    .custom-radio input {
        position: absolute;
        left: 2px;
        top: 3px;
        margin: 0;
        z-index: 0;
        display: none;
    }

    .custom-checkbox label,
    .custom-radio label {
        display: block;
        position: relative;
        z-index: 1;
        font-size: 1.3em;
        padding-right: 1em;
        line-height: 1;
        /* padding: .5em 0 .5em 30px; */
        padding: 5px 50px 5px 0;
        margin: 0 0 .3em;
        cursor: pointer;
    }

    /* states */
    .custom-checkbox label { /* background: url(../img/checkbox_img.png) no-repeat; */
        background: url(../img/unchecked.png) no-repeat;
    }

    .custom-radio label {
        background: url(../img/radiobutton.gif) no-repeat;
    }

    .custom-checkbox label, .custom-radio label {
        background-position: -10px -14px;
    }

    .custom-checkbox label {
        background-position: 100% 0px;
    }

        .custom-checkbox label.checked,
        .custom-radio label.checked {
            background: url(../img/checked.png) no-repeat;
            background-position: 100% 0px;
        }

        .custom-checkbox label.focus,
        .custom-radio label.focus {
            outline: 1px dotted #ccc;
        }

/* ==========================================================================
   ColorBox Core Style:
   The following CSS is consistent between example themes and should not be altered.
   ========================================================================== */
#colorbox,
#cboxOverlay,
#cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    outline: none;
}

#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
    clear: left;
}

#cboxContent {
    position: relative;
}

#cboxLoadedContent {
    overflow: auto;
}

#cboxTitle {
    margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
    cursor: pointer;
}

.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: none;
}

.cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
    box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
    background: #000;
}

#colorbox {
}

#cboxContent {
    margin-top: 20px;
}

.cboxIframe {
    background: #fff;
}

#cboxError {
    padding: 50px;
    border: 1px solid #ccc;
}

#cboxLoadedContent {
    border: 5px solid #000;
    background: #fff;
}

#cboxTitle {
    position: absolute;
    top: -20px;
    left: 0;
    color: #ccc;
}

#cboxCurrent {
    position: absolute;
    top: -20px;
    right: 0px;
    color: #ccc;
}

#cboxSlideshow {
    position: absolute;
    top: -20px;
    right: 90px;
    color: #fff;
}

#cboxPrevious {
    position: absolute;
    top: 50%;
    left: 5px;
    margin-top: -32px;
    background: url(images/controls.png) no-repeat top left;
    width: 28px;
    height: 65px;
    text-indent: -9999px;
    border: none;
}

    #cboxPrevious:hover {
        background-position: bottom left;
    }

#cboxNext {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -32px;
    background: url(images/controls.png) no-repeat top right;
    width: 28px;
    height: 65px;
    text-indent: -9999px;
    border: none;
}

    #cboxNext:hover {
        background-position: bottom right;
    }

#cboxLoadingOverlay {
    background: #000;
}

#cboxLoadingGraphic {
    background: url(images/loading.gif) no-repeat center center;
}

#cboxClose {
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    background: url(images/controls.png) no-repeat top center;
    width: 38px;
    height: 19px;
    text-indent: -9999px;
    border: none;
}

    #cboxClose:hover {
        background-position: bottom center;
    }

/* ==========================================================================
   Jcarousel css
   ========================================================================== */

.jcarousel-skin-tango .jcarousel-container {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #F0F6F9;
    border: 1px solid #346F97;
}

.jcarousel-skin-tango .jcarousel-direction-rtl {
    direction: rtl;
}

.jcarousel-skin-tango .jcarousel-container-horizontal {
    width: 245px;
    padding: 20px 40px;
}

.jcarousel-skin-tango .jcarousel-container-vertical {
    width: 75px;
    height: 245px;
    padding: 40px 20px;
}

.jcarousel-skin-tango .jcarousel-clip {
    overflow: hidden;
}

.jcarousel-skin-tango .jcarousel-clip-horizontal {
    width: 245px;
    height: 75px;
}

.jcarousel-skin-tango .jcarousel-clip-vertical {
    width: 75px;
    height: 245px;
}

.jcarousel-skin-tango .jcarousel-item {
    width: 75px;
    height: 75px;
}

.jcarousel-skin-tango .jcarousel-item-horizontal {
    margin-left: 0;
    margin-right: 10px;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-item-horizontal {
    margin-left: 10px;
    margin-right: 0;
}

.jcarousel-skin-tango .jcarousel-item-vertical {
    margin-bottom: 10px;
}

.jcarousel-skin-tango .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-tango .jcarousel-next-horizontal {
    position: absolute;
    top: 43px;
    right: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(next-horizontal.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-next-horizontal {
    left: 5px;
    right: auto;
    background-image: url(prev-horizontal.png);
}

.jcarousel-skin-tango .jcarousel-next-horizontal:hover,
.jcarousel-skin-tango .jcarousel-next-horizontal:focus {
    background-position: -32px 0;
}

.jcarousel-skin-tango .jcarousel-next-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-skin-tango .jcarousel-next-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:focus,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal {
    position: absolute;
    top: 43px;
    left: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(prev-horizontal.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-prev-horizontal {
    left: auto;
    right: 5px;
    background-image: url(next-horizontal.png);
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:hover,
.jcarousel-skin-tango .jcarousel-prev-horizontal:focus {
    background-position: -32px 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:focus,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

/**
 *  Vertical Buttons
 */
.jcarousel-skin-tango .jcarousel-next-vertical {
    position: absolute;
    bottom: 5px;
    left: 43px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(next-vertical.png) no-repeat 0 0;
}

    .jcarousel-skin-tango .jcarousel-next-vertical:hover,
    .jcarousel-skin-tango .jcarousel-next-vertical:focus {
        background-position: 0 -32px;
    }

    .jcarousel-skin-tango .jcarousel-next-vertical:active {
        background-position: 0 -64px;
    }

.jcarousel-skin-tango .jcarousel-next-disabled-vertical,
.jcarousel-skin-tango .jcarousel-next-disabled-vertical:hover,
.jcarousel-skin-tango .jcarousel-next-disabled-vertical:focus,
.jcarousel-skin-tango .jcarousel-next-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}

.jcarousel-skin-tango .jcarousel-prev-vertical {
    position: absolute;
    top: 5px;
    left: 43px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(prev-vertical.png) no-repeat 0 0;
}

    .jcarousel-skin-tango .jcarousel-prev-vertical:hover,
    .jcarousel-skin-tango .jcarousel-prev-vertical:focus {
        background-position: 0 -32px;
    }

    .jcarousel-skin-tango .jcarousel-prev-vertical:active {
        background-position: 0 -64px;
    }

.jcarousel-skin-tango .jcarousel-prev-disabled-vertical,
.jcarousel-skin-tango .jcarousel-prev-disabled-vertical:hover,
.jcarousel-skin-tango .jcarousel-prev-disabled-vertical:focus,
.jcarousel-skin-tango .jcarousel-prev-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}

/* ==========================================================================
   Drop Down Menu Styles
   ========================================================================== */
#menu {
    width: 960px;
    height: 40px;
    clear: both;
}

ul#nav {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center;
}

    ul#nav li {
        display: inline-block;
    }

        ul#nav li a {
            color: #fff;
            text-decoration: none;
            text-shadow: 1px 1px 1px #880000;
            margin: 0;
        }

        /* APPLIES THE ACTIVE STATE */
        ul#nav .current a, ul#nav li:hover > a {
            color: #ffb400;
        }

    /* THE SUBMENU LIST HIDDEN BY DEFAULT */
    ul#nav ul, ul#other_nav_menu ul, ul#other_brands_menu ul {
        display: none;
    }

    /* WHEN THE FIRST LEVEL MENU ITEM IS HOVERED, THE CHILD MENU APPEARS */
    ul#nav li:hover > ul, ul#other_nav_menu li:hover > ul, ul#other_brands_menu li:hover ul {
        display: block;
        width: 100%;
        height: 40px;
        position: absolute;
        background: url(../img/sub_menu_bg.png) repeat-x;
        padding: 0;
        left: 0;
    }

ul#other_nav_menu li:hover > ul {
    margin: 0;
    z-index: 2;
    background: #464646;
    border-bottom: 1px solid #5a5856;
}

ul#other_brands_menu li:hover ul {
    margin: 0;
    z-index: 2;
    background: url(../img/social_nlogin_bg.png) repeat-x;
}

ul#other_nav_menu li:hover ul li {
    background: url(../img/border.png) 100% 0 no-repeat;
}

ul#other_brands_menu li:hover ul li {
    background: url(../img/yellow_small_border.png) no-repeat 100% 0px;
}

ul#other_brands_menu li a:hover {
    color: #000;
}

ul#nav li:hover > ul li {
    background: url(../img/sub_menu_border.png) no-repeat 100% 0px;
    margin-top:5px;
}

    ul#nav li:hover > ul li a, ul#other_nav_menu li:hover > ul li a, ul#other_brands_menu li:hover > ul li a {
        float: left; /* color: #fff; */
        text-decoration: none;
        margin: 0;
        padding: 5px 12px;
        font-size: 11px;
        line-height: 20px;
        font-family: 'Open Sans', Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
    }

        ul#nav li:hover > ul li a:hover {
            color: #ffb400;
            text-decoration: none;
            text-shadow: none;
        }
         
/*2nd level*/
ul#nav ul li:hover > ul, ul#other_nav_menu ul li:hover > ul {
    position: absolute;
    display: block;
    width: 980px;
    min-height: 40px;
    position: absolute;
    margin: 30px 0 0 0;
    background: url(../img/sub_sub_menu_bg.png) repeat-x;
    padding: 0;
}

ul#other_nav_menu ul li:hover > ul {
    background: #2e2e2e;
    border-bottom: 1px solid #5a5856;
}

ul#other_nav_menu ul ul li:hover > ul {
    background: #464646;
}

ul#nav ul li:hover > ul li a {
    background: none;
    font-size: 11px;
    line-height: 20px;
    font-family: 'Open Sans', Arial, sans-serif;
    padding: 5px 20px;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
html {
    width: 100%;
    height: 100%;
}

body {
    background-attachment: fixed;
    background-size: cover;
    background-position: top center;
    width: 100%;
    height: auto;
    min-width: 1024px;
}

    body.intro_body {
        height: 100%;
    }

.background,
.background-intro {
    position: fixed;
    background: #353636;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-intro {
    background: url(../img/bg.png) repeat;
}

#top_section {
    position: absolute;
    top: 0;
    background: url(../img/top_bg.png) repeat-x;
    width: 100%;
    height: 29px;
    border-bottom: 1px solid #424242;
    z-index: 50;
}

.wrapper {
    width: 980px;
    margin: 0 auto;
    display: block;
    position: relative;
}

.wrapper-intro {
    width: 980px;
    position: relative;
    margin: 0 auto;
    padding: 55px 0px 0px;
}

.top_section .wrapper {
    background: none;
}

.inner_wrap {
    padding: 0 20px;
    /* float:left; */
    width: 940px;
    display: block;
}

.news_swap {
    color: #d3d3d3;
    font-size: 11px;
    position: relative;
    width: 730px;
    overflow: hidden;
}

    .news_swap .jcarousel-clip {
        width: 750px;
        overflow: hidden;
    }

    .news_swap ul li span {
        margin: 0 10px 0 0px;
    }

    .news_swap p,
    .news_swap .jcarousel-item {
        margin: 7px 0;
        width: 749px;
        height: 16px;
        overflow: hidden;
        float: left;
        text-indent: 1px;
    }

.top_search {
    width: 250px;
    margin-right: -20px;
}

.lang_label {
    color: #fff;
    font-size: 11px;
    /* text-transform: uppercase; */
    line-height: 32px;
    padding-left: 15px;
    width: 80px;
}

.search_nlogo .search_box {
    width: 186px;
    padding: 3px 10px;
    margin-top: 3px;
    background: #e19f00;
    /* text-transform: uppercase; */
    color: #fff;
    -webkit-box-shadow: inset 1px 2px 1px 1px #8c6300;
    box-shadow: inset 1px 2px 1px 1px #8c6300;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 11px;
    border: 1px solid #ffb500;
}

.search_nlogo input.search_box::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #fff;
}

.search_nlogo input.search_box:-moz-placeholder, textarea:-moz-placeholder {
    color: #fff;
}

.search_nlogo input.search_box::-moz-placeholder, textarea::-moz-placeholder {
    color: #fff;
}

.search_nlogo input.search_box:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #fff;
}

.search_nlogo #search_box_submit {
    text-indent: -9999px;
    border: none;
    background: url(../img/white_right_arrow.png) no-repeat;
    width: 10px;
    height: 11px;
    margin: 9px 15px;
    float: left;
}

.border {
    background: url(../img/border.png) no-repeat;
    height: 30px;
    width: 1px;
}

.social_nlogin {
    background: url(../img/social_nlogin_bg.png) repeat-x;
    width: 100%;
    height: 30px;
}

ul.social {
    padding: 0;
    margin: 0;
}

    ul.social li {
        list-style: none;
        float: left;
        margin: 5px 10px 0 0;
    }

        ul.social li a {
            text-indent: -9999px;
            display: block;
        }

.fb_icon {
    background: url(../img/fb_icon.png) no-repeat;
    width: 10px;
    height: 20px;
}

.tw_icon {
    background: url(../img/tw_icon.png) no-repeat;
    width: 22px;
    height: 20px;
}

.insta_icon {
    background: url(../img/insta_icon.png) no-repeat;
    width: 20px;
    height: 20px;
}

.video_icon {
    background: url(../img/video_icon.png) no-repeat;
    width: 28px;
}

.gplus_icon {
    background: url(../img/gplus_icon.png) no-repeat;
    width: 18px;
}
.pin_icon {
    background: url(../img/pinterest_icon.png) no-repeat;
    width: 18px;
}
.pin_icon:hover {
    background: url(../img/pinterest_hover_icon.png) no-repeat;
    width: 18px;
}


.fs_icon {
    background: url(../img/fs_icon.png) no-repeat;
    width: 80px;
}

.yandex_icon {
    background: url(../img/yandex_icon.png) no-repeat;
    width: 43px;
}

.top_logo {
    background: url(../img/top_logo.png) 5px 5px no-repeat;
    width: 85px;
    text-indent: -9999px;
    height: 30px;
}

.yellow_small_border {
    background: url(../img/yellow_small_border.png) no-repeat;
    width: 2px;
    height: 30px;
    margin: 0 10px;
}

.login,
.signup,
.user_name,
.logout_btn {
    color: #fff;
    font-size: 11px;
    text-decoration: none;
    /* text-transform: uppercase; */
    font-weight: bold;
    padding: 7px 10px;
    font-family: 'Open Sans', Arial, sans-serif;
}

#change_lang_parent {
    border: 1px solid #3a3a3a;
    width: 90px;
    margin-top: 5px;
    float: right;
}

    #change_lang_parent .styledSelect {
        background: #282828;
        /* text-transform: uppercase; */
        color: #fff;
        -webkit-box-shadow: inset 1px 2px 1px 1px #181818;
        box-shadow: inset 1px 2px 1px 1px #181818;
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 10px;
    }

        #change_lang_parent .styledSelect:after {
            content: "";
            width: 0;
            height: 0;
            border: 5px solid transparent;
            border-color: #fff transparent transparent transparent;
            position: absolute;
            top: 9px;
            right: 6px;
        }

.red_button {
    background: url(../img/red_button.png) repeat-x;
    width: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 11px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    /* text-transform: uppercase; */
    line-height: 20px;
}

.mic_icon {
    background: url(../img/mic_icon.png) no-repeat;
    width: 11px;
    height: 18px;
}

/* nav */
.nav_wrap {
    width: 100%;
    height: 60px;
    position: relative;
}

.nav {
    background: url(../img/nav_bg.png) repeat-x;
    width: 940px;
    height: 60px;
    position: absolute;
    z-index: 1;
}

    .nav ul {
        margin: 0;
        padding: 0;
    }

        .nav ul li {
            list-style: none;
            background: url(../img/nav_border_right.png) no-repeat 100% 1px;
        }

            .nav ul li.last {
                background: none;
            }

            .nav ul li a {
                text-decoration: none;
                color: #fff;
                padding: 20px 15px 21px 10px;
                display: block;
                font-family: 'Open Sans', sans-serif;
                font-size: 14px;
            }

            .nav ul li.home_icon a {
                padding: 14px 15px 12px 0px;
            }

.left_section {
    width: 620px;
    margin-right: 20px;
}

.right_section {
    float: right;
    width: 300px;
}

/* home slider */
#main_slider.flexslider {
    border: none;
    margin: 0;
    height:273px;
}

#main_slider .flex-control-nav {
    bottom: 0px;
}

#main_slider .flex-control-paging li a {
    background: #595959;
}

    #main_slider .flex-control-paging li a.flex-active {
        background: #c2022e;
    }

#main_slider.flexslider .slides > li {
    position: relative;
}

#main_slider .flex-caption {
    position: absolute;
    left: 0;
    bottom: 3%;
    width: 580px;
    background: url(../img/slider_cap_bg.png) repeat;
    padding: 10px 20px;
    border-top: 1px solid #5a5856;
    border-bottom: 1px solid #5a5856;
}

    #main_slider .flex-caption a {
        color: #fff;
        text-decoration: none;
    }

#main_slider .slide_title {
    font-size: 16px;
    width: 450px;
    font-family: 'Open Sans', Arial, sans-serif;
    display: block;
    /* text-transform: uppercase; */
}

#main_slider .view_more {
    float: right;
    font-size: 9px;
    /* text-transform: uppercase; */
}

#right_slider {
    width: 300px;
    height:244px;
    margin: 0;
    border: none;
    padding: 0;
}

    #right_slider .flex-prev {
        background: url(../img/yellow_left_arrow.png) no-repeat;
        left: 82%;
        top: 0px;
        opacity: 1;
        z-index: 0;
    }

    #right_slider .flex-next {
        background: url(../img/yellow_right_arrow.png) no-repeat;
        top: 0px;
        opacity: 1;
        right: 0px;
        z-index: 0;
    }

.right_widget {
    width: 300px;
    margin-bottom: 10px;
}


.head_title {
    background: url(../img/widget_head_bg.png) repeat-x;
    width: 100%;
    height: 33px;
    position: relative;
    margin-bottom: -3px;
    float: left;
}

    .head_title p {
        color: #ffb900;
        margin: 0;
        padding: 6px 20px;
        line-height: 20px;
        /* text-transform: uppercase; */
        font-size: 10px;
    }

/* other nav */
.other_nav {
    background: url(../img/other_nav_bg.png) repeat-x;
    width: 100%;
    height: 60px;
}

    .other_nav ul {
        padding: 0;
        margin: 0 auto;
        min-height: 30px;
        width: 100%;
        text-align: center;
        float: none !important;
    }

        .other_nav ul li {
            list-style: none;
            display: inline-block;
            background: url(../img/black_big_border.png) no-repeat 100% 1px;
        }

            .other_nav ul li.last {
                background: none;
            }

            .other_nav ul li a {
                text-decoration: none;
                color: #fff;
                padding: 21px 27px;
                display: block;
                font-size: 13px;
                line-height: 18px;
                font-family: 'Open Sans', sans-serif;
                -webkit-font-smoothing: antialiased;
            }

/* latest news */
.latest_news {
    width: 100%;
    margin-bottom: 20px;
}

.news_block {
    width: 300px;
    height: 142px;
    background: #2e2e2e;
    position: relative;
    float: left;
    margin-right: 20px;
}

    .news_block.last {
        margin-right: 0px;
    }

.news_img {
    width: 275px;
    height: 100%;
    margin: 0 13px 10px;
}

.news_content {
    width: 265px;
    padding: 5px;
    margin: 0 0 11px 13px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    background: url(../img/slider_cap_bg.png) repeat;
    border-top: 1px solid #707070;
}

    .news_content a.news_title {
        color: #fff;
        text-decoration: none;
        width: 75%;
        float: left;
        font-size: 13px;
        font-family: 'Open Sans', Arial, sans-serif;
    }

    .news_content a.view_more {
        color: #fff;
        text-decoration: none;
        font-size: 9px;
        position: absolute;
        bottom: 5px;
        /* text-transform: uppercase; */
    }

.other_brands_links {
    width: 100%;
    background: url(../img/yellow_strip.png) repeat-x;
    height: 30px;
}

    .other_brands_links ul {
        padding: 0;
        margin: 0 auto;
        width: auto;
        float: none !important;
        text-align: center;
    }

        .other_brands_links ul li {
            list-style: none;
            display: inline-block;
            background: url(../img/light_yellow_border.png) no-repeat 100% 1px;
        }

            .other_brands_links ul li.last {
                background: none;
            }

            .other_brands_links ul li a {
                color: #fff;
                text-decoration: none;
                padding: 8px 29px 7px;
                font-family: 'Open Sans', sans-serif;
                font-size: 11px;
                display: block;
                -webkit-font-smoothing: antialiased;
            }

        .other_brands_links ul.intro_other_links li a {
            color: #000;
            font-size: 10px;
            -webkit-font-smoothing: antialiased;
        }

        .other_brands_links ul.intro_social li a {
            padding: 8px 18px;
        }

.ad_banner {
    margin: 10px 0;
    float: left;
}

.other_news_wrap {
    width: 620px;
    height: 444px;
    overflow: hidden;
}

    .other_news_wrap ul {
        padding: 0;
        margin: 0;
    }

        .other_news_wrap ul li {
            list-style: none;
            width: 620px;
            height: 415px;
        }

    .other_news_wrap .jcarousel-prev-horizontal {
        position: absolute;
        top: 10px;
        right: 26px;
        background: url(../img/yellow_left_right.png) no-repeat;
        width: 10px;
        height: 11px;
        cursor: pointer;
    }

    .other_news_wrap .jcarousel-next-horizontal {
        position: absolute;
        top: 10px;
        right: 11px;
        background: url(../img/yellow_left_right.png) no-repeat -15px 0;
        width: 10px;
        height: 11px;
        cursor: pointer;
    }

.jcarousel-prev-disabled-horizontal, .jcarousel-next-disabled-horizontal {
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}

.other_news .head_title .left_right {
    background: url(../img/yellow_left_right.png) no-repeat;
    width: 26px;
    height: 11px;
    display: block;
    margin: 10px;
}

.other_news_block {
    float: left;
    background: #393939;
    border-bottom: 1px solid #707070;
    width: 100%;
    display: block;
}

    .other_news_block img {
        width: 298px;
        height: auto;
        margin-right: 20px;
    }

.other_news_details {
    width: 290px;
    margin: 10px 0;
}

.cat_name {
    margin: 0;
    font-size: 15px;
    color: #c5022f;
    line-height: 15px;
    font-family: 'Open Sans', Arial, sans-serif;
    /* text-transform: uppercase; */
    float: left;
    width: 100%;
    margin-bottom: 5px;
}

.title_name {
    text-decoration: none;
    color: #ffb900;
    font-size: 9px;
    /* text-transform: uppercase; */
    float: left;
}

.desc {
    color: #fff;
    font-size: 9px;
    /* text-transform: uppercase; */
    line-height: 15px;
    float: left;
}

.other_news_details .view_more, .content_wrap .view_more {
    text-decoration: none;
	color: #fff;
	font-size: 9px;
	text-transform: uppercase;
	line-height: 9px;
	margin-top: 5px;
	float: left;

}
.content_wrap .view_more {
	position: absolute; 
	bottom: 5px;
}

.other_news .club_block {
    margin: 0 20px 0 0;
}

.other_news .content_wrap .view_more {
    padding: 10px 0px 2px;
    /* width: 280px; */
}

.other_news .content_wrap .title_name {
padding: 10px 10px 2px;
color: #FFFFFF;
text-decoration: none;
width: 75%;
float: left;
font-size: 13px;
font-family: 'Open Sans', Arial, sans-serif;
}

.monthly_mag {
    margin-left: 20px;
    position: relative;
}

.right_widget a.right, .right_widget span.right.subscribe {
    color: #fff;
    font-size: 10px;
    padding: 8px 25px;
    margin-right: 10px;
    background: url(../img/yellow_right_arrow.png)no-repeat 100% 48%;
    text-decoration: none;
    /* text-transform: uppercase; */
    line-height: 18px;
}

.content_wrap {
    background: url(../img/slider_cap_bg.png) repeat;
    width: auto;
    display: block;
    position: absolute;
    bottom: 0;
    border-top: 1px solid #707070;
}

    .content_wrap .title {
        margin: 0;
        display: block;
        color: #fff;
        font-size: 10px;
        padding: 10px 15px;
    }

    .content_wrap .content {
        font-size: 10px;
        color: #fff;
        margin: 0;
        padding: 0 15px 10px;
    }

.top_bottom_arrow {
    width: 9px;
    height: 20px;
    background: url(../img/top_bottom_arrow.png) repeat;
    margin: 5px 15px;
}

.buy_wrap {
    background: url(../img/buy_bg.png) repeat;
    float: left;
    width: 100%;
    height: 30px;
}

    .buy_wrap a.buy_button {
        border: 1px solid #ff0045;
        color: #ffb900;
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 14px;
        text-decoration: none;
        width: 88px;
        text-align: center;
        float: left;
        margin: 4px 105px; /* -webkit-box-shadow: 0 8px 6px -6px black;
-moz-box-shadow: 0 8px 6px -6px black;
box-shadow: 0 8px 6px -6px black; */
    }

.live_stream {
    margin-top: 10px;
}

.calender_widget {
    position: relative;
}

.calender_wrap {
    background: #1c1c1c;
}

#tabs .tab_block {
    float: left;
    width: 300px;
    padding: 0;
}

    #tabs .tab_block div.left {
        width: 130px;
        padding: 10px 5px 10px 15px;
    }

    #tabs .tab_block .left span {
        font-size: 9px;
        line-height: 15px;
    }

#tabs ul li.last a {
    color: #ffb900;
    padding: 5px;
    /*margin: 3px 2px;*/
}

/* footer styles */
#footer {
    background: #2d2d2d;
    padding-bottom: 70px;
}

.sponsors {
    width: 100%;
    background: url(../img/sponsors_bg.png) repeat-x;
    height: 145px;
}

    .sponsors img {
        padding: 12px 0;
    }

        .sponsors img.upper {
            padding: 10px 0 0;
        }

ul.footer_widget {
    margin: 20px 0;
    padding: 0;
    float: left;
    width: 200px;
}

    ul.footer_widget.widget_2 {
        width: 250px;
    }

    ul.footer_widget.widget_3 {
        width: 175px;
    }

    ul.footer_widget.widget_4 {
        width: 99px;
    }

    ul.footer_widget li, .links_credits ul.left li {
        list-style: none;
    }

.links_credits ul.left li {
    float: left;
    margin-right: 15px;
}

.links_credits {
    width: 940px;
    color: #828282;
    font-size: 10px;
    text-decoration: none;
    /* text-transform: uppercase; */
    border-top: 1px solid #828282;
    border-bottom: 1px solid #828282;
    padding: 10px 20px;
    height:14px;
}

    .links_credits ul.left {
        padding: 0;
        margin: 0;
    }

        ul.footer_widget li a, .links_credits ul.left li a {
            color: #828282;
            font-size: 10px;
            text-decoration: none;
            /* text-transform: uppercase; */
        }

ul.footer_widget.widget_3 li a {
    text-transform: none;
}

ul.footer_widget li a:hover,
a.view_more:hover,
#main_slider a.view_more:hover, .links_credits ul.left li a:hover {
    color: #ffb900;
}

#footer ul.social {
    padding: 0;
    margin: 25px 0 0;
}

    #footer ul.social.last {
        margin-top: 5px;
    }

    #footer ul.social li a.fb_icon {
        background: url(../img/fb_grey_icon.png) no-repeat;
    }

        #footer ul.social li a.fb_icon:hover,
        .fb_icon:hover {
            background: url(../img/fb_hover_icon.png) no-repeat;
        }

    #footer ul.social li a.tw_icon {
        background: url(../img/tw_grey_icon.png) no-repeat;
    }

        #footer ul.social li a.tw_icon:hover,
        .tw_icon:hover {
            background: url(../img/tw_hover_icon.png) no-repeat;
        }

    #footer ul.social li a.insta_icon {
        background: url(../img/insta_grey_icon.png) no-repeat;
    }

        #footer ul.social li a.insta_icon:hover,
        .insta_icon:hover {
            background: url(../img/insta_hover_icon.png) no-repeat;
        }

    #footer ul.social li a.video_icon {
        background: url(../img/video_grey_icon.png) no-repeat;
    }

    #footer ul.social li a.gplus_icon {
        background: url(../img/gplus_grey_icon.png) no-repeat;
    }

    #footer ul.social li a.fs_icon {
        background: url(../img/fs_grey_icon.png) no-repeat;
    }

    #footer ul.social li a.yandex_icon {
        background: url(../img/pinterest_1.png) no-repeat;
            width: 24px;
    }

        .yandex_icon:hover, #footer ul.social li a.yandex_icon:hover {
            background: url(../img/pinterest_2.png) no-repeat;
            width: 24px;
        }

    .gplus_icon:hover, #footer ul.social li a.gplus_icon:hover {
        background: url(../img/gplus_hover_icon.png) no-repeat;
        width: 18px;
    }

    .fs_icon:hover, #footer ul.social li a.fs_icon:hover {
        background: url(../img/fs_hover_icon.png) no-repeat;
        width: 80px;
    }

    #footer ul.social li a.video_icon:hover,
    .video_icon:hover {
        background: url(../img/video_hover_icon.png) no-repeat;
    }

/* category page */
.post_nav_links {
    margin: 20px 0 20px 34px;
}

.ws.post_nav_links {
    margin: 20px 0 30px 9px;
}

.prev_nav_link,
.next_nav_link {
    border: 1px solid #757575;
    color: #ffb900;
    position: relative;
    -webkit-box-shadow: inset 1px 2px 1px 1px #1c1c1c;
    box-shadow: inset 1px 2px 1px 1px #1c1c1c;
    font-size: 12px;
    /* text-transform: uppercase; */
}

.next_nav_link {
    background: url(../img/grey_right_arrow.png) no-repeat 94%;
    width: 10px;
    height: 11px;
    padding: 3px 40px 3px 30px;
}

    .next_nav_link:hover {
        background: url(../img/grey_right_arrow-hover.png) no-repeat 94%;
        color: #ffb900;
    }

.prev_nav_link {
    background: url(../img/grey_left_arrow.png) no-repeat 4%;
    width: 10px;
    height: 11px;
    padding: 3px 20px 3px 30px;
}

    .prev_nav_link:hover {
        background: url(../img/grey_left_arrow-hover.png) no-repeat 4%;
        color: #ffb900;
    }

.select_category span,
.select_branche span {
    color: #ffb900;
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    margin-right: 15px;
    line-height: 25px;
}

.select_category {
    margin: 22px 24px;
}

.select_branche {
    padding: 22px 20px;
    width: 580px;
}

#all_categories_parent,
#all_branche_parent, #sel_size_parent {
    border: 1px solid #5a5a5a;
    width: 195px;
}

#sel_size_parent {
    margin: 15px 0 15px 50px;
}

    #all_categories_parent .styledSelect,
    #all_branche_parent .styledSelect, #sel_size_parent .styledSelect {
        background-color: #393939;
        color: #ffb900;
        font-weight: normal;
        font-size: 12px;
        -webkit-box-shadow: inset 1px 2px 1px 1px #1c1c1c;
        box-shadow: inset 1px 2px 1px 1px #1c1c1c;
        line-height: 25px;
    }

    #all_categories_parent .options,
    #all_branche_parent .options,
    #change_lang_parent .options, #sel_size_parent .options {
        background: #2b2b2b url(../img/slider_cap_bg.png) repeat;
        color: #ffb900;
        border: 1px solid #707070;
    }

.cat_page.other_news,
.single_content_full {
    float: left;
    -webkit-box-shadow: 1px 1px 2px 1px #2f2f2f;
    box-shadow: 1px 1px 2px 1px #2f2f2f;
    margin-bottom: 10px;
    width: 100%;
    position: relative;
}

    .cat_page.other_news .other_news_block {
        margin-bottom: 10px;
        border-bottom: none;
        background: #353636;
    }

.cat_name .date {
    color: #fff;
    float: right;
    font-size: 15px;
    font-weight: normal;
    font-family: 'Open Sans', Arial, sans-serif;
}

ul.right_catnav {
    width: 100%;
    padding: 10px 0;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #7a7a7a;
}

.big_catnav {
    background: url(../img/right_catnav_big_bg.png) repeat-x;
    height: 240px;
}

    .big_catnav ul.right_catnav {
        background: none;
        border: none;
    }

ul.right_catnav li,
.right_otherlinks ul li {
    list-style: none;
    line-height: 16px;
}

    ul.right_catnav li a {
        font-size: 11px;
        color: #b2b2b2;
        padding-left: 20px;
        font-family: 'Open Sans', Arial, sans-serif;
    }

.right_otherlinks.gray {
    background: url(../img/right_catnav_bg.png) repeat-x;
}

.right_otherlinks {
    background: url(../img/yello_long_strip.png) repeat-x;
    position: relative;
    float: left;
    height: 132px;
    overflow: hidden;
}

    .right_otherlinks .jcarousel-clip-vertical {
        width: 300px;
        height: 112px;
        margin: 10px 0;
        overflow: hidden;
    }

    .right_otherlinks ul {
        width: 100%;
        margin: 0;
        float: left;
    }

        .right_otherlinks ul li {
            width: 100%;
            height: 20px;
        }

    .right_otherlinks.gray ul li a {
        color: #b2b2b2;
    }

    .right_otherlinks ul li a {
        color: #5b3d00;
        font-size: 11px;
        padding-left: 20px;
        font-family: 'Open Sans', Arial, sans-serif;
    }

    .otherlinks_top_nav,
    .right_otherlinks .jcarousel-prev-vertical {
        position: absolute;
        background: url(../img/brown_up_arrow.png) no-repeat;
        width: 11px;
        height: 10px;
        top: 20px;
        right: 15px;
        cursor: pointer;
    }

    .otherlinks_bottom_nav,
    .right_otherlinks .jcarousel-next-vertical {
        position: absolute;
        background: url(../img/brown_bottom_arrow.png) no-repeat;
        width: 11px;
        height: 10px;
        top: 32px;
        right: 15px;
        cursor: pointer;
    }

    .right_otherlinks.gray .jcarousel-next-vertical {
        background: url(../img/brown_bottom_arrow-2.png ) no-repeat;
    }

    .right_otherlinks.gray .jcarousel-prev-vertical {
        background: url(../img/brown_up_arrow-2.png ) no-repeat;
    }

.jcarousel-next-disabled-vertical {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}

.jcarousel-prev-disabled-vertical {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}

.single_nav_links {
    padding: 60px 20px 40px;
}

.date_ntime {
    color: #ffb900;
    font-size: 12px;
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 10px 0 0 20px;
}

.single_title {
    color: #fff;
    font-size: 24px;
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0 0 10px 20px;
}

.small_title {
    font-size: 14px;
    margin: 0 0 10px 20px;
}

.yellow_title {
    color: #ffb900;
    margin-top: 30px;
    font-family: 'Open Sans',Arial,sans-serif;
}

.single_full_img img {
    width: 620px;
    margin: 0 auto;
    height: auto;
}

.single_all_content {
    padding: 0px 20px;
    color: #ececec;
    font-size: 12px;
    margin: 15px 0;
    line-height: 20px;
}

    .single_all_content .single_block11 {
        width: 100%;
        margin-bottom: 20px;
    }

        .single_all_content .single_block11 p {
            margin: 0;
        }

            .single_all_content .single_block11 p b {
                font-size: 16px;
            }

                .single_all_content .single_block11 p b a {
                    color: #fff;
                }

                    .single_all_content .single_block11 p b a:hover {
                        text-decoration: underline;
                    }

.videolar_content {
    min-height: 392px;
}

.popup_gallery a {
    padding-bottom: 8px;
    float: left;
    margin: 0 4px;
}

.related_news_widget {
    background: #2b2b2b;
    -webkit-box-shadow: 1px 1px 2px 1px #2f2f2f;
    box-shadow: 1px 1px 2px 1px #2f2f2f;
    margin-bottom: 10px;
}

    .related_news_widget .head_title span.right {
        /* text-transform: uppercase; */
        color: #fff;
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 12px;
        margin: 7px 15px;
    }

.related_news_block {
    padding-bottom: 5px;
    float: left;
}

    .related_news_block img {
        margin-bottom: 10px;
    }

    .related_news_block .title_name,
    .related_news_block .desc {
        margin: 0 0 5px 20px;
    }

    .related_news_block .ws.title_name {
        margin: 7px 0 10px 20px;
        font-weight: bold;
        font-size: 10px;
    }

.twitter_follow .head_title span.right {
    background: url(../img/yellow_twitter_bird.png) no-repeat 0px;
    width: 18px;
    height: 14px;
    padding: 7px;
}

.twitter_follow {
    background: #1e1e1e;
    margin-bottom: 10px;
}

.tweet_buttons {
    padding: 15px;
    float: left;
    width: 270px;
}

    .tweet_buttons span {
        color: #e2e2e2;
        background: #2a2a2a;
        border: 1px solid #333;
        font-size: 10px;
        padding: 3px 10px 2px 7px;
        -webkit-box-shadow: inset 1px 1px 1px 1px #1c1c1c;
        box-shadow: inset 1px 1px 1px 1px #1c1c1c;
    }

.inner_wrap.intro_wrap {
    padding: 0;
    width: 100%; /*position:absolute;*/
}

.left_intro_section {
    width: 245px;
    height: 400px;
    background: url(../img/long_red_strip.png) repeat-x;
}

.gs_logo {
    background: url(../img/gs_logo.png) no-repeat;
    margin: 0 auto;
    width: 214px;
    height: 234px;
}

.site_url {
    font-size: 20px;
    color: #ffb900;
    font-family: 'Open Sans', Arial, sans-serif;
    margin: -40px 0 0 31px;
    float: left;
    background: url(../img/horizontal_border.png) no-repeat 6px 100%;
    padding-bottom: 15px;
}

.slogan_left {
    font-size: 12px;
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    width: 100%;
    background: url(../img/horizontal_border.png) no-repeat 40px 100%;
    padding: 10px 0 24px;
    text-align: center;
    /* text-transform: uppercase; */
}

.enter_site {
    font-size: 18px;
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
}

.enter_site {
    margin-left: 75px;
}

    .enter_site span {
        margin-left: 20px;
    }

.middle_intro_section {
    float: left;
}

.intro_big_block {
    position: relative;
    width: 490px;
    height: auto;
}

.intro_desc {
    position: absolute;
    bottom: 0;
    background: url(../img/slider_cap_bg.png) repeat;
    color: #d4d4d4;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 11px;
    margin: 0;
    padding: 10px 20px;
    width: 450px;
    /* text-transform: uppercase; */
}

.intro_forward_link {
    font-size: 24px;
    color: #d4d4d4;
    font-family: 'Open Sans', Arial, sans-serif;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    position: absolute;
    bottom: 50px;
    left: 0;
    padding: 10px 25px;
    background: url(../img/slider_cap_bg.png) repeat;
    z-index: 10;
}

.right_intro_section .intro_forward_link {
    padding: 10px 0px;
}

.right_intro_section {
    width: 245px;
    height: 200px;
}

.intro_small_block {
    position: relative;
    background: url(../img/slider_cap_bg.png) repeat;
}

    .intro_small_block .intro_desc,
    .intro_small_block .intro_forward_link {
        width: 200px;
        background: none;
        border: none;
    }

    .intro_small_block .intro_desc {
        color: #b4b4b4;
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 11px;
        background: url(../img/horizontal_grey_border.png) no-repeat 20px 0;
        padding: 15px 0px 10px 20px;
        width: 90%;
    }

    .intro_small_block .fb.intro_forward_link {
        font-size: 18px;
        background: url(../img/big_fb.png) no-repeat;
        top: 27px;
        padding-left: 40px;
        width: auto;
        left: 18px;
    }

    .intro_small_block .youtube_icon.intro_forward_link {
        background: url(../img/big_video.png) no-repeat 0 48%;
        bottom: 100px;
        left: 20px;
        padding-left: 60px;
        font-size: 18px;
    }

ul.lang_selection {
    padding: 0;
    margin: 0 auto;
    width: 130px;
}

    ul.lang_selection li {
        list-style: none;
        float: left;
        background: url(../img/flag_redborder.png) no-repeat 100% 2px;
        height: 30px;
    }

        ul.lang_selection li.last {
            background: none;
        }

        ul.lang_selection li a {
            font-family: 'Open Sans', Arial, sans-serif;
            color: #fff;
            font-size: 11px;
            padding: 10px 12px 10px 8px;
        }

.social_footer a,
.social_footer span {
    font-size: 12px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #fff;
    padding: 3px 10px 2px 7px;
    float: left;
}

.other_brands_links .intro_other_links {
    padding: 0 10px;
}

    .other_brands_links .intro_other_links li a {
        padding: 8px 10px;
    }

.social_footer a.follow_tw {
    background: url(../img/tw_icon.png) no-repeat 10px 3px;
    padding-left: 35px;
    background-size: 20px;
}

    .social_footer a.follow_tw:hover {
        background: url(../img/tw_hover_icon.png) no-repeat 10px 3px;
        padding-left: 35px;
        background-size: 20px;
    }

.social_footer a.follow_fb {
    background: url(../img/fb_icon.png) no-repeat 7px 3px;
    padding-left: 20px;
    background-size: 9px;
}

    .social_footer a.follow_fb:hover {
        background: url(../img/fb_hover_icon.png) no-repeat 7px 3px;
        padding-left: 20px;
        background-size: 9px;
    }

.social_footer a.follow_in {
    background: url(../img/linkedin_icon.png) no-repeat 7px 3px;
    padding-left: 28px;
    background-size: 15px;
}

    .social_footer a.follow_in:hover {
        background: url(../img/linkedin_icon-hover.png) no-repeat 7px 3px;
        padding-left: 28px;
        background-size: 15px;
    }

.social_footer span.border_yellow {
    background: url(../img/light_yellow_border.png) no-repeat 100% 1px;
    padding: 0;
    width: 2px;
    height: 100%;
    border: none;
    box-shadow: none;
    margin: 0 15px;
    float: left;
}

.nike_logo {
    background: url(../img/nike_logo.png) no-repeat 0;
    width: 90px;
    height: 16px;
    padding: 7px 0;
}

#accord {
    padding: 0;
    float: left;
    margin: 0;
}

    #accord > li {
        list-style: none;
        float: left;
        width: 100%;
    }

    #accord li .accord_content,
    #accord li:first-child .head_title .top_bottom_arrow {
        display: none;
    }

    #accord li .accord_content {
        float: left;
        background: #393939;
        width: 100%;
    }

    #accord li:first-child .accord_content {
        display: block;
    }

    #accord li .head_title {
        cursor: pointer;
    }

.login_box {
    position: absolute;
    right: 0;
    background: url(../img/slider_cap_bg.png) repeat;
    top: 30px;
    z-index: 2;
    padding: 5px;
    color: #ffb900;
    border: 1px solid #707070;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 11px;
    /* text-transform: uppercase; */
    line-height: 20px;
    display: none;
}

    .login_box .left {
        margin-right: 10px;
    }

    .login_box input[type=checkbox] {
        margin: 3px 5px 0 0;
    }

    .login_box input[type=email],
    .login_box input[type=password] {
        margin-right: 15px;
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 11px;
    }

    .login_box input[type=submit] {
        border: 1px solid #707070;
        color: #ffb900;
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 11px;
        background: #c5022f;
        padding: 2px 5px;
        width: 50px;
        margin-right: 15px;
    }

        .login_box input[type=submit]:hover {
            background: #ffb900;
            color: #c5022f;
        }

.forgot_pass {
    cursor: pointer;
}

.forgot_pass_wrap {
    display: none;
}

    .forgot_pass_wrap input[type=submit] {
        background: url(../img/yellow_right_arrow.png) no-repeat 50%;
        text-indent: -9999px;
        border: none;
        width: 10px;
    }

        .forgot_pass_wrap input[type=submit]:hover {
            background: url(../img/yellow_right_arrow.png) no-repeat 50%;
        }

/* register page style */
.register_all_content {
    padding: 0 10px;
}

.field_block {
    width: 100%;
    margin: 5px 0;
}

    .field_block.checkbox_block, .field_block.checkbox_block label {
        margin: 0;
    }

        .field_block.checkbox_block.multiple_line_checkbox label {
            line-height: 18px;
        }

    .field_block label {
        width: 150px;
        text-align: left;
        color: #fff;
        font-size: 12px;
        float: left;
        line-height: 25px;
        /* text-transform: uppercase; */
    }

    .field_block.gsk_mem_email label {
        width: 230px;
        line-height: 18px;
    }

    .field_block .custom-checkbox label {
        width: auto;
        /* text-transform: uppercase; */
    }

.reg_text {
    width: 203px;
    height: 14px;
    font-size: 12px;
    background: #393939;
    border: 1px solid #757575;
    color: #757575;
    -webkit-box-shadow: inset 1px 2px 1px 1px #1c1c1c;
    box-shadow: inset 1px 2px 1px 1px #1c1c1c;
    padding: 4px 10px;
    float: left;
}

#reg_gender_parent, #reg_dob_parent, #reg_country_parent, #reg_towns_parent {
    border: 1px solid #757575;
    width: 223px;
}

    #reg_gender_parent .styledSelect, #reg_dob_parent .styledSelect, #reg_country_parent .styledSelect, #reg_towns_parent .styledSelect {
        font-size: 12px;
        background: #393939;
        color: #757575;
        -webkit-box-shadow: inset 1px 2px 1px 1px #1c1c1c;
        box-shadow: inset 1px 2px 1px 1px #1c1c1c;
        line-height: 25px;
    }

        #reg_gender_parent .styledSelect:after, #reg_dob_parent .styledSelect:after, #reg_country_parent .styledSelect:after, #reg_towns_parent .styledSelect:after {
            border-color: #757575 transparent transparent transparent;
        }

    #reg_gender_parent .options, #reg_dob_parent .options, #reg_country_parent .options, #reg_towns_parent .options {
        border: 1px solid #757575;
        background: #393939;
        color: #ffb900;
    }

.check_avail {
    color: #ffb900;
    font-size: 12px;
    margin-left: 15px;
    line-height: 25px;
    width: 120px;
}

.char_block {
    color: #fff;
    width: 100%;
    font-size: 12px;
    /* text-transform: uppercase; */
}

    .char_block input {
        margin: 0 0 0 35%;
    }

.submit_block {
    width: 100%;
}

    .submit_block input {
        background: url(../img/reg_sub_bg.png) repeat-x;
        border: none;
        width: 150px;
        height: 30px;
        margin: 0 0 0 41%;
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 13px;
    }

/* club page */
.club_title {
    margin: 75px 0 20px 20px;
}

.club_block {
    width: 300px;
    position: relative;
    margin: 0 20px 10px 0;
}

    .club_block.last {
        width: 300px;
        position: relative;
        margin: 0 0 10px 0;
    }

.all_video .club_block {
    height: 215px;
}

.club_block.last {
    margin-right: 0px;
}

.club_block img {
    width: 300px;
    height: 130px;
}

.club_block .content_wrap {
    width: 100%;
    /* border: none; */
}

.club_single_content .title {
    width: 100%;
    margin: 0;
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
}

.club_single_content .date_ntime {
    margin: 0;
}

.club_block .content_wrap .title {
    font-size: 15px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #fff;
    line-height: 18px;
    /* text-transform: uppercase; */
}

.result_table table th {
    text-align: left;
    line-height: 20px;
}

.subTextBox {
    position: absolute;
    right: 5px;
    top: 7px;
    display: none;
}

    .subTextBox .textBox {
        width: 100px;
        height: 14px;
        background: transparent;
        border: 0px;
        color: #b7b7b7;
        font-size: 11px;
        border: 1px solid #ffb900;
        text-indent: 2px;
    }

    .subTextBox .button {
        font-size: 11px;
        margin-top: 0px;
        background: transparent;
        border: 1px solid #ffb900;
        color: #ffb900;
        margin-left: -1px;
    }

.next_prev {
    position: absolute;
    display: inline-block;
    right: 5px;
    top: 82px;
}

    .next_prev .next {
        width: 10px;
        height: 11px;
        display: inline-block;
        background: url(../img/grey_left_arrow-hover.png);
        cursor: pointer;
    }

        .next_prev .next.disable {
            opacity: 0.5;
            filter: alpha(opacity=50); /* For IE8 and earlier */
        }

    .next_prev .prev {
        width: 10px;
        height: 11px;
        display: inline-block;
        background: url(../img/grey_right_arrow-hover.png);
        cursor: pointer;
    }

        .next_prev .prev.disable {
            opacity: 0.5;
            filter: alpha(opacity=50); /* For IE8 and earlier */
        }

/*sponsors style*/
ul.upsp {
    padding: 0;
    margin: 0 auto;
    width: 525px;
}

    ul.upsp li {
        list-style: none;
        float: left;
        padding: 0 15px;
    }

        ul.upsp li a {
            float: left;
            height: 80px;
        }

ul.sp {
width: 940px;
position: relative;
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
float: left;

}
 


ul.sp li {
padding: 0 10px;
display: inline;

}

/* photolist page styles*/
.photolist_content_full {
    min-height: 940px;
}

.photolist_all_content {
    padding: 0 0 0px 20px;
}

.photolist_block {
    float: left;
    width: 110px;
    height: 160px;
    margin: 0 10px 20px 0;
}

    .photolist_block img {
        border: 1px solid #ffb900;
    }

    .photolist_block .title {
        color: #ffb900;
        margin: 0;
        padding: 7px 0 1px;
        line-height: 13px;
        /* text-transform: uppercase; */
        font-size: 9px;
    }

    .photolist_block .desc {
        margin: 0;
        font-size: 8px;
        line-height: 13px;
        float: none;
    }

.inner_title {
    color: #c5022f;
    font-size: 15px;
    /* text-transform: uppercase; */
    font-family: 'Open Sans',Arial,sans-serif;
}

.big_catnav .inner_title {
    margin: 0;
    padding: 20px 20px 10px;
    border-bottom: 1px solid #7a7a7a;
}

.single_full_img {
    margin: 20px 0;
}

.image_blocks {
    border-bottom: 1px solid #757575;
    padding: 0 0 20px;
}

    .image_blocks .inner_title {
        margin: 20px 0 0 20px;
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 16px;
        color: #ffb900;
    }

    .image_blocks .date_ntime {
        margin-top: 0px;
        color: #fff;
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 13px;
    }

.profile_top_title {
    font-size: 14px;
    margin: 20px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.profile_header {
    width: 620px;
    height: 283px;
}

.prof_img {
    margin: 23px;
}

    .prof_img img {
        border: 1px solid #ccc;
    }

.profile_details {
    width: 340px;
    margin-left: 20px;
}

    .profile_details .yellow_title {
        font-size: 24px;
        margin-bottom: 0;
    }

.prof_role {
    margin-top: 0;
    font-size: 12px;
    color: #ccc;
}

.prof_other_details {
    color: #ccc;
    margin: 0;
    font-size: 12px;
    width: 100%;
}

/* social button style */
.social_share {
    width: 100%;
    height:50px;
    margin: 20px 10px;
}

.fb-like {
    float: left;
    margin-right: 10px;
}

.twee_buttons {
    float: left;
    width: 80px;
}

#___plusone_0 {
    float: left !important;
    width: 70px !important;
    margin-left: 10px !important;
}

.pinit {
    float: left;
    margin-top: -3px;
}

/* on hover yellow color */
ul.right_catnav li a:hover,
.ws.cat_name,
#nav ul li a:hover,
a.live_sream:hover,
.other_nav ul li a:hover,
.head_title a.right:hover,
.enter_site span,
a.enter_site:hover,
a.intro_forward_link:hover,
ul.lang_selection li a:hover,
ul.lang_selection li.active a, .yellow_text {
    color: #ffb900;
}

.bottom_red_line {
    border-bottom: 1px solid #ff0046;
}

/*----------------------------------------------------------------
	jquery-ui styles over-rites
----------------------------------------------------------------*/
.ui-widget {
    font-size: 9px;
    border: none;
    width: 100%;
    background: #1c1c1c;
    padding: 0;
}

.ui-tabs {
    padding: 0;
}

#datepicker {
    width: 220px;
    margin: 0 auto;
}

.ui-datepicker th {
    font-weight: normal;
    color: #ebac05;
}

.ui-datepicker .ui-datepicker-header {
    position: absolute;
    top: 4px;
    right: 15px;
    background: none;
    border: none;
    /* text-transform: uppercase; */
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
    opacity: 1;
    filter: Alpha(Opacity=100);
    background-image: none;
}

.ui-datepicker td span, .ui-datepicker td a {
    padding: 0 8px;
    text-align: center;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-prev.ui-state-hover span {
    background: url(../img/yellow_left_arrow.png) no-repeat;
    margin: 0;
}

.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-next.ui-state-hover span {
    background: url(../img/yellow_right_arrow.png) no-repeat;
    margin: 0;
}

.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover {
    top: -3px;
}

.ui-datepicker .ui-datepicker-next {
    right: 1px;
}

.ui-datepicker .ui-datepicker-prev {
    left: -7px;
}

.ui-datepicker .ui-datepicker-today .ui-state-default {
    border: 1px solid #ffb900;
    background: #ffb900;
    color: #000;
}

.ui-datepicker .ui-datepicker-today.selected_high .ui-state-default {
    border: 1px solid #ffb900 !important;
    background: #c5022f;
    color: #fff;
}

.ui-datepicker .selected_high {
    position: relative;
}

    .ui-datepicker .selected_high a {
        color: #ffffff;
        background: #c5022f !important;
        border: 1px solid #c5022f !important;
    }

        .ui-datepicker .selected_high a:hover {
            background: #84001e !important;
            border: 1px solid #84001e !important;
        }

    .ui-datepicker .selected_high .cal_tooltip {
        display: none;
        position: absolute;
        top: 20px;
        background: #84001e;
        color: #fff !important;
        z-index: 3;
        width: 165px;
        padding: 10px;
        font-size: 9px;
        left: -230%;
    }

    .ui-datepicker .selected_high:hover .cal_tooltip {
        display: block;
    }

    .ui-datepicker .selected_high .cal_tooltip:after {
        bottom: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(132, 0, 30, 0);
        border-bottom-color: #84001e;
        border-width: 5px;
        left: 50%;
        margin-left: -5px;
    }

.cal_tooltip b {
    float: left;
    width: 100%;
    margin-bottom: 5px;
}

#tabs ul li.ui-state-active,
#tabs ul li.ui-state-default {
    background: none;
    border: none !important;
    outline: none;
    margin-right: 3px;
    letter-spacing: -1px;
    font-size: 1.1em;
}

    #tabs ul li.ui-state-active a {
        color: #c5022f;
    }

.ui-tabs .ui-tabs-nav li a {
    padding: 9px 2px !important;
    outline: none;
}

#tabs .ui-widget-header {
    border: none;
    background: url(../img/widget_head_bg.png) repeat-x;
    width: 285px;
    height: 33px;
    position: relative;
    margin-bottom: -3px;
    float: left;
    padding: 0 0 0 15px;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.left {
    float: left !important;
}

.right {
    float: right !important;
}

.relative_class {
    position: relative;
}

.mb_10p {
    margin-bottom: 10px;
}

.mb_20p {
    margin-bottom: 20px;
}

.h10px {
    height: 10px;
}

hr.full_line {
    float: left;
    width: 100%;
    margin: 0;
}

a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

    .ir:before {
        content: "";
        display: block;
        width: 0;
        height: 150%;
    }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

    /*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

    .visuallyhidden.focusable:active,
    .visuallyhidden.focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after,
.inner_wrap:before,
.inner_wrap:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after,
.inner_wrap:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix,
.inner_wrap {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* BilgeTech Fixes */
a, p {
    text-rendering: optimizeLegibility;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

#top-banner img {
    width: 100%;
}

#wrapper {
    width: 980px;
    margin: 0 auto;
    display: block;
    background: #353636;
    position: relative;
}

.innerTB.half {
    padding-top: 10px;
    padding-bottom: 10px;
}

.innerTB {
    padding-top: 20px;
    padding-bottom: 20px;
}

div.gs-styled {
    position: relative;
}

    div.gs-styled select {
        background-color: #282828;
        padding: 2px 10px 2px 2px;
        margin: 0;
        -webkit-box-shadow: inset 1px 2px 1px 1px #181818;
        -moz-box-shadow: inset 1px 2px 1px 1px #181818;
        box-shadow: inset 1px 2px 1px 1px #181818;
        border: 1px solid #3a3a3a;
        color: white;
        width: auto;
        font-family: arial,tahoma;
        font-size: 10px;
        font-weight: bold;
        /* text-transform: uppercase; */
        outline: none;
        display: inline-block;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    div.gs-styled:after {
        content: '<>';
        font: 11px "Consolas", monospace;
        color: #aaa;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        right: 3px;
        top: 4px;
        padding: 0 0 4px;
        position: absolute;
        pointer-events: none;
    }

.ui-selectmenu-button {
    border: 1px solid #444;
    font-size: 10px;
    color: #ffb900;
}

#topLangSelect {
    margin: 5px 0 0 5px;
}

    #topLangSelect .ui-selectmenu-button {
        font-size: 10px;
        color: white;
    }

        #topLangSelect .ui-selectmenu-button span.ui-selectmenu-text {
            line-height: 1em;
        }

.video_widget .video-thumb {
    position: relative;
    float: left;
}

.video_widget .video-play {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.text-center {
    text-align: center;
}

.custom-select.ui-selectmenu-button span.ui-selectmenu-text {
    text-align: left;
    display: block;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 2px 0;
}

.custom-select.ui-selectmenu-button {
    height: 14px;
    font-size: 12px;
    background: #393939;
    border: 1px solid #757575;
    color: #757575;
    -webkit-box-shadow: inset 1px 2px 1px 1px #1c1c1c;
    box-shadow: inset 1px 2px 1px 1px #1c1c1c;
    padding: 4px 10px;
    float: left;
    -webkit-font-smoothing: antialiased;
}

#reg_dob, #reg_gender, #reg_country, #reg_towns {
    width: 207px;
}

.ui-selectmenu-menu .ui-menu {
    border: 1px solid #757575;
    background: #393939;
    color: #ffb900;
    max-height: 250px;
}

.search_result a {
    font-size: 12px;
}

    .search_result a:hover {
        text-decoration: underline;
    }

.video-thumb {
    position: relative;
}

/* Live Stream */
#liveStream .sub_cat {
    margin: 0px 0 20px 20px;
    font-size: 20px;
    color: #c5022f;
    line-height: 15px;
    font-family: 'GothamRoundedBold', Arial, sans-serif;
    /* text-transform: uppercase; */
    float: left;
    width: 100%;
    margin-bottom: 10px;
    -webkit-font-smoothing: antialiased;
}

#liveStream .heading {
    height: 85px;
}

#liveStream .scoreboard {
    background: url(../img/scorebg.png) repeat-x;
    width: 100%;
    padding: 10px 0;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #7a7a7a;
    height: 100px;
}

#liveStream .team, #liveStream .stadi {
    width: 205px;
}

#liveStream .team_logo {
    text-align: center;
}

    #liveStream .team_logo p {
        text-transform: uppercase;
        color: #fff;
        margin: 0px;
    }

#liveStream .score {
    font-family: 'GothamRoundedBold', Arial, sans-serif;
    font-size: 60px;
    color: #fff;
    margin-top: 30px;
}

#liveStream .stadi {
    display: inline-block;
}

#liveStream .name {
    text-align: center;
    text-transform: uppercase;
    color: #ffb900;
    margin: 0;
    font-size: 12px;
    margin-top: 15px;
}

#liveStream .time {
    text-align: center;
    text-transform: uppercase;
    color: #ffb900;
    font-weight: normal;
    font-size: 30px;
    margin-top: 30px;
    font-family: 'GothamRoundedBook', Arial, sans-serif;
}

#liveStream .team_1 {
    width: 310px;
}

#liveStream .goals {
    margin-bottom: 10px;
}

    #liveStream .goals ul {
        margin: 0px;
        padding: 0px;
        margin-left: 120px;
        color: #fff;
        font-size: 14px;
    }

        #liveStream .goals ul li {
            list-style-image: url('../img/ball.png');
        }

/* tabs_menu */

#liveStream ul#tabs_menu {
    height: 30px;
    background: url('../img/tab_bg.png') repeat-x !important;
    margin: 0px;
    padding: 0px;
    text-indent: 15px;
}

#liveStream .yellow_name {
    color: #ffb900;
}

#liveStream .red_name {
    color: #c5022f;
}

#liveStream .white_name {
    color: #fff;
}

#liveStream .collection {
    width: 620px;
    min-height: 400px;
    margin-bottom: 20px;
    background: url('../img/collection.png') bottom center repeat-x;
}

#liveStream #tabs_menu li {
    display: inline;
    margin-right: 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
}

#liveStream .active {
    font-size: 30px;
}

#liveStream .two_block,
#liveStream .three_block,
#liveStream .four_block {
    display: none;
}

#liveStream .one_block {
    padding-top: 30px;
}

#liveStream .two_block {
    float: left;
    background: #161616 url('../img/collection.png') repeat-x;
}

#liveStream #content {
    width: 500px;
    margin: 0;
    padding: 0;
}

    #liveStream #content li {
        display: inline;
    }

#liveStream .first_column, .second_column {
    width: 35px;
    text-align: center;
    vertical-align: top;
}

#liveStream .second_column {
    width: 60px !important;
    text-align: left !important;
}

#liveStream .one_block tr {
    color: #ececec;
    border-bottom: 1px solid #585858;
    font-size: 14px;
    margin-bottom: 10px;
}

#liveStream .first_column, .third_column tr td {
    padding-left: 15px;
    padding-right: 10px;
}

#liveStream .active {
    padding: 3px;
    border: 1px solid #525252;
    background: #434343;
}

#liveStream .bg {
    width: 100%;
    height: auto;
    min-width: 1024px;
    background: url('../img/livebg.jpg');
}

#liveStream .teams {
    width: 300px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
}

    #liveStream .teams p {
        margin: 0;
        margin-left: 20px;
        margin-bottom: 5px;
        color: #fff;
    }

    #liveStream .teams table tr td {
        color: #fff;
        font-size: 12px;
    }

#liveStream .teams_name {
    text-transform: uppercase;
    font-size: 13px;
}

#liveStream .alais_name {
    font-size: 12px;
    margin-bottom: 20px !important;
}

#liveStream .ilk {
    text-align: left;
    padding-left: 5px;
}

#liveStream .td-1 {
    text-align: right;
    width: 10px;
}

#liveStream .td-2 {
    padding-left: 5px;
}

#liveStream .td-3 span {
    margin:0 4px;
}

#liveStream .small_table {
    margin-top: 30px !important;
}

.leauge-stats {
    font-size: 10px;
    text-align: left;
    width: 300px;
}

    .leauge-stats ul.nav-tabs {
        border: none;
        background: url(../img/widget_head_bg.png) repeat-x;
        width: 300px;
        height: 25px;
        position: relative;
        margin-bottom: 0;
        padding: 4px 0;
    }

        .leauge-stats ul.nav-tabs li {
            background: none;
            border: none !important;
            outline: none;
            margin: 0 5px;
            letter-spacing: -1px;
            font-size: 10px;
            list-style: none;
            float: left;
        }

            .leauge-stats ul.nav-tabs li.passive, .leauge-stats ul.nav-tabs li a {
                float: left;
                padding: 5px;
                text-decoration: none;
            }

            .leauge-stats ul.nav-tabs li.active a {
                color: #c5022f;
            }

            .leauge-stats ul.nav-tabs li.passive {
                color: #ffb900;
                font-weight: bold;
            }

    .leauge-stats .tab-content {
        margin-top: -13px;
        color: #fff;
        background-color: #1c1c1c;
    }

        .leauge-stats .tab-content .tab-pane .container {
            padding: 15px;
        }

    .leauge-stats .league-select {
        margin-bottom: 5px;
    }

        .leauge-stats .league-select select {
            width: 255px;
        }

.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
    }

.captcha_block label.error {
    top: 40px;
    left: 0;
}

.captcha_block .reg_text {
    margin: 0;
}

.gender_field label.error {
    top: 0;
    left: 270px;
}

.validation-error {
    position:relative;
    clear: both;
}

.validation-error .error {
    float:none;
    color: #ffb900;
    background:none !important;
    margin-left: 150px;
}

.yellow_warning {
color: #ffb900;
margin: 20px;
}

.match-infos {
    color: #fff;
    padding:0 20px;
}

.tv-feed-list li {
    list-style: none;
    color: #fff;
}
/*EB edit*/
.text-align-right{
    text-align:right;
}
.cursor_pointer{
    cursor:pointer;
}
.clear100{
    width:100%;
}
.mainsearchbox{
    padding:2px;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    margin: 15px 0px;
}
.mainsearchbox div {
    margin-right:15px;
}
.msrchsubmit{
    float:left;
    background: url(../img/reg_sub_bg.png) repeat-x;
    border: none;
    width: 60px;
    height: 24px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 13px;
}
.txtbox{
    width:225px;
}
.mainsearchbox .validation-error{
    color: #ffb900;
    width:100%;
    text-align:center;
    display:none;
    padding:10px 0px;
}

input, textarea, select{
    outline-color: #FF0000;
}
.loading-bar{
    height:300px;
    position:relative;
    text-align:center;
}
.loading-bar img {
    margin-top:20%;
}

.rss-link{
    float:left;
    display:block;
    width:24px;
    height:24px;
    background:url(../img/rss.png) top center no-repeat;
    text-indent:-99999px;
    margin-top:-5px;
}
.rss-link:hover{
    background-position:bottom center;
}

#instagram-list{
    float:left;
    list-style-type:none;
    padding-left:28px;
}
#instagram-list li {
    float:left;
    margin:10px;
}

#pinterest{
    position:absolute;
    left:-99999px;
    width:0px;
    height:0px;
    overflow:hidden;
}

#custbg{
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background-repeat:no-repeat;
    background-position:top center;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
}

#liveStream{
    margin-top:20px;
    word-break: break-word; 
}

#top-banner{
    outline:none;
}
.clear100{
    width:100%;
    clear:both;
}