/*This page was created by Alison Wen on January 9, 2017*/

#wrapper {
	padding: 25px;
	background-color: white;
	margin:auto;
	max-width: 1000px;
	}

body {
	background-color: #008da6;
	font: Arial, Times New Roman;
	}
	
/* Style the list */
ul.tab {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #008096;
    background-color: #008da6;
}

/* Style the title of the company*/
ul.tab h3 {
    display: inline-block;
    color: white;
    text-align: center;
    text-decoration: none;
    float: left;
    padding: 0px 16px;
    font-size: 16px

}

/* Float the list items side by side */

/* Style the links inside the list items */
ul.tab li a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
    float: right;
}

/* Change background color of links on hover */
ul.tab li a:hover {
	background-color: #0fb9d4;
	color: black;
}

/* Create an active/current tablink class */
ul.tab li a:focus, .active {
	background-color: #008096;
	color: white;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}