/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #d3d2b6;
  border-bottom: solid 1px #000000; /* Sets the bottom border properties for an element using shorthand notation */
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Commonly used to style page titles. */
h1 {
  color: #8d5e50;
  font-size: 18px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 18px;
}
/* Commonly used to style section titles. */
h2 {
  color: #8d5e50;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: bold;
  line-height: 16px;
}
/* Sets the style for the h3 header. */
h3 {
  color: #034915;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for the h4 header. */
h4 {
  color: #034915;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #009900;
  font-family: Tahoma, Geneva, sans-serif;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-family: Tahoma, Geneva, sans-serif;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #FF0000;
  font-family: Tahoma, Geneva, sans-serif;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
  font-family: Tahoma, Geneva, sans-serif;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
  font-family: Tahoma, Geneva, sans-serif;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #d3d2b6;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 100%;
}
#outerWrapper #header {
  background-color: #d3d2b6;
 /* background-image:url(../images/bkgr_front.gif);*/
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #d3d2b5;
  /*background-image: url(../images/bkgr_front.gif);*/
  background-repeat:repeat;
  /*border-bottom: solid 1px #666; */
  /*border-right: solid 1px #666;  */
  margin-right: 10px;
  margin-left: 35px;
  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 300px;
}

#outerWrapper #contentWrapper #leftColumn2 {
  background-color: #d3d2b5;
  /*border-bottom: solid 1px #666; */
  /*border-right: solid 1px #666;  */
  margin-right: 10px;
  margin-left: 35px;
  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 300px;
}

#outerWrapper #contentWrapper #leftColumn1 #wayside {
 /*background-color: #000000;*/
   background-image: url(../images/pulpit.jpg);
   margin-right: auto;
  margin-left: auto;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 250px;
  height: 155px;
  background-repeat: no-repeat;

}

#outerWrapper #contentWrapper #leftColumn1 #wayside #waytext {
   margin-right: auto;
  margin-left: auto;
  font-size: 12px;
  font-weight: bold;
  padding: 40px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 180px;
  height: 100px;
  overflow: auto;

}

#outerWrapper #contentWrapper #leftColumn1 #whatsnewtext {
   margin-right: auto;
  margin-left: auto;
  border: thin dashed;
  font-size: 12px;
  font-weight: bold;
  padding: 20px 20px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 350px;
  height: 200px;
  overflow: auto;

}

#outerWrapper #contentWrapper #leftColumn2 #leftcolumntext2 {
  padding: 10px 10px 10px 10px;
  margin-left: auto;
  margin-right: auto;
  border: thin dashed;
  font-size: 11px;
  line-height: 15px;
  width: 150px;
  overflow: auto;
 
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  background-color: #d3d2b5;
 /*  background-image:url(../images/bkgr_front.gif);*/
  margin-bottom: 0;
  margin-top: 0;
   /*float: right;*/
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #content2 {
  background-color: #d3d2b5;
  text-align: left;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}


#outerWrapper #contentWrapper #content #slideshow {
  background-image: url(../images/sldshowbkgnd.jpg);
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  background-repeat: no-repeat;

}

#outerWrapper #contentWrapper #content #missiontext {
  padding: 10px 10px 10px 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 18px;
  font-weight: bold;
  width: 300px;
  height: 325px;
  overflow: auto;

}

#outerWrapper #contentWrapper #content #rightcoltext {
  padding: 10px 10px 10px 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 11px;
  line-height: 12px;
  width: 300px;
  height: 750px;
  border: thin dashed;
  overflow: auto;

}

#outerWrapper #contentWrapper #content #rightcoltext2 {
  padding: 10px 10px 10px 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 11px;
  line-height: 14px;
  width: 750px;
  border: thin dashed;
  overflow: auto;

}

#outerWrapper #contentWrapper #content #fulltext {
  padding: 10px 10px 10px 10px;
  margin-left: auto;
  margin-right: auto;
  width: 750px;
  border: thin dashed;
 
}


/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
  background-color: #c1bdad;
 /* background-image:url(images/bkgr_front.gif)*/
 border-top: solid 1px #000; /* Sets the top border properties for an element using shorthand notation */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* place stylesheet informaiotn here from Fireworks setup */

td img {
/* Another Mozilla/Netscape bug with making sure our images display correctly */
	display: block;
}

#FWTableContainer1598232925 {
/* The master div to make sure that our popup menus get aligned correctly.  Be careful when playing with this one. */
	position:relative;
    margin-left: auto;
	margin-right: auto; 
	width:779px;
	height:163px;
	text-align:left;
}

