@charset "UTF-8";
/*
@import url('/css/fonts/font-awesome/css/font-awesome.min.css');
@import url('/css/fonts/SourceSansPro-Light/css/SourceSansPro-Light.css');
*/

@viewport{
    zoom: 1.0;
    width: device-width;
}

@-ms-viewport{
    width: device-width;
    zoom: 1.0;
}


/* FONTS */


/* Source Sans Pro Font */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url('/css/fonts/SourceSansPro-Light/fonts/SourceSansPro-Light.vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url('/css/fonts/SourceSansPro-Light/fonts/SourceSansPro-Light.latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url('/css/fonts/SourceSansPro-Light/fonts/SourceSansPro-Light.latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}


/* HTML BODY */

html {
	background-image: url('/images/backgrounds/2px.png');
	background-color: #001f44;
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: -1;

	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/images/backgrounds/2px.png', sizingMethod='scale');
	-ms-filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/images/backgrounds/2px.png', sizingMethod='scale');
}





/* Box Model */

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Body */

body {
	background-image: url('/images/backgrounds/1920.svg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	/* background-position: center center; */
	background-position: center 40%;
	-webkit-background-size: 60%;
	-moz-background-size: 60%;
	-o-background-size: 60%;
	background-size: 60%;
	image-rendering: optimizeQuality;

	filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/images/backgrounds/1920.svg', sizingMethod='scale');
	-ms-filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='/images/backgrounds/1920.svg', sizingMethod='scale');

	width: 100%; 
	height: 100%; 
	position: fixed; 
	left: 0px; 
	top: 0px;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 14pt;
	font-weight: 300;
	line-height: 2;
	letter-spacing: 0.2em;
	margin: 0 0 0 0;
}


/* Misc. Body */

a {
	-moz-transition: color 0.2s ease, border-color 0.2s ease;
	-webkit-transition: color 0.2s ease, border-color 0.2s ease;
	-ms-transition: color 0.2s ease, border-color 0.2s ease;
	transition: color 0.2s ease, border-color 0.2s ease;
	color: #ff9933;
	text-decoration: none;
}

a:before {
	-moz-transition: color 0.2s ease, text-shadow 0.2s ease;
	-webkit-transition: color 0.2s ease, text-shadow 0.2s ease;
	-ms-transition: color 0.2s ease, text-shadow 0.2s ease;
	transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
	color: #ff7496; 
	/* text-decoration: overline underline; */
}


/* Footer */

#footer {
	-moz-align-self: -moz-flex-end;
	-webkit-align-self: -webkit-flex-end;
	-ms-align-self: -ms-flex-end;
	align-self: flex-end; 
	width: 100%;
	padding: 1.5em 0 0 0;
	color: rgba(255, 255, 255, 0.75);
	cursor: default;
	text-align: center;
	vertical-align: bottom;
	/*display: block;
	z-index: 1; */
	position: absolute;
	bottom: 1em;

	text-transform: uppercase;
	margin: auto;
}

#footer #contact {
	margin-top: 1em;
	margin-bottom: 1em;
}

/* In landscape mode reduce borders */
@media (max-height: 400px) and (orientation: landscape) {

	body {
		background-position: center 40%;
	}

	#footer {
		bottom: 0.3em;
	}

	/* All children. All immediate needs > */
	#footer #contact {
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 0;
		margin-bottom: 0.3em;
	}
}

#footer .copyright {
	margin: 0;
	padding: 0;
	font-size: 0.5em;
	list-style: none;
	position: center;
	-moz-align-content: -moz-center;
	-webkit-align-content: -webkit-center;
	-ms-align-content: -ms-center;
	align-content: center;
	text-align: center;
}


#footer .copyright li {
	display: inline-block;
	margin: 0 0 0 0.45em;
	padding: 0 0 0 0.85em;
	border-left: solid 1px rgba(255, 255, 255, 0.3);
	line-height: 1;
	position: relative;
}

#footer .copyright li:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
}

#footer .copyright li span{
	color: rgba(255, 255, 255, 0.3); 
}

