@charset "utf-8";
/*
Theme Name: VFX New
*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    background: none;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    background: #f1f3f4;
    font-size: 14px;
    color: #17307d;
    font-family: "Century Gothic", sans-serif;
}

a {
    color: #17307d;
    text-decoration: none;
    outline-style: none;
}

a:hover {
    color: #17307d;
    text-decoration: none;
}

p {
    line-height: 1.7;
    margin: 0 0 20px;
}

li {
    list-style: none outside none;
}

strong,
b {
    font-weight: bold;
}

em,
i {
    font-style: italic;
}

strong em,
em strong {
    font-style: italic;
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

hr {
    clear: both;
    margin: 40px 0;
    border: 0;
    border-bottom: 0;
    padding: 0px;
    width: 100%;
    background: #e1e0da;
    height: 1px;
}

pre {
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
    height: 0;
    font-size: 0;
    width: 100%;
}

.alignleft {
    display: inline;
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    display: inline;
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 20px;
}

.alignnone {
    clear: both;
    display: block;
    margin: 0 auto 20px;
}

.tableBox {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
}

.table_cellBox {
    display: table-cell;
    vertical-align: middle;
}

.inner {
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.red_button {
    text-transform: uppercase;
    background: #d72b2f;
    border-radius: 5px;
    text-shadow: 0px 0px 1px #FFF;
    padding: 13px 20px 13px 20px;
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    text-align: left;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-appearance: none;
    cursor: pointer;
}

.red_button:hover {
    background: #fd0202;
    color: #FFF;
    text-decoration: none;
}

.blue_button {
    text-transform: uppercase;
    background: #2450d7;
    border-radius: 5px;
    text-shadow: 0px 0px 1px #FFF;
    padding: 13px 20px 13px 20px;
    display: inline-block;
    color: #FFF !important;
    font-size: 16px;
    text-align: left;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-appearance: none;
    cursor: pointer;
    text-decoration: none !important;
}

.blue_button:hover {
    background: #2a5cf5;
    color: #FFF !important;
    text-decoration: none;
}

.red_arrow_button {
    text-transform: uppercase;
    background: #d72b2f;
    border-radius: 5px;
    text-shadow: 0px 0px 1px #FFF;
    padding: 13px 42px 13px 15px;
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    text-align: left;
    margin-top: 5px;
    position: relative;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-appearance: none;
    cursor: pointer;
}

.red_arrow_button:hover {
    background: #fd0202;
    color: #FFF;
    text-decoration: none;
}

.red_arrow_button:after {
    content: "\f105";
    font-family: 'FontAwesome';
    position: absolute;
    right: 21px;
    top: 12px;
}

.blue_arrow_button {
    text-transform: uppercase;
    background: #2450d7;
    border-radius: 5px;
    text-shadow: 0px 0px 1px #FFF;
    padding: 13px 42px 13px 15px;
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    text-align: left;
    margin-top: 5px;
    position: relative;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-appearance: none;
    cursor: pointer;
}

.blue_arrow_button:hover {
    background: #2a5cf5;
    color: #FFF;
    text-decoration: none;
}

.blue_arrow_button:after {
    content: "\f105";
    font-family: 'FontAwesome';
    position: absolute;
    right: 21px;
    top: 12px;
}

input,
button,
textarea {
    outline-style: none;
}

.wrapper {
    width: 100%;
    overflow: hidden;
}

.clearfix:after {
    content: ".";
    /*加一段内容*/
    display: block;
    /*让生成的元素以块级元素显示，占满剩余空间*/
    height: 0;
    /*避免生成的内容破坏原有布局高度*/
    clear: both;
    /*清除浮动*/
    visibility: hidden;
    /*让生成的内容不可见*/
}

.clearfix {
    zoom: 1;
    /*为IE6，7的兼容性设置*/
}

/*Header Css 开始*/

.header {
    position: relative;
    width: 100%;
    z-index: 100;
}

.header_top_bar {
    padding: 5px 0px 7px;
    background: #1d2836;
}

.header_top_bar .icon_phone {
    display: inline-block;
    float: left;
    margin-top: 4px;
    vertical-align: middle;
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    /* font-weight:bold;*/
    font-size: 12px;
    color: #FFF;
}

.header_top_bar .icon_phone:before {
    content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 13px;
    background: url(images/sprite_img.png) 0px top no-repeat;
    left: 0px;
    top: 0px;
}

.header_top_bar .icon_phone:hover {
    color: #FFF;
}

.header_language {
    float: left;
    position: relative;
    text-align: left;
    width: 110px;
    z-index: 10;
}

.header_language_nav {
    position: relative;
    padding: 4px 0px 0px 5px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    width: 100px;
    text-transform: uppercase;
}

.header_language_inner {
    display: none;
    width: 402px;
    position: absolute;
    left: -20px;
    top: 28px;
    background: #222e3e;
    padding: 6px 0px;
    z-index: 9;
}

.header_language_inner ul {
    padding: 12px 20px 16px;
    margin: 0px;
    width: 50%;
    float: left;
}

.header_language_inner ul li {
    padding: 9px 5px;
    margin: 0px;
}

.header_language_inner a {
    display: block;
    font-size: 12px;
    color: #ffffff;
    padding: 6px 0px 6px 14px;
    text-decoration: none;
    text-transform: uppercase;
}

.header_language_inner a:after {
    content: "";
    display: block;
    clear: both;
}

.header_language_inner a:hover {
    text-decoration: none;
    color: #ffffff;
    background: url(images/bg_header_language_li.png) left top repeat-y;
}

.header_language_inner li.active a {
    color: #ffffff;
    background: url(images/bg_header_language_li.png) left top repeat-y;
}

.header_language span {
    display: inline-block;
    float: left;
    width: 19px;
    height: 13px;
    margin-right: 8px;
}

.header_language span.icon_english {
    background: url(images/header_language_icon_english.png) left top no-repeat;
}

.header_language span.icon_france {
    background: url(images/header_language_icon_france.png) left top no-repeat;
}

.header_language span.icon_german {
    background: url(images/header_language_icon_german.png) left top no-repeat;
}

.header_language span.icon_italy {
    background: url(images/header_language_icon_italy.png) left top no-repeat;
}

.header_language span.icon_spain {
    background: url(images/header_language_icon_spain.png) left top no-repeat;
}

.header_language span.icon_arab {
    background: url(images/header_language_icon_arab.png) left top no-repeat;
}

.header_language span.icon_portugal {
    background: url(images/header_language_icon_portugal.png) left top no-repeat;
}

.header_language span.icon_thailand {
    background: url(images/header_language_icon_thailand.png) left top no-repeat;
}

.header_language span.icon_malaysia {
    background: url(images/header_language_icon_malaysia.png) left top no-repeat;
}

.header_language span.icon_chinese {
    background: url(images/header_language_icon_chinese.png) left top no-repeat;
}

.header_language span.icon_vn {
    background: url(images/header_language_icon_vn.png) left top no-repeat;
}

.header_language span.icon_indonesia {
    background: url(images/header_language_icon_id.png) left top no-repeat;
}

.header_language span.icon_kr {
    background: url(images/header_language_icon_kr.png) left top no-repeat;
}

.header_language span.icon_japanese {
    background: url(images/header_language_icon_japanese3860.png?v=1) left top no-repeat;
}

.header_top_bar .header_webtrader_link {
    display: inline-block;
    float: left;
    margin-top: 4px;
    vertical-align: middle;
    padding: 0px 0px 0px 20px;
    position: relative;
    font-size: 12px;
    color: #FFF;
}

.header_top_bar .header_webtrader_link:before {
    content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 13px;
    background: url(images/sprite_img30f4.png?v=3) -253px -1px no-repeat;
    left: 0px;
    top: 1px;
}

.header_top_bar .header_webtrader_link:hover {
    color: #FFF;
}

.header_top_bar .header_app_link {
    display: inline-block;
    float: left;
    margin-top: 4px;
    vertical-align: middle;
    padding: 0px 0px 0px 20px;
    position: relative;
    font-size: 12px;
    color: #FFF;
    margin-left: 25px;
}

.header_top_bar .header_app_link:before {
    content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 16px;
    background: url(images/header_app_link_img.png) no-repeat;
    left: 0px;
    top: 0px;
}

.header_top_bar .header_app_link:hover {
    color: #FFF;
}

.header_logo {
    float: left;
    display: block;
    width: 240px;
    padding: 0px;
    margin: 0px auto;
}

.reg_link {
    float: right;
}

.reg_link a {
    font-size: 11px;
    color: #fff;
    text-decoration: none;
    padding: 3px 5px 2px;
    margin: 0px 0px 0px 7px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 3px;
}

.reg_link a:hover {
    text-decoration: none;
    color: #FFF;
}

.reg_link .btn_login {
    border: 1px solid #FFF;
}

.reg_link .btn_login:hover {
    background: #444;
    border: 1px solid #444;
}

.reg_link .btn_live {
    background: #e91d2c;
    border: 1px solid #e91d2c;
}

.reg_link .btn_live:hover {
    background: #fd0202;
    border: 1px solid #fd0202;
}

.reg_link .btn_demo {
    background: #2450d7;
    border: 1px solid #2450d7;
}

.reg_link .btn_demo:hover {
    background: #2a5cf5;
    border: 1px solid #2a5cf5;
}

.header_menu_wrapper {
    background: rgba(29, 40, 54, 0.6);
    height: 80px;
    position: absolute;
    width: 100%;
    left: 0px;
    top: 100%;
    padding: 10px 0px 0px 0px;
}

.no_page_banner .header_menu_wrapper {
    position: relative;
}

.header_menu_wrapper .inner {
    position: relative;
    z-index: 9;
}

.header_menu_wrapper .header_menu_tabs {
    padding: 0px;
    margin: 0px;
}

.header_menu_wrapper .header_menu_tabs>li {
    padding: 0px 20px;
    margin: 0px;
    float: left;
}

.header_menu_wrapper .header_menu_tabs>li>a {
    display: block;
    padding: 20px 0px 32px;
    font-size: 15px;
    color: #e8edf0;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: all .3s;
    text-transform: uppercase;
}

.header_menu_wrapper .header_menu_tabs>li>a:after {
    content: "";
    display: block;
    clear: both;
    height: 4px;
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 0px;
    transition: all .3s;
}

.header_menu_wrapper .header_menu_tabs>li:hover a:after {
    background: #1e55ff;
}

.header_menu_container {
    float: right;
    padding-right: 32px;
}

.header_menu_tab_content {
    position: absolute;
    left: 0px;
    top: 100%;
    padding: 0px 20px;
    width: 1076px;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.header_menu_tab_content:before {
    content: "";
    display: block;
    position: absolute;
    width: 1600px;
    height: 100%;
    right: 50%;
    top: 0px;
    background: rgba(29, 40, 54, 0.9);
}

.header_menu_tab_content:after {
    content: "";
    display: block;
    position: absolute;
    width: 1600px;
    height: 100%;
    left: 50%;
    top: 0px;
    background: rgba(29, 40, 54, 0.9);
}

.header_menu_wrapper .header_menu_tabs>li:hover .header_menu_tab_content {
    height: auto;
    opacity: 1;
    top: 100%;
    overflow: inherit;
}

.header_menu_links {
    float: left;
    width: 32%;
    padding: 52px 0px 30px 0px;
    position: relative;
}

.header_menu_links h2 {
    padding: 0px;
    margin: 0px 0px 12px;
    font-weight: bold;
    font-size: 30px;
    color: #FFF;
    line-height: 1.5;
}

.header_menu_links h2:after {
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    background: #1e55ff;
    margin: 5px 0px 0px;
}

.header_menu_links p {
    padding: 0px;
    margin: 0px 0px 67px;
    font-size: 15px;
    color: #FFF;
    line-height: 1.75;
}

.header_menu_links a {
    font-size: 12px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 8px;
    margin: 0px 12px 10px 0px;
    text-transform: uppercase;
    border-radius: 3px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.header_menu_links.partnership_links p {
    margin: 0px 0px 47px !important;
}

.header_menu_links.partnership_links a {
    font-size: 16px !important;
}

.header_menu_links a:hover {
    color: #FFF;
    text-decoration: none;
}

.header_menu_links a.live_link {
    background: #e91d2c;
    border: 1px solid #e91d2c;
}

.header_menu_links a.live_link:hover {
    background: #fd0202;
    border: 1px solid #fd0202;
}

.header_menu_links a.demo_link {
    background: #2450d7;
    border: 1px solid #2450d7;
}

.header_menu_links a.demo_link:hover {
    background: #2a5cf5;
    border: 1px solid #2a5cf5;
}

.header_menu_tab_content .sub_menu_box {
    width: 68%;
    float: right;
    padding: 10px 0px 30px;
    margin: 0px;
    position: relative;
    z-index: 3;
}

.header_menu_tab_content .sub_menu {
    padding: 0px 10px 0px 0px;
    margin: 0px;
}

.header_menu_tab_content .sub_menu:after {
    content: "";
    display: block;
    clear: both;
}

.header_menu_tab_content .sub_menu>li {
    padding: 0px 15px 20px 35px;
    margin: 0px;
    float: left;
    width: 33.3333%;
}

.header_menu_tab_content .sub_menu>li a {
    display: block;
    font-size: 16px;
    color: #8ebeff;
    padding: 22px 0px;
    font-weight: bold;
    border-bottom: 1px solid #2f4c68;
    position: relative;
}

.header_menu_tab_content .sub_menu>li a:hover {
    color: #8ebeff;
    text-decoration: none;
}

.header_menu_tab_content .sub_menu li ul li a {
    font-size: 14px;
    color: #FFF;
    font-weight: normal;
    padding: 9px 0px 9px 11px;
}

.header_menu_tab_content .sub_menu li ul li a:hover {
    text-decoration: none;
    color: #FFF;
    background: url(images/bg_sub_menu_a.png) left top repeat-y;
}

.header_menu_tab_content .sub_menu li a.menu_popular_icon {
    padding-right: 65px;
}

.header_menu_tab_content .sub_menu li a.menu_popular_icon:after {
    content: "";
    display: block;
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -10px;
    vertical-align: middle;
    width: 55px;
    height: 20px;
    background: url(images/menu_popular_icon.png) left top no-repeat;
    padding-right: 60px;
}

.header_menu_tab_content .sub_menu li a.menu_new_icon {
    padding-right: 45px;
}

.header_menu_tab_content .sub_menu li a.menu_new_icon:after {
    content: "";
    display: block;
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -10px;
    vertical-align: middle;
    width: 35px;
    height: 20px;
    background: url(images/menu_new_icon.png) left top no-repeat;
    padding-right: 40px;
}

.header_menu_tab_content#header_menu_contnet3 {
    width: 1300px;
}

.header_menu_tab_content#header_menu_contnet3 .sub_menu>li {
    width: 25%;
}

.header_menu_tab_content#header_menu_contnet3 .header_menu_links {
    width: 26%;
}

.header_menu_tab_content#header_menu_contnet3 .sub_menu_box {
    width: 74%;
}

.search_box {
    position: absolute;
    right: 23px;
    top: 13px;
    z-index: 10;
}

.search_box .search_box_button {
    width: 22px;
    height: 22px;
    background: url(images/sprite_imgae52.png?v=5) -1px -16px no-repeat;
    cursor: pointer;
    margin-top: 5px;
}

.search-form {
    position: absolute;
    right: 0;
    top: 0px;
    z-index: 10;
    display: none;
}

.search-form .search-field {
    width: 230px;
    padding: 0 0 0 34px;
    border: 1px solid grey;
    height: 37px;
    color: #000;
    line-height: 35px;
    font-size: 16px;
    background: #FFF;
}

.search-form .search_icon {
    content: "";
    display: block;
    position: absolute;
    left: 8px;
    top: 6px;
    background: url(images/sprite_imgae52.png?v=5) -25px -16px no-repeat;
    width: 22px;
    height: 22px;
}

.search-form .search-field:focus {
    background-color: #fff;
    border: 1px solid #a3a3a4;
    width: 230px;
    cursor: text;
    outline: none;
}

.search-submit {
    display: none;
}

#fixed_header {
    background: rgba(29, 40, 54, 0.9);
    padding: 30px 0px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    display: none;
}

#fixed_header .fixed_header_logo {
    display: block;
    width: 200px;
    height: auto;
    margin: 0px auto;
    position: absolute;
    left: 50%;
    top: 15px;
    margin-left: -120px;
}

#fixed_header .fixed_header_logo img {
    width: 100%;
}

#fixed_header .menu_left {
    float: left;
}

#fixed_header .menu_left a {
    display: inline-block;
    border-radius: 3px;
    text-align: center;
    padding: 3px 5px 2px;
    border: 1px solid white;
    display: inline-block;
    box-sizing: border-box;
    margin-right: 7px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
}

/*Header Css 结束*/

/*Mobile Header Css 开始*/

.mobile_menu_hamburger {
    width: 25px;
    padding: 4px 0px 0px;
    text-align: center;
    cursor: pointer;
    display: none;
}

.mobile_menu_hamburger i {
    display: block;
    width: 25px;
    height: 3px;
    margin: 0 auto 5px;
    background: #FFF;
}

.mobile_menu {
    display: none;
    position: absolute;
    width: 100%;
    left: 0px;
    top: 100%;
    z-index: 97;
    text-align: center;
}

.mobile_menu_content {
    background: rgba(29, 40, 54, 0.9);
    position: relative;
    padding-bottom: 52px;
    padding-top: 0px;
}

.mobile_menu_content .home_icon_link {
    padding: 0px;
}

.mobile_menu_content .home_icon_link a {
    font-size: 20px;
    color: #fff;
    display: block;
    text-align: left;
    text-decoration: none;
    padding: 0px 0px;
}

.mobile_menu_content .home_icon_link a:hover {
    text-decoration: none;
    color: #000;
    background: #1e55ff;
}

.mobile_menu_content .home_icon_link a i {
    margin-right: 6px;
}

.mobile_menu_content .home_icon_link a span {
    display: block;
    padding: 15px 50px 15px;
    border-bottom: 1px solid #1e55ff;
}

.mobile_menu_content .home_icon_link a:hover span {
    border-bottom: 1px solid #1e55ff;
}

.mobile_menu_content .header_menu {
    text-align: left;
    position: relative;
}

.mobile_menu_content .header_menu a {
    font-weight: 300;
    display: block;
    color: #fff;
    padding: 15px 50px 15px;
    font-size: 18px;
    text-decoration: none;
}

.mobile_menu_content .header_menu a i {
    margin-right: 6px;
}

.mobile_menu_content .header_menu li>a {
    position: relative;
    text-transform: uppercase;
}

.mobile_menu_content .header_menu li>a::before {
    background: #1e55ff;
    content: "";
    display: block;
    height: 1px;
    left: 0px;
    position: absolute;
    bottom: -1px;
    width: calc(100% - 0px);
}

.mobile_menu_content .header_menu li>a:hover::before {
    display: none;
}

.mobile_menu_content .header_menu li>a:hover {
    background: #1e55ff;
    color: #000;
}

.mobile_menu_content .header_menu>li.button,
.mobile_menu_content .header_menu>li.blue_button {
    display: none;
}

.mobile_menu_content .header_menu>li>a {
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
}

.mobile_menu_content .header_menu li li a {
    text-transform: none;
    color: #ffffff;
}

.mobile_menu_content .header_menu li li a:hover {
    color: #1e55ff;
    text-decoration: none;
    background: none;
}

.mobile_menu_content .header_menu li li a:hover::before {
    display: block;
}

.mobile_menu_content .header_menu li li a:hover .accordsuffix {
    color: #1e55ff;
}

.mobile_menu_content .header_menu>li>ul>li>a {
    text-transform: none;
    color: #ffffff;
    padding-left: 80px;
}

.mobile_menu_content .header_menu>li>ul>li>ul>li>a {
    padding-left: 110px;
}

.mobile_menu_content .header_menu li ul {
    border: 0px;
    padding: 0px;
}

.mobile_menu_content .header_menu li ul li:liast-child a {
    border: 0;
}

.mobile_menu_content .header_menu .sub_menu {
    display: none;
}

.mobile_menu_content .header_menu a {
    display: block;
    position: relative;
}

.mobile_menu_content .header_menu .accordsuffix {
    display: block;
    position: absolute;
    color: #FFF;
    right: 50px;
    top: 13px;
}

.mobile_menu_content .header_menu>li>a .accordsuffix {
    color: #FFF;
}

.mobile_menu_content .header_menu .accordsuffix:before {
    content: "\f055";
    font-family: 'FontAwesome';
    font-size: 16px;
}

