/*
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.1.0 (25/04/2015)
 */

@media screen {

	/* Overlay */
	#lightcase-overlay {
		display: none;
		width: 100%;
		height: 100%;

		position: fixed;
		z-index: 1000;
		top: 0;
		left: 0;
	}

	/* Loading */
	#lightcase-loading {
		position: fixed;
		z-index: 1001;
		top: 50%;
		left: 50%;

		margin-top: -0.5em;
		margin-left: -0.5em;

		opacity: 1;

		font-size: 32px;

		/* Fixes the icon wobble issue in firefox */
		-moz-transform-origin: 50% 53%;

		-webkit-animation: lightcase-loading-spin 0.5s infinite linear;
		-moz-animation: lightcase-loading-spin 0.5s infinite linear;
		-o-animation: lightcase-loading-spin 0.5s infinite linear;
		animation: lightcase-loading-spin 0.5s infinite linear;
	}

	/* Case */
	#lightcase-case {
		display: none;

		position: fixed;
		z-index: 1002;
		top: 50%;
		left: 50%;
	}

	/* Additional info */
	#lightcase-case .lightcase-info {
		/*
		 * You can change to position "static" or "relative" instead, but consider
		 * that this height will be integrated and calculated
		 * to the maximum height additionally to the image height.
		 */
		position: absolute;

		padding-top: 15px;
	}

	#lightcase-case .lightcase-caption {
		clear: both;
	}
	#lightcase-case .lightcase-title,
	#lightcase-case .lightcase-caption {
		margin: 0;
		padding: 0;

		font-size: 17px;
		line-height: 1.5;
		font-weight: normal;
		text-overflow: ellipsis;
	}
	#lightcase-case .lightcase-caption {
		font-size: 13px;
	}
	#lightcase-case .lightcase-sequenceInfo {
		font-size: 11px;
	}

	/* Icons */
	[class*='lightcase-icon-'] {
		width: 1.123em;
		height: auto;

		/*
		 * For adjusting the icon size, just change the
		 * value for "font-size" here!
		 */
		font-size: 38px;
		line-height: 1;

		text-align: center;
		text-shadow: none;
	}
	a[class*='lightcase-icon-'],
	a[class*='lightcase-icon-']:focus {
		position: fixed;
		z-index: 9999;

		color: rgba(255,255,255,0.6);

		-webkit-tap-highlight-color: rgba(0,0,0,0);

		-webkit-transition: color, opacity, ease-in-out 0.1s;
		-moz-transition: color, opacity, ease-in-out 0.1s;
		-o-transition: color, opacity, ease-in-out 0.1s;
		transition: color, opacity, ease-in-out 0.1s;
	}
	a[class*='lightcase-icon-']:hover {
		color: rgba(255,255,255,1);
	}
	a[class*='lightcase-icon-'] > span {
		display: inline-block;
		text-indent: -9999px;
	}

	/* For mobile (touch) devices */
	.lightcase-isMobileDevice #lightcase-case .lightcase-inlineWrap,
	.lightcase-isMobileDevice #lightcase-case[data-type=iframe] .lightcase-contentInner {
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}

	.lightcase-isMobileDevice.lightcase-open,
	.lightcase-isMobileDevice.lightcase-open body {
		max-width: 100%;
		max-height: 100%;
		overflow: hidden;
	}

	.lightcase-isMobileDevice #lightcase-nav a:hover {
		color: #aaa;
		text-shadow: none;
	}

}

/* Animation for loading spin icon */
@-webkit-keyframes lightcase-loading-spin {

	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		-moz-transform: rotate(359deg);
		-o-transform: rotate(359deg);
		transform: rotate(359deg);
	}

}
@-moz-keyframes lightcase-loading-spin {

	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		-moz-transform: rotate(359deg);
		-o-transform: rotate(359deg);
		transform: rotate(359deg);
	}

}
@-o-keyframes lightcase-loading-spin {

	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		-moz-transform: rotate(359deg);
		-o-transform: rotate(359deg);
		transform: rotate(359deg);
	}

}
@-ms-keyframes lightcase-loading-spin {

	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		-moz-transform: rotate(359deg);
		-o-transform: rotate(359deg);
		transform: rotate(359deg);
	}

}
@keyframes lightcase-loading-spin {

	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		-moz-transform: rotate(359deg);
		-o-transform: rotate(359deg);
		transform: rotate(359deg);
	}

}/*
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.1.0 (25/04/2015)
 */

