@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.flash {
    -webkit-animation: blink 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation: blink 1s;
    -moz-animation-iteration-count: infinite;
    -o-animation: blink 1s;
    -o-animation-iteration-count: infinite;
}

.marquee {
	height: 50px;
	font-size: 1.1em;
	overflow: hidden;
	position: relative;
	background: #18779b;
	color: #fff;
}

.marquee p {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	line-height: 50px;
	text-align: center;
	/* Starting position */
	-moz-transform:translateX(100%);
	-webkit-transform:translateX(100%);	
	transform:translateX(100%);
	/* Apply animation to this element */	
	-moz-animation: scroll-left 40s linear infinite;
	-webkit-animation: scroll-left 40s linear infinite;
	animation: scroll-left 40s linear infinite;
}

/* Move it (define the animation) */
@-moz-keyframes scroll-left {
	0%   { -moz-transform: translateX(100%); }
	100% { -moz-transform: translateX(-100%); }
}

@-webkit-keyframes scroll-left {
	0%   { -webkit-transform: translateX(100%); }
	100% { -webkit-transform: translateX(-100%); }
}

@keyframes scroll-left {
	0%   { 
	-moz-transform: translateX(100%); /* Browser bug fix */
	-webkit-transform: translateX(100%); /* Browser bug fix */
	transform: translateX(100%); 		
	}
 
	100% { 
	-moz-transform: translateX(-100%); /* Browser bug fix */
	-webkit-transform: translateX(-100%); /* Browser bug fix */
	transform: translateX(-100%); 
	}
}

body {
	background-color: #18779b;
	font-family: sans-serif;
	margin: 0;
}

header{
	background-color: #fff;
	padding-top: 10px;
	text-align: center;
}
header h1 {
	font-size: 3em;
	margin-top: 0;
	padding-bottom: 4px;
}

#mainapp {
	margin: auto;
	width: 890px;
	color: #fff;
}

h2 {
	text-align: center;
	font-size: 1.75em;
}

#alerts {
	display: flex;
	justify-content: space-between;
}

#alerts img {
	width: 48px;
	height: 48px;
}

/*#updates {
	margin-left: 33px;
}*/

#updates a, #messages a {
	color: #fff;
}

#updates a:hover, #messages a:hover {
	color: #eda68c;
}

#updates a:active {
	color: #0f419a;
}

#updates img {
	float: left;
}

#updates div {
	padding: 15px 0 0 60px;
}

#messages {
	margin-right: 39px;
}

#messages img {
	float: right;
}

#messages div {
	display: inline-block;
	padding: 15px 13px 0 0;
}

#launchers {
	clear: both;
	width: 866px;
	margin-left: auto;
	margin-right: auto;
}

.applaunch {
	width: 174px;
	height: 212px;
	text-align: center;
	float: left;
	margin: 21px;
}

.applaunch img {
	width: 108px;
	height: 108px;
	padding-top: 31px;
}

.applaunch span {
	font-size: 1.3em;
}

.appbutton {
	position: relative;
	width: 170px;
	height: 170px;
	font-size: 2em;
}

.appbutton a, .appbutton:visited a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-decoration: none;
	color: blue;
    background-color: #eac375; 
}

.appbutton:hover a {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	background-color: #876007;
}

.appbutton:active a {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	background-color: #0f419a;
}

#clienturl {
	margin: 60% auto 0 auto;
	width: 536px;
	height: 50px;
	color: #000;
	background-color: #fff;
}

#urldesc {
	width: 125px;
	margin-top: 11px;
	margin-left: 5px;
	padding-top: 3px;
	border: 3px solid #04225c;
	color: #fff;
	background-color: #18779b;
	text-align: center;
	font-weight: bold;
	float: left;
}

#fullurl {
	padding-top: 14px;
	padding-left: 150px;
	font-weight: bold;
}

ul {
	text-align: left;
	font-size: 1.3em;
}