/*	Menastar Limited
	Style Sheet for the Navigation Bar and side menu
	Created 20th March 2020

	Assumption is that the HTML file has defined in its <Head> area the following:-

	<meta name="viewport" content="width=device-width, initial-scale=1">
	<Link	 rel="stylesheet"   type="Text/CSS"   href="coding/navbar.css">

	defined a div called main to show what part of the webpage shifts right when the menu is opend
*/

	.sticky
	{	position:	fixed;
		top:		0;
	}
	#NavBar
	{	height:		43px;
		width:		100%;
		border:		0px solid red;
	}
	#NavBarLogo
	{
		float:		left;
		padding:	5px 15px 3px 10px;
	}
	#NavBarBanner
	{	float:		left;
		font-weight:	bold;
		padding-top:	10px;
	}
	#NavBarDate
	{	float:		right;
		font-weight:	bold;
		padding-top:	8px;
		padding-right:	15px;
		font-size:	80%;
		text-align:	right;
	}
	#NavBarLogoImage
	{	width:		auto;
		height:		30px;
	}
	#NavSide
	{	height:		100%;
		width:		0;
		position:	fixed;
		z-index:	1;
		top:		43px;		/* Auto Adjusted by Javascript */
		left:		0;
		overflow-x:	hidden;
		transition:	0.5s;
		padding-top:	60px;
	}
	#NavSide #CloseBtn			/* Positions the 'X' in the menu area */
	{	position:	absolute;
		top:		0;
		right:		25px;
		font-size:	36px;
		margin-left:	50px;
	}
	#NavSide a
	{	padding:	8px 8px 8px 32px;
		text-decoration:none;
		font-size:	25px;
		color:		#818181;
		display:	block;
		transition:	0.3s;
	}

	/* Keeps the NavBar and Menu to the same colours */

	#NavBar, #NavSide a:hover
	{	color:		#f1f1f1;
	}
	#NavBar, #NavSide
	{
		background-color: #555;
	}
@media screen and (max-width:320px)			/* iPhone SE */
{	#NavBarDate
	{	display:	none;
	}
	body
	{	font-size:	smaller;
	}
}
