<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.galmenue {
	padding: 0;
	z-index: 1;
  display: inline-block;
}

.galmenue ul {
	margin: 0;
	padding: 0;
	list-style: none;
  color: #ccc;
	text-transform: uppercase;
	font: bold 12px/25px Arial, Helvetica;
	text-shadow: 0 1px 0 #000;
}

.galmenue ul li {
	float: left;
  margin: 2px 5px;
	padding: 5px 10px;
	position: relative;
  background: linear-gradient(#666, #111);
  text-decoration: none;
  cursor: pointer;
  line-height: inherit;
}

.galmenue ul li.doc.current {
	color: #6ee5ff;
}

.galmenue ul &gt; li {
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px;
}

.galmenue ul li:hover {
	color: #fafafa;
}

.galmenue ul li:hover &gt; ul {
	display: block;
}

/* Sub-menu */

.galmenue ul ul {
  list-style: none;
  margin: 0;
  padding: 0;    
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 99999;
  white-space: nowrap;
  text-transform: none;
}

.galmenue ul ul li {
  float: none;
  margin: 0;
  display: block; 
  min-width: 130px;
}

.galmenue ul ul li:last-child {   
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;    
}

.galmenue ul ul li:hover {
  background: #0186ba;
	background: -moz-linear-gradient(#04acec,  #0186ba);	
	background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba));
	background: -webkit-linear-gradient(#04acec,  #0186ba);
	background: -o-linear-gradient(#04acec,  #0186ba);
	background: -ms-linear-gradient(#04acec,  #0186ba);
	background: linear-gradient(#04acec,  #0186ba);
}

.galmenue ul ul li:first-child {
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.galmenue ul ul li:last-child {
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}

.galmenue ul ul li:first-child:after {
  content: '';
  position: absolute;
  left: 30px;
  top: -8px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid transparent;
}

.galmenue ul ul li:first-child:hover:after {
  border-bottom-color: #04acec;
}</pre></body></html>