/* 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." */
*	{
	margin: 0;
	padding: 0;
}

html	{
	height: 100%;
}

#wrapper	{
	width: 900px;
	position: relative;
	margin: 0 auto;
}

#hiddenhead	{
	width: 900px;
	height: 40px;
	margin: 0 auto;
}

.contentbox	{
	background-color: #4c566a;
	margin: 0 auto;
	width: 870px;
	text-align: left;
	padding-bottom: 20px;
	position: relative;
	border: 10px solid #eceff4;
	top: 25px;
	-khtml-border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 2px 8px rgba(0,0,0,.6);
	-moz-box-shadow: 0 2px 8px rgba(0,0,0,.6);
	box-shadow: 0 2px 8px rgba(0,0,0,.6);
}

.contentbox1	{
	background-color: #4c566a;
	margin: 0 auto;
	width: 870px;
	text-align: left;
	padding-bottom: 20px;
	position: relative;
	border: 10px solid #eceff4;
	top: 200px;
	-khtml-border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 2px 8px rgba(0,0,0,.9);
	-moz-box-shadow: 0 2px 8px rgba(0,0,0,.9);
	box-shadow: 0 2px 8px rgba(0,0,0,.9);
}

body {
  height: 100%;
  text-align: center;
  background-color: #2e3440;
  color: #eceff4;
  font-family: 'Noto Sans', sans-serif;
}

p {
 line-height: 1.5;
 margin-top: 0;
}

.text {
	padding: 10px 0 15px;
	text-align: left;
}

.para	{
	text-align: justify;
	padding-bottom: 10px;
	margin-right: 15px;
	margin-left: 15px;
}

a {
  color: #a3be8c;
}

a:link,a:active,a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul  {
  list-style-type: square;
  padding-left: 30px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Aleo', sans-serif;
}

h1  {
  font-size: 30px;
}

h2  {
  font-size: 26px;
}

/* Footer */

.footer	{
	height: 0px;
	margin: 0 auto;
	padding: 10px 0 5px;
	border-top: 1px solid #e5e9f0;
}

.footer p	{
	text-align: center;
	font: 12px 'Noto Sans', sans-serif;
	color: #d8dee9;
	padding-right: 15px;
	padding-left: 15px;
}

.footer a:link,a:active,a:visited	{
	color: #a3be8c;
	text-decoration: none;
}

.footer a:hover	{
	text-decoration: underline;
}

.pics {
  margin: 10px;
  border-radius: 6px;
  background: #eceff4;
  padding: 5px;
}