/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 7 Apr, 2018, 12:49:25 PM
    Author     : MEDHA
*/
.tab {
    overflow:hidden;
    border: 2px solid darkgreen;
    background-color: #f1f1f1; 
    box-sizing:border-box;
    position:relative;
    left:150px;
    width: 1184px;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    margin:0px;
    border: 1px solid darkgreen ;
    outline:none;
    cursor: pointer;
    padding: 20px 20px;
    transition: 0.3s;
    font-size: 25px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    
}
