<!--
body 
{
	margin: 0px;
	padding: 0px;
	background-color: #fff;
	
	/* 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: 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;
}
.info 
{
	display:block;
	margin:5px;
	padding:5px;
	/* padding-right: 15px;         Indent text on the button */
	/*padding-left: 15px; */
	
 /* 	height: 44px;           control is 29 pixels high */
	line-height: 18px;
	font-family:Helvetica;
	font-size: 16px;       /* Text displayed is 12 pixels */
	
	color: #000066;
	background-color:#FFFFFF;  

	text-align:left;
	text-shadow: #000 1px 1px 1px;
	border: solid #CCCCFF 4px;           /* Creates a rectangle around a text */
	-webkit-border-radius: 5px;      /* Rounds each corner of the created rectangle */          
}
.nav 
{
	display:block;
	margin:5px;
	padding:5px;
	padding-right: 15px;        /* Indent text on the button */
	padding-left: 15px;
	
 /* 	height: 44px;           control is 29 pixels high */
	line-height: 28px;
	
	font-weight: bold;
	font-family:Helvetica;
	font-weight:bold;
	font-size: 14px;       /* Text displayed is 12 pixels */
	
	color: #3399ff;
	background-color:#FFFFFF;  

	text-align:center;
	text-shadow: #000 1px 1px 1px;
	border: solid #003366 2px;           /* Creates a rectangle around a text */
	-webkit-border-radius: 8px;      /* Rounds each corner of the created rectangle */          
}
.arrow
{
height:30px;
width:30px;
border: solid #CCCCFF 4px;           /* Creates a rectangle around a text */
	-webkit-border-radius: 8px;      /* Rounds each corner of the created rectangle */ 
	margin-top:-4px;
	float:right;                  /* Align button to the right */ 
	margin-right:3px;   
}
.arrow1
{
	font-weight: bold;
	font-family:Helvetica;
	font-weight:bold;
	font-size: 14px;       /* Text displayed is 12 pixels */
padding-left:5px
height:30px;
width:70px;
border: solid #CCCCFF 4px;           /* Creates a rectangle around a text */
	-webkit-border-radius: 8px;      /* Rounds each corner of the created rectangle */ 
	margin-top:-4px;
	float:right;                  /* Align button to the right */ 
	margin-right:3px;   
}
.buttoner
{
	font-weight: bold;
	font-family:Helvetica;
	font-weight:bold;
	font-size: 14px;       /* Text displayed is 12 pixels */
padding:5px;
width:140px;
line-height:16pt;
text-align:center;
background-color:#CCCCFF;
	text-shadow: #000 1px 1px 1px;
	border: solid #003366 2px;           /* Creates a rectangle around a text */
	-webkit-border-radius: 8px;      /* Rounds each corner of the created rectangle */ 
}

.abutton 
{
	display:block;
	text-decoration:none;
	padding:0;
	padding-right: 15px;        /* Indent text on the button */
	padding-left: 15px;
	
	height: 29px;            /* control is 29 pixels high */
	line-height: 29px;
	
	font-weight: bold;
	font-family:Helvetica;
	font-weight:bold;
	font-size: 12px;       /* Text displayed is 12 pixels */
	
	color: #000066;
	background-color:#ccccff;  

	text-align:center;
	text-shadow: #000 1px 1px 1px;
	border: solid #000066 1px;           /* Creates a rectangle around a text */
	-webkit-border-radius: 5px;      /* Rounds each corner of the created rectangle */
	
	margin-top:-4px;
	float:right;                  /* Align button to the right */ 
	margin-right:10px;           
}
-->
