Hola
Buscador flotado a la derecha
Sociales flotado a la izquierda
Rss posicionado en forma absoluta
Código CSS:
Ver original#cont{
width:100%;
border:1px solid blue;
overflow:hidden;
position:relative;
}
#busca{
width:250px;
height:50px;
float:right;
background:green;}
#social{
width:100px;
height:200px;
float:left;
background:LightCyan;
}
#rss{
width:250px;
height:100px;
position:absolute;
right:0px;
bottom:0px;
background:#ff4500;
}
Ejemplo
Saludos