
img.bg {
	/* Set rules to fill background */
	min-height: 100%;
	min-width: 1024px;
	
	/* Set up proportionate scaling */
	width: 100%;
	height: auto;
	
	/* Set up positioning */
	position: fixed;
	top: 0;
	left: 0;
}

@media screen and (max-width: 1024px){
	img.bg {
		left: 50%;
		margin-left: -512px;
		}
}

div#content {
	/* This is the only important rule */
	/* We need our content to show up on top of the background */
	position: absolute; 
	
	/* These have no effect on the functionality */
	width: 100%;
	height:70px;
	bottom:0px;
	background: #dce0df;
	font-family: helvetica, arial, sans-serif;
	font-size: 10pt;
	line-height: 16pt;
	/* -moz-box-shadow: #000 4px 4px 10px;
	-webkit-box-shadow: #000 4px 4px 10px;		 */	
}

div#innercontent {
	padding:18px 0 0 15px;
}

div#right {
	position: absolute; 
	height:100%;
	width:15px;
	right:0px;
	background: #dce0df;
}

div#left {
	position: absolute; 
	height:100%;
	width:15px;
	left:0px;
	background: #dce0df;
}

div#top {
	position: absolute; 
	width:100%;
	height:15px;
	top:0px;
	background: #dce0df;
}

div#pagecontent {
	position: absolute;
	width:380px;
	right: 50px;
	top: 50px;
	background: #000000;
	/* background: #dce0df; */
    /* background-color:rgba(220,224,223,0.10); */
	font-family: helvetica, arial, sans-serif;
	font-size: 10pt;
	line-height: 16pt;
	color:#626361;
	padding:10px 20px 10px 20px;
}

div#pagecontent1 {
	position: absolute;
	width:380px;
	height: 75%;
	right: 50px;
	top: 50px;
	background: #dce0df;
    background-color:rgba(220,224,223,0.70);
	font-family: helvetica, arial, sans-serif;
	font-size: 10pt;
	line-height: 16pt;
	color:#7c7b7b;
	padding:10px 20px 10px 20px;
}

div#header1 {
	padding-top:10px;
	padding-bottom:10px;
	font-size: 20pt;
	color:#505050;
}

div#header {
	padding-top:10px;
	padding-bottom:10px;
	font-size: 20pt;
	color:#b5b8b2;
}

body {
	/* These rules have no effect on the functionality */
	/* They are for styling only */
	padding: 0px;
	margin:0px;
	background: Black;
}
			
#main-nav
{
	position: absolute; 
	padding:0 15px 0 15px;
	bottom: 14px;
	right:0px;
}

#main-nav ul
{
    padding: 0;
    margin: 0;
}

#main-nav ul li
{
    height: 30px;
    float: left;
    list-style: none;
}

#main-nav ul li a
{
    margin: 0 12px;
    display: block;
    text-decoration: none;
    color: #9d9c9c;
    text-transform: uppercase;
}

#main-nav ul li a:hover
{
    color: #505050;
}

