@charset "UTF-8";
/* CSS Document for AIS CCI*/

cursor: pointer;cursor: pointer;cursor: pointer;/* RESET CSS http://meyerweb.com/eric/tools/css/reset/ */
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;
}

/* GENERAL */

body{
	background-color:#ffffff;
	min-height:100vh;
	font-family: 'Roboto', sans-serif;
   /* background-color: rgb(238, 238, 238);*/
    padding: 0px;
        margin: 0px;
}

/* NAV */


nav.navigation{
	position:absolute;
	height:100px;
	background-color:rgb(12, 3, 51); /* main background colour of header */
    background-color:#00376e;
	z-index:2;
    width: 100%;
}

ul.nav-menu, ul.nav-menu li, ul.nav-menu li a{
	float:left;
    font-size: 14px;
}
ul.nav-menu{
	padding-left:10px;
	padding-top: 62px;
}
ul.nav-menu li a{
	height:30px;
	line-height:30px;
	padding:0 10px;
	color:#ffffff;
	text-decoration:none;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
ul.nav-menu li a:hover{
	color: white;
	text-decoration-line: underline;
  text-decoration-style: solid;
    background-color: #4d78a2;
	
}
.nav-toggle{
	display:none;

	position:absolute;
	top:0;
	left:0;
	width:50px;
	height:50px;
	/*background-color:rgb(12,3,51);  background behind hamburger mobile menu */
	cursor:pointer;
}

span.icon-bar{
	position:absolute;
	right:12px;
	display:block;
	width:26px;
	height:3px;
	background-color:#ffffff;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.icon-bar:nth-child(1){
  top:17px;
}
.icon-bar:nth-child(2){
  top:24px;
}
.icon-bar:nth-child(3){
  top:31px;
}


/* ICON BARS ANIMATION */

.nav-toggle.active .icon-bar:nth-child(1){
	top:24px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.nav-toggle.active .icon-bar:nth-child(2){
	width:0;
}
.nav-toggle.active .icon-bar:nth-child(3){
	top:24px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.nav-overlay {
	display: none;
}


#esa_image {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 80px;
		
	}

#cpom_image {
        display: block;
		float: right;
		padding-top: 5px;
        width: 300px;
	}

/* 'CryoSat Thematic Product Viewer' text for desktop*/
#dataportal_text {
  position: absolute;
  color: rgb(255, 255, 255);
  font-family: Lato;
  border-width: 0px;
  opacity: 1;
  background-image: none;
  font-size: 25px;
  left: 220px;
  top: 15px;
    }


@media screen and (min-width:900px){
	
	ul.nav-menu li a{
	
	padding:0 20px;
	
	}
