/*
---------------------------------------------------------------------
            GLOBAL STYLES 
---------------------------------------------------------------------

These are default styles that every page needs to inherit */


/* This sets all browser padding and margin defaults to zero */
* { margin: 0; padding: 0; } 

/* This is a fix for IE 6 & 7 spacing issues. I think. */
* html img { display: block; } 

/* This keeps images wrapped in an anchor tag from displaying a border. Maybe. */
a img { border: none; margin: 0; padding: 0; }

/*Firefox produces a dotted outline that appears around links when you click on them. */
a { outline: none; }

/* this is a fix for IE/Mac, to keep the nav items from breaking. */
#header li {
	/*\*/overflow: hidden;/**/
}

/* styles for IE 5 Mac */
 .wrapper {
	background: #080304;
	position: absolute;
	top: 0px;
	width: 100%;
 }
 
 /* following rules are invisible to IE 5 \*/
.wrapper {
	background: #080304;
	text-align: left;
	position: absolute;
    left: 0px;
    width: 100%;
    margin-top: 0px;
    min-width: 760px; 
	
}
/* end IE 5 hack */ 
#container {
	min-height: 1200px;
	width: 900px;
	margin: 0px auto;
	position: relative;
	background: transparent;
}
body {
	background: #080304;
}



 