.mobile_menu_content .header_menu .active .accordsuffix:before {
    content: "\f056";
    color: #FFF;
}

.mobile_menu_content .header_menu .active:hover .accordsuffix {
    color: #FFF;
}

.mobile_menu_content .header_menu a.active {}

.mobile_menu_content .header_menu a:hover .accordsuffix {
    color: #FFF;
}

.mobile_menu_content .header_menu li li .active .accordsuffix {
    /* color:#491700;*/
}

.mobile_menu_content .header_menu>li a i.fa-envelope-o {
    margin-right: 5px;
}

/*Mobile Header Css 结束*/

/*Footer Css 开始*/

#footer {
    background: #1d2836;
    padding-bottom: 65px;
}

.footer_top {
    width: 100%;
    padding: 50px 0px 15px;
}

.footer_top .footer_top_left {
    width: 28%;
    float: left;
}

.footer_top .footer_top_center {
    width: 42%;
    float: left;
    padding-top: 10px;
}

.footer_top .footer_top_center .footer_top_center_title {
    padding: 0px 42px;
}

.footer_top .footer_top_center .footer_top_center_inner {
    border-left: 1px solid #2b334a;
    border-right: 1px solid #2b334a;
    padding: 7px 42px 0px;
}

.footer_top .footer_top_right {
    width: 216px;
    max-width: 26%;
    float: right;
    padding-top: 10px;
}

.footer_top .footer_logo {
    display: block;
    width: 203px;
    margin-bottom: 30px;
}

.footer_top .footer_logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer_top .footer_top_left ul {
    padding: 0px;
    margin: 0px;
}

.footer_top .footer_top_left ul li {
    padding: 0px 0px 4px;
    margin: 0px;
    font-size: 12px;
    color: #aecaea;
    line-height: 1.5;
}

.footer_top .footer_top_left ul li:before {
    content: ">";
    padding-right: 15px;
}

.footer_top .footer_top_left ul li a {
    font-size: 12px;
    color: #aecaea;
    text-decoration: none;
}

.footer_top .footer_top_left ul li a:hover {
    color: #aecaea;
    text-decoration: underline;
}

.footer_top h2 {
    font-size: 22px;
    font-weight: normal;
    color: #FFF;
    text-transform: uppercase;
    padding: 0px;
    margin: 0px 0px 33px;
    line-height: 1.2;
}

.footer_top h2:after {
    content: "";
    display: block;
    margin: 11px 0px 0px;
    width: 45px;
    height: 2px;
    background: #fff;
}

.footer_top .footer_top_center ul {
    padding: 0px;
    margin: 0px;
}

.footer_top .footer_top_center ul li {
    padding: 0px 0px 47px 25px;
    margin: 0px;
    font-size: 12px;
    color: #aecaea;
    line-height: 1.4;
    position: relative;
}

.footer_top .footer_top_center ul li a {
    font-size: 12px;
    color: #aecaea;
    text-decoration: none;
}

.footer_top .footer_top_center ul li a:hover {
    color: #aecaea;
    text-decoration: underline;
}

.footer_top .footer_top_center ul li:before {
    content: "";
    display: block;
    position: absolute;
}

.footer_top .footer_top_center ul li.phone:before {
    width: 16px;
    height: 17px;
    background: url(images/sprite_img.png) -268px 0px no-repeat;
    left: 0px;
}

.footer_top .footer_top_center ul li.email:before {
    width: 16px;
    height: 11px;
    background: url(images/sprite_img.png) -285px 0px no-repeat;
    left: 0px;
    top: 4px;
}

.footer_top .footer_top_center ul li.address {
    padding-bottom: 0px;
}

.footer_top .footer_top_center ul li.address:before {
    width: 13px;
    height: 20px;
    background: url(images/sprite_img.png) -302px 0px no-repeat;
    left: 3px;
    top: 5px;
}

.footer_top .footer_top_right h2 {
    margin-bottom: 25px;
}

.footer_top .footer_top_right .funding_list {
    padding: 0px 0px 43px;
}

.footer_top .footer_top_right .first_funding_list {
    text-align: center;
}

.footer_top .footer_top_right .funding_list a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 3px 5px;
    width: 44px;
    height: 28px;
}

.footer_top .footer_top_right .funding_list a.footer_funding_icon1 {
    background: url(images/sprite_img3860.png?v=1) -51px -47px no-repeat;
}

.footer_top .footer_top_right .funding_list a.footer_funding_icon2 {
    background: url(images/sprite_img3860.png?v=1) -104px -47px no-repeat;
}

.footer_top .footer_top_right .funding_list a.footer_funding_icon3 {
    background: url(images/sprite_img3860.png?v=1) -156px -47px no-repeat;
}

.footer_top .footer_top_right .funding_list a.footer_funding_icon4 {
    background: url(images/sprite_img3860.png?v=1) -208px -47px no-repeat;
}

.footer_top .footer_top_right .funding_list a.footer_funding_icon5 {
    background: url(images/sprite_img3860.png?v=1) -261px -47px no-repeat;
}

.footer_top .footer_top_right .funding_list a.footer_funding_icon6 {
    background: url(images/sprite_img3860.png?v=1) -312px -47px no-repeat;
}

.footer_top .footer_top_right .funding_list a.footer_funding_icon8 {
    background: url(images/sprite_img3860.png?v=1) -598px -47px no-repeat;
}

.footer_top .footer_top_right .funding_list a.footer_funding_icon7 {
    background: url(images/sprite_img3860.png?v=1) -363px -47px no-repeat;
    width: 210px;
    height: 27px;
    margin-left: 0px;
    margin-right: 0px;
}

.footer_middle {
    border-top: 1px solid #2b334a;
    padding: 14px 0px;
}

.footer_middle ul {
    padding: 6px 0px 0px 0px;
    margin: 0px;
    float: left;
}

.footer_middle ul li {
    padding: 0px 12px 4px 0px;
    margin: 0px;
    display: inline-block;
    font-size: 12px;
    color: #aecaea;
    line-height: 1.4;
    position: relative;
}

.footer_middle ul li a {
    font-size: 12px;
    color: #aecaea;
    text-decoration: none;
}

.footer_middle ul li a:hover {
    color: #aecaea;
    text-decoration: underline;
}

.footer_middle .footer_icon_box {
    display: block;
    float: right;
}

.footer_middle .footer_icon_box a {
    display: inline-block;
    width: 33px;
    height: 33px;
    margin: 0px 0px 10px 15px;
    text-indent: -9999em;
}

.footer_middle .footer_icon_box a.facebook_icon {
    background: url(images/sprite_img.png) -316px 0px no-repeat;
}

.footer_middle .footer_icon_box a.facebook_icon:hover {
    background: url(images/sprite_img.png) -452px 0px no-repeat;
}

.footer_middle .footer_icon_box a.twitter_icon {
    background: url(images/sprite_img.png) -350px 0px no-repeat;
}

.footer_middle .footer_icon_box a.twitter_icon:hover {
    background: url(images/sprite_img.png) -486px 0px no-repeat;
}

.footer_middle .footer_icon_box a.linkedin_icon {
    background: url(images/sprite_img.png) -384px 0px no-repeat;
}

.footer_middle .footer_icon_box a.linkedin_icon:hover {
    background: url(images/sprite_img.png) -520px 0px no-repeat;
}

.footer_middle .footer_icon_box a.youtube_icon {
    background: url(images/sprite_img.png) -418px 0px no-repeat;
}

.footer_middle .footer_icon_box a.youtube_icon:hover {
    background: url(images/sprite_img.png) -554px 0px no-repeat;
}

.footer_bottom {
    background: #283547;
    padding: 48px 0px 42px;
}

.footer_bottom .footer_bottom_text {
    padding-bottom: 40px;
}

.footer_bottom p {
    padding: 0px 0px 20px;
    margin: 0px;
    font-size: 12px;
    color: #819ab7;
    line-height: 1.6;
    text-align: justify;
}

.footer_bottom p a {
    color: #FFF;
    text-decoration: underline;
}

.footer_bottom p a:hover {
    color: #FFF;
    text-decoration: none;
}

.footer_bottom ul {
    padding: 0 0 0 20px;
}

.footer_bottom ul:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}

.footer_bottom ul li {
    margin: 0px;
    color: #819ab7;
    list-style-type: disc;
}

.footer_bottom ul li p {
    text-align: justify;
}

.footer_bottom_bar {
    background: #2c3a4d;
}

.footer_bottom_bar p {
    padding: 9px 0px;
    margin: 0px;
    font-size: 12px;
    color: #819ab7;
    line-height: 1.6;
}

/*Footer Css 结束*/

.fast_easy_wrapper {
    background: url(images/home_row5_bg.jpg) center top no-repeat;
    background-size: cover;
}

.fast_easy_wrapper .inner {
    padding-top: 166px;
    padding-bottom: 120px;
}

.fast_easy_wrapper h2 {
    margin: 0px 0px 85px;
}

.fast_easy_wrapper h2:after {
    margin: 27px auto 0px;
}

.fast_easy_wrapper ul {
    padding: 0px 0px 55px;
    margin: 0px -10px;
}

.fast_easy_wrapper ul:after {
    content: "";
    display: block;
    clear: both;
}

.fast_easy_wrapper ul li {
    padding: 0px 10px 30px;
    margin: 0px;
    width: 33.333333%;
    float: left;
}

.fast_easy_wrapper ul li .text_box {
    position: relative;
    padding: 0px 0px 0px 88px;
}

.fast_easy_wrapper ul li .text_box:before {
    content: "";
    display: block;
    width: 65px;
    height: 65px;
    color: #2544a2;
    border-radius: 50%;
    border: 2px solid #2544a2;
    font-size: 30px;
    text-align: center;
    line-height: 61px;
    position: absolute;
    left: 0px;
    top: 9px;
}

.fast_easy_wrapper ul li:nth-child(1) .text_box:before {
    content: "1";
}

.fast_easy_wrapper ul li:nth-child(2) .text_box:before {
    content: "2";
}

.fast_easy_wrapper ul li:nth-child(3) .text_box:before {
    content: "3";
}

.fast_easy_wrapper ul li .text_box h4 {
    padding: 0px 0px 7px;
    margin: 0px;
    font-size: 22px;
    line-height: 1.5;
    color: #2544a2;
    font-weight: bold;
}

.fast_easy_wrapper ul li .text_box p {
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    line-height: 1.25;
    color: #2544a2;
}

.fast_easy_wrapper a {
    display: block;
    text-transform: uppercase;
    background: #d72b2f;
    border-radius: 5px;
    text-shadow: 0px 0px 1px #FFF;
    margin: 0px auto;
    text-align: center;
    padding: 10px 26px 10px 0px;
    height: 45px;
    line-height: 25px;
    width: 227px;
    color: #FFF;
    font-size: 16px;
    position: relative;
}

.fast_easy_wrapper a:hover {
    background: #fd0202;
    color: #FFF;
    text-decoration: none;
}

.fast_easy_wrapper a:after {
    content: "\f105";
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 10px;
}

.home_content .experience_our_spreads_wrapper {
    margin-bottom: 0px;
}

.experience_our_spreads_wrapper {
    background: url(images/home_row5_bg.jpg) center top no-repeat;
    background-size: cover;
    margin-bottom: 40px;
}

.experience_our_spreads_wrapper .inner {
    padding-top: 106px;
    padding-bottom: 45px;
    height: 665px;
}

.experience_our_spreads_wrapper .experience_our_spreads_content {
    padding: 0px 0px 0px 435px;
    position: relative;
}

.experience_our_spreads_wrapper .img_box {
    width: 794px;
    position: absolute;
    left: -225px;
    top: 0px;
}

.experience_our_spreads_wrapper .img_box img {
    display: block;
    width: 100%;
    overflow: hidden;
}

.experience_our_spreads_wrapper .rawecn_box {
    width: 100%;
}

.rawecn_box_title {
    padding: 0px 0px 18px;
}

.rawecn_box_title span {
    display: inline-block;
    font-style: italic;
    font-weight: bold;
    color: #000;
    position: relative;
    padding: 0px 176px 0px 14px;
    font-size: 26px;
    line-height: 1.2;
}

