body {
	background: url(/images/backgroundMobile.jpg) #f5ce2c;
	font-family: Arial;
	font-size: 13px;
	font-weight: bold;
	margin: 0;
}
#tapedeck {
    position: fixed;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 15;
    color: white;
    background: url(/images/playerBackMobile.png) repeat-x #727272;
	-moz-box-shadow: 0 0 .5em rgba(0, 0, 0, .5);
	-webkit-box-shadow: 0 0 .5em rgba(0, 0, 0, .5);
	box-shadow: 0 0 .5em rgba(0, 0, 0, .5);
}
#tapedeck.active {
    -moz-transition: -moz-transform 1s;
    -moz-transform: translateY(80px);
    -webkit-transition: -webkit-transform 1s;
    -webkit-transform: translateY(80px);
}
#tapedeck #songName {
    display: none;
}
#tapedeck ul {
    margin: 0;
    padding: 0;    
}
#tapedeck ul li {
    float: left;
    height: 80px;
    width: 0;
    list-style: none;
    display: block;
    background: url(/images/playerDivMobile.png) no-repeat top left;
}
#tapedeck ul li#prev,
#tapedeck ul li#play,
#tapedeck ul li#next,
#tapedeck ul li#stop {
    width: 25%;
}
#tapedeck ul li span {
    height: 50px;
    padding: 30px 0 0 0;
    width: 100%;
    display: block;
    font-size: 1.8em;
    text-transform: uppercase;
    text-align: center;
}
#tapedeck ul li.active span {
    background: #727272;
	-moz-box-shadow: inset 0 0 .7em rgba(0, 0, 0, .6);
	-webkit-box-shadow: inset 0 0 .7em rgba(0, 0, 0, .6);
	box-shadow: inset 0 0 .7em rgba(0, 0, 0, .6);
}
h1 {
	background: url(/images/headingMobile.png) no-repeat;
	height: 200px;
	width: 90%;
	text-indent: -9999px;
	margin: 1em;
}
h2 {
    color: #2c99f5;
    text-transform: uppercase;
    font-size: 2.7em;
    margin: 0;
}
.tape {
	overflow: hidden;
	border: solid white;
	border-width: .2em 0 0 0;
	padding: 2em 0 2em 2em;
	background: url(/images/mobileClosed.png) no-repeat 90% 11em;
}
.tape.open {
	background-image: url(/images/mobileOpen.png);
}
.tape .case {
    float: left;
    margin-bottom: 2em;
}
.tape .head {
    float: left;
    margin: 0 0 0 1.5em;
    width: 65%;
    height: 280px;
}
.tape .head img {
    display: none;
}
.tape .date {
	color: #727272;
	font-size: 2em;
}
.tape .main ol {
    clear: both;
    display: none;
    overflow: hidden;
    margin: 2em 0;
    font-size: 1.3em;
    background: url(/images/backgroundMobileList.jpg) #727272;
    color: white;
    list-style-position: inside;
    border-radius: 2em;
    margin: 4em 1.5em 0 0;
    padding: 1em 0;
	-moz-box-shadow: inset 0 0 1em rgba(0, 0, 0, .5);
	-webkit-box-shadow: inset 0 0 1em rgba(0, 0, 0, .5);
	box-shadow: inset 0 0 1em rgba(0, 0, 0, .5);
}
.tape.open .main ol {
    display: block;
}
.tape .main ol li {
    padding: 1em 1em 1em 1.5em;
}
.tape .main ol li.playing {
	color: #727272;
	background: white;
}