/* Reduced layout for small devices */
@media screen and (max-width: 640px) {

	.lightcase-open body {
		padding: 55px 0 70px 0;
	}

	.lightcase-open body > *:not([id*=lightcase-]) {
		position: fixed !important;
		top: -9999px !important;

		width: 0 !important;
		height: 0 !important;

		overflow: hidden !important;
	}

	/* Overlay */
	#lightcase-overlay {
		background: #333;
	}

	/* Loading */
	#lightcase-loading {
		color: #aaa;
	}

	/* Case */
	#lightcase-case {
		font-family: arial, sans-serif;
		font-size: 13px;
		line-height: 18px;
		text-align: left;

		text-shadow: 0 0 10px rgba(0,0,0,0.5);
	}

	#lightcase-case:not([data-type=image]):not([data-type=video]):not([data-type=flash]):not([data-type=error]),
	#lightcase-case:not([data-type=image]):not([data-type=video]):not([data-type=flash]):not([data-type=error]) .lightcase-contentInner,
	#lightcase-case:not([data-type=image]):not([data-type=video]):not([data-type=flash]):not([data-type=error]) .lightcase-inlineWrap {
		position: relative !important;

		top: auto !important;
		left: auto !important;

		width: auto !important;
		height: auto !important;

		margin: 0 !important;
		padding: 0 !important;

		border: none;
		background: none;
	}

	/*
	 * Content - Extend with further selectors and colors in case you
	 * have elements like <ul>, <li>, <span> or similar displayed in lightcase.
	 */
	#lightcase-case .lightcase-content h1,
	#lightcase-case .lightcase-content h2,
	#lightcase-case .lightcase-content h3,
	#lightcase-case .lightcase-content h4,
	#lightcase-case .lightcase-content h5,
	#lightcase-case .lightcase-content h6,
	#lightcase-case .lightcase-content p {
		color: #aaa;
	}

	/* Additional info */
	#lightcase-case .lightcase-info {
		padding-left: 15px;
		padding-right: 15px;
	}
	#lightcase-case:not([data-type=image]):not([data-type=video]):not([data-type=flash]):not([data-type=error]) .lightcase-info {
		position: static;
	}

	#lightcase-case:not([data-type=image]):not([data-type=video]):not([data-type=flash]):not([data-type=error]) .lightcase-content {
		padding: 15px;
		border: none;
		background: none;

		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		-o-box-shadow: none;
		box-shadow: none;
	}
	#lightcase-case:not([data-type=image]):not([data-type=video]):not([data-type=flash]):not([data-type=error]) .lightcase-contentInner,
	#lightcase-case:not([data-type=image]):not([data-type=video]):not([data-type=flash]):not([data-type=error]) .lightcase-contentInner > * {
		width: 100% !important;
		max-width: none !important;
	}

	/*
	 * Set auto height to each element except iframes, because of that
	 * those cannot have a natural/native height and it must be especially defined.
	 */
	#lightcase-case:not([data-type=image]):not([data-type=video]):not([data-type=flash]):not([data-type=error]) .lightcase-contentInner > *:not(iframe) {
		height: auto !important;
		max-height: none !important;
	}

	/* Navigation */
	.lightcase-open #lightcase-nav[data-ispartofsequence]:before {
		content: '';
		position: fixed;
		z-index: 9998;
		right: 0;
		bottom: 0;
		left: 0;
		height: 55px;

		background: rgba(55,55,55,0.9);
	}

	#lightcase-nav a {
		position: fixed;
		z-index: 9999;
		bottom: 15px;

		outline: none;
		cursor: pointer;
		font-size: 24px;
	}
	#lightcase-nav a:hover {
		text-shadow: 0 0 15px #fff;
	}

	/* Icon positioning */
	#lightcase-nav .lightcase-icon-close {
		position: absolute;
		z-index: 9997;
		top: 15px;
		right: 15px;

		opacity: 0;
	}

	#lightcase-nav .lightcase-icon-pause,
	#lightcase-nav .lightcase-icon-play {
		left: 50%;
		margin-left: -0.5em;
	}
	#lightcase-nav .lightcase-icon-prev {
		left: 15px;
	}
	#lightcase-nav .lightcase-icon-next {
		right: 15px;
	}

	/* Error message */
	#lightcase-case p.lightcase-error {
		padding: 30px 0;
		font-size: 17px;
		text-align: center;

		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;

		color: #aaa;
	}

}/*
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.1.0 (25/04/2015)
 */