.rawecn_box_title span:after {
    content: "";
    display: block;
    width: 163px;
    height: 46px;
    position: absolute;
    right: 0px;
    top: 10px;
    background: url(images/home_sprite_img.png) -719px 0px no-repeat;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list {
    position: relative;
    padding: 0px;
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0px 0px 6px #e3e4e5;
    -moz-box-shadow: 0px 0px 6px #e3e4e5;
    box-shadow: 0px 0px 6px #e3e4e5;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .rawecn_nav {}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .rawecn_nav span {
    height: 38px;
    line-height: 36px;
    float: left;
    display: block;
    border: 1px solid #e3e4e5;
    border-bottom-color: #f0f0f0;
    text-align: center;
    font-size: 15px;
    color: #000;
    text-transform: uppercase;
    cursor: pointer;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .rawecn_nav span:nth-child(1) {
    width: 22%;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .rawecn_nav span:nth-child(2) {
    width: 39%;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .rawecn_nav span:nth-child(3) {
    width: 39%;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .rawecn_nav .rawecn_active {
    text-shadow: 0px 0px 1px #000;
    border-color: #e2e2e2;
    border-bottom-color: #e2e2e2;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .rawecn_content {
    border: 1px solid #e3e4e5;
    border-top: none;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .row_top {
    padding: 5px 0px 0px;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .row_top .row_top_item {
    display: block;
    padding: 15px 2px;
    float: left;
    font-size: 13px;
    width: 25%;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .row_top .row_top_item:nth-child(1) {
    width: 190px;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .row_top .row_top_item:nth-child(2) {
    width: 114px;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .row_top .row_top_item:nth-child(3) {
    width: 114px;
}

.experience_our_spreads_wrapper .rawecn_box .rawecn_list .row_top .row_top_item:nth-child(4) {
    width: 72px;
}

.experience_our_spreads_londing {
    display: none;
    margin: 20px auto;
}

.experience_our_spreads_londing img {
    display: block;
    margin: 0px auto;
    text-align: center;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate h1 {
    color: #fff;
    margin: 0;
    display: none;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row {
    font-size: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row:after {
    content: "";
    display: block;
    clear: both;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span {
    display: block;
    padding: 3px 2px;
    float: left;
    text-align: center;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.symbol {
    width: 190px;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.bid,
.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.ask {
    margin-left: 7px;
    margin-right: 7px;
    width: 100px;
    border-radius: 5px;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.bid.decreased,
.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.ask.decreased {
    background: #e91d2c;
    color: #fff;
    font-weight: bold;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.bid.increased,
.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.ask.increased {
    background: #44bd3e;
    color: #fff;
    font-weight: bold;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.spread {
    color: #214cd2;
    width: 72px;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row .spread-title {
    display: none;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .indices {
    display: none;
}

.experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .commodities {
    display: none;
}

/*Banner css 开始*/

.page_banner_content {
    position: relative;
}

.page_banner_content .inner {
    height: 770px;
    text-align: center;
    padding-top: 80px;
}

.page_banner_content h2 {
    padding: 0px;
    margin: 0px 0px 67px;
    line-height: 1.2;
    color: #FFF;
    font-weight: bold;
    font-size: 45px;
    text-align: center;
    text-transform: uppercase;
}

.page_banner_content h2:after {
    content: "";
    display: block;
    margin: 22px auto 0px;
    width: 90px;
    height: 4px;
    background: #fff;
}

.page_banner_content h2 em {
    font-weight: bold;
    color: #ff0a2c;
}

.page_banner_content h3 {
    padding: 0px;
    margin: 0px 0px 105px;
    line-height: 1.2;
    color: #FFF;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
}

.page-template-template_forex_vps .page_banner_content h3 {
    letter-spacing: -1px;
}

/*Banner css 结束*/

.page_title_left {
    padding: 0px;
    margin: 0px 0px 25px;
    line-height: 1.2;
    color: #2544a2;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: normal;
}

.page_title_left:after {
    content: "";
    display: block;
    margin: 22px 0px 0px;
    width: 70px;
    height: 3px;
    background: #2544a2;
}

.page_title_center {
    padding: 0px;
    margin: 0px 0px 25px;
    line-height: 1.2;
    color: #2544a2;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: normal;
    text-align: center;
}

.page_title_center:after {
    content: "";
    display: block;
    margin: 22px auto 0px;
    width: 70px;
    height: 3px;
    background: #2544a2;
}

.page_content {
    padding: 50px 0px 0px;
}

.page_top_text {
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    padding: 34px 42px 20px 42px;
    margin: 0px 0px 50px;
    background: #FFF;
}

.page_top_text h2 {
    padding: 0px;
    margin: 0px 0px 25px;
    line-height: 1.2;
    color: #2544a2;
    font-size: 27px;
    text-transform: uppercase;
    font-weight: normal;
}

.page_top_text h2:after {
    content: "";
    display: block;
    margin: 22px 0px 0px;
    width: 70px;
    height: 3px;
    background: #2544a2;
}

.page_top_text p {
    padding: 0px;
    margin: 0px 0px 20px;
    font-size: 14px;
    color: #17307d;
    line-height: 1.65;
    text-align: justify;
}

.page_top_text p a {
    color: #0000ff;
    text-decoration: underline;
}

.page_top_text p a:hover {
    color: #0000ff;
    text-decoration: none;
}

.page_top_text .mnuber_icon_span {
    border-radius: 50%;
    background: #1f51ef;
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
    margin-right: 7px;
    vertical-align: middle;
}

ul.dotted_ul {
    padding: 0px 0px 20px;
    margin: 0px;
}

ul.dotted_ul li {
    padding: 0px 0px 0px 15px;
    margin-bottom: 10px;
    position: relative;
    font-size: 14px;
    color: #17307d;
    line-height: 1.8;
}

ul.dotted_ul li:last-child {
    margin-bottom: 0;
}

ul.dotted_ul li:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #17307d;
    position: absolute;
    left: 0px;
    top: 10px;
    border-radius: 50%;
}

ul.dotted_ul ol li {
    padding-left: 0px;
}

ul.dotted_ul ol li:before {
    display: none;
}

ol.number_ol {
    padding: 0px 0px 20px;
    margin: 0px;
}

ol.number_ol li {
    padding: 0px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #17307d;
    line-height: 1.8;
}

ol.number_ol li:last-child {
    margin-bottom: 0;
}

ol.number_ol li ul,
ol.number_ol li ol {
    padding: 0px 0px 0px 20px;
    margin: 0px;
}

.pages_text_and_image_row {
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    background: #FFF;
    margin-bottom: 52px;
}

.pages_text_and_image_row .text_and_image_inner {
    position: relative;
}

.pages_text_and_image_row .text_box {
    padding: 43px 40px 40px 55px;
    width: 55%;
    float: right;
    position: relative;
}

.pages_text_and_image_row .img_box {
    position: absolute;
    width: 45%;
    left: 0px;
    top: 0px;
    height: 100%;
}

.pages_text_and_image_row .img_box img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
}

.pages_text_and_image_row .img_box span {
    display: inline-block;
    width: auto;
    font-size: 14px;
    color: #FFF;
    position: absolute;
    line-height: 1.2;
    left: 0px;
    top: 32px;
    background: url(images/pages_text_and_image_on_text_r2.png) right top no-repeat;
    padding: 19px 17px 15px 5px;
    height: 75px;
    text-transform: uppercase;
}

.pages_text_and_image_row .img_box span img {
    width: auto;
    position: absolute;
    right: 100%;
    top: 0px;
    opacity: 1;
}

.pages_text_and_image_row h3 {
    padding: 0px;
    margin: 0px 0px 22px;
    font-size: 22px;
    color: #2544a2;
    line-height: 1.2;
}

.pages_text_and_image_row p {
    padding: 0px;
    margin: 0px 0px 23px;
    font-size: 14px;
    color: #17307d;
    line-height: 1.65;
    text-align: justify;
}

.pages_text_and_image_row .bottom_text {
    padding: 0px 40px 35px 55px;
    margin: 0px;
    text-align: right;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.pages_text_and_image_row .bottom_text:before {
    content: "";
    display: inline-block;
    margin: 0px 0px 23px;
    width: 70px;
    height: 3px;
    background: #2544a2;
}

.pages_text_and_image_row .bottom_text p {
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    color: #17307d;
    line-height: 1.15;
    display: block;
    text-align: right;
}

.pages_text_and_image_row .bottom_text p:nth-child(1) {
    text-transform: uppercase;
}

.pages_text_and_image_row .bottom_text p strong {
    font-size: 40px;
}

.pages_text_and_image_row.text_and_image_position_right .text_box {
    float: none;
    padding-left: 40px;
    padding-right: 55px;
}

.pages_text_and_image_row.text_and_image_position_right .img_box {
    left: auto;
    right: 0px;
}

.pages_text_and_image_row.text_and_image_position_right .bottom_text {
    text-align: left;
    right: auto;
    left: 0px;
    padding-left: 40px;
    padding-right: 55px;
}

.pages_text_and_image_row.text_and_image_position_right .bottom_text p {
    text-align: left;
}

.pages_text_and_image_row.text_and_image_position_right .img_box span {
    left: auto;
    right: 0px;
    background: url(images/pages_text_and_image_on_text_l1.png) left top no-repeat;
    padding: 19px 5px 15px 17px;
}

.pages_text_and_image_row.text_and_image_position_right .img_box span img {
    left: 100%;
}

.pages_text_and_image_row .text_box .text_box_url {
    text-decoration: underline;
    font-weight: bold;
}

.pages_text_and_image_row .text_box .text_box_button {
    background: #2450d7;
    color: #fff;
    text-align: center;
    width: 224px;
    padding: 6px 0px;
    display: inline-block;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

.pages_text_and_image_row .text_box .text_box_button:hover {
    background: #2a5cf5;
}

.pages_text_and_image_row ul.img_list {
    text-align: left;
    left: 0px;
}

.pages_text_and_image_row ul.img_list:before {
    display: none;
}

.pages_text_and_image_row ul.img_list li {
    padding: 0px 0px 18px 40px;
    margin: 0px;
    display: inline-block;
    vertical-align: top;
}

.pages_text_and_image_row ul.img_list li img {
    display: block;
    margin: 0px 0px 7px;
}

.pages_text_and_image_row ul.img_list li:nth-child(1) {
    padding-left: 0px;
}

/* Legal Documentation 开始*/

.legal_documentation_programs .page_middle_content .page_middle_content_text {
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    padding: 34px 42px 20px 42px;
    margin: 0px 0px 50px;
    background: #FFF;
}

.legal_documentation_programs .page_middle_content .page_middle_content_text h3 {
    color: #2544a2;
    font-size: 20px;
    margin-bottom: 40px;
}

.legal_documentation_programs .page_middle_content .page_middle_content_text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    cursor: pointer;
}

.legal_documentation_programs .page_middle_content .page_middle_content_text a {
    color: #2828FF;
    text-decoration: underline;
}

.legal_documentation_programs .page_middle_content .page_middle_content_text a:hover {
    text-decoration: none;
}

/* Legal Documentation 结束*/

/* COMPARE FOREX TRADING ACCOUNTS page-id-43 */

.compare_forex_content {
    padding-top: 85px;
}

.compare_forex_content .page_title_center {
    padding-bottom: 55px;
}

.compare_forex .table_body {
    font-size: 0;
    color: #fff;
}

.compare_forex .table_body .table_body_item {
    padding-top: 35px;
}

.compare_forex .table_body .table_body_item.table_body_item2 {
    padding-top: 0px;
}

.compare_forex .table_body .table_body_item .shadow_list {
    box-shadow: 0 5px 9px #2454ef;
    background: #2454ef;
}

.compare_forex .table_body .table_body_item2 .shadow_list {
    background: #1f49cf;
}

.compare_forex .table_body .table_body_item.table_body_item2 .table_head .table_item_header {
    height: 235px;
}

.compare_forex .table_body .table_head .table_item_header {
    background: #2454ef;
    height: 200px;
}

.compare_forex .table_body .table_body_item:nth-child(2) .table_head {
    padding-top: 0;
}

.compare_forex .table_body .table_body_item:nth-child(2) .table_head .table_item_header {
    background: #1f49cf;
    padding-top: 55px;
    height: 235px;
}

.compare_forex .table_body .table_body_item .row:last-child {
    border: none;
}

.compare_forex .table_body .table_head .table_item_header {
    padding-top: 35px;
}

.compare_forex .table_body .table_body_item .table_head .table_item_header p {
    padding: 0 20px;
    font-size: 14px;
}

.compare_forex .table_body .table_body_item:nth-child(3) .table_head .table_item_header p {
    margin-top: -19px;
}

.compare_forex .table_body .table_head p {
    margin: 0;
}

.compare_forex .table_body .table_head .table_item_header {
    position: relative;
    text-align: center;
}

.compare_forex .table_body .table_head .table_item_header .popular {
    position: absolute;
    left: -2px;
    top: -1px;
}

.compare_forex .table_body .table_body_item {
    display: inline-block;
    vertical-align: top;
    width: 33%;
    font-size: 0;
}

.compare_forex .table_body .table_body_item .table_head {
    border-bottom: 1px solid #4a68c9;
}

.compare_forex .table_body .table_body_item .row {
    border-bottom: 1px solid #4a68c9;
    padding: 15px 0;
}

.compare_forex .table_body .table_body_item .row:last-child {
    text-align: center;
    padding-top: 26px;
    padding-bottom: 30px;
}

.compare_forex .table_body .table_body_item:nth-child(2) .row:last-child {
    padding-top: 42px;
    padding-bottom: 45px;
}

.compare_forex .table_body .table_body_item .row .more {
    font-size: 15px;
    display: inline-block;
    background: #d72d2b;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 10px 20px;
}

.compare_forex .table_body .table_body_item .row .more:hover {
    background: #fd0202 !important;
}

.compare_forex .table_body .table_body_item:nth-child(2) .table_head {
    background: #1f49cf;
}

.compare_forex .table_body .table_body_item:nth-child(2) .row {
    padding: 15px 0;
}

.compare_forex .table_body .table_body_item .row_left {
    display: inline-block;
    font-size: 14px;
    width: 49.5%;
    vertical-align: middle;
    padding-left: 20px;
    color: #c5d3ff;
    margin-bottom: 0;
    line-height: 1.2;
}

.compare_forex .table_body .table_body_item .row_right {
    display: inline-block;
    font-size: 14px;
    width: 49.5%;
    vertical-align: middle;
    padding-left: 10px;
    margin-bottom: 0;
    line-height: 1.2;
}

.compare_forex .table_body_item:hover {
    -webkit-transform: scale(1.07, 1.07);
    -moz-transform: scale(1.07, 1.07);
    -ms-transform: scale(1.07, 1.07);
    -o-transform: scale(1.07, 1.07);
    transform: scale(1.07, 1.07);
    position: relative;
    z-index: 33;
}

.compare_forex .table_body:hover .table_body_item .table_item_header {
    padding-top: 35px !important;
}

.compare_forex .table_body:hover .table_body_item.table_body_item2 {
    padding-top: 35px !important;
}

.compare_forex .table_body:hover .table_body_item.table_body_item2 .table_head .table_item_header {
    height: 200px;
}

.compare_forex .table_body:hover .table_body_item.table_body_item2 .table_head .table_item_header p {
    margin-top: -13px;
}

.compare_forex .table_body:hover .table_body_item.table_body_item2:nth-child(2) .row:last-child {
    padding-top: 26px;
    padding-bottom: 30px;
}

/* template_islamic_account_v2 开始 */

.islamic_account_v2 .new_islamic_img_list {
    margin-top: 50px;
}

.islamic_account_v2 .new_islamic_img_list_box {
    width: 47%;
}

.islamic_account_v2 .new_islamic_img_list .strong_box {
    margin-bottom: 15px;
}

.islamic_account_v2 .new_islamic_img_list strong {
    font-size: 13px;
    display: block;
    text-align: center;
    color: #1f51ef;
}

.islamic_account_v2 .new_islamic_img_list .img_box {
    cursor: pointer;
    position: relative;
    text-align: center;
}

.islamic_account_v2 .new_islamic_img_list .img_box img {
    width: 100%;
}

.islamic_account_v2 .new_islamic_img_list .img_box span {
    background: rgba(6, 19, 49, 0.4) url(images/new_islamic_img_list_icon.png) center center no-repeat;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
}

.islamic_account_v2 .new_islamic_img_list .img_box:hover span {
    display: block;
}

.islamic_account_v2 .compare_content {
    margin-bottom: 100px;
}

.islamic_account_v2 .page_title_center {
    margin-bottom: 55px;
}

.islamic_account_v2 .compare_content .table_new .inner {
    max-width: 840px;
}

.islamic_account_v2 .compare_content .table_new {
    background: url(images/home_row5_bg.jpg) center 75px no-repeat;
    background-size: 100%;
}

.islamic_account_v2 .compare_content .table_body {
    margin-left: -2%;
    margin-right: -2%;
    font-size: 0;
}

.islamic_account_v2 .compare_content .table_body_item {
    font-size: 0;
    width: 46%;
    margin-left: 2%;
    margin-right: 2%;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}

.islamic_account_v2 .compare_content .table_body_item:hover {
    transform: scale(1.07, 1.07);
}

.islamic_account_v2 .compare_content .table_body_item:first-child {
    background-color: #2454ef;
}

.islamic_account_v2 .compare_content .table_body_item:last-child {
    background-color: #1f51ef;
}

.islamic_account_v2 .compare_content .table_body .table_head {
    padding-top: 0px;
    min-height: inherit;
    padding-left: 25px;
    padding-right: 25px;
}

.islamic_account_v2 .compare_content .table_body .table_item_header {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #4b6ee1;
    text-align: center;
}

.islamic_account_v2 .compare_content .table_item_header p {
    line-height: 1.2;
    padding: 0 20px;
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.islamic_account_v2 .compare_content .table_body_item:nth-child(2) .row:last-child {
    padding-top: 26px;
    padding-bottom: 30px;
}

.islamic_account_v2 .compare_content .table_content {
    padding-left: 25px;
    padding-right: 25px;
}

.islamic_account_v2 .compare_content .table_body_item .row {
    padding: 15px 0;
    border-bottom: 2px solid #4b6ee1;
}

.islamic_account_v2 .compare_content .table_body_item .row_left {
    width: 47.5%;
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
    padding-left: 20px;
    color: #c5d3ff;
}

.islamic_account_v2 .compare_content .table_body_item .row_right {
    width: 51.5%;
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
    padding-left: 10px;
    color: #ffffff;
}

.islamic_account_v2 .compare_content .table_body_item .row_right span {
    font-size: 12px;
}

.islamic_account_v2 .compare_content .table_body_item .row:last-child {
    border-bottom: none;
    text-align: center;
    padding-top: 26px;
    padding-bottom: 30px;
}

.islamic_account_v2 .islamic_bottom_list .item {
    margin-bottom: 15px;
}

.islamic_account_v2 .islamic_bottom_list .title {
    background: #dde5f5;
    padding: 23px 30px 23px 60px;
    position: relative;
    border-radius: 5px;
    border: none;
    color: #2544a2;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.islamic_account_v2 .islamic_bottom_list .icon {
    display: block;
    background: url(images/islamic_icon_arrow02db.png?v=2019) top center no-repeat;
    width: 13px;
    height: 22px;
    position: absolute;
    left: 30px;
    top: 24px;
}

.islamic_account_v2 .islamic_bottom_list .text {
    padding: 35px 20px 0px 60px;
    display: none;
}

.islamic_account_v2 .islamic_bottom_list p {
    color: #000;
}

.islamic_account_v2 .islamic_bottom_list p a {
    text-decoration: underline;
}

.islamic_account_v2 .islamic_bottom_list h3 {
    font-weight: normal;
    font-size: 25px;
    margin-top: 30px;
    text-align: center;
    color: #2544a2;
}

.islamic_v2_popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    background-color: rgba(8, 15, 30, 0.8);
    display: none;
}

.islamic_v2_popup_content {
    width: 1010px;
    position: absolute;
    z-index: 9999;
    top: 120px;
    left: 50%;
    margin-left: -450px;
    padding: 0px 20px;
    display: none;
}

.islamic_v2_popup_content img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.islamic_v2_popup_content .close_button {
    background: url(images/bg_islamic_v2_popup_close_button.png) center top no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: -15px;
    top: -33px;
    display: block;
    width: 31px;
    height: 31px;
    cursor: pointer;
}

/* template_islamic_account_v2 结束 */

.text_public_link {
    text-decoration: underline;
    color: #0033ff;
}

.text_public_link:hover {
    text-decoration: none;
}

.myfxbook_wrapper .info_box p {
    font-size: 12px;
    color: #282828;
}

.zulu_trader_wrapper .zulu_cover {
    margin-bottom: 70px;
}

.zulu_trader_wrapper .zulu_feature {
    margin-bottom: 100px;
}

.zulu_trader_wrapper .zulu_feature .page_title_center {
    margin-bottom: 50px;
}

.zulu_trader_wrapper .zulu_feature ul {
    font-size: 0;
}

.zulu_trader_wrapper .zulu_feature li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    margin-bottom: 50px;
}

.zulu_trader_wrapper .zulu_feature li .right {
    float: left;
    width: 70%;
    margin-left: 20px;
}

.zulu_trader_wrapper .zulu_feature li h3 {
    font-size: 20px;
    font-style: italic;
    color: #2544a2;
    margin-bottom: 5px;
}

.zulu_trader_wrapper .zulu_feature li p {
    font-size: 17px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 0;
}

.zulu_trader_wrapper .zulu_platform {
    margin-bottom: 220px;
}

.zulu_trader_wrapper .zulu_started {
    padding: 40px 62px;
    background: url(images/zulu_trader_start_bg.jpg) no-repeat;
    background-size: cover;
    margin-bottom: 30px;
}

.zulu_trader_wrapper .zulu_started .left {
    width: 40%;
}

.zulu_trader_wrapper .zulu_started h1 {
    color: #fefefe;
    font-size: 34px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.zulu_trader_wrapper .zulu_started h1:after {
    content: "";
    display: block;
    margin-top: 20px;
    width: 81px;
    height: 5px;
    background-color: #ffffff;
}

.zulu_trader_wrapper .zulu_started li {
    margin-bottom: 40px;
}

.zulu_trader_wrapper .zulu_started p {
    width: 80%;
    line-height: 1.2;
    margin-left: 15px;
    margin-bottom: 0;
    font-size: 23px;
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
    color: #fff;
}

.zulu_trader_wrapper .zulu_started a {
    width: 100%;
    max-width: 230px;
    padding: 15px;
    font-size: 15px;
    border-radius: 6px;
    color: #ffffff;
    background-color: #fc5b08;
    display: block;
    text-align: center;
}

.zulu_trader_wrapper .zulu_started a:hover {
    background-color: #fa732d;
}

.zulu_trader_wrapper .zulu_text {
    color: #908d8d;
    font-size: 12px;
}

.economic_calendar_wrapper .calendar_box {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sentiment_indicators_wrapper .markets_list3 {
    margin-bottom: 0;
}

.sentiment_indicators_wrapper .canvas_box {
    margin-bottom: 20px;
}

.sentiment_indicators_wrapper .active-users,
.sentiment_indicators_wrapper .row_bottom {
    font-size: 0;
}

.sentiment_indicators_wrapper .chart-wraper,
.sentiment_indicators_wrapper .row_bottom_item {
    width: 25% !important;
    text-align: center;
    display: inline-block;
    vertical-align: top;
}

.sentiment_indicators_wrapper .chart-wraper h3 {
    font-weight: normal;
    font-size: 18px;
    color: #707070;
    margin: 60px 0 10px;
}

.sentiment_indicators_wrapper .chart-wraper canvas {
    width: 164px !important;
    height: 164px !important;
}

.sentiment_indicators_wrapper .row_bottom .row_bottom_item img {
    margin: 5px 0;
}

.sentiment_indicators_wrapper .row_bottom_item .red_button {
    width: 102px;
    font-size: 14px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.forex_vps_wrapper .accounts_proecn_step_content {
    margin-bottom: 150px;
}

.forex_vps_wrapper .accounts_proecn_step_content .red_button,
.smart_trader_tools_wrapper .accounts_proecn_step_content .red_button,
.pro_trader_tools_wrapper .accounts_proecn_step_content .red_button {
    margin: 0 auto;
    display: block;
    width: 132px;
    font-size: 12px;
    text-align: center;
}

.forex_vps_wrapper .logo_box {
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    padding: 45px;
    margin-bottom: 110px;
    background: #FFF;
}

.forex_vps_wrapper .logo_box .page_title_center {
    margin-bottom: 50px;
}

.forex_vps_wrapper .logo_box ul {
    font-size: 0;
    margin-left: -2%;
    margin-right: -2%;
}

.forex_vps_wrapper .logo_box li {
    width: 21%;
    display: inline-block;
    vertical-align: top;
    margin-left: 2%;
    margin-right: 2%;
    text-align: center;
}

.forex_vps_wrapper .video_box {
    text-align: center;
}

.forex_vps_wrapper .video_box .page_title_center {
    margin-bottom: 40px;
}

.forex_vps_wrapper .video_box iframe {
    max-width: 700px;
}

.trading_signals_wrapper .video_box .video_item {
    width: 48%;
}

.trading_signals_wrapper .video_box .h4_box {
    margin: 25px 0;
}

.trading_signals_wrapper .video_box h4 {
    font-size: 20px;
    margin: 0;
    color: #2544a2;
}

.vantagefx_awards_wrapper .page_top_text {
    margin-bottom: 90px;
}

.vantagefx_awards_wrapper .awards_box {
    font-size: 0;
    margin-left: -2%;
    margin-right: -2%;
}

.vantagefx_awards_wrapper .awards_list {
    width: 21%;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 25px;
    margin-bottom: 25px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.vantagefx_awards_wrapper .awards_list img {
    margin-bottom: 10px;
}

.vantagefx_awards_wrapper .awards_list p {
    font-size: 13px;
    line-height: 1.2;
    color: #2544a2;
    margin: 0;
}

.regulation_wrapper .corporate_box {
    font-size: 0;
    margin-left: -2%;
    margin-right: -2%;
    margin-bottom: 45px;
}

.regulation_wrapper .corporate_list {
    width: 29.33%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 30px 40px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    background: #fff;
    border-radius: 3px;
    border: solid 1px #ebebeb;
}

.regulation_wrapper .corporate_list img {
    margin-bottom: 20px;
}

.regulation_wrapper .corporate_list .title_box {
    margin-bottom: 25px;
}

.regulation_wrapper .corporate_list .title {
    font-size: 19px;
    color: #2544a2;
    text-align: center;
}

.regulation_wrapper .corporate_list .title:after {
    content: "";
    display: block;
    margin: 10px auto 0px;
    width: 70px;
    height: 3px;
    background-color: #2544a2;
}

.regulation_wrapper .corporate_list p {
    font-size: 13px;
    margin: 0;
    color: #17307d;
    text-align: left;
}

/* OUR MOST ADVANCED TRADING ACCOUNT,
PRO ECN  page-id-85 */

.accounts_proecn_step_content {
    padding: 34px 0px 0px;
}

.accounts_proecn_step_content h2 {
    margin-bottom: 40px;
}

.accounts_proecn_step_content ul {
    margin: 0px;
    padding: 0px;
    border: 1px solid #ebebeb;
    background: #FFF;
    border-radius: 3px;
}

.accounts_proecn_step_content ul:after {
    content: "";
    display: block;
    clear: both;
}

.accounts_proecn_step_content ul li {
    padding: 0px;
    margin: 0px;
    width: 33.33333%;
    float: left;
}

.accounts_proecn_step_content ul li .text_box {
    padding: 40px 30px 62px;
    position: relative;
}

.accounts_proecn_step_content ul li .text_box .text_box_inner {}

.accounts_proecn_step_content ul li h3 {
    padding: 0px 75px 68px 0px;
    margin: 0px;
    position: relative;
    font-size: 28px;
    color: #2544a2;
    line-height: 1.2;
}

.accounts_proecn_step_content ul li h3 span {
    text-align: right;
    position: absolute;
    right: 0px;
    top: -24px;
    font-size: 124px;
    line-height: 1;
}

.accounts_proecn_step_content ul li p {
    padding: 0px;
    margin: 0px;
    position: relative;
    font-size: 20px;
    color: #282828;
    line-height: 1.2;
}

.accounts_proecn_step_content ul li p a {
    color: #0033ff;
    text-decoration: underline;
}

.accounts_proecn_step_content ul li p a:hover {
    color: #0033ff;
    text-decoration: none;
}

.accounts_proecn_step_content ul li:nth-child(3) p {
    font-size: 16px;
}

.accounts_proecn_step_content ul li .blue_text_box {
    background: #2544a2;
}

.accounts_proecn_step_content ul li .blue_text_box h3 {
    color: #FFF;
}

.accounts_proecn_step_content ul li .blue_text_box p {
    color: #FFF;
}

.accounts_proecn_step_content ul li .blue_text_box p a {
    color: #FFF;
}

.accounts_proecn_step_content ul li .blue_text_box p a:hover {
    color: #FFF;
}

.accounts_proecn_step_content ul li .blue_text_box:before,
.accounts_proecn_step_content ul li .blue_text_box:after {
    content: "";
    display: block;
    position: absolute;
    left: -28px;
    bottom: 30px;
    width: 56px;
    height: 56px;
}

.accounts_proecn_step_content ul li .blue_text_box:before {
    background: url(images/accounts_proecn_step_content_arrow1.png) right top no-repeat;
}

.accounts_proecn_step_content ul li .blue_text_box:after {
    left: auto;
    right: -28px;
    background: url(images/accounts_proecn_step_content_arrow2.png) right top no-repeat;
}

/*TRADING HOURS css 开始*/

.trading_hours_content {}

.trading_hours_content ul {
    padding: 0px;
    margin: 0px;
}

.trading_hours_content ul li {
    padding: 0px 0px 25px;
    margin: 0px;
}

.trading_hours_content ul li.add_bg {
    background: #FFF;
}

.trading_hours_content .btn_box {
    padding: 14px 20px;
    background-color: #e0efff;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.trading_hours_content .btn_box strong {
    font-size: 19px;
    color: #282828;
}

.trading_hours_content .btn {
    position: absolute;
    right: 20px;
    top: 20px;
    transition: all 0.5;
}

.trading_hours_content .btn.active {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.trading_hours_content .table_box {
    display: none;
    border-top: 3px solid #f1f3f4;
}

.trading_hours_content .table_box table {
    width: 100%;
}

.trading_hours_content th,
.trading_hours_content td {
    text-align: center;
    padding: 6px 20px;
}

.trading_hours_content th {
    font-size: 15px;
    color: #d52e2a;
    line-height: 1.2;
    background: #f9f9f9;
    padding: 11px 5px 13px;
    font-weight: bold;
}

.trading_hours_content td {
    font-size: 15px;
    color: #282828;
    line-height: 1.2;
    background: #FFF;
    padding: 10px 5px;
    border-bottom: 1px solid #e9e9e9;
}

.trading_hours_content table tr th:first-child {
    text-align: left;
    padding-left: 24px;
}

.trading_hours_content table tr td:first-child {
    text-align: left;
    padding-left: 24px;
}

/*TRADING HOURS css 结束*/

/*ENERGY css 开始*/

.energy_table_box {
    width: 100%;
    padding-top: 60px;
}

.energy_table_box table {
    text-align: center;
    font-size: 14px;
    color: #FFF;
    border: 1px solid #e9e9e9;
    border-bottom: 6px solid #e9e9e9;
    width: 100%;
    border-collapse: collapse;
    width: 300px;
    padding: 0px;
    margin: 0px auto;
}

.energy_table_box table tr th {
    border: 1px solid #7a7777;
    text-align: center;
    background: #878484;
    padding: 16px 3px;
    font-size: 16px;
    line-height: 1.2;
    color: #FFF;
    font-weight: bold;
}

.energy_table_box table tr td {
    border: 1px solid #e9e9e9;
    padding: 14px 3px 14px 3px;
    color: #687177;
    line-height: 1.2;
    background: #ffffff;
}

.energy_table_box table tr td:first-child {
    color: #878484;
    font-weight: bold;
    width: 40%;
    font-size: 16px;
}

.energy_table_box table tr:nth-child(odd) td {
    background: #f7f7f7;
}

/*ENERGY css 结束*/

/*UNLIMITED DEMO ACCOUNT css 开始*/

.page_content_form {
    background: url(images/home_row5_bg.jpg) center top no-repeat;
    background-size: cover;
    padding-top: 85px;
    padding-bottom: 110px;
}

.page_content_form p {
    text-align: center;
}

.page_content_form .gform_wrapper {
    padding: 32px 0px 0px;
    margin: 0px auto;
    width: 360px;
    max-width: 100%;
}

body .page_content_form .gform_wrapper ul li.gfield {
    padding: 0px 0px 15px;
    margin: 0px;
}

.page_content_form .gform_wrapper .top_label .gfield_label,
.page_content_form .gform_wrapper legend.gfield_label {
    padding: 0px;
    margin: 0px 0px 10px;
    font-size: 14px;
    color: #17307d;
    line-height: 1.65;
    display: none;
}

body .page_content_form .gform_wrapper .top_label div.ginput_container {
    padding: 0px;
    margin: 0px;
}

.page_content_form .gform_wrapper .top_label input.medium,
.page_content_form .gform_wrapper .top_label select.medium,
.page_content_form .gform_wrapper textarea.medium {
    width: 100%;
    font-size: 16px !important;
    color: #282828 !important;
    padding: 14px 25px !important;
    margin: 0px !important;
    line-height: 20px !important;
    font-family: Century Gothic, sans-serif !important;
    height: 48px;
    border: 0px;
    background: #fff;
    -moz-box-shadow: 0px 3px 3px #e9e9e9;
    -webkit-box-shadow: 0px 3px 3px #e9e9e9;
    box-shadow: 0px 3px 3px #e9e9e9;
    letter-spacing: 0px !important;
}

.page_content_form .gform_wrapper .top_label select.medium {
    padding: 14px 20px 14px 20px !important;
}

.page_content_form .gform_wrapper textarea.medium {
    height: 132px;
}

.page_content_form .gform_wrapper .top_label ::-webkit-input-placeholder {
    color: #282828;
    opacity: 1;
}

.page_content_form .gform_wrapper .top_label :-moz-placeholder {
    color: #282828;
    opacity: 1;
}

.page_content_form .gform_wrapper .top_label ::-moz-placeholder {
    color: #282828;
    opacity: 1;
}

.page_content_form .gform_wrapper .top_label :-ms-input-placeholder {
    color: #282828;
    opacity: 1;
}

.page_content_form .gform_wrapper ul.gform_fields li.gfield .gfield_checkbox {
    padding: 7px 0px 15px;
    margin: 0px;
}

.page_content_form .gform_wrapper ul.gform_fields li.gfield .gfield_checkbox li input[type=checkbox] {
    vertical-align: top;
    margin: 0px !important;
    opacity: 0;
    position: absolute;
}

.page_content_form .gform_wrapper ul.gform_fields li.gfield ul.gfield_checkbox li label {
    display: block;
    color: #2544a2;
    margin: 0px;
    font-size: 14px;
    padding: 0px 0px 0px 22px;
    position: relative;
    max-width: 100%;
}

.page_content_form .gform_wrapper ul.gform_fields li.gfield ul.gfield_checkbox li label::after {
    content: '';
    background: #FFF;
    border-radius: 2px;
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0px;
    top: 3px;
}

.page_content_form .gform_wrapper ul.gform_fields li.gfield ul.gfield_checkbox input[type=checkbox]:checked+label:after {
    background: #2544a2;
}

.page_content_form .gchoice_select_all,
.page_content_form .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked+label,
.page_content_form .gform_wrapper ul.gfield_radio li input[type=radio]:checked+label {
    font-weight: normal;
}

.page_content_form .gform_wrapper .gform_footer {
    padding: 0px;
    margin: 0px;
}

.page_content_form .gform_wrapper .gform_footer input.button,
.page_content_form .gform_wrapper .gform_footer input[type=submit],
.page_content_form .gform_wrapper .gform_page_footer input.button,
.page_content_form .gform_wrapper .gform_page_footer input[type=submit] {
    text-transform: uppercase;
    background: #d72b2f;
    border-radius: 5px;
    border: none;
    display: block;
    text-shadow: 0px 0px 1px #FFF;
    padding: 16px 20px 16px 20px;
    color: #FFF;
    font-size: 16px;
    text-align: center;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-appearance: none;
    cursor: pointer;
    margin: 0px;
    width: 100%;
}

.page_content_form .gform_wrapper .gform_footer input.button:hover,
.page_content_form .gform_wrapper .gform_footer input[type=submit]:hover,
.page_content_form .gform_wrapper .gform_page_footer input.button:hover,
.page_content_form .gform_wrapper .gform_page_footer input[type=submit]:hover {
    background: #fd0202;
    color: #FFF;
    text-decoration: none;
}

.page_content_form .gform_confirmation_message {
    font-size: 20px;
    padding: 50px 0px;
    text-align: center;
}

.page_content_form .gform_wrapper div.validation_error {
    display: none;
}

.page_content_form .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: calc(100% - 0px) !important;
}

.page_content_form .gform_wrapper li.gfield.gfield_error {
    border: 0px;
    background: none;
}

.page_content_form .gform_wrapper.gform_validation_error .top_label input.medium,
.page_content_form .gform_wrapper.gform_validation_error .top_label select.medium {
    width: 100%;
}

.page_content_form .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.page_content_form .gform_wrapper li.gfield_error textarea {
    border: none;
}

.page_content_form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.page_content_form .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-top: 0px;
}

.page_content_form .gform_wrapper .top_label .gfield_error {
    width: calc(100% - 0px);
}

@media only screen and (min-width: 641px) {
    .page_content_form .gform_wrapper .top_label li ul.gfield_checkbox,
    .page_content_form .gform_wrapper .top_label li ul.gfield_radio {
        width: calc(100% + 0px);
    }
}

.page_content_form .gform_wrapper.gf_browser_chrome .gfield_error input[type=email],
.page_content_form .gform_wrapper.gf_browser_chrome .gfield_error input[type=number],
.page_content_form .gform_wrapper.gf_browser_chrome .gfield_error input[type=password],
.page_content_form .gform_wrapper.gf_browser_chrome .gfield_error input[type=tel],
.page_content_form .gform_wrapper.gf_browser_chrome .gfield_error input[type=text],
.page_content_form .gform_wrapper.gf_browser_chrome .gfield_error input[type=url],
.page_content_form .gform_wrapper.gf_browser_chrome .gfield_error select,
.page_content_form .gform_wrapper.gf_browser_chrome .gfield_error textarea,
.page_content_form .gform_wrapper.gf_browser_chrome li.gfield_error.field_sublabel_above .ginput_complex input[type=text] {
    margin-bottom: 0px;
}

/*UNLIMITED DEMO ACCOUNT css 结束*/

/*MAM/PAMM css 开始*/

.mam_pamm_content {}

.mam_pamm_content .pages_text_and_image_row .text_box {
    height: auto !important;
    padding-bottom: 50px;
}

.mam_pamm_content .pages_text_and_image_row ul {
    position: static;
    text-align: left;
    padding: 0px;
}

.mam_pamm_content .pages_text_and_image_row ul:after {
    display: none;
}

.mam_pamm_content .pages_text_and_image_row ul li {
    padding: 0px 0px 18px 30px;
    margin: 0px;
    font-size: 14px;
    color: #17307d;
    line-height: 1.3;
    position: relative;
}

.mam_pamm_content .pages_text_and_image_row ul li:before {
    content: "";
    display: block;
    width: 22px;
    height: 18px;
    background: url(images/pages_text_and_image_row_li_icon.png) left top no-repeat;
    position: absolute;
    left: 0px;
    top: 2px;
}

.mam_pamm_content .pages_text_and_image_row .img_box {
    position: relative;
    width: 45%;
    float: left;
    padding: 136px 0px 50px 40px;
}

.mam_pamm_content .pages_text_and_image_row .img_box .map_video_wrap {
    width: 100%;
    position: relative;
}

.mam_pamm_content .pages_text_and_image_row .img_box .map_video_wrap img {
    display: block;
    width: 100%;
    height: auto;
}

.mam_pamm_content .pages_text_and_image_row .img_box .map_video_wrap iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    left: 0px;
    top: 0px;
}

.mam_pamm_content .pages_text_and_image_row .img_box p {
    padding: 6px 0px;
    margin: 0px;
    font-size: 15px;
    color: #17307d;
    line-height: 1.3;
}

/*MAM/PAMM css 结束*/

/*Promo 888 Css 开始*/

.list_promo_form {
    background: rgba(29, 40, 54, 0.7);
    width: 372px;
    margin: 70px auto 0px;
    max-width: 100%;
    position: relative;
    padding: 74px 38px 40px;
}

.list_promo_form .list_promo_form_title {
    display: block;
    width: 172px;
    height: 63px;
    position: absolute;
    left: 50%;
    margin-left: -86px;
    top: -8px;
}

.list_promo_form h2 {
    padding: 0px;
    margin: 0px -10px 28px;
    font-size: 22px;
    color: #FFF;
    line-height: 1.2;
    text-align: center;
    text-transform: none;
}

.list_promo_form h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #FFF;
    margin: 22px auto 0px;
}

.list_promo_form h2 span {
    font-size: 20px;
}

.list_promo_form .gform_wrapper {
    padding: 0px;
    margin: 0px;
}

body .list_promo_form .gform_wrapper ul li.gfield {
    padding: 0px 0px 13px;
    margin: 0px;
}

.list_promo_form .gform_wrapper .top_label .gfield_label,
.list_promo_form .gform_wrapper legend.gfield_label {
    display: none;
}

body .list_promo_form .gform_wrapper .top_label div.ginput_container {
    padding: 0px;
    margin: 0px;
}

.list_promo_form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {}

.list_promo_form .gform_wrapper .top_label input.medium,
.list_promo_form .gform_wrapper .top_label select.medium {
    width: calc(100% - 0px);
    padding: 5px 24px !important;
    height: 48px;
    font-size: 15px;
    color: #282828;
    line-height: 38px;
    border: 0px;
    border-radius: 2px;
}

.list_promo_form .gform_wrapper .gfield_checkbox {
    padding: 8px 0px 0px;
}

.list_promo_form .gform_wrapper .gfield_checkbox li input[type=checkbox] {
    vertical-align: top;
    margin: 3px 0px 0px !important;
}

.list_promo_form .gform_wrapper ul.gfield_checkbox li label {
    vertical-align: top;
    color: #FFF;
    margin: 0px;
    font-size: 12px;
    padding: 0px 0px 0px 5px;
    max-width: 86%;
}

.list_promo_form .gform_wrapper ul.gform_fields li.gfield .gfield_checkbox {
    padding: 17px 0px 8px;
    margin: 0px;
    width: calc(100% + 0px);
}

.list_promo_form .gform_wrapper ul.gform_fields li.gfield .gfield_checkbox li input[type=checkbox] {
    vertical-align: top;
    margin: 0px !important;
    width: 16px !important;
    height: 16px !important;
    top: 0px;
    opacity: 0;
    position: absolute;
}

.list_promo_form .gform_wrapper ul.gform_fields li.gfield ul.gfield_checkbox li label {
    display: block;
    color: #fff;
    margin: 0px;
    font-size: 12px;
    padding: 0px 0px 0px 30px;
    position: relative;
    max-width: 100%;
}

.list_promo_form .gform_wrapper ul.gform_fields li.gfield ul.gfield_checkbox li label::after {
    content: '';
    background: #FFF;
    border-radius: 0px;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0px;
    top: 0px;
}

.list_promo_form .gform_wrapper ul.gform_fields li.gfield ul.gfield_checkbox input[type=checkbox]:checked+label:after {
    background: #fff url(images/img_checked.png);
}

.list_promo_form .gchoice_select_all,
.list_promo_form .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked+label,
.list_promo_form .gform_wrapper ul.gfield_radio li input[type=radio]:checked+label {
    font-weight: normal;
}

.list_promo_form .gform_wrapper .gform_footer {
    padding: 0px;
    margin: 0px;
}

.list_promo_form .gform_wrapper .gform_footer input.button,
.list_promo_form .gform_wrapper .gform_footer input[type=submit],
.list_promo_form .gform_wrapper .gform_page_footer input.button,
.list_promo_form .gform_wrapper .gform_page_footer input[type=submit] {
    text-transform: uppercase;
    background: #e91d2c;
    border-radius: 5px;
    text-shadow: 0px 0px 1px #FFF;
    display: block;
    width: 100%;
    height: 52px;
    padding: 15px 20px 15px 20px;
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    text-align: left;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-appearance: none;
    cursor: pointer;
    text-align: center;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.list_promo_form .gform_wrapper .gform_footer input.button:hover,
.list_promo_form .gform_wrapper .gform_footer input[type=submit]:hover,
.list_promo_form .gform_wrapper .gform_page_footer input.button:hover,
.list_promo_form .gform_wrapper .gform_page_footer input[type=submit]:hover {
    background: #fd0202;
    color: #FFF;
    text-decoration: none;
}

.list_promo_form .gform_wrapper ::-webkit-input-placeholder {
    color: #282828;
    opacity: 1;
    font-size: 15px;
}

.list_promo_form .gform_wrapper :-moz-placeholder {
    color: #282828;
    opacity: 1;
    font-size: 14px;
}

.list_promo_form .gform_wrapper ::-moz-placeholder {
    color: #282828;
    opacity: 1;
    font-size: 14px;
}

.list_promo_form .gform_wrapper :-ms-input-placeholder {
    color: #282828;
    opacity: 1;
    font-size: 14px;
}

.list_promo_form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.list_promo_form .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-top: 0px;
}

.list_promo_form .gform_wrapper div.validation_error {
    display: none !important;
}

.list_promo_form .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: calc(100% - 0px) !important;
}

.list_promo_form .gform_wrapper li.gfield.gfield_error,
.list_promo_form .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    border: none !important;
    background: none !important;
    margin-bottom: 0px !important;
}

.list_promo_form .gform_wrapper .top_label .gfield_error {
    width: calc(100% - 0px);
}

.list_promo_form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
    padding: 3px 0px 0px;
    font-size: 12px !important;
    font-weight: normal !important;
}

.list_promo_form .gform_wrapper.gform_validation_error .top_label input.medium {
    width: 100%;
    margin: 0px;
    border: none !important
}

.list_promo_form .gform_confirmation_message {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    padding: 0px;
    margin: 0px;
    color: #FFF;
}

body .list_promo_form .gform_wrapper ul li.gfield#field_14_9 {
    overflow: hidden;
}

body .list_promo_form .gform_wrapper ul li.gfield#field_14_9 .gfield_label {
    padding-bottom: 10px;
    font-style: italic;
}

.list_promo_form .gform_wrapper .gform_fileupload_multifile .gform_drop_area {
    border: 1px solid #ffffff;
    background: #ffffff;
    text-align: right;
    padding: 4px;
    margin: 0px;
}

.list_promo_form .gform_wrapper span.gform_drop_instructions {
    display: none;
}

.list_promo_form .gform_wrapper input.button.gform_button_select_files {
    height: 34px;
    padding: 0 !important;
    border: none;
    background-image: linear-gradient(0deg, #cbcbcb 0%, #e7e7e7 100%), linear-gradient( #adadad, #adadad);
    width: 94px;
    text-align: center;
    border-radius: 3px;
    font-size: 15px;
    color: #000000;
    outline-style: none;
}

.list_promo_form #gform_preview_14_9:after {
    content: "";
    display: block;
    width: 100%;
    height: 0px;
    clear: both;
}

@media only screen and (max-width: 641px) {
    .gform_wrapper .ginput_container span:not(.ginput_price) {
        display: none !important;
    }
}

.list_promo_content_text {
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    padding: 34px 42px 20px 42px;
    margin: 0px 0px 50px;
    background: #FFF;
}

.list_promo_content_text h2 {
    padding: 0px;
    margin: 0px 0px 25px;
    line-height: 1.2;
    color: #2544a2;
    font-size: 27px;
    text-transform: uppercase;
    font-weight: normal;
}

.list_promo_content_text h2:after {
    content: "";
    display: block;
    margin: 22px 0px 0px;
    width: 70px;
    height: 3px;
    background: #2544a2;
}

.list_promo_content_text p {
    padding: 0px;
    margin: 0px 0px 20px;
    font-size: 14px;
    color: #17307d;
    line-height: 1.65;
    text-align: justify;
}

.list_promo_content_text p a {
    color: #0000ff;
    text-decoration: underline;
}

.list_promo_content_text p a:hover {
    color: #0000ff;
    text-decoration: none;
}

.list_promo_content_text table {
    text-align: center;
    font-size: 12px;
    color: #687177;
    border: 1px solid #e9e9e9;
    border-bottom: 6px solid #e9e9e9;
    width: 100%;
    border-collapse: collapse;
}

.list_promo_content_text table tr th {
    border: 1px solid #4571fb;
    text-align: center;
    background: #2450d7;
    padding: 12px 3px;
    line-height: 1.2;
    color: #FFF;
    font-weight: bold;
    position: relative;
}

.list_promo_content_text table tr th:after {
    content: "";
    text-align: center;
    display: block;
    width: 10px;
    height: 10px;
    background: #2450d7;
    position: absolute;
    left: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    bottom: -5px;
    margin-left: -5px;
}

.list_promo_content_text table tr td {
    height: 80px;
    border: 1px solid #e9e9e9;
    padding: 10px 3px 10px 3px;
    color: #687177;
    line-height: 1.2;
    background: #f7f7f7;
}

.list_promo_content_text table tr:nth-child(2n) td {
    background: #fff;
}

.list_promo_content_text table tr td strong {
    display: block;
    padding: 8px 0px 0px;
    margin: 0px;
}

/* .list_promo_content_text ul{padding:0px 0px 20px;margin:0px;} */

.list_promo_content_text>ul>li>ul {
    padding-left: 35px;
    padding-top: 10px;
}

.list_promo_content_text ul li {
    padding: 0px;
    margin-bottom: 10px;
    position: relative;
    font-size: 14px;
    color: #17307d;
    line-height: 1.8;
    text-indent: 35px;
}

.list_promo_content_text ul li:last-child {
    margin-bottom: 0;
}

.list_promo_content_text ul li:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #17307d;
    position: absolute;
    left: 0px;
    top: 11px;
    border-radius: 50%;
}

.list_promo_content_text ol {
    padding: 0px 0px 20px;
    margin: 0px;
}

.list_promo_content_text ol li {
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    color: #17307d;
    line-height: 1.8;
}

.list_promo_content_text ol li:last-child {
    margin-bottom: 0;
}

.list_promo_content_text ol li ol {
    padding: 0px;
    margin: 0px;
}

.list_promo_content_text ol li ol li {
    text-indent: 35px;
}

.blue_table_content {
    padding: 30px 0px 0px;
    margin: 0px auto 35px;
    width: 600px;
    max-width: 100%;
}

.blue_table_content p {
    text-align: center;
    font-size: 14px;
    color: #687177;
}

.blue_table_content table {
    text-align: center;
    font-size: 12px;
    color: #687177;
    width: 100%;
    border-bottom: 2px solid #2450d7;
}

.blue_table_content table tr th {
    border: 1px solid #2450d7;
    border-top: none;
    text-align: center;
    padding: 8px 5px 8px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFF;
    background: #2450d7;
    font-size: 15px;
}

.blue_table_content table tr td {
    width: 33.3333%;
    text-align: center;
    border: 1px solid #eeeeee;
    padding: 21px 5px;
    line-height: 1.2;
    background: #f7f7f7;
    font-size: 14px;
    color: #687177;
}

.blue_table_content table tr:nth-child(even) td {
    background: #ffffff;
}

.blue_table_content table tr th {
    position: relative;
}

.blue_table_content table tr th:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #2450d7;
    position: absolute;
    left: 50%;
    transform: rotate(45deg);
    bottom: -5px;
    margin-left: -5px;
}

.blue_full_table_content {
    padding: 30px 0px 0px;
    margin: 0px -42px 35px;
}

.blue_full_table_content table {
    text-align: center;
    font-size: 12px;
    color: #687177;
    width: 100%;
    border-bottom: 6px solid #e9e9e9;
}

.blue_full_table_content table tr th {
    border: 1px solid #2450d7;
    border-top: none;
    text-align: center;
    padding: 8px 5px 8px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFF;
    background: #2450d7;
    font-size: 15px;
}

.blue_full_table_content table tr td {
    width: 20%;
    text-align: center;
    border: 1px solid #eeeeee;
    padding: 21px 5px;
    line-height: 1.2;
    background: #f7f7f7;
    font-size: 14px;
    color: #687177;
}

.blue_full_table_content table tr:nth-child(even) td {
    background: #ffffff;
}

.blue_full_table_content table tr th {
    position: relative;
}

.blue_full_table_content table tr th:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #2450d7;
    position: absolute;
    left: 50%;
    transform: rotate(45deg);
    bottom: -5px;
    margin-left: -5px;
}

.gray_table_content {
    width: 392px;
    padding: 30px 0px 0px;
    margin: 0px auto 35px;
}

.gray_table_content p {
    font-size: 15px;
    color: #878484;
}

.gray_table_content table {
    text-align: center;
    font-size: 14px;
    color: #FFF;
    border: 1px solid #e9e9e9;
    border-bottom: 8px solid #e9e9e9;
    width: 100%;
    border-collapse: collapse;
    width: 100%;
    padding: 0px;
    margin: 0px auto;
}

.gray_table_content table tr th {
    border: 1px solid #747272;
    text-align: center;
    background: #878484;
    padding: 7px 3px;
    font-size: 15px;
    line-height: 1.2;
    color: #FFF;
    font-weight: bold;
}

.gray_table_content table tr td {
    border: 1px solid #e9e9e9;
    padding: 10px 3px 10px 3px;
    color: #687177;
    line-height: 1.2;
    background: #ffffff;
}

.gray_table_content table tr td:first-child {
    color: #bd1616;
}

.gray_table_content table tr:nth-child(odd) td {
    background: #f7f7f7;
}

.list_promo_table_content {
    margin: 0px -18px;
    padding-bottom: 20px;
}

.list_promo_table_content:after {
    content: "";
    display: block;
    clear: both;
    width: 100%;
}

.list_promo_table_content .table_content {
    width: 50%;
    float: left;
    padding: 0px 18px 35px;
}

.list_promo_table_content .table_content p {
    background: #FFF;
    padding: 13px 20px 14px;
    margin: 0px;
    height: 46px;
}

.list_promo_table_content .table_content img.cash_bonus_title_img {
    display: block;
    padding: 0px;
    margin: 0px;
}

.list_promo_table_content .table_content table {
    text-align: center;
    font-size: 14px;
    color: #FFF;
    border: 1px solid #e9e9e9;
    border-bottom: 6px solid #e9e9e9;
    width: 100%;
    border-collapse: collapse;
    width: 100%;
    padding: 0px;
    margin: 0px auto;
}

.list_promo_table_content .table_content table tr th {
    border: 1px solid #7a7777;
    text-align: center;
    background: #878484;
    padding: 7px 3px;
    font-size: 15px;
    line-height: 1.2;
    color: #FFF;
    font-weight: bold;
}

.list_promo_table_content .table_content table tr td {
    border: 1px solid #e9e9e9;
    padding: 17px 3px 17px 3px;
    color: #687177;
    line-height: 1.2;
    background: #ffffff;
}

.list_promo_table_content .table_content table tr td:first-child {
    width: 25%;
}

.list_promo_table_content .table_content table tr:nth-child(odd) td {
    background: #f7f7f7;
}

.list_promo_page_bottom p a {
    color: #0000ff;
    text-decoration: none;
}

.list_promo_page_bottom p a:hover {
    color: #0000ff;
    text-decoration: underline;
}

/*Promo 888 Css 结束*/

.forex_tabel {
    width: 100%;
}

.forex_tabel table {
    text-align: center;
    font-size: 12px;
    color: #687177;
    border: 1px solid #e9e9e9;
    border-bottom: 6px solid #e9e9e9;
    width: 100%;
    border-collapse: collapse;
}

.forex_tabel table tr th {
    border: 1px solid #4571fb;
    text-align: center;
    background: #2450d7;
    padding: 12px 3px;
    line-height: 1.2;
    color: #FFF;
    font-weight: bold;
    position: relative;
}

.forex_tabel table tr th:after {
    content: "";
    text-align: center;
    display: block;
    width: 10px;
    height: 10px;
    background: #2450d7;
    position: absolute;
    left: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    bottom: -5px;
    margin-left: -5px;
}

.forex_tabel table tr td {
    height: 80px;
    border: 1px solid #e9e9e9;
    padding: 10px 3px 10px 3px;
    color: #687177;
    line-height: 1.2;
    background: #f7f7f7;
}

.forex_tabel table tr:nth-child(2n) td {
    background: #fff;
}

.forex_tabel table tr td strong {
    display: block;
    padding: 8px 0px 0px;
    margin: 0px;
}

/*CPA Affilicated Programs css 开始*/

.cpa_affilicated_programs .tableBox {
    position: relative;
}

.cpa_affilicated_programs .text_box img {
    position: absolute;
    bottom: 65px;
    right: 0;
}

.cpa_affilicated_programs .cpa_affilicated_programs_text .text_left {
    width: 47%;
}

.cpa_affilicated_programs .cpa_affilicated_programs_text .text_right {
    width: 51%;
    padding-top: 10px;
}

.cpa_affilicated_programs .cpa_affilicated_programs_text .text_right h3 {
    font-size: 33px;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: right;
}

.cpa_affilicated_programs .cpa_affilicated_programs_text .text_right p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: right;
}

.cpa_affilicated_programs .accounts_proecn_step_content ul li .text_box {
    padding: 40px 30px 20px;
}

.cpa_affilicated_programs .accounts_proecn_step_content ul li p {
    font-size: 16px;
    line-height: 1.5;
}

.cpa_affilicated_programs .accounts_proecn_step_wrapper .red_arrow_button {
    padding: 10px 42px 10px 15px;
    font-size: 12px;
}

.cpa_affilicated_programs_text {
    background: url(../../uploads/2019/09/cpa_img_10.jpg) center top no-repeat;
    background-size: cover;
    padding: 70px 0 65px 0;
    margin-bottom: 70px;
}

.cpa_affilicated_programs_text .red_arrow_button {
    float: right;
}

/*CPA Affilicated Programs css 结束*/

/*Hybrid Partners css 开始*/

.hybrid_partners_programs .tableBox {
    position: relative;
}

.hybrid_partners_programs .text_box img {
    position: absolute;
    bottom: 65px;
    right: 0;
}

.hybrid_partners_programs .hybrid_partners_programs_text .text_left {
    width: 47%;
}

.hybrid_partners_programs .hybrid_partners_programs_text .text_right {
    width: 51%;
    padding-top: 30px;
}

.hybrid_partners_programs .hybrid_partners_programs_text .text_right h3 {
    font-size: 32px;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: right;
}

.hybrid_partners_programs .hybrid_partners_programs_text .text_right p {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: right;
}

.hybrid_partners_programs .accounts_proecn_step_content ul li .text_box {
    padding: 40px 30px 20px;
}

.hybrid_partners_programs .accounts_proecn_step_content ul li p {
    font-size: 16px;
    line-height: 1.5;
}

.hybrid_partners_programs .accounts_proecn_step_wrapper .red_arrow_button {
    padding: 10px 42px 10px 15px;
    font-size: 12px;
}

.hybrid_partners_programs .text_box .red_button {
    padding: 10px 20px;
}

.hybrid_partners_programs_text {
    background: url(../../uploads/2019/09/hybied_img2.jpg) center top no-repeat;
    background-size: cover;
    padding: 70px 0 65px 0;
    margin-bottom: 70px;
}

.hybrid_partners_programs_text .red_arrow_button {
    float: right;
}

/*Hybrid Partners css 结束*/

/*Introducing Brokers css 开始*/

.introducing_brokers_programs .tableBox {
    position: relative;
}

.introducing_brokers_programs .text_box img {
    position: absolute;
    bottom: 65px;
    right: 0;
}

.introducing_brokers_programs .introducing_brokers_text .text_left {
    width: 47%;
    padding-top: 80px;
}

.introducing_brokers_programs .introducing_brokers_text .text_right {
    width: 51%;
}

.introducing_brokers_programs .introducing_brokers_text .text_right h3 {
    font-size: 32px;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: right;
}

.introducing_brokers_programs .introducing_brokers_text .text_right p {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: right;
}

.introducing_brokers_programs .accounts_proecn_step_content ul li .text_box {
    padding: 40px 30px 20px;
}

.introducing_brokers_programs .accounts_proecn_step_content ul li p {
    font-size: 16px;
    line-height: 1.5;
}

.introducing_brokers_programs .introducing_brokers_text .text_right .red_arrow_button {
    padding: 15px 62px 15px 42px;
}

.introducing_brokers_programs .accounts_proecn_step_wrapper .red_arrow_button {
    padding: 10px 42px 10px 15px;
    font-size: 12px;
}

.introducing_brokers_programs .text_box .red_button {
    padding: 10px 20px;
}

.introducing_brokers_text {
    background: url(../../uploads/2019/09/ib_img5.jpg) center top no-repeat;
    background-size: cover;
    padding: 70px 0 65px 0;
    margin-bottom: 70px;
}

.introducing_brokers_text .red_arrow_button {
    float: right;
}

.introducing_brokers_programs .page_banner_content .text_box .red_arrow_button {
    padding: 15px 62px 15px 50px;
}

/*Introducing Brokers css 结束*/

/* compare platforms */

.compare_platforms {
    padding-top: 90px;
}

.compare_platforms .inner {
    max-width: 920px;
}

.compare_platforms .table_box {
    padding-top: 40px;
}

.compare_platforms .table_box .table_item {
    margin-bottom: 45px;
    -moz-box-shadow: -2px 0px 5px #e6e8e9, 0 -2px 5px #e6e8e9, 0 2px 5px #e6e8e9, 2px 0 5px #e6e8e9;
    box-shadow: -2px 0px 5px #e6e8e9, 0 -2px 5px #e6e8e9, 0 2px 5px #e6e8e9, 2px 0 5px #e6e8e9;
}

.compare_platforms .table_box .table_item:hover {
    transform: scale(1.05);
}

.compare_platforms .table_box .row_right ul {
    display: inline-block;
    vertical-align: top;
}

.compare_platforms .table_box .row_right ul li {
    line-height: 1.5;
}

.compare_platforms .table_box .table_box_left {
    width: 47%;
}

.compare_platforms .table_box .table_box_right {
    width: 47%;
}

.compare_platforms .table_box .row1 {
    background: #fff;
    padding: 15px 20px;
    font-size: 15px;
}

.compare_platforms .table_box .row2 {
    background: #e8eff8;
    padding: 15px 20px;
    font-size: 15px;
}

.compare_platforms .table_box .row_left {
    width: 52%;
    text-align: left;
    color: #7f7f7f;
    display: inline-block;
    vertical-align: middle;
}

.compare_platforms .table_box .row_right {
    width: 46%;
    text-align: left;
    color: #000;
    display: inline-block;
    vertical-align: middle;
}

.compare_platforms .table_box .row_right a {
    color: #000;
    text-decoration: underline;
}

.compare_platforms .table_box .row1 p {
    margin: 0;
    font-size: 12px;
}

.compare_platforms .table_box .row2 p {
    margin: 0;
    font-size: 12px;
}

.compare_platforms .table_left_url {
    overflow: hidden;
}

.compare_platforms .text_box .red_button {
    padding: 10px 20px;
}

.compare_platforms .table_left_url div {
    width: 45%;
    border-radius: 3px;
    padding: 10px;
    cursor: pointer;
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.compare_platforms .table_left_url a {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    width: 100%;
    display: block;
    text-align: center;
}

.compare_platforms .table_left_url .red {
    background: #d72d2b;
}

.compare_platforms .table_left_url .blue {
    background: #2450d7;
}

.compare_platforms .table_left_url .blue:hover {
    background: #2a5cf5;
}

.compare_platforms .table_left_url .red:hover {
    background: #fd0202;
}

/* compare platforms */

/* Change Leverage */

.change_leverage .blue_button {
    width: 248px;
    text-align: center;
    margin-bottom: 20px;
}

/* Change Leverage */

/* Smart Trader Tools */

.smart_trader_tools_wrapper .accounts_proecn_step_content ul li p {
    font-size: 17px;
}

.smart_trader_tools_wrapper .accounts_proecn_step_content ul li p span {
    font-size: 16px;
}

/* Smart Trader Tools */

/* Teamviewer */

.teamviewer_content .page_top_text.teamviewer_content_help h2 {
    text-align: center;
    margin: 0px 0px 70px;
}

.teamviewer_content .page_top_text.teamviewer_content_help h2:after {
    margin: 22px auto 0px;
}

.teamviewer_content .page_top_text ul {
    font-size: 0;
    margin-left: -1%;
    margin-right: -1%;
}

.teamviewer_content .page_top_text ul li {
    display: inline-block;
    width: 18%;
    text-align: center;
    color: #000;
    font-size: 14px;
    vertical-align: top;
    margin-left: 1%;
    margin-right: 1%;
}

.teamviewer_content .page_top_text ul li span {
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background: #2544a2;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 31px;
    margin: 0px auto 15px;
}

.teamviewer_content .page_top_text.teamviewer_content_help {
    padding: 54px 42px 25px 42px;
    margin: 0px 0px 80px;
}

.teamviewer_content .accounts_proecn_step_content ul li p {
    font-size: 18px;
}

.teamviewer_content .accounts_proecn_step_content .page_title_center {
    font-size: 25px;
}

/* Teamviewer */

/* Deposit */

.deposit .deposit_content_list {
    padding: 0px 0px 65px;
    margin: 0px;
}

.deposit .deposit_content_list ul {
    padding: 30px 0px 0px;
    margin: 0px;
}

.deposit .deposit_content_list ul li {
    color: #2544a2;
    font-size: 13px;
    padding: 0px;
    margin: 0px;
    line-height: 1.85;
}

.deposit .deposit_content_table table {
    text-align: center;
    font-size: 13px;
    color: #000000;
    border-bottom: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
}

.deposit .deposit_content_table table tr:first-child {
    background: #2450d7 !important;
}

.deposit .deposit_content_table table tr th {
    border-left: 1px solid #3b63df;
    text-align: center;
    padding: 15px 10px !important;
    line-height: 1.2;
    font-size: 15px;
    color: #ffffff;
    text-transform: uppercase;
}

.deposit .deposit_content_table table tr td {
    text-align: center !important;
    border-left: 1px solid #e9e9e9;
    border-top: 1px solid #e9e9e9;
    padding: 20px 4px;
    line-height: 1.2;
    background: #fbfbfb;
}

.deposit .deposit_content_table table tr:nth-child(2n) td {
    background: #fff;
}

.deposit .deposit_content_table table tr td strong {
    display: block;
    padding: 8px 0px 0px;
    margin: 0px;
}

.deposit .deposit_content_table table th.th_width_1 {
    width: 255px;
}

.deposit .deposit_content_table table td.td_1 .img_box {
    display: inline-block;
    text-align: center;
    width: 96px;
}

.deposit .deposit_content_table table td.td_1 .img_box img {
    display: inline-block;
}

.deposit .deposit_content_table table span {
    vertical-align: middle;
    padding: 0px;
    margin: 0px;
}

.deposit .deposit_content_table table td.td_1 {
    text-align: left !important;
}

.deposit .deposit_content_table table td.td_1 span {
    width: 150px;
    display: inline-block;
    text-align: center;
}

.deposit .deposit_content_table table th.th_width_5 {
    width: 158px;
}

.deposit .deposit_content_table table a.deposit_now_link {
    display: inline-block;
    width: 125px;
    padding: 5px 15px 5px 5px;
    line-height: 1.5;
    color: #FFF;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
    background: #2450d7;
    position: relative;
}

.deposit .deposit_content_table table a.deposit_now_link:after {
    content: "\f105";
    font-family: 'FontAwesome';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.deposit .deposit_content_table table a.deposit_now_link:hover {
    color: #FFF;
    text-decoration: none;
    background: #2a5cf5;
}

/* Deposit */

/* Why Choose vantagefx 开始*/

.why_choose_vantagefx_programs .forex_promotions_box {
    width: 950px;
    height: 1000px;
    position: relative;
    margin: 0 auto;
}

.why_choose_vantagefx_programs .forex_promotions_box h5 {
    font-size: 24px;
    color: white;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
    padding-bottom: 10px;
    position: relative;
    z-index: 100;
}

.why_choose_vantagefx_programs .forex_promotions_box h5 span {
    font-size: 16px;
}

.why_choose_vantagefx_programs .forex_promotions_box .fond {
    font-size: 14px;
    text-decoration: none;
    color: white;
    display: inline-block;
    padding: 10px;
    border: 2px solid white;
    border-radius: 5px;
    position: relative;
    z-index: 100;
}

.why_choose_vantagefx_programs .forex_promotions_box .fond2 {
    display: none;
}

.why_choose_vantagefx_programs .forex_promotions_box_item1 {
    width: 370px;
    height: 370px;
    background: url(images/forex_promotions_box_item1bg.png) no-repeat;
    background-position: 1px -16px;
    position: absolute;
    left: 466px;
    top: 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 130px 100px 0 60px;
}

.why_choose_vantagefx_programs .forex_promotions_box .sf1 {
    background-position: 4px -431px;
}

.why_choose_vantagefx_programs .forex_promotions_box_item2 {
    width: 370px;
    height: 370px;
    background: url(images/forex_promotions_box_item2bg.png) no-repeat;
    background-position: 8px 4px;
    position: absolute;
    left: 604px;
    top: 164px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 200px 50px 0 110px;
}

.why_choose_vantagefx_programs .forex_promotions_box .sf2 {
    background-position: 11px -401px;
}

.why_choose_vantagefx_programs .forex_promotions_box_item3 {
    width: 370px;
    height: 370px;
    background: url(images/forex_promotions_box_item3bg.png) no-repeat;
    background-position: 12px 16px;
    position: absolute;
    left: 604px;
    top: 490px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 100px 40px 0 120px;
    z-index: 10;
}

.why_choose_vantagefx_programs .forex_promotions_box .sf3 {
    background-position: 22px -407px;
}

.why_choose_vantagefx_programs .forex_promotions_box_item4 {
    width: 370px;
    height: 370px;
    background: url(images/forex_promotions_box_item4bg.png) no-repeat;
    background-position: -4px 16px;
    position: absolute;
    left: 466px;
    top: 631px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 150px 90px 0 80px;
}

.why_choose_vantagefx_programs .forex_promotions_box .sf4 {
    background-position: -4px -415px;
}

.why_choose_vantagefx_programs .forex_promotions_box_item5 {
    width: 370px;
    height: 370px;
    background: url(images/forex_promotions_box_item5bg.png) no-repeat;
    background-position: -5px 30px;
    position: absolute;
    left: 143px;
    top: 631px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 160px 0px 0 140px;
}

.why_choose_vantagefx_programs .forex_promotions_box .sf5 {
    background-position: -6px -415px;
}

.why_choose_vantagefx_programs .forex_promotions_box_item6 {
    width: 370px;
    height: 370px;
    background: url(images/forex_promotions_box_item6bg.png) no-repeat;
    background-position: -11px 12px;
    position: absolute;
    left: 00px;
    top: 490px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 100px 50px 0 80px;
}

.why_choose_vantagefx_programs .forex_promotions_box .sf6 {
    background-position: -20px -430px;
}

.why_choose_vantagefx_programs .forex_promotions_box_item7 {
    width: 370px;
    height: 370px;
    background: url(images/forex_promotions_box_item7bg.png) no-repeat;
    background-position: -13px 13px;
    position: absolute;
    left: 0px;
    top: 164px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 190px 40px 0 80px;
}

.why_choose_vantagefx_programs .forex_promotions_box .sf7 {
    background-position: -20px -436px;
}

.why_choose_vantagefx_programs .forex_promotions_box_item8 {
    width: 370px;
    height: 370px;
    background: url(images/forex_promotions_box_item8bg.png) no-repeat;
    background-position: -9px 26px;
    position: absolute;
    left: 143px;
    top: 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 140px 50px 0 154px;
}

.why_choose_vantagefx_programs .forex_promotions_box .sf8 {
    background-position: -9px -454px;
}

.why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center {
    text-align: center;
    position: absolute;
    left: 340px;
    top: 380px;
    padding: 10px;
    display: inline-block;
    width: 300px;
}

.why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center h5 {
    font-size: 20px;
    color: #040404;
}

.why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center .center_eight {
    display: none;
}

.why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center .strat_now {
    display: inline-block;
    background: url(images/forex_promotions_box_item_center_button_bg.png) no-repeat;
    background-position: center center;
    padding: 15px 20px;
    ;
    color: white;
    font-size: 22px;
    text-transform: uppercase;
    text-decoration: none;
}

/* Why Choose vantagefx 结束*/

/* Trading Servers开始*/

.trading_servers .trading_servers_bottom {
    text-align: center;
    padding-top: 45px;
}

.trading_servers .trading_servers_bottom .page_title_center {
    margin-bottom: 80px;
}

/* Trading Servers结束*/

/* contact us开始*/

.contact_us .address_box {
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    padding: 34px 42px 20px 42px;
    margin: 0px 0px 40px;
    background: #FFF;
    width: 48%;
}

.contact_us .address_box h3 {
    color: #2544a2;
    font-size: 20px;
    font-weight: bold;
}

.contact_us .contact_us_top_list {
    margin-top: 65px;
}

.contact_us .contact_us_top_list li {
    display: inline-block;
    margin-right: 70px;
    margin-bottom: 10px;
}

.contact_us .contact_us_top_list li a {
    color: #2544a2;
    font-size: 20px;
    font-weight: bold;
}

.contact_us .contact_us_top_list li:last-child {
    margin-right: 0px;
}

.contact_us .address_box a {
    color: #1f51ef;
}

.contact_us .content_us_a {
    text-decoration: underline;
}

.contact_us .contact_us_map.address_box {
    width: 100%;
}

.contact_us .info_list .info_item {
    width: 48%;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 3px;
    border: solid 1px #ebebeb;
}

.contact_us .info_list p {
    font-size: 13px;
    color: #122970;
}

.contact_us .info_list li {
    font-size: 14px;
    line-height: 1.7;
    color: #17307d;
}

/* contact us结束*/

.forex_wrapper .table_box {
    width: 100%;
    max-width: 690px;
    margin: 105px auto 70px;
}

.forex_wrapper .table_box table {
    width: 100%;
}

.forex_wrapper .table_box tr:nth-child(odd) {
    background-color: #dae0e8;
}

.forex_wrapper .table_box tr:nth-child(even) {
    background-color: #ffffff;
}

.forex_wrapper .table_box td {
    font-size: 14px;
    padding: 20px 15px;
    color: #546c8b;
    text-align: center;
}

.forex_wrapper .energy_table_box table {
    width: 457px;
}

.spreads_commissions_wrapper .p_bottom {
    font-size: 14px;
    margin-bottom: 60px;
    color: #2544a2;
    text-align: center;
}

.spreads_commissions_wrapper .spreads_table {
    font-size: 0;
    margin-left: -1%;
    margin-right: -1%;
    margin-bottom: 110px;
}

.spreads_commissions_wrapper .spreads_table_item {
    width: 31.33%;
    margin-left: 1%;
    margin-right: 1%;
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

.spreads_commissions_wrapper .spreads_table_item table {
    width: 100%;
}

.spreads_commissions_wrapper .spreads_table_item thead {
    background-color: #ffffff;
}

.spreads_commissions_wrapper .spreads_table_item thead td {
    padding: 23px 15px;
}

.spreads_commissions_wrapper .spreads_table_item tbody tr:nth-child(odd) {
    background-color: #e5e9ee;
}

.spreads_commissions_wrapper .spreads_table_item tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.spreads_commissions_wrapper .spreads_table_item td {
    padding: 16px 15px;
    font-size: 14px;
    text-align: center;
}

.spreads_commissions_wrapper .spreads_table_item tbody td:first-child {
    color: #777777;
}

.spreads_commissions_wrapper .spreads_table_item tbody td:last-child {
    color: #000000;
}

.spreads_commissions_wrapper .spreads_table_item tfoot {
    background-color: #e0e5eb;
}

.spreads_commissions_wrapper .spreads_table_item tfoot .red_button {
    font-size: 14px;
    font-weight: bold;
    width: 196px;
    text-align: center;
}

.spreads_commissions_wrapper .commission_table {
    padding: 0 38px;
    margin-bottom: 100px;
    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.spreads_commissions_wrapper .commission_table.commission_table_last {
    margin-bottom: 50px;
}

.spreads_commissions_wrapper .commission_table table {
    width: 100%;
}

.spreads_commissions_wrapper .commission_table td {
    font-size: 16px;
}

.spreads_commissions_wrapper .commission_table thead tr {
    border-bottom: 1px solid #2544a2;
}

.spreads_commissions_wrapper .commission_table thead td {
    padding: 32px 15px;
    color: #0d34a8;
}

.spreads_commissions_wrapper .commission_table tbody tr {
    border-bottom: 1px solid #d2d2d2;
}

.spreads_commissions_wrapper .commission_table tbody tr:last-child {
    border: 0;
}

.spreads_commissions_wrapper .commission_table tbody td {
    padding: 18px 15px;
    color: #6a6a6a;
}

/* education */

.educations_content {
    margin-bottom: 20px;
    margin-top: 50px;
    color: #687177;
}

.educations_content .addtoany_share_save_container {
    display: none
}

.educations_content_top {
    border-bottom: 2px solid #a71e23;
    padding: 35px 0px 17px;
    margin-bottom: 69px;
}

.educations_content_top h3 {
    display: inline;
    font-size: 15px;
    color: #2c2c2c;
    font-weight: normal;
}

.educations_content_top .social_list {
    float: right;
    padding-left: 7px;
}

.educations_content_top .social_list a {
    float: left;
    margin: 0px 0px 0px 2px;
}

.educations_content_top .social_list a img {
    width: 26px;
    height: auto;
}

.educations_content_top h2 {
    float: left;
    font-size: 26px;
    color: #a8191b;
    font-weight: normal;
}

.educations_content_top_right {
    text-align: right;
    float: right;
}

.educations_content_left {
    float: right;
    width: 72%;
    border: solid 1px #ebebeb;
    background: #fff;
    border-radius: 3px;
    padding: 40px 40px 70px;
}

.educations_content_left .new_single {
    margin-bottom: 50px;
}

.educations_content_left h2.single_title {
    font-size: 25px;
    color: #2544a2;
}

.educations_content_left h2.single_title:after {
    content: "";
    display: block;
    margin: 22px 0 0;
    width: 70px;
    height: 3px;
    background: #2544a2;
}

.educations_content_left h2 {
    font-size: 19px;
    color: #17307d;
    margin-bottom: 30px;
}

.educations_content_left .featured-thumbnail {
    padding-bottom: 30px;
}

.educations_content_left p {
    color: #17307d;
    font-size: 13px;
}

.educations_content_left .open_live_account_now_link {
    text-align: center;
    padding-top: 30px;
}

.educations_content_left .open_live_account_now_link a {
    display: inline-block;
    background: #a71f23;
    font-size: 18px;
    color: #FFF;
    padding: 12px 20px;
    text-transform: uppercase;
}

.educations_content_left .open_live_account_now_link a:hover {
    background: #e32d32;
    text-decoration: none;
}

.educations_content_left .newer-older {
    width: 224px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0px 0px;
    text-align: center;
    font-size: 0;
}

.educations_content_left .newer-older a {
    font-size: 13px;
    color: #ffffff;
    display: inline-block;
    vertical-align: top;
    width: 107px;
    padding: 10px;
    background-color: #2450d7;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}

.educations_content_left .newer-older a:first-child {
    margin-right: 10px;
}

.educations_content_left .newer-older a:hover {
    background-color: #2a5cf5;
}

.educations_content_left table {
    border-left: 0;
    border-top: 0;
    margin: 0 0 20px;
    color: #797979;
    border: none;
}

.educations_content_left table td {
    border-bottom: 0;
    border-right: 0;
    background: #e1e1e1;
}

.educations_content_left table th,
.educations_content_left table td {
    padding: 5px 20px;
    text-align: left;
    line-height: 20px;
    border: none;
}

.educations_content_left table th {
    color: #2c2c2c;
    font-weight: bold;
    border-bottom: 0;
    border-right: 0;
    background: #e1e1e1;
    text-transform: none;
}

.educations_content_left table tr:nth-child(2n) td {
    background: #FFF;
}

.educations_content_left .new_single p a {
    color: #0000ff;
    text-decoration: underline;
}

.educations_content_left .new_single ul,
.educations_content_left .new_single ol {
    margin: 0 0 5px 25px;
    padding-left: 0 !important;
}

.educations_content_left .new_single ul ul {
    margin: 15px 0 0 25px;
}

.educations_content_left .new_single li {
    font-size: 13px;
    list-style: disc outside none;
    color: #17307d;
    padding-bottom: 10px;
}

.educations_content_left .new_single ol ol {
    margin: 15px 0 0 25px;
}

.educations_content_left .new_single ul li {
    list-style: disc outside none;
}

.educations_content_left .new_single ol li {
    list-style: decimal outside none;
    margin-bottom: 15px;
}

.educations_content_left .new_single ol {
    margin-bottom: 0px;
}

.educations_content_sidebar {
    float: left;
    width: 26%;
}

.educations_content_sidebar .educations_content_sidebar_box {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    padding: 14px 14px 0;
    margin-bottom: 8px;
}

.educations_content_sidebar .educations_content_sidebar_box h4.title {
    position: relative;
    width: 100%;
    font-size: 15px;
    color: #2544a2;
    font-weight: bold;
    cursor: pointer;
    margin: 0;
    margin-bottom: 15px;
}

.educations_content_sidebar .educations_content_sidebar_box h4.title span.title_inner {
    display: block;
    padding-right: 22px;
    line-height: 1.2;
}

.educations_content_sidebar .educations_content_sidebar_box h4.title span.icon {
    display: block;
    width: 21px;
    height: 21px;
    background: url(images/bg_blog_single_content_sidebar_icon.png) left top no-repeat;
    position: absolute;
    right: 0px;
    top: 0px;
}

.educations_content_sidebar .educations_content_sidebar_box h4.title.selected span.icon {
    background-position: left bottom;
}

.educations_content_sidebar .educations_content_sidebar_box p {
    line-height: 1.2;
    font-size: 15px;
    color: #646464;
    margin-bottom: 10px;
}

.educations_content_sidebar .educations_content_sidebar_box p strong {
    display: block;
    padding-bottom: 15px;
}

.educations_content_sidebar .educations_content_sidebar_box p span {
    display: block;
    padding-bottom: 15px;
}

.educations_content_sidebar .educations_content_sidebar_box p a {
    color: #797979;
    text-decoration: none;
}

.educations_content_sidebar .educations_content_sidebar_box p a:hover {
    color: #797979;
    text-decoration: underline;
}

.educations_content_sidebar .educations_content_sidebar_box p a.active {
    text-decoration: underline;
}

/* education */

.common_wrapper {
    margin-bottom: 80px;
    margin-top: 130px;
}

.common_wrapper .common_table_content {
    text-align: center;
    font-size: 16px;
    color: #000;
    box-shadow: 0px 3px 11px 1px rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    margin-bottom: 30px;
    border: solid 1px #ebebeb;
}

.common_wrapper table {
    width: 100%;
}

.common_wrapper thead td {
    background: #fff;
    color: #6b6969;
    text-transform: uppercase;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
}

.common_wrapper thead td img {
    vertical-align: middle;
    margin: 0px;
    margin-right: 5px;
    padding: 0px;
    width: 10px;
    height: auto;
}

.common_wrapper thead td span {
    vertical-align: middle;
}

.common_wrapper thead th {
    font-weight: bold;
    font-size: 16px;
    color: #FFF;
    padding: 10px;
    background: #214cd2;
    text-align: center;
}

.common_wrapper tbody tr:nth-child(odd) {
    background: #fff;
}

.common_wrapper tbody tr:nth-child(even) {
    background: #f8f8f8;
}

.common_wrapper tbody td {
    padding: 10px;
    text-align: center;
    color: #000;
}

.common_wrapper tbody td span {
    color: #982323;
    font-weight: bold;
    font-size: 13px;
}

.common_wrapper ul {
    font-size: 0;
    margin-left: -2%;
    margin-right: -2%;
    margin-bottom: 25px;
}

.common_wrapper ul li {
    width: 29.33%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 20px 15px 25px;
    display: inline-block;
    vertical-align: top;
    background-color: #f5f9ff;
    box-shadow: 0px 3px 11px 1px rgba(0, 0, 0, 0.08);
    border: solid 1px #d3e3fb;
}

.common_wrapper ul strong {
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
    display: block;
}

.common_wrapper ul p {
    font-size: 14px;
    margin: 0;
    color: #000000;
}

.common_wrapper .common_bottom {
    padding: 25px 20px 0px;
    margin-bottom: 25px;
    background-color: #ffffff;
    box-shadow: 0px 3px 11px 1px rgba(0, 0, 0, 0.08);
    border: solid 1px #d9d9d9;
}

.common_wrapper .common_bottom h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #000000;
}

.common_wrapper .common_bottom p {
    font-size: 13px;
    color: #000000;
}

.common_wrapper .info {
    font-size: 12px;
    color: #616161;
}

.cpa_affilicated_programs .common_table_content {
    position: relative;
}

.cpa_affilicated_programs .common_table_content:before {
    content: "";
    display: block;
    width: 117px;
    height: 131px;
    position: absolute;
    right: 0;
    top: -150px;
    background: url(images/cpa_icon.png) no-repeat center;
    background-size: 100%;
}

.post_list_box table {
    text-align: center;
    font-size: 12px;
    color: #687177;
    border: 1px solid #e9e9e9;
    border-bottom: 6px solid #e9e9e9;
    width: 100%;
    border-collapse: collapse;
}

.post_list_box table tr th {
    border: 1px solid #4571fb;
    text-align: center;
    background: #2450d7;
    padding: 12px 3px;
    line-height: 1.2;
    color: #FFF;
    font-weight: bold;
    position: relative;
}

.post_list_box table tr th:after {
    content: "";
    text-align: center;
    display: block;
    width: 10px;
    height: 10px;
    background: #2450d7;
    position: absolute;
    left: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    bottom: -5px;
    margin-left: -5px;
}

.post_list_box table tr td {
    height: 80px;
    border: 1px solid #e9e9e9;
    padding: 10px 3px 10px 3px;
    color: #687177;
    line-height: 1.2;
    background: #f7f7f7;
}

.post_list_box table tr:nth-child(2n) td {
    background: #fff;
}

.post_list_box table tr td strong {
    display: block;
    padding: 8px 0px 0px;
    margin: 0px;
}

input:-webkit-autofill {
    -webkit-animation: autofill-fix1 1s infinite;
    /**利用动画方式将背景图遮挡住*/
    -webkit-text-fill-color: #ffffff;
    /**字体颜色可按需求定义*/
}

@-webkit-keyframes autofill-fix1 {
    from {
        background: none;
    }
    to {
        background: none;
    }
}

input#firstName:-webkit-autofill {
    -webkit-animation: autofill-fix2 1s infinite;
    /**利用动画方式将背景图遮挡住*/
    -webkit-text-fill-color: #ffffff;
    /**字体颜色可按需求定义*/
}

@-webkit-keyframes autofill-fix2 {
    from {
        background: url(images/open_live_firstName_icon.png) calc(100% - 6px) 15px no-repeat;
        ;
    }
    to {
        background: url(images/open_live_firstName_icon.png) calc(100% - 6px) 15px no-repeat;
        ;
    }
}

@media (max-width:1620px) {
    .header_menu_tab_content#header_menu_contnet3 {
        max-width: 100%;
    }
    .header_menu_tab_content#header_menu_contnet3 .sub_menu>li {
        padding-left: 20px;
    }
    .header_menu_tab_content#header_menu_contnet3 .header_menu_links p {
        margin-bottom: 20px;
    }
}

@media (max-width:1400px) {
    .experience_our_spreads_wrapper .img_box {
        width: 435px;
        max-width: 100%;
        left: -20px;
    }
}

@media (max-width:1200px) {
    .islamic_v2_popup_content {
        width: 100%;
        margin-left: -50%;
    }
    .islamic_v2_popup_content .close_button {
        right: 3px;
        top: -20px;
        width: 20px;
        height: 20px;
    }
}

@media (max-width:1170px) {
    .header_menu_tab_content {
        max-width: 100%;
    }
    .header_menu_links {
        width: 30%;
        padding-top: 20px;
    }
    .header_menu_links p {
        margin-bottom: 20px;
    }
    .header_menu_tab_content .sub_menu_box {
        width: 70%;
    }
    .header_menu_tab_content#header_menu_contnet3 .header_menu_links {
        width: 25%;
    }
    .header_menu_tab_content#header_menu_contnet3 .sub_menu_box {
        width: 75%;
    }
}

@media(max-width:1020px) {
    .why_choose_vantagefx_programs .forex_promotions_box {
        width: 100%;
        background: url(images/forex_promotions_box_bg.jpg) no-repeat;
        background-position: center 0;
        background-size: contain;
        height: 650px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item1 {
        background: none;
        padding: 0;
        width: auto;
        height: auto;
        left: 353px;
        top: 65px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item2 {
        background: none;
        padding: 0;
        width: auto;
        height: auto;
        left: 484px;
        top: 201px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item3 {
        background: none;
        padding: 0;
        width: auto;
        height: auto;
        left: 484px;
        top: 357px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item4 {
        background: none;
        padding: 0;
        width: auto;
        height: auto;
        left: 353px;
        top: 500px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item5 {
        background: none;
        padding: 0;
        width: auto;
        height: auto;
        left: 192px;
        top: 518px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item6 {
        background: none;
        padding: 0;
        width: 150px;
        height: auto;
        left: 53px;
        top: 357px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item7 {
        background: none;
        padding: 0;
        width: auto;
        height: auto;
        left: 53px;
        top: 201px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item8 {
        background: none;
        padding: 0;
        width: auto;
        height: auto;
        left: 194px;
        top: 81px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center {
        left: 34%;
        top: 300px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item1:hover {
        background: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item2:hover {
        background: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item3:hover {
        background: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item4:hover {
        background: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item5:hover {
        background: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item6:hover {
        background: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item7:hover {
        background: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item8:hover {
        background: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box {
        width: 650px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box h5 {
        font-size: 14px !important;
        margin-bottom: 0;
    }
    .why_choose_vantagefx_programs .forex_promotions_box h5 span {
        font-size: 12px !important;
        margin-bottom: 0;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center h5 {
        margin-bottom: 0;
        font-size: 14px !important;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .fond {
        font-size: 12px !important;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center {
        left: 203px;
        top: 190px;
        width: 240px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center h5 {
        font-size: 14px;
    }
    .experience_our_spreads_wrapper .inner {
        height: auto;
        padding-top: 50px;
    }
    .experience_our_spreads_wrapper .experience_our_spreads_content {
        padding: 0px;
    }
    .experience_our_spreads_wrapper .img_box {
        position: static;
        width: 794px;
        margin: 0px auto;
        padding-bottom: 30px;
    }
    .experience_our_spreads_wrapper .rawecn_box {
        position: static;
        margin: 0px auto;
    }
    .experience_our_spreads_wrapper .rawecn_box .rawecn_list .row_top .row_top_item:nth-child(1) {
        width: 30%;
    }
    .experience_our_spreads_wrapper .rawecn_box .rawecn_list .row_top .row_top_item:nth-child(2) {
        width: 23%;
    }
    .experience_our_spreads_wrapper .rawecn_box .rawecn_list .row_top .row_top_item:nth-child(3) {
        width: 23%;
    }
    .experience_our_spreads_wrapper .rawecn_box .rawecn_list .row_top .row_top_item:nth-child(4) {
        width: 24%;
    }
    .experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.symbol {
        width: 30%;
    }
    .experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.bid,
    .experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.ask {
        margin-left: 1%;
        margin-right: 1%;
        width: 21%;
    }
    .experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row span.spread {
        width: 24%;
    }
}

@media (max-width:992px) {
    .zulu_trader_wrapper .zulu_started .left {
        width: 55%;
    }
    .regulation_wrapper .corporate_list {
        padding: 30px 20px;
    }
    .compare_platforms .table_box .table_box_left {
        width: 100%;
        margin-bottom: 40px;
    }
    .compare_platforms .table_box .table_box_right {
        width: 100%;
    }
    .compare_platforms .table_box .table_box_left .equal_box {
        height: auto !important;
    }
    .common_wrapper .common_table_content {
        overflow-x: scroll;
    }
    .common_wrapper table {
        width: 933px;
    }
}

@media (max-width:990px) {
    #fixed_header {
        display: none !important;
    }
    .header_menu_tab_content {
        background: rgba(29, 40, 54, 0.9);
    }
    .header_menu_tab_content:before {
        display: none;
    }
    .header_menu_tab_content:after {
        display: none;
    }
    .header_menu_wrapper .header_menu_wrapper_bg {
        display: none !important;
    }
    .header_menu_tab_content .sub_menu>li {
        width: 50%;
    }
    .header_menu_tab_content#header_menu_contnet3 .sub_menu>li {
        width: 50%;
    }
    .header_menu_tab_content#header_menu_contnet3 .header_menu_links {
        width: 30%;
    }
    .header_menu_tab_content#header_menu_contnet3 .sub_menu_box {
        width: 70%;
    }
    #footer {
        padding-bottom: 0px;
    }
    .fast_easy_wrapper .inner {
        padding-top: 40px;
        padding-bottom: 80px;
    }
    .page_banner_content .inner {
        height: 600px;
    }
    .page_banner_content .inner h2 {
        font-size: 40px;
        margin-bottom: 50px;
    }
    .page_banner_content .inner h3 {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .fast_easy_wrapper .inner {
        padding-top: 100px;
    }
}

@media (max-width:940px) {
    .contact_us .contact_us_top_list li {
        margin-right: 40px;
    }
}

@media (max-width:910px) {
    .header_menu_wrapper .header_menu_tabs>li {
        padding-left: 6px;
        padding-right: 6px;
    }
}

@media (max-width:900px) {
    .footer_top {
        padding-bottom: 0px;
    }
    .footer_top .footer_top_left,
    .footer_top .footer_top_center,
    .footer_top .footer_top_right {
        width: 360px;
        max-width: 100%;
        float: none;
        padding: 0px 0px 30px;
    }
    .footer_top .footer_top_center .footer_top_center_title {
        padding-left: 0px;
        padding-right: 0px;
    }
    .footer_top .footer_top_center .footer_top_center_inner {
        padding-left: 0px;
        padding-right: 0px;
        border: none;
    }
    .footer_top h2 {
        margin-bottom: 30px;
    }
    .footer_top .footer_top_center ul li {
        padding-bottom: 20px;
    }
    .footer_top .footer_top_right {
        padding-bottom: 10px;
    }
    .footer_top .footer_top_right h2 {
        margin-bottom: 30px;
    }
    .footer_top .footer_top_right .funding_list {
        padding: 0px 0px 30px;
    }
    .footer_top .footer_top_right .first_funding_list {
        text-align: left;
    }
    .footer_top .footer_top_right .funding_list a {
        margin-left: 0px;
    }
    .energy_table_box {
        display: block;
        overflow-y: hidden;
    }
    .forex_tabel {
        display: block;
        overflow-y: hidden;
    }
    .forex_tabel table {
        width: 860px;
    }
}

@media (max-width:890px) {
    .contact_us .contact_us_top_list li {
        margin-right: 30px;
    }
    .contact_us .contact_us_top_list li a {
        font-size: 16px;
    }
}

@media (max-width:867px) {
    .sentiment_indicators_wrapper .chart-wraper {
        width: 50% !important;
    }
    .sentiment_indicators_wrapper .row_bottom {
        display: none;
    }
}

@media (max-width:820px) {
    .compare_forex .table_body .table_body_item {
        width: 100%;
    }
    .compare_forex .table_body .table_body_item.table_body_item2 {
        padding-top: 35px !important;
    }
    .compare_forex .table_body .table_body_item.table_body_item2 .table_item_header {
        padding-top: 35px !important;
    }
    .compare_forex_content .page_title_center {
        padding-bottom: 20px;
    }
    .compare_forex .table_body {
        height: auto !important;
    }
    .compare_forex .table_body .table_body_item.table_body_item2 .table_head .table_item_header {
        height: 200px;
    }
    .compare_forex .table_body .table_body_item.table_body_item2:nth-child(2) .row:last-child {
        padding-top: 26px;
        padding-bottom: 30px;
    }
    .compare_forex .table_body_item:hover {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    .compare_forex .table_body:hover .table_body_item.table_body_item2 {
        padding-top: 35px !important;
    }
    .compare_forex .table_body_item.table_body_item2 .table_head .table_item_header p {
        margin-top: -13px;
    }
}

@media (max-width:810px) {
    .pages_text_and_image_row ul.img_list li {
        padding-left: 20px;
    }
}

@media(max-width:768px) {
    .educations_content_left {
        float: none;
        width: auto;
        padding: 40px 20px 70px;
        margin-bottom: 50px;
    }
    .educations_content_sidebar {
        width: auto;
        max-width: 100%;
        float: none;
    }
    .header_top_bar {
        text-align: center;
    }
    .header_top_bar .icon_phone {
        float: none;
        padding-right: 20px;
        margin-bottom: 3px;
    }
    .header_language {
        display: inline-block;
        float: none;
        margin-bottom: 3px;
    }
    .header_language_inner ul {
        width: 100%;
        float: none;
        padding: 0px;
    }
    .header_language_inner {
        width: 170px;
        padding: 15px 0px;
    }
    .header_language_inner ul li {
        padding: 5px 10px;
    }
    .header_top_bar .header_webtrader_link {
        float: none;
        padding-right: 20px;
        margin-bottom: 3px;
    }
    .header_top_bar .header_app_link {
        float: none;
        padding-right: 20px;
        margin-bottom: 3px;
        margin-left: 0px;
    }
    .reg_link {
        float: none;
    }
    .reg_link a {
        margin-left: 3px;
        margin-right: 3px;
        margin-top: 5px;
    }
    .header_menu_wrapper {
        height: auto;
        padding-bottom: 10px;
    }
    .header_logo {
        float: none;
        margin-bottom: 15px;
    }
    .header_menu_container {
        display: none;
    }
    .mobile_menu_hamburger {
        display: block;
    }
    .search_box {
        top: auto;
        bottom: 5px;
    }
    .footer_bottom {
        padding-bottom: 20px;
    }
    .footer_middle {
        text-align: center;
    }
    .footer_middle ul {
        float: none;
        padding: 0px;
    }
    .footer_middle ul li {
        padding-left: 5px;
        padding-right: 5px;
    }
    .footer_middle .footer_icon_box {
        float: none;
    }
    .footer_middle .footer_icon_box a.facebook_icon {
        margin: 0px 5px 5px;
    }
    .fast_easy_wrapper .inner {
        padding-top: 50px;
        padding-bottom: 60px;
    }
    .fast_easy_wrapper ul {
        margin: 0px auto;
        width: 320px;
        max-width: 100%;
        padding-bottom: 20px;
    }
    .fast_easy_wrapper ul li {
        padding: 0px 0px 30px;
        width: 100%;
        float: none;
    }
    .page_banner_content .inner {
        height: 480px;
        padding-top: 120px;
    }
    .page_banner_content .inner h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .page_banner_content .inner h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .page_title_left {
        font-size: 24px;
    }
    .page_title_left:after {
        margin-top: 15px;
    }
    .page_title_center {
        font-size: 24px;
    }
    .page_title_center:after {
        margin-top: 15px;
    }
    .page_top_text {
        padding-left: 20px;
        padding-right: 20px;
    }
    .page_top_text h2 {
        font-size: 24px;
    }
    .page_top_text h2:after {
        margin-top: 15px;
    }
    .page_top_text {
        padding-left: 30px;
        padding-right: 30px;
    }
    .pages_text_and_image_row .text_box {
        padding: 43px 30px 40px;
        width: 100%;
        float: none;
        height: auto !important;
        padding-bottom: 40px !important;
    }
    .pages_text_and_image_row .img_box {
        position: relative;
        width: 100%;
        left: auto;
        top: auto;
        height: auto;
    }
    .pages_text_and_image_row .img_box img {
        opacity: 1;
    }
    .pages_text_and_image_row.text_and_image_position_right .text_box {
        padding-left: 30px;
        padding-right: 30px;
    }
    .pages_text_and_image_row .bottom_text:before {
        margin-bottom: 15px;
    }
    .pages_text_and_image_row .bottom_text p strong {
        font-size: 30px;
    }
    .pages_text_and_image_row .bottom_text,
    .pages_text_and_image_row.text_and_image_position_right .bottom_text {
        padding: 0px;
        position: static;
    }
    .list_promo_content_text {
        padding-left: 20px;
        padding-right: 20px;
    }
    .blue_table_content {
        width: 100%;
        overflow-x: scroll;
    }
    .blue_table_content table {
        width: 760px;
    }
    .blue_full_table_content {
        margin-left: 0px;
        margin-right: 0px;
        width: 100%;
        overflow-x: scroll;
    }
    .blue_full_table_content table {
        width: 760px;
    }
    .gray_table_content {
        width: 100%;
        overflow-x: scroll;
    }
    .gray_table_content table {
        width: 760px;
    }
    .accounts_proecn_step_content {
        padding: 0px 0px 50px;
    }
    .accounts_proecn_step_content ul {
        width: 320px;
        margin: 0px auto;
        max-width: 100%;
    }
    .accounts_proecn_step_content ul li {
        float: none;
        width: 100%;
    }
    .accounts_proecn_step_content ul li .text_box {
        height: auto !important;
    }
    .accounts_proecn_step_content ul li .blue_text_box:before,
    .accounts_proecn_step_content ul li .blue_text_box:after {
        left: 50%;
        margin-left: -14px;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }
    .accounts_proecn_step_content ul li .blue_text_box:before {
        bottom: auto;
        top: -28px;
    }
    .accounts_proecn_step_content ul li .blue_text_box:after {
        bottom: -28px;
    }
    .islamic_account_v2 .new_islamic_img_list_box {
        width: 460px;
        margin: 0 auto;
        max-width: 100%;
        float: none;
    }
    .islamic_account_v2 .new_islamic_img_list_box.left {
        margin-bottom: 30px;
    }
    .islamic_account_v2 .new_islamic_img_list .strong_box {
        height: auto !important;
    }
    .islamic_account_v2 .new_islamic_img_list .img_box span {
        background-size: 50px;
    }
    .islamic_account_v2 .compare_content {
        margin-bottom: 50px;
    }
    .islamic_account_v2 .compare_content .table_body_item {
        width: 430px;
        margin: 0 auto 60px;
        display: block;
        max-width: 100%;
    }
    .islamic_account_v2 .compare_content .table_item_header .p_box {
        height: auto !important;
    }
    .trading_signals_wrapper .video_box .video_item {
        width: 100%;
        float: none;
    }
    .forex_vps_wrapper .accounts_proecn_step_content {
        margin-bottom: 0;
    }
    .forex_vps_wrapper .logo_box {
        margin-bottom: 50px;
        padding: 45px 30px;
    }
    .vantagefx_awards_wrapper .page_top_text {
        margin-bottom: 50px;
    }
    .vantagefx_awards_wrapper .awards_list {
        width: 46%;
        margin-bottom: 0;
    }
    .regulation_wrapper .corporate_box {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .regulation_wrapper .corporate_list {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
        display: block;
    }
    .regulation_wrapper .corporate_list .title_box,
    .regulation_wrapper .corporate_list .text_box {
        height: auto !important;
    }
    .trading_hours_content .btn_box strong {
        font-size: 16px;
    }
    .trading_hours_content .table_box {
        overflow-x: scroll;
    }
    .trading_hours_content .table_box table {
        width: 760px;
    }
    .page_content_form {
        padding: 0px 0px 50px;
    }
    .mam_pamm_content .pages_text_and_image_row .text_box {
        padding-bottom: 0px;
    }
    .mam_pamm_content .pages_text_and_image_row .img_box {
        padding-left: 0px;
        width: 100%;
        float: none;
        padding: 130px 20px 30px;
    }
    .mam_pamm_content .pages_text_and_image_row .img_box .map_video_wrap {
        width: 390px;
        margin: 0px auto;
        max-width: 100%;
    }
    .mam_pamm_content .pages_text_and_image_row .img_box p {
        text-align: center;
    }
    .zulu_trader_wrapper .zulu_feature,
    .zulu_trader_wrapper .zulu_platform {
        margin-bottom: 50px;
    }
    .zulu_trader_wrapper .zulu_feature li {
        width: 100%;
        display: block;
    }
    .zulu_trader_wrapper .zulu_feature li img {
        width: 50px;
    }
    .zulu_trader_wrapper .zulu_started .left {
        width: 100%;
    }
    .zulu_trader_wrapper .zulu_started h1 {
        font-size: 26px;
    }
    .zulu_trader_wrapper .zulu_started p {
        font-size: 20px;
    }
    .list_promo_table_content {
        margin: 0px;
    }
    .list_promo_table_content .table_content {
        overflow-y: hidden;
        float: none;
        padding: 0px;
        margin-bottom: 30px;
        width: 100%;
    }
    .cpa_affilicated_programs .cpa_affilicated_programs_text .text_left {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .cpa_affilicated_programs .cpa_affilicated_programs_text .text_right {
        float: none;
        width: 100%;
    }
    .cpa_affilicated_programs .text_box img {
        bottom: 10px;
    }
    .hybrid_partners_programs .hybrid_partners_programs_text .text_left {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .hybrid_partners_programs .hybrid_partners_programs_text .text_right {
        float: none;
        width: 100%;
    }
    .introducing_brokers_programs .introducing_brokers_text .text_left {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .introducing_brokers_programs .introducing_brokers_text .text_right {
        float: none;
        width: 100%;
    }
    .compare_platforms {
        padding-top: 50px;
    }
    .teamviewer_content .page_top_text ul {
        text-align: center;
    }
    .teamviewer_content .page_top_text ul li {
        margin-bottom: 20px;
        width: 33.3%;
    }
    .teamviewer_content .page_top_text.teamviewer_content_help {
        margin-bottom: 50px;
    }
    .deposit .deposit_content_table {
        overflow-x: auto;
    }
    .deposit .deposit_content_table table {
        width: 770px;
    }
    .deposit .deposit_content_list {
        padding: 0px 0px 50px;
    }
    .why_choose_vantagefx_programs .forex_signal_new li {
        display: block;
        width: 100%;
        margin-right: 0px;
        vertical-align: top;
    }
    .why_choose_vantagefx_programs .forex_signal_new li h3 {
        text-align: center;
    }
    .contact_us .contact_us_top_list li {
        display: block;
        margin-right: 0px;
        margin-bottom: 30px;
    }
    .contact_us .contact_us_adderss .address_box {
        float: none;
        width: 100%;
        height: auto !important;
    }
    .contact_us .contact_us_top_list {
        margin-top: 25px;
    }
    .forex_wrapper .table_box {
        margin: 0 auto 0;
    }
    .spreads_commissions_wrapper .p_bottom {
        margin-bottom: 30px;
    }
    .spreads_commissions_wrapper .spreads_table {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .spreads_commissions_wrapper .spreads_table_item {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .spreads_commissions_wrapper .commission_table {
        margin-bottom: 50px;
        overflow-x: scroll;
    }
    .spreads_commissions_wrapper .commission_table table {
        width: 635px;
    }
    .spreads_commissions_wrapper .commission_table td {
        font-size: 14px;
    }
    .islamic_account_v2 .islamic_bottom_list h3 {
        font-size: 20px;
    }
    .common_wrapper {
        margin-bottom: 50px;
        margin-top: 0;
    }
    .common_wrapper ul {
        margin-left: 0;
        margin-right: 0;
    }
    .common_wrapper ul li {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
        display: block;
    }
    .common_wrapper ul .p_box {
        height: auto !important;
    }
    .contact_us .info_list .info_item {
        width: 100%;
        float: none;
        margin-bottom: 40px;
        height: auto !important;
    }
}

@media (max-width:600px) {
    .experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row {
        font-size: 13px;
    }
    .rawecn_box_title span {
        font-size: 17px;
        padding-right: 110px;
        padding-left: 6px;
    }
    .rawecn_box_title span:after {
        background-position: -883px 0px;
        top: 8px;
        width: 100px;
        height: 28px;
    }
    .forex_vps_wrapper .logo_box li {
        width: 46%;
    }
}

@media (max-width:550px) {
    .zulu_trader_wrapper .zulu_started {
        padding: 40px 25px;
    }
    .zulu_trader_wrapper .zulu_started img {
        width: 30px;
    }
    .zulu_trader_wrapper .zulu_started p {
        width: 73%;
        font-size: 20px;
    }
    .teamviewer_content .page_top_text ul li {
        width: 100%;
    }
    .sentiment_indicators_wrapper .chart-wraper {
        width: 100% !important;
    }
    .compare_platforms .table_left_url div {
        width: 220px;
        margin: 0 auto;
        float: none;
    }
    .compare_platforms .table_left_url div.red {
        margin-bottom: 20px;
    }
}

@media (max-width:540px) {
    .educations_content_top h2 {
        float: none;
    }
    .educations_content_top_right {
        float: none;
        text-align: center;
    }
    .educations_content_top h3 {
        display: block;
    }
    .educations_content_top .social_list {
        float: none;
        padding-left: 0;
    }
    .educations_content_top .social_list a {
        float: none;
        display: inline-block;
    }
}

@media (max-width:500px) {
    .cpa_affilicated_programs .text_box img {
        max-width: 108px;
    }
    .cpa_affilicated_programs .page_banner_content .text_box .red_arrow_button {
        font-size: 14px
    }
    .hybrid_partners_programs .page_banner_content .text_box .red_arrow_button {
        font-size: 14px
    }
    .introducing_brokers_programs .page_banner_content .text_box .red_arrow_button {
        font-size: 14px
    }
    .compare_platforms .table_box .table_box_left {
        width: 100%;
        margin-bottom: 40px;
    }
    .compare_platforms .table_box .table_box_right {
        width: 100%;
    }
    .forex_wrapper .table_box {
        overflow-x: scroll;
    }
    .forex_wrapper .table_box table {
        width: 443px;
    }
}

@media (max-width:420px) {
    .experience_our_spreads_wrapper .rawecn_box .vfx_exchange_rate .row {
        font-size: 12px;
        padding-top: 8px;
        padding-bottom: 12px;
    }
    .experience_our_spreads_wrapper .rawecn_box .rawecn_list .rawecn_nav span {
        font-size: 12px;
    }
    .page_top_text {
        padding-left: 20px;
        padding-right: 20px;
    }
    .pages_text_and_image_row .text_box,
    .pages_text_and_image_row.text_and_image_position_right .text_box {
        padding-left: 20px;
        padding-right: 20px;
    }
    .pages_text_and_image_row ul.img_list li {
        padding-left: 0px;
        display: block;
    }
    .list_promo_form {
        padding-left: 30px;
        padding-right: 30px;
    }
    .list_promo_table_content .table_content table {
        width: 380px;
    }
    .forex_vps_wrapper .logo_box {
        padding: 45px 20px;
    }
}

@media only screen and (max-width:641px) {
    body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
        line-height: inherit !important;
        min-height: inherit !important;
    }
}

@media only screen and (max-width:761px),
(max-device-width:1023px) and (min-device-width:768px) {
    .page_content_form .gform_wrapper ul.gform_fields li.gfield.gfield_error+li.gfield.gfield_error {
        margin-top: 0px;
    }
}

@media only screen and (min-width: 769px) {
    .mobile_menu {
        display: none !important;
    }
}

@media only screen and (min-width: 300px) and (max-width: 700px) {
    .why_choose_vantagefx_programs .forex_promotions_box_item6 {
        width: auto;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item6 h5 span {
        display: block;
    }
    .why_choose_vantagefx_programs .forex_promotions_box {
        width: 100%;
        margin: 0 auto;
        height: auto;
        background: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box h5 {
        font-size: 16px !important;
        margin-bottom: 0;
        font-weight: normal;
        color: #000;
        text-align: center;
    }
    .why_choose_vantagefx_programs .forex_promotions_box h5 span {
        font-size: 12px !important;
        margin-bottom: 0;
        font-weight: normal;
        color: #000;
    }
    .why_choose_vantagefx_programs .forex_promotions_box h5 br {
        display: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center h5 {
        margin-bottom: 0;
        font-size: 12px;
        color: #000;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .fond {
        font-size: 12px !important;
        padding: 5px;
        color: #000;
        border: 1px solid #000;
        margin-bottom: 15px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .fond:hover {
        color: #fff;
        background: #000;
        border: 1px solid #fff;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .fond2 {
        display: none;
        font-size: 12px;
        color: white;
        border: 1px solid white;
        text-decoration: none;
        border-radius: 5px;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item1 {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item2 {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item3 {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item4 {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item5 {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item6 {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item7 {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
    }
    .why_choose_vantagefx_programs .forex_promotions_box_item8 {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        text-align: center;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center img {
        display: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center h5 {
        display: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center h5 span {
        display: none;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center .center_eight {
        display: block;
        font-size: 14px;
        font-weight: bold;
    }
    .why_choose_vantagefx_programs .forex_promotions_box .forex_promotions_box_item_center .strat_now {
        background: #fc3044;
        font-size: 14px;
        padding: 15px;
    }
}

@media (max-width:360px) {
    .contact_us .contact_us_top_list li a {
        font-size: 14px;
    }
}

#adroll_consent_container {
    display: none;
}

.grecaptcha-badge {
    display: none;
}

/* country_icon */

.country_list_icon {
    display: inline-block;
    width: 22px;
    height: 15px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url(images/country_list_icon.png);
    background-repeat: no-repeat;
}

.form_ad_country_icon {
    background-position: 0px 0px;
}

.form_ae_country_icon {
    background-position: -23px 0px;
}

.form_af_country_icon {
    background-position: -46px 0px;
}

.form_ag_country_icon {
    background-position: -69px 0px;
}

.form_ai_country_icon {
    background-position: -92px 0px;
}

.form_al_country_icon {
    background-position: -115px 0px;
}

.form_am_country_icon {
    background-position: -138px 0px;
}

.form_an_country_icon {
    background-position: -161px 0px;
}

.form_ao_country_icon {
    background-position: -184px 0px;
}

.form_aq_country_icon {
    background-position: -207px 0px;
}

.form_ar_country_icon {
    background-position: 0px -16px;
}

.form_as_country_icon {
    background-position: -23px -16px;
}

.form_at_country_icon {
    background-position: -46px -16px;
}

.form_au_country_icon {
    background-position: -69px -16px;
}

.form_aw_country_icon {
    background-position: -92px -16px;
}

.form_ax_country_icon {
    background-position: -115px -16px;
}

.form_az_country_icon {
    background-position: -138px -16px;
}

.form_ba_country_icon {
    background-position: -161px -16px;
}

.form_bb_country_icon {
    background-position: -184px -16px;
}

.form_bd_country_icon {
    background-position: -207px -16px;
}

.form_be_country_icon {
    background-position: 0px -32px;
}

.form_bf_country_icon {
    background-position: -23px -32px;
}

.form_bg_country_icon {
    background-position: -46px -32px;
}

.form_bh_country_icon {
    background-position: -69px -32px;
}

.form_bi_country_icon {
    background-position: -92px -32px;
}

.form_bj_country_icon {
    background-position: -115px -32px;
}

.form_bl_country_icon {
    background-position: -138px -32px;
}

.form_bm_country_icon {
    background-position: -161px -32px;
}

.form_bn_country_icon {
    background-position: -184px -32px;
}

.form_bo_country_icon {
    background-position: -207px -32px;
}

.form_bq_country_icon {
    background-position: 0px -48px;
}

.form_br_country_icon {
    background-position: -23px -48px;
}

.form_bs_country_icon {
    background-position: -46px -48px;
}

.form_bt_country_icon {
    background-position: -69px -48px;
}

.form_bv_country_icon {
    background-position: -92px -48px;
}

.form_bw_country_icon {
    background-position: -115px -48px;
}

.form_by_country_icon {
    background-position: -138px -48px;
}

.form_bz_country_icon {
    background-position: -161px -48px;
}

.form_ca_country_icon {
    background-position: -184px -48px;
}

.form_cc_country_icon {
    background-position: -207px -48px;
}

.form_cd_country_icon {
    background-position: 0px -64px;
}

.form_cf_country_icon {
    background-position: -23px -64px;
}

.form_cg_country_icon {
    background-position: -46px -64px;
}

.form_ch_country_icon {
    background-position: -69px -64px;
}

.form_ci_country_icon {
    background-position: -92px -64px;
}

.form_ck_country_icon {
    background-position: -115px -64px;
}

.form_cl_country_icon {
    background-position: -138px -64px;
}

.form_cm_country_icon {
    background-position: -161px -64px;
}

.form_cn_country_icon {
    background-position: -184px -64px;
}

.form_co_country_icon {
    background-position: -207px -64px;
}

.form_cr_country_icon {
    background-position: 0px -80px;
}

.form_cu_country_icon {
    background-position: -23px -80px;
}

.form_cv_country_icon {
    background-position: -46px -80px;
}

.form_cw_country_icon {
    background-position: -69px -80px;
}

.form_cx_country_icon {
    background-position: -92px -80px;
}

.form_cy_country_icon {
    background-position: -115px -80px;
}

.form_cz_country_icon {
    background-position: -138px -80px;
}

.form_de_country_icon {
    background-position: -161px -80px;
}

.form_dj_country_icon {
    background-position: -184px -80px;
}

.form_dk_country_icon {
    background-position: -207 -80px;
}

.form_dm_country_icon {
    background-position: 0px -96px;
}

.form_do_country_icon {
    background-position: -23px -96px;
}

.form_dz_country_icon {
    background-position: -46px -96px;
}

.form_ec_country_icon {
    background-position: -69px -96px;
}

.form_ee_country_icon {
    background-position: -92px -96px;
}

.form_eg_country_icon {
    background-position: -115px -96px;
}

.form_eh_country_icon {
    background-position: -138px -96px;
}

.form_er_country_icon {
    background-position: -161px -96px;
}

.form_es_country_icon {
    background-position: -184px -96px;
}

.form_et_country_icon {
    background-position: -207px -96px;
}

.form_eu_country_icon {
    background-position: 0px -112px;
}

.form_fi_country_icon {
    background-position: -23px -112px;
}

.form_fj_country_icon {
    background-position: -46px -112px;
}

.form_fk_country_icon {
    background-position: -69px -112px;
}

.form_fm_country_icon {
    background-position: -92px -112px;
}

.form_fo_country_icon {
    background-position: -115px -112px;
}

.form_fr_country_icon {
    background-position: -138px -112px;
}

.form_ga_country_icon {
    background-position: -161px -112px;
}

.form_gb_country_icon {
    background-position: -184px -112px;
}

.form_gd_country_icon {
    background-position: -207px -112px;
}

.form_ge_country_icon {
    background-position: 0px -128px;
}

.form_gf_country_icon {
    background-position: -23px -128px;
}

.form_gg_country_icon {
    background-position: -46px -128px;
}

.form_gh_country_icon {
    background-position: -69px -128px;
}

.form_gi_country_icon {
    background-position: -92px -128px;
}

.form_gl_country_icon {
    background-position: -115px -128px;
}

.form_gm_country_icon {
    background-position: -138px -128px;
}

.form_gn_country_icon {
    background-position: -161px -128px;
}

.form_gp_country_icon {
    background-position: -184px -128px;
}

.form_gq_country_icon {
    background-position: -207px -128px;
}

.form_gr_country_icon {
    background-position: 0px -144px;
}

.form_gs_country_icon {
    background-position: -23px -144px;
}

.form_gt_country_icon {
    background-position: -46px -144px;
}

.form_gu_country_icon {
    background-position: -69px -144px;
}

.form_gw_country_icon {
    background-position: -92px -144px;
}

.form_gy_country_icon {
    background-position: -115px -144px;
}

.form_hk_country_icon {
    background-position: -138px -144px;
}

.form_hm_country_icon {
    background-position: -161px -144px;
}

.form_hn_country_icon {
    background-position: -184px -144px;
}

.form_hr_country_icon {
    background-position: -207px -144px;
}

.form_ht_country_icon {
    background-position: 0px -160px;
}

.form_hu_country_icon {
    background-position: -23px -160px;
}

.form_id_country_icon {
    background-position: -46px -160px;
}

.form_ie_country_icon {
    background-position: -69px -160px;
}

.form_il_country_icon {
    background-position: -92px -160px;
}

.form_im_country_icon {
    background-position: -115px -160px;
}

.form_in_country_icon {
    background-position: -138px -160px;
}

.form_io_country_icon {
    background-position: -161px -160px;
}

.form_iq_country_icon {
    background-position: -184px -160px;
}

.form_ir_country_icon {
    background-position: -207px -160px;
}

.form_is_country_icon {
    background-position: 0px -176px;
}

.form_it_country_icon {
    background-position: -23px -176px;
}

.form_je_country_icon {
    background-position: -46px -176px;
}

.form_jm_country_icon {
    background-position: -69px -176px;
}

.form_jo_country_icon {
    background-position: -92px -176px;
}

.form_jp_country_icon {
    background-position: -115px -176px;
}

.form_ke_country_icon {
    background-position: -138px -176px;
}

.form_kg_country_icon {
    background-position: -161px -176px;
}

.form_kh_country_icon {
    background-position: -184px -176px;
}

.form_ki_country_icon {
    background-position: -207px -176px;
}

.form_km_country_icon {
    background-position: 0px -192px;
}

.form_kn_country_icon {
    background-position: -23px -192px;
}

.form_kp_country_icon {
    background-position: -46px -192px;
}

.form_kr_country_icon {
    background-position: -69px -192px;
}

.form_kw_country_icon {
    background-position: -92px -192px;
}

.form_ky_country_icon {
    background-position: -115px -192px;
}

.form_kz_country_icon {
    background-position: -138px -192px;
}

.form_la_country_icon {
    background-position: -161px -192px;
}

.form_lb_country_icon {
    background-position: -184px -192px;
}

.form_lc_country_icon {
    background-position: -207px -192px;
}

.form_li_country_icon {
    background-position: 0px -208px;
}

.form_lk_country_icon {
    background-position: -23px -208px;
}

.form_lr_country_icon {
    background-position: -46px -208px;
}

.form_ls_country_icon {
    background-position: -69px -208px;
}

.form_lt_country_icon {
    background-position: -92px -208px;
}

.form_lu_country_icon {
    background-position: -115px -208px;
}

.form_lv_country_icon {
    background-position: -138px -208px;
}

.form_ly_country_icon {
    background-position: -161px -208px;
}

.form_ma_country_icon {
    background-position: -184px -208px;
}

.form_mc_country_icon {
    background-position: -207px -208px;
}

.form_md_country_icon {
    background-position: 0px -224px;
}

.form_me_country_icon {
    background-position: -23px -224px;
}

.form_mf_country_icon {
    background-position: -46px -224px;
}

.form_mg_country_icon {
    background-position: -69px -224px;
}

.form_mh_country_icon {
    background-position: -92px -224px;
}

.form_mk_country_icon {
    background-position: -115px -224px;
}

.form_ml_country_icon {
    background-position: -138px -224px;
}

.form_mm_country_icon {
    background-position: -161px -224px;
}

.form_mn_country_icon {
    background-position: -184px -224px;
}

.form_mo_country_icon {
    background-position: -207px -224px;
}

.form_mp_country_icon {
    background-position: 0px -240px;
}

.form_mq_country_icon {
    background-position: -23px -240px;
}

.form_mr_country_icon {
    background-position: -46px -240px;
}

.form_ms_country_icon {
    background-position: -69px -240px;
}

.form_mt_country_icon {
    background-position: -92px -240px;
}

.form_mu_country_icon {
    background-position: -115px -240px;
}

.form_mv_country_icon {
    background-position: -138px -240px;
}

.form_mw_country_icon {
    background-position: -161px -240px;
}

.form_mx_country_icon {
    background-position: -184px -240px;
}

.form_my_country_icon {
    background-position: -207px -240px;
}

.form_mz_country_icon {
    background-position: 0px -256px;
}

.form_na_country_icon {
    background-position: -23px -256px;
}

.form_nc_country_icon {
    background-position: -46px -256px;
}

.form_ne_country_icon {
    background-position: -69px -256px;
}

.form_nf_country_icon {
    background-position: -92px -256px;
}

.form_ng_country_icon {
    background-position: -115px -256px;
}

.form_ni_country_icon {
    background-position: -138px -256px;
}

.form_nl_country_icon {
    background-position: -161px -256px;
}

.form_no_country_icon {
    background-position: -184px -256px;
}

.form_np_country_icon {
    background-position: -207px -256px;
}

.form_nr_country_icon {
    background-position: 0px -272px;
}

.form_nu_country_icon {
    background-position: -23px -272px;
}

.form_nz_country_icon {
    background-position: -46px -272px;
}

.form_om_country_icon {
    background-position: -69px -272px;
}

.form_pa_country_icon {
    background-position: -92px -272px;
}

.form_pe_country_icon {
    background-position: -115px -272px;
}

.form_pf_country_icon {
    background-position: -138px -272px;
}

.form_pg_country_icon {
    background-position: -161px -272px;
}

.form_ph_country_icon {
    background-position: -184px -272px;
}

.form_pk_country_icon {
    background-position: -207px -272px;
}

.form_pl_country_icon {
    background-position: 0px -288px;
}

.form_pm_country_icon {
    background-position: -23px -288px;
}

.form_pn_country_icon {
    background-position: -46px -288px;
}

.form_pr_country_icon {
    background-position: -69px -288px;
}

.form_ps_country_icon {
    background-position: -92px -288px;
}

.form_pt_country_icon {
    background-position: -115px -288px;
}

.form_pw_country_icon {
    background-position: -138px -288px;
}

.form_py_country_icon {
    background-position: -161px -288px;
}

.form_qa_country_icon {
    background-position: -184px -288px;
}

.form_re_country_icon {
    background-position: -207px -288px;
}

.form_ro_country_icon {
    background-position: 0px -304px;
}

.form_rs_country_icon {
    background-position: -23px -304px;
}

.form_ru_country_icon {
    background-position: -46px -304px;
}

.form_rw_country_icon {
    background-position: -69px -304px;
}

.form_sa_country_icon {
    background-position: -92px -304px;
}

.form_sb_country_icon {
    background-position: -115px -304px;
}

.form_sc_country_icon {
    background-position: -138px -304px;
}

.form_sd_country_icon {
    background-position: -161px -304px;
}

.form_se_country_icon {
    background-position: -184px -304px;
}

.form_sg_country_icon {
    background-position: -207px -304px;
}

.form_sh_country_icon {
    background-position: 0px -320px;
}

.form_si_country_icon {
    background-position: -23px -320px;
}

.form_sj_country_icon {
    background-position: -46px -320px;
}

.form_sk_country_icon {
    background-position: -69px -320px;
}

.form_sl_country_icon {
    background-position: -92px -320px;
}

.form_sm_country_icon {
    background-position: -115px -320px;
}

.form_sn_country_icon {
    background-position: -138px -320px;
}

.form_so_country_icon {
    background-position: -161px -320px;
}

.form_sr_country_icon {
    background-position: -184px -320px;
}

.form_ss_country_icon {
    background-position: -207px -320px;
}

.form_st_country_icon {
    background-position: 0px -336px;
}

.form_sv_country_icon {
    background-position: -23px -336px;
}

.form_sx_country_icon {
    background-position: -46px -336px;
}

.form_sy_country_icon {
    background-position: -69px -336px;
}

.form_sz_country_icon {
    background-position: -92px -336px;
}

.form_tc_country_icon {
    background-position: -115px -336px;
}

.form_td_country_icon {
    background-position: -138px -336px;
}

.form_tf_country_icon {
    background-position: -161px -336px;
}

.form_tg_country_icon {
    background-position: -184px -336px;
}

.form_th_country_icon {
    background-position: -207px -336px;
}

.form_tj_country_icon {
    background-position: 0px -352px;
}

.form_tk_country_icon {
    background-position: -23px -352px;
}

.form_tl_country_icon {
    background-position: -46px -352px;
}

.form_tm_country_icon {
    background-position: -69px -352px;
}

.form_tn_country_icon {
    background-position: -92px -352px;
}

.form_to_country_icon {
    background-position: -115px -352px;
}

.form_tr_country_icon {
    background-position: -138px -352px;
}

.form_tt_country_icon {
    background-position: -161px -352px;
}

.form_tv_country_icon {
    background-position: -184px -352px;
}

.form_tw_country_icon {
    background-position: -207px -352px;
}

.form_tz_country_icon {
    background-position: 0px -368px;
}

.form_ua_country_icon {
    background-position: -23px -368px;
}

.form_ug_country_icon {
    background-position: -46px -368px;
}

.form_um_country_icon {
    background-position: -69px -368px;
}

.form_us_country_icon {
    background-position: -92px -368px;
}

.form_uy_country_icon {
    background-position: -115px -368px;
}

.form_uz_country_icon {
    background-position: -138px -368px;
}

.form_va_country_icon {
    background-position: -161px -368px;
}

.form_vc_country_icon {
    background-position: -184px -368px;
}

.form_ve_country_icon {
    background-position: -207px -368px;
}

.form_vg_country_icon {
    background-position: 0px -384px;
}

.form_vi_country_icon {
    background-position: -23px -384px;
}

.form_vn_country_icon {
    background-position: -46px -384px;
}

.form_vu_country_icon {
    background-position: -69px -384px;
}

.form_wf_country_icon {
    background-position: -92px -384px;
}

.form_ws_country_icon {
    background-position: -115px -384px;
}

.form_xk_country_icon {
    background-position: -138px -384px;
}

.form_ye_country_icon {
    background-position: -161px -384px;
}

.form_yt_country_icon {
    background-position: -184px -384px;
}

.form_za_country_icon {
    background-position: -207px -384px;
}

.form_zm_country_icon {
    background-position: 0px -400px;
}

.form_zw_country_icon {
    background-position: -23px -400px;
}