/* animate */
.ease_fast{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.ease_med{
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.ease_long{
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.ease_4s{
    -webkit-transition: all 4s ease;
    -moz-transition: all 4s ease;
    -ms-transition: all 4s ease;
    -o-transition: all 4s ease;
    transition: all 4s ease;
}

/* images */
img{
    max-width: 100%;
}

/* Padding */
.pad_horz_0{
    padding-left: 0px;
    padding-right: 0px;
}
.pad_vert_0{
    padding-top: 0px;
    padding-bottom: 0px;
}
.pad_horz_sm{
    padding-left: 1em;
    padding-right: 1em;
}
.pad_vert_sm{
    padding-top: 1em;
    padding-bottom: 1em;
}
.pad_horz_md{
    padding-left: 2em;
    padding-right: 2em;
}
.pad_vert_md{
    padding-top: 2em;
    padding-bottom: 2em;
}
.pad_horz_lg{
    padding-left: 4em;
    padding-right: 4em;
}
.pad_vert_lg{
    padding-top: 4em;
    padding-bottom: 4em;
}
.marg_horz_0{
    margin-left: 0px;
    margin-right: 0px;
}
.marg_vert_0{
    margin-top: 0px;
    margin-bottom: 0px;
}
.marg_horz_sm{
    margin-left: 1em;
    margin-right: 1em;
}
.marg_vert_sm{
    margin-top: 1em;
    margin-bottom: 1em;
}
.marg_horz_md{
    margin-left: 2em;
    margin-right: 2em;
}
.marg_vert_md{
    margin-top: 2em;
    margin-bottom: 2em;
}
.marg_horz_lg{
    margin-left: 4em;
    margin-right: 4em;
}
.marg_vert_lg{
    margin-top: 4em;
    margin-bottom: 4em;
}

/* text */
.bold{
    font-weight: 600;
}


/* placement */
.pull_left{
    float: left;
}
.pull_right{
    float: right;
}

.align_center{
    text-align: center;
}
.align_left{
    text-align: left;
}
.align_right{
    text-align: right;
}

.full_width{
    width: 100%;
}

/* shadows */
.shadow_inner_sm:hover{
    box-shadow: inset 1px 0px 12px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: inset 1px 0px 12px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: inset 1px 0px 12px 0px rgba(0,0,0,0.5);
    -o-box-shadow: inset 1px 0px 12px 0px rgba(0,0,0,0.5);
}
/* background styles */
.no_repeat{
    background-repeat: no-repeat;
}
.bg_cover{
    background-position: center;
    background-size: cover;
}
.bg_contain{
    background-position: center;
    background-size: contain;
}
.bg_stretch{
    background-position: center;
    background-size: 100% 100%;
}