
/*-----------------------------------------------------------------------------
		NAV/MENU STYLES - LEGACY (non-media query) Browsers 
-----------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
		Conglomerate of Media Query values for Larger Screens
-----------------------------------------------------------------------------*/

  /* Divs */
		DIV.social {
			height: 30px;
			padding-top: 5px;
			xmargin-right: 4px;
			xfloat: right;
			width: 99%; /* OR these 2 lines */
			text-align: right;
		}

		#nav {
			display: block;
			height: 40px; /* 30 40 */
			padding: 0px;
		}
  
		#navAlmost {
			display: none;
		}


		/* General */
		#nav ul li {
			border-bottom: 0px;	
		}

		#nav li {
			xfont-family: "arial", "arial narrow", "sans-serif";
			font-size: 17px; /* 14 17 */
			line-height: 40px; /* 30 40 */
			xheight: 30px;  /* causes a prob vert. leave out */
		}

		#nav a {
			xfont-family: "arial", "arial narrow", "sans-serif";
			font-size: 17px; /* 14 17 */
		}

		#navList li {
			background-image: none !important;
			background-repeat: no-repeat;
		}
  
  
		/* Specific */
		#nav > ul > li {
			float: left;  /* make horizontal */
			display: inline;
			xpadding-left: 18px; /* covered by nav li text-indent above */
			padding-right: 18px;
			border-left: 1px solid #998887; /* also 413131 */
			border-right: 1px solid #FFE4E1; /* also FFE9E9 */
		}
		#nav > ul > li:first-child {
			border-left: none;
		}
		#nav > ul > li:last-child {
			border-right: none;
		}

	
		/* First Level Drop Down menu */
		#nav > ul > li > ul {
			position: absolute;
			width: 210px;
			top: 100%;
			left: 0;
		}

		#nav > ul > li > ul > li {
			text-indent: 18px;
		}


		/* Second Level Drop Down Menu */
		#nav > ul > li > ul > li > ul {
			position: absolute;
			width: 210px;
			top: 0;
			left: 100%;
		}

		#nav > ul > li > ul > li >ul >li {
			text-indent: 18px;
		}


		/* Sprites */
		#img_buttonFacebook, #img_buttonTwitter {
			border: 1px solid white;
			margin: 0px;
		}
	
