html {
	background-color:#000000;
}
.header-bar {
    position:fixed;
    top:0;
    height:65px;
    width:100%;
    background-color:#444444;
    box-shadow: 0 0 10px #333;
}

@font-face {
    font-family: Titania;
    src: url('../fonts/titania.ttf');
}

@font-face {
    font-family: BauHaus93;
    src: url('../fonts/bauhaus93.ttf');
}

.author {
    height:100px;
    font-size:65px;
    padding-top:420px;
    color:#eeffee;
    font-family:Titania;
}

.authorJob {
    height:300px;
    font-size:30px;
    font-family:sans-serif;
}

.orangeLine {
    position:absolute;
    bottom:0;
    background-image: url('../res/barLine.png');
    width:100%;
    height:4px;
}

.lightLine {
    position:absolute;
    bottom:0;
    background-image: url('../res/barLine2.png');
    background-position: -200px -4px;
    background-repeat: no-repeat;
    width:100%;
    height:1px;
    transition: background-position 1.5s;
    transition-timing-function: linear;
}

.lightLineBright {
    background-position:2400px -4px;
}

.header-bar div {
    margin-top:0px;
}
.linkPage {
    margin-top:0px;
    float: left;
    padding-left:20px;
    padding-right:20px;
    padding-top:20px;
    padding-bottom:20px;
    color:#e2e2e2;
    background-color:#444444;
    font-size:17px;
    height:100%;
    letter-spacing:2px;
    font-family: "Segoe UI",Arial,sans-serif;
    transition:background-color 0.5s;
    text-decoration:none;
}

.linkPage:hover {
    background-color:#888888;
    cursor:pointer;
}


a.linkIcon {
	width:40px;
}
a.linkIcon img {
   width:32px;
   margin-left:4px;
   margin-right:4px;
   margin-top:4px;
   margin-bottom:-10px;
   transition:all 0.5s;

}
a.nolinkIcon img {
 margin-bottom:-10px;
}

.technosLeft {
    width:100%;
    background:linear-gradient(to right, #333333, #223564);
}
.technoMiddle {
    width:600px;
    background-color:#223564;
    margin:auto;
}
.technosRight {
    width:100%;
    background:linear-gradient(to left, #333333, #223564);
}

a.linkIcon img:hover {
    width:40px;
    margin-left:0px;
    margin-right:0px;
	margin-top:-4px;
		
}

.contentBar {
    margin:auto;
    padding-top:20px;
    border:1px solid #aaaaaa;
    background-color:#dddddd;
}

.contentBarRight {
    float:left;
    margin-left:50px;
    width:65%;
    background-color:inherit;
    text-align:left;
    font-family:Sans-serif;
}

.companyImage {
    background-color:#ffffff;
    border:solid 1px #111111;
    cursor:pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  background-color: #b9c7da;
  font-size: 30px;
  //width: 300px;
  //height: 100px;
  border-radius: 3px;
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.companyXP {
    width: 70%;
    margin: auto;
    box-sizing: border-box;
    border: solid 1px black;
    background-color: #eeeeee;
    text-align: left;
    padding-left: 5px;
    font-family:Sans-serif;
    display:none;
}

.compImgTable {
    width:300px;
    height:100%
}

.compImgTable tr:first-child {
    vertical-align:top;
}
.compImgTable tr:last-child {
    vertical-align:bottom;
}

.cardContainer {
    float:left;
    width:50%;
    height:100%;
    background-color:#333333;
    position:relative;
    perspective: 800px;
    box-shadow: -1px 2px 10px 3px rgba(0, 0, 0, 0.3) inset;
}

div #card {
    position:absolute;
    width:100%;
    height:100%;
    transform-style: preserve-3d;
    transition: transform 1s;
}

#card figure {
    margin: 0px;
    display: block;
    position: absolute;
    left:0px;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background-color:#ffffff;
    display:flex;
    align-items:center;
    box-shadow: 0px 2px 10px 3px rgba(0, 0, 0, 0.3) inset;
}

figure div {
    margin-left:8px;
}

#card .front {
    background: #eeeeee;

}
#card .back {
    background: #eeeeee;
    transform: rotateX( 180deg );
}

#card.flipped {
    transform: rotateX( 180deg );
}

.companySelected {
    display:block;
}

.companyXP ul {
    list-style-image: url('../res/tigerBulletSmall.png');
}

.subtitle {
    font-family:BauHaus93;
    font-size:65px;
}