@media screen and (min-width: 641px) {

	/* Overlay */
	#lightcase-overlay {
		background: #333;
	}

	/* Loading */
	#lightcase-loading {
		color: #fff;
		text-shadow: 0 0 15px #fff;
	}

	/* Case */
	#lightcase-case {
		font-family: arial, sans-serif;
		font-size: 13px;
		line-height: 18px;
		text-align: left;

		color: #aaa;
		text-shadow: 0 0 10px rgba(0,0,0,0.5);
	}

	/* Content */
	#lightcase-case:not([data-type=error]) .lightcase-content {
		position: relative;
		z-index: 1;
		overflow: hidden;

		text-shadow: none;

		background-color: #fff;

		-webkit-box-shadow: 0 0 30px rgba(0,0,0,0.5);
		-moz-box-shadow: 0 0 30px rgba(0,0,0,0.5);
		-o-box-shadow: 0 0 30px rgba(0,0,0,0.5);
		box-shadow: 0 0 30px rgba(0,0,0,0.5);

		-webkit-backface-visibility: hidden;
	}
	#lightcase-case[data-type=image] .lightcase-content,
	#lightcase-case[data-type=video] .lightcase-content {
		background-color: #333;
	}
	#lightcase-case[data-type=image] .lightcase-contentInner,
	#lightcase-case[data-type=video] .lightcase-contentInner {
		line-height: 0.75;
	}
	#lightcase-case:not([data-type=error]) .lightcase-inlineWrap {
		padding: 30px;

		overflow: auto;

		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
	}

	/*
	 * Content - Extend with further selectors and colors in case you
	 * have elements like <ul>, <li>, <span> or similar displayed in lightcase.
	 */
	#lightcase-case .lightcase-content h1,
	#lightcase-case .lightcase-content h2,
	#lightcase-case .lightcase-content h3,
	#lightcase-case .lightcase-content h4,
	#lightcase-case .lightcase-content h5,
	#lightcase-case .lightcase-content h6,
	#lightcase-case .lightcase-content p {
		color: #333;
	}

	/* Navigation */
	#lightcase-nav a {
		top: 50%;
		margin-top: -0.5em;

		outline: none;
		cursor: pointer;
	}
	#lightcase-nav a.lightcase-icon-close {
		margin: 0;
	}
	#lightcase-nav a.lightcase-icon-close,
	#lightcase-nav a.lightcase-icon-play,
	#lightcase-nav a.lightcase-icon-pause {
		opacity: 0;
	}
	#lightcase-nav a:hover {
		text-shadow: 0 0 15px #fff;
	}
	#lightcase-nav a:hover,
	#lightcase-case:hover ~ #lightcase-nav a {
		opacity: 1;
	}

	/* Icon positioning */
	#lightcase-nav a.lightcase-icon-close {
		position: fixed;
		z-index: 9997;

		top: 15px;
		right: 15px;

		outline: none;
	}
	#lightcase-nav a.lightcase-icon-play,
	#lightcase-nav a.lightcase-icon-pause {
		left: 50%;
		margin-left: -0.5em;
	}
	#lightcase-nav a.lightcase-icon-prev {
		left: 15px;
	}
	#lightcase-nav a.lightcase-icon-next {
		right: 15px;
	}

	/* Error message */
	#lightcase-case p.lightcase-error {
		margin: 0;
		padding: 0;

		font-size: 17px;
		color: #aaa;
	}

}
@charset "utf-8";

