/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/


h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
    padding: 0;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a:hover,
a:focus,
a:active {
    color: white;
!important;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
    clear: both;
    display: block;
    float: left;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation li {
    float: left;
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 1.5em;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: block;
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
    display: none;
}

.single .byline,
.group-blog .byline {
    display: inline;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

.row-no-padding > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.row.nomargin {
    margin: 0;
}

/*--------------------------------------------------------------
## Fonts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Hero Section
--------------------------------------------------------------*/

section#hero {
    background-size: cover;
    margin-left: -15px;
    margin-right: -15px;
}

.featured-header a {
    display: block;
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
}

.featured-header a:hover {
    background: rgba(0, 0, 0, 0.3);
}

.featured-header span {
    color: #9d9d9d;
    font-size: 16px;
}

.featured-header h1 {
    color: #EFEFEF;
    font-size: 25px;
    font-weight: 700;
}

.row.featured-columns > div {
    text-align: center;
    height: 200px;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.row.featured-columns > div:nth-child(1) {
    background: rgba(0, 0, 0, 0.5);
}

.row.featured-columns > div:nth-child(2) {
    background: rgba(0, 0, 0, 0.6);
}

.row.featured-columns > div:nth-child(3) {
    background: rgba(0, 0, 0, 0.7);
}

.row.featured-columns > div > a {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: center;
    align-self: center;
    height: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

section#hero a:hover,
section#hero a:link,
section#hero a:visited,
section#hero a:active {
    text-decoration: none;
    outline: none;
    color: inherit;
}

.row.featured-columns > div:nth-child(1):hover {
    background: rgba(0, 0, 0, 0.4);
}

.row.featured-columns > div:nth-child(2):hover {
    background: rgba(0, 0, 0, 0.4);
}

.row.featured-columns > div:nth-child(3):hover {
    background: rgba(0, 0, 0, 0.4);
}

.row.featured-columns a span {
    display: block;
    width: 100%;
}

.row.featured-columns a span small {
    text-transform: uppercase;
    color: #9d9d9d;
    font-size: 14px;
}

.row.featured-columns a span h2 {
    color: #eeeeee;
    font-size: 22px;
    font-weight: 300;
    margin: 0.3em 0;
}

/*--------------------------------------------------------------
## Blog Features
--------------------------------------------------------------*/

section#category-bar {
    margin-left: -15px;
    margin-right: -15px;
    background: #000;
    font-size: 14px;
    font-weight: 600;
}

section#category-bar nav.cats ul {
    margin: 0;
    padding: 0;
}

section#category-bar nav.cats li {
    margin: 0;
    padding: 0;
    display: inline-block;
}

section#category-bar nav.cats li a {
    display: block;
    padding: 15px 25px;
    color: #eeeeee;
    cursor: pointer;
}

section#category-bar nav.cats li a:hover {
    background-color: #343131;
    text-decoration: none;
}

section#category-bar nav.cats li.current-menu-item a {
    background: #db0436;
}

form.search input[type="text"] {
    background: #111;
    color: #ddd;
    outline: none;
    border: none;
    width: 90%;
    margin-top: 10px;
    padding: 5px 10px;
}

section#blog-list {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: rgba(0,0,0,0.5);
    padding-top:15px;
}

section#blog-list div.article-preview {
    margin-top: 1em;
}

section#blog-list div.article-preview.search:last-child {
    margin-bottom: 6em;
}

section#blog-list article {
    padding-bottom: 15px;
}

.article-preview:nth-child(odd) {
    clear: left;
}

section#blog-list article img {
    display: block;
    width: 100%;
}

section#blog-list article h2 {
    margin: 10px 0 0 0;
    color: #EFEFEF;
    font-size: 18px;
    font-weight: 600;
    font-weight: 700;
    line-height: 20px;
}

section#blog-list article h2 a {
    color: inherit;
}

section#blog-list article span.article-meta {
    display: block;
    color: #9d9d9d;
    font-size: 13px;
    line-height: 20px;
}

section#blog-list article span.article-meta span.date {
    margin-right: 10px;
}

article span.article-meta span.author {
    color: #db0436;
}

span.article-share ul {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 32px;
    line-height: 32px;
    width: 160px;
    float: right;
}

span.article-share li {
    display: block;
    height: 32px;
    line-height: 32px;
    margin: 0 5px;
    float: left;
}

