			#countdown{ 
				width: 100%; 
				text-align: center;
				background: #fff; 
				background-image: -webkit-linear-gradient(top, #222, #333, #333, #222); 
				background-image: -moz-linear-gradient(top, #222, #333, #333, #222); 
				background-image: -ms-linear-gradient(top, #222, #333, #333, #222); 
				background-image: -o-linear-gradient(top, #222, #333, #333, #222); 
				border: 1px solid #111; 
				border-radius: 5px; 
				box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6); 
			} 
			#countdown:before{ 
				content:""; 
				width: 8px; 
				/*height: 120px; */
				background: #444; 
				background-image: -webkit-linear-gradient(top, #555, #444, #444, #555); 
				background-image: -moz-linear-gradient(top, #555, #444, #444, #555); 
				background-image: -ms-linear-gradient(top, #555, #444, #444, #555); 
				background-image: -o-linear-gradient(top, #555, #444, #444, #555); 
				border: 1px solid #111; 
				border-top-left-radius: 6px; 
				border-bottom-left-radius: 6px; 
				display: block; 
				position: absolute; 
				top: 48px; 
				left: -10px 
			} 
			#countdown:after{ 
				content:""; 
				width: 8px; 
				/*height: 120px; */
				background: #444; 
				background-image: -webkit-linear-gradient(top, #555, #444, #444, #555); 
				background-image: -moz-linear-gradient(top, #555, #444, #444, #555); 
				background-image: -ms-linear-gradient(top, #555, #444, #444, #555); 
				background-image: -o-linear-gradient(top, #555, #444, #444, #555); 
				border: 1px solid #111; 
				border-top-right-radius: 6px; 
				border-bottom-right-radius: 6px; 
				display: block; 
				position: absolute; 
				top: 48px; 
				right: -10px; 
			} 
			#countdown #tiles{ 
				position: relative; 
				z-index: 1; 
				margin-top: 1%;
				top: 0%;
				display: inline-block;
			}
			#countdown #tiles > span{ 
				width: 6vw; 
				max-width: 92px; 
				font: bold 48px 'Droid Sans', Arial, sans-serif; 
				text-align: center; 
				color: #111;
				color: #3399ff;
				background-color: #ddd; 
				background-image: -webkit-linear-gradient(top, #bbb, #eee); 
				background-image: -moz-linear-gradient(top, #bbb, #eee); 
				background-image: -ms-linear-gradient(top, #bbb, #eee); 
				background-image: -o-linear-gradient(top, #bbb, #eee); 
				border-top: 1px solid #111; 
				border-radius: 3px; 
				box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); 
				margin: 0 1vw; 
				padding: 2.1vh 0;
				display: inline-block; 
				position: relative;
				font-size: 2.3vw;
			} 
			#countdown .labels{ 
				width: 100%; 
				height: 25px; 
				display: inline-block;
			} 
			#countdown .labels li{ 
				width: 6vw; 
				margin: 0 1vw;
				max-width: 92px;
				font: bold 1vw 'Droid Sans', Arial, sans-serif; 
				color: #f47321; 
				color: blue;
				color: #996600;
				color: black;
				text-shadow: 1px 1px 0px #000; 
				text-align: center; 
				text-transform: uppercase; 
				display: inline-block; 
			}
			/* Iphone 5  portrait*/
			@media only screen 
				and (min-device-width: 320px) 
				and (max-device-width: 736px) 
				and (-webkit-min-device-pixel-ratio: 2)
				and (orientation: portrait)
			{
				#countdown {
					background: #fff;
					width: 100%;
					/*height: 15vh;*/
					height: auto;
					margin-left: 0%;
					/*margin-top: 8.5vh; */					
				}
				#countdown #tiles > span{ 
					width: 22vw; 
					max-width: 92px;
					font-size: 4.2vw;
					padding: 3vh;
					color: #3399ff;
				}
				#countdown .labels li{
					font-size: 3vw;
					width: 20vw;
					max-width: 92px;
				}				
			} /* Iphone 5 portrait */
			/* Iphone landscape*/
			@media only screen 
				and (min-device-width: 320px) 
				and (max-device-width: 736px) 
				and (-webkit-min-device-pixel-ratio: 2)
				and (orientation: landscape)
			{
				#countdown {
					background: #fff;
					width: 100%;
					/*height: 25vh; */
					height: auto;
					margin-left: 0%;
					/*margin-top: 18vh; */
				}
				#countdown #tiles > span{ 
					width: 22vw; 
					max-width: 92px;
					font-size: 4.2vw;
					padding: 3vh;
					color: #3399ff;
				}
				#countdown .labels li{			
					font-size: 2.4vw;
					width: 20vw;
					max-width: 92px;
				}				
			} /* Iphone 5 landscape*/
			@media screen
				and (min-device-width: 800px)
				and (max-device-width: 1280px)
			{ 
				#countdown {
					background: #fff;
					height: auto; 
					margin-left: 0%;
					/*margin-top: 7vh;*/
				}
			} 			