#MMMenuContainer0001195137_0 {
/* This ID is related to the master menu div for menu MMMenuContainer0001195137_0 and contains the important positioning information for the menu as a whole */
	position:absolute;
	left:572px;
	top:156px;
	visibility:hidden;
	z-index:300;
}

#MMMenu0001195137_0 {
/* This class defines things about menu MMMenu0001195137_0's div. */
	position:absolute;
	left:0px;
	top:0px;
	visibility:hidden;
	background-color:#7f010f;
	border:2px solid #7f010f;
	width:141px;
	height:50px;
}

.MMMIFVStyleMMMenu0001195137_0 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001195137_0 */
	border-top:2px solid #ffffff;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:141px;
	height:26px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:131px;
	height:16px;
}

.MMMIVStyleMMMenu0001195137_0 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001195137_0 */
	border-top:0px;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:141px;
	height:24px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:131px;
	height:16px;
}

#MMMenu0001195137_0_Item_0 {
/* Unique ID for item 0 of menu MMMenu0001195137_0 so we can set its position */
	left:0px;
	top:0px;
}

#MMMenu0001195137_0_Item_1 {
/* Unique ID for item 1 of menu MMMenu0001195137_0 so we can set its position */
	left:0px;
	top:26px;
}

#MMMenuContainer0001195137_0 img {
/* needed for Mozilla/Camino/Netscape */
	border:0px;
}

#MMMenuContainer0001195137_0 a {
/* Controls the general apperance for menu MMMenuContainer0001195137_0's items, including color and font */
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;
	text-align:left;
	vertical-align:middle;
	padding:3px;
	background-color:#cdfd8c;
	font-weight:bold;
	font-style:normal;
	display:block;
	position:absolute;
}

#MMMenuContainer0001195137_0 a:hover {
/* Controls the mouse over effects for menu MMMenuContainer0001195137_0 */
	color:#ffffff;
	background-color:#050069;
}
#MMMenuContainer0001172618_0 {
/* This ID is related to the master menu div for menu MMMenuContainer0001172618_0 and contains the important positioning information for the menu as a whole */
	position:absolute;
	left:90px;
	top:154px;
	visibility:hidden;
	z-index:300;
}

#MMMenu0001172618_0 {
/* This class defines things about menu MMMenu0001172618_0's div. */
	position:absolute;
	left:0px;
	top:0px;
	visibility:hidden;
	background-color:#7f010f;
	border:2px solid #7f010f;
	width:191px;
	height:146px;
}

.MMMIFVStyleMMMenu0001172618_0 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001172618_0 */
	border-top:2px solid #ffffff;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:191px;
	height:26px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:181px;
	height:16px;
}

.MMMIVStyleMMMenu0001172618_0 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001172618_0 */
	border-top:0px;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:191px;
	height:24px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:181px;
	height:16px;
}

#MMMenu0001172618_0_Item_0 {
/* Unique ID for item 0 of menu MMMenu0001172618_0 so we can set its position */
	left:0px;
	top:0px;
}

#MMMenu0001172618_0_Item_1 {
/* Unique ID for item 1 of menu MMMenu0001172618_0 so we can set its position */
	left:0px;
	top:26px;
}

#MMMenu0001172618_0_Item_2 {
/* Unique ID for item 2 of menu MMMenu0001172618_0 so we can set its position */
	left:0px;
	top:50px;
}

#MMMenu0001172618_0_Item_3 {
/* Unique ID for item 3 of menu MMMenu0001172618_0 so we can set its position */
	left:0px;
	top:74px;
}

#MMMenu0001172618_0_Item_4 {
/* Unique ID for item 4 of menu MMMenu0001172618_0 so we can set its position */
	left:0px;
	top:98px;
}

#MMMenu0001172618_0_Item_5 {
/* Unique ID for item 5 of menu MMMenu0001172618_0 so we can set its position */
	left:0px;
	top:122px;
}

#MMMenuContainer0001172618_0 img {
/* needed for Mozilla/Camino/Netscape */
	border:0px;
}

#MMMenuContainer0001172618_0 a {
/* Controls the general apperance for menu MMMenuContainer0001172618_0's items, including color and font */
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;
	text-align:left;
	vertical-align:middle;
	padding:3px;
	background-color:#cdfd8c;
	font-weight:bold;
	font-style:normal;
	display:block;
	position:absolute;
}

