/**
* (C) by Matthias Gally
* Gally Websolutions GmbH, www.gally-websolutions.com
**/
@media only screen and (max-width: 1024px)  {


	#menu ul li ul li ul{
		padding:0;
	}
	
	#menu ul li ul {
		/*clear:both;
		overflow: hidden;
		margin: 0;
		padding: 0!important;*/
		/*display:none;*/
	}
	#menu ul li ul li {
		display:none;
	}
	#menu ul li.open ul li {
		display:block;
	}
	#menu ul li.open ul li ul li {
		display:none;
	}
	#menu ul li.open ul li.open ul li {
		display:block;
	}
	
	
	#menu li {
		margin: 0 0;
		position: relative;
		/*background-color: #999;
		color: #333;*/
		list-style: none;
	}
	
	#menu li ul {
		/*margin-left: 40px;*/
	}
	
	#menu li a {
	}
	
	/* RELEVATNTE KLASSEN FÜR ANIMATION */
	
	#menu li ul {
		max-height: 0;
		-webkit-transition: max-height .15s ease-out;
		-moz-transition: max-height .15s ease-out;
		transition: max-height .15s ease-out;
	}
	
	#menu li.open > ul {
		max-height: 999px;
		display:block;
		-webkit-transition: max-height .25s ease-in;
		-moz-transition: max-height .25s ease-in;
		transition: max-height .25s ease-in;
	}
	
	/* RELEVATNTE KLASSEN TOGGLE */
	
	#menu li .toggle {
		display: block;
		float: right;
		width: 80px;
		height: 50px;
		text-align:center;
		/*border-left:1px solid #6496dc;*/
		/*background-color: #002367;*/
		/* background image für geschlossenen Zustand des Handles hier einfügen */
	}
	#menu li .toggle:before {
		font-weight:bold;
		content: "+";
	}
	#menu li.open > a > .toggle {
		/*background-color: blue;*/
		/* background image für geöffneten Zustand des Handles hier einfügen */
	}
	#menu li.open > a > .toggle:before {
		font-weight:bold;
		content: "-";
	}


}