@charset "utf-8";
/* CSS Document */

* {
  margin: 0px;
  padding: 0px;
}
 
* {box-sizing: border-box}
body {font-family: "Lato", sans-serif;}

/* Style the tab */
div.tab {
    float: left;
    border: 1px outset #ccc;
    background-color: #f1f1f1;
	color:900;
    width: 30%;
    height:auto;
}

/* Style the buttons inside the tab */
div.tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 22px 15px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor:pointer;
    transition: 0.3s;
    font-size: 14px;
}

/* Change background color of buttons on hover */
div.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current "tab button" class */
div.tab button.active {
    background-color: #900;
	color:#FFF;
}

/* Style the tab content */
.tabcontent {
    float: left;
    padding: 0px 12px;
    border: 1px inset #FFF;
    background-color: #FFF;    
	width: 70%;
	color:#000;
    border-left: none;
    height:auto;
}

.h3 {
	line-height:110%;
	padding: 2% 0;
	color:#003;
}


@media screen and (max-width:740px) {
	
	div.tab			{
					height: auto;
					border: 1px  #ccc;
					}
	
	.tabcontent {
       			height: auto;
				border: 1px #FFF;
				}


}