Здравствуйте! подскажите как сделать чтоб блок с классом aaa перемещался в блоке с классом bbb без выхода за его границы?, спасибо
<style type='text/css'>
.aaa{
position: fixed;
background: #fff;
min-width: 338px;
height: 348px;
border: 1px solid #2992d9;
border-radius: 3px;
margin-left: 5px;
display: block;
top: 289px;
z-index: 999;
}
.bbb{
position: absolute;
background: #f9f9f9;
float: left;
border: 1px solid #e5e5e5;
margin-left: -245px;
width: 350px;
top: 29px;
height: 1588.5px;
z-index: 998;
}
</style>
<div class="bbb">
<div class="aaa">плавающий банер</div>
</div>