diff --git a/app/assets/images/arrow_down.svg b/app/assets/images/arrow_down.svg
new file mode 100755
index 0000000..0afa0a4
--- /dev/null
+++ b/app/assets/images/arrow_down.svg
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/app/assets/images/arrow_up.svg b/app/assets/images/arrow_up.svg
new file mode 100755
index 0000000..4b8db4d
--- /dev/null
+++ b/app/assets/images/arrow_up.svg
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/app/assets/stylesheets/organisation.scss b/app/assets/stylesheets/organisation.scss
new file mode 100644
index 0000000..2f27bfa
--- /dev/null
+++ b/app/assets/stylesheets/organisation.scss
@@ -0,0 +1,19 @@
+.up::before,
+.down::before {
+ content: "";
+ display: inline-block;
+ width: 12px;
+ height: 12px;
+ margin-right: 6px;
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: contain;
+}
+
+.up::before {
+ background-image: asset-url('arrow_up.svg');
+}
+
+.down::before {
+ background-image: asset-url('arrow_down.svg');
+}