@charset "utf-8";
/* CSS Document */

/* Fonts*/
@import url("fonts/stylesheet.css");

<style type="text/css">

@font-face {
    font-family: 'space_ageregular';
    src: url('space_age-webfont.eot');
    src: url('space_age-webfont.eot?#iefix') format('embedded-opentype'),
         url('space_age-webfont.woff') format('woff'),
         url('space_age-webfont.ttf') format('truetype'),
         url('space_age-webfont.svg#space_ageregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helvetica_lt_stdBdCn';
    src: url('helveticaltstd-boldcond-webfont.eot');
    src: url('helveticaltstd-boldcond-webfont.eot?#iefix') format('embedded-opentype'),
         url('helveticaltstd-boldcond-webfont.woff') format('woff'),
         url('helveticaltstd-boldcond-webfont.ttf') format('truetype'),
         url('helveticaltstd-boldcond-webfont.svg#helvetica_lt_stdBdCn') format('svg');
    font-weight: normal;
    font-style: normal;
}
/*Sturcture*/

body {
	background-image:url(img/bg_no_hd.jpg);
	background-position:top, center;
	}
	
h1 {
	font-family: 'space_ageregular';
	font-size: 30px;
	color: #FFF;
	text-align:center;
}

h2 {
	font-family: 'helvetica_lt_stdBdCn';
	font-size: 36px;
	font-color: #000;
	text-align:center;
}

h3 {
	font-family: 'helvetica_lt_stdBdCn';
	font-size: 30px;
	color: #000;
}
	
.ui-page, .ui-content { 
    background-image:url(img/bg_no_hd.jpg) !important; 
    -webkit-backface-visibility: hidden !important; 
}
/*body structure*/	
#hdr{
	width:480px;
	height: 60px;
}

	
.box1{
	max-width:480px;
	height:420px;
	margin:5px, 0px, 0px;
	padding:10px, 0px, 0px;
	background-color:#0063be;
	/*z-index:!-100 !important;*/
	}
	
.box2{
	max-width:480px;
	height:160px;
	margin: 8px;
	}
	
.box3{
	max-width:480px;
	height:75px;
	margin: 0px;
	padding:0px;
	
}

.box4{
	max-width:480px;
	margin-top: 5px;
	/*margin-left: 8px;
	margin-right: 8px;*/
					
	}
	
.logo{
	width: 480px;
	align: center;
	}
	
.ui-btn {border: none !important;
		 background:none !important;
		 display:inline;
 }
	
/*for home page only*/

.pg_sel{
	display:block;
	margin: 10px, 0px;
	align-content:center;
	}

/*Styles and attributes for the timer*/

.timer_controls{
	display: inline;
	}
	
.timer {
	padding: 10px;
	background: #FFF;
	overflow: hidden;
	display: inline-block;
	border: 3spx solid #fff;
	border-radius: 10px;
	position: absolute;
	left: 130px;
	top: 995px;
	box-shadow: inset 0 -2px 2px 1px rgba(0, 0, 0, 0.75), 
		0 5px 10px -5px rgba(0, 0, 0, 1);
}

.cell {
	/*Should only display 1 digit. Hence height = line height of .numbers
	and width = width of .numbers*/
	width: 0.60em;
	height: 50px;
	font-size: 50px;
	overflow: hidden;
	position: relative;
	float: left;
}

.numbers {
	width: 0.6em;
	line-height: 50px;
	font-family: 'helvetica_lt_stdBdCn', sans serif;
	font-weight:bold;
	text-align: center;
	color: #000;	
	position: absolute;
	top: 0;
	left: 0;	
	/*Glow to the text*/
	text-shadow: 0 0 5px rgba(255, 255, 255, 1);
}

/*Control code*/
#stop:checked~.timer .numbers {animation-play-state: paused;}
#start:checked~.timer .numbers {animation-play-state: running;}
#reset:checked~.timer .numbers {animation: none;}

.moveten {
	/*The digits move but dont look good. We will use steps now
	10 digits = 10 steps. You can now see the digits swapping instead of 
	moving pixel-by-pixel*/
	animation: moveten 1s steps(10, end) infinite;
	/*By default animation should be paused*/
	animation-play-state: paused;
}
.movesix {
	animation: movesix 1s steps(6, end) infinite;
	animation-play-state: paused;
}

/*Now we need to sync the animation speed with time speed*/
/*One second per digit. 10 digits. Hence 10s*/
.second {animation-duration: 10s;}
.tensecond {animation-duration: 60s;} /*60 times .second*/

.milisecond {animation-duration: 1s;} /*1/10th of .second*/
.tenmilisecond {animation-duration: 0.1s;}
.hundredmilisecond {animation-duration: 0.01s;}

.minute {animation-duration: 600s;} /*60 times .second*/
.tenminute {animation-duration: 3600s;} /*60 times .minute*/

.hour {animation-duration: 36000s;} /*60 times .minute*/
.tenhour {animation-duration: 360000s;} /*10 times .hour*/

/*The stopwatch looks good now. Lets add some styles*/

/*Lets animate the digit now - the main part of this tutorial*/
/*We are using prefixfree, so no need of vendor prefixes*/
/*The logic of the animation is to alter the 'top' value of the absolutely
positioned .numbers*/
/*Minutes and Seconds should be limited to only '60' and not '100'
Hence we need to create 2 animations. One with 10 steps and 10 digits and
the other one with 6 steps and 6 digits*/
@keyframes moveten {
	0% {top: 0;}
	100% {top: -400px;} 
	/*height = 40. digits = 10. hence -400 to move it completely to the top*/
}

@keyframes movesix {
	0% {top: 0;}
	100% {top: -240px;} 
	/*height = 40. digits = 6. hence -240 to move it completely to the top*/
}

/*Workout Setup Specs*/

.sel{
	margin: 15px, 27px;
	align:center;
	
	}
	
img.sel_align-center{
	display:block;
	margin:  17px auto;
	}
	
