.outlined {
  text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;
}

.bordered { /* Remember: the border takes up additional space */
  height: inherit;
  border-style: solid;
  border-color: black;
  border-width: 2px;
}

.centered  { /* Center horizontally */
  height: inherit;
  text-align: center; /* text */
  margin: 0 auto; /* divs */
}

.middled { /* Center vertically */
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.rounded { /* Make corners rounded */
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-topleft: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.faded { /* Make element opaque */
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.uppercase {
  text-transform: uppercase;
}
.fullWidth {
  width: 100%;
}


