.footmenu {
  display:table;         /* ignored by IE */
  padding:0; 
  list-style-type:none;
  white-space:nowrap;    /* keep text on one line */
  border: 0; /* add a border to show size of footmenu */
  }
* html .footmenu {
  display:inline-block;  /* for IE only */
  width:1px;             /* IE will expand to fit footmenu width */
  padding:0px 2px;         /* fix bug in IE for border spacing */
  }  
.footmenu li {
  display:table-cell;    /* ignored by IE */
  }
* html .footmenu li {
  display:inline;        /* for IE only */
  }
.footmenu a, .footmenu a:visited {
  display:block;         /* for all browsers except IE */
  padding:10px 10px;
  color:#fff; 
  /* background:#d4d4d4; */
  border:0px solid #fff; /* add a 1px white border around items */ 
  text-decoration:none;
  }
* html .footmenu a, * html .footmenu a:visited {
  display:inline-block;  /* for IE only */ 
  padding:12px 10px;
  margin:-4px -2px;         /* to correct an IE border width bug */  
  }
.footmenu a:hover {
  color:#fff; 
  background:#222222;
  }

.footlefted {margin:0 auto 0 0;}
.footcentered {margin:0 auto;}
.righted {margin:0 0 0 auto;}