diff --git a/templates/client/includes/exposition/exposition_object.html b/templates/client/includes/exposition/exposition_object.html
index 2707966d..eedc9dcc 100644
--- a/templates/client/includes/exposition/exposition_object.html
+++ b/templates/client/includes/exposition/exposition_object.html
@@ -366,6 +366,17 @@
+
{% endblock %}
{% block content_text %}
diff --git a/templates/client/static_client/css/main.css b/templates/client/static_client/css/main.css
index 90f3d073..06071b4b 100644
--- a/templates/client/static_client/css/main.css
+++ b/templates/client/static_client/css/main.css
@@ -12426,11 +12426,43 @@ hr + .rq-note {
# edit note overlay on /main page
\******************************/
-
.main-page.note-wrap .note-overlay{
bottom: 0;
margin-bottom: 26px;
}
.main-page.note-wrap:hover .note-button:after{
margin-bottom: 22px;
- }
\ No newline at end of file
+ }
+
+/************************\
+# блок "смотри так же"
+\***********************/
+
+ .look-also a{
+ display: block;
+ position: relative;
+ color: #6d6d6d;
+ -webkit-transition: all .5s;
+ -o-transition: all .5s;
+ transition: all .5s;
+ margin-bottom: .5em;
+ }
+ .look-also a:hover{
+ color: #ff6600;
+ text-decoration: none;
+ }
+ .look-also a:hover:before{
+ background-position: -235px -134px;
+ }
+ .look-also a:before{
+ content: '';
+ display: inline-block;
+ vertical-align: middle;
+ height: 9px;
+ top: 50%;
+ margin-top: -4px;
+ width: 8px;
+ background: url('../img/sprites.png') no-repeat -251px -134px;
+ margin-right: 10px;
+ }
+