/*
Copyright 2015 Peter Gosling

*/
/* 
    Created on : 23-Jan-2015, 12:22:23
    Author     : Peter
*/
@charset "utf-8";
/* Display HTML5 structural elements as blocks */
header, section, aside, footer, nav, article, main {
   display: block;
}

/* Default styles */
* {
   padding: 0px;
   margin: 0px;
}
/* Body styles */
body {
	background-color: grey;
	font-family: Verdana, Geneva, sans-serif;
	
}

/* Styles for the Web page container */
main {
    
	background: gray;
	margin: 0px auto;
        position:absolute;
	width: 1200px;
        left:10em;
        top: 0;
        bottom: 0;
       
        
}



/* Styles for the page header */
header.logo  {
    background-color: grey;
    width: 100%;
}

 header.logo img {
    display: block;
    margin: 0px auto;
    border-radius: 1em;
    width:99%;
    
    
}

/* Styles for the horizontal navigation list */
nav {
	height: 4em;
	background-color: silver;
	width: 97%;
        padding: 1em;
        border-radius: 1em;
        margin-top: 1em;
        
}

nav li {
	background-color: silver;
	font-size: 1.5em;
	float: left;
	display: block;
	height: 2em;
	line-height: 2em;
	margin: 0px 5px;
	text-align: center;
	width: 6em;
}

nav li a.nLink {
	background-color: #0800ff;
	-moz-border-radius: 3em / 2.5em;
	-webkit-border-radius: 3em 2.5em;
	border-radius: 3em/2.5em;
	color: white;
	display: block;
	text-decoration: none;
}

nav li a.aLink {
	background-color: black;
	-moz-border-radius: 3em / 2.5em;
	-webkit-border-radius: 3em 2.5em;
	border-radius: 3em/2.5em;
	color: white;
	display: block;
	text-decoration: none;
}

nav li a:hover {
	background-color: #f2db0c;
	color: black;
}

/* Styles for the right sidebar  */
aside {
    position: relative;
    
    background-color: silver;
    float: left;
    width: 22%;
    height: 70%;
       
    border-radius: 1em;
    padding: 0.5em;
    margin-top: 1em;
  
}


/* Styles for the Section */
section {
    background-color: silver;
    float: right;
    border-radius: 1em;
    padding: 2em;
    margin-top: 1em;
    width: 70%;
    overflow: auto;
}



/* Styles for Articles */
article {
    float: left;
    width: 95%;
    padding-left: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
}

article h2 {
    text-align: center;
    color: red;
    font-style: italic;
    font-size: 1.5em;
    text-decoration: underline;
}   


/* Styles for the page footer */
footer {
	clear: left;
        
}

footer address {
	border-top: 1px dashed blue;
	color: #00F;
	font-size: 1em;
	font-style: normal;
	text-align: center;
	margin-top: 2.5em;
	padding-bottom: 1em;
        padding-top: 1em;
}

table
{
    border: 1px;
    
}

td
{
    padding-left: 10px;
    padding-right: 5px;
}

.animal 
{
    position: relative;
    width:25%;
    border: .5em red solid;
    border-radius: 3em;
    margin-left: auto;
    margin-right: auto;
}

.formInput
{
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}