﻿/* Style The Dropdown Button 'ABOUT MEDICARE'*/
.dropbtn {
    display: inline-block;
    /*padding-bottom: 27px;
    padding-top: 18px;*/
    background-color: transparent;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    font-family: 'Century Gothic','Apple Gothic',AppleGothic;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    padding-top: 13px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    position: absolute;
    background-image: url('images/Header_DropDown.jpg');
    min-width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition-property: opacity, visibility;
    -webkit-transition-property: opacity, visibility;
    transition-duration: .4s, 0s;
    -webkit-transition-duration: .4s, 0s;
    transition-delay: 0s, .4s;
    -webkit-transition-delay: 0s, .4s;
}

/* Links inside the dropdown */
.dropdown-content a {
    /*Font color of DD menu links */
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    /*transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;*/
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #0099A9; /* Guiding Green*/
    color: silver;
    /* kludge to align menu choices*/
    margin-left: -14px;
    padding-left: 30px;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    background-image: url('../images/Header_DropDown.jpg');
    visibility: visible;
    opacity: 1;
    transition-delay: 0s, 0s;
    -webkit-transition-delay: 0s, 0s;
}

/* Change the background color of the dropdown button when the dropdown content is shown 'ABOUT MEDICARE' */
.dropdown:hover .dropbtn {
    /*background-color: #3e8e41;*/
    color: silver;
}

.vAlign {
    vertical-align: middle;
    color: #ffffff;
}

.linkButtonA {
    color: white;
    font-weight: bold;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    text-decoration: none;
   
}

    .linkButtonA:visited {
        color: white;
        /*text-decoration: underline;
        border-bottom: 2px solid silver;*/
    }

    .linkButtonA:hover
    {
        color: silver;
        /*text-decoration: underline;*/
        border-bottom: 2px solid silver;
    }

    /*.linkButtonA:active {
        color: silver !important;*/
        /*text-decoration: underline !important;*/
        /*border-bottom: 2px solid silver !important;
    }*/


   