@charset "UTF-8";



 /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {

	/* Whole web site */
	/* Remove border and shadow*/
	#outer, #main{
		width:100%;
		border: 0px solid #000099;
		box-shadow: 0px 0px 0px #dddddd;
	}
	
	#page, #footer, #topSection, .headingCon{
		display:none;
	}
	
	/* header section */
	
	
	/* menu section */
	
	.menu-container, .mob{
		display: block;
	}
	
	.mobile-menu{
	  	display:none;
	}
	.mobile-menu.responsive{
		display:block;
	}
	
	
	/* drop the main menu down and add a border*/
	.div{
		clear:both;
		border-top: 1px solid yellow;
	}

	/* Make the menu body and list points the width of the screen*/
	.divBdy, .divBdy li {
	      width: 100%;
	}

	/* Make the second level list into a block*/
	.divBdy li ul{
		display: block;
	    position:relative;
	    width: 100%;
	}
	/* add extra padding to the second level links */
	.div li ul a{
	     padding-left:50px;
	     width:100%;
	     max-width: 535px;
	
	}




  
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
} 
@media screen and (max-width: 400px) {
	.div li ul a{

     max-width: 335px;

}
	}
