/*Dominion Artist Dropdown menu.css*/
/*Author Doug Longiotti ddzine design & development*/
/* Dropdown Button */
.dropbtn {
    color: white;
    border: none;
    cursor: pointer;
}

/* Dropdown button on hover and focus */
.dropbtn:hover, .dropbtn:focus {
	color:#000033;
   
}

/* The container div - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
/* Dropdown Button */
.dropbtn {
    background-color: #4CAF50;
    color: #64838D;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* 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: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
	text-align:left;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #64838D;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* 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: #ffffff;
}

/*-------version for sub menu------------------------------------------------------------------------------------------------*/
/* Dropdown Button */
.dropbtn2 {
    color: white;
    border: none;
    cursor: pointer;
}

/* Dropdown button on hover and focus */
.dropbtn2:hover, .dropbtn2:focus {
	color:#000033;
   
}

/* The container div - needed to position the dropdown content */
.dropdown2 {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
/* Dropdown Button */
.dropbtn2 {
    background-color: #4CAF50;
    color: #64838D;
    padding: 16px;
    font-size:14px;
    border: none;
    cursor: pointer;
}

/* The container div - needed to position the dropdown content */
.dropdown2 {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content2 {
	margin:-25px auto auto 130px;
	display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
	text-align:left;
}

/* Links inside the dropdown */
.dropdown-content2 a {
    color: #64838D;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content2 a:hover {background-color: #ffffff}

/* Show the dropdown menu on hover */
.dropdown2:hover .dropdown-content2 {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown2:hover .dropbtn2 {
    background-color: #ffffff;
}

