/**
 * Change block level element to inline-block
 */
.inline-block {
  display: inline-block !important;
}

/**
 * Center align the content
 */
.text-center {
  text-align: center;
}

/**
 * The unstyled inline-block list
 */
ul.inline-list {
  padding-left: 0;
  list-style: none; 
}

ul.inline-list > li {
  display: inline-block;
}


a.normal-link:hover,
a.normal-link:link,
a.normal-link:active,
a.normal-link:visited {
  text-decoration: none;
}

