Create another div with another class almost identical but you should use
bottom instead of
top in your css.
<override_macro name="node_page" dot_parameter="do" requires="servlet">
<div class='bot'>Place your ads here</div>
<n.get_node_from_parameter.as_node_page.do/>
</override_macro>
and your css should be something like this:
.bot{
background-color: green;
height: 30px;
left: 0;
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
}