*, html, body, td
{
	font-family: 'Radiance';
	color: #999999;
}

#navBarBGRepeat {
	height: 58px;
}

p
{
	font-size: 18px;
	line-height: 28px;
}

.Outer
{
	background-color: #020A09;
}

#BG9, #BG10, #BG11, #BG12
{
	background-color: #111111;
}

#BG13
{
	background-color: #080809;
}

#BG14
{
	background-color: #000000;
}

#BG2, #BG3 {
	background-color: #1f0d0f;
}

#BG4 {
	background-color: #1b0404;
}

#BG5 {
	background-color: #030202;
}

.Outer, .Inner
{
	margin-left: auto;
	margin-right: auto;
	background-position: center;
	background-repeat: no-repeat;
}

#BG2
{
	position: relative;
	text-align: center;
}

#BG2 .KeyArt
{
	width: 100%;
	max-width: 1600px;
	display: block;
	object-fit: cover;
	overflow: hidden;
	text-align: center;
	margin: auto;
}

.Inner
{
	position: relative;
	width: 945px;
	z-index: 2;
}

#BG2 .Inner
{
	height: auto;
	position: absolute;
	display: block;
	bottom: 0px;
	right: 0;
	left: 0;
	width: 100%;
	max-width: 1600px;
	margin: auto;
}

#BG3, #BG3 .Inner
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_03.png' );
	height: 924px;
}

#BG4, #BG4 .Inner
{
			background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_schinese_04.png' );
		height: 600px;
}

#BG2, #BG3
{
	text-align: center;
}

#BG2 h1 {
	width: 945px;
	height: 181px;
	background-size: 945px 181px;
	background-repeat: none;
	margin: auto;
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/title_chinese.png' );
}

#BG2 h2
{
	font-family: 'Trajan pro', serif;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 7px;
	text-shadow: 0px 1px 4px #000;
}

#BG2 h4 {
	font-family: 'Radiance';
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 6px;
	padding-top: 16px;
}

#BG2 h4 img {
	height: 18px;
}

#BG2 h4 b {
	padding-left: 16px;
	color: #fff;
}

#BG3 h3
{
	font-family: 'Radiance';
	font-size: 20px;
	text-transform: uppercase;
	color: #8C958F;
	letter-spacing: 3px;
	padding-top: 680px;
}

#BG3 p
{
	font-family: 'Radiance';
	font-size: 20px;
	color: #8D968F;
	display: block;
	width: 815px;
	margin-left: 65px;
	padding-top: 30px;
	line-height: 34px;
}

#BG3 h3 b {
	color: #fff;
}

#BG4, #BG4 .Inner
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_04.png' );
	height: 574px;
}

#BG4 .Inner
{
	text-align: center;
	padding-left: 20px;
}

#BG4
{
	box-shadow: 0px 0px 60px #000;
	z-index: 5;
	position: relative;
}

#BG4 h1
{
	display: block;
	width: 585px;
	margin-left: 160px;
	padding-top: 43px;
	line-height: 44px;
}

#BG4 h1, #BG4 b
{
	font-family: 'Cinzel';
	color: #eb1d30;
	font-size: 36px;
}

#BG4 h1 b
{
	font-size: 48px;
}

#BG4 p
{
	display: block;
	width: 900px;
	padding-top: 24px;
	font-family: 'Cinzel';
	font-size: 20px;
	line-height: 36px;
	color: #fff;
	letter-spacing: 1px;
}

#BG5
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_05.png' );
	background-repeat: no-repeat;
	background-position: center;
	height: 914px;
	z-index: 2;
}

