@CHARSET "UTF-8";

/* thin hr */
hr.thin {
    height: 1px;
    border: 0;
    color: #a0a0a0;				/* cdcdcd ; */
    background-color: #a0a0a0;
}

		
/* selected/depressed button style */
.btnselect { 
	color:#00f;  			/* darkblue #00f; */
	background-color:#ddd;
	FONT-WEIGHT: normal;
}

.bold-text {
	color:#666666;  		
	FONT-WEIGHT: bold;	
};

/* link having no style */
a.noLinkStyle:link 		{text-decoration: none; color:#000000; }
a.noLinkStyle:visited 	{text-decoration: none; color:#000000; }
a.noLinkStyle:hoover 	{text-decoration: none; color:#000000; }
a.noLinkStyle:active 	{text-decoration: none; color:#000000; }


/* button style when not selected, i.e., normal style */
.btnnormal { 
	background-color:"";	/* do not specify, use default */
	color:#000000; 
	FONT-WEIGHT: normal;
}

/**** button styles ******/
.button {
   border-top: 1px solid #96d1f8;
   border-top-color: #28597a;  
   border-left: 1px solid #96d1f8;
   border-left-color: #28597a;       
   background: #65a9d7;   
   padding: 0px 10px 0px 10px;
   color: white;
   font-size: 12px;
   font-family: Helvetica, Arial, Sans-Serif;
   text-decoration: none;
   CURSOR:pointer;
   CURSOR:hand;
   
   background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#65a9d7));
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e779d', endColorstr='#65a9d7');      
   background: -webkit-linear-gradient(top, #3e779d, #65a9d7);
   background: -moz-linear-gradient(top, #3e779d, #65a9d7);
   background: -ms-linear-gradient(top, #3e779d, #65a9d7);
   background: -o-linear-gradient(top, #3e779d, #65a9d7);     
   
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   border-radius: 4px 4px 4px 4px;
   behavior:url("../components/border-radius.htc");
     
   }


