@charset "utf-8";

header{
	   border: black solid 1px;
	   background-image:url("../images/i2.jpg");
	   margin-bottom:0;
	   height:15vh;
	   overflow:hidden;
	   line-height: 3vh;
}
#header_image_1{
	    float:left;
	    height:15vh;
	    width:8vw;
}

.headerLinks{
	    position:relative;
	    left:14vw;
	    bottom:0vh;
	    border:black solid 1px;
	    padding:1vh 1vw 0 1vw;
	    margin: 0 1vw 0 1vw;
	    background-color:yellow;
	    font-size:1.5vw;
	    text-decoration:none;
}

#flash_msg{
	    font-size:1.5vw;
	    color:red;
	    animation-name:h2_anim;
	    animation-duration:8s;
	    animation-iteration-count:infinite;
	    animation-timing-function:linear;	    	    
}

@keyframes h2_anim{
          from{transform:translate(0px);}
          to{transform:translate(90vw);}
          }