/*RESPONSIVE GRID
TABLETS PORTRAIT*/
@media only screen and (max-width: 1140px)
{
	BODY
	{
		margin: 0;
	}
	#menu
	{
		display: block;
		height: 30px;
		width: 100%;
		padding: 10px;
		left: 0;
		background: rgba(0, 0, 0, 0.85);
		overflow: hidden;
		padding-top: 3px;
		transition: height .25s ease-in-out;
		-moz-transition: height .25s ease-in-out;
		-webkit-transition: height .25s ease-in-out;
		font-size: 16px;
	}
	#menu A, #menu UL A.active
	{
		color: #FFFFFF;
	}

        .no-istouch #menu UL A:hover
	{
		color: #CCC;
	}

	#menu.open
	{
		height: 365px;
	}
	#menu UL
	{
		display: block;
		filter: alpha(opacity=50);
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
		-moz-opacity: 1;
		opacity: 1;
	}
	#dropmenu
	{
		text-transform: uppercase;
		font-family: umk_supersuper;
		position: asbolute;
		display: block;
		width: 100%;
		height: 30px;
	}
	#menu #dropmenu:after
	{
		content: '▼';
		font-family: Arial, sans-serif;
		font-size: 11px;
		position: relative;
		left: 3px;
		bottom: 1px;
	}
	#menu.open #dropmenu:after
	{
		content: '▲';
	}
	#menu UL A.active
	{
		color: #fff;
	}
	#menu UL A.active:before
	{
		position: relative;
		content: '►';
		display: block;
		font-family: arial;
		font-size: 7px;
		position: absolute;
		left: -8px;
		top: 2px;
	}

}