/* === GLOBAL SETTINGS === */

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Times, serif;
	color: #28282e;
	background: #8a96b8;
	line-height: 1.625;
}

/* === LAYOUT === */

/* wrapper */
.wrapper {
	max-width: 1200px;
	margin: 0 auto;
	background: #dde2eb;
	border-right: 2px solid #98a0b8;
	border-left: 2px solid #98a0b8;
}

/* banner */
.banner {
	color: #e7e9f0;
	background: #171718;
	border-bottom: 2px solid #98a0b8;
	background-image: url(../images/ishgardflag.jpg);
	background-repeat: no-repeat;
	background-position: top left;
}

/* banner h1 element */
.banner h1 {
	margin: 0;
	padding-bottom: 2%;
	text-align: center;
	font-family: "Copperplate Gothic Light", sans-serif;
}

/* banner h2 element */
.banner h2 {
	margin: 0;
	padding-top: 3%;
	padding-right: 3%;
	padding-left: 3%;
	text-align: center;
	font-family: "Copperplate Gothic Light", sans-serif;
}

/* main 840px*/
.main { 
	width: 70%;
	padding: 3%;
	background: #ffffff;
	border-right: 2px solid #cfd0d4;
	float: left;
}

/* sidebar 360px*/
.sidebar {
	width: 30%;
	padding: 3%;
	float: left;
}

/* footer */
.site-footer {
	clear: both;
	min-height: 80px;
	padding-top: 5px;
	padding-right: 30px;
	padding-left: 30px;
	background: #d4daeb;
	border-top: 2px solid #98a0b8;
	border-bottom: 2px solid #98a0b8;	
}

/* === IMAGES === */

.img-right {
	float: right;
	border: thin silver solid;
	margin-left: 20px;
	margin-right: 0px;
	padding: 10px;
	text-align: center;
	text-indent: 0;
	font-style: italic;
}

.img-center {
	display: table;
	border: thin silver solid;
	margin-right: auto;
	margin-left: auto;
	padding: 10px;
	text-align: center;
	text-indent: 0;
	font-style: italic;
}

.clear {
	clear: both;
}

/* === OTHER ELEMENTS === */

/* intro */
.intro {
	font-style: italic;
}

/* copyright notice */
.copyright {
	font-size: 0.85em;
}

/* AO3 link box */
.ao3link {
	width: 70%;
    border: 3px solid gray;
    padding:10px;
    margin: 30px;
	font-size: 0.90em;
	background-color: #f7f9fb;
}

/* === NAVIGATION MENU === */
 
.main-menu ul {
	list-style-type:none;
	padding:0;
	margin:0;
	background-color: #3d4357;
}
   
.main-menu li {
	display: inline;
}
   
.main-menu a {
	text-decoration: none;
	color: #e7e9f0;
	font-weight: bold;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	background-color: #3d4357;
	display: inline-block;
	padding: 0.2em 0.6em;
	text-align: center;
	border-right: 1px solid white;
}
   
.main-menu a:hover {
	background-color:#7985b0;
}

/* === SIDE MENU === */

/* image buttons */
.image-button {
	max-width: 100%;
	height: auto;
	padding: 15px 30px;
}

/* link lists */
.fansites {
    list-style-type: square;
}

/* === TABLES === */

.jobs {
	border-collapse: collapse;
}

.jobs, .jobs th, .jobs td {
	border: 1px solid #000;
}

.jobs th, .jobs td {
	padding: 9px;
}

.jobs caption {
	font-weight: bold;
	font-size: 1.1em;
	padding-bottom: 5px;
}

.jobs th {
    background-color: #521648;
    color: #f7f9fb;
}

.jobs tfoot {
	font-size: 0.8em;
	text-align: right;
}

.jobs tr {
	background-color: #f7f9fb;
}

/* === LISTS === */

.titles {
	font-weight: bold;
}

.titles ul {
	font-weight: normal;
}

/* === FORM === */

.information-form label {
	float: left;
	margin-right: 1em;
	text-align: right;
	width: 12em;
}

.information-form div {
	margin: .5em 0;
	clear: both;
}

.information-form legend {
	font-weight: bold;
	color: #4d3d5a;
}

.information-form  fieldset {
	background: #f7f9fb;
	margin-bottom: .7em;
}

.information-form fieldset fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

.information-form fieldset fieldset legend {
	color: #000;
	text-align: right;
	width: 12em;
	float: left;
	padding-left: 0;
	margin-bottom: .5em;
}

.information-form  input[type="text"], .information-form textarea {
	width: 20em;
}

.information-form textarea {
	height: 8em;
}

.information-form input[type="submit"] {
	background: #521648;
	color: #fff;
	font-weight: bold;
	padding: .4em;
	letter-spacing: .0625em;
	border: 1px solid #75736E;
}

.information-form .required {
	font-weight: bold;
	color: red;
}


/* === RESPONSIVE === */

/* media query for narrow screens */
@media (max-width: 767px) {
	
	body {
		font-size: 90%;
	}
	
	.main, .sidebar {
		float: none;
		width: auto;
	}
	
	.wrapper, .main, .page-footer {
		border: none;
	}
	
	.banner {
	color: #e7e9f0;
	background: #171718;
	border-bottom: 2px solid #98a0b8;
	background-image: none;
	}
	
	/* image resizing */
	img {
		max-width: 100%;
		height: auto;
	}
	
	figure {
		margin: 0px;
		display: block;
	}
		
 }
 



/* printable page version */
@media print {
  	* {
		color: #000 !important;
		padding: 0 !important;
	}
	
	:not(table):not(td) {
        border: 0 !important;
    }
 
   .banner, .main-menu, .sidebar, .site-footer, img {
      display: none;
   }
 
   body {
      background: #fff;
      font-size: 12pt;
   }
 
   .wrapper, .main, .sidebar {
      border: none;
      float: none;
      width: auto;
   }
 
}