#navcontainer {float:right;}
	#nav {
		margin: 18px -10em 0 0;/*this -em value allows for text scaling way up and down without the menu breaking onto 2 lines - adjust with care!! */
		padding: 0;
		background: transparent;
		list-style-type: none;
		 width: 55em;
		float: left; /* Contain floated list items*/
	/*	line-height: 1;*/

		font-weight: bold;
		border-width: 1px 0;
		font-size:0.8em;
	}
   #nav li {
        margin: 0;
       padding: 0;
	float: left; 
    }
#nav a {
		float: left; 
		width:9em;/* this needs to be wide enough to display the longest link inthe navbar (currently: 'Testimonials') */
        color:#fff;
   		text-decoration:none;
text-transform:uppercase;
		text-align:center;
		line-height: 3.5;/* lower value shifts UP, in combination with margin-top value for #nav */
        /*  padding-left:10px;*/ /* If you bring this back, be careful with the negative em value for right margin in #nav - try 6em with 10px padding-left */
          background-color:transparent;
      }
      /* controls the "current" pseudo class by comparing with body class */
  
   #nav a:hover {
          color:#fff;text-decoration:underline;
      }

	#nav a:hover,
	  .home #nav #home a,
	  .coaching #nav #coaching a,
	  .about #nav #about a,
	  .testimonials #nav #testimonials a,
	  .contact #nav #contact a {
	 color:#934266; text-decoration:none;
	}