// out: null

.headingStyle(@paramColor; @paramSize) {
    color: @paramColor;
    font-size: @paramSize;
    font-weight: bold;
    line-height: @paramSize;
    margin-top: @paramSize / 2;
    margin-bottom: @paramSize / 2;
    text-transform: uppercase;
}

.roundedCornerAndBGColor(@pRad; @pCol)
{
    -moz-border-radius: @pRad;
    -webkit-border-radius: @pRad;
    border-radius: @pRad;
    background-color: @pCol;
}
    
.boxshadow(@hoff; @voff; @scol) {
    box-shadow: @hoff @voff @scol;
}

.lgrad(@dir; @fcol; @tcol) {
  background: linear-gradient(@dir, @fcol, @tcol);
}


.expand() {
   transform: scale(1.1);
   display: inline-block;
}

.transp {
    opacity: 0.5;
}

.undit {
    font-style: italic;
    text-decoration: underline;
}

.boldUP {
    font-weight: bold;
    text-transform: uppercase;
}

.imgf {
    /* Safari */
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.ovl {
    text-decoration: overline;
}

.str {
    text-decoration: line-through;
}

.und {
    text-decoration: underline;
}

.ou {
    text-decoration: underline overline;
}
