* {margin:0;padding:0;} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body, #wrap {height: 100%;

background-color: #121212;
font-family:  Arial, Helvetica, sans-serif;

}

#pagewidth{ 
 width:975px; 
 text-align:left;  
margin-left:auto; 
 margin-right:auto;  
   padding-top:0px;
     
} 
body > #wrap {height: auto; min-height: 100%;}

#main {padding-bottom: 150px;}  /* must be same height as the footer */

#footer {position: relative;
	margin-top: -154px; /* negative value of footer height */
	height: 154px;
	clear:both;} 
#mycont{
 position: absolute;
 margin: 100px 0px 0px 200px;

}
#mylogo{
 position: absolute;
 margin: 50px 0px 0px 0px;

}
#myvideobox{
 position: absolute;
 margin: 150px 0px 0px 80px;

}

#myfooter{
 position: absolute;
 margin: 530px 0px 0px 610px;

}
/* CLEAR FIX*/
.clearfix:after {content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
