/* FONTS */

@font-face {
	font-family: FontinRegular;
	src: url(fontin_regular.ttf) format('truetype');
}


/* BASE */

body {
	background-attachment: fixed;
	background-color: #E1D6BB;
	background-image: url(../images/layout/page_bg.png);
	background-repeat: repeat;
	font-size: large;
	font-family: FontinRegular, Fontin, Verdana, Arial, Helvetica, san-serif;
	margin: 0px;
	padding: 0px;
}


/* HYPERLINKS */

a {
	font-weight: bold;
	text-decoration: underline;
}
a:hover {
	text-decoration: underline;
}


/* IMAGES */

img {
	border: 0px;
	margin: 0px;
	padding: 0px;
}


/* TEXT */

p {
	margin: 0px;
	padding: 0px 0px .75em 0px;
}
sub,
sup {
	font-size: 75%;
	line-height: 0px;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: -0.25em;
}
sup {
	top: -0.35em;
}
strong {
	color: #066;
}
h1 {
	background-color: #066;
	box-shadow: 0px 0px 10px #333;
	color: #FFF;
	font-size: x-large;
	font-weight: bold;
	margin: 0px auto 1em auto;
	padding: 5px;
	text-align: center;
	width: 85%;
}
h2 {
	background-color: #960;
	box-shadow: 0px 0px 5px #333;
	color: #FFF;
	font-size: x-large;
	font-weight: bold;
	margin: 1em auto 1em auto;
	padding: 5px;
	text-align: center;
}
h3 {
	background-color: #FFF;
	border: solid #066;
	box-shadow: 0px 0px 5px #333;
	color: #960;
	font-size: x-large;
	font-weight: bold;
	margin: .5em 0px 1em 0px;
	padding: 2px;
	text-align: center;
}
h4 {
	border-bottom: 2px solid #066;
	color: #960;
	font-size: large;
	font-weight: bold;
	margin: .5em 0px .75em 0px;
	padding: 0px;
	text-align: left;	
}


/* LISTS */

ul, ol {
	padding: 0px 0px 0px 0px;
	margin: 0px auto .75em auto;
	width: 85%;
}
/* Don't put a bottom margin in nested lists. :) */
ul ul, ul ol, ol ul, ol ol {
	margin-bottom: 0em;
	margin-left: 1.75em;
	width: 100%;
}
ol {
	list-style-type: decimal;
}
ul {
	list-style-type: square;
}

dl {
	margin: auto;
	width: 75%;
}
dt {
	color: #960;
	font-weight: bold;
}
dd {
	margin-bottom: .5em;
}

dd p:last-child,
li p:last-child {
	padding-bottom: 0px;
}


/* TABLES */

table {
	border: 1px solid #066;
	border-collapse: collapse;
	border-spacing: 0px;
	box-shadow: 0px 0px 10px #333;
	margin: .25em auto 1em auto;
	width: 90%;
}
table p {
	padding: 0px 0px .75em 0px;
	text-align: justify;
}
table p:last-child {
	padding: 0px;
}
th {
	background-color: #066;
	color: #FFF;
	font-variant: small-caps;
	padding: .5em;
	text-align: center;
}
td {
	background-color: #FFF;
	border: 1px solid #CCF;
	padding: .5em;
	text-align: left;
}
/* Nesting */
table table {
	border: 1px solid #CCF;
	box-shadow: none;
}
table table th {
	background-color: #CCF;
	color: black;
}



/**********
 *        *
 * LAYOUT *
 *        *
 **********/

.bg_design {
	float: left;
	height: 0px;
	position: fixed;
	z-index: -1;
}

.container {
	margin: auto;
	padding: 0px 15px 0px 15px;
	max-width: 1024px;
	min-width: 720px;
}

.banner {
	background-image: url(../images/layout/logo_banner.jpg);
	background-position: center;
	box-shadow: 0px 0px 20px #333;
	height: 200px;
	margin: 25px auto 0px auto;
	position: relative;
	z-index: 5;
}
.logo {
	margin: auto;
	position: relative;
	top: 20px;
	width: 720px;
	z-index: 20;
}
.mascot_left {
	float: left;
	position: relative;
	top: -10px;
	left: -85px;
	height: 0px;
	z-index: 10;
}
.mascot_right {
	float: right;
	position: relative;
	top: -15px;	
	left: 45px;
	height: 0px;
	z-index: 10;
}

