@charset "UTF-8";
/* CSS Document */

html {
overflow-y:scroll;
}

#outer-bg {
width:970px;
margin:0 auto;
background-color:rgba(0,0,0,0.2);
padding-bottom:5px;
}

.wrapper {
width:960px;
margin:0 auto;
overflow:visible;	
}


/* USEFULBOXES - BASIC LAYOUT BLOCKS - 10PX MARGIN BTW BOXES */

/* --------- CONTAINS ROW OF USEFULBOXES */
/* contains a row of usefulboxes */
.usefulbox-container {
overflow:hidden;
margin-bottom:10px;
clear:both;
}

.usefulbox-container:last-of-type {
/* REMOVES BOTTOM MARGIN IN FINAL USEFULBOX CONTAINER - MAY NOT WORK IN IE */
margin-bottom:0;
}

/* USEFUL BOXES - USED TO FLOAT & LAYOUT CONTENT */
.usefulbox {
float:left;
margin-left:20px;
}

.usefulbox-onequarter {
width:225px;
}

.usefulbox-onethird {
width:307px;
}

.usefulbox-onehalf {
width:470px;
}

.usefulbox-twothirds {
width:633px;
}

.usefulbox-threequarters {
width:715px;
}

.usefulbox-first {
margin-left:0 
}

.usefulbox-onethird.usefulbox-first {
width:306px;
}



/* FOOTER */

/* creates bottom border for site - hack */
#footer-thanks-ie {
height:5px;
}