html {
    -webkit-text-size-adjust: 100%;
}
:focus {
    outline: none
}

::-webkit-input-placeholder { color:#3B4B9C; }
::-moz-placeholder { color:#3B4B9C; } /* firefox 19+ */
:-ms-input-placeholder { color:#3B4B9C; } /* ie */
input:-moz-placeholder { color:#3B4B9C; }

*,
::active,
::focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)!important;
    -webkit-focus-ring-color: rgba(0, 0, 0, 0)!important;
    outline: none!important;
}
.clear {
    font-size: 0;
    line-height: 0;
    clear: both;
}
*,
:after,
::before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

header:after,
footer:after,
section:after,
.row:after{
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
body {
    font-size: 16px;
    background-color: #FFF;
    position: relative;
    margin: 0;
	font-family: 'montserratblack';
}
body.zpr_mobile{
	min-width:320px;
}
.content {
    position: relative;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
	background-color: #fff;
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
    text-align: inherit;
    line-height: inherit;
	display: inline;
}
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span{
    line-height: 120%;
}
.center {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
    display: block;
}
.left {
    float: left;
}
.right {
    float: right;
}

.text-center {
	text-align: center;
}
.underline{
	text-decoration:underline;
}