BODY {
	color: #006600;
}


A {
	text-decoration: underline;
	color: #006300;
}

A:Hover {
	text-decoration: none;
	color: #31CE31;
}

.style2 {
	color: #006300;
	font-weight: bold;
	}

 /* sets a condition for all links with an href attribute that includes internet protocols; we'll 
       call this the 'protocols' default. "for all links that have an attribute beginning with ... 
       use these conditions"; The commas just separate each instance (i.e. http, ftp, news, etc.)
       conditions being set */
    a[href ^="http:"], a[href ^="https:"], a[href ^="mailto:"], a[href ^="ftp:"], a[href ^="news:"], a[href ^="nntp:"] {
     padding-right: 18px;
      background: transparent url(elink.gif) no-repeat center right;
    }

 
    /* excludes any link starting with 'http://interstate-screw.com.' from the 'protocols' defaults
       conditions being set  */
    a[href ^="http://hardware-everywhere.com."] {
     padding: 0px;
      background: #fff;
    }

    /* excludes any link starting with 'http://www.interstate-screw.com.' from the 'protocols' defaults
       conditions being set  */
    a[href ^="http://www.hardware-everywhere."] {
     padding: 0px;
      background: #fff;
    }
     