/************************************************************
* class_cs381_201103.css 
* Glenn G. Chappell
* Last update: 31 Aug 2011
* Style sheet for class website: CS 381 Fall 2011
* All media.
*************************************************************/

/************************************************************
* General appearance and headings
*************************************************************/
body {
    font-family: Verdana, Helvetica, Arial, sans-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 {
    text-decoration: none;
}
a.external { /* For marking links as external */
    /* This trick was gotten from the Wikipedia CSS */
    background: url(external2.png) center right no-repeat;
    padding-right: 14px;
}
a:link { 
    color: #0066ff;
}
a:visited { 
    color: #7700cc;
}
a:active { 
    color: #ff0000;
}
a:hover { 
    background-color: #e8e8e8;
}
a.plain {
    /* color: inherit; */ /* Not in IE */
    color: #000000;
    /* background-color: inherit; */ /* Not in IE */
    background-color: #ffffff;
}

/************************************************************
* monospaced text: pre, code, tt
*************************************************************/

pre, code, tt {
    font-family: 'Courier New', Courier;
    /* font-weight: bold; */
}

pre {
    color: #1f6481;
}

/************************************************************
* img.plain
* Plain undecorated image.
*************************************************************/
img.plain {
    border: 0;
}

/************************************************************
* General text styles
*************************************************************/
.standout { /* For making text stand out */
    font-weight: bold;
    color: #cc0000; /* slightly dark red */
    background-color: Yellow;
}
.crossedout { /* Like old <strike> */
    text-decoration: line-through;
}
.circled { /* mimics "circling", e.g. answers to mult-choice */
           /* probabaly actually makes a box */
    border: medium solid;
}
.lilnotes { /* For small notes, usually under other items */
    font-size: smaller;
    line-height: 1.1em;
    margin: 0.25em 0em;
}

/************************************************************
* 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;
}

