/*
** Sample Cascading Style Sheet
**
** This file demonstrates how to override the GED-GEN
** style sheet.
*/

/*
** The following lines add a highlight when the mouse is
** held over a link.  (Note this is not supported by 
** Netscape Navigator.)
**
** If you do not want this effect, delete the line
** containing "a:hover."  If you want a different
** color, change "#ffff99" to another HTML color code.
*/

body.gg-body a:hover
{
background:#ffff99;
}

/*
** The following lines remove the underline from links.
**
** If you prefer links to appear with an underline,
** delete the line containing "text-decoration."
*/

a:link, a:visited, a:active
{
text-decoration:none;
}

/*
** The following lines override the GED-GEN body style to
** force the background image to be displayed in the top
** left corner and then repeat down the side of the browser
** screen.
**
** If you specify another background image on the "Attributes"
** tab within GED-GEN, you may want it to appear tiled over
** the entire screen.  In that case, change the line:
**
**     background-repeat:repeat-y;
**
** to:
**
**     background-repeat:repeat;
*/

body.gg-body
{
background-position:top left;
background-repeat:repeat-y;
}

