I don't know why, but a line in my text is out of margins.

How can I avoid this issue?
I'm using classicthesis in TeXworks.
Edit: with the command
\overfullrule=5pt
I can see a black square where this issue appear.
Here a MWE and myclassicthesis-preamble
\documentclass{scrreprt}
\usepackage[english]{babel}
\usepackage{myclassicthesis-preamble}
\usepackage{classicthesis}
\usepackage{microtype}
\renewcommand{\descriptionlabel}[1]{\hspace*{\labelsep}\small\textsc{#1}}
\overfullrule=5pt
\begin{document}
\begin{description}
\item[Service Delivery Framework] The infrastructure to create, publish, manage and consume FI services across their life cycle, addressing all technical and business aspects.
\item[Interface to the Network and Devices] The open interfaces to networks and devices, harmonizing the connectivity needs of services built on top of the platform.
\end{description}
Lastly, on the \emph{political dimension}, legal and legislative barriers presently hinder the efficient cross-border establishment of new innovative solutions due to complex or incompatible ICT policies in Europe.
\end{document}
Two possible problems: this line
\renewcommand{\descriptionlabel}[1]{\hspace*{\labelsep}\small\textsc{#1}}
and the modification in myclassicthesis-preamble(lines 63-70)
\PassOptionsToPackage{
eulerchapternumbers,
beramono,
eulermath,
pdfspacing,
floatperchapter
}
{classicthesis}
in particular the option pdfspacing.
presentlywithpresent\-lyor put\hyphenation{pre-sent-ly}in the preamble? Probably LaTeX doesn't know how to hyphen that word. – percusse Dec 04 '11 at 00:53pre\-sent\-lyworks. But now I realized that there are a lot of these "out of margins". I must to redefine all the english words? =| – Baduel Dec 04 '11 at 01:15myclassicthesis-preamble. For instance that contains settings forlistingswhich is obviously not related to this question. And post the code here by editing you answer. It seems that if you add\sloppyit fixes these problems. If you don't want to add that thru your entire document just put it where you need it within a group (surround it with{\sloppy ... \par}) – Peter Grill Dec 04 '11 at 02:15\sloppyworks until the\fussycommand is called. Now I try to provide a very minimal example and post it in my question. – Baduel Dec 04 '11 at 10:22