@charset "utf-8";
/* 音频媒介 */
[media="audio"] {
	display: inline-block;
	position: relative;
}
[media="audio"] audio {
	display: none;
}
/* 音频控制条样式 */ 
[media="audio"] .controls {
	width: 0.78rem;
	height: 0.38rem;
	position: relative;
	display: inline-block;
	border: 0.01rem solid #fff;
	box-shadow: 0 0 0px 1px #efefef;
	border-radius: 0.03rem;
	transition: 0.2s all;
	overflow: hidden;
}
[media="audio"][data-type="type3_1"] .controls[state="play"],
[media="audio"][data-type="type4_1"] .controls[state="play"] {
	width: 3.18rem;
}
[media="audio"][data-type="type1_1"] .controls,
[media="audio"][data-type="type2_1"] .controls {
	width: 0.32rem;
	height: 0.32rem;
	box-shadow: 0 0 0 0 transparent;
	border-radius: 0;
	border: none;
}
/* 音频播放按钮样式 */ 
[media="audio"] .controls .playBtn:first-child:nth-last-child(n+2){
	height: 100%;
	width: 0.36rem;
	cursor: pointer;
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 0.26rem 50%, 100% 100%, 0 100%);
	-webkit-clip-path: polygon(0 0, 100% 0, 0.26rem 50%, 100% 100%, 0 100%);
	border-radius: 0.03rem;	
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
[media="audio"] .controls .playBtn:first-child:nth-last-child(n+2):before {
	content: "";
	width: calc(100% - 0.01rem);
	height: 100%;
	background: #f9f9f9;
	background: -webkit-linear-gradient(180deg, #fff, #efefef); 
	background: linear-gradient(180deg, #fff, #efefef);
	clip-path: polygon(0 0, 100% 0, 0.25rem 50%, 100% 100%, 0 100%);
	-webkit-clip-path: polygon(0 0, 100% 0, 0.25rem 50%, 100% 100%, 0 100%);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
[media="audio"] .controls .playBtn:first-child:nth-last-child(n+2):after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0.08rem;
	margin: auto;
}
[media="audio"] .controls[state="stop"] .playBtn:first-child:nth-last-child(n+2):after {
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-top: 0.1rem solid transparent;
	border-bottom: 0.1rem solid transparent;
	border-left: 0.12rem solid #06d0fe;
}
[media="audio"] .controls[state="stop"] .playBtn:first-child:nth-last-child(n+2):hover:after {
	border-left: 0.12rem solid #2dc1e3;
}
[media="audio"] .controls[state="play"] .playBtn:first-child:nth-last-child(n+2):after {
	width: 0.06rem;
	height: 0.16rem;
	border-left: 0.03rem solid #06d0fe;
	border-right: 0.03rem solid #06d0fe;
}
[media="audio"] .controls[state="play"] .playBtn:first-child:nth-last-child(n+2):hover:after {
	border-left: 0.03rem solid #2dc1e3;
	border-right: 0.03rem solid #2dc1e3;
}
[media="audio"] .controls .playBtn:only-child,
[media="audio"] .controls .progress + .playBtn {
	width: 100%;
	height: 100%;
	cursor: pointer;
	padding: 0.02rem;
	border-radius: 50%;
	background: #ff6a00;
	background-clip: content-box;
	display: inline-block;
	transition: 0.2s all;
	position: relative;
	z-index: 10;
}
[media="audio"] .controls .playBtn:only-child:hover,
[media="audio"] .controls .progress + .playBtn:hover {
	background: #ff7c1f;
	background-clip: content-box;
}
[media="audio"] .controls .playBtn:only-child:after,
[media="audio"] .controls .progress + .playBtn:after {
	content: " ";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
[media="audio"] .controls[state="stop"] .playBtn:only-child:after,
[media="audio"] .controls[state="stop"] .progress + .playBtn:after {
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-top: 0.06rem solid transparent;
	border-bottom: 0.06rem solid transparent;
	border-left: 0.08rem solid #f9f9f9;
}
[media="audio"] .controls[state="stop"] .playBtn:only-child:hover:after,
[media="audio"] .controls[state="stop"] .progress + .playBtn:hover:after  {
	border-left: 0.08rem solid #fff;
}
[media="audio"] .controls[state="play"] .playBtn:only-child:after,
[media="audio"] .controls[state="play"] .progress + .playBtn:after {
	content: " ";
	width: 0.06rem;
	height: 0.12rem;
	display: inline-block;
	border-left: 0.02rem solid #f9f9f9;
	border-right: 0.02rem solid #f9f9f9;
}
[media="audio"] .controls[state="play"] .playBtn:only-child:hover:after,
[media="audio"] .controls[state="play"] .progress + .playBtn:hover:after {
	border-left: 0.02rem solid #fff;
	border-right: 0.02rem solid #fff;
}
/* 音频进度条样式 */
[media="audio"] .controls .playBtn ~ .progress {
	width: 2.5rem;
	height: 100%;
	background: #f9f9f9;
	display: inline-block;
	background: -webkit-linear-gradient(180deg, #fff, #efefef); 
	background: linear-gradient(180deg, #f2f2f2,#ffffff);
	position: absolute;
	top: 0;
	left: 0.26rem;
}
[media="audio"] .controls .playBtn ~ .progress .progressBar {
	height: 100%;
	display: inline-block;
	background: linear-gradient(180deg,#e6e6e6, #f2f2f2);
}
[media="audio"] .controls .progress:nth-child(1) {
	width: 0.32rem;
	height: 0.32rem;
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
[media="audio"] .controls .progress:nth-child(1):before {
	content: " ";
	width: 0.18rem;
	height: 0.36rem;
	box-sizing: border-box;
	border: 0.05rem solid #fff;
	border-top-left-radius: 0.18rem;
	border-bottom-left-radius: 0.18rem;
	border-right: none;
	position: absolute;
	top: -0.02rem;
	left: -0.02rem;
	z-index: 2;
}
[media="audio"] .controls .progress:nth-child(1) .leftBar,
[media="audio"] .controls .progress:nth-child(1) .rightBar {
	width: 0.16rem;
	height: 0.32rem;
	display: inline-block;
	position: absolute;
	top: 0;
}
[media="audio"] .controls .progress:nth-child(1) .leftBar {
	left: 0;
	border: 0.02rem solid #019d14;
	border-top-left-radius: 0.16rem;
	border-bottom-left-radius: 0.16rem;
	transform: rotate(0deg);
	transform-origin: 100% 50%;
	border-right: none;
	z-index: 1;
}
[media="audio"] .controls .progress:nth-child(1) .rightBar {
	right: 0;
	border: 0.02rem solid #fff;
	border-top-right-radius: 0.16rem;
	border-bottom-right-radius: 0.16rem;
	transform: rotate(0deg);
	transform-origin: 0 50%;
	border-left: none;
}
[media="audio"] .controls .progress:nth-child(1) .leftBar[style*="180deg"] + .rightBar {
	border: 0.02rem solid #019d14;
	border-left: none;
	z-index: 3;
}
/* 音频时间 */
[media="audio"] .controls .playBtn ~ .time {
	color: #999;
	height: 100%;
	width: 2.5rem;
	line-height: 0.36rem;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0.26rem;
}
[media="audio"] .controls .time li {
	display: inline-block;
}
[media="audio"] .controls .time li + li:before {
    content: "/";
    font-size: 0.12rem;
    padding: 0 0.04rem;
}
[media="audio"] .controls .time li span:after {
	content: ":";
}
[media="audio"] .controls .time li span:empty:after,
[media="audio"] .controls .time li span[boxtype='Second']:after {
	display: none;
}
/* 音频声音 */
[media="audio"] .controls .voice {
	width: 0.5rem;
	height: 100%;
	background: #e6e6e6;
	clip-path: polygon(0.1rem 0%, 100% 0, 100% 100%, 0.1rem 100%, 0 50%);
	border-radius: 0.03rem;
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
}
[media="audio"] .controls .voice:before {
	content: "";
	width: 100%;
	height: 100%;
	display: inline-block;
	background: #f9f9f9;
	background: -webkit-linear-gradient(180deg, #fff, #efefef); 
	background: linear-gradient(180deg, #fff, #efefef);
	clip-path: polygon(0.1rem 0%, 100% 0, 100% 100%, 0.1rem 100%, 0 50%);
	position: absolute;
	top: 0;
	left: 0.01rem;
}
[media="audio"] .controls[state="play"] .voice > dt {
	display: none;
}
[media="audio"] .controls .voice > dt {
	width: 0.24rem;
	height: 0.24rem;
	cursor: pointer;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 0 2px transparent inset;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	overflow: hidden;
	transition: box-shadow 0.2s;
}
[media="audio"] .controls .voice[muted=true] > dt {
	box-shadow: 0 0 0 2px red inset;
}
[media="audio"] .controls .voice > dt:before {
	content: " ";
	width: 0.13rem;
	height: 0.16rem;
	background: #d4d4d4;
	display: inline-block;
	-webkit-clip-path: polygon( 0 0.05rem, 0.06rem 0.05rem, 100% 0, 100% 100%, 0.06rem 0.11rem, 0 0.11rem);
	clip-path: polygon( 0 0.05rem, 0.06rem 0.05rem, 100% 0, 100% 100%, 0.06rem 0.11rem, 0 0.11rem);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transition: background 0.2s;
}
[media="audio"] .controls .voice > dt:hover:before {
	background: #9e9e9e;
}
[media="audio"] .controls .voice > dt:after {
	content: "";
	width: 100%;
	height: 2px;
	background: transparent;
	transform: rotate(45deg);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transition: 0.2s background;
}
[media="audio"] .controls .voice[muted=true] > dt:after {
	background: red;
}
[media="audio"] .controls .voice > dd {
	width: 0.28rem;
	height: 0.2rem;
	cursor: pointer;
	display: inline-block;
	-webkit-clip-path: polygon(0 0.16rem, 0.25rem 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0.16rem, 0.25rem 0, 100% 0, 100% 100%, 0 100%);
	background: #d4d4d4;
	position: absolute;
	top: 0;
	left: auto;
	right: 0.1rem;
	bottom: 0;
	margin: auto;
}
[media="audio"] .controls[state="stop"] .voice > dd {
	display: none;
}
[media="audio"] .controls .voice > dd span {
	width: 100%;
	height: 100%;
	display: inline-block;
	position: relative;
}
[media="audio"] .controls .voice > dd span b {
	width: 100%;
	height: 100%;
	background: #04d1ff;
	display: inline-block;
	position: relative;
}
/* 视频媒介 */
[media="video"] {
	width: 6.42rem;
    height: 3.62rem;
	overflow: hidden;
	background: #000;
	border: 0.01rem solid #000;
	display: inline-block;
	position: relative;
}
[media="video"][data-size="S"] {
	width: 5.46rem;
    height: 3.08rem;
}
[media="video"][data-size="M"] {
	width: 6.42rem;
    height: 3.62rem;
}
[media="video"][data-size="L"] {
	width: 7.7rem;
    height: 4.34rem;
}
[media="video"][data-size="XL"] {
	width: 8.66rem;
    height: 4.88rem;
}
[media="video"][data-size="XXL"] {
	width: 9.62rem;
    height: 5.42rem;
}
[media="video"] video {
	width: 100%;
	height: 100%;
}
/* 视频控制条样式 */
[media="video"][data-type="type1_1"] .controls {
	width: 0.48rem;
	height: 0.48rem;
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transition: 0.2s all;
}
[media="video"][data-type="type1_1"] .controls[state="play"] {
	opacity: 0;
	z-index: -1;
}
[media="video"][data-type="type1_1"]:hover .controls[state="play"] {
	z-index: 0;
	opacity: 1;
}
[media="video"]:not([data-type="type1_1"]) .controls {
	width: 100%;
	height: 0.35rem;
	background: rgba(0,0,0,0.65);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.2s all;
}
[media="video"]:not([data-type="type1_1"]):hover .controls {
	background: rgba(0,0,0,0.85);
}
[media="video"]:not([data-type="type1_1"]) .controls[state="play"] {
	bottom: -0.35rem;
}
[media="video"]:not([data-type="type1_1"]):hover .controls[state="play"] {
	bottom: 0;
}
[media="video"][data-type^="type4_"] .controls .progress + * {
	left: auto;
	right: 0.3rem;
}
[media="video"][data-type^="type5_"] .controls .progress + * {
	right: 0.54rem;
}
[media="video"][data-type^="type5_"] .controls .progress + * + * {
	right: 0.3rem;
}
[media="video"][data-type^="type6_"] .controls .progress + * {
	right: 0.84rem;
}
[media="video"][data-type^="type6_"] .controls .progress + * + * {
	right: 0.56rem;
}
[media="video"][data-type^="type6_"] .controls .progress + * + * + * {
	right: 0.3rem;
}
/* 视频播放按钮样式 */
[media="video"] .controls .playBtn {
	cursor: pointer;
	border-radius: 50%;
	display: inline-block;
	border: 0.03rem solid #717171;
	transition: 0.2s all;
}
[media="video"] .controls .playBtn:hover {
	border: 0.03rem solid #fff;
}
[media="video"][data-type="type1_1"] .controls .playBtn {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}
[media="video"]:not([data-type="type1_1"]) .controls .playBtn {
	width: 0.28rem;
	height: 0.28rem;
	position: absolute;
	top: 0;
	left: 0.06rem;
	right: auto;
	bottom: 0;
	margin: auto;
}
/* 视频暂停播放 -- 播放按钮样式 */
[media="video"] .controls[state="stop"] .playBtn:before {
	content: "";
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
[media="video"][data-type="type1_1"] .controls[state="stop"] .playBtn:before {
	border-top: 0.1rem solid transparent;
	border-bottom: 0.1rem solid transparent;
	border-left: 0.14rem solid #fff;
	position: absolute;
	left: 0;
	right: 0;
}
[media="video"]:not([data-type="type1_1"]) .controls[state="stop"] .playBtn:before {
	border-top: 0.06rem solid transparent;
	border-bottom: 0.06rem solid transparent;
	border-left: 0.08rem solid #fff;
	left: 0.08rem;
	right: auto;
}
/* 视频正在播放 -- 播放按钮样式 */
[media="video"] .controls[state="play"] .playBtn:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
[media="video"][data-type="type1_1"] .controls[state="play"] .playBtn:before {
	width: 0.12rem;
	height: 0.2rem;
	border-left: 0.03rem solid #fff;
	border-right: 0.03rem solid #fff;
}
[media="video"]:not([data-type="type1_1"]) .controls[state="play"] .playBtn:before {
	width: 0.06rem;
	height: 0.1rem;
	border-left: 0.02rem solid #fff;
	border-right: 0.02rem solid #fff;
}
/* 视频进度条样式 */
[media="video"]:not([data-type="type1_1"]) .controls .progress {
	width: calc(100% - 0.78rem);
	height: 0.12rem;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0.45rem;
	right: auto;
	bottom: 0;
	margin: auto;
	background: #fff;
	border-radius: 0.06rem;
}
[media="video"][data-type="type2_1"] .controls .progress {
	width: calc(100% - 0.58rem);
}
[media="video"][data-type="type3_1"] .controls .progress {
	width: calc(100% - 1.58rem);
}
[media="video"][data-type^="type4_"] .controls .progress {
	width: calc(100% - 1.05rem);
}
[media="video"][data-type="type4_4"] .controls .progress,
[media="video"][data-type="type4_5"] .controls .progress,
[media="video"][data-type="type4_6"] .controls .progress {
	width: calc(100% - 1.85rem);
}
[media="video"][data-type^="type5_"] .controls .progress {
	width: calc(100% - 2.1rem);
}
[media="video"][data-type="type5_1"] .controls .progress {
	width: calc(100% - 1.3rem);
}
[media="video"][data-type^="type6_"] .controls .progress {
	width: calc(100% - 2.4rem);
}
[media="video"]:not([data-type="type1_1"]) .controls .progressBar {
	height: 0.12rem;
	background: #38dcff;
	border-radius: 0.06rem;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
[media="video"]:not([data-type="type1_1"]) .controls .progressBar:before {
	content: "";
	width: 0.16rem;
	height: 0.16rem;
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	top: -0.02rem;
	right: -0.08rem;
	box-shadow: 0 0 0 1px #717171;
	border: 0.03rem solid #fff;
	background: #717171;
	border-radius: 50%;
}
/* 视频时间显示样式 */
[media="video"] .controls .time {
	color: #fff;
	font-size: 0;
	width: 1rem;
	height: 0.14rem;
	text-align: center;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
[media="video"][data-type="type3_1"] .controls .time {
	left: auto;
	right: 0.05rem;
}
[media="video"] .controls .time li {
	font-size: 0;
	line-height: 0.14rem;
	display: inline-block;
	
}
[media="video"] .controls .time li + li:before {
	content: "/";
	font-size: 0.12rem;
	padding: 0 0.04rem;
}
[media="video"] .controls .time li span {
	display: inline;
	font-size: 0.12rem;
}
[media="video"] .controls .time li span:after {
	content: ":";
}
[media="video"] .controls .time li span:empty:after,
[media="video"] .controls .time li span[boxtype='Second']:after {
	display: none;
}
/* 视频全屏按钮样式 */
[media="video"] .controls .enlargeBtn {
	opacity: 0.75;
	width: 0.2rem;
	height: 0.16rem;
	cursor: pointer;
	background: #fff;
	display: inline-block;
	background-clip: content-box;
	box-shadow: 0 0 0 1px #fff inset;
	padding: 0.04rem 0.05rem;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0.05rem;
	margin: auto;
	transition: 0.2s all;
}
[media="video"] .controls .enlargeBtn:hover {
	opacity: 1;
}
/* 视频声音 */
[media="video"] .controls .voice {
	width: 0.16rem;
	height: 0.2rem;
	position: absolute;
	top: 0;
	left: auto;
	right: 0.08rem;
	bottom: 0;
	margin: auto;
}
[media="video"] .controls .voice[muted="true"]:after {
	content: " ";
	width: 0.2rem;
	height: 0.2rem;
	border-radius: 50%;
	border: 2px solid red;
	position: absolute;
	left: -2px;
	bottom: -2px;
}
[media="video"] .controls .voice[muted="true"] dt:after {
	content: " ";
	width: 100%;
	height: 2px;
	background: red;
	transform: rotate(45deg);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
[media="video"] .controls .voice dt {
	width: 0.16rem;
	height: 0.2rem;
	cursor: pointer;
	border-radius: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	transition: 0.2s all;
	
}
[media="video"] .controls .voice dt:before {
	content: " ";
	width: 0.16rem;
	height: 0.2rem;
	border-radius: 50%;
	background: #969696;
	display: inline-block;
	clip-path: polygon(0 35%, 55% 35%, 100% 0, 100% 100%, 55% 65%, 0 65%);
	-webkit-clip-path: polygon(0 35%, 55% 35%, 100% 0, 100% 100%, 55% 65%, 0 65%);
	position: absolute;
	top: 0;
	left: 0;
}
[media="video"] .controls .voice dt:hover:before {
	background: #efefef;
}
[media="video"] .controls .voice dd {
	height: 0;
	width: 0.28rem;
	background: #000;
	border-left: 0.06rem solid transparent;
	border-right: 0.06rem solid transparent;
	background-clip: content-box;
	display: inline-block;
	position: absolute;
	left: -0.06rem;
	bottom: 0.2rem;
	transition: 0.2s all;
}
[media="video"] .controls .voice:hover dd {
	height: 1.6rem;
}
[media="video"] .controls .voice dd span {
	width: 0.08rem;
	height: calc(100% - 0.12rem);
	cursor: pointer;
	display: inline-block;
	background: #969696;
	position: absolute;
	left: 0.04rem;
	top: 0.04rem;
}
[media="video"] .controls .voice dd span b {
	height: 100%;
	width: 0.04rem;
	display: inline-block;
	background: #fff;
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
/* 视频字幕 */
[media="video"] .controls .textbox {
	width: 0.18rem;
	height: 0.2rem;
	bottom: 0.09rem;
	display: inline-block;
	position: absolute;
	right: 0.04rem;
}
[media="video"] .controls .textbox li {
	width: 0.18rem;
	height: 0.18rem;
	cursor: pointer;
	text-align: center;
	position: absolute;
	left: 0;
}
[media="video"] .controls .lang {
	color: #fff;
	bottom: 0.2rem;
	background: #999;
	transition: 0.2s all;
	display: none;
}
[media="video"] .controls .textbox:hover .lang {
	display: inline-block;
}
[media="video"] .controls .lang:hover {
	color: #ff6a00;
	background: #f9f9f9;
	box-shadow: 0 0 0 1px #ff6a00;
}
[media="video"] .controls .lang:before {
	content: '中';
	width: 100%;
	height: 100%;
	font-size: 0.12rem;
	line-height: 0.18rem;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
[media="video"] .controls .lang[onindex='0']:before {
	content: '中';
}
[media="video"] .controls .lang[onindex='1']:before {
	content: '俄';
}
[media="video"] .controls .lang[onindex='2']:before {
	content: '双';
}
[media="video"] .controls .text {
	margin-top: 0.02rem;
	display: inline-block;
	box-shadow: 0 0 0 1px #999 inset;
	transition: 0.2s all;
	overflow: hidden;
	bottom: 0;
}
[media="video"] .controls .text:hover {
	box-shadow: 0 0 0 1px #fff;
}
[media="video"] .controls .text:before {
	content: "字";
	height: 100%;
	width: 100%;
	font-size: 0.12rem;
	line-height: 0.18rem;
	display: inline-block;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.2s all;
}
[media="video"] .controls .text[data-show="true"]:before {
	color: #fff;
	background: #999;
}
[media="video"] .controls .text[data-show="true"]:hover:before {
	content: "藏";
	color: #000;
	background: #fff;
}
[media="video"] .controls .text[data-show="false"]:before {
	color: #999;
}
[media="video"] .controls .text[data-show="false"]:hover:before {
	content: "显";
	color: #fff;
}
[media="video"] video::cue{
	color: #fff;
	font-size: 0.12rem;
	line-height: 0;
    background-color: transparent;
	text-shadow: 0 1px #000, 1px 0 #000, -1px 0 #000, 0 -1px #000;
}