#BG5 h2.OrangeGradient
{
	text-align: center;
	padding-top: 76px;
	text-transform: uppercase;
	color: #570503;
	font-weight: bold;
	font-family: 'Radiance';
	font-size: 42px;
	letter-spacing: 4px;
}


.AbilityVideoContainer video
{
	position: absolute;
	margin-top: 40px;
	margin-left: 60px;
	visibility: collapse;
	box-shadow: 0px 18px 24px rgba(0,0,0, 0.5);
}

.AbilityVideoContainer .ButtonIconContainer
{
	position: absolute;
}

.AbilityVideoContainer a.ButtonIcon
{
	display: block;
	width: 58px;
	height: 58px;
	float: left;
	margin-right: 11px;
}

.AbilityVideoContainer .LargeIcon
{
	position: absolute;
	top: 733px;
	left: 140px;
	width: 111px;
	height: 111px;
}

.AbilityVideoContainer h2:not(.OrangeGradient)
{
	position: absolute;
	top: 743px;
	left: 280px;
	font-family: 'Radiance-Bold';
	font-size: 24px;
	color: #D8E6DC;
	text-transform: uppercase;
	letter-spacing: 3.6px;
	text-shadow: 0px 0px 25px #eb1d30;
	visibility: collapse;
}

.AbilityVideoContainer p
{
	position: absolute;
	top: 774px;
	left: 280px;
	width: 525px;
	font-size: 18px;
	line-height: 28px;
	visibility: collapse;
}

#BG5 .ButtonIconContainer
{
	position: absolute;
	top: 626px;
	left: 300px;
}

#BG5.GrimstrokeDarkArtistryActive .ButtonIcon.GrimstrokeDarkArtistry { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/small_1.png' ); cursor: default; }
#BG5.GrimstrokePhantomsEmbraceActive .ButtonIcon.GrimstrokePhantomsEmbrace { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/small_2.png' ); cursor: default; }
#BG5.GrimstrokeInkSwellActive .ButtonIcon.GrimstrokeInkSwell { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/small_3.png' ); cursor: default; }
#BG5.GrimstrokeSoulChainActive .ButtonIcon.GrimstrokeSoulChain { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/small_4.png' ); cursor: default; }

#BG5:not(.GrimstrokeDarkArtistryActive) .ButtonIcon:hover.GrimstrokeDarkArtistry { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/hover_1.png' ); }
#BG5:not(.GrimstrokePhantomsEmbraceActive) .ButtonIcon:hover.GrimstrokePhantomsEmbrace { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/hover_2.png' ); }
#BG5:not(.GrimstrokeInkSwellActive) .ButtonIcon:hover.GrimstrokeInkSwell { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/hover_3.png' ); }
#BG5:not(.GrimstrokeSoulChainActive) .ButtonIcon:hover.GrimstrokeSoulChain { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/hover_4.png' ); }

#BG5:not(.GrimstrokeDarkArtistryActive) .ButtonIcon:not(:hover).GrimstrokeDarkArtistry { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/dark_1.png' ); box-shadow: 0px 0px 10px rgba( 0, 0, 0, 0.5 ); }
#BG5:not(.GrimstrokePhantomsEmbraceActive) .ButtonIcon:not(:hover).GrimstrokePhantomsEmbrace { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/dark_2.png' ); box-shadow: 0px 0px 10px rgba( 0, 0, 0, 0.5 ); }
#BG5:not(.GrimstrokeInkSwellActive) .ButtonIcon:not(:hover).GrimstrokeInkSwell { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/dark_3.png' ); box-shadow: 0px 0px 10px rgba( 0, 0, 0, 0.5 ); }
#BG5:not(.GrimstrokeSoulChainActive) .ButtonIcon:not(:hover).GrimstrokeSoulChain { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/dark_4.png' ); box-shadow: 0px 0px 10px rgba( 0, 0, 0, 0.5 ); }

