@charset "UTF-8";

.menu {
    position: relative;
	z-index: 0;
}

.drop {
    height: 0;
	width: auto;
    opacity: 0;
    position: fixed;
    transition: all .15s ease;
	overflow: hidden;
	z-index: 0;
	padding: 28px 0 0 0;
}

.menu:hover .drop {
    height: auto;
    opacity: 1;
    transition: all .5s ease;
	transition-delay: 0.25s;
	z-index: 9999999;
}

.dropArrow {
    width: 10px;
    height: auto;
	margin-right: 5px;
}

.dropnav {
    padding: 0;
    margin: 0px;
}

.dropnav:hover .dropnav-item:hover .dropnav-item-content,
.dropnav .dropnav-item--default .dropnav-item-content {
    height: 25px;
    transition-delay: 0.5s;
}

.dropnav-item-content,
.dropnav:hover .dropnav-item-content {
    height: 0px;
    overflow: hidden;
    transition: height 0.5s;
    transition-delay: 0.25s;
}

.dropnav .dropnav-item {
	color: #ffffff;
}

.dropnav .dropnav-item-content {
    margin: 0;
    padding: 0;
}

	
@media only screen and (max-device-width: 1200px) 
and (orientation: portrait) {

.dropnav:hover .dropnav-item:hover .dropnav-item-content,
.dropnav .dropnav-item--default .dropnav-item-content {
    height: auto;
}

.drop {
    height: auto!important;
}

.dropnav-item-content {
    height: auto;
    opacity: 1;
    overflow: visible;
    transition: none;
    padding: 10px 0!important;
}

.dropnav-item-content .link1{
    font-size: 90%;
}
}