/*
   
   TLC Pomskies
   Author: Lori Connolly
   Date:   March 22, 2016

   Filename:         TLCPomsgeneric.css
   Supporting Files: 

*/

/*Setting the header logo and picture*/

header{
	margin-left:18px;
	width: 98%;
	margin-top: 15px;
	background-image: url("Andi_puppy.jpg"); 
	background-position: right top;
	background-repeat: no-repeat;
	background-size: 325px;
	

}

/*Setting general margin size, page width, font, and background*/

body {
	margin-left:20px;
	width: 95%;
	min-width 1000px;	
	max-width: 1400px;
	font-family: Verdana, Geneva, sans-serif;
	background-color: #ddddee;
	background: url("light paw prints.jpg")
	            
			  bottom left
	            repeat;
}

/*Adjusting font size of h2 headings*/
h2 {
	font-size:18px;
	
}

/*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;
	}

/*Defining size, loaction, and margins for the main section*/
section {
	width:70%;
	display: block;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

/*Changing the background and separating articles so they stand out*/
article {
	background-color: blue;
	color: white;
	margin-top: 20px;
	padding: 10px;
		            
}

/*Defining a standard size and location for article images*/
article img {
	float:right;
	height:120px;
}


	


/*Setting style for the footer*/
footer {
	display: block;
	width: 100%;
	clear: left;
	margin-top: 30px;
	font-size: 0.9em;
	font: normal small-caps;
	text-align: center;
	color: blue;
	border-top: 1px solid blue;
}