/* style sheet for ads */

  /*Banner ad 100% width of container */
  .containerForBannerAdDesktop {
    width: 100%;
    height: 200px;
    background-color: black;
  }

  /*banner ad div sizes for mobile */ 
  .bannerAdForMobile{
    height: 100px;
    width: 100%;
    background-color: black;
    display: none;
  }
  
  /* container for ads within an article on desktop/tablet */
  .containerForBannerAdDesktopWithinArticle{
    width: 100%;
    height: 300px;
    background-color: black;
    margin-bottom: 30px;
    display: none;
  }

  
