myheader h3
{ 
	color: rgba(0,0,0, 0.6); text-shadow: 2px 2px 4px white; 
    font-family: 'Roboto', sans-serif; font-size: 3.0em; letter-spacing: 0; line-height: 0.8;
}

myheader h3
{
	/*width: 100px;
	height: 100px; */
	/*background-color: red; */
	-webkit-animation-name: example; /* Safari 4.0 - 8.0*/
	-webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
	animation-name: example;
	animation-duration: 5s;
	animation-iteration-count: 4; /*infinite; */
	animation-direction: alternate;
}

/* Standard syntax */
@keyframes example
{
	from {color: rgba(50,50,210, 0.6);}
	to {color: rgba(0,0,0, 0.6);}
	/* from { text-shadow: 2px 2px 4px red; }
	to { text-shadow: 2px 2px 4px white; } */
}

myheader
{
	/*display: block;*/
	display: inline-block;
}

myheader
{
	box-shadow: 0 0 5px 5px #333;  
	border-radius:10px; /* 10 10px 10px;*/
}

@media screen, projection
{
	myheader
	{
		height: 125px;
		min-width: 225px;
		position: relative;
		top: 25px;
		z-index :2;
		left: 2%;
		text-align: center;
		background:url('../images/galaxis1.jpg') no-repeat -5px 0;
	}

    myheader h3
	{
		text-transform:uppercase;
		position:relative;
		top: -16px;
		z-index:3;
      /	*font-size:5em; */
    }

    myheader span
	{
		top:-50px; 
		color:white;	
		padding-left:2px;
		position:relative;
		/*font-size:0.3em;
		text-transform:none;*/
    }
}

/*@media screen and (max-width: 960px) {
	myheader {
	position:relative;
	max-width:44%;
	text-align:right;
	padding-right:6%;
	right:0%;
        box-shadow: 0 0 0 0 transparent;
    }
}*/