It seems that for a given height, the \sqrt symbol "switches" it's type, and it becomes vertical at some part, like here:

But I want it to be like the second one. What is the solution for this?
EDIT: I've cut this line out of my .tex file. It looks like this:
\documentclass[12pt]{article}
\usepackage{enumerate}
\usepackage{lmodern}
\usepackage{amsmath}
\begin{document}
\begin{enumerate}[1.]
\item[\textbf{MO:}] {}
\begin{enumerate}[a)]
\item{
$$\lim \limits_{k \to \infty}
\sqrt{\frac{1+(-1)^k}{3+\dfrac{1}{k^2}+\dfrac{8}{k^3}}}=
\sqrt{\dfrac{1+1}{3+0+0}}=\sqrt{\dfrac{2}{3}}$$}
\end{enumerate}
\end{enumerate}
\end{document}

\documentclass{...}and ending with\end{document}. – jub0bs Aug 12 '13 at 19:41$$for delimiting display math; see http://tex.stackexchange.com/questions/503/why-is-preferable-to for more detail. – jub0bs Aug 12 '13 at 19:58\itemdoes not take a mandatory argument, so you do not have to write\item{item text}, it is sufficient with\item item text. – Torbjørn T. Aug 13 '13 at 00:46