The boites package defines environments that allow page breaks inside framed boxes whose edges may be variously fancy. The bundle includes a few examples (shaded box, box with a wavy line on its side, etc).
boitecoloriee is one of those environments. It typesets its contents in a gray background color inside a framed box.
With smaller fonts the lines typeset with this environment are cut in its bottom, as can be seen with the following example:
\documentclass{standalone}
\usepackage{boites,boites_exemples}
\usepackage{lipsum}
\begin{document}
\begin{boitecoloriee}
\lipsum[131]
\end{boitecoloriee}
\footnotesize
\begin{boitecoloriee}
\lipsum[131]
\end{boitecoloriee}
\end{document}
which gives:

Notice how the second box has defective lines.
Does anybody have any idea on how to fix this?

maboites.sty? A separate comment: theboitespackage seems to be well more than 10 years old, and figuring out some of its functionality may be difficult to achieve at this point. Have you considered trying out themdframedpackage instead? From your description (and from what I can tell is provided byboites.sty) it would appear that the functionality provided by themdframedpackage (or its precursor, theframedpackage) is perfectly suited to meeting your needs. – Mico Dec 22 '11 at 15:32maboites.styis an unpublished package I have written that implements a new and more flexible environment usingboites. It is not needed in this example, so it can be removed, and I am just going to do that. – Romildo Dec 22 '11 at 16:57boites,framedandmdframedas options for framed boxes that can break across pages. I need such feature in a new package (pygmentex) I am writing to highlight source code using Pygments, similar to minted, but more flexible and efficient. When I tried them,boiteswas my choice because it had less restrictions (for instance, it can be used in themulticolenvironment). Butmdframedis getting better and I am considering switching to it. – Romildo Dec 22 '11 at 17:08mdframedpackage. – Mico Dec 23 '11 at 17:09