/* ---------------------------------------------------------
   HTML5 Bones
   This stylesheet contains print styling and a section for 
   you to simply add your own. This is a basic template 
   after all.
   ---------------------------------------------------------*/
	html, body {
	 min-height: 100%
	}
	/* Default link styling */
	a:link { color:white; }
	a:visited { color:grey; }
	a:hover, a:focus { color:grey; }
	a:active { color:#fb0e02; }
	
	
	
/* ---------------------------------------------------------
   Author's styles
   ---------------------------------------------------------*/
	body {
   	background: rgba(43,145,240,1);
	background: -moz-linear-gradient(top, rgba(43,145,240,1) 0%, rgba(0,50,77,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(43,145,240,1)), color-stop(100%, rgba(0,50,77,1)));
	background: -webkit-linear-gradient(top, rgba(43,145,240,1) 0%, rgba(0,50,77,1) 100%);
	background: -o-linear-gradient(top, rgba(43,145,240,1) 0%, rgba(0,50,77,1) 100%);
	background: -ms-linear-gradient(top, rgba(43,145,240,1) 0%, rgba(0,50,77,1) 100%);
	background: linear-gradient(to bottom, rgba(43,145,240,1) 0%, rgba(0,50,77,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b91f0', endColorstr='#00324d', GradientType=0 );
	color: white;
	text-align: center;
	}

	.wrapper{
		height: 95%;
	}

	.logo{
		max-width: 80%;
		padding-top: 10em;
	}
	
	#info{
		display: block;
		padding: 10px;
		margin: 0 50px;
	}
	
/* ---------------------------------------------------------
   Print styles
   ---------------------------------------------------------*/
@media print {
    * {
        color:#000 !important;
        box-shadow:none !important;
        text-shadow:none !important;
		background:transparent !important;
    }
	html { background-color:#fff; }
	/* Hide navigation */
	nav { display:none; }

	/* Show link destinations in brackets after the link text */
	a[href]:after { content: " (" attr(href) ") "; }
	a[href] {
		font-weight:bold;
		text-decoration:underline;
		color:#06c;
		border:none;
	}
	/* Don't show link destinations for JavaScript or internal links */ 
	a[href^="javascript:"]:after, a[href^="#"]:after { content:""; }
	
	/* Show abbr title value in brackets after the text */
	abbr[title]:after { content: " (" attr(title) ")"; }

	figure { 
		margin-bottom:1em; 
		overflow:hidden;
	}

	figure img { border:1px solid #000; }
}