
/* Stylesheet.css */


/* Body text and page background */
body{
    font-family: 'Times New Roman', Serif;
    font-size: medium;
    /*color: #000000; */ /*black */  /*8b;*/
    color: #00008b; /*blue */
    background-color: #FFFFcc;
    text-align: center;
}

/* Titles */
h1.title{
    font-family: 'Times New Roman', Serif, 'Tahoma', 'Geneva', Sans-serif;
    font-size: 3em;
    color: #00008b;
    text-align: center;
}

/* Level-1 Headings */
h1{
    font-family: 'Times New Roman', Serif, 'Tahoma', 'Geneva';
    font-size: xx-large;
    color: #00008b; /* dark blue */
    text-align: center;
}

/* Level-2 Headings */
h2{
    font-family: 'Arial', Sans-serif;
    font-size: large;
    color: #228b22; /* green (right side bar ...You can eat local....) */
    font-style: italic;
}

/* Level-3 Headings */
h3{
    font-family: 'Times New Roman', Serif;
    font-size: large;
    color: #6633ff; /* purply-blue (right side bar...SAVE THE DATE...) */
    text-align: center;
}

/* Blockquotes */
blockquote.main{
    font-family: 'Arial',Sans-serif;
    color: #6633ff;
    text-align: justify;
} 


blockquote.list{
    font-family: 'Arial',Sans-serif;
    color: #6633ff;
    text-align: left;
} 


/* Unvisited links (no underline) */

a:link{

   /*color: #0000ff;*/ /* blue */ 
   font-weight: bold;
   color: #4400CC;

   text-decoration: none;

}


/* Visited links (fuchsia no underline) */
a:visited{

color:  #ff00ff; /* fuchsia */

text-decoration: none;
}


/* Hover links (red underline) */
a:hover{
color: #ff0000; /* red */
text-decoration: underline;

}


/* Active links (purple underlined) */
a:active{
color: #9900ff; /* purple */
text-decoration: none;
}
