 /* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

  /* Force table to not be like tables anymore */
  .mobile-table table, .mobile-table thead, .mobile-table tbody, .mobile-table th, .mobile-table td, .mobile-table tr { 
    display: block; 
  }
  
  /* Hide table headers (but not display: none;, for accessibility) */
  .mobile-table thead tr { 
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  .mobile-table tr:nth-child(even) {background-color: #f1f1f1;}
  
  .mobile-table tr { border: 1px solid #ccc; }
  
  .mobile-table td { 
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee; 
    position: relative;
    padding-left: 10%; 
  }
  
  .mobile-table td:before { 
    /* Now like a table header */
    /*position: absolute;*/
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%; 
    padding-right: 50px; 
    white-space: nowrap;
  }
  
  .enrollment1 td:nth-of-type(1),   
  .enrollment2 td:nth-of-type(1),
  .graduation1 td:nth-of-type(1),
  .graduation2 td:nth-of-type(1){
    background-color: #eee;
  }
  
  /*
  Label the data
  */
  .enrollment1 td:nth-of-type(1):before { content: "Year";  font-weight:bold;}
  .enrollment1 td:nth-of-type(2):before { content: "2009"; font-weight:bold;}
  .enrollment1 td:nth-of-type(3):before { content: "2010"; font-weight:bold;}
  .enrollment1 td:nth-of-type(4):before { content: "2011"; font-weight:bold;}
  .enrollment1 td:nth-of-type(5):before { content: "2012"; font-weight:bold;}
  .enrollment1 td:nth-of-type(6):before { content: "2013"; font-weight:bold;}
  .enrollment1 td:nth-of-type(7):before { content: "2014"; font-weight:bold;}
  .enrollment1 td:nth-of-type(8):before { content: "2015"; font-weight:bold;}


  .enrollment2 td:nth-of-type(1):before { content: "Year"; font-weight:bold;}
  .enrollment2 td:nth-of-type(2):before { content: "2016"; font-weight:bold;}
  .enrollment2 td:nth-of-type(3):before { content: "2017"; font-weight:bold;}
  .enrollment2 td:nth-of-type(4):before { content: "2018"; font-weight:bold;}
  .enrollment2 td:nth-of-type(5):before { content: "2019"; font-weight:bold;}
  .enrollment2 td:nth-of-type(6):before { content: "2020"; font-weight:bold;}
  .enrollment2 td:nth-of-type(7):before { content: "2021"; font-weight:bold;}
  .enrollment2 td:nth-of-type(8):before { content: "2022"; font-weight:bold;}


  .graduation1 td:nth-of-type(1):before { content: "Year"; font-weight:bold;}
  .graduation1 td:nth-of-type(2):before { content: "2008-09"; font-weight:bold;}
  .graduation1 td:nth-of-type(3):before { content: "2009-10"; font-weight:bold;}
  .graduation1 td:nth-of-type(4):before { content: "2010-11"; font-weight:bold;}
  .graduation1 td:nth-of-type(5):before { content: "2011-12"; font-weight:bold;}
  .graduation1 td:nth-of-type(6):before { content: "2012-13"; font-weight:bold;}
  .graduation1 td:nth-of-type(7):before { content: "2013-14"; font-weight:bold;}
  .graduation1 td:nth-of-type(8):before { content: "2014-15"; font-weight:bold;}
  
  .graduation2 td:nth-of-type(1):before { content: "Year"; font-weight:bold;}
  .graduation2 td:nth-of-type(2):before { content: "2015-16"; font-weight:bold;}
  .graduation2 td:nth-of-type(3):before { content: "2016-17"; font-weight:bold;}
  .graduation2 td:nth-of-type(4):before { content: "2017-18"; font-weight:bold;}
  .graduation2 td:nth-of-type(5):before { content: "2018-19"; font-weight:bold;}
  .graduation2 td:nth-of-type(6):before { content: "2019-20"; font-weight:bold;}
  .graduation2 td:nth-of-type(7):before { content: "2020-21"; font-weight:bold;}
  .graduation2 td:nth-of-type(8):before { content: "2021-22"; font-weight:bold;}
        
        
}