.borderBox {
    box-sizing: border-box;
}
.fullWidth {
    width: 100%;
}
.fullHeight {
    height: 100%;
}
.removeBottom {
    margin-bottom: 0;
}
.halfBottom {
    margin-bottom: .75em;
}
.addBottom {
    margin-bottom: 1.5em;
}
.miniBottom {
    margin-bottom: 4px;
}
.noPadding {
    padding: 0;
}
.noBorder {
    border: 0 none;
}
.padding {
    padding: 1em;
}
.sidePadding {
    padding: 0 1em;
}
.margin {
    margin: 0 1em;
}
.sideMargin {
    margin: 0 1em;
}
.sideMarginHalf {
    padding: 0 .5em;
}
.radiusMini {
    border-radius: 4px;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.inlineBlock {
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.block {
    display: block;
}
.table {
    display: table;
    table-layout: fixed;
}
.table > * {
    display: table-cell;
}
.verticalAligned {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.alignMiddle {
    vertical-align: middle;
}
.alignBottom {
    vertical-align: bottom;
}
.alignTop {
    vertical-align: top;
}
.pullLeft {
    float: left;
}
.pullRight {
    float: right;
}
.textLeft {
    text-align: left;
}
.textRight {
    text-align: right;
}
.textCenter {
    text-align: center;
}
.light {
    font-weight: 300;
}
.normal {
    font-weight: 400;
}
.medium {
    font-weight: 600;
}
.bold, strong, b {
    font-weight: 700;
}
.twoLines {
    overflow: hidden;
    max-height: 2em;
}
.upp {
    text-transform: uppercase;
}
.times {
font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
}
.clickable {
    cursor: pointer;
}
.vertical {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px;
}
.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}
.hidden {
    display: none !important;
    visibility: hidden;
}
.noVisible {
    visibility: hidden;
}
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}
.invisible {
    visibility: hidden;
}
.scrollable {
    -webkit-overflow-scrolling: touch;
}
.noCallout {
    -webkit-touch-callout: none;
}
.disabled {
    opacity: 0.5 !important;
    cursor: default;
    pointer-events: none;
}