#dd {						/* This is an ID that is used as an attribute to a tag */
  margin-left: 0px;
  padding: 0px 0px 0px 0px; }			/* Formats paddings top, right, bottom, left */

#dd li {					/* This is specifies styles of list item elements within a dd block */
  list-style-type: none;			/* Sets all list items to have no bullet */
  float: left; }				/* Make li elements float to one side */

#dd li a.menu {					/* This is a class for a elements within li elements within a dd block */
  display: block;				/*  */
  text-align: center;				/* Centers text and images for a elements */
  font-size: 12pt;
  background-color:transparent;			/* Sets background color for a elements */
  border: 0px solid #5970B2;			/* Shorthand border that defines width, style, color */
  padding: 5px 10px;				/* Formats paddings top, right */
  width: 150;					/* Sets width of a elements */
  color: #3399FF;}

#dd li a.menu:hover {				/* This sets the hover property of links within li elements within a dd block */
  background: #999999; 				/* Background color for hovered links */
  color: #000000; }

.submenu {					/* This is a class that is used as an attribute to a tag */
  background: #EAEBD8;				/* Background shorthand, specifies background color */
  border: 1px solid #5970B2;			/* Shorthand border that defines width, style, color */
  visibility: hidden;				/* Specifies whether element is visible */
  position: absolute;				/* Positions submenu items absolute: relative to top left corner of parent element */
  width: 150px;					/* Sets width in pixels */
  z-index: 3; }					/* Makes submenu element display above others, higher index over others */

.submenu a {					/* This sets the link style within a submenu class block */
  display: block;				/*  */
  font: 13px verdana;				/* Shorthand font: order is style, variant, weight, size, family */
  text-align: left;				/* Text alinment */
  padding: 5px;					/* Padding for top */
  color: #000000; }				/* Sets font color */

.submenu a:hover {				/* This sets the hover property of links within a submenu class block */
  background: #440000;				/* Background color for hovered links */
  color: #FFF; }				/* Font color for hovered links */
