/* uc.css */
/* External Cascading Style Sheet for Uncarved Recordings' Website */

/* begin with our wallpaper and default text colors */
body       {
	     background: url(images/uncarved.png) repeat;
	     font-family: 'Tempus Sans ITC', 'b&h-lucidux sans-iso8859-1', 'Lucida sans', sans-serif;
/*	     font-size: 10pt; */
             color: #800000;
	     margin: 25px;
             background-color: #ffffff} /*  This is the only warning I get from
					 *  the W3 CSS validator which says it
					 *  represents a redefinition of the
					 *  background color. I *guess* they're
					 *  saying that if you define a
					 *  background image you need not also
					 *  specify a background color, however
					 *  when I omit this specification,
					 *  Netscape gets momentarily ugly
					 *  before it loads my "wallpaper." */

table      { margin: auto } 

/* add colors, etc., for some specific tags */
big        {color: #0080c0; background-color: transparent; font-weight: bold}
blockquote {color: #800000; background-color: transparent}
h3, h2, h1 {color: #0080c0; background-color: transparent}
h4         {color: #800000; background-color: transparent}
a:link	   {color: #0080c0; background-color: transparent}
a:active   {color: #808000; background-color: transparent; font-weight: bold}
a:visited  {color: #808000; background-color: transparent}
a:hover    {color: #ff0000; background-color: transparent}
address    {font-size: 80%}

.name	   {font-weight: bold}
.note      {font-size: 80%; font-style: italic}

/* 
 * Whenever we us superscripts or subscripts we want the text smaller so
 * that the space between the lines doesn't get bigger.  (Ugly.)
 */
sup        {font-size: 70%}
sub        {font-size: 70%}

