/********************************************************************************/
/* FONTS and RESET
/********************************************************************************/

/* Fonts */

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/maccabiblock-webfont.eot');
    src: url('../fonts/maccabiblock-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/maccabiblock-webfont.woff') format('woff'),
         url('../fonts/maccabiblock-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/maccabiblock-light-webfont.eot');
    src: url('../fonts/maccabiblock-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/maccabiblock-light-webfont.woff') format('woff'),
         url('../fonts/maccabiblock-light-webfont.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/maccabiblock-bold-webfont.eot');
    src: url('../fonts/maccabiblock-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/maccabiblock-bold-webfont.woff') format('woff'),
         url('../fonts/maccabiblock-bold-webfont.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/maccabiblock-black-webfont.eot');
    src: url('../fonts/maccabiblock-black-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/maccabiblock-black-webfont.woff') format('woff'),
         url('../fonts/maccabiblock-black-webfont.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/***/


/* Reset (Eric Meyer's reset + more) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	outline: 0;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		-webkit-font-smoothing: antialiased;
}
:focus { 
	outline:0; 
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/***/


/********************************************************************************/
/* HTML ELEMENTS
/********************************************************************************/
html {
	height: 100%;
}
body { 
	height: 100%;
	position: relative;
	color: #fff;
	font-family: 'CustomFont', Arial, sans-serif;
	font-size: 17px;
	font-weight: 400;
}
a, a:hover, a:active, a:focus {
	color: inherit;
	text-decoration: none;
}
h1 {
}
h2 {
}
h3 {
	margin-bottom: 0.8333em;
	font-size: 1em;
	font-weight: bold;
}
h4 {
}
h5 {	
}
h6 {	
}
p {
	line-height: 1.3333em;
	margin-bottom: 0.8333em;
}
strong {
}
textarea{ 
	resize: none; 
	overflow: hidden; 
}

@media only screen and (min-width : 768px) {
}	
@media only screen and (min-width : 1200px) {
	body {	
		font-size: 18px;
	}
}
@media only screen and (min-width : 1600px) {
	body {	
		font-size: 20px;
	}
}

/********************************************************************************/
/* CLASSES
/********************************************************************************/

/* Fonts */
.strong-text {
	font-weight: 700;
}
.large-text {
}
.small-text {
	font-size: 0.75em;
}
/***/ 

/* Alignments */
.align-left {
	text-align: left;
}
/***/

/********************************************************************************/


#layout-data {
	position: absolute;
	z-index: -9999;
	bottom: 0;
	left: 0;
	width: 1px;
	visibility: hidden;
}


@media only screen and (max-width : 479px) {
/* xxs */
	
}
@media only screen and (min-width : 480px) {
/* xs */
	#layout-data {
		width: 2px;
	}
}
@media only screen and (min-width : 768px) {
/* sm */
	#layout-data {
		width: 3px;
	}
}
@media only screen and (min-width : 992px) {
/* md */
	#layout-data {
		width: 4px;
	}
}
@media only screen and (min-width : 1200px) {
/* lg */
	#layout-data {
		width: 5px;
	}
}
@media only screen and (min-width : 1600px) {
/* xl */
	#layout-data {
		width: 6px;
	}
}
@media only screen and (min-width : 1921px) {
/* xxl */
	#layout-data {
		width: 7px;
	}
}
/***/

/********************************************************************************/
