/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* Miyagi! */

body {
	background: #c0deed;
	font: 14px Arial, sans-serif;
	width: 960px;
	margin: 0 auto;
}

#stage {
	width: 800px;
	height: 600px;
	margin: 20px auto;
	background: url(../images/twittergamebgtest.png);
	overflow: hidden;
	position: relative;
	-moz-border-radius: 10px;
	border-radius: 10px; 
}

#scorebg {
	position: absolute;
	z-index: 3;
	width: 800px;
	height: 25px;
	bottom: 0px;
	background-color: #FFF;
	-moz-border-radius: 10px;
	border-radius: 10px; 
	opacity: 0.5;
	float: right;
}

#score {
	position: absolute;
	right: 0px;
	margin: 5px 5px 0px 0px;
	xcolor: #FFF;
}

#scorebg img {
	height: 100%;
}

.bird {
	width: 162px;
	height: 111px;
	background: transparent url(../images/bird_sprite_v0.02.png) 0 0 no-repeat;
	position: absolute;
	z-index: 1;
	display: none;
	cursor: crosshair;
}

.bird-dead {
	width: 162px;
	height: 111px;
	background: transparent url(../images/bird_sprite_v0.02c.png) 0 0 no-repeat;
	position: absolute;
	z-index: 2000;
	display: none;
	cursor: crosshair;
}

.speech-balloon {
	background: #fff;
	padding: 10px;
	position: absolute;
	bottom: 128px;
	border: 2px solid #000;
	max-width: 200px;
	text-align: center;
	-moz-border-radius: 10px;
	border-radius: 10px;
   -moz-user-select: none;
   -khtml-user-select: none;
   user-select: none;
   cursor: default;
}

.mirrored {
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
}

/* Player */

.player {
	padding: 10px;
	border-top: 1px dotted #000;
	border-left: 1px dotted #000;
	position: absolute;
	width: 500px;
	height: 16px;
	bottom: 0;
	right: 0;
	z-index: 3000;
}

.player  span {
	cursor: pointer;
	margin: 0 10px;
}

#track-info, #loading {
	cursor: default;
	margin: 0;
	float: right;
}

#loading {
	margin: 0 20px 0 0;
}

#searchform {
	display: none;
}

.search-info {
	display: none;
	color: red;
	font-weight: bold;
	margin: 5px;
}

#searchform {
	display: inline-block;
	border: solid 1px #d2d2d2;
	padding: 3px 5px;
	margin: 5px;
	position: relative;
	z-index: 5000;
	
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;

	-webkit-box-shadow: 0 1px 0px rgba(0,0,0,.1);
	-moz-box-shadow: 0 1px 0px rgba(0,0,0,.1);
	box-shadow: 0 1px 0px rgba(0,0,0,.1);

	background: #f1f1f1;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
	background: -moz-linear-gradient(top,  #fff,  #ededed);
}
#searchform input {
	font: normal 12px/100% Arial, Helvetica, sans-serif;
	color: #999;
	background: #fff;
	padding: 6px 6px 6px 8px;
	width: 202px;
	border: solid 1px #bcbbbb;
	outline: none;
	font-style: italic;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;

	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
}
