@charset "UTF-8";
/* 
Filename: site.css
Author: Edith Harvey
Description: External Stylesheet for CSS Project #4 on Vincent Van Gogh 12/6/20
*/

/* CSS simple reset minified */
* {
	margin:0;padding:0;border:0;outline:0;line-height:1.5em;vertical-align:baseline;text-decoration:none;font-family:Arial,Helvetica,sans-serif;list-style:none;
}	

/* body and layout styles */
body {
	font-size: 11px;
	background-color: rgba(255,255,255,1); /* white */
	color: rgba(51,51,51,1); /* dark gray */
}
p {
	margin-top: 5px;
	margin-bottom: 5px;
	text-indent: 5px;
}

/* header */
#header {
	background-color: rgba(255,255,255,1); /* white */
	border-bottom: rgba(0,0,0,.75) 1px solid;
	background: url('images/vangoghbanner.jpg') no-repeat center;
	height: 100px;
}

/* heading 6 style, I like to use with the footer element */
h6 {
     color: rgba(255,255,0,1); /* yellow */
     font-style: italic;
     text-align: center;
     font-size: .75em;
     font-weight: bold;
     /* adding letter, word and line spacing */
     letter-spacing: -.05em;
     word-spacing: .25em;
     line-height: 1em;
     /* adding text case, using text-transform, to uppercase as well */
     text-transform: uppercase;
}
 
/* side bar */
#sidenav {
	width: 220px;
	float: left;
	margin-left: -1px;
	padding: 5px;
}
#sidenav h3 {
	background-color: rgba(204,204,204,1); /* light gray */
	padding: 5px 5px 5px 5px;
	margin-right: 5px;
}
/* side bar navigation */
.navigation {
	float: left;
	display: block;
	overflow: hidden;
	width: 220px;
}
/* END side bar END */

/* css sprites */
/* I put a comma between them, there wasn't a comma in the instructions though */
.woa .menu {
	display: block;
	position: relative;
	height: auto;
	width: 220px;
	background-color: rgba(0,0,0,1); /* black */
	cursor: pointer;
	padding: 5px 0px 0px 0px;
	color: rgba(255,255,255,1); /* white text */
}
.woa li .menu li {
	font-weight: bold;
	padding: 5px 5px 5px 5px; /* padding on all 4 sides of 5 px */
	margin: 5px 0px 0px 0px; /* top margin of 5 px and 0 all other sides */
}
/* All of the woa only class items */
.woa ul {
	list-style: none;
	margin: 0px 0px 0px 0px;
}
/* All of the drop only class items */
.drop {
	display: block;
	background-color: rgba(175,175,175,1); /* light gray */
	position: relative;
	width: auto;
}
/* Menu and drop together */
.menu li .drop li {
	font-weight: normal;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	border-top: rgba(204,204,204,1) 1px solid; /* light gray */
	background: transparent url(images/nav_pointer.png) no-repeat right 0px; 
}
/* END css sprites END */


/* navigation link styles */
.menu a {
	display: block;
	text-decoration: none;
	padding: 10px 10px 10px 10px;
	width: 100%;
	height: 100%;
}
.menu a:link {
	color: rgba(0,0,0,1);
}
.menu a:visited {
	color: rgba(0,0,0,1);
}
.menu a:hover {
	color: rgba(255,255,255,1);
}
.menu a:active {
	color: rgba(0,102,153,1); /* darker blue */
}
.menu .drop li:hover {
	background-color: rgba(102,102,102,1); /* dark gray */
	background-position: right -100px;
}
.menu .drop li:active {
	background-color: rgba(204,204,204,1); /* light gray */
	background-position: right -200px;
}
/* END navigation link styles END */

/* content area */
#content {
	padding: 10px;
	margin-left: 230px;
	border-left: 1px solid rgba(0,0,0,.75); /* black with 75% opacity */
}
#content h2 {
	color: rgba(51,102,153,1); /* shade of blue */
	margin-top: 0px;
}
.selfportraits {
	display: block;
	width: 160px;
	height: 144px;
	background: url(images/selfportraits.jpg) bottom;
	text-indent: -99999px;
	cursor: help;
	float: left;
	margin: 0px 5px 5px 5px;
}
.selfportraits:hover {
	background-position: 0 0;
	float: left;
	margin: 0px 5px 5px 5px;
	cursor: help;
}
#content blockquote {
	display: inline-block;
	color: rgba(0,0,0,1);
	font-style: italic;
	line-height: 1.5em;
	padding: 5px 5px 5px 5px;
}
#content blockquote:first-letter {
	font-size: x-large;
	color: rgba(51,102,153,1);
}
/* END content area END */


/* table with portraits */
table {
	caption-side: top;
	display: inline-table;
	background-color: rgba(204,204,204,1);
	border: 1px solid rgba(0,0,0,1);
	border-collapse: collapse;
	color: rgba(0,0,0,.75);
	box-shadow: 2px 2px 4px rgba(51,51,51,1);
}
td {
	text-align: left;
	padding: 10px
}
.captiontext {
	color: rgba(51,102,153,1);
	padding: 3px 3px 7px 3px;
	font-size: 12px;
	font-weight: bold;
}
img {
	border: 1px solid rgba(0,0,0,1);
	float: left;
	margin: 0px 5px 5px 5px;
	opacity: 0.6; /* 60% */
}
img:hover {
	opacity: 1;
}
/* END table with portraits END */

/* footer area */	
#footer {
	color: rgba(0,0,0,1);
	border-top: rgba(0,0,0,.75) 1px solid;
	font-size: 9px;
	font-style: italic;
	clear: both;
	padding: 2px 10px 0px 0px;
}
.logo {
	border: 0;
	float: none;
}
/* END footer area END */


/* spacer */
.spacer {
	clear: both;
}
/* validation logos hyperlinks */
a.validation_logo:link {
	background-color: #fff;
	text-decoration: none;
}
a.validation_logo:visited {
	background-color: #fff;
	text-decoration: none;
}
a.validation_logo:hover {
	background-color: #fff;
	text-decoration: none;
}
a.validation_logo:active {
	background-color: #fff;
	text-decoration: none;
}
img.validation {
	opacity: 1;
	border: none;
}

/* default link styles */
a {
     text-decoration: none;
}
a:link {
     color: rgba(0,0,0,1);
     text-decoration: underline;
}
/* visited link style */
a:visited {
     color: rgba(204,0,0,1); /* burgundy */
     text-decoration: underline;
}
/* hovering over link style */
a:hover {
     color: rgba(204,0,0,1); /* burgundy */
     text-decoration: none;
}
a:active {
	color: rgba(0,0,0,1);
	text-decoration: underline;
}
/* END default link styles END */

