

/* SHORTCUTS */

.AutoMargin { /* Use to center element on page */
  margin-left: auto;
  margin-right: auto;
}
.BoxShadow { /* use to apply shadow to element - not text shadows. syntax: horizontal vertical radius color */
  -webkit-box-shadow: 0px 3px 10px #604B4B;
  -moz-box-shadow: 0px 3px 10px #604B4B;
  box-shadow: 0px 3px 10px #604B4B;
}
.reflect {
 -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.7, transparent), to(rgba(255,255,255,0.5)));
-moz-border-radius: 10px;
margin-bottom: 75px;
}
.Corners { /* apply for rounded corners */
  padding: 8px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.border {
  border: 1px solid #B3B3B3;
}
