@charset "UTF-8";
/* #topNav {
	height: 20px;
	width: 880px;
	margin-top: 10px;
	z-index: 150;
	margin-left: 10px;
	margin-bottom: 20px;
} */
/* CSS Document */
#nav {
	height: 30px;
}	
	
/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
#nav li {
	font-family: 'SortsMillGoudyRegular', Times, serif;
	font-size: 14px;
	float:left;
	display:inline;
	position:relative;
	z-index:5;
	margin-top: 0;
	margin-right: 5px;
	padding-bottom: 3px;
	margin-left: 5px;
	padding-right: 5px;
	padding-left: 0px;
	letter-spacing: 0.1em;
	font-variant: small-caps;
}
		
/* this is the parent menu */
#nav li a {
	display:block;
	height:25px;
	text-decoration:none;
	color:#F1C986;
	text-align:center;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
	-webkit-transition: color 0.2s ease 0.1s;
	-moz-transition: color 0.2s ease 0.1s;
	-o-transition: color 0.2s ease 0.1s;
	-transition: color 0.2s ease 0.1s;
}

#nav li a:hover {
	color:#FFF;
}
	
/* you can make a different style for default selected value */
/* #nav a.selected {
	color:#FFF;
} */
	
/* submenu, it's hidden by default */
#nav ul {
	position:absolute;
	left:-6px;
	list-style:none;
	z-index: 100;
	margin: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding: 0 0 0 0;
	top: 35px;
	display: none;
	opacity: 0.95;
	background-image: url(../img/65black.png);
}
		
#nav ul li {
	float:left;
	padding-right: 5px;
	width: 100%;
	text-align: left;
	margin-right: 1px;
	margin-bottom: 5px;
	height: 20px;
	padding-top: 2px;
}
		
/* display block will make the link fill the whole area of LI */
#nav ul a {
	font-size: 14px;
	letter-spacing: 0.1em;
	display:block;
	height:20px;
	margin-left: 0;
	color:#F1C986;	/* font-style: italic; */
	-webkit-transition: color 0.2s ease 0.1s;
	-moz-transition: color 0.2s ease 0.1s;
	-o-transition: color 0.2s ease 0.1s;
	-transition: color 0.2s ease 0.1s;
	text-align: left;
	padding-top: 0px;
	padding-bottom: 10px;
}
		
#nav ul a:hover {
	color: #FFF;
}

/* menu highlighting */
#home #homeLink,
#mediation #mediationLink,
#mediation1 #mediation1Link,
#mediation2 #mediation2Link,
#mediation3 #mediation3Link,
#articles #articlesLink,
#topics #topicsLink,
#presentations #presentationsLink,
#video #videoLink,
#media #mediaLink,
#governance #governanceLink,
#succession #successionLink,
#coaching #coachingLink,
#questions #questionsLink,
#conflict #conflictLink,
#method #methodLink,
#values #valuesLink,
#team #teamLink,
#biographies #biographiesLink,
#working #workingLink,
#clients #clientsLink,
#stories #storiesLink,
#contact #contactLink,

#about #aboutLink,
.mediation #mediationLink,
.consulting #consultingLink,
.about #aboutLink {
	color: #FFF;
}



.clearFloat {
    clear:both; 
    margin:0;
    padding:0;
 }

/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
*html #nav ul {
	margin:0 0 0 -2px;
}
.leftMargin {
	padding-left: 0px;
}


