Подскажите пожалуйста как привязать стили css. Вот мой код вывода
<!-- .article -->
<div class="article">
<h2>СТАТЬИ</h2>
<ul>
<?php
$Informationsystem_Controller_Show = new Informationsystem_Controller_Show(
Core_Entity::factory('Informationsystem', '15'

);
$Informationsystem_Controller_Show
->informationsystemItems()
->queryBuilder()
->clearOrderBy();
$Informationsystem_Controller_Show
->xsl(
Core_Entity::factory('Xsl'

->getByName('АнонсыНовостей'

)
->groupsMode('none'

->group(FALSE)
->limit(3)
->show();
?>
</ul>
<a id="lft" href="/article/">Все статьи >></a>
</div><!-- /.article -->
Вот стили
.article h2 {color:#fff;font-size:16px;background:#999999;padding:8px 0 6px 13px;}
.article ul {margin-bottom:5px;}
.article ul li {border-bottom:1px solid #cccccc;padding:5px 10px;}
.article ul li:hover {background:#ededed;}
.article ul li a {color:#8a8a8a;}
.article {overflow:hidden;margin-top:5px;padding-bottom:5px;background:#f5f5f5;border:1px solid #cccccc;}
Но почему то на сайте стиль не отображается. Подскажите где ошибка?