﻿/* Style the tab */
.top_church{
    display: table-cell;
   height: 35px;
   width: 370px;
   background-color:SlateBlue;  
   text-align: center;
   vertical-align: middle;
}
.top_church_name{
    font-size: 1.2em;
    color: white;
    font-weight: bold;
 }
.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 14px;
	transition: 0.3s;
    width: 50%;
    font-size: 1.2em;
    font-weight: bold;
    color: rgb(77, 76, 76);
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
	background-color: rgb(155, 154, 154);
    color: #fff;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
	background-color: rgb(1, 91, 151);
    color: #fff;
  }
  
  /* Style the tab content */
  .tabcontent {
	display: none;
	padding: 6px 12px;
	border: 0px solid #ccc;
	border-top: none;
  }