.navigation {
	background-color: #000;
	box-shadow: 0px 0px 10px #333;
	color: #066;
	text-align: center;
	padding: 5px;
	margin: 0px 0px 15px 0px;
}
.navigation a {
	color: white;
	position: relative;
	text-decoration: none;
	z-index: 999;
}
.navigation a:hover {
	text-decoration: underline;
}

.social {
	background-color: gray;
	background-image: url(../images/layout/social_bg.jpg);
	background-position: top;
	box-shadow: 0px 0px 20px #333;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	text-align: center;
}
.social_icon {
	box-shadow: 0px 0px 10px #000;
	display: inline-block;
	margin: 5px 2.5px 5px 2.5px;
	position: relative;
	z-index: 999;
}
.social_icon:hover {
	background-color: white;
	box-shadow: 0px 0px 10px #FFF;
	z-index: 1000;
}
.social_icon img:hover {
	opacity: 0.66;
}

.main {
	background-color: #EEF;
	background-image: url(../images/layout/content_bg.jpg);	
	background-position: center;
	background-repeat: repeat-y;
	box-shadow: 0px 0px 20px #333;
	color: #333;
	margin: 0px auto 15px auto;
	padding: 15px;
	text-align: justify;
}
.main a {
	color: #960;
}
.main a:hover {
	color: #A90;
}
.main p {
	margin: 0px auto 0px auto;
	width: 95%;
}
.main table p,
.main ul p,
.main ol p,
.main dl p {
	width: 100%;
}

.copyright {
	color: #000;
	font-size: medium;
	margin: 0px 0px 25px 0px;
	text-align: center;
}
.copyright a {
	color: #000;
	text-decoration: underline;
}
.copyright p {
	line-height: normal;
	margin: 0px 0px .75em 0px;
	padding: 0px;
}


/* ELEMENTS */

.artwork {
	border: 1px solid #333;
	box-shadow: 0px 0px 10px #333;
	margin: 0px 5px 0px 5px;
}

.center {
	text-align: center;
}

.documentation td {
	vertical-align: top;
}
.documentation_header {
	margin: 0em auto 2.5em auto;
	width: 75%;
}
.documentation_header p {
	font-weight: bold;
	text-align: center;
}
.documentation_center_cell {
	text-align: center;
	vertical-align: middle !important;
}

.indent {
	padding-left: 5em;
}

.hex {
	background-color: #EEE;
	border: 1px solid #CCC;
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
	padding: 0px 2px;
}

.img_center {
	display: block;
	margin: auto;
}
.img_left, .img_right {
	position: relative;
}
.img_left {
	float: left;
	right: 75px;
	margin-right: -65px;
}
.img_right {
	float: right;
	left: 75px;
	margin-left: -65px;
}

.infobox {
	border: none;
	border-collapse: separate;
	border-spacing: 5px;
	box-shadow: none;
	margin: 0px auto 2em auto;
	width: 580px;
}
.infobox_heading,
.infobox_content {
	background-color: #FFF;
	border: none;
	box-shadow: 0px 0px 5px #333;
	padding: 5px;
}
.infobox_heading {
	background-color: #066;
	border: none;
	color: #EFF;
	font-weight: bold;
	width: 33%;
}
.infobox_content {
}

.subset {
	color: #960;
	font-size: x-large;
	font-style: italic;
	margin: 0px auto 0px auto;
	width: 75%;
}

.table_grayed {
	background-color: #CCC;
}

/* SITE NETWORK STRIP */

.strip {
	background: black;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	height: 30px;
	text-align: right;
}
.strip a, .bottommenu a, .topmenu a {
	color: white;
	font-weight: bold;
	text-decoration: none;
}
.strip a:hover, .bottommenu a:hover, .topmenu a:hover {
	text-decoration: underline;
}
.strip img {
	display: block;
	float: left;
	margin: 5px 0px 0px 8px;
}
.strip p {
	padding: 6px 8px 0px 0px;
}