@charset "UTF-8";
/* 
Filename: Project 4
Author: Rachel Lincoln	
Description: Using CSS resets, nav bars, and blockquotes. 
*/

/* CSS simple reset minified */	
/* #1.1 -1 Create a Universal style rule*/
*{
	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 */
/*1.0 - #5 - Adding body selector and styling*/
body{
	font-size: 11px;
	background-color: rgba(250,250,250,1);
}

/*1.0 - #6 - Adding Paragraph Selector and styling*/
p{
	margin-top: 5px;
	margin-bottom: 5px;
	text-indent: 5px;

}

/* header */
/* 1.2 - #1 & #2 - Adding header styling to header ID*/
#header{
	background-color: rgba(250,250,250,1);
	border-bottom: 1px solid rgba(0,0,0,.75);
	background-image: url(images/vangoghbanner.jpg);
	background-repeat: no-repeat;
	background-position: center;
	height:100px;
}

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

/*1.2 - 1 - Setting up h3 descendent of side bar*/
#sidebar h3{
	background-color: rgba(204,204,204,1);
	padding:5px;
	margin-right: 5px;
}

/* side bar navigation */
/* 1.3 -#1 -#2 making a class for navigation*/
.navigation{
	float:left;
	display: block;
	overflow: hidden;
	width:220px;
}


/* css sprites */
/*1.3 -#1-#2 */
.woa .menu{
	display:block;
	position: relative;
	height:auto;
	width:220px;
	background-color: rgba(0,0,0,1);
	cursor:pointer;
	padding:5px 0px 0px 0px;
	color: rgba(250,250,250,1);
}

/* 1.3- #4 - Adding list items for woa menu*/
.woa .menu li{
	font-weight: bold;
	padding:5px;
	margin:5px;
}

/* 1.3 - #5 Adding unordered list for woa*/
.woa ul{
	list-style: none;
	margin:0px;
}

/* 1.3 - #6 - Adding drop class*/
.drop{
	display: block;
	background-color: rgba(175,175,175,1);
	position: relative;
	width:auto;
}

/* 1.3 - #7 - Adding list items for menu and drop classes*/
.menu, .drop li{
	font-weight: normal;
	margin:0px;
	padding:0px;
	border:1px solid rgba(204,204,204,1);
	background: transparent url(images/nav_pointer.png) no-repeat right 0px;
}

/* navigation link styles */
/*1.3 - #1,#2,#3 setting psuedo classes and a tags */

.menu a{
	display: block;
	text-decoration: none;
	padding:10px;
	width:100%;
	height:100%;
}
/* 1.3 -#4 - setting link and visted styling - - -  !!!!check combining!!!!*/
.menu a:link, .menu a:visited{
	color: rgba(0,0,0,1);
}

/*1.3 - #5 - setting hover on menu class*/
.menu a:hover{
	color: rgba(255,255,255,1);
}

/*1.3 - #6 - Setting active on menu class*/
.menu a:active{
	color: rgba( 0,102,153,1);
}

/*1.3 - #7 - setting list item hover of menu and drop*/
.menu .drop li:hover{
	background-color: rgba(102,102,102,1);
	background-position:right -100px;
}

/*1.2- #8 - setting style rule for list items active for menu and drop*/
.menu .drop li:active{
	background-color: rgba( 204,204,204,1);
	background-position: right -200px;
}


/* content area */	

#content {
	padding: 10px;
	margin-left: 230px;
	border-left: 1px solid rgba(0,0,0,.75); /* black with 75% opacity */
}

/*1.4 #1 - adding h2 with content ID*/
#content h2{
	color: rgba(51,102,153,1);
	margin-top: 0px;
}

/*1.4 - #1 #2  adding self portraits class and styling*/
.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;
}

/*1.4 - #3 adding hover pseudo-class and styling*/
.selfportraits a:hover{
	background-position: 0.0;
	float: left;
	margin: 0px 5px 5px 5px;
	cursor:help;
}

/*1.4 #1 - Adding blockquote tag and styling  within content id*/
#content blockquote{
	display:inline-block;
	color: rgba(0,0,0,1);
	font-style: italic;
	height:1.5em;
	padding: 5px;
}
/*1.4 #2 - Adding stylign for the first letter of content in blockquote */
#content blockquote::first-letter{
	font-size: x-large;
	color: rgba(51,102,151,1);
}


/* table with portraits */
/*1.5 - #1 #2 - adding table selector and styling*/
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);
}

/*1.5 - #3 - adding html table ceel selector and styling */
td{
	text-align: left;
	padding:10px;
}

/*1.5 #4 - Adding class capitontext and styling it*/
.captiontext{
	color: rgba(51,102,153,1);
	padding: 3px 3px 7px 3px;
	font-size: 12px;
	font-weight: bold;
}

/*1.5 #1 - Adding image selector with styling*/
img{
	border:1px solid rgba(0,0,0,1);
	float:left;
	margin:0px 5px 5px 5px;
	opacity: 0.6;
}

/*1.5 #2 - Add pseudo class to image and style !!!!!!double check later*/
img:hover{
	opacity: 1;
}


/* footer area */	
/*1.6 #1 - iadding footer ID and styling */
#footer{
	color: rgba(0,0,0,1);
	border: 1px solid rgba(0,0,0,.75);
	font-size: 9px;
	clear: both;
	padding: 2px 10px 0px 0px;
}

/* 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 */
/*1.7 #1 - #6 - applying default link styles */
a{
	text-decoration: none;
}

a:link{
	color: rgba(0,0,0,1);
	text-decoration: underline;
}

a:visited{
	color: rgba(204,0,0,1);
	text-decoration: underline;
}

a:hover{
	color: rgba(204,0,0,1);
	text-decoration: none;
}

a:active{
	color: rgba(0,0,0,1);
	text-decoration: underline;
}