

a:link {color:#003300; text-decoration:none;}
a:visited {color:#003300; text-decoration:none;}
a:hover {color:#003300; text-decoration:underline; font-weight:bold;}


/* Excel
----------------------------------------------------------- */ 
a[href$=".xls"] {   
    background: url(image/icon/xls.gif) no-repeat 100% 50%; 
		padding: 4px 20px 4px 0; 
 
}  
* html a.xls{   
    background: url(image/icon/xls.gif) no-repeat 100% 50%; 
			padding: 4px 20px 4px 0; 

}  

 /* Word
----------------------------------------------------------- */  
a[href$=".doc"] {   
      background: url(image/icon/doc.gif) no-repeat 100% 50%;
	  		padding: 4px 20px 4px 0; 
  
}  
* html a.doc    {   
     background: url(image/icon/doc.gif) no-repeat 100% 50%;  
	 		padding: 4px 20px 4px 0; 

}  

/* IE-6
----------------------------------------------------------- */  
* html a{  
    behavior: expression(  
    this.className += this.getAttribute("href").match(/^http.*/) && (!this.getAttribute("href").match("css-lecture.com")) ? " external" : "",  
    this.className += this.getAttribute("href").match(/\.doc$/) ? " doc" : "",  
    this.className += this.getAttribute("href").match(/\.xls$/) ? " xls" : "",  
    this.style.behavior = "none"  
    );  
}  








