/*
CSS for Small Business Finance
*/
body {
	background-color: #DDFFEA;
	margin: 18px;    
}
#subscribe {
	height: 90px;
}
#title {
	width: 240px;
	height:960px;
	margin-right: 18px;
	align-content: center;
}
#article {
    width: 522px;
    height: 212px;
    background: #FFFFFF;
    padding: 18px;
}


/*
This section deals with the position of items onscreen. It uses absolute positioning - fixed x and y coordinates measured from the top-left corner of the display.
*/
#subscribe, #title, {
    position:absolute;
}
#subscribe {
    top: 18px;
    left: 18px;
}
#title {
    position:fixed;
    top: 138px;
    left: 18px;
}
#article {
    float: left;
    margin-left: 258px;
    border-top: 18px solid #DDFFEA;
}

/*
end positioning section
*/
