@charset "UTF-8";

/* Table of Content
==================================================
    #Font-Face
	#Reset & Basics
	#Typography
	#Links
	#Lists
	#Images
	#Forms
    #Tables
	#Other */


/* #Font-Face
================================================== */
@font-face {
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 900;
    font-display: auto;
    src: url("../fonts/fa-solid-900.eot");
    src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),
    url("../fonts/fa-solid-900.woff2") format("woff2"),
    url("../fonts/fa-solid-900.woff") format("woff"),
    url("../fonts/fa-solid-900.ttf") format("truetype"),
    url("../fonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
}

@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url("../fonts/fa-brands-400.eot");
    src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),
    url("../fonts/fa-brands-400.woff2") format("woff2"),
    url("../fonts/fa-brands-400.woff") format("woff"),
    url("../fonts/fa-brands-400.ttf") format("truetype"),
    url("../fonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
    font-family: 'Font Awesome 5 Brands';
}

@font-face {
    font-family: 'bold';
    src: url('../fonts/exo2.0-bold-webfont.eot');
    src: url('../fonts/exo2.0-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/exo2.0-bold-webfont.woff2') format('woff2'),
         url('../fonts/exo2.0-bold-webfont.woff') format('woff'),
         url('../fonts/exo2.0-bold-webfont.ttf') format('truetype'),
         url('../fonts/exo2.0-bold-webfont.svg#exo_2.0bold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'light';
    src: url('../fonts/exo2.0-light-webfont.eot');
    src: url('../fonts/exo2.0-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/exo2.0-light-webfont.woff2') format('woff2'),
         url('../fonts/exo2.0-light-webfont.woff') format('woff'),
         url('../fonts/exo2.0-light-webfont.ttf') format('truetype'),
         url('../fonts/exo2.0-light-webfont.svg#exo_2.0light') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'extra_light';
    src: url('../fonts/exo2.0-extralight-webfont.eot');
    src: url('../fonts/exo2.0-extralight-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/exo2.0-extralight-webfont.woff2') format('woff2'),
         url('../fonts/exo2.0-extralight-webfont.woff') format('woff'),
         url('../fonts/exo2.0-extralight-webfont.ttf') format('truetype'),
         url('../fonts/exo2.0-extralight-webfont.svg#exo_2.0extra_light') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'light_italic';
    src: url('../fonts/exo2.0-lightitalic-webfont.eot');
    src: url('../fonts/exo2.0-lightitalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/exo2.0-lightitalic-webfont.woff2') format('woff2'),
         url('../fonts/exo2.0-lightitalic-webfont.woff') format('woff'),
         url('../fonts/exo2.0-lightitalic-webfont.ttf') format('truetype'),
         url('../fonts/exo2.0-lightitalic-webfont.svg#exo_2.0light_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}



/* #Reset & Basics 
================================================== */
    *{
        margin:0;
        padding:0;
        border: 0;
        vertical-align: baseline;
        box-sizing:border-box;
        -moz-box-sizing:border-box;
        -webkit-box-sizing:border-box;
    }

    body { 
    	background: #fff;
        font-size: 16px;
    	font-family: "light", Helvetica, Arial, sans-serif;
    	color: #444;
    	-webkit-font-smoothing: antialiased; 
        -ms-text-size-adjust: 100%;
    	-webkit-text-size-adjust: 100%;
    }


/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #181818;
		font-family: "regular";
		font-weight: normal;
        text-rendering: optimizeLegibility; }
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { 
	   font-weight: inherit; 
       font-family: inherit;
       font-size: inherit; }

	p { margin: 0 0 20px 0; text-rendering: optimizeLegibility; }
	p img { margin: 0; }


/* #Links
================================================== */
	a, 
    a:visited,
    a:hover, 
    a:focus {  
       text-decoration: none; 
       outline: 0;
       line-height: inherit;  }


/* #Lists
================================================== */
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	li { display: inline-block; 
         *display: inline;
         *zoom:1; }


/* #Images
================================================== */

	img {
		max-width: 100%;
        width: auto\9;
        width:auto;
		height: auto;
        vertical-align: middle;
        border: 0;
        -ms-interpolation-mode: bicubic; }
        

/* #Forms
================================================== */
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 0 5px;
		outline: none;
		max-width: 100%;
		display: block;
		background: #fff;
        vertical-align: baseline; 
        *vertical-align: middle; }
	
	textarea {
		min-height: 60px;
        resize:none;
        vertical-align: top;
        overflow: auto; }
            
	input[type="checkbox"],
    input[type="radio"] {
		display: inline-block;
        margin-right:5px; }
        
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {	
	  text-decoration: none;
      text-transform: none;
	  cursor: pointer;
      border:0 none;
	  line-height: normal;
      -webkit-appearance: none; 
      cursor: pointer; 
      *overflow: visible;   }
      
      
	/* Fix for odd Mozilla border & padding issues */
	button::-moz-focus-inner,
	input::-moz-focus-inner {
        border: 0;
        padding: 0;
	}      
	
/* #Tables
================================================== */
    table {
      border-collapse: collapse;
      border-spacing: 0;
      vertical-align: middle;
    }
    
    caption, th, td {
      text-align: left;
      font-weight: normal;
      vertical-align: middle;
      float:none !important;
    }



/* #Other
================================================== */
	:focus   { outline: 0; }
    .left    { float: left !important; }
    .right   { float: right !important; }
    .hidden  {opacity:0;}
    .visible {opacity:1;}
    .clear { clear: both;}

    sub, sup {
      position: relative;
      font-size: 75%;
      line-height: 0;
      vertical-align: baseline;
    }
    sup { top: -5px;}
    sub { bottom: 2px;}
    