/* No Follow links, mouseover id of other links (*DM)*/
/* (test) http://www.mvps.org/dmcritchie/firefox/tabs.htm#target */
/* ================================================= */
/* David McRitchie, 2008-10-04 Style 10987, updated (none)   */
/* 2009-01-27 changed border to outline for a[href]:hover    */

/* Stylish provides for quick changing of color,  select the hex code 
   including the #,  then use Insert button and select a different color */

@namespace url(http://www.w3.org/1999/xhtml);

/* nofollow  Matt Cutts http://www.mattcutts.com/blog/seeing-nofollow-links/  */
a[rel~="nofollow"] 
   {border: thin dashed #006400 ! important; font-size:95% !important }

/* Change 'bookmarks text color' on mouseover --  Tony Mechelynck, 2007-05-28 */
/* http://groups.google.com/group/mozilla.support.firefox/browse_frm/thread/7e5f332e269012b0 */
a[href]:hover { outline: #FF0000 dotted 1px !important; } 
/* outline: instead of border: will not cause size changes and appears outside of border */ 

/* Until bugs 103843 and 105547 get fixed, a helpful workaround
 * to highlight some links which would pop up a new window:    */
:link:hover[target="_blank"], :visited:hover[target="_blank"] {
   color: white !important; background: blue !important; }

:link:hover[target="_new"], :visited:hover[target="_new"] {
   color: white !important; background: red !important;  }

/* Change cursor for links that open in new window 
 http://texturizer.net/firefox/tips.html#beh_icons  userContent  */ 
:link[target="_blank"], :visited[target="_blank"],
:link[target="_new"],   :visited[target="_new"] { 
   cursor:  crosshair; } 

/* Change cursor for JavaScript links */ 
a[href^="javascript:"] { 
   cursor: move; }