#BG5.GrimstrokeDarkArtistryActive .LargeIcon { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/icon_1.png' ); }
#BG5.GrimstrokePhantomsEmbraceActive .LargeIcon { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/icon_2.png' ); }
#BG5.GrimstrokeInkSwellActive .LargeIcon { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/icon_3.png' ); }
#BG5.GrimstrokeSoulChainActive .LargeIcon { background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/icon_4.png' ); }

#BG5.GrimstrokeDarkArtistryActive video.GrimstrokeDarkArtistry { visibility: visible; }
#BG5.GrimstrokePhantomsEmbraceActive video.GrimstrokePhantomsEmbrace { visibility: visible; }
#BG5.GrimstrokeInkSwellActive video.GrimstrokeInkSwell { visibility: visible; }
#BG5.GrimstrokeSoulChainActive video.GrimstrokeSoulChain { visibility: visible; }

#BG5.GrimstrokeDarkArtistryActive h2.GrimstrokeDarkArtistry { visibility: visible; }
#BG5.GrimstrokePhantomsEmbraceActive h2.GrimstrokePhantomsEmbrace { visibility: visible; }
#BG5.GrimstrokeInkSwellActive h2.GrimstrokeInkSwell { visibility: visible; }
#BG5.GrimstrokeSoulChainActive h2.GrimstrokeSoulChain { visibility: visible; }

#BG5.GrimstrokeDarkArtistryActive p.GrimstrokeDarkArtistry { visibility: visible; }
#BG5.GrimstrokePhantomsEmbraceActive p.GrimstrokePhantomsEmbrace { visibility: visible; }
#BG5.GrimstrokeInkSwellActive p.GrimstrokeInkSwell { visibility: visible; }
#BG5.GrimstrokeSoulChainActive p.GrimstrokeSoulChain { visibility: visible; }
//

#BG7, #BG7 .Inner
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_07.png' );
	height: 546px;
}

#BG7 video
{
	position: absolute;
	display: block;
	top: 91px;
	left: 72px;
	width: 800px;
	height: 400px;
	background-color: #000000;
}

#BG8, #BG8 .Inner
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_08.png' );
	height: 791px;
}

#BG8 .Inner
{
	padding-top: 35px;
}

#BG8 .Ability
{
	padding-left: 270px;
	height: 153px;
	width: 790px;
}

#BG8 .Ability h1
{
	font-family: 'Cinzel';
	font-weight: bold;
	font-size: 22px;
	color: #D8E6DC;
	letter-spacing: 4px;
	text-transform: uppercase;
	padding-bottom: 4px;
}

#BG8 .Ability p
{
	font-family: 'Radiance';
	font-size: 18px;
	color: #8D968F;
}

#BG9, #BG9 .Inner
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_09.png' );
	height: 405px;
}

#BG9 h2
{
	font-family: 'Radiance';
	font-size: 24px;
	color: #ebf1f5;
	text-transform: uppercase;
	text-align: center;
	display: block;
	width: 100%;
	letter-spacing: 4px;
	position: absolute;
	top: 76px;
}

#BG9 .HeaderContainer
{
	position: absolute;
	top: 172px;
	width: 100%;
	text-align: center;
}

#BG9 h1
{
	font-family: 'Radiance-SemiBold';
	font-size: 48px;
	color: #ebf1f5;
	background-color: #174433;
	text-transform: uppercase;
	letter-spacing: 8px;
	padding-top: 6px;
	padding-bottom: 5px;
	padding-left: 30px;
	padding-right: 28px;
	margin-left: auto;
	margin-right: auto;
	display: inline;
}

#BG9 p
{
	width: 724px;
	margin-left: 110px;
	text-align: center;
	color: #898989;
	position: absolute;
	display: block;
	top: 250px;
}

#BG10, #BG10 .Inner
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_10.png' );
	height: 682px;
}

#PostGameMainScreenshot
{
	width: 942px;
	height: 530px;
	position: absolute;
	display: block;
	top: 46px;
	margin-left: 5px;
	box-shadow: 0px 0px 14px #000000;
}

