@charset "utf-8";
/* CSS Document for Directives Division websites: Issuances, Forms, Plain Language, GAO, &amp; Information Collections (May 2017) */
/*This CSS file controls the top navigation for all Directives Division websites*/

/**When using css, use "dd_" to indicate this css only applies to Directives Division websites. Using generic css may change 
styles on other ESD websites.**/

.dd_container {    overflow: hidden;    background-color: #e6f3ff;    font-family: Arial;}

.dd_container a {
    float: left;
    font-size: 16px;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dd_dropdown {    float: left;    overflow: hidden;}

.dd_dropdown .dd_dropbtn {
    font-size: 16px;    
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: #e6f3ff;
}

.dd_container a:hover, .dd_dropdown:hover .dd_dropbtn {    background-color: #cce7ff;}

.dd_dropdown-content {
    display: none;
    position: absolute;
    background-color: #f0f8ff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dd_dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dd_dropdown-content a:hover {
	background-color: #cce7ff;
}

.dd_dropdown:hover .dd_dropdown-content {    display: block; }
