/* Font Stuff */
@font-face {
	font-family: "TW Cen MT";
	src: url(twcenmt.ttf) format("truetype");
}
p.twcenmt { 
	font-family: "TW Cen MT";
	color: #FFDA20;
}
p.twcenmtred { 
	font-family: "TW Cen MT";
	color: #D00000;
}
p.twcenmtlightgray { 
	font-family: "TW Cen MT";
	color: #A4A4A4;
}
p.bold { 
	font-weight: bold;
}
p {
	display: block;
	margin-top: 0em;
	margin-bottom: 0em;
	margin-left: 0;
	margin-right: 0;
}

.fullscreen {
	width:100%;
	text-align:center
	}

/* Page Width */
	.stage {
	width:980px;
	margin-left:auto;
	margin-right:auto;

	}
	.top {
		width: 100%;
		height: 40px;
		border:solid 1px white
	}
	.left {
		width: 30%;
		height: 100%;
		float:left;
	}
	.main {
		float: left;
		height: 100%;
		width: 70%;
		border:  solid 1px black;
	}
 
/* Link Colors */
	/* unvisited link */
		a:link {
			color: #FFDA20;
		}
	/* visited link */
		a:visited {
			color: #FFDA20;
		}
	/* mouse over link */
		a:hover {
			color: #FFDA20;
		}
	/* selected link */
		a:active {
			color: #FF0000;
		}


/* Background Image */
	body {
		background-image: url("assets/images/background/background-min.jpg");
		background-color: #000000;
	}

/* hr Tag Formatting */
	hr{ 
    height: 1px;
	background-color: #383838;
	border: none;
	}
	
/* iframe Border Remove */
	iframe {
		border: none;
	}