body { 
	font-family: calibri, arial, sans-serif;
	width: 600px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}

a {
	color: #72c259;
	text-decoration: none;
}

a:hover { /* when you hover over link, switches to another color*/
	color: #fa7fa6;
}
	
img {
	float: left;
	height: 200px;
	width: 200px;
}

#note {
	float: left;
	margin: 7px;
}

.preview { /*name of the first div*/ /*div id=# || div class=. */
	float: right;
	width: 390px;
}

h6 {
	font-size: 36px;
	line-height: 36px; /*space between lines*/
	margin-top: 0px;
	margin-bottom: 0px;
}

.push {
	float: right;
	font-size: 14px;
}

.info_box {
	background-color: #e1eef5;
	color: #000000;
	padding: 0px;
	float: left;
	font-size: 14px;
}

.info_box a {
	color: #72c259;
	text-decoration: none;
	font-style: italic;
	font-size: 14px;
}

.link {
	padding: 0px;
	margin-top: 0px;
}

.link a  {
	font-style: italic;
	font-size: 14px;
}

.link li:after { /*goes to link, looks specifilcy after li (list) and places backslashes behind the words*/
	content: '\\'; /*puts a backslash behind each link you have; YOU NEED TO HAVE 2*/
	padding-left: 3px;
	padding-right: 3px;
	color: #000000;   /*color of the backslash*/
}

.link li:last-child:after { /*the last child is contact*/
	content: none;  /*the backslash behind contact is gone now*/
}

ul li { /*looking at the whole unorderd list*/
	display: inline;  /*inline pushes it into 1 line; display: the way it looks*/
}

.text {
	clear: both; /*makes both of the text go back to normal*/
	color: #000000;
	font-size: 15px;
	line-height: 20px;
}











