@charset "utf-8";
/* CSS Document */

html,
htm body {
	background-color: #666666;
}

/*  Links  */
 
a:link, a:active, a:visited {
	color: ;
	text-decoration: none;
}


body { background-color: #666666; }


/* Menu Coding */

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: none;
	}
li {
  float: left;
  position: relative;
  width: 170px;;
  height: 27px;
  }
li ul {
  display: none;
  position: absolute; 
  top: 20px;
  left: 0;
  }
li:hover ul, li.over ul { display: block; }

li ul:hover { display: block; }


/* Menu Styling */


ul li, ul li ul li {
	text-decoration: none;
	color: #fff;
	padding-top: 5px;
	text-align: center;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	position: relative;
	top: 5px;
}

ul li ul li {
	background-color: rgb(123,123,125);
	color: white;
	border-left-width: 1px; 
	border-left-color: rgb(87,88,88); 
	border-left-style: solid;
	border-right-width: 1px; 
	border-right-color: rgb(87,88,88); 
	border-right-style: solid;
	border-top-width: 1px; 
	border-top-color: rgb(123,123,125); 
	border-top-style: solid;
	border-bottom-width: 1px; 
	border-bottom-color: rgb(123,123,125); 
	border-bottom-style: solid;
	text-align: center;
}



/* Menu Links */

ul li ul li:hover {
	color: rgb(2,169,224);
	background-color: rgb(90,90,90);
	border-top-width: 1px; 
	border-top-color: rgb(85,85,85); 
	border-top-style: solid;
	border-bottom-width: 1px; 
	border-bottom-color: rgb(85,85,85); 
	border-bottom-style: solid;
}

ul li ul li:hover a {
	color: rgb(2,169,224);
}