/* This is a comment in CSS. */
/*     */

/*
Multiple-line
CSS
comment
*/

/*  Styling Body    */

/*
body {
background-color: red;
padding: 10px;
margin: 0;
font-family: Verdana, Arial, Helvetica, sans-serif; 
color: #000000;
   }
*/



body { 
   background-image: url(images/fcbackground03.jpg);
   background-color: red;
      }
#threecolbox {
float:left;
    }

#leftColumn {
float: left;
width: 100px;
    }
#contentColumn {
float: center;
width: 50%;
padding: 0 10px 0 20px;
margin-left: auto;
margin-right: auto;
    }


#rightColumn {
float: right;
    }



/*  Centering Text   */
h1.center {text-align: center}
h2.center {text-align: center}
h3.center {text-align: center}
h4.center {text-align: center}
h5.center {text-align: center}
p.center {text-align: center}

h1.yellow {
         color: #FFFF00;
         text-align: center;
         text-shadow: 1px 1 px 1.5px;
         font-size: 60px;
         font-style: italic;
         font-weight: bolder;
          }
h2.yellow {
         color: #FFFF00;
         text-align: center;
         text-shadow: 1em 1 em 1.5em;
         font-size: 40px;
         font-style: italic;
         font-weight: bolder;
          }

h3.yellow {
         color: #FFFF00;
         text-align: center;
         text-shadow: 1em 1 em 1.5em;
         font-size: 28px;
         font-style: italic;
         font-weight: bolder;
          }
h4.yellow {
         color: #FFFF00;
         text-align: center;
         text-shadow: 1em 1 em 1.5em;
         font-size: 20px;
         font-style: italic;
         font-weight: bolder;
          }


p.yellow {
         color: #FFFF00;
         font-size: 16pt;
         font-style: italic;
         }

p.yellowcenter {
         color: #FFFF00;
         text-align: center;
         font-size: 16pt;
         font-style: italic;
         }


p.linkyellow {
         color: #FFFF00;
         text-align: center;
         font-size: 40px;
         font-style: italic;
         font-weight: bolder;
          }


/*   Styling Horizontal Line  */

 hr {
   color: #FFFF00;
   background-color: #FFFF00;
   align: center;
   width: 80%;
   height: 1px;
	    }





/* 
 This adds styling for IPA characters; in page use 
   <span class="ipa"></span>    
*/

.ipa {font-family: "Lucida Sans Unicode";
      font-weight: bold
      }

/* Set Border for Images in Links */

a img {
border: 2px solid #000000;
       }



/* Set Link Style */

a:link {
   color: #FFFF00;
   text-decoration: none;
   }

a:visited {
  color: #FFFF00;
  text-decoration: none;
     }

a:hover {
  color: #FFFF00;
  text-decoration: underline;
  font-style: normal;
     }