#BG11, #BG11 .Inner
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_11.png' );
	height: 712px;
}

#BG12, #BG12 .Inner
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_12.png' );
	height: 425px;
}

#BG13, #BG13 .Inner
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_13.png' );
	height: 387px;
}

#BG14, #BG14 .Inner
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/grimstroke/bg_14.png' );
	height: 272px;
}

.SmallFeature, .LeftSmallFeature
{
	display: block;
	position: absolute;
	margin-left: 5px;
}

.SmallFeature img
{
	width: 464px;
	height: 260px;
	float: left;
	margin-right: 36px;
    box-shadow: 0 0 14px #000000;
}

.SmallFeature h1, .LeftSmallFeature h1
{
	font-family: 'Radiance-SemiBold';
	font-size: 24px;
	color: #EBF1F5;
	text-transform: uppercase;
	letter-spacing: 4px;
	padding-top: 2px;
	padding-bottom: 7px;
}

.SmallFeature p, .LeftSmallFeature p
{
	font-family: 'Radiance';
	font-size: 18px;
	color: #898989;
}

.SmallFeature.First
{
	top: 12px;
}

.SmallFeature.Second
{
	top: 360px;
}

.SmallFeature.Third
{
	top: 6px;
}

.LeftSmallFeature
{
	margin-left: -15px;
	top: 58px;
	width: 440px;
}

.LeftSmallFeature h2
{
	font-family: 'Radiance-SemiBold';
	font-size: 24px;
	color: #ebf1f5;
	background-color: #174433;
	text-transform: uppercase;
	letter-spacing: 4px;
	padding-top: 3px;
	padding-bottom: 2px;
	padding-left: 12px;
	padding-right: 8px;
	display: inline;
	margin-left: -12px;
}

.LeftSmallFeature h1
{
	padding-top: 14px;
}

#lightcase-nav a.lightcase-icon-prev
{
	background-image: url('http://cdn.dota2.com.cn/apps/dota2/images/reborn/day1/ArrowLeft.png');

	left: 5%;
}

#lightcase-nav a.lightcase-icon-next
{
	background-image: url('http://cdn.dota2.com.cn/apps/dota2/images/reborn/day1/ArrowRight.png');
	right: 5%;
}

#lightcase-nav a.lightcase-icon-prev,
#lightcase-nav a.lightcase-icon-next
{
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .6;

	width: 5%;
	height: 5%;
}

#lightcase-nav a.lightcase-icon-prev:hover,
#lightcase-nav a.lightcase-icon-next:hover
{
	opacity: .8;
}

#lightcase-nav a.lightcase-icon-prev:active,
#lightcase-nav a.lightcase-icon-next:active
{
	opacity: 1;
}

#lightcase-overlay {
	background: #000000;
}

#lightcase-case[data-type=video] .lightcase-content
{
    background-color: rgba( 0, 0, 0, 0);
}

.PlayOverlay
{
	width: 50%;
	height: 50%;

	position: absolute;
	top: 25%;
	left: 25%;

	background-image: url('http://cdn.dota2.com.cn/apps/dota2/images/reborn/day1/PlayOverlay.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;

	opacity: 0.5;

	z-index: 2;

    -webkit-transition: opacity, ease-in-out 0.2s;
    -moz-transition: opacity, ease-in-out 0.2s;
    -o-transition: opacity, ease-in-out 0.2s;
    transition: opacity, ease-in-out 0.2s;
}

.PlayOverlay:hover
{
    opacity: 0.8;
}

.PlayOverlay.CustomGamesMovie
{
	width: 25%;
	height: 50%;
    left: 36%;

    opacity: 0.8;
}

.PlayOverlay.CustomGamesMovie:hover
{
    opacity: 1.0;
}



#Footer .Inner
{
	background-image: url( 'http://cdn.dota2.com.cn/apps/dota2/images/700/footer.jpg' );
	background-color: #000000;
	height: 287px;
}
