/* .............................................................................
FONTS

GT Walsheim -- @font-face
Regular : 400
Medium : 500
Bold : 700
............................................................................. */

@font-face {
    font-family: 'GTWalsheim';
    src: url("../../fonts/GT-Walsheim-Pro-Regular.OTF") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'GTWalsheim';
    src: url("../../fonts/GT-Walsheim-Pro-Medium.OTF") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GTWalsheim';
    src: url("../../fonts/GT-Walsheim-Pro-Bold.OTF") format("opentype");
    font-weight: 700;
    font-style: normal;
}


html, body, button, input, select, textarea
{
	font-family: 'GTWalsheim', sans-serif;
}

strong, .wStrong {font-weight:700;}
.wMedium {font-weight: 500;}
.wLight {font-weight:400;}
