.wdc {
    font-size: 1rem;
    border: none;
	max-width: 250px;
}
.wdc a{
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	display: block;
}
.wdc a:hover {
	color: white;
	background-color: #FF4500;
	background-size: cover;
	background-position: center;
}
.wdc a:before{
    content: "\25b6  ";
    color: red;
    font-size: 100%;
    }
.wdc a:hover::before {
	color: white;
	content: "\25b6  ";
}
.wdc:hover {
    display: block;
}


.dropbtn {
    font-size: 1rem;
    border: none;
}

.dropbtn a{
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	text-decoration: none;
	display: block;
}

.dropbtn a:hover{
	color: white;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 250px;
    z-index: 1;
}

.dropdown-content a {
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 6px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
	color: white;
	background-color: #FF4500;
}

.dropdown-content a:before{
    content: "\25b6  ";
    color: red;
    font-size: 100%;
    }
    
.dropdown-content a:hover::before {
	color: white;
	content: "\25b6  ";
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
 
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 350px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

        	.modalDialog {
                position: fixed;
                font-family: Arial, Helvetica, sans-serif;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: rgba(0,0,0,0.8);
                z-index: 1;
                opacity:0;
                /*-webkit-transition: opacity 400ms ease-in;
                -moz-transition: opacity 400ms ease-in;*/
                transition: opacity 400ms ease-in;
                pointer-events: none;
                padding-top: 50px;
                width: 100%; /* Full width */
                height: 100%; /* Full height */
                overflow: auto; /* Enable scroll if needed */
            }
        
            .modalDialog:target {
                opacity:1;
                pointer-events: auto;
            }
        
            .modalDialog > div {
                width: 60%;
                height: auto;
                position: relative;
                margin: 10% auto;
                padding: 5px 20px 13px 20px;
                border-radius: 15px;
                /*background: #fff;*/
                color: #000;
                /*background: -moz-linear-gradient(#fff, #999);
                background: -webkit-linear-gradient(#fff, #999);
                background: -o-linear-gradient(#fff, #999);*/
                background-color: #fefefe;
            }
        
            .modalDialog .close {
                background: #606061;
                color: #FFFFFF;
                line-height: 25px;
                position: absolute;
                right: -12px;
                text-align: center;
                top: -10px;
                width: 24px;
                text-decoration: none;
                font-weight: bold;
                -webkit-border-radius: 12px;
                -moz-border-radius: 12px;
                border-radius: 12px;
                -moz-box-shadow: 1px 1px 3px #000;
                -webkit-box-shadow: 1px 1px 3px #000;
                box-shadow: 1px 1px 3px #000;
            }
        
            .close:hover,
            .close:focus
            { background: #FF4500; }