OK. First thing - Please name your CSS styles in lowercase.
Back to your problem - the display, float, position elements could have pushed the div out of focus.
display:inline; float:left; position:relative;
And also if this is under another styled element, please add
clear:both; to your styles.
.footer{
width:100%;
clear:both;
margin:0px;
padding:0px;
border:solid 1px #000000;
text-align:center;
background-image:url('AppImages/Backgrounds/NctFooterBackground.gif');
background-repeat:repeat;
}
If this works, then add the display, float and position accordingly. And also note that this file would not ideally reside in the AppImages folder. So the path to the image should be
background-image:url('../AppImages/Backgrounds/NctFooterBackground.gif');
Thank you.