/* ------------------------------------------------------------------------
Annie Jones Stylesheet
Filename:			Annie2019.css
Version:			1.0
Last Change:	Thurs 3 Jan 2019
Author:				Peter Kavanagh (www.TheBeigeVanMan.com)
Description		Default styles to be applied to all pages in the site.

TOC
	HTML selectors
		body
		header
		nav
		figure
		table

Colors	white #FFFFFF
				Black #000000
				Grey  #666666
------------------------------------------------------------------------ */

@charset "UTF-8";
body  {
	font-family: Helvetica, Arial, Verdana, Sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container {
	width: 95%;  /* this will create a container 95% of the browser width */
	background: #FFFFFF;
	margin: auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
}
#nav {
/* Annie - This is the list of work that makes the links to the other pages */
	font-size: 10px;
	margin: 10px 10% 10px;
	background: #FFFFFF;
  text-align: center;
}
header {
	color:#CCC;
	font-size: 30px;
	font-weight: lighter;
	text-align: center;
}

a:link {
	color: silver;
	text-decoration: none;
}
li:hover {
	text-shadow: #000 0 0 0px;
}

a:visited {
	color:  silver;
	text-decoration: none;
}

#mainContent {
	margin: 0 10px;
	font-size:12px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	color: Silver;
}

}
/*Annie - this is the title of the work*/
#title {
	font-size: 16px;
	line-height: 1.5;
	font-weight: bold;
}
/*Annie - this is both the date AND the loccation*/
#date {
	font-size: 10px;
	line-height: 12px;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
}
#description {
	margin:auto;
	text-align:justify;
	max-width: 500px;
	font-size: 10px;
	line-height: 12px;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
}
#figure {
  display: inline;
	overflow: scroll;
}
#table {
	table-layout: auto;
	width: 75%;
	border-spacing: : 8px;
	margin: 40px auto;
}
#materials {
	font-size: 10px;
	text-align: center;
}
