body {
	font-family:Helvetica, Arial, sans-serif;
	margin:0;
	padding:0;
	font-size:100%;
}

.slicknav_menu {
	display:none;
}



#menu > ul {
	/*width: 960px;*/ /* taken out and replaced with > ul > li widths of 100px*/
	/*margin: 10px auto;*/
	margin: 5px auto 10px 270px; 
	padding: 0; 
	list-style: none; 
	display: table;
	}
	
  #menu > ul > li {
	  display: table-cell; 
	  margin: 0; 
	  /*padding: 0;*/ 
	  padding: 0 /* mine added to make the menu not go over two lines but spread them out instead of the width:100% style below */
	  /*background: #000;*/ 
	  /*color: #fff;*/
	  color: #000; 
	  position: relative;
	  /*width:100px;*/
	   width:auto; /* mine added to make the menu not go over two lines*/
	   border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
}


#menu ul > li a {
	/*color: #fff; */
	color: #000;
	text-decoration: none;
	height: 40px;
	line-height: 40px;
	display: block;
	/*text-align: center;*/
	width: 100%;
	font-size: 15px;
	padding: 0 10px;
	font-family: "proxima-nova-sc-osf",sans-serif;
	list-style: outside none none;
}

#menu ul > li:last-child {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;
}	


/* my addition media queries to make it resize*/
@media only screen 
and (min-width : 481px) 
and (max-width : 768px) {
  
  #menu ul > li a {
  color: #000;
  display: block;
  font-family: "proxima-nova-sc-osf",sans-serif;
  font-size: 12px;
  height: 40px;
  line-height: 40px;
  list-style: outside none none;
  padding: 0 10px;
  text-decoration: none;
  width: 100%;
}

/*#menu > ul {
  display: table;
  list-style: outside none none;
  margin: 5px auto ;
  padding: 0;
}*/

#menu > ul {
  display: table;
  list-style: outside none none;
  margin: 5px auto 10px;
  padding: 0;
}

}

@media only screen 
and (min-width : 769px) 
and (max-width : 1400px) {
	
  #menu ul > li a {
  color: #000;
  display: block;
  font-family: "proxima-nova-sc-osf",sans-serif;
  font-size: 13px;
  height: 40px;
  line-height: 40px;
  list-style: outside none none;
  padding: 0 10px;
  text-decoration: none;
  width: 100%;
}

#menu > ul {
  display: table;
  list-style: outside none none;
  margin: 5px auto 10px;
  padding: 0;
}	
	
}

		
#menu ul > li a:hover {	
	background: none #30a1da;
	color:#FFF;
	 -webkit-transition: all 0.5s ease-out;  /* Chrome 1-25, Safari 3.2+ */
     -moz-transition: all 0.5s ease-out;  /* Firefox 4-15 */
       -o-transition: all 0.5s ease-out;  /* Opera 10.50–12.00 */
          transition: all 0.5s ease-out;  /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */		  
		  }

#menu ul > li a:selected: {	
	background: none #30a1da;
}
		  
#menu ul > li ul {
	display: none;
	width: 100%;
	background: #FFF;
	position: absolute;
	margin: 0;
	padding: 0;
	top: 40px;
	left: -2px;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
	list-style: outside none none;
	z-index:999999;
	/*width:420px;*/
	width:260px;	
}

/*my addition to border the submenu li*/
#menu ul > li ul li {
	text-align: left;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #e5e5e5;	
	
}

/* my css added to accommodate the long sub menus wiht the <br>*/
#menu ul > li > ul > li a {
  height: 50px;
  line-height: 15px;
  padding: 15px 10px;
}

.other_services {
	line-height:20px;
}

#menu ul > li:hover ul {
	display: block;
}

@media screen and (max-width: 40em) {
	.js #menu {
		display:none;
	}
	
	.js .slicknav_menu {
		display:block;
	}
}

.other_services li > a:link {
	font-size:10px;
}