@charset "UTF-8";
/* 
Filename: Project 4
Author: Charls Sebastian
Description: 
*/

/* 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 {
	/*set font sizing*/
	font-size: 11px;
	/*white color with full opacity*/
	background-color: rgba(255, 255, 255, 1); 
	/*dark gray text color */
	color: rgba(51, 51, 51, 1); 
}

p {
	/*Add 5 pixels of top margin*/
	margin-top: 5px; 
	/*Add 5 pixels of bottom margin*/
	margin-bottom: 5px; 
	/*Indent the first line of text by 5 pixels*/
	text-indent: 5px; 
}

/* header */
#header {
	/*Set background color to white*/
background-color: rgba(255, 255, 255, 1); 
/*Apply border to bottom*/
  border-bottom: 1px solid rgba(0, 0, 0, 0.75); 
  /*Set background image*/
  background-image: url(images/vangoghbanner.jpg); 
  /*Do not repeat background image*/
  background-repeat: no-repeat; 
  /*Set background position to center*/
  background-position: center; 
  /*Set height to 100 pixels*/
  height: 100px; 
}

 
/* side bar */
#sidenav {
	width: 220px;
	float: left;
	margin-left: -1px;
	padding: 5px;
}

#sidebar h3 {
	/*Set background color to light gray*/
	background-color: rgba(204, 204, 204, 1); 
	/*Apply padding of 5 pixels on all sides*/
	padding: 5px; 
	/*Set right margin to 5 pixels*/
	margin-right: 5px; 
  }

/* side bar navigation */
.navigation {
	/* Float left */
	float: left; 
	/*Set display to block*/
	display: block; 
	/*Set overflow to hidden*/
	overflow: hidden; 
	/*Set width to 220 pixels*/
	width: 220px; 
  }

/* css sprites */
/*style rule with two classes named woa and menu*/
.woa .menu {
	/*set display to block and apply relative positioning*/
	display: block;
	position: relative;
	/*set height to auto and width to 220 pixels*/
	height: auto;
	width: 220px;
	/*set background color to black and cursor style to pointer*/
	background-color: rgba(0,0,0,1);
	cursor: pointer;
	/*set padding on top to 5 pixels and set other sides to zero*/
	padding: 5px 0 0 0;
	/*set text color to white*/
	color: rgba(255,255,255,1);
  }
  
  /*style the list item for the woa and menu classes*/
  .woa .menu li {
	/*bold the font and add padding of 5 pixels on all four sides*/
	font-weight: bold;
	padding: 5px;
	/*apply a margin of 5 pixels to the top and zero on the other sides*/
	margin: 5px 0 0 0;
  }
  
  /*style the unordered list for the woa class*/
  .woa ul {
	/*set the list style to none and set all margins to zero*/
	list-style: none;
	margin: 0;
  }
/*Style for dropdown menu*/
  .drop {
	display: block;
	/*Set background color to light gray*/
	background-color: rgba(175,175,175,1);
	/*Apply relative positioning*/
	position: relative;
	/*set width property*/
	width: auto;
  }
/*Style for menu and drop list items*/
.menu li.drop,
.drop li {
font-weight: normal;
margin: 0;
padding: 0;
border-top: 1px solid rgba(204,204,204,1);
background: transparent url("images/nav_pointer.png") no-repeat right 0;
}

/*navigation link styles */
/*anchor tag style rule for the menu class*/
.menu a {
	display: block;
	text-decoration: none;
	padding: 10px;
	width: 100%;
	height: 100%;
	}
/*Style for the menu a:link and menu a:visited pseudo-classes*/
.menu a:link,
.menu a:visited {
color: rgba(0,0,0,1);
}
/*Style for the menu a:hover pseudo-class*/
.menu a:hover {
	color: rgba(255,255,255,1);
	}
/* tyle for the menu a:active pseudo-class*/
.menu a:active {
	color: rgba(0,102,153,1);
	}
/*Style for list item hover pseudo-class of the menu and drop classes*/
.menu li:hover,
.drop li:hover {
background-color: rgba(102,102,102,1);
background-position: right -100px;
}
/*Style for list item active pseudo-class of the menu and drop classes*/
.menu li:active,
.drop li:active {
background-color: rgba(204,204,204,1);
background-position: right -200px;
}

