@charset "ISO-8859-1";
.fa {
	font-size: 16px;
	width: 50px;
	text-align: center;
	text-decoration: none;
	margin: 5px 2px;
}
.accessibility-options{
    font-size: 12px;
	text-align: right;
	text-decoration: none;
	margin: 2px;
	font-weight:bold;
	
}

fa-facebook {
	background: #3B5998;
}

.top-line{
width: 100%;
background: #d2593f;
padding: 0px;
}

.skip{
	font-size: 12px;
	font-weight: bold;
	
}


/* Additional CSS styles for Increment and decrement options */

/* Style the dropdown button */
.dropbtn {
    background-color: #035181;
    color: white;
    padding: 10px;
/*    font-size: 16px;*/
    border: none;
    cursor: pointer;
    border-radius: 5px; /* Add border-radius for rounded corners */
   
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #2980b9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 20px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2; /* Increase the z-index to ensure it appears above other elements */
    border-radius: 5px; /* Add border-radius for rounded corners */
    
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    
    
    
    
    
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd; /* Change hover background color */
    text-decoration: none;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    
    
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #2980b9;
}








