/*
 Copyright (c) 2010-2011, artifacts Software GmbH & Co. KG
 All rights reserved.

 BSD License

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
     * Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.
     * Neither the name of artifacts software GmbH & Co. KG nor the
       names of its contributors may be used to endorse or promote products
       derived from this software without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY artifacts software GmbH & Co. KG ''AS IS'' AND ANY
 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 DISCLAIMED. IN NO EVENT SHALL artifacts software GmbH & Co. KG BE LIABLE FOR ANY
 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

body {
	margin: 0;
	background-repeat: no-repeat;
	background-color: #222;
}

/* user interface sprite img */
.pp_ui {
	background:url(purpleplayer.png) no-repeat top left;
}
/* the background for our animation */
.pp_ani {
/*	background: -webkit-gradient(linear, left top, left bottom, from(#494b4d), to(#2c2e2e));*/
	background-color: #ddd;
}
/* the info backside */
.pp_info {
	background: -webkit-gradient(linear, left top, left bottom, from(#494b4d), to(#2c2e2e));
	width: 100%;
	height: 100%;
}	
/* the toolbar */
.pp_toolbar {
	width: 100%;
	height: 30px;
	left: 0px;
	bottom: 0px;
	background-repeat: repeat-x;
	background-position: 0 -62px;
	position: absolute;
}
/* play button */
.pp_btplay {
	width: 34px;
	height: 30px;
	float:left;
	background-position: 0px 0px;
}
.pp_btplay_hi {
	background-position: 0 -30px;
}
.pp_btrewind {
	width: 34px;
	height: 30px;
	float:left;
	background-position: -120px 0px;
}
.pp_btrewind_hi {
	background-position: -120px -30px;
}

/* purple button */
.pp_btpurple {
	background-position:-38px 0px;
	width: 79px;
	height: 30px;
	float:right;
}
.pp_logo {
	margin-left: auto;
	margin-right: auto;
}
.pp_icon {
	background-position:-106px -115px;
	width: 135px;
	height: 125px;
}
.pp_button {
	cursor: pointer;
}
.pp_madewith {
	top: 30px;
	background-position:-15px -217px;
	width: 79px;
	height: 28px;
}
.pp_flexspace {
	height: 32px;
}
.clear {
	clear:left;
}

/* the whole player */

div .player {
	background-color: #222;
	-webkit-perspective: 1000;
}
div .player > div {
	position: absolute;
	-webkit-transition-duration: 1.25s;
	-webkit-backface-visibility: hidden;
}	

/*div .player div.pp_front {
}
div .player.flip div.pp_front {
	-webkit-transform: rotateY(180deg);
}*/
div .player div.pp_back {
	opacity: 0;
}
div .player.flip div.pp_back {
	opacity: 1.0;
}


