/*
  
   TLC Pomskies
   Author:  Lori Connolly
   Date:  March 25, 2016

   Stork Page Style Sheet

   Filename:  Stork.css
   Supporting Files: 

*/


/* Display HTML5 structural elements as blocks */

article, aside, figure, figcaption, footer, hgroup, header, 
section, nav {
   display: block;
}


/* Set the default page element styles */

body {
   margin-left: 10px;
   width: 95%
   min-width: 1400px;
   max-width: 1000px;
   font-family: Verdana, Geneva, sans-serif;
   background: url(PawPrint.jpg)
	            bottom left
	            repeat;
   
}


/* Setting the header logo and picture */
   
header {
   margi-top: 15px;
   width: 100%;
	margin-top: 15px;
	background-image: url("Andi_Wolfie2.jpg"); 
	background-position: right top;
	background-repeat: no-repeat;
	background-size: 330px 308px;

}

header > h1 {
   position: relative;
   top: 0px;
   right: 0px;
   left: 50px;
   text-align: center;
   font-size: 30px;
   letter-spacing: 0.10em;
   font-family: 'Times New Roman', serif;
   background: blue
   color: white;
   
}


header img {
   width: 70%;
}

/* Navigation lists */
/*Removing padding on the unordered list for the horizontal nav bar*/
nav#navbar ul {
	padding: 0px;
}

/*Setting color for nav bar links to Gray and text to Red, and removing the underline*/
nav#navbar a {
	text-decoration:none;
	color:blue;
	background-color: #dddddd;
}

/*Changes the background on navigation bar links upon hovering to black & red to match logo styling*/
nav#navbar a:hover {
	background-color: red;
	color: white;
}

/*Sets the position and display properties for the list items in the navigation bar*/
nav#navbar li {
	position:relative;
	display:inline-block;
	min-width:125px;
	box-shadow:0px 8px 10px 0px blue;
}

/*Sets default for secondary ".dropdown" list items in the nav bar to not be 
displayed*/
nav#navbar li .dropdown {
	display:none;
	position:absolute;
}

/*Displaying dropdown list elements on hover, adds same paw prints as background*/
nav#navbar li:hover .dropdown {
	background: url("light paw prints.jpg");
	display:block;
}

/*Setting border, size, and location for article links nav item*/
nav#articlelinks {
	border: 2px ridge rgb(135, 119, 0);
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius:25px;
	width: 25%;
	margin-top: 5px;
	padding:4px;
	display:inline-block;
	clear:right;
	}


/* Styles for the Time Clock */

div#date {
   position: absolute;
   top: 300px;
   left: 1025px;

}

div#date h2 {
   color: blue;
   font-size: 1.3em;
   font-weight: bold;
   letter-spacing: 0.1em;
   text-shadow: black 1px 1px;
}

div#date input {
   position: absolute;
   color: white;
   background-color: blue;
   padding: 5px 25px 5px 25px;
   width: 80px;
   font-size: 1.1em;
   font-family: 'Trebuchet MS', Helvetica, sans-serif;
   text-align; left;
   font-weight; normal;
   border-width: 2px;

   -moz-border-radius: 15px;
   -webkit-border-radius: 15px;
    border-radius: 15px;
}

input#dateNow {
   top: 50px;
}

input#timeNow {
   top: 90px;
   
}



/* Styles for the "Anticipated Stork Arrival" Clock */

div#countdown {
   position: absolute;
   bottom: 70px;
   right: 20px;
}

div#countdown h2 {
   color: red;
   text-align: center;
   padding: 0px 0px 0px 5px;
   font-size: 1.3em;
   letter-spacing: 0.1em;
   text-shadow: black 1px 1px;
}

div#countdown input {
   
   position: absolute;
   right: 10px;
   background-color: blue;
   color: white;
   padding: 5px 25px 5px 5px;
   width: 120px;
   font-size: 1.1em;
   font-family: 'Trebuchet MS', Helvetica, sans-serif;
   font-weight; normal;
   text-align: right;
   border-width: 2px;

   -moz-border-radius: 15px;
   -webkit-border-radius: 15px;
    border-radius: 15px;
}

input#daysLeft {
   top: 120px;
}

input#hrsLeft {
   top: 180px;
}



/* Vertical navigation style for Links to Proud Parents */


nav.vertical {
   float: left;
   width: 32%;
   margin-top: 0px;
   height: 400px;
   background-color: blue;
  
}

nav.vertical h1 {
   color: white;
   font-size: 1.35em;
   letter-spacing: 3px;
   text-align: center;
   padding: 5px;
   margin: 0px 0px 0px 0px;
   background-color: blue;
}
nav.vertical ul {
   list-style: block;
}
nav.vertical ul li {
   font-size: 0.70em;
   letter-spacing: 1px;
}
nav.vertical ul li a {
   display: block;
   padding-left:0px;
   height: 52px;
   
   width: auto;
   color: white;
}
nav.vertical ul li a:hover {
   background-color: red;
}


/* Middle section style for open discussion area */

section#middle {
   float: left;
   height: 400px;
   width: 35%;
   margin-top: 0px; 
}

section p {
   text-align: justify;
   margin: 10px 20px 20px 20px;
}

/* Right section style_stork picture */

section#right {
   float: left;
   height: 400px;
   width: 32%;
   margin-top: 0px;
   background-color: blue;
   
}



/* Setting style for the footer */

footer {
	display: block;
	width: 100%;
	clear: left;
	margin-top: 30px;
	font-size: 0.9em;
	text-decoration: small-caps;
	text-align: center;
	color: rgb(175, 122, 122);
	border-top: 1px solid rgb(175, 122, 122);
   }

