html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body, html {
	margin: 0;
	padding: 0;

	font-size: 12px;
	font-family: 'Droid Sans', sans-serif;
}

a {
	text-decoration: none;
}

.container {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

#header {
	border-bottom: 2px solid #eff1f1;
}

#header .container {
	height: 55px;
	border-left: 2px solid #eff1f1;	
	border-right: 2px solid #eff1f1;	
}

#header .logobox {
	display: block;
	height: 54px;
	width: 242px;
	opacity: 1;
	position: relative;
	background-image: url(../images/codanoTopNav.png);
	background-repeat: no-repeat;
	overflow: hidden;
	-webkit-transition: opacity .5s, height .5s, background .5s;
	-moz-transition: opacity .5s, height .5s, background .5s;
	-o-transition: opacity .5s, height .5s, background .5s;
	transition: opacity .5s, height .5s, background .5s;
}

#header .logobox:focus, #header .logobox:hover {
	background-image: url(../images/codanoTopNavPressed.png);
	height: 300px;
}

#header .logobox .popup {
	position: absolute;
	top: 58px;
	height: 120px;
	background-color: rgb(20%,20%,20%);
	font-size: 14px;
	padding: 10px;
	line-height: 30px;
}

#header .logobox .popup a {
	color: white;
	display: block;
	padding-left: 10px;
	width: 212px;
}

#header .logobox .popup li:hover {
	background-color: white;
	color: black;
}

#header .logobox .popup li:hover a {
	color: black;
}

#header .links {
	position: absolute;
	right: 20px;
	top: 30px;
}

#content .gradient {
	position: absolute;
	top: 236px;
	height: 242px;
	width: 100%;
	background-image: url(../images/centerBoxGradient.png);
}

#content .band {
	position: absolute;
	top: 293px;
	height: 242px;
	width: 100%;
	background-color: rgb(230, 227, 227);
}

#content .logo {
	position: absolute;
	top: 135px;
	left: 50%;
	margin-left: -189px;
	background-image: url(../images/logo_large.png);
	width: 377px;
	height: 158px;
}

#content .about {
	position: absolute;
	top: 135px;
	left: 50%;
	margin-left: -99px;
	background-image: url(../images/AboutIcon.png);
	width: 197px;
	height: 195px;
    -webkit-animation: pulsate 1s ease-in-out infinite;
    -moz-animation: pulsate 1s ease-in-out infinite;
    animation: pulsate 1s ease-in-out infinite;
}

@-webkit-keyframes pulsate {
    0% { -webkit-transform: scale(1.0); }
    30% { -webkit-transform: scale(1.0); }
    40% { -webkit-transform: scale(1.05); }
    50% { -webkit-transform: scale(1.025); }
    56% { -webkit-transform: scale(1.075); }
    62% { -webkit-transform: scale(1.0); }
    100% { -webkit-transform: scale(1.0); }
}

@-moz-keyframes pulsate {
    0% { -moz-transform: scale(1.0); }
    30% { -moz-transform: scale(1.0); }
    40% { -moz-transform: scale(1.05); }
    50% { -moz-transform: scale(1.025); }
    56% { -moz-transform: scale(1.075); }
    62% { -moz-transform: scale(1.0); }
    100% { -moz-transform: scale(1.0); }
}

#content .apps {
	position: absolute;
	top: 75px;
	width: 100%;
	text-align: center;
}

#content .apps img {
	padding-right: 20px;
	vertical-align: middle;
	-webkit-transition: -webkit-transform .2s ease-in-out;
	-moz-transition: -moz-transform .2s ease-in-out;
}

#content .apps img:hover {
	-webkit-transform: scale(1.1) rotate(15deg);
	-moz-transform: scale(1.1) rotate(15deg);
}

#content .tagline {
	font-size: 24px;
	color: #888;
	position: relative;
	text-align: center;
	top: 20px;
	width: 100%;
	-webkit-transition: color 1s ease-in-out;
	-moz-transition: color 1s ease-in-out;
	transition: color 1s ease-in-out;
}

#content .tagline:hover {
	color: #333;
}

#content .message {
	position: absolute;
	top: 150px;
	font-size: 18px;
	color: #888;
	position: relative;
	text-align: center;
	width: 100%;
}
