/** Coded by: Jeffrey (Joseph Witchard)
 ** Created on: 01/16/09
 ** Last modified: 05/10/10
 ** Purpose: To group the homepage styles
 **          into a single file so that it
 **          can then be included via an
 **          HTML link tag. */

/******* WELCOME MESSAGE ON THE HOMEPAGE *******/

#welcome {
  width: 500px;
}
          
/******* CONTAINS ALL POSTS FROM THE NEWS DATABASE *******/

#news {
  padding: 10px 10px 10px 10px;
  width: 500px;
}

/******* CONTAINS EACH ITEM OF THE NEWS POST, SUCH AS AUTHOR, DATE, ETC. *******/
      
div.news {
  width: 500px;
  text-align: left;
}

/******* THIS IS FOR THE POST ITSELF *******/

div.news_post {
  width: 500px;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
}

/******* THE AD THAT APPEARS ON SHOW_NEWS.PHP *******/

#post_ad {
   width: 200px;
   height: 90px;
   position: relative;
   right: 140px;
   margin-top: 10px;
}