@charset "utf-8";

table{                            
	background-color: white;
    text-align:left;
	margin-left:auto; 
    margin-right:auto;
}

/*image tab code -----------------------------------*/	
.column {
   float: left;
   width: 10%;
   height: 10%;
   margin:10px;

}

/* Clear floats after columns */
.row:after {
   content: "";
   display: table;
   clear: both;

}

/*tab container code-----------------------------------*/
.tab {
   overflow: hidden;
   background-color: white;
   margin: 0 auto;
   padding: 0;
   border-bottom: 1px solid #ccc;
   width: 800px;
   margin: 0 auto;
}

/* Style the buttons inside the tab */
.tab button {
   float: left;
   outline: none;
   padding: 14px 16px;
   border-radius: 6px 6px 0 0;
   border-width: 1px;
   background: white;
   text-decoration: none;
}

/* active/current tab */
.tab button.active {
   background-color: #555;
   color: white;
}

/* tab content */
.tabcontent {
   border: 1px solid #ccc;
   border-top: none;
   height: 300px;
   width: 800px;
   margin:0 auto;
   overflow-y: scroll;
   overflow-x: hidden;
}


    @media all and (min-width:1024px) and (max-width:1200px) {
      body {}
    }

    @media all and (min-width:874px) and (max-width:1024px) {
      body {}
	  .tab {width: 100%;}
	  .tabcontent{width: 100%;}
    }


    @media all and (min-width:480px) and (max-width:874px) {
      body {}
	  .tab {width: 100%;}
	  .tabcontent{width: 100%;}
      }

    @media all and (max-width:480px) {
      body {}
      .tab {width: 100%;}
	  .tabcontent{width: 100%;}

     }