#MMMenuContainer0001172618_0 a:hover {
/* Controls the mouse over effects for menu MMMenuContainer0001172618_0 */
	color:#ffffff;
	background-color:#050069;
}
#MMMenuContainer0001185729_1 {
/* This ID is related to the master menu div for menu MMMenuContainer0001185729_1 and contains the important positioning information for the menu as a whole */
	position:absolute;
	left:212px;
	top:154px;
	visibility:hidden;
	z-index:300;
}

#MMMenu0001185729_1 {
/* This class defines things about menu MMMenu0001185729_1's div. */
	position:absolute;
	left:0px;
	top:0px;
	visibility:hidden;
	background-color:#7f010f;
	border:2px solid #7f010f;
	width:153px;
	height:122px;
}

.MMMIFVStyleMMMenu0001185729_1 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001185729_1 */
	border-top:2px solid #ffffff;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:153px;
	height:26px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:143px;
	height:16px;
}

.MMMIVStyleMMMenu0001185729_1 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001185729_1 */
	border-top:0px;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:153px;
	height:24px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:143px;
	height:16px;
}

#MMMenu0001185729_1_Item_0 {
/* Unique ID for item 0 of menu MMMenu0001185729_1 so we can set its position */
	left:0px;
	top:0px;
}

#MMMenu0001185729_1_Item_1 {
/* Unique ID for item 1 of menu MMMenu0001185729_1 so we can set its position */
	left:0px;
	top:26px;
}

#MMMenu0001185729_1_Item_2 {
/* Unique ID for item 2 of menu MMMenu0001185729_1 so we can set its position */
	left:0px;
	top:50px;
}

#MMMenu0001185729_1_Item_3 {
/* Unique ID for item 3 of menu MMMenu0001185729_1 so we can set its position */
	left:0px;
	top:74px;
}

#MMMenu0001185729_1_Item_4 {
/* Unique ID for item 4 of menu MMMenu0001185729_1 so we can set its position */
	left:0px;
	top:98px;
}

#MMMenuContainer0001185729_1 img {
/* needed for Mozilla/Camino/Netscape */
	border:0px;
}

#MMMenuContainer0001185729_1 a {
/* Controls the general apperance for menu MMMenuContainer0001185729_1's items, including color and font */
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;
	text-align:left;
	vertical-align:middle;
	padding:3px;
	background-color:#cdfd8c;
	font-weight:bold;
	font-style:normal;
	display:block;
	position:absolute;
}

#MMMenuContainer0001185729_1 a:hover {
/* Controls the mouse over effects for menu MMMenuContainer0001185729_1 */
	color:#ffffff;
	background-color:#050069;
}
#MMMenuContainer0001194706_2 {
/* This ID is related to the master menu div for menu MMMenuContainer0001194706_2 and contains the important positioning information for the menu as a whole */
	position:absolute;
	left:453px;
	top:156px;
	visibility:hidden;
	z-index:300;
}

#MMMenu0001194706_2 {
/* This class defines things about menu MMMenu0001194706_2's div. */
	position:absolute;
	left:0px;
	top:0px;
	visibility:hidden;
	background-color:#7f010f;
	border:2px solid #7f010f;
	width:159px;
	height:98px;
}

.MMMIFVStyleMMMenu0001194706_2 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001194706_2 */
	border-top:2px solid #ffffff;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:159px;
	height:26px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:149px;
	height:16px;
}

.MMMIVStyleMMMenu0001194706_2 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001194706_2 */
	border-top:0px;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:159px;
	height:24px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:149px;
	height:16px;
}

#MMMenu0001194706_2_Item_0 {
/* Unique ID for item 0 of menu MMMenu0001194706_2 so we can set its position */
	left:0px;
	top:0px;
}

#MMMenu0001194706_2_Item_1 {
/* Unique ID for item 1 of menu MMMenu0001194706_2 so we can set its position */
	left:0px;
	top:26px;
}

#MMMenu0001194706_2_Item_2 {
/* Unique ID for item 2 of menu MMMenu0001194706_2 so we can set its position */
	left:0px;
	top:50px;
}

#MMMenu0001194706_2_Item_3 {
/* Unique ID for item 3 of menu MMMenu0001194706_2 so we can set its position */
	left:0px;
	top:74px;
}

#MMMenuContainer0001194706_2 img {
/* needed for Mozilla/Camino/Netscape */
	border:0px;
}

#MMMenuContainer0001194706_2 a {
/* Controls the general apperance for menu MMMenuContainer0001194706_2's items, including color and font */
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;
	text-align:left;
	vertical-align:middle;
	padding:3px;
	background-color:#cdfd8c;
	font-weight:bold;
	font-style:normal;
	display:block;
	position:absolute;
}

