body 
{
	margin: 0;
	padding:0;
	background-color: white;
	
	/* Turn off font resizing */
	-webkit-text-size-adjust: none; 
}

/* The button class defines properties for buttons that are either 30px or 46px high  */
.button	
{	
   /* Set a button to be a block so its height and width can be adjusted */
	display:block;		    
	
	/* Use the highest button height to ensure that text will vertically align on all buttons */
	line-height: 30px;	 
	
	/* A button will expand to the width of its parent cell if no width is specified */
	width:50px;			
	

}



/*  Creates a button using a 18x30 image */
.blackLeft 
{
	margin: 3px auto;
	color: white;
	/* Put a 1 pixel blur black shadow below the button's text   */
	text-shadow: #000 0px 1px 1px;
	border-width: 0 5px 0 12px;
	/* -webkit-border-image divides the leftButton image into 2 corners and middle part.	*/
	/* The left corner is 12 pixels wide. The right corner is 5 pixels wide and the middle part is 1 pixel. */
	-webkit-border-image: url(images/leftButton.png) 0 5 0 12;
}
