/* CSS Document */
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: absolute;
			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: relative; 
			
			
			/* These have no effect on the functionality */
			width: 260px;
			margin-left: 0px;
		    padding: 63px 0 0 0;
		}
		
		div#text {
			/* This is the only important rule */
			/* We need our content to show up on top of the background */
			position: relative; 
	
			
			/* These have no effect on the functionality */
			width: 300px;
			margin-left: 0px;
			font-family: Arial, Helvetica, sans-serif;
	        font-size: 16px;
	        color: #C00;
	        font-weight: normal;
			clear: both;
		    padding: 20px 0 0 10px;
			alignment-adjust:central;
			z-index: 30000;
		}
		
		div#imgbg {
			/* This is the only important rule */
			/* We need our content to show up on top of the background */
			position: relative; 
			
			
			/* These have no effect on the functionality */
			width: 340px;
			height: 300px;
			top:-20px;
			background:url(http://especimen.com.mx/img/1/2/black.jpg);
			position:top;
			margin-left: 0px;
		    padding: 0 0 0 0;
			
		}
		
		div#contentfb {
	/* This is the only important rule */
			/* We need our content to show up on top of the background */
			position: relative;
	/* These have no effect on the functionality */
			margin: 0;
	        width: 155px;
		}
		
		body {
			/* These rules have no effect on the functionality */
			/* They are for styling only */
			margin: 0;
			background-color:#000;
		}