/* Start of CMSMS style sheet 'ftkfootmenu' */
/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#foot_nav {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#foot_nav {
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#foot_nav ul {
   margin: 0;
   padding: 0;
}


/* menu list items */
div#foot_nav li {
	list-style: none; /* hides the list bullet */
	margin: 0;
	padding: 0 10px 0 10px;
	display:inline;
}


/* the links, that is each list item */
div#foot_nav a {
	margin: 0; /* margin outside each list item box */
	text-decoration: none; /* no underline for links */
	color: #FFFFFF;
	display: inline; /* IE has problems with this, fixed above */
	font-size: 0.6em;
font-weight: normal;
	line-height: 40px;
}


/* hover state for links */
div#foot_nav li a:hover {
	color: #566066;
}
div#foot_nav a.activeparent:hover {
   color: #566066;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#foot_nav li.activeparent a {
   color: #814023;
}

/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#foot_nav ul h3 {
   display: inline;
   color: #814023;                                 /* this will be link color for all levels */
   font-size: 0.6em;                           /* instead of the normal font size for <h3> */
   margin: 0;                                  /* as <h3> normally has some margin by default */
}
/* End of 'ftkfootmenu' */

