/*Sets <em> font style, color, size and margin-top*/
em {font-style: italic;
         color: #930b0f;/*maroon*/
         margin-top: -10px;
         font-size: 120%;} 

/*modifies font-size of quote in the Welcome*/
#welcome em {font-size: 100%;}

/*Removes the dotted off white border from h2*/
h2 {border: none;}

/*Decreases header margin bottom from 25 to 5px, decreases font-size, aligns to center*/
#header {font-size: 1%;
         text-align: center;} 

/*Moves HOW to right, sets width, background and border*/
#how {width: 375px;
      float: right;
      background-color: #bbbbf9;
      border: 2px dotted #fbfbfb;} 
 
 /*Moves RELATED to right under HOW, sets width background, border, margin top and bottom*/     
#related {width: 375px;
          float: right;
          background-color: #bbbbf9;
          border: 2px dotted #fbfbfb;
          margin-top: 20px;
          margin-bottom: 20px;
          clear: right;} 
           
/*Allows WHY to appear on the left, sets width, background, border, margin-bottom*/       
#why {margin-right: 400px;
      background-color: #bbbbf9;
      border: 2px dotted #fbfbfb;
      margin-bottom: 20px;}
      
 /*Changes color of <em> in the RELATED div*/
#related em {color: #524e76;}  /*dark blue*/      


