/*You can change the hexidecimal number to change the colors on your nonlinear story.
You can also change the font family, font sizes, font styles, or alignments*/

/*overall style*/
body {
	background: #0D0D0D; /*to change, look up color codes on Kuler or photoshop*/
	font-family: Trebuchet MS (sans-serif); /*to change, look up other font families*/
	width: 60%;
	margin: 0 auto;
}
/*heading style*/
h1 {
	font-family: Trebuchet MS (sans-serif); /*to change, look up other font families*/
	color: #F2F2F2;
	text-align: center;
	font-size: 36px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
}

h4 {
	font-family: Trebuchet MS (sans-serif); /*to change, look up other font families*/
	color: #A6A6A6;
	text-align: center;
	font-size: 20px; /*you can change all font sizes by changing the pixels*/
	font-weight: bold;
}


/*image style*/
img {
	width:800px; /*change width of image*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    border:5px solid #FF0078;
}
/*paragraph style*/
p {
	font-size: 20px;
	text-align: center; /*may change this to left, right or center*/
	/* width: 800px; */ /*changes width of paragraphs*/
	color: #025918; /*change this to the hexidecimal number for the paragraph text color you prefer*/
	/* padding: 5px 10px; */
}
/*unvisited link style*/
a {
	color: #FF0078;
}
/*hovered over link style*/
a:hover {
	color: #5DA6A8;
}
/*visited link style*/
a:visited {
	color: #B2125D;
}
/*list item style*/
li {
	font-size: 16px;
	font-style:italic;
	color: #FF0078;
	}

div {
    margin: 0 auto;
    display:block;
}

object, iframe {
    margin: 0 auto;
    display:block;
    padding-bottom: 40px;
}
