O nome 'mídia' não existe no contexto atual

Em uma visualização de lâmina da ASP.NET MVC 3, eu tenho o código:

<!DOCTYPE html>
<html>
<head>
 <style type="text/css">
    @media print
    {
    table { page-break-inside:auto; width: 100%; }
    tr    { page-break-inside:avoid; page-break-after:auto }
    thead { display:table-header-group }
    tfoot { display:table-footer-group }
    }
 </style>
</head>
<body>
<table>

No entanto, recebi o erro:

The name 'media' does not exist in the current context.

Obrigado.

questionAnswers(2)

yourAnswerToTheQuestion