.NavigationLinkExtern
	{
	margin-bottom : 24px;
	}

.LinkNav 
	{
	cursor:pointer;
	padding-left:5px;
	}
	
/* Smartphone */
@media only screen and (max-width:480px)
	{
	.Navigation
		{
		position:fixed;
		top:0;
		bottom:0;
		right:0;
		left:0;
		display:none;
		z-index:1000;
		width:100%;
		background-color: #f0f0f0;
		font-size:14pt;
		
		}
		
	.OpenNav
		{
		display:flex;
		flex-direction:column;
		line-height:2;
		}
	}
	
	
/* Tablet	*/	
@media only screen and (min-width:481px) and (max-width:800px)
	{
	.Navigation
		{
		position:absolute;
		top:65px;
		right:0;
		display:none;
		z-index:1000;
		background-color: #f0f0f0;
		box-shadow: 2px 2px 10px black;

		width:200px;

		font-size:12pt;
		padding:5px;
		}
		
	.OpenNav
		{
		display:flex;
		flex-direction:column;
		line-height:2;
		margin-right:5px;
		}
	}


/* Desktop */
@media only screen and (min-width:801px)
	{		
	.Navigation
		{
		position:absolute;
		top:65px;
		right:0;
		display:none;
		z-index:1000;
		background-color: #f0f0f0;
		box-shadow: 2px 2px 10px black;

		width:200px;

		font-size:12pt;
		padding:5px;
		}
		
	.OpenNav
		{
		display:flex;
		flex-direction:column;
		line-height:2;
		margin-right:5px;
		}
	}
