/************************************************************
* class2.css 
* Glenn G. Chappell
* Last update: 6 Sep 2007
* Style sheet for class website.
* All media.
*************************************************************/

/************************************************************
* General appearance and headings
*************************************************************/
body {
   font-family: georgia,times new roman,times,serif;
   font-weight: normal;
   line-height: 1.5em;
   background-color: #ffffff;
   color: #000000;
   /* width: 500px; */
   padding: /* 20px; */ 10px;
}

h1, h2, h3, h4, h5, h6 {
   font-family: verdana,helvetica,arial,sans-serif;
   font-weight: normal;
   line-height: 1.1em;
   color: #3232c8;
}
h1 {
   /* text-align: center; */
}

/************************************************************
* a (links)
*************************************************************/
a.external { /* For marking links as external */
   /* This trick was gotten from the Wikipedia CSS */
   background: url(external.png) center right no-repeat;
   padding-right: 14px;
}
/* a.external should come *before* other "a" styles. */

a:link { 
   color: #0066ff;
   text-decoration: none;
}
a:visited { 
   color: #7700cc;
   text-decoration: none;
}
a:hover { 
   color: #0066ff;
   background-color: #e8e8e8;
   text-decoration: none;
}
a:active { 
   color: #ff0000;
   text-decoration: none;
}

/************************************************************
* img.plain
* Plain undecorated image.
*************************************************************/
img.plain {
   border: 0;
}

/************************************************************
* .standout
* For making text stand out. Probably some eye-frying
* color & weight combination, like boldface bright red text
* on a contrasting background.
*************************************************************/
.standout {
   font-weight: bold;
   color: #cc0000; /* slightly dark red */
   background-color: Yellow;
}

/************************************************************
* Crossed-out text
* Style for crossed-out text. Like the old <strike> or
* something similar.
*************************************************************/
.crossedout {
   text-decoration: line-through;
}

/************************************************************
* .circled
* For mimicking "circling" of answers to a multiple-choice
* question on quiz/exam solutions. Probably actually boxes
* items.
*************************************************************/
.circled {
   border: medium solid;
}

/************************************************************
* Styles for announcements
* Styles for parts of class announcements. These are
* specially named so that they can be processed by a script.
*************************************************************/
.announce-title {
   font-weight: bold;
}
