/*
 * 20% white on black = #333333
 *
 */

/*
 * Text links
 */
a
{
   text-decoration:     none;
   color:               inherit;
}
a:hover
{
   text-decoration:     underline;
   color:               inherit;
}



/*
 * Navigation buttons
 */

.dim
{
   opacity:             0.2; /* CSS 3 */
   filter:              alpha(opacity=20); /* MSIE fudge */
   color:               #333333;
}

.dim_hover,
a:hover .dim
{
   opacity:             1;
   filter:              alpha(opacity=100);
   color:               white;
}

.selected
{
   opacity:             1 !important;
   filter:              alpha(opacity=100);
   color:               white;
}

.selected_hover,
a:hover .selected
{
   opacity:             1 !important;
   filter:              alpha(opacity=100);
   color:               white;
}

.disabled,
.disabled_hover,
a:hover .disabled
{
   opacity:             0.2 !important;
   filter:              alpha(opacity=20);
   color:               #333333;
}

/*
 * Menu for navigation only
 */

.ul_navonly
{
   margin:              0px;
   padding:             0px;
   list-style-type:     none;
}

.ul_navonly li
{
   margin:              0px;
   padding:             0px;
}

/*
 * Print settings
 */
.printonly
{
   display:             none;
}

