/* -------------------------------------------
	Collapsible Nav CSS 
	Date: 23-JULY-2015
	Author: John Kueh
--------------------------------------------*/

/* header-mobile */
	.header-mobile {
		position: relative;
		padding: 10px 0;
		border-bottom: 1px solid #e1e1e1;
	}
	.header-mobile > ul > li {
		list-style: none;
		background: none;
		display: inline-block;
		box-sizing: border-box;
		padding: 0 10px;
		margin: 0;
	}
	.header-mobile > ul > li > a {
		display: block;
	}
	.header-mobile > ul > li,
	.header-mobile > ul > li > a {
		vertical-align: middle;
	}
	.header-mobile-nav {
		clear: both;
	}
	.header-mobile-nav .header-brand {
		width: 25%;
	}
	.header-mobile-nav .header-search {
		width: 55%;
		position: relative;
		text-align: right;
		height: 40px;
		line-height: 40px;
		vertical-align: middle;
	}
	.header-mobile-nav .header-nav-toggle {
		width: 15%;
	}

	.header-mobile-nav .header-brand .header-logo {
		width: 150px;
	}
	/* Nav toggle and flyout */
		.nav-toggle, 
		.nav-toggle:hover, 
		.nav-toggle:focus {
			top: 5px;
			right: 10px;
			position: absolute;
			display: block;
			width: 45px; height: 45px;
			background: url(../../images/new/amNavToggle.png);
			background-size: 60%;
			background-repeat: no-repeat;
			background-position: right center;
		}
		.nav-flyout {
			display: none;
			position: absolute;
			margin-top: 30px;
			left: 0;
			padding: 0;
			z-index: 10;
			width: 100%;
			background: white;
		}
		.nav-flyout.open {
			display: block;
		}
		.nav-flyout li {
			background: none;
			padding: 0;
		}
		.nav-flyout li > a {
			display: block;
			width: 100%;
			text-decoration: none;
			padding: 10px;
			border-top: 1px solid #e1e1e1;
		}
	/* @end nav toggle and flyout */

	.header-search {
	}
	.header-search .searchBox {
		width: 80%;
		margin-right: 30px;
		float: none;
		padding: 0;
		-webkit-appearance: none;
    border-radius: 0;
	}
	.header-search #searchSubmit {
		width: 30px;
		height: 30px;
		position: absolute;
		top: 5px;
		right: 17px;
	}

/* @end header-mobile */

/* header-desktop */
/* @end header-desktop */

/* Responsive hide/shows according to current AM breakpoints */
	/* - shows .header-desktop when on big screen sizes
	   - shows .header-mobile when on small screen sizes */

	@media screen and (max-width: 499px) {
		.header-desktop { display: none; }
		.header-mobile { display: block; }
	}

	@media screen and (min-width: 500px) and (max-width: 599px) {
		.header-desktop { display: none; }
		.header-mobile { display: block; }
	}

	@media screen and (min-width: 600px) and (max-width: 769px) {
		.header-desktop { display: none; }
		.header-mobile { display: block; }
	}

	@media screen and (min-width: 770px) and (max-width: 899px) {
		.header-desktop { display: block; }
		.header-desktop .header {	
			padding: 30px; 
			background: url(../../images/new/amHeader_04.png);
			background-repeat: no-repeat;
			background-size: auto;
			height: 110px;
		}
		.header-mobile { display: none; }
	}

	@media screen and (min-width: 900px) {
		.header-desktop { display: block; }
		.header-desktop .header {	
			padding: 30px; 
			background: url(../../images/new/amHeader_05.png);
			background-repeat: no-repeat;
			background-size: auto;
			height: 110px;
		}
		.header-mobile { display: none; }
	}
/* @end responsive hide/shows */
