/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/*generic *body*/

body{
	text-align: center;
	color: #FFF; 
  font-family: "Archivo", sans-serif;
    background: #3E2F5B; 

font-style: normal;	font-size: 12px; 
}

body a{
  color: #fff;
}

#wrapper{
		width: 900px; 
		margin: 0 auto;
		color: #fff; 
}



/*header*/

header{
  width: 100%;
}

/*splash*/

#splash img {
  display: block;
  margin: auto;
  margin-top: 5%;
  width: 60%;
}


/*sidebar styles*/

#sidebar{
	margin-top: 20px;
	width: 230px;
	float: right;
	color: #fff;
	text-align: right;
	border-left: 1px solid #DABFFF;
	padding-left: 10px;
}

#sidebar h2{
  text-align: right;
}
  

#sidebar p {
	color: #fff;
	padding: 4px;
	text-align: right;
}

#sidebar a {
	color: #fff; 
}

#sidebar a:hover{
	color: #000; 
	font-weight: bold;
	}

#sidebar img{
	border: 0;
	padding-top: 70px;
}

#sidebar .bottom img{
vertical-align: bottom;
}

/*content styles*/

#content{
	width: 630px; 
	float: left;
	margin-top: 20px;
	color: #fff; 
}

#content p{
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
}

#content img{
	margin-left: 2px;
	padding-left: 5px; 
	border: 0;
}

img.floatleft{
	float: left;
	margin: 10px 10px 10px 10px;
	padding: 4px; 
	border: 1px solid #fff; 
}

img.floatright{
	float: right;
	margin: 10px 10px 10px 10px;
	padding: 4px; 
	border: 1px solid #fff; 
}

#content a{
	color: #000; background: #fff; 
	font-weight: bold;
	text-decoration: none;
}

#content a:hover{
	color: #fff; background: #fff; 
	text-decoration: underline; 
}

#content ul{
  text-align: left;
}

#content h1, h2, h3{
  text-align: left;
}

/* footer*/

#footer{
  clear: both;
  width: 900px;
  text-align: center;
  border-top: 1px solid #DABFFF;
  }



