/* last modified date 11-13-2008 */

a.button, a.button:visited 
{
	/* these buttons style those buttons that use the asp:LinkButton construct */
	padding: 5px 10px;	
	height: 25px; /* this has no effect */
	background: #f2e6b5;	
	border: 1px solid #2d95b5;
	color: #2d95b5;	
	font-size:1.2em;
	font-weight:bold;
	text-decoration: none;
}
	
a.button:active, a.button:hover
{
	border: 1px solid #A38503;
	color:#A38503;
	text-decoration: none;
}
	
input.button1:link 
{
	border:none;
}
* html div.button 
{/* this is an IE6 hack to position the button */
	
	margin-left:170px;	
}	

div.button 
{/* had to created this hack which goes around submit buttons to get rid
of the default black border that IE6 and IE7 put around submit buttons.
The drawback is that it doesn't allow a border color change on :hover 

This is the div that contains the button.  It is the size of the button. It holds 
the input form element*/
	 
	 border: 1px solid #2d95b5; /*blue*/	
	 height: 27px;
	 width: 70px;	
	 padding:0;	 
     margin-left: 343px;    
     float:left;
     margin-top:20px !important;
	 position:relative; /*parent of input.Form */
	 clear:both;	 
	 
}



input.Forms,  input.Forms:visited {
   border:none!important;
   position:absolute; /*positioning necessary to force button inside div#button */
   top:0;
   left:0;
    margin:0;  
    padding:0;
	color: #2d95b5;	 
	background: #f2e6b5;
	width:70px;
	height:27px;	
	font-size: 1.2em;
	font-weight:bold;
	text-decoration: none; /* can eleminate when all asp:linkbuttons are removed */
	cursor:pointer;

	}
	
input.Forms:active, input.Forms:hover,
input.emailsendbutton:active, input.emailsendbutton:hover,
input.errorsubmitbutton:active, input.errorsubmitbutton:hover
{
	 border: none;	
	color: #b49400;
	color:#A38503;
	text-decoration: none;
}
 

div#emailsendbutton
{	 
	 
	 border: 1px solid #2d95b5; /*blue*/	
	 height: 27px;
	 width: 70px;	
	 padding:0;	 
     margin: 10px 0;    
     float:left;    
	 position:relative; /*parent of input.Form */
	 clear:both;   	  
	
}

div#errorsubmitbutton
{	 
	 
	 border: 1px solid #2d95b5; /*blue*/	
	 height: 27px;
	 width: 70px;	
	 padding:0;	 
     margin: 10px 0 0 0;    
     float:left;    
	 position:relative; /*parent of input.Form */
	 clear:both;   	  
	
}




div#emailcancelbutton
{	 
	 
	 border: 1px solid #2d95b5; /*blue*/	
	 height: 27px;
	 width: 70px;	
	 padding:0;	 
	 margin: 10px 0 0 20px;
     margin-left:20px;    
     float:left;     
	 position:relative; /*parent of input.Form */
	
	
}
	

	
input.emailsendbutton, input.errorsubmitbutton
{  border:none;
   position:absolute; /*positioning necessary to force button inside div#button */
   top:0;
   left:0;
    margin:0;  
    padding:0;
	color: #2d95b5;	 
	background: #f2e6b5;
	width:70px;
	height:27px;	
	font-size: 1.2em;
	font-weight:bold;
	text-decoration: none; /* can eleminate when all asp:linkbuttons are removed */
	cursor:pointer;	
	
}

