/* Fig. 26.16 : style.css */
/* Stylesheet for forums  */

h1 
{
    color: #330099;
    letter-spacing: 2px;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    background-color: transparent;
}

h2
{
    color: #6633FF;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: small;
    background-color: transparent;
}

p
{
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    color: #336666;
    letter-spacing: 1px;
    font-size: larger;
    font-weight: bold;
    background-color: transparent;
}

body
{
    background-image: url(bug2.gif);
    background-repeat: no-repeat;
    margin-top: 5%;
    background-position: 25%;
    margin-left: 10%;
}

li
{
    font-family: "Courier New", Courier, monospace;
    font-weight: bolder;
    list-style-type: circle;
    color: #3333FF;
    background-color: transparent;
}

input
{
    background-color: transparent;
    color: #336666;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

textarea
{
    background-color: transparent;
    color: #336666;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

.forumTitle
{
    color: #FFFFCC;
    font-size: 14pt;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    text-align: center;
    background-color: #6666CC;
}

.msgTitle
{
    background: #FFFFCC;
    color: black;
    font-size: 10pt;
    font-weight: bold;
}

.msgInfo
{
    background: #FFFFCC;
    color: black;
    font-size: 10pt;
}

.msgPost
{
   background: silver;
   color: black;
   font-size: 8pt;
}

.msgText
{
   font-size: 10pt;
   padding-left: 10px;
}

.date
{
   font-size: 8pt;
}

/*************************************************************************
* (C) Copyright 1992-2004 by Deitel & Associates, Inc. and               *
* Pearson Education, Inc. All Rights Reserved.                           *
*                                                                        *
* DISCLAIMER: The authors and publisher of this book have used their     *
* best efforts in preparing the book. These efforts include the          *
* development, research, and testing of the theories and programs        *
* to determine their effectiveness. The authors and publisher make       *
* no warranty of any kind, expressed or implied, with regard to these    *
* programs or to the documentation contained in these books. The authors *
* and publisher shall not be liable in any event for incidental or       *
* consequential damages in connection with, or arising out of, the       *
* furnishing, performance, or use of these programs.                     *
*************************************************************************/