BODY {
scrollbar-face-color: #5FACD8;
scrollbar-shadow-color: #689cd0;
scrollbar-highlight-color: #F1F2F4;
scrollbar-3dlight-color: #000000;
scrollbar-darkshadow-color:#000000;
scrollbar-arrow-color: #000000;

}

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

A:Visited  {
	color : #006600;
	text-decoration : underline;
}

A:Active  {
	color : #0000FF;
	text-decoration : underline overline;
}

A:Hover  {
	color : #0000ff;
	text-decoration : none;
	background-color: #FFFFFF;
}

 /* 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: change color to red; add 18 pixels of padding to the right
       side of the text; display a background image that does not repeat, is vertically
       centered and is aligned to the right of the element */
    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://darsys.' from the 'protocols' defaults
       conditions being set: change color to green; remove any padding on the right side;
       change the background color to white to overlay/hide the background image set in the
       'protocols default' */
    a[href ^="http://tampin."] {
     padding: 0px;
      background: #fff;
    }

    /* excludes any link starting with 'http://www.darsys.' from the 'protocols' defaults
       conditions being set: change color to green; remove any padding on the right side;
       change the background color to white to overlay/hide the background image set in the
       'protocols default' */
    a[href ^="http://www.tampin"] {
     padding: 0px;
      background: #fff;
    }
     
   