
 
body 
{

	margin: 0px;
	padding: 0px;
	background-color: #fff;
	
	/* Turn off font resizing */
	-webkit-text-size-adjust: none;
	text-align:left;
}

/* 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: 46px;	 
	
	/* A button will expand to the width of its parent cell if no width is specified */
	width: 150px;			
	
	font-size: 20px;
	font-weight: bold;
	font-family: Helvetica, sans-serif;
	color: #fff;
	
	text-decoration: none;
	text-align: center;
}


 /*  Builds a button using a 29x46 image */
.blue
{
	margin: 3px auto;
	color: #fff;
	 /*  Put a 1 pixel blur black shadow below the button's text */
	text-shadow: #000 0px 1px 1px;
	
	/* The right and left borders are 14 pixels wide  */
	border-width: 0px 14px 0px 14px;	   
	
	
	/* The leftButton image is split into three. Both left and right sides are 14 pixels wide.  */
	/* The remaining 1 pixel is used for the middle part of the image.	 */
	/* The left and right sides will remain fixed while the middle part is scaling horizontally.  */
	-webkit-border-image: url(images/blueButton.png) 0 14 0 14;	
}

/*  Builds a button using a 29x46 image */
.white 
{
	margin: 3px auto;
	border-width: 0px 14px 0px 14px;
	color: #000;
	
	/*  Put a 1 pixel blur white shadow below the button's text  */
	text-shadow: #fff 0px 1px 1px;	
	
	/* Note that the -webkit-border-image values are given as  0 14 0 14 and not 0px 14px 0px 14px */
	-webkit-border-image: url(images/whiteButton.png) 0 14 0 14;
}

/*	Builds a button using a 29x46 image */
.black	
{
	border-width: 0px 14px 0px 14px;
	color: #fff;
	
	/* Put a 1 pixel blur black shadow below the button's text */
	text-shadow: #000 0px 1px 1px;	
	-webkit-border-image: url(images/grayButton.png) 0 14 0 14;
	margin: 3px auto;	
}

/*  Creates a button using a 18x30 image */
.blackLeft 
{
	margin: 3px auto;
	color: #fff;
	
	/* Put a 1 pixel blur black shadow below the button's text   */
	text-shadow: #000 0px 1px 1px;	 
	border-width: 0px 5px 0px 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;		
}

/* Creates a button using a 18x30 image */
.blackRight	 
{
	margin: 3px auto;
	border-width: 0px 12px 0px 5px;
	color: #fff;
	text-shadow: #000 0px 1px 1px;
	
	/* -webkit-border-image divides the rightButton image into three parts. */
	/* The right and left corners of the image are respectively 12 pixels and 5 pixels wide. */
	/* This leaves 1 pixel for the midlle part of the image.		*/
	-webkit-border-image: url(images/rightButton.png) 0 12 0 5;
}



/* START SHADELAND STUDIOS STYLES */

div{-webkit-border-radius:10px;
}

input{
background-color:#CCCCFF;
color:#000033;
border:solid 2px #336699;
text-align:center;
font-family:"Trebuchet MS", Verdana, Arial;
font-size:12px;
padding:2px 6px 2px 6px;
font-size:18px;
}


.ttl{
text-align:center;
color:#003366;
font-weight:normal;
font-size:14px;
text-transform:uppercase;
}


.container{
-webkit-border-radius:20px;
background-color:#9999FF;
color:#FFFFFF;
text-align:center;
padding:10px 0px 10px 0px;
margin:2px 2px 2px 2px;
font-family:"Futura Condensed", Futura, Arial, Verdana;
font-size:14px;
font-weight:bold;
}

.calcBtn{
-webkit-border-radius:10px;
background-color:#003366;
color:#FFFFFF;
border:solid 3px #FFFFFF;
padding:5px;
}

.sctH{
background-color:#003366;
border:solid 2px #FFFFFF;
margin:10px 10px 10px 10px;
padding:5px 0px 5px 0px;
}

.ttlH{
font-size:18px;
color:#FFFFCC;
}


.sctW{
background-color:#003366;
border:solid 2px #FFFFFF;
margin:10px 10px 10px 10px;
padding:5px 0px 5px 0px;
}

.ttlW{
font-size:18px;
color:#FFCCFF;
}

.sctT{
background-color:#000033;
margin:10px 10px 10px 10px;
padding:5px 0px 5px 0px;
}

.label{
color:#CCCCFF;
}

.total{
font-size:24px;
}

ol{
margin:10px;
padding:10px;
-webkit-border-radius:10px;
background-color:#003366;
border:solid 2px #FFFFFF;
}

ol li{
list-style-position:inside;
list-style-type:decimal-leading-zero;
font-size:12px;
font-weight:normal;
color:#000033;
letter-spacing:3px;
padding:0px;
margin:0px;
}


.footer{
text-align:center;
}


.t0{
color:#FFFFFF;
}

.t1{
color:#FFCCCC;
}

.t2{
color:#CC9999;
}

/* END SHADELAND STUDIOS STYLES */


