In ASP.NET MVC4 application, style bundle is created using
bundles.Add(new StyleBundle(\"~/css/pos.css\") .Include(\"~/css/mypos.css\"));
Within your Razor page you would add the following:
<link href="@Styles.Url("~/css/pos.css")" rel="stylesheet" type="text/css" media="print" />