/*
 * Rosa's Custom CSS Stylesheet
 */

/* note all comments begin with /* and end with */
/* all comments are ignored by browser */

/* product description and category description CSS */
/*
#productDescription, #categoryDescription, #indexProductListCatDescription {
  font-family: "Comic Sans MS", arial, helvetica, sans-serif;  
  font-size: 1.25em;  
  line-height: 1.2em
  font-weight 600;
}
*/

#productDescription, #categoryDescription, #indexProductListCatDescription {
  font-family: arial, helvetica, sans-serif; 
  font-size: 1.2em;  
  line-height: 1.2em;  
  font-weight: bold;   
} 

/* Note: CSS color value is expressed in most easily and reliably in hex, e.g. #ffaacc.
The hex color value contains a red, green, and blue component.  Each component can vary 
from '00' (darkest) to 'ff' (brightest).  So for example the color #9f8b6c expresses a 
red component of '9f', green component of '8b', and blue component of '6c'.
see http://en.wikipedia.org/wiki/Web_colors for a complete reference.
*/

#productDescription a, #productDescription a:visited {
  /* controls color of links within product description */ 
  color: #ff0000;  
/*  color: #006B53;  /* this is the site default color for links */
}

#productDescription a:hover, #productDescription a:active {
  /* controls color when mouse hovers over links in product description */ 
  color: #0006FF;  
}