span.article-share li img, span.article-share li a {
    display: block;
    width: 32px;
    height: 32px;
}

span.tags {
    background: url('/wp-content/uploads/2016/07/tags.png') left center no-repeat;
    padding-left: 32px;
    background-size: 24px;
    color: #db0436;
    display: block;
    margin: 30px 0 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px !important;
}

section#blog-list article:hover img {
    opacity: 0.6;
}

.alm-btn-wrap {
    text-align: center;
    display: block;
    clear: left;
    width: 100%;
}

button#load-more {
    padding: 10px 20px;
    box-shadow: none;
    border: none;
    text-shadow: none;
    color: #fff;
    margin: 10px 0 30px;
    text-align: center;
    width: auto;
    background: #db0436;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 10px;
}

button#load-more:hover {
    box-shadow: 0 0 0 1px rgba(255,255,255,1);
}

button#load-more:focus, button#load-more:active, button#load-more:link, button#load-more:visited, button#load-more:hover {
    outline: none;
    border: 0;
}

button#load-more.done {
    color: #1d1d1d;
    cursor: default !important;
}

button#load-more.done:after {
    content: "No more posts to load...";
    opacity: 1;
    color: #ccc;
    display: block;
    margin-top: -15px;
}

html[lang=zh-CN] button#load-more.done:after {
    content: "???????";
}

.amdsocial {
    text-align: center;
    padding: 10px;
}

.amdsocial img {
    max-width: 24px;
}

section#twitter-list {
    background: #181213;
    margin: 0 -15px;
}

section#twitter-list * {
    color: #fff;
}

/*--------------------------------------------------------------
## Scrolling Pages
--------------------------------------------------------------*/

.scrolling-sections hr {
    margin: 0;
}

section.scroll {
    position: relative;
    background-position: top center;
}

section.scroll img {
    width: 100%;
}

.box {
    width: 40%;
    min-width: 170px;
    max-width: 510px;
    padding: 20px;
    font-size: 18px;
}

.box h1 {
    margin: 0 0 .25em 0;
    font-size: 44px;
}

.box.colour_none {
    background: transparent;
}

.box.colour_white {
    background: rgba(255, 255, 255, 0.7);
}

.box.colour_grey {
    background: rgba(50, 50, 50, 0.7);
}

.box.colour_black {
    background: rgba(0, 0, 0, 0.7);
}

.box.text_white {
    color: #fff;
}

.box.text_grey {
    color: #555;
}

.box.text_black {
    color: #000;
}

a.red.cta {
    background: #db0436;
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
    display: inline-block;
    margin-top: 1em;
}

.box table th {
    font-size: 19px;
}

@media screen and (max-width: 768px) {
    ul.tab li {
        width: 100%;
    }
}

@media screen and (min-width: 961px) {
    #section_1 .box h1{font-size: 4vw;}
    #section_1 .box div, #section_1 .box p{font-size:1.5vw; line-height:1.7vw; margin-bottom:.6vw}
}

@media screen and (max-width: 960px) {

    .box {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: #333 !important;
        color: #fff !important;
        min-width: 0 !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 20px 5% !important;
    }

    .box table {
        width: auto;
        margin: 0 auto;
        text-align: center;
    }

    .box table * {
        text-align: center;
    }

    #dotaInfo .info_link {
        color: #cbbe94;
        border-bottom: 2px solid #cbbe94;
    }
    #smashInfo .info_link {
        color: #cbbe94;
        border-bottom: 2px solid #cbbe94;
    }
}

.notfound h1 {
    display: block;
    width: 100%;
    text-align: center;
    padding: 20vh 0;
    font-size: 10em;
    color: #db0436;
    margin: 0;
}

a.open-footnotes {
    color: #fff;
    font-size: 1.3em;
    margin: 1em 0;
    display: block;
}

a.open-footnotes:hover {
    color: #db0436;
}

.thefootnotes {
    display: none;
    color: #fff;
    margin-bottom: 40px;
}

section.related-articles {
    padding-bottom: 30px;
}

section.related-articles > .container {
    padding-right: 45px;
}

section.related-articles h3 {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
}

@media screen and (max-width: 600px) {

    section#category-bar nav.cats ul {
        margin-left: 10px;
    }

    section#category-bar nav.cats li a {
        padding: 10px 5px;
    }

    .video-box:nth-child(odd) {
        clear: left;
    }

    ul.tab li {
        width: 100%;
    }


}

