@charset "iso-8859-1";

@font-face {
    font-family: "Source Sans";
    src: url("../fonts/sourcesans/ssp-regular.woff2") format("woff2"),
         url("../fonts/sourcesans/ssp-regular.woff") format("woff");
    font-weight: 400;
}

@font-face {
    font-family: "Source Sans";
    src: url("../fonts/sourcesans/ssp-italic.woff2") format("woff2"),
         url("../fonts/sourcesans/ssp-italic.woff") format("woff");
    font-style: italic;
}

@font-face {
    font-family: "Source Sans";
    src: url("../fonts/sourcesans/ssp-semibold.woff2") format("woff2"),
         url("../fonts/sourcesans/ssp-semibold.woff") format("woff");
    font-weight: 500;
}

html, body {
    padding: 0;
    margin: 0;
    
	background: #fff;
    -webkit-transition: all 1s; transition: all 1s;
    
	color: #000; 
	font-family: "Source Sans", sans-serif;
	font-size: 12pt;
    font-weight: 400;
	letter-spacing: 2pt;
	line-height: 1.7em;	
	text-transform: lowercase;
    
    cursor: crosshair;
}

::-moz-selection { background: #0ff; color: #fff; }
::selection { background: #0ff; color: #fff; }

a { text-decoration: none; color: #0ff; -webkit-transition: color 1s; transition: color 1s; }
a:hover { color: #000; }

ul { list-style: none; padding: 0; }

.invisible { display: none; }
.flip { -webkit-transform: rotate(180deg); transform: rotate(180deg); }
.selected { color: #000; }

.print { background-color: #00b7eb !important; background-image: none !important; }
.digital { background-color: #0ff !important; background-image: none !important; }
.prtscn {
    background-color: #00dbf5;
    background-image: -webkit-linear-gradient(#0ff, #00b7eb 80%);
    background-image: linear-gradient(#0ff, #00b7eb 80%);
}

/* sidebar nav */
#bar {
    z-index: 200;
    
    height: 100%;
    width: 50px;
    position: fixed;
    top: 0;
    left: 0;
    
    background-color: #00dbf5;
    background-image: -webkit-linear-gradient(#0ff, #00b7eb 10%);
    background-image: linear-gradient(#0ff, #00b7eb 10%);
    
    color: #fff;
    font-size: 14pt;
	line-height: 2em;
    
    cursor: pointer;	
}

#bar a { color: #fff; }
#bar a:hover { color: #00b7eb; }

#name2 { 
    position: fixed; 
    top: 0; 
    left: 65px; 
    margin: -7px 0;
    
    text-align: center;
    font-size: 16pt;
    font-weight: 500;
}
#name2 a { color: #000; }
#name2 a:hover { color: #0ff; }

#baricon { 
    height: 35px; 
    width: 35px;
    position: fixed;
    top: 10px;
    left: 10px;
}
#exit { 
    z-index: 300;
    
    height: 35px; 
    width: 35px;
    position: relative;
    top: -20px;
    left: -60px;
    
    cursor: pointer;
}
#baricon img, #exit img { width: 100%; }
#exit p { 
    position: absolute; 
    margin: -2px; 
    
    font-size: 9pt; 
}
#name2:hover, #exit:hover { list-style: none !important; }

#barlist { margin: 30px 0 0 70px; }
#barlist li:hover { list-style: none url("../icon/arrow.svg") outside; }

.click:hover { color: #0ff; -webkit-transition: color 1s; transition: color 1s; }
.dropdown { cursor: pointer; }
.dropdown:hover { list-style: none !important; }
.dropicon { width: 12px; height: 12px; }
.subdrop {
    margin: 0 0 0 2em;
    padding: 0 1em 0 0;
    
    font-size: 10pt;
	line-height: 1.5em;
}
.subdrop li { padding: 5px 0; }

/* sidebar position indicator */
.position { list-style: none url("../icon/arrow.svg") outside; color: #000; }

/* header */
#top {
    z-index: 100;
    
    height: 100px;
    width: 100%;
    min-width: 300px;
    position: fixed;
    top: 0;
    left: 0;
    
    background: #fff;
    -webkit-transition: all 1s; transition: all 1s;
}

#name {
    display: inline-block;
    
    min-width: 300px;
    position: fixed;
    top: 30px;
    left: 85px;
    
    -webkit-transition: left 1s, -webkit-transform .5s;
    transition: left 1s, -webkit-transform .5s;
    transition: left 1s, transform .5s;
    transition: left 1s, transform .5s, -webkit-transform .5s;
    
    color: #000;
    font-size: 36pt;
	font-size: 3.4vw;
    font-weight: 500;
    line-height: 1em;
}
#name:hover { color: #0ff; -webkit-transition: color 1s; transition: color 1s; }

/* body content */
#container {
    width: 100%;
    min-width: 300px;
    position: relative;
    top: 100px;
    left: 0;
    
    -webkit-transition: all 1s; transition: all 1s;
}

/* about */
#aboutbox {
    position: relative;
    margin: 0 0 0 50px;
    padding: 0 35px 50px 50px;
    
    font-size: 12pt;
    line-height: 1.5em;
}

#profile, #abouttext {
    display: inline-block;
    
    width: 400px;
    vertical-align: top;
}

#profile img { float: left; }

#abouttext { padding: 0 15px; }

/* media queries */
@media (max-width: 400px) {
    #baricon { display: block; }
}
@media (max-width: 600px) {
    #top { height: 80px; }
    #container { top: 80px; }
    #name { font-size: 12pt; font-size: 3.5vw; }
}
@media (min-width: 600px) and (max-width: 1000px) {
    #name { font-size: 24pt; font-size: 3.4vw; }
}
@media (min-width: 1000px) {
    #top { height: 120px; }
    #container { top: 120px; }
}