/*	Webfonts
*/

@font-face {
		font-family: Panama;
		src: url("webfonts/PanamaMonospace.woff") format('woff');
		font-weight: normal;
		font-style: normal;
	}
@font-face {
		font-family: PanamaItalic;
		src: url("webfonts/PanamaMonospaceItalic.woff") format('woff');
		font-weight: normal;
		font-style: normal;
	}
@font-face {
		font-family: PanamaIranic;
		src: url("webfonts/PanamaMonospaceIranic.woff") format('woff');
		font-weight: normal;
		font-style: normal;
	}
@font-face {
		font-family: Kommuna;
		src: url("webfonts/Kommuna600Regular.woff") format('woff');
		font-weight: normal;
		font-style: normal;
	}

/*	General Styles
*/

* {
	margin: 0px;
	padding: 0px;
	border: 0px;
	box-sizing: border-box;
	
	font-family: Panama;
	}

body {
	padding: 0px 0px 70px 100px;
	
	color: #000000;
	background-color: #eeeeee;
	
	min-width: 1200px;
	overflow: auto;
	}

/*	Text Styles
*/

.menu {
	position: absolute;
	margin: 0px 0px 0px 600px;
	width: 200px;
	z-index: 100;
	
	font-size: 19px;
	line-height: 25px;
	
	text-align: right;
	}

.header {
	position: relative;
	margin: 75px 0px 10px 0px;
	width: 800px;
	
	font-size: 19px;
	line-height: 25px;
	}

.text {
	position: relative;
	margin: 0px 0px 15px 0px;
	width: 800px;
	
	font-size: 19px;
	line-height: 25px;
	}
	
.quote {
	position: relative;
	margin: 0px 0px 15px 0px;
	padding: 0px 110px 0px 70px;
	width: 800px;
	
	font-size: 16px;
	line-height: 22px;
	}
	
.sidenote {
	position: absolute;
	margin: 0px 0px 0px 800px;
	padding: 5px 0px 19px 30px;
	text-indent: -19px;
	width: 250px;
	
	font-size: 12px;
	line-height: 18px;
	}
		
/*	Character Styles
*/

sup {
	font-size: 65%;
	line-height: 0px;
	padding: 0px 1px 0px 3px;
	}
.italic {
	font-family: PanamaItalic;
}
.iranic {
	font-family: PanamaIranic;
}

/*	Image Styles
*/

img {
	margin: 8px 0px 6px 0px;
	}

.image {
	position: relative;
	margin: 0px 0px 17px 0px;
	width: 800px;
	}
	
.image-caption {
	position: relative;
	width: 100%;
	
	font-size: 12px;
	line-height: 18px;
	}

/*	Link Styles
*/

a:link {
	text-decoration: none;
	border-bottom: 1px solid blue;
	color: blue;
	}
a:visited {
	text-decoration: none;
	border-bottom: 1px solid blue;
	color: blue;
	}
a:active {
	text-decoration: none;
	border-bottom: 1px solid blue;
	color: blue;
	}
a:hover {
	text-decoration: none;
	border-bottom: 0px solid blue;
	color: blue;
	}
	
/*	Form Styles
*/

input {
	padding: 5px 5px 5px 5px;
	border: 0px;
	
	font-size: 16px;
	line-height: 20px;
	}
	
input[type=text] {
	width: 400px;
	}
	
input[type=email] {
	width: 400px;
	margin: 10px 0px 0px 0px;
	}
	
input[type=submit] {
	padding: 10px 15px 10px 15px;
	margin: 20px 0px 0px 0px;
	width: 150px;
	
	background-color: black;
	color: white;
	}
	
input[type=submit]:hover {
	cursor: pointer;
	
	background-color: blue;
	color: white;
	}
	
	
/*	Special Styles for Kommuna Article
*/

.header-kommuna {
	font-family: Kommuna;
	
	position: relative;
	margin: 75px 0px 10px 0px;
	width: 800px;
	
	font-size: 16.667px;
	line-height: 25px;
	}

.text-kommuna {
	font-family: Kommuna;
	
	position: relative;
	margin: 0px 0px 15px 0px;
	width: 800px;
	
	font-size: 16.667px;
	line-height: 25px;
	}
	
.image-caption-kommuna {
	font-family: Kommuna;
	
	position: relative;
	width: 100%;
	
	font-size: 10px;
	line-height: 15px;
	}

.link-kommuna {
	font-family: Kommuna;
}

	
	
	