/*content area */	
#content h2 {
	/*set text color to blue*/
	color: rgba(51,102,153,1); 
	/*set top margin to 0 pixels*/
	margin-top: 0; 
  }

#content {
	padding: 10px;
	margin-left: 230px;
	/*black with 75% opacity*/
	border-left: 1px solid rgba(0,0,0,.75); 
}
/*Style for self-portraits*/
.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;
  }
/*Hover style for self-portrait images*/
.selfportraits:hover {
	background-position: 0 0;
	float: left;
	margin: 0 5px 5px 0;
	cursor: help;
	}
/*Style for blockquote selector within content ID*/
#content blockquote {
		display: inline-block;
		color: rgba(0,0,0,1);
		font-style: italic;
		line-height: 1.5em;
		padding: 5px;
	  }
/*Style for blockquote with first letter*/
#content blockquote:first-letter {
	font-size: x-large;
	color: rgba(51,102,153,1);
	}
/*table with portraits*/
/* HTML table selector */
table {
	/*display the caption on the top*/
	caption-side: top; 
	/*set the display to inline-table*/
	display: inline-table; 
	/*set the background color to a shade of gray*/
	background-color: rgba(204,204,204,1); 
	/*apply a 1 pixel solid black borde */
	border: 1px solid rgba(0,0,0,1); 
	/*collapse the borders*/
	border-collapse: collapse; 
	/*set the font color to black with a 75% opacity*/
	color: rgba(0,0,0,0.75);
	/*add a box shadow with a 2 pixel x and y offset, a 4 pixel blur and a color of rgba(51,51,51,1)*/
	box-shadow: 2px 2px 4px rgba(51,51,51,1); 
  }
  
  /* HTML table cell selector */
  td {
	/*align the text to the left*/
	text-align: left; 
	/*add a padding of 10 pixels on all four sides*/
	padding: 10px; 
  }
/*Defines a class for caption text */
.captiontext {
	/*Sets font color to a shade of blue*/
	color: rgba(51, 102, 153, 1); 
	/*Sets top, right, bottom, left padding*/
	padding: 3px 3px 7px 3px; 
	/*Sets font size*/
	font-size: 12px;
	/*Sets font to bold*/
	font-weight: bold; 
  }
  /*HTML image selector*/
  img {
	/*Applies a 1 pixel solid black border using the rgba color value for black*/
	border: 1px solid rgba(0,0,0,1);
	/*Sets the float property to left*/
	float: left;
	/*Sets the top margin to 0 and the remaining sides to 5 pixels*/
	margin: 0 5px 5px 5px;
	/*Sets the opacity to 60%*/
	opacity: 0.6;
  }
  /* Hover pseudo-class for image selector */
img:hover {
	opacity: 1;
  }
/* footer area */	
#footer {
	/*Set text color to black with 100% opacity*/
	color: rgba(0, 0, 0, 1);
	/*Create a 1 pixel solid black top border with 75% opacity*/
	border-top: 1px solid rgba(0, 0, 0, 0.75);
	/*Set font size to 9 pixels*/
	font-size: 9px;
	/*Italicize the font*/
	font-style: italic;
	/*Clear both sides of the footer*/
	clear: both;
	/*Apply padding: 2px top, 10px right, 0 bottom, 0 left*/
	padding: 2px 10px 0 0;
  }
/* 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 */
/*Anchor selector*/
a {
	text-decoration: none;
  }
  
  /*Link pseudo-class*/
  a:link {
	color: rgba(0, 0, 0, 1);
	text-decoration: underline;
  }
  
  /*Visited pseudo-class*/
  a:visited {
	color: rgba(204, 0, 0, 1);
	text-decoration: underline;
  }
  
  /*Hover pseudo-class*/
  a:hover {
	color: rgba(204, 0, 0, 1);
	text-decoration: none;
  }
/* active pseudo-class for the anchor tag */
a:active {
	color: rgba(0, 0, 0, 1); 
	text-decoration: underline; 
  }