<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('http://fonts.googleapis.com/css?family=Open+Sans:400,700');

html{
	background-color: #FFF;
}

body{
	font:14px/1.5 Arial, Helvetica, sans-serif;
	padding:0;
	margin:0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.immweb-hdr {
	background-color: #292c2f;
	box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15);
	padding: 20px 40px;
	height: 80px;
	box-sizing: border-box;
    margin-bottom: -80px;
    z-index: 100;
}

.immweb-hdr .header-limiter {
	max-width: 1200px;
	text-align: center;
	margin: 0 auto;
}

/* Logo */

.immweb-hdr .header-limiter h1 {
	float: left;
	font: normal 28px Cookie, Arial, Helvetica, sans-serif;
	line-height: 40px;
	margin: 0;
}

.immweb-hdr .header-limiter h1 span {
	color: #5383d3;
}

/* The header links */

.immweb-hdr .header-limiter a {
	color: #ffffff;
	text-decoration: none;
}

.immweb-hdr .header-limiter nav{	
	line-height: 40px;
	float: right;
    font:16px Arial, Helvetica, sans-serif;
}

.immweb-hdr .header-limiter nav a{
	display: inline-block;
	padding: 0 5px;
	text-decoration:none;
	color: #ffffff;
	font-size: 18px;
	opacity: 0.9;
}

.immweb-hdr .header-limiter nav a:hover{
	opacity: 1;
    background-color: #05522e;
}

.immweb-hdr .header-limiter nav a.selected {
	color: #009850;
	pointer-events: none;
	opacity: 1;
    font-weight: bold;
}

#iplogo {
    animation-name: ShineAnimation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.12,.89,.98,.47);
}

main {
    flex: 1;
    height: 100%;
}

.content-inside {
    box-sizing: border-box;
    background-attachment:scroll;
    background-position:center;
    background-size: auto;
    background-image: url(../img/pics/20180407175125.jpg);
    margin-top: 80px;
    margin-bottom: 25px;
    overflow-y: auto;
}

.footer {
  height: 25px;
  margin-top: -25px;
  background-color: #05522e;
  color: #FFF;
  vertical-align: middle;
  line-height: 18px;
  padding: 3px;
  box-sizing: border-box;
  text-align: center;
  z-index: 100;
}

footer a {
    text-decoration: none;
    color: #FFF;
}

.footer img {
    vertical-align: text-bottom;
}

.footer img:hover {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake 0.75s; 
    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
}

/* For the headers to look good, be sure to reset the margin and padding of the body */

body {
	margin:0;
	padding:0;
}

@media all and (max-width:825px){
	
    .immweb {
        padding: 0;
        font-size: 12px;
    }
    .header-limiter nav, .header-limiter h1 {
        display:inline-block;
        background-color: #05522e;
        width: 100%;
	}
}

/* Making all responsive */

@media all and (max-width: 600px) {

	.immweb {
		padding: 20px 0;
		height: 75px;
        box-sizing: border-box;
	}

	.immweb .header-limiter h1 {
		float: none;
		margin: -8px 0 10px;
		text-align: center;		
		line-height: 1;
	}

	.immweb .header-limiter nav {
		line-height: 1;
		float:none;
	}

	.immweb .header-limiter nav a {
		font-size: 10px;
	}

    .footer {
        font-size: 8px;
    }    
}</pre></body></html>