#MMMenuContainer0001194706_2 a:hover {
/* Controls the mouse over effects for menu MMMenuContainer0001194706_2 */
	color:#ffffff;
	background-color:#050069;
}
#MMMenuContainer0001191802_2 {
/* This ID is related to the master menu div for menu MMMenuContainer0001191802_2 and contains the important positioning information for the menu as a whole */
	position:absolute;
	left:332px;
	top:157px;
	visibility:hidden;
	z-index:300;
}

#MMMenu0001191802_2 {
/* This class defines things about menu MMMenu0001191802_2's div. */
	position:absolute;
	left:0px;
	top:0px;
	visibility:hidden;
	background-color:#7f010f;
	border:2px solid #7f010f;
	width:183px;
	height:122px;
}

.MMMIFVStyleMMMenu0001191802_2 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001191802_2 */
	border-top:2px solid #ffffff;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:183px;
	height:26px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:173px;
	height:16px;
}

.MMMIVStyleMMMenu0001191802_2 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001191802_2 */
	border-top:0px;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:183px;
	height:24px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:173px;
	height:16px;
}

#MMMenu0001191802_2_Item_0 {
/* Unique ID for item 0 of menu MMMenu0001191802_2 so we can set its position */
	left:0px;
	top:0px;
}

#MMMenu0001191802_2_Item_1 {
/* Unique ID for item 1 of menu MMMenu0001191802_2 so we can set its position */
	left:0px;
	top:26px;
}

#MMMenu0001191802_2_Item_2 {
/* Unique ID for item 2 of menu MMMenu0001191802_2 so we can set its position */
	left:0px;
	top:50px;
}

#MMMenu0001191802_2_Item_3 {
/* Unique ID for item 3 of menu MMMenu0001191802_2 so we can set its position */
	left:0px;
	top:74px;
}

#MMMenu0001191802_2_Item_4 {
/* Unique ID for item 4 of menu MMMenu0001191802_2 so we can set its position */
	left:0px;
	top:98px;
}

#MMMenu0001191802_2_1 {
/* This class defines things about menu MMMenu0001191802_2_1's div. */
	position:absolute;
	left:174px;
	top:103px;
	visibility:hidden;
	background-color:#7f010f;
	border:2px solid #7f010f;
	width:124px;
	height:50px;
}

.MMMIFVStyleMMMenu0001191802_2_1 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001191802_2_1 */
	border-top:2px solid #ffffff;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:124px;
	height:26px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:114px;
	height:16px;
}

.MMMIVStyleMMMenu0001191802_2_1 {
/* This class determines the general characteristics of the menu items in menu MMMenu0001191802_2_1 */
	border-top:0px;
	border-left:2px solid #ffffff;
	border-bottom:2px solid #7f010f;
	border-right:2px solid #7f010f;
	width:124px;
	height:24px;
	voice-family: "\"}\"";
	voice-family:inherit;
	width:114px;
	height:16px;
}

#MMMenu0001191802_2_1_Item_0 {
/* Unique ID for item 0 of menu MMMenu0001191802_2_1 so we can set its position */
	left:0px;
	top:0px;
}

#MMMenu0001191802_2_1_Item_1 {
/* Unique ID for item 1 of menu MMMenu0001191802_2_1 so we can set its position */
	left:0px;
	top:26px;
}

.MMMenuItemSpanMMMenu0001191802_2 {
/* The span class definition so we can make sure that arrows and menu text in menu MMMenu0001191802_2 look correct */
	float:left;
	border: groove;
	width:170px;
}

.MMArrowStyleMMMenu0001191802_2 {
/* This class allows us to position the submenu arrows for menu MMMenu0001191802_2 */
	position:absolute;
	left:171px;
	top:9px;
}

#MMMenuContainer0001191802_2 img {
/* needed for Mozilla/Camino/Netscape */
	border:0px;
}

#MMMenuContainer0001191802_2 a {
/* Controls the general apperance for menu MMMenuContainer0001191802_2's items, including color and font */
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;
	text-align:left;
	vertical-align:middle;
	padding:3px;
	background-color:#cdfd8c;
	font-weight:bold;
	font-style:normal;
	display:block;
	position:absolute;
}

#MMMenuContainer0001191802_2 a:hover {
/* Controls the mouse over effects for menu MMMenuContainer0001191802_2 */
	color:#ffffff;
	background-color:#050069;
}


