diff --git a/main/admin/configure_extensions.php b/main/admin/configure_extensions.php
index d7d6186db2..8a95923ea3 100755
--- a/main/admin/configure_extensions.php
+++ b/main/admin/configure_extensions.php
@@ -203,73 +203,6 @@ Display::display_header($nameTool);
-
';
$content .= Display::url(
- Display::return_icon('help.large.png', get_lang('Help')),
+ Display::return_icon('help.png', get_lang('Help'), null, ICON_SIZE_LARGE),
api_get_path(WEB_CODE_PATH).'help/help.php?open='.$help,
[
'class' => 'ajax',
diff --git a/main/inc/lib/tracking.lib.php b/main/inc/lib/tracking.lib.php
index ea241e8225..24b27e7dbc 100755
--- a/main/inc/lib/tracking.lib.php
+++ b/main/inc/lib/tracking.lib.php
@@ -352,7 +352,7 @@ class Tracking
if (!empty($inter_num)) {
$extend_link = Display::url(
Display::return_icon(
- 'visible.gif',
+ 'visible.png',
get_lang('HideAttemptView')
),
api_get_self().'?action=stats&fold_id='.$my_item_id.$url_suffix
@@ -415,13 +415,13 @@ class Tracking
// The extend button for this attempt has been clicked.
$extend_this_attempt = 1;
$extend_attempt_link = Display::url(
- Display::return_icon('visible.gif', get_lang('HideAttemptView')),
+ Display::return_icon('visible.png', get_lang('HideAttemptView')),
api_get_self().'?action=stats&extend_id='.$my_item_id.'&fold_attempt_id='.$row['iv_id'].$url_suffix
);
} else { // Same case if fold_attempt_id is set, so not implemented explicitly.
// The extend button for this attempt has not been clicked.
$extend_attempt_link = Display::url(
- Display::return_icon('invisible.gif', get_lang('ExtendAttemptView')),
+ Display::return_icon('invisible.png', get_lang('ExtendAttemptView')),
api_get_self().'?action=stats&extend_id='.$my_item_id.'&extend_attempt_id='.$row['iv_id'].$url_suffix
);
}
@@ -459,7 +459,7 @@ class Tracking
if ($row['item_type'] != 'dir') {
if (!$is_allowed_to_edit && $result_disabled_ext_all) {
$view_score = Display::return_icon(
- 'invisible.gif',
+ 'invisible.png',
get_lang('ResultsHiddenByExerciseSetting')
);
} else {
@@ -631,14 +631,14 @@ class Tracking
// The extend button for this attempt has been clicked.
$extend_this_attempt = 1;
$extend_attempt_link = Display::url(
- Display::return_icon('visible.gif', get_lang('HideAttemptView')),
+ Display::return_icon('visible.png', get_lang('HideAttemptView')),
api_get_self().'?action=stats&extend_id='.$my_item_id.'&fold_attempt_id='.$row['iv_id'].$url_suffix
);
} else {
// Same case if fold_attempt_id is set, so not implemented explicitly.
// The extend button for this attempt has not been clicked.
$extend_attempt_link = Display::url(
- Display::return_icon('invisible.gif', get_lang('ExtendAttemptView')),
+ Display::return_icon('invisible.png', get_lang('ExtendAttemptView')),
api_get_self().'?action=stats&extend_id='.$my_item_id.'&extend_attempt_id='.$row['iv_id'].$url_suffix
);
}
@@ -652,7 +652,7 @@ class Tracking
$extend_link = '';
if ($inter_num > 1) {
$extend_link = Display::url(
- Display::return_icon('invisible.gif', get_lang('ExtendAttemptView')),
+ Display::return_icon('invisible.png', get_lang('ExtendAttemptView')),
api_get_self().'?action=stats&extend_id='.$my_item_id.'&extend_attempt_id='.$row['iv_id'].$url_suffix
);
}
@@ -879,7 +879,7 @@ class Tracking
if ($row['item_type'] == 'quiz') {
if (!$is_allowed_to_edit && $result_disabled_ext_all) {
$scoreItem .= Display::return_icon(
- 'invisible.gif',
+ 'invisible.png',
get_lang('ResultsHiddenByExerciseSetting')
);
} else {
@@ -1027,7 +1027,7 @@ class Tracking
}
if (!$is_allowed_to_edit && $result_disabled_ext_all) {
$view_score = Display::return_icon(
- 'invisible.gif',
+ 'invisible.png',
get_lang(
'ResultsHiddenByExerciseSetting'
)
@@ -1152,7 +1152,7 @@ class Tracking
$total_time = str_replace('NaN', '00'.$h.'00\'00"', $total_time);
if (!$is_allowed_to_edit && $result_disabled_ext_all) {
- $final_score = Display::return_icon('invisible.gif', get_lang('ResultsHiddenByExerciseSetting'));
+ $final_score = Display::return_icon('invisible.png', get_lang('ResultsHiddenByExerciseSetting'));
$finalScoreToCsv = get_lang('ResultsHiddenByExerciseSetting');
} else {
if (is_numeric($total_score)) {
@@ -1866,7 +1866,7 @@ class Tracking
$last_login_date = api_convert_and_format_date($last_login_date, DATE_FORMAT_SHORT);
$icon = api_is_allowed_to_edit() ?
'
- '.Display::return_icon('messagebox_warning.gif').'
+ '.Display::return_icon('warning.png').'
'
: null;
diff --git a/main/lp/learnpath.class.php b/main/lp/learnpath.class.php
index 0cf4867d1f..3cd3844616 100755
--- a/main/lp/learnpath.class.php
+++ b/main/lp/learnpath.class.php
@@ -4616,7 +4616,7 @@ class learnpath
WHERE
t.course = :course AND
t.link = :link1 AND
- t.image = 'lp_category.gif' AND
+ t.image LIKE 'lp_category.%' AND
t.link LIKE :link2
$sessionCondition
")
@@ -4641,7 +4641,7 @@ class learnpath
->setCourse(api_get_course_entity($courseId))
->setName(strip_tags($category->getName()))
->setLink($link)
- ->setImage('lp_category.gif')
+ ->setImage('lp_category.png')
->setVisibility(1)
->setAdmin(0)
->setAddress('pastillegris.gif')
@@ -4772,7 +4772,7 @@ class learnpath
SELECT t FROM ChamiloCourseBundle:CTool t
WHERE t.course = :course AND
t.name = :name AND
- t.image = 'lp_category.gif' AND
+ t.image LIKE 'lp_category.%' AND
t.link LIKE :link
")
->setParameters([
@@ -6259,14 +6259,10 @@ class learnpath
if (file_exists($iconPath.'lp_'.$icon_name.'.png')) {
$icon = Display::return_icon('lp_'.$icon_name.'.png');
} else {
- if (file_exists($iconPath.'lp_'.$icon_name.'.gif')) {
- $icon = Display::return_icon('lp_'.$icon_name.'.gif');
+ if ($arrLP[$i]['item_type'] === TOOL_LP_FINAL_ITEM) {
+ $icon = Display::return_icon('certificate.png');
} else {
- if ($arrLP[$i]['item_type'] === TOOL_LP_FINAL_ITEM) {
- $icon = Display::return_icon('certificate.png');
- } else {
- $icon = Display::return_icon('folder_document.gif');
- }
+ $icon = Display::return_icon('folder_document.png');
}
}
@@ -12517,7 +12513,7 @@ EOD;
$link = 'lp/lp_controller.php?cidReq='.$courseInfo['code'].'&id_session='.$sessionId.'&gidReq=0&gradebook=0&origin=&action=view_category&id='.$id;
// Delete tools
$sql = "DELETE FROM $tbl_tool
- WHERE c_id = ".$courseId." AND (link LIKE '$link%' AND image='lp_category.gif')";
+ WHERE c_id = ".$courseId." AND (link LIKE '$link%' AND image LIKE 'lp_category.%')";
Database::query($sql);
}
}
diff --git a/main/session/resume_session.php b/main/session/resume_session.php
index efeb60c821..f1feb41562 100644
--- a/main/session/resume_session.php
+++ b/main/session/resume_session.php
@@ -213,7 +213,7 @@ if ($session->getNbrCourses() === 0) {
$courseItem .= '
'.($namesOfCoaches ? implode(' ', $namesOfCoaches) : get_lang('None')).' | ';
$courseItem .= '
'.$numberOfUsers.' | ';
$courseItem .= '
';
- $courseItem .= Display::url(Display::return_icon('course_home.gif', get_lang('Course')), $courseUrl);
+ $courseItem .= Display::url(Display::return_icon('course_home.png', get_lang('Course')), $courseUrl);
if ($allowSkills) {
$courseItem .= Display::url(
@@ -232,7 +232,7 @@ if ($session->getNbrCourses() === 0) {
'.
Display::return_icon('export_csv.png', get_lang('ExportUsersOfACourse'), null, ICON_SIZE_SMALL).'
'.
- Display::return_icon('statistics.gif', get_lang('Tracking')).'
+ Display::return_icon('statistics.png', get_lang('Tracking'), null, ICON_SIZE_SMALL).'
'.
Display::return_icon('teacher.png', get_lang('ModifyCoach'), '', ICON_SIZE_SMALL).'
'.
diff --git a/main/session/session_course_list.php b/main/session/session_course_list.php
index 4d976e6c73..f522746ee5 100644
--- a/main/session/session_course_list.php
+++ b/main/session/session_course_list.php
@@ -86,7 +86,7 @@ foreach ($Courses as $key => $enreg) {
$course[] = api_htmlentities($enreg['title'], ENT_QUOTES, $charset);
$course[] = ''.$enreg['nbr_users'].' '.get_lang('Users').'';
$course[] = ''.
- Display::return_icon('course_home.gif', get_lang('Course')).'
+ Display::return_icon('course_home.png', get_lang('Course')).'
'.
Display::return_icon('edit.png', get_lang('Edit')).'
'.
diff --git a/main/upload/upload_word.php b/main/upload/upload_word.php
index a3f7c5b332..f7f3c4a8ca 100755
--- a/main/upload/upload_word.php
+++ b/main/upload/upload_word.php
@@ -116,12 +116,12 @@ $s_style_error = "border-width: 1px;
color: #000;";
echo '
- .')
+ .')
'.$message.' ';
if (!empty($errorMessage)) {
echo '
- .')
+ .')
'.$errorMessage.' ';
}
diff --git a/main/user/user.php b/main/user/user.php
index d541b2fb99..bb3c5033b4 100755
--- a/main/user/user.php
+++ b/main/user/user.php
@@ -1007,7 +1007,7 @@ function modify_filter($user_id, $row, $data)
// time taken by support to test things out)
if (api_is_platform_admin()) {
$result .= ' '.
- Display::return_icon('login_as.gif', get_lang('LoginAs')).' ';
+ Display::return_icon('login_as.png', get_lang('LoginAs')).' ';
}
if (api_is_allowed_to_edit(null, true)) {
diff --git a/public/img/0.gif b/public/img/0.gif
deleted file mode 100644
index 34e6ff3296..0000000000
Binary files a/public/img/0.gif and /dev/null differ
diff --git a/public/img/1.gif b/public/img/1.gif
deleted file mode 100644
index 5b1de3ab20..0000000000
Binary files a/public/img/1.gif and /dev/null differ
diff --git a/public/img/ButtonGallOff.png b/public/img/ButtonGallOff.png
deleted file mode 100644
index 1f82404c5a..0000000000
Binary files a/public/img/ButtonGallOff.png and /dev/null differ
diff --git a/public/img/ButtonGallOn.png b/public/img/ButtonGallOn.png
deleted file mode 100644
index 8788594558..0000000000
Binary files a/public/img/ButtonGallOn.png and /dev/null differ
diff --git a/public/img/ButtonListOff.png b/public/img/ButtonListOff.png
deleted file mode 100644
index 64a8b760ee..0000000000
Binary files a/public/img/ButtonListOff.png and /dev/null differ
diff --git a/public/img/ButtonListOn.png b/public/img/ButtonListOn.png
deleted file mode 100644
index 139c7acd4d..0000000000
Binary files a/public/img/ButtonListOn.png and /dev/null differ
diff --git a/public/img/acces_tool.gif b/public/img/acces_tool.gif
deleted file mode 100644
index 156f8273e8..0000000000
Binary files a/public/img/acces_tool.gif and /dev/null differ
diff --git a/public/img/add.gif b/public/img/add.gif
deleted file mode 100644
index 34e6ff3296..0000000000
Binary files a/public/img/add.gif and /dev/null differ
diff --git a/public/img/add_multiple_users.gif b/public/img/add_multiple_users.gif
deleted file mode 100644
index 2a19d8068b..0000000000
Binary files a/public/img/add_multiple_users.gif and /dev/null differ
diff --git a/public/img/add_na.gif b/public/img/add_na.gif
deleted file mode 100644
index 63bae56d11..0000000000
Binary files a/public/img/add_na.gif and /dev/null differ
diff --git a/public/img/add_teacher_big.gif b/public/img/add_teacher_big.gif
deleted file mode 100644
index cc0cba069c..0000000000
Binary files a/public/img/add_teacher_big.gif and /dev/null differ
diff --git a/public/img/add_user.gif b/public/img/add_user.gif
deleted file mode 100644
index b3b5344e9d..0000000000
Binary files a/public/img/add_user.gif and /dev/null differ
diff --git a/public/img/add_user_big.gif b/public/img/add_user_big.gif
deleted file mode 100644
index 65fcd9f73d..0000000000
Binary files a/public/img/add_user_big.gif and /dev/null differ
diff --git a/public/img/addd.gif b/public/img/addd.gif
deleted file mode 100644
index 6332fefea4..0000000000
Binary files a/public/img/addd.gif and /dev/null differ
diff --git a/public/img/adduser.gif b/public/img/adduser.gif
deleted file mode 100644
index ad48d6730d..0000000000
Binary files a/public/img/adduser.gif and /dev/null differ
diff --git a/public/img/admins.gif b/public/img/admins.gif
deleted file mode 100644
index 6f2a31e96b..0000000000
Binary files a/public/img/admins.gif and /dev/null differ
diff --git a/public/img/alt_star.gif b/public/img/alt_star.gif
deleted file mode 100644
index ccb9922daf..0000000000
Binary files a/public/img/alt_star.gif and /dev/null differ
diff --git a/public/img/anim-frame1.gif b/public/img/anim-frame1.gif
deleted file mode 100644
index 4cafaf94a2..0000000000
Binary files a/public/img/anim-frame1.gif and /dev/null differ
diff --git a/public/img/anim-frame2.gif b/public/img/anim-frame2.gif
deleted file mode 100644
index 5a4328dbe3..0000000000
Binary files a/public/img/anim-frame2.gif and /dev/null differ
diff --git a/public/img/anim-frame3.gif b/public/img/anim-frame3.gif
deleted file mode 100644
index 3c95ee2fa8..0000000000
Binary files a/public/img/anim-frame3.gif and /dev/null differ
diff --git a/public/img/anim-frame4.gif b/public/img/anim-frame4.gif
deleted file mode 100644
index 868458647d..0000000000
Binary files a/public/img/anim-frame4.gif and /dev/null differ
diff --git a/public/img/anim-loader.gif b/public/img/anim-loader.gif
deleted file mode 100644
index dc1359f4cc..0000000000
Binary files a/public/img/anim-loader.gif and /dev/null differ
diff --git a/public/img/announce_add.gif b/public/img/announce_add.gif
deleted file mode 100644
index 58d44229e7..0000000000
Binary files a/public/img/announce_add.gif and /dev/null differ
diff --git a/public/img/archive.png b/public/img/archive.png
deleted file mode 100644
index edb5fd54d1..0000000000
Binary files a/public/img/archive.png and /dev/null differ
diff --git a/public/img/arrow-left.png b/public/img/arrow-left.png
deleted file mode 100644
index 2e4641ca21..0000000000
Binary files a/public/img/arrow-left.png and /dev/null differ
diff --git a/public/img/arrow-right.png b/public/img/arrow-right.png
deleted file mode 100644
index 95911c204b..0000000000
Binary files a/public/img/arrow-right.png and /dev/null differ
diff --git a/public/img/arrow_down_0.gif b/public/img/arrow_down_0.gif
deleted file mode 100644
index 2b7f4044f0..0000000000
Binary files a/public/img/arrow_down_0.gif and /dev/null differ
diff --git a/public/img/arrow_down_0.png b/public/img/arrow_down_0.png
deleted file mode 100644
index b8dc82ef23..0000000000
Binary files a/public/img/arrow_down_0.png and /dev/null differ
diff --git a/public/img/arrow_down_1.gif b/public/img/arrow_down_1.gif
deleted file mode 100644
index 456737d75c..0000000000
Binary files a/public/img/arrow_down_1.gif and /dev/null differ
diff --git a/public/img/arrow_down_1.png b/public/img/arrow_down_1.png
deleted file mode 100644
index 899f5f8bd4..0000000000
Binary files a/public/img/arrow_down_1.png and /dev/null differ
diff --git a/public/img/arrow_down_2.gif b/public/img/arrow_down_2.gif
deleted file mode 100644
index b9bc930254..0000000000
Binary files a/public/img/arrow_down_2.gif and /dev/null differ
diff --git a/public/img/arrow_down_2.png b/public/img/arrow_down_2.png
deleted file mode 100644
index 9be054414d..0000000000
Binary files a/public/img/arrow_down_2.png and /dev/null differ
diff --git a/public/img/arrow_up_0.gif b/public/img/arrow_up_0.gif
deleted file mode 100644
index f6f50f339c..0000000000
Binary files a/public/img/arrow_up_0.gif and /dev/null differ
diff --git a/public/img/arrow_up_0.png b/public/img/arrow_up_0.png
deleted file mode 100644
index 4bc3776d79..0000000000
Binary files a/public/img/arrow_up_0.png and /dev/null differ
diff --git a/public/img/arrow_up_1.gif b/public/img/arrow_up_1.gif
deleted file mode 100644
index 963c34c28c..0000000000
Binary files a/public/img/arrow_up_1.gif and /dev/null differ
diff --git a/public/img/arrow_up_1.png b/public/img/arrow_up_1.png
deleted file mode 100644
index 5d8fa91906..0000000000
Binary files a/public/img/arrow_up_1.png and /dev/null differ
diff --git a/public/img/arrow_up_2.gif b/public/img/arrow_up_2.gif
deleted file mode 100644
index ed916a456e..0000000000
Binary files a/public/img/arrow_up_2.gif and /dev/null differ
diff --git a/public/img/arrow_up_2.png b/public/img/arrow_up_2.png
deleted file mode 100644
index a699deeb03..0000000000
Binary files a/public/img/arrow_up_2.png and /dev/null differ
diff --git a/public/img/asterisk_prerequisites.gif b/public/img/asterisk_prerequisites.gif
deleted file mode 100644
index d19669ca8e..0000000000
Binary files a/public/img/asterisk_prerequisites.gif and /dev/null differ
diff --git a/public/img/attachment.gif b/public/img/attachment.gif
deleted file mode 100644
index c684ded551..0000000000
Binary files a/public/img/attachment.gif and /dev/null differ
diff --git a/public/img/audio.gif b/public/img/audio.gif
deleted file mode 100644
index efc7e25389..0000000000
Binary files a/public/img/audio.gif and /dev/null differ
diff --git a/public/img/audio_question_na.png b/public/img/audio_question_na.png
deleted file mode 100644
index c25068e558..0000000000
Binary files a/public/img/audio_question_na.png and /dev/null differ
diff --git a/public/img/avi.gif b/public/img/avi.gif
deleted file mode 100644
index 55f2116261..0000000000
Binary files a/public/img/avi.gif and /dev/null differ
diff --git a/public/img/background_message.png b/public/img/background_message.png
deleted file mode 100644
index db9075ff26..0000000000
Binary files a/public/img/background_message.png and /dev/null differ
diff --git a/public/img/bar_1m.gif b/public/img/bar_1m.gif
deleted file mode 100644
index 7aaf31f131..0000000000
Binary files a/public/img/bar_1m.gif and /dev/null differ
diff --git a/public/img/bar_1r.gif b/public/img/bar_1r.gif
deleted file mode 100644
index a3e9b28c9d..0000000000
Binary files a/public/img/bar_1r.gif and /dev/null differ
diff --git a/public/img/bar_1u.gif b/public/img/bar_1u.gif
deleted file mode 100644
index bbc458f9e4..0000000000
Binary files a/public/img/bar_1u.gif and /dev/null differ
diff --git a/public/img/bg_moon_two.png b/public/img/bg_moon_two.png
deleted file mode 100644
index e070b035fc..0000000000
Binary files a/public/img/bg_moon_two.png and /dev/null differ
diff --git a/public/img/bg_space.png b/public/img/bg_space.png
deleted file mode 100644
index 48e25d1875..0000000000
Binary files a/public/img/bg_space.png and /dev/null differ
diff --git a/public/img/blank.gif b/public/img/blank.gif
deleted file mode 100644
index e565824aaf..0000000000
Binary files a/public/img/blank.gif and /dev/null differ
diff --git a/public/img/blog_new.gif b/public/img/blog_new.gif
deleted file mode 100644
index 8fc90fc516..0000000000
Binary files a/public/img/blog_new.gif and /dev/null differ
diff --git a/public/img/blog_newarticle.gif b/public/img/blog_newarticle.gif
deleted file mode 100644
index c25c1d8245..0000000000
Binary files a/public/img/blog_newarticle.gif and /dev/null differ
diff --git a/public/img/blog_newtasks.gif b/public/img/blog_newtasks.gif
deleted file mode 100644
index 2a3678fb8b..0000000000
Binary files a/public/img/blog_newtasks.gif and /dev/null differ
diff --git a/public/img/blog_task.gif b/public/img/blog_task.gif
deleted file mode 100644
index da40e704bf..0000000000
Binary files a/public/img/blog_task.gif and /dev/null differ
diff --git a/public/img/blog_tasks.gif b/public/img/blog_tasks.gif
deleted file mode 100644
index 3ed87f896c..0000000000
Binary files a/public/img/blog_tasks.gif and /dev/null differ
diff --git a/public/img/blog_user.gif b/public/img/blog_user.gif
deleted file mode 100644
index b024e08a9a..0000000000
Binary files a/public/img/blog_user.gif and /dev/null differ
diff --git a/public/img/bmp.gif b/public/img/bmp.gif
deleted file mode 100644
index abd05713ef..0000000000
Binary files a/public/img/bmp.gif and /dev/null differ
diff --git a/public/img/boxmygroups.jpg b/public/img/boxmygroups.jpg
deleted file mode 100644
index deda4ed25b..0000000000
Binary files a/public/img/boxmygroups.jpg and /dev/null differ
diff --git a/public/img/boxmygroupscontent.jpg b/public/img/boxmygroupscontent.jpg
deleted file mode 100644
index c68ee5b389..0000000000
Binary files a/public/img/boxmygroupscontent.jpg and /dev/null differ
diff --git a/public/img/briefcase_small.png b/public/img/briefcase_small.png
deleted file mode 100644
index 163fd1bc11..0000000000
Binary files a/public/img/briefcase_small.png and /dev/null differ
diff --git a/public/img/bug.gif b/public/img/bug.gif
deleted file mode 100644
index eae7f11c62..0000000000
Binary files a/public/img/bug.gif and /dev/null differ
diff --git a/public/img/bug.large.png b/public/img/bug.large.png
deleted file mode 100644
index 521407f800..0000000000
Binary files a/public/img/bug.large.png and /dev/null differ
diff --git a/public/img/bug_gray.gif b/public/img/bug_gray.gif
deleted file mode 100644
index f58d16519d..0000000000
Binary files a/public/img/bug_gray.gif and /dev/null differ
diff --git a/public/img/buoy.gif b/public/img/buoy.gif
deleted file mode 100644
index 8e8207ab74..0000000000
Binary files a/public/img/buoy.gif and /dev/null differ
diff --git a/public/img/c.gif b/public/img/c.gif
deleted file mode 100644
index 4a45d92fcd..0000000000
Binary files a/public/img/c.gif and /dev/null differ
diff --git a/public/img/calculated_answer.png b/public/img/calculated_answer.png
deleted file mode 100644
index 8a26ff2a55..0000000000
Binary files a/public/img/calculated_answer.png and /dev/null differ
diff --git a/public/img/calculated_answer_na.png b/public/img/calculated_answer_na.png
deleted file mode 100644
index 9359149010..0000000000
Binary files a/public/img/calculated_answer_na.png and /dev/null differ
diff --git a/public/img/calendar_add.gif b/public/img/calendar_add.gif
deleted file mode 100644
index d95f27a87d..0000000000
Binary files a/public/img/calendar_add.gif and /dev/null differ
diff --git a/public/img/calendar_day.gif b/public/img/calendar_day.gif
deleted file mode 100644
index d0ed37d391..0000000000
Binary files a/public/img/calendar_day.gif and /dev/null differ
diff --git a/public/img/calendar_down.gif b/public/img/calendar_down.gif
deleted file mode 100644
index 015b9a5472..0000000000
Binary files a/public/img/calendar_down.gif and /dev/null differ
diff --git a/public/img/calendar_month.gif b/public/img/calendar_month.gif
deleted file mode 100644
index db2278a720..0000000000
Binary files a/public/img/calendar_month.gif and /dev/null differ
diff --git a/public/img/calendar_personal.gif b/public/img/calendar_personal.gif
deleted file mode 100644
index 61d91940da..0000000000
Binary files a/public/img/calendar_personal.gif and /dev/null differ
diff --git a/public/img/calendar_personal_add.gif b/public/img/calendar_personal_add.gif
deleted file mode 100644
index 2d0225f909..0000000000
Binary files a/public/img/calendar_personal_add.gif and /dev/null differ
diff --git a/public/img/calendar_select.gif b/public/img/calendar_select.gif
deleted file mode 100644
index bac5d22aa5..0000000000
Binary files a/public/img/calendar_select.gif and /dev/null differ
diff --git a/public/img/calendar_up.gif b/public/img/calendar_up.gif
deleted file mode 100644
index 8344a889fe..0000000000
Binary files a/public/img/calendar_up.gif and /dev/null differ
diff --git a/public/img/calendar_week.gif b/public/img/calendar_week.gif
deleted file mode 100644
index fb8ec95928..0000000000
Binary files a/public/img/calendar_week.gif and /dev/null differ
diff --git a/public/img/canvas1024x768.png b/public/img/canvas1024x768.png
deleted file mode 100644
index 9e01c5d398..0000000000
Binary files a/public/img/canvas1024x768.png and /dev/null differ
diff --git a/public/img/canvas1920x1080.png b/public/img/canvas1920x1080.png
deleted file mode 100644
index ae8fe2cb27..0000000000
Binary files a/public/img/canvas1920x1080.png and /dev/null differ
diff --git a/public/img/canvas800x600.png b/public/img/canvas800x600.png
deleted file mode 100644
index 6d491e3fd7..0000000000
Binary files a/public/img/canvas800x600.png and /dev/null differ
diff --git a/public/img/cd.gif b/public/img/cd.gif
deleted file mode 100644
index 884c4ddd47..0000000000
Binary files a/public/img/cd.gif and /dev/null differ
diff --git a/public/img/cd_gray.gif b/public/img/cd_gray.gif
deleted file mode 100644
index 84d780a629..0000000000
Binary files a/public/img/cd_gray.gif and /dev/null differ
diff --git a/public/img/chat_little.gif b/public/img/chat_little.gif
deleted file mode 100644
index 9108bfe600..0000000000
Binary files a/public/img/chat_little.gif and /dev/null differ
diff --git a/public/img/check.gif b/public/img/check.gif
deleted file mode 100644
index aef999be4b..0000000000
Binary files a/public/img/check.gif and /dev/null differ
diff --git a/public/img/checkbox_off.gif b/public/img/checkbox_off.gif
deleted file mode 100644
index 4c12c4da9c..0000000000
Binary files a/public/img/checkbox_off.gif and /dev/null differ
diff --git a/public/img/checkbox_on.gif b/public/img/checkbox_on.gif
deleted file mode 100644
index 2ae16abe21..0000000000
Binary files a/public/img/checkbox_on.gif and /dev/null differ
diff --git a/public/img/checkbox_on2.gif b/public/img/checkbox_on2.gif
deleted file mode 100644
index b2c211fab0..0000000000
Binary files a/public/img/checkbox_on2.gif and /dev/null differ
diff --git a/public/img/checkbox_on3.gif b/public/img/checkbox_on3.gif
deleted file mode 100644
index 5a3cdb72e9..0000000000
Binary files a/public/img/checkbox_on3.gif and /dev/null differ
diff --git a/public/img/checked.gif b/public/img/checked.gif
deleted file mode 100644
index 8a0b3a7102..0000000000
Binary files a/public/img/checked.gif and /dev/null differ
diff --git a/public/img/checkzip.gif b/public/img/checkzip.gif
deleted file mode 100644
index 5a21ba201f..0000000000
Binary files a/public/img/checkzip.gif and /dev/null differ
diff --git a/public/img/clean_group.gif b/public/img/clean_group.gif
deleted file mode 100644
index 107f58ad51..0000000000
Binary files a/public/img/clean_group.gif and /dev/null differ
diff --git a/public/img/clock.gif b/public/img/clock.gif
deleted file mode 100644
index d6e7d69821..0000000000
Binary files a/public/img/clock.gif and /dev/null differ
diff --git a/public/img/clock_gray.gif b/public/img/clock_gray.gif
deleted file mode 100644
index 9a181e713e..0000000000
Binary files a/public/img/clock_gray.gif and /dev/null differ
diff --git a/public/img/close.gif b/public/img/close.gif
deleted file mode 100644
index 1c3fc57117..0000000000
Binary files a/public/img/close.gif and /dev/null differ
diff --git a/public/img/coachs.gif b/public/img/coachs.gif
deleted file mode 100644
index b8c39e3281..0000000000
Binary files a/public/img/coachs.gif and /dev/null differ
diff --git a/public/img/comment.gif b/public/img/comment.gif
deleted file mode 100644
index 89b89c36c6..0000000000
Binary files a/public/img/comment.gif and /dev/null differ
diff --git a/public/img/comment_bubble.gif b/public/img/comment_bubble.gif
deleted file mode 100644
index e605d623b4..0000000000
Binary files a/public/img/comment_bubble.gif and /dev/null differ
diff --git a/public/img/commentquestion.gif b/public/img/commentquestion.gif
deleted file mode 100644
index 81bccbbc81..0000000000
Binary files a/public/img/commentquestion.gif and /dev/null differ
diff --git a/public/img/completed.gif b/public/img/completed.gif
deleted file mode 100644
index 06ab365d03..0000000000
Binary files a/public/img/completed.gif and /dev/null differ
diff --git a/public/img/conf.gif b/public/img/conf.gif
deleted file mode 100644
index df82f39f38..0000000000
Binary files a/public/img/conf.gif and /dev/null differ
diff --git a/public/img/conf_na.gif b/public/img/conf_na.gif
deleted file mode 100644
index 816e5b8aef..0000000000
Binary files a/public/img/conf_na.gif and /dev/null differ
diff --git a/public/img/course.gif b/public/img/course.gif
deleted file mode 100644
index ef1136373e..0000000000
Binary files a/public/img/course.gif and /dev/null differ
diff --git a/public/img/course_add.gif b/public/img/course_add.gif
deleted file mode 100644
index ed44cecc64..0000000000
Binary files a/public/img/course_add.gif and /dev/null differ
diff --git a/public/img/course_home.gif b/public/img/course_home.gif
deleted file mode 100644
index 964dc33860..0000000000
Binary files a/public/img/course_home.gif and /dev/null differ
diff --git a/public/img/course_na.gif b/public/img/course_na.gif
deleted file mode 100644
index c98ff268b1..0000000000
Binary files a/public/img/course_na.gif and /dev/null differ
diff --git a/public/img/course_progress_bis.gif b/public/img/course_progress_bis.gif
deleted file mode 100644
index a66da42588..0000000000
Binary files a/public/img/course_progress_bis.gif and /dev/null differ
diff --git a/public/img/course_progress_na_bis.gif b/public/img/course_progress_na_bis.gif
deleted file mode 100644
index eb6f9d0451..0000000000
Binary files a/public/img/course_progress_na_bis.gif and /dev/null differ
diff --git a/public/img/database.gif b/public/img/database.gif
deleted file mode 100644
index a30e4a1fa0..0000000000
Binary files a/public/img/database.gif and /dev/null differ
diff --git a/public/img/defaut.gif b/public/img/defaut.gif
deleted file mode 100644
index b18007d575..0000000000
Binary files a/public/img/defaut.gif and /dev/null differ
diff --git a/public/img/del_user_big.gif b/public/img/del_user_big.gif
deleted file mode 100644
index 69d91b9866..0000000000
Binary files a/public/img/del_user_big.gif and /dev/null differ
diff --git a/public/img/deplacer.gif b/public/img/deplacer.gif
deleted file mode 100644
index 9c85b00325..0000000000
Binary files a/public/img/deplacer.gif and /dev/null differ
diff --git a/public/img/deplacer_fichier.gif b/public/img/deplacer_fichier.gif
deleted file mode 100644
index 2d9251e4ab..0000000000
Binary files a/public/img/deplacer_fichier.gif and /dev/null differ
diff --git a/public/img/deplacer_fichier_na.gif b/public/img/deplacer_fichier_na.gif
deleted file mode 100644
index ad8caaf8fd..0000000000
Binary files a/public/img/deplacer_fichier_na.gif and /dev/null differ
diff --git a/public/img/doc.gif b/public/img/doc.gif
deleted file mode 100644
index 1048683971..0000000000
Binary files a/public/img/doc.gif and /dev/null differ
diff --git a/public/img/doc_word.gif b/public/img/doc_word.gif
deleted file mode 100644
index 96758a4c73..0000000000
Binary files a/public/img/doc_word.gif and /dev/null differ
diff --git a/public/img/dossier.gif b/public/img/dossier.gif
deleted file mode 100644
index 79c2e214f5..0000000000
Binary files a/public/img/dossier.gif and /dev/null differ
diff --git a/public/img/draw_new.png b/public/img/draw_new.png
deleted file mode 100644
index fc5570bc31..0000000000
Binary files a/public/img/draw_new.png and /dev/null differ
diff --git a/public/img/draw_new_na.png b/public/img/draw_new_na.png
deleted file mode 100644
index 3ff4608a14..0000000000
Binary files a/public/img/draw_new_na.png and /dev/null differ
diff --git a/public/img/edit_group.gif b/public/img/edit_group.gif
deleted file mode 100644
index 290c24e272..0000000000
Binary files a/public/img/edit_group.gif and /dev/null differ
diff --git a/public/img/email.png b/public/img/email.png
deleted file mode 100644
index f4cd96e050..0000000000
Binary files a/public/img/email.png and /dev/null differ
diff --git a/public/img/ephorus.gif b/public/img/ephorus.gif
deleted file mode 100644
index 8c47e26e00..0000000000
Binary files a/public/img/ephorus.gif and /dev/null differ
diff --git a/public/img/excel_small.gif b/public/img/excel_small.gif
deleted file mode 100644
index fcfa8fce1a..0000000000
Binary files a/public/img/excel_small.gif and /dev/null differ
diff --git a/public/img/exclamation.gif b/public/img/exclamation.gif
deleted file mode 100644
index ade289df5f..0000000000
Binary files a/public/img/exclamation.gif and /dev/null differ
diff --git a/public/img/exe.gif b/public/img/exe.gif
deleted file mode 100644
index b77dd4dcec..0000000000
Binary files a/public/img/exe.gif and /dev/null differ
diff --git a/public/img/exit.png b/public/img/exit.png
deleted file mode 100644
index 0ffb5c42f7..0000000000
Binary files a/public/img/exit.png and /dev/null differ
diff --git a/public/img/expired.gif b/public/img/expired.gif
deleted file mode 100644
index 95aaa18d1e..0000000000
Binary files a/public/img/expired.gif and /dev/null differ
diff --git a/public/img/explorer.gif b/public/img/explorer.gif
deleted file mode 100644
index ba9e1e2c37..0000000000
Binary files a/public/img/explorer.gif and /dev/null differ
diff --git a/public/img/export_data.gif b/public/img/export_data.gif
deleted file mode 100644
index cfddbd6b4d..0000000000
Binary files a/public/img/export_data.gif and /dev/null differ
diff --git a/public/img/export_db.png b/public/img/export_db.png
deleted file mode 100644
index 83964f12fd..0000000000
Binary files a/public/img/export_db.png and /dev/null differ
diff --git a/public/img/external_inactive.gif b/public/img/external_inactive.gif
deleted file mode 100644
index 4994881fb9..0000000000
Binary files a/public/img/external_inactive.gif and /dev/null differ
diff --git a/public/img/failed.gif b/public/img/failed.gif
deleted file mode 100644
index b07023d918..0000000000
Binary files a/public/img/failed.gif and /dev/null differ
diff --git a/public/img/file.gif b/public/img/file.gif
deleted file mode 100644
index 79c2e214f5..0000000000
Binary files a/public/img/file.gif and /dev/null differ
diff --git a/public/img/file_epub.gif b/public/img/file_epub.gif
deleted file mode 100644
index 38900a2a31..0000000000
Binary files a/public/img/file_epub.gif and /dev/null differ
diff --git a/public/img/file_epub_small.gif b/public/img/file_epub_small.gif
deleted file mode 100644
index f65ebc424f..0000000000
Binary files a/public/img/file_epub_small.gif and /dev/null differ
diff --git a/public/img/file_flash.gif b/public/img/file_flash.gif
deleted file mode 100644
index 2bcecefa06..0000000000
Binary files a/public/img/file_flash.gif and /dev/null differ
diff --git a/public/img/file_flash_small.gif b/public/img/file_flash_small.gif
deleted file mode 100644
index 915be0199c..0000000000
Binary files a/public/img/file_flash_small.gif and /dev/null differ
diff --git a/public/img/file_freemind.png b/public/img/file_freemind.png
deleted file mode 100644
index 644ed8586b..0000000000
Binary files a/public/img/file_freemind.png and /dev/null differ
diff --git a/public/img/file_html.gif b/public/img/file_html.gif
deleted file mode 100644
index 9b11ef0116..0000000000
Binary files a/public/img/file_html.gif and /dev/null differ
diff --git a/public/img/file_html_na.gif b/public/img/file_html_na.gif
deleted file mode 100644
index 15ca84b1d3..0000000000
Binary files a/public/img/file_html_na.gif and /dev/null differ
diff --git a/public/img/file_html_new.gif b/public/img/file_html_new.gif
deleted file mode 100644
index a1f65a3f9a..0000000000
Binary files a/public/img/file_html_new.gif and /dev/null differ
diff --git a/public/img/file_html_new_small.gif b/public/img/file_html_new_small.gif
deleted file mode 100644
index e869c9a9d6..0000000000
Binary files a/public/img/file_html_new_small.gif and /dev/null differ
diff --git a/public/img/file_html_small.gif b/public/img/file_html_small.gif
deleted file mode 100644
index 6fcf2576cb..0000000000
Binary files a/public/img/file_html_small.gif and /dev/null differ
diff --git a/public/img/file_image.gif b/public/img/file_image.gif
deleted file mode 100644
index d39271e69b..0000000000
Binary files a/public/img/file_image.gif and /dev/null differ
diff --git a/public/img/file_image_small.gif b/public/img/file_image_small.gif
deleted file mode 100644
index 4b19548ac5..0000000000
Binary files a/public/img/file_image_small.gif and /dev/null differ
diff --git a/public/img/file_java.png b/public/img/file_java.png
deleted file mode 100644
index 7e3b70e8d4..0000000000
Binary files a/public/img/file_java.png and /dev/null differ
diff --git a/public/img/file_oo_calc.gif b/public/img/file_oo_calc.gif
deleted file mode 100644
index bb0fa843ae..0000000000
Binary files a/public/img/file_oo_calc.gif and /dev/null differ
diff --git a/public/img/file_oo_draw.gif b/public/img/file_oo_draw.gif
deleted file mode 100644
index f67d3e4bc5..0000000000
Binary files a/public/img/file_oo_draw.gif and /dev/null differ
diff --git a/public/img/file_oo_impress.gif b/public/img/file_oo_impress.gif
deleted file mode 100644
index 067b71fe3c..0000000000
Binary files a/public/img/file_oo_impress.gif and /dev/null differ
diff --git a/public/img/file_oo_writer.gif b/public/img/file_oo_writer.gif
deleted file mode 100644
index 3c8721109a..0000000000
Binary files a/public/img/file_oo_writer.gif and /dev/null differ
diff --git a/public/img/file_pdf.gif b/public/img/file_pdf.gif
deleted file mode 100644
index 99dc8cb097..0000000000
Binary files a/public/img/file_pdf.gif and /dev/null differ
diff --git a/public/img/file_pdf_small.gif b/public/img/file_pdf_small.gif
deleted file mode 100644
index ea8b484093..0000000000
Binary files a/public/img/file_pdf_small.gif and /dev/null differ
diff --git a/public/img/file_powerpoint.gif b/public/img/file_powerpoint.gif
deleted file mode 100644
index b442796bdb..0000000000
Binary files a/public/img/file_powerpoint.gif and /dev/null differ
diff --git a/public/img/file_sound.gif b/public/img/file_sound.gif
deleted file mode 100644
index 105d1a69a8..0000000000
Binary files a/public/img/file_sound.gif and /dev/null differ
diff --git a/public/img/file_sound_small.gif b/public/img/file_sound_small.gif
deleted file mode 100644
index 260c02ab29..0000000000
Binary files a/public/img/file_sound_small.gif and /dev/null differ
diff --git a/public/img/file_svg.png b/public/img/file_svg.png
deleted file mode 100644
index 3eb5cac099..0000000000
Binary files a/public/img/file_svg.png and /dev/null differ
diff --git a/public/img/file_svg_small.gif b/public/img/file_svg_small.gif
deleted file mode 100644
index d04e79c990..0000000000
Binary files a/public/img/file_svg_small.gif and /dev/null differ
diff --git a/public/img/file_txt.gif b/public/img/file_txt.gif
deleted file mode 100644
index b18007d575..0000000000
Binary files a/public/img/file_txt.gif and /dev/null differ
diff --git a/public/img/file_txt_small.gif b/public/img/file_txt_small.gif
deleted file mode 100644
index 6a8bb312bf..0000000000
Binary files a/public/img/file_txt_small.gif and /dev/null differ
diff --git a/public/img/file_xls.gif b/public/img/file_xls.gif
deleted file mode 100644
index 8e2687302f..0000000000
Binary files a/public/img/file_xls.gif and /dev/null differ
diff --git a/public/img/file_zip.gif b/public/img/file_zip.gif
deleted file mode 100644
index 364d548e7c..0000000000
Binary files a/public/img/file_zip.gif and /dev/null differ
diff --git a/public/img/file_zip_small.gif b/public/img/file_zip_small.gif
deleted file mode 100644
index 6944978702..0000000000
Binary files a/public/img/file_zip_small.gif and /dev/null differ
diff --git a/public/img/filenew.gif b/public/img/filenew.gif
deleted file mode 100644
index f67d5980b4..0000000000
Binary files a/public/img/filenew.gif and /dev/null differ
diff --git a/public/img/filesave.gif b/public/img/filesave.gif
deleted file mode 100644
index cd6b317444..0000000000
Binary files a/public/img/filesave.gif and /dev/null differ
diff --git a/public/img/fill_field.png b/public/img/fill_field.png
deleted file mode 100644
index 3f3674d82e..0000000000
Binary files a/public/img/fill_field.png and /dev/null differ
diff --git a/public/img/fill_group.gif b/public/img/fill_group.gif
deleted file mode 100644
index 6b54605474..0000000000
Binary files a/public/img/fill_group.gif and /dev/null differ
diff --git a/public/img/fill_in_blanks_na.png b/public/img/fill_in_blanks_na.png
deleted file mode 100644
index 5c65f08161..0000000000
Binary files a/public/img/fill_in_blanks_na.png and /dev/null differ
diff --git a/public/img/film.gif b/public/img/film.gif
deleted file mode 100644
index 2b4f71e926..0000000000
Binary files a/public/img/film.gif and /dev/null differ
diff --git a/public/img/film_small.gif b/public/img/film_small.gif
deleted file mode 100644
index 01c5131699..0000000000
Binary files a/public/img/film_small.gif and /dev/null differ
diff --git a/public/img/flash.gif b/public/img/flash.gif
deleted file mode 100644
index f81fd1d6d0..0000000000
Binary files a/public/img/flash.gif and /dev/null differ
diff --git a/public/img/folder_audio.gif b/public/img/folder_audio.gif
deleted file mode 100644
index 3a1ffd76b7..0000000000
Binary files a/public/img/folder_audio.gif and /dev/null differ
diff --git a/public/img/folder_certificates.gif b/public/img/folder_certificates.gif
deleted file mode 100644
index 9fe2f80366..0000000000
Binary files a/public/img/folder_certificates.gif and /dev/null differ
diff --git a/public/img/folder_document.png b/public/img/folder_document.png
new file mode 100644
index 0000000000..1722a04715
Binary files /dev/null and b/public/img/folder_document.png differ
diff --git a/public/img/bar_1.gif b/public/img/folder_document_na.png
similarity index 56%
rename from public/img/bar_1.gif
rename to public/img/folder_document_na.png
index f8e1f54eb2..5e3e36ebae 100644
Binary files a/public/img/bar_1.gif and b/public/img/folder_document_na.png differ
diff --git a/public/img/folder_flash.gif b/public/img/folder_flash.gif
deleted file mode 100644
index b441c2dfc3..0000000000
Binary files a/public/img/folder_flash.gif and /dev/null differ
diff --git a/public/img/folder_gallery.gif b/public/img/folder_gallery.gif
deleted file mode 100644
index a9586f337d..0000000000
Binary files a/public/img/folder_gallery.gif and /dev/null differ
diff --git a/public/img/folder_group_category.gif b/public/img/folder_group_category.gif
deleted file mode 100644
index c2823840de..0000000000
Binary files a/public/img/folder_group_category.gif and /dev/null differ
diff --git a/public/img/folder_images.gif b/public/img/folder_images.gif
deleted file mode 100644
index 944cce3c42..0000000000
Binary files a/public/img/folder_images.gif and /dev/null differ
diff --git a/public/img/folder_images_svg.gif b/public/img/folder_images_svg.gif
deleted file mode 100644
index f7eeda963e..0000000000
Binary files a/public/img/folder_images_svg.gif and /dev/null differ
diff --git a/public/img/folder_learningpath.gif b/public/img/folder_learningpath.gif
deleted file mode 100644
index 91e390b372..0000000000
Binary files a/public/img/folder_learningpath.gif and /dev/null differ
diff --git a/public/img/folder_links.gif b/public/img/folder_links.gif
deleted file mode 100644
index 1809046ad4..0000000000
Binary files a/public/img/folder_links.gif and /dev/null differ
diff --git a/public/img/folder_new.gif b/public/img/folder_new.gif
deleted file mode 100644
index abf3b25289..0000000000
Binary files a/public/img/folder_new.gif and /dev/null differ
diff --git a/public/img/folder_quizzes.gif b/public/img/folder_quizzes.gif
deleted file mode 100644
index 931f6355bd..0000000000
Binary files a/public/img/folder_quizzes.gif and /dev/null differ
diff --git a/public/img/folder_up.gif b/public/img/folder_up.gif
deleted file mode 100644
index 2f04643e34..0000000000
Binary files a/public/img/folder_up.gif and /dev/null differ
diff --git a/public/img/folder_users.gif b/public/img/folder_users.gif
deleted file mode 100644
index f4b95edbc4..0000000000
Binary files a/public/img/folder_users.gif and /dev/null differ
diff --git a/public/img/folder_video.gif b/public/img/folder_video.gif
deleted file mode 100644
index 02af432f18..0000000000
Binary files a/public/img/folder_video.gif and /dev/null differ
diff --git a/public/img/folder_works.gif b/public/img/folder_works.gif
deleted file mode 100644
index 75abbbd344..0000000000
Binary files a/public/img/folder_works.gif and /dev/null differ
diff --git a/public/img/folder_yellow.png b/public/img/folder_yellow.png
deleted file mode 100644
index 8807efc4a3..0000000000
Binary files a/public/img/folder_yellow.png and /dev/null differ
diff --git a/public/img/folder_zip.gif b/public/img/folder_zip.gif
deleted file mode 100644
index c5d94e82f5..0000000000
Binary files a/public/img/folder_zip.gif and /dev/null differ
diff --git a/public/img/forum_new_small.gif b/public/img/forum_new_small.gif
deleted file mode 100644
index 47ac673acb..0000000000
Binary files a/public/img/forum_new_small.gif and /dev/null differ
diff --git a/public/img/gamepad.gif b/public/img/gamepad.gif
deleted file mode 100644
index 81a0c0ec9f..0000000000
Binary files a/public/img/gamepad.gif and /dev/null differ
diff --git a/public/img/gradebook_eval_not_empty.gif b/public/img/gradebook_eval_not_empty.gif
deleted file mode 100644
index d78af49527..0000000000
Binary files a/public/img/gradebook_eval_not_empty.gif and /dev/null differ
diff --git a/public/img/group_add.gif b/public/img/group_add.gif
deleted file mode 100644
index 7b8d32e12b..0000000000
Binary files a/public/img/group_add.gif and /dev/null differ
diff --git a/public/img/group_add.png b/public/img/group_add.png
deleted file mode 100644
index 06c5350cb1..0000000000
Binary files a/public/img/group_add.png and /dev/null differ
diff --git a/public/img/group_add_big.gif b/public/img/group_add_big.gif
deleted file mode 100644
index 71fb6ef9ff..0000000000
Binary files a/public/img/group_add_big.gif and /dev/null differ
diff --git a/public/img/group_contact.png b/public/img/group_contact.png
deleted file mode 100644
index b3edf94be1..0000000000
Binary files a/public/img/group_contact.png and /dev/null differ
diff --git a/public/img/group_delete.gif b/public/img/group_delete.gif
deleted file mode 100644
index 5eb0cf6deb..0000000000
Binary files a/public/img/group_delete.gif and /dev/null differ
diff --git a/public/img/group_edit.png b/public/img/group_edit.png
deleted file mode 100644
index c88b945b0a..0000000000
Binary files a/public/img/group_edit.png and /dev/null differ
diff --git a/public/img/group_join.png b/public/img/group_join.png
deleted file mode 100644
index 1f5233308b..0000000000
Binary files a/public/img/group_join.png and /dev/null differ
diff --git a/public/img/group_leave.png b/public/img/group_leave.png
deleted file mode 100644
index 75ea947c76..0000000000
Binary files a/public/img/group_leave.png and /dev/null differ
diff --git a/public/img/group_s.png b/public/img/group_s.png
deleted file mode 100644
index 7fb4e1f1e1..0000000000
Binary files a/public/img/group_s.png and /dev/null differ
diff --git a/public/img/group_view.gif b/public/img/group_view.gif
deleted file mode 100644
index 349cdeb363..0000000000
Binary files a/public/img/group_view.gif and /dev/null differ
diff --git a/public/img/groupadd.gif b/public/img/groupadd.gif
deleted file mode 100644
index 236128e68c..0000000000
Binary files a/public/img/groupadd.gif and /dev/null differ
diff --git a/public/img/headset.gif b/public/img/headset.gif
deleted file mode 100644
index 124d1b4beb..0000000000
Binary files a/public/img/headset.gif and /dev/null differ
diff --git a/public/img/help.large.png b/public/img/help.large.png
deleted file mode 100644
index edca01f041..0000000000
Binary files a/public/img/help.large.png and /dev/null differ
diff --git a/public/img/help.png b/public/img/help.png
deleted file mode 100644
index 9d05630f3f..0000000000
Binary files a/public/img/help.png and /dev/null differ
diff --git a/public/img/hide0.png b/public/img/hide0.png
deleted file mode 100644
index 585eb3ec58..0000000000
Binary files a/public/img/hide0.png and /dev/null differ
diff --git a/public/img/hide1.png b/public/img/hide1.png
deleted file mode 100644
index 7337238816..0000000000
Binary files a/public/img/hide1.png and /dev/null differ
diff --git a/public/img/hide2.png b/public/img/hide2.png
deleted file mode 100644
index c027b719db..0000000000
Binary files a/public/img/hide2.png and /dev/null differ
diff --git a/public/img/hide3.png b/public/img/hide3.png
deleted file mode 100644
index 8a7d7db1af..0000000000
Binary files a/public/img/hide3.png and /dev/null differ
diff --git a/public/img/history.gif b/public/img/history.gif
deleted file mode 100644
index 61d117e923..0000000000
Binary files a/public/img/history.gif and /dev/null differ
diff --git a/public/img/home.gif b/public/img/home.gif
deleted file mode 100644
index 964dc33860..0000000000
Binary files a/public/img/home.gif and /dev/null differ
diff --git a/public/img/home.png b/public/img/home.png
deleted file mode 100644
index fed62219f5..0000000000
Binary files a/public/img/home.png and /dev/null differ
diff --git a/public/img/homework.gif b/public/img/homework.gif
deleted file mode 100644
index ba78f64ff8..0000000000
Binary files a/public/img/homework.gif and /dev/null differ
diff --git a/public/img/hotspot_delineation_na.gif b/public/img/hotspot_delineation_na.gif
deleted file mode 100644
index 75b0a77b99..0000000000
Binary files a/public/img/hotspot_delineation_na.gif and /dev/null differ
diff --git a/public/img/html.gif b/public/img/html.gif
deleted file mode 100644
index 078d623327..0000000000
Binary files a/public/img/html.gif and /dev/null differ
diff --git a/public/img/ical_icon.gif b/public/img/ical_icon.gif
deleted file mode 100644
index 33f49f7e9f..0000000000
Binary files a/public/img/ical_icon.gif and /dev/null differ
diff --git a/public/img/icon_completed.png b/public/img/icon_completed.png
deleted file mode 100644
index 5318de85bc..0000000000
Binary files a/public/img/icon_completed.png and /dev/null differ
diff --git a/public/img/icon_completed_section.png b/public/img/icon_completed_section.png
deleted file mode 100644
index 4d9c1c243b..0000000000
Binary files a/public/img/icon_completed_section.png and /dev/null differ
diff --git a/public/img/icon_failed.png b/public/img/icon_failed.png
deleted file mode 100644
index d0a8bf6608..0000000000
Binary files a/public/img/icon_failed.png and /dev/null differ
diff --git a/public/img/icons/22/warning.png b/public/img/icons/22/warning.png
index 5c328432cc..b552183ef7 100644
Binary files a/public/img/icons/22/warning.png and b/public/img/icons/22/warning.png differ
diff --git a/public/img/icons/32/warning.png b/public/img/icons/32/warning.png
index 14776e2d6e..78cfb8315f 100644
Binary files a/public/img/icons/32/warning.png and b/public/img/icons/32/warning.png differ
diff --git a/public/img/images_gallery.gif b/public/img/images_gallery.gif
deleted file mode 100644
index f9f3195d4d..0000000000
Binary files a/public/img/images_gallery.gif and /dev/null differ
diff --git a/public/img/import.png b/public/img/import.png
deleted file mode 100644
index 6f8c8611f7..0000000000
Binary files a/public/img/import.png and /dev/null differ
diff --git a/public/img/import_data.gif b/public/img/import_data.gif
deleted file mode 100644
index 412f0f8a1b..0000000000
Binary files a/public/img/import_data.gif and /dev/null differ
diff --git a/public/img/import_db.png b/public/img/import_db.png
deleted file mode 100644
index 0084a5b3c6..0000000000
Binary files a/public/img/import_db.png and /dev/null differ
diff --git a/public/img/inbox.png b/public/img/inbox.png
deleted file mode 100644
index 0a921b62dc..0000000000
Binary files a/public/img/inbox.png and /dev/null differ
diff --git a/public/img/inbox_message.png b/public/img/inbox_message.png
deleted file mode 100644
index 6c933681f3..0000000000
Binary files a/public/img/inbox_message.png and /dev/null differ
diff --git a/public/img/incomplete.gif b/public/img/incomplete.gif
deleted file mode 100644
index 3efa7dd5dd..0000000000
Binary files a/public/img/incomplete.gif and /dev/null differ
diff --git a/public/img/info_small.gif b/public/img/info_small.gif
deleted file mode 100644
index 6fd4eb19b1..0000000000
Binary files a/public/img/info_small.gif and /dev/null differ
diff --git a/public/img/inquire.gif b/public/img/inquire.gif
deleted file mode 100644
index 9da55bd406..0000000000
Binary files a/public/img/inquire.gif and /dev/null differ
diff --git a/public/img/inquire_na.gif b/public/img/inquire_na.gif
deleted file mode 100644
index b14429b772..0000000000
Binary files a/public/img/inquire_na.gif and /dev/null differ
diff --git a/public/img/introduction.gif b/public/img/introduction.gif
deleted file mode 100644
index 343f27f514..0000000000
Binary files a/public/img/introduction.gif and /dev/null differ
diff --git a/public/img/introduction_add.gif b/public/img/introduction_add.gif
deleted file mode 100644
index 62f30dc831..0000000000
Binary files a/public/img/introduction_add.gif and /dev/null differ
diff --git a/public/img/invisible_LP_list.gif b/public/img/invisible_LP_list.gif
deleted file mode 100644
index d74cfd32f0..0000000000
Binary files a/public/img/invisible_LP_list.gif and /dev/null differ
diff --git a/public/img/invisible_na.gif b/public/img/invisible_na.gif
deleted file mode 100644
index 1f672efb10..0000000000
Binary files a/public/img/invisible_na.gif and /dev/null differ
diff --git a/public/img/invitation_friend.png b/public/img/invitation_friend.png
deleted file mode 100644
index deae99bcff..0000000000
Binary files a/public/img/invitation_friend.png and /dev/null differ
diff --git a/public/img/joint.gif b/public/img/joint.gif
deleted file mode 100644
index b7b3e55cd0..0000000000
Binary files a/public/img/joint.gif and /dev/null differ
diff --git a/public/img/jpg.gif b/public/img/jpg.gif
deleted file mode 100644
index 537de1c3a0..0000000000
Binary files a/public/img/jpg.gif and /dev/null differ
diff --git a/public/img/jplayer_play.png b/public/img/jplayer_play.png
deleted file mode 100644
index f04c1d8fd6..0000000000
Binary files a/public/img/jplayer_play.png and /dev/null differ
diff --git a/public/img/jplayer_stop.png b/public/img/jplayer_stop.png
deleted file mode 100644
index 7454e30bb8..0000000000
Binary files a/public/img/jplayer_stop.png and /dev/null differ
diff --git a/public/img/jqz.gif b/public/img/jqz.gif
deleted file mode 100644
index bcb1aab075..0000000000
Binary files a/public/img/jqz.gif and /dev/null differ
diff --git a/public/img/kcmdf.gif b/public/img/kcmdf.gif
deleted file mode 100644
index 6131cb84f1..0000000000
Binary files a/public/img/kcmdf.gif and /dev/null differ
diff --git a/public/img/kcmdf_big.gif b/public/img/kcmdf_big.gif
deleted file mode 100644
index 6e48091aa2..0000000000
Binary files a/public/img/kcmdf_big.gif and /dev/null differ
diff --git a/public/img/khelpcenter.gif b/public/img/khelpcenter.gif
deleted file mode 100644
index 0801d9c95f..0000000000
Binary files a/public/img/khelpcenter.gif and /dev/null differ
diff --git a/public/img/korganizer.gif b/public/img/korganizer.gif
deleted file mode 100644
index 62a2ae3a3c..0000000000
Binary files a/public/img/korganizer.gif and /dev/null differ
diff --git a/public/img/ktip.gif b/public/img/ktip.gif
deleted file mode 100644
index 1f208f53e3..0000000000
Binary files a/public/img/ktip.gif and /dev/null differ
diff --git a/public/img/l.gif b/public/img/l.gif
deleted file mode 100644
index 171dcb625b..0000000000
Binary files a/public/img/l.gif and /dev/null differ
diff --git a/public/img/lang.gif b/public/img/lang.gif
deleted file mode 100644
index 62b3bc5f23..0000000000
Binary files a/public/img/lang.gif and /dev/null differ
diff --git a/public/img/languages.gif b/public/img/languages.gif
deleted file mode 100644
index 3eb9514104..0000000000
Binary files a/public/img/languages.gif and /dev/null differ
diff --git a/public/img/laptop.gif b/public/img/laptop.gif
deleted file mode 100644
index 7fdd08bb2b..0000000000
Binary files a/public/img/laptop.gif and /dev/null differ
diff --git a/public/img/last.png b/public/img/last.png
deleted file mode 100644
index a73160f38a..0000000000
Binary files a/public/img/last.png and /dev/null differ
diff --git a/public/img/learnpath_build.gif b/public/img/learnpath_build.gif
deleted file mode 100644
index c83ddf2f26..0000000000
Binary files a/public/img/learnpath_build.gif and /dev/null differ
diff --git a/public/img/learnpath_build_na.gif b/public/img/learnpath_build_na.gif
deleted file mode 100644
index 63a0874f65..0000000000
Binary files a/public/img/learnpath_build_na.gif and /dev/null differ
diff --git a/public/img/learnpath_organize.gif b/public/img/learnpath_organize.gif
deleted file mode 100644
index 3b4d5b632a..0000000000
Binary files a/public/img/learnpath_organize.gif and /dev/null differ
diff --git a/public/img/learnpath_organize_na.gif b/public/img/learnpath_organize_na.gif
deleted file mode 100644
index 77b96a4218..0000000000
Binary files a/public/img/learnpath_organize_na.gif and /dev/null differ
diff --git a/public/img/learnpath_view.gif b/public/img/learnpath_view.gif
deleted file mode 100644
index 7b30eb2432..0000000000
Binary files a/public/img/learnpath_view.gif and /dev/null differ
diff --git a/public/img/learnpath_view_na.gif b/public/img/learnpath_view_na.gif
deleted file mode 100644
index 28948ccd7e..0000000000
Binary files a/public/img/learnpath_view_na.gif and /dev/null differ
diff --git a/public/img/level_0.png b/public/img/level_0.png
deleted file mode 100644
index 8d3ae8531b..0000000000
Binary files a/public/img/level_0.png and /dev/null differ
diff --git a/public/img/level_10.png b/public/img/level_10.png
deleted file mode 100644
index 7b4dfbbc26..0000000000
Binary files a/public/img/level_10.png and /dev/null differ
diff --git a/public/img/level_100.png b/public/img/level_100.png
deleted file mode 100644
index 0798261c44..0000000000
Binary files a/public/img/level_100.png and /dev/null differ
diff --git a/public/img/level_20.png b/public/img/level_20.png
deleted file mode 100644
index 496c3b7e61..0000000000
Binary files a/public/img/level_20.png and /dev/null differ
diff --git a/public/img/level_30.png b/public/img/level_30.png
deleted file mode 100644
index fb4bdb0076..0000000000
Binary files a/public/img/level_30.png and /dev/null differ
diff --git a/public/img/level_40.png b/public/img/level_40.png
deleted file mode 100644
index 2007905912..0000000000
Binary files a/public/img/level_40.png and /dev/null differ
diff --git a/public/img/level_50.png b/public/img/level_50.png
deleted file mode 100644
index da99f8dcb8..0000000000
Binary files a/public/img/level_50.png and /dev/null differ
diff --git a/public/img/level_60.png b/public/img/level_60.png
deleted file mode 100644
index cc6d179e5b..0000000000
Binary files a/public/img/level_60.png and /dev/null differ
diff --git a/public/img/level_70.png b/public/img/level_70.png
deleted file mode 100644
index f5bcfe24ab..0000000000
Binary files a/public/img/level_70.png and /dev/null differ
diff --git a/public/img/level_80.png b/public/img/level_80.png
deleted file mode 100644
index b462530b12..0000000000
Binary files a/public/img/level_80.png and /dev/null differ
diff --git a/public/img/level_90.png b/public/img/level_90.png
deleted file mode 100644
index a2a2a1ae05..0000000000
Binary files a/public/img/level_90.png and /dev/null differ
diff --git a/public/img/level_one.png b/public/img/level_one.png
deleted file mode 100644
index 201d55bfbe..0000000000
Binary files a/public/img/level_one.png and /dev/null differ
diff --git a/public/img/level_tree.png b/public/img/level_tree.png
deleted file mode 100644
index 04493e79bc..0000000000
Binary files a/public/img/level_tree.png and /dev/null differ
diff --git a/public/img/level_two.png b/public/img/level_two.png
deleted file mode 100644
index 0d2e0455f5..0000000000
Binary files a/public/img/level_two.png and /dev/null differ
diff --git a/public/img/link_blank.gif b/public/img/link_blank.gif
deleted file mode 100644
index f970a5b384..0000000000
Binary files a/public/img/link_blank.gif and /dev/null differ
diff --git a/public/img/linphone.gif b/public/img/linphone.gif
deleted file mode 100644
index 2a5b8e4cbb..0000000000
Binary files a/public/img/linphone.gif and /dev/null differ
diff --git a/public/img/lock.gif b/public/img/lock.gif
deleted file mode 100644
index b33fd89dd6..0000000000
Binary files a/public/img/lock.gif and /dev/null differ
diff --git a/public/img/lockthread.gif b/public/img/lockthread.gif
deleted file mode 100644
index bb4dc4597a..0000000000
Binary files a/public/img/lockthread.gif and /dev/null differ
diff --git a/public/img/login_as.gif b/public/img/login_as.gif
deleted file mode 100644
index ddd8af9f12..0000000000
Binary files a/public/img/login_as.gif and /dev/null differ
diff --git a/public/img/login_as_na.gif b/public/img/login_as_na.gif
deleted file mode 100644
index 4243ea9fe6..0000000000
Binary files a/public/img/login_as_na.gif and /dev/null differ
diff --git a/public/img/lp.gif b/public/img/lp.gif
deleted file mode 100644
index 3997cbc9fd..0000000000
Binary files a/public/img/lp.gif and /dev/null differ
diff --git a/public/img/lp_author_background.gif b/public/img/lp_author_background.gif
deleted file mode 100644
index 2ed64a84ab..0000000000
Binary files a/public/img/lp_author_background.gif and /dev/null differ
diff --git a/public/img/lp_dir.png b/public/img/lp_dir.png
deleted file mode 100644
index c796c0a2a8..0000000000
Binary files a/public/img/lp_dir.png and /dev/null differ
diff --git a/public/img/lp_dir_bis.png b/public/img/lp_dir_bis.png
deleted file mode 100644
index 779ad58efc..0000000000
Binary files a/public/img/lp_dir_bis.png and /dev/null differ
diff --git a/public/img/lp_document.gif b/public/img/lp_document.gif
deleted file mode 100644
index e692d248be..0000000000
Binary files a/public/img/lp_document.gif and /dev/null differ
diff --git a/public/img/lp_document.png b/public/img/lp_document.png
index 813f712f72..158e31941a 100644
Binary files a/public/img/lp_document.png and b/public/img/lp_document.png differ
diff --git a/public/img/lp_document_file.gif b/public/img/lp_document_file.gif
deleted file mode 100644
index dcda8a95c0..0000000000
Binary files a/public/img/lp_document_file.gif and /dev/null differ
diff --git a/public/img/lp_dokeos_chapter.png b/public/img/lp_dokeos_chapter.png
deleted file mode 100644
index c796c0a2a8..0000000000
Binary files a/public/img/lp_dokeos_chapter.png and /dev/null differ
diff --git a/public/img/lp_dokeos_chapter_add.gif b/public/img/lp_dokeos_chapter_add.gif
deleted file mode 100644
index b3dc3685a1..0000000000
Binary files a/public/img/lp_dokeos_chapter_add.gif and /dev/null differ
diff --git a/public/img/lp_dokeos_chapter_add.png b/public/img/lp_dokeos_chapter_add.png
deleted file mode 100644
index d5eac9bccd..0000000000
Binary files a/public/img/lp_dokeos_chapter_add.png and /dev/null differ
diff --git a/public/img/lp_dokeos_chapter_bis.png b/public/img/lp_dokeos_chapter_bis.png
deleted file mode 100644
index 779ad58efc..0000000000
Binary files a/public/img/lp_dokeos_chapter_bis.png and /dev/null differ
diff --git a/public/img/lp_dokeos_module.gif b/public/img/lp_dokeos_module.gif
deleted file mode 100644
index b9a99beb51..0000000000
Binary files a/public/img/lp_dokeos_module.gif and /dev/null differ
diff --git a/public/img/lp_dokeos_module.png b/public/img/lp_dokeos_module.png
deleted file mode 100644
index 7d863f9497..0000000000
Binary files a/public/img/lp_dokeos_module.png and /dev/null differ
diff --git a/public/img/lp_dokeos_module_add.png b/public/img/lp_dokeos_module_add.png
deleted file mode 100644
index a171f01036..0000000000
Binary files a/public/img/lp_dokeos_module_add.png and /dev/null differ
diff --git a/public/img/lp_dokeos_step_add.png b/public/img/lp_dokeos_step_add.png
deleted file mode 100644
index aa23dde374..0000000000
Binary files a/public/img/lp_dokeos_step_add.png and /dev/null differ
diff --git a/public/img/lp_folder.gif b/public/img/lp_folder.gif
deleted file mode 100644
index 8e4da842e7..0000000000
Binary files a/public/img/lp_folder.gif and /dev/null differ
diff --git a/public/img/lp_forum.gif b/public/img/lp_forum.gif
deleted file mode 100644
index 69f878d924..0000000000
Binary files a/public/img/lp_forum.gif and /dev/null differ
diff --git a/public/img/lp_leftarrow.gif b/public/img/lp_leftarrow.gif
deleted file mode 100644
index 5dbd50a9e4..0000000000
Binary files a/public/img/lp_leftarrow.gif and /dev/null differ
diff --git a/public/img/lp_link.gif b/public/img/lp_link.gif
deleted file mode 100644
index b5ff025f8f..0000000000
Binary files a/public/img/lp_link.gif and /dev/null differ
diff --git a/public/img/lp_link_blank.png b/public/img/lp_link_blank.png
deleted file mode 100644
index dc6151acb1..0000000000
Binary files a/public/img/lp_link_blank.png and /dev/null differ
diff --git a/public/img/lp_link_self.png b/public/img/lp_link_self.png
deleted file mode 100644
index bf7bd1c9bf..0000000000
Binary files a/public/img/lp_link_self.png and /dev/null differ
diff --git a/public/img/lp_quiz.gif b/public/img/lp_quiz.gif
deleted file mode 100644
index f48aeb61b5..0000000000
Binary files a/public/img/lp_quiz.gif and /dev/null differ
diff --git a/public/img/lp_quiz_na.gif b/public/img/lp_quiz_na.gif
deleted file mode 100644
index 0cc9d57631..0000000000
Binary files a/public/img/lp_quiz_na.gif and /dev/null differ
diff --git a/public/img/lp_rightarrow.gif b/public/img/lp_rightarrow.gif
deleted file mode 100644
index a467fe073c..0000000000
Binary files a/public/img/lp_rightarrow.gif and /dev/null differ
diff --git a/public/img/lp_stats.gif b/public/img/lp_stats.gif
deleted file mode 100644
index b7575a371f..0000000000
Binary files a/public/img/lp_stats.gif and /dev/null differ
diff --git a/public/img/lp_student_publication.gif b/public/img/lp_student_publication.gif
deleted file mode 100644
index 8fb2234e15..0000000000
Binary files a/public/img/lp_student_publication.gif and /dev/null differ
diff --git a/public/img/lp_thread.gif b/public/img/lp_thread.gif
deleted file mode 100644
index 9a0d1cf086..0000000000
Binary files a/public/img/lp_thread.gif and /dev/null differ
diff --git a/public/img/lp_thread.png b/public/img/lp_thread.png
new file mode 100644
index 0000000000..4264a20ebc
Binary files /dev/null and b/public/img/lp_thread.png differ
diff --git a/public/img/lp_thread_forum.gif b/public/img/lp_thread_forum.gif
deleted file mode 100644
index 3bb710bd36..0000000000
Binary files a/public/img/lp_thread_forum.gif and /dev/null differ
diff --git a/public/img/lp_thread_forum.png b/public/img/lp_thread_forum.png
new file mode 100644
index 0000000000..fd0ad4d091
Binary files /dev/null and b/public/img/lp_thread_forum.png differ
diff --git a/public/img/m.gif b/public/img/m.gif
deleted file mode 100644
index 37eb3680d0..0000000000
Binary files a/public/img/m.gif and /dev/null differ
diff --git a/public/img/mail.png b/public/img/mail.png
deleted file mode 100644
index 789a5ea3c1..0000000000
Binary files a/public/img/mail.png and /dev/null differ
diff --git a/public/img/mail_open.png b/public/img/mail_open.png
deleted file mode 100644
index 512378508b..0000000000
Binary files a/public/img/mail_open.png and /dev/null differ
diff --git a/public/img/mail_send.png b/public/img/mail_send.png
deleted file mode 100644
index 4b72194e0c..0000000000
Binary files a/public/img/mail_send.png and /dev/null differ
diff --git a/public/img/matching_na.png b/public/img/matching_na.png
deleted file mode 100644
index 1e464de3be..0000000000
Binary files a/public/img/matching_na.png and /dev/null differ
diff --git a/public/img/mcma_na.png b/public/img/mcma_na.png
deleted file mode 100644
index b5d013d7c0..0000000000
Binary files a/public/img/mcma_na.png and /dev/null differ
diff --git a/public/img/mcmac_na.png b/public/img/mcmac_na.png
deleted file mode 100644
index 47e14863de..0000000000
Binary files a/public/img/mcmac_na.png and /dev/null differ
diff --git a/public/img/mcmaco_na.png b/public/img/mcmaco_na.png
deleted file mode 100644
index 47c999a46e..0000000000
Binary files a/public/img/mcmaco_na.png and /dev/null differ
diff --git a/public/img/mcmagl_na.png b/public/img/mcmagl_na.png
deleted file mode 100644
index 5fc5c52cf0..0000000000
Binary files a/public/img/mcmagl_na.png and /dev/null differ
diff --git a/public/img/mcmao_na.png b/public/img/mcmao_na.png
deleted file mode 100644
index 06b66fbc6c..0000000000
Binary files a/public/img/mcmao_na.png and /dev/null differ
diff --git a/public/img/mcua_na.png b/public/img/mcua_na.png
deleted file mode 100644
index db4518e55d..0000000000
Binary files a/public/img/mcua_na.png and /dev/null differ
diff --git a/public/img/mcuao_na.png b/public/img/mcuao_na.png
deleted file mode 100644
index 0aa7373cfe..0000000000
Binary files a/public/img/mcuao_na.png and /dev/null differ
diff --git a/public/img/message_confirmation.gif b/public/img/message_confirmation.gif
deleted file mode 100644
index f400aaf02e..0000000000
Binary files a/public/img/message_confirmation.gif and /dev/null differ
diff --git a/public/img/message_delete.png b/public/img/message_delete.png
deleted file mode 100644
index 7b1430ae61..0000000000
Binary files a/public/img/message_delete.png and /dev/null differ
diff --git a/public/img/message_error.gif b/public/img/message_error.gif
deleted file mode 100644
index 3a1ccfe6ed..0000000000
Binary files a/public/img/message_error.gif and /dev/null differ
diff --git a/public/img/message_normal.gif b/public/img/message_normal.gif
deleted file mode 100644
index 93a10d65da..0000000000
Binary files a/public/img/message_normal.gif and /dev/null differ
diff --git a/public/img/message_warning.png b/public/img/message_warning.png
deleted file mode 100644
index 6d5c2481a6..0000000000
Binary files a/public/img/message_warning.png and /dev/null differ
diff --git a/public/img/messagebox_warning.gif b/public/img/messagebox_warning.gif
deleted file mode 100644
index a61de782bb..0000000000
Binary files a/public/img/messagebox_warning.gif and /dev/null differ
diff --git a/public/img/mid.gif b/public/img/mid.gif
deleted file mode 100644
index ea7302cb16..0000000000
Binary files a/public/img/mid.gif and /dev/null differ
diff --git a/public/img/misc.gif b/public/img/misc.gif
deleted file mode 100644
index a88db159bd..0000000000
Binary files a/public/img/misc.gif and /dev/null differ
diff --git a/public/img/mov.gif b/public/img/mov.gif
deleted file mode 100644
index 55f2116261..0000000000
Binary files a/public/img/mov.gif and /dev/null differ
diff --git a/public/img/mp3.gif b/public/img/mp3.gif
deleted file mode 100644
index acf1a5015f..0000000000
Binary files a/public/img/mp3.gif and /dev/null differ
diff --git a/public/img/mpeg.gif b/public/img/mpeg.gif
deleted file mode 100644
index 55f2116261..0000000000
Binary files a/public/img/mpeg.gif and /dev/null differ
diff --git a/public/img/n.gif b/public/img/n.gif
deleted file mode 100644
index 9cbf0a4ce9..0000000000
Binary files a/public/img/n.gif and /dev/null differ
diff --git a/public/img/new_test_small.gif b/public/img/new_test_small.gif
deleted file mode 100644
index 45a2aa9477..0000000000
Binary files a/public/img/new_test_small.gif and /dev/null differ
diff --git a/public/img/next.gif b/public/img/next.gif
deleted file mode 100644
index c0f8c741e8..0000000000
Binary files a/public/img/next.gif and /dev/null differ
diff --git a/public/img/odg.gif b/public/img/odg.gif
deleted file mode 100644
index 14c9023e12..0000000000
Binary files a/public/img/odg.gif and /dev/null differ
diff --git a/public/img/odp.gif b/public/img/odp.gif
deleted file mode 100644
index 12e4d4d6c1..0000000000
Binary files a/public/img/odp.gif and /dev/null differ
diff --git a/public/img/ods.gif b/public/img/ods.gif
deleted file mode 100644
index c88534b265..0000000000
Binary files a/public/img/ods.gif and /dev/null differ
diff --git a/public/img/odt.gif b/public/img/odt.gif
deleted file mode 100644
index 43d1e22866..0000000000
Binary files a/public/img/odt.gif and /dev/null differ
diff --git a/public/img/online.gif b/public/img/online.gif
deleted file mode 100644
index be294ab5da..0000000000
Binary files a/public/img/online.gif and /dev/null differ
diff --git a/public/img/opendir.gif b/public/img/opendir.gif
deleted file mode 100644
index 39460a14af..0000000000
Binary files a/public/img/opendir.gif and /dev/null differ
diff --git a/public/img/p_leftarrow.gif b/public/img/p_leftarrow.gif
deleted file mode 100644
index 5057f93e84..0000000000
Binary files a/public/img/p_leftarrow.gif and /dev/null differ
diff --git a/public/img/passed.gif b/public/img/passed.gif
deleted file mode 100644
index 7a5400a356..0000000000
Binary files a/public/img/passed.gif and /dev/null differ
diff --git a/public/img/pdf.gif b/public/img/pdf.gif
deleted file mode 100644
index 193178c1f8..0000000000
Binary files a/public/img/pdf.gif and /dev/null differ
diff --git a/public/img/personal.gif b/public/img/personal.gif
deleted file mode 100644
index 58f39f07a3..0000000000
Binary files a/public/img/personal.gif and /dev/null differ
diff --git a/public/img/pixel.gif b/public/img/pixel.gif
deleted file mode 100644
index 8c627378f3..0000000000
Binary files a/public/img/pixel.gif and /dev/null differ
diff --git a/public/img/plugin.gif b/public/img/plugin.gif
deleted file mode 100644
index 876be83daa..0000000000
Binary files a/public/img/plugin.gif and /dev/null differ
diff --git a/public/img/plugins.gif b/public/img/plugins.gif
deleted file mode 100644
index 2c3a135d7e..0000000000
Binary files a/public/img/plugins.gif and /dev/null differ
diff --git a/public/img/porcent.png b/public/img/porcent.png
deleted file mode 100644
index 27c7d62f09..0000000000
Binary files a/public/img/porcent.png and /dev/null differ
diff --git a/public/img/posticon.gif b/public/img/posticon.gif
deleted file mode 100644
index 5cef29a417..0000000000
Binary files a/public/img/posticon.gif and /dev/null differ
diff --git a/public/img/powerpoint.gif b/public/img/powerpoint.gif
deleted file mode 100644
index 67d8d6a345..0000000000
Binary files a/public/img/powerpoint.gif and /dev/null differ
diff --git a/public/img/powerpoint_small.gif b/public/img/powerpoint_small.gif
deleted file mode 100644
index e1b34a23ee..0000000000
Binary files a/public/img/powerpoint_small.gif and /dev/null differ
diff --git a/public/img/ppt.gif b/public/img/ppt.gif
deleted file mode 100644
index 550bb7761a..0000000000
Binary files a/public/img/ppt.gif and /dev/null differ
diff --git a/public/img/preview.gif b/public/img/preview.gif
deleted file mode 100644
index 1e79714e59..0000000000
Binary files a/public/img/preview.gif and /dev/null differ
diff --git a/public/img/previous.gif b/public/img/previous.gif
deleted file mode 100644
index be37b4fa64..0000000000
Binary files a/public/img/previous.gif and /dev/null differ
diff --git a/public/img/print.gif b/public/img/print.gif
deleted file mode 100644
index 1424efe768..0000000000
Binary files a/public/img/print.gif and /dev/null differ
diff --git a/public/img/profile.gif b/public/img/profile.gif
deleted file mode 100644
index 2085880992..0000000000
Binary files a/public/img/profile.gif and /dev/null differ
diff --git a/public/img/px_black.gif b/public/img/px_black.gif
deleted file mode 100644
index 8624666d94..0000000000
Binary files a/public/img/px_black.gif and /dev/null differ
diff --git a/public/img/px_blue.gif b/public/img/px_blue.gif
deleted file mode 100644
index feaa66f81a..0000000000
Binary files a/public/img/px_blue.gif and /dev/null differ
diff --git a/public/img/px_green.gif b/public/img/px_green.gif
deleted file mode 100644
index afab5f19ac..0000000000
Binary files a/public/img/px_green.gif and /dev/null differ
diff --git a/public/img/px_grey.gif b/public/img/px_grey.gif
deleted file mode 100644
index e0d6689362..0000000000
Binary files a/public/img/px_grey.gif and /dev/null differ
diff --git a/public/img/px_orange.gif b/public/img/px_orange.gif
deleted file mode 100644
index 6ac77bf14f..0000000000
Binary files a/public/img/px_orange.gif and /dev/null differ
diff --git a/public/img/px_purple.gif b/public/img/px_purple.gif
deleted file mode 100644
index 26b5d33cdd..0000000000
Binary files a/public/img/px_purple.gif and /dev/null differ
diff --git a/public/img/px_red.gif b/public/img/px_red.gif
deleted file mode 100644
index 4c639f9878..0000000000
Binary files a/public/img/px_red.gif and /dev/null differ
diff --git a/public/img/px_yellow.gif b/public/img/px_yellow.gif
deleted file mode 100644
index 30139494cb..0000000000
Binary files a/public/img/px_yellow.gif and /dev/null differ
diff --git a/public/img/question_add.gif b/public/img/question_add.gif
deleted file mode 100644
index 2f43acced5..0000000000
Binary files a/public/img/question_add.gif and /dev/null differ
diff --git a/public/img/question_category.gif b/public/img/question_category.gif
deleted file mode 100644
index 8fda0d481a..0000000000
Binary files a/public/img/question_category.gif and /dev/null differ
diff --git a/public/img/question_category_show.gif b/public/img/question_category_show.gif
deleted file mode 100644
index fdf955753f..0000000000
Binary files a/public/img/question_category_show.gif and /dev/null differ
diff --git a/public/img/quizz_small.gif b/public/img/quizz_small.gif
deleted file mode 100644
index 16cad2083e..0000000000
Binary files a/public/img/quizz_small.gif and /dev/null differ
diff --git a/public/img/radio_off.gif b/public/img/radio_off.gif
deleted file mode 100644
index fda3391dcc..0000000000
Binary files a/public/img/radio_off.gif and /dev/null differ
diff --git a/public/img/radio_on.gif b/public/img/radio_on.gif
deleted file mode 100644
index fb6b3de310..0000000000
Binary files a/public/img/radio_on.gif and /dev/null differ
diff --git a/public/img/rar.gif b/public/img/rar.gif
deleted file mode 100644
index 9c0bd5667e..0000000000
Binary files a/public/img/rar.gif and /dev/null differ
diff --git a/public/img/real_upload_frame.gif b/public/img/real_upload_frame.gif
deleted file mode 100644
index 85b35756db..0000000000
Binary files a/public/img/real_upload_frame.gif and /dev/null differ
diff --git a/public/img/real_upload_step.gif b/public/img/real_upload_step.gif
deleted file mode 100644
index 6751b44fce..0000000000
Binary files a/public/img/real_upload_step.gif and /dev/null differ
diff --git a/public/img/recycle.gif b/public/img/recycle.gif
deleted file mode 100644
index 3b950d6729..0000000000
Binary files a/public/img/recycle.gif and /dev/null differ
diff --git a/public/img/refresh.gif b/public/img/refresh.gif
deleted file mode 100644
index 46182b73f9..0000000000
Binary files a/public/img/refresh.gif and /dev/null differ
diff --git a/public/img/restart.jpg b/public/img/restart.jpg
deleted file mode 100644
index 83b846bd02..0000000000
Binary files a/public/img/restart.jpg and /dev/null differ
diff --git a/public/img/right.gif b/public/img/right.gif
deleted file mode 100644
index 04b14459c6..0000000000
Binary files a/public/img/right.gif and /dev/null differ
diff --git a/public/img/save.gif b/public/img/save.gif
deleted file mode 100644
index 25e7658cab..0000000000
Binary files a/public/img/save.gif and /dev/null differ
diff --git a/public/img/save_zip.gif b/public/img/save_zip.gif
deleted file mode 100644
index 984e00db16..0000000000
Binary files a/public/img/save_zip.gif and /dev/null differ
diff --git a/public/img/scorm.gif b/public/img/scorm.gif
deleted file mode 100644
index 35b5422f71..0000000000
Binary files a/public/img/scorm.gif and /dev/null differ
diff --git a/public/img/scorm.jpg b/public/img/scorm.jpg
deleted file mode 100644
index 1e2079e8ae..0000000000
Binary files a/public/img/scorm.jpg and /dev/null differ
diff --git a/public/img/scorm_create.gif b/public/img/scorm_create.gif
deleted file mode 100644
index 91429292c8..0000000000
Binary files a/public/img/scorm_create.gif and /dev/null differ
diff --git a/public/img/scormexitfullscreen.jpg b/public/img/scormexitfullscreen.jpg
deleted file mode 100644
index a80ec4f50c..0000000000
Binary files a/public/img/scormexitfullscreen.jpg and /dev/null differ
diff --git a/public/img/scormfullscreen.jpg b/public/img/scormfullscreen.jpg
deleted file mode 100644
index 2f972e2a1b..0000000000
Binary files a/public/img/scormfullscreen.jpg and /dev/null differ
diff --git a/public/img/scormline.jpg b/public/img/scormline.jpg
deleted file mode 100644
index bd1532ed64..0000000000
Binary files a/public/img/scormline.jpg and /dev/null differ
diff --git a/public/img/scormpre.gif b/public/img/scormpre.gif
deleted file mode 100644
index fe3f2bb87c..0000000000
Binary files a/public/img/scormpre.gif and /dev/null differ
diff --git a/public/img/scormrestart.jpg b/public/img/scormrestart.jpg
deleted file mode 100644
index 7e00adc350..0000000000
Binary files a/public/img/scormrestart.jpg and /dev/null differ
diff --git a/public/img/scormstatus.gif b/public/img/scormstatus.gif
deleted file mode 100644
index cae2550320..0000000000
Binary files a/public/img/scormstatus.gif and /dev/null differ
diff --git a/public/img/screenshot_bandwidth.jpg b/public/img/screenshot_bandwidth.jpg
deleted file mode 100644
index 9bd846b533..0000000000
Binary files a/public/img/screenshot_bandwidth.jpg and /dev/null differ
diff --git a/public/img/screenshot_conf.jpg b/public/img/screenshot_conf.jpg
deleted file mode 100644
index 15211cf409..0000000000
Binary files a/public/img/screenshot_conf.jpg and /dev/null differ
diff --git a/public/img/screenshot_serverstats.jpg b/public/img/screenshot_serverstats.jpg
deleted file mode 100644
index c2782f3e2a..0000000000
Binary files a/public/img/screenshot_serverstats.jpg and /dev/null differ
diff --git a/public/img/search_na.gif b/public/img/search_na.gif
deleted file mode 100644
index 55f9380781..0000000000
Binary files a/public/img/search_na.gif and /dev/null differ
diff --git a/public/img/send_mail.gif b/public/img/send_mail.gif
deleted file mode 100644
index 4004faf1c8..0000000000
Binary files a/public/img/send_mail.gif and /dev/null differ
diff --git a/public/img/send_mail_checked.gif b/public/img/send_mail_checked.gif
deleted file mode 100644
index 184a53f0d2..0000000000
Binary files a/public/img/send_mail_checked.gif and /dev/null differ
diff --git a/public/img/session.png b/public/img/session.png
deleted file mode 100644
index c4455ed848..0000000000
Binary files a/public/img/session.png and /dev/null differ
diff --git a/public/img/session_add.png b/public/img/session_add.png
deleted file mode 100644
index 495215982d..0000000000
Binary files a/public/img/session_add.png and /dev/null differ
diff --git a/public/img/sessions.gif b/public/img/sessions.gif
deleted file mode 100644
index 03055999c6..0000000000
Binary files a/public/img/sessions.gif and /dev/null differ
diff --git a/public/img/settings bis.png b/public/img/settings bis.png
deleted file mode 100644
index 915c499f88..0000000000
Binary files a/public/img/settings bis.png and /dev/null differ
diff --git a/public/img/settings.gif b/public/img/settings.gif
deleted file mode 100644
index 16775df1bd..0000000000
Binary files a/public/img/settings.gif and /dev/null differ
diff --git a/public/img/settings.png b/public/img/settings.png
deleted file mode 100644
index 163496fd3b..0000000000
Binary files a/public/img/settings.png and /dev/null differ
diff --git a/public/img/settings_na.gif b/public/img/settings_na.gif
deleted file mode 100644
index fe8cc1928e..0000000000
Binary files a/public/img/settings_na.gif and /dev/null differ
diff --git a/public/img/settings_na.png b/public/img/settings_na.png
deleted file mode 100644
index 0a2b879851..0000000000
Binary files a/public/img/settings_na.png and /dev/null differ
diff --git a/public/img/shared_folder.gif b/public/img/shared_folder.gif
deleted file mode 100644
index 8b65099e6b..0000000000
Binary files a/public/img/shared_folder.gif and /dev/null differ
diff --git a/public/img/sheet.gif b/public/img/sheet.gif
deleted file mode 100644
index 227558e61d..0000000000
Binary files a/public/img/sheet.gif and /dev/null differ
diff --git a/public/img/show_test_results.gif b/public/img/show_test_results.gif
deleted file mode 100644
index 20beba2d74..0000000000
Binary files a/public/img/show_test_results.gif and /dev/null differ
diff --git a/public/img/silde_back.gif b/public/img/silde_back.gif
deleted file mode 100644
index acb3eef0d0..0000000000
Binary files a/public/img/silde_back.gif and /dev/null differ
diff --git a/public/img/silde_next.gif b/public/img/silde_next.gif
deleted file mode 100644
index 7c36b00bf0..0000000000
Binary files a/public/img/silde_next.gif and /dev/null differ
diff --git a/public/img/slide_first.png b/public/img/slide_first.png
deleted file mode 100644
index 5439dce60e..0000000000
Binary files a/public/img/slide_first.png and /dev/null differ
diff --git a/public/img/slide_first_na.png b/public/img/slide_first_na.png
deleted file mode 100644
index 504a9308f9..0000000000
Binary files a/public/img/slide_first_na.png and /dev/null differ
diff --git a/public/img/slide_last.png b/public/img/slide_last.png
deleted file mode 100644
index 179509c47c..0000000000
Binary files a/public/img/slide_last.png and /dev/null differ
diff --git a/public/img/slide_last_na.png b/public/img/slide_last_na.png
deleted file mode 100644
index 421fd66303..0000000000
Binary files a/public/img/slide_last_na.png and /dev/null differ
diff --git a/public/img/slide_next.png b/public/img/slide_next.png
deleted file mode 100644
index b41fa2b975..0000000000
Binary files a/public/img/slide_next.png and /dev/null differ
diff --git a/public/img/slide_next_na.png b/public/img/slide_next_na.png
deleted file mode 100644
index 3e32a988b5..0000000000
Binary files a/public/img/slide_next_na.png and /dev/null differ
diff --git a/public/img/slide_previous.png b/public/img/slide_previous.png
deleted file mode 100644
index 3adfba3b7b..0000000000
Binary files a/public/img/slide_previous.png and /dev/null differ
diff --git a/public/img/slide_previous_na.png b/public/img/slide_previous_na.png
deleted file mode 100644
index bd1d7e138e..0000000000
Binary files a/public/img/slide_previous_na.png and /dev/null differ
diff --git a/public/img/sort_asc.png b/public/img/sort_asc.png
deleted file mode 100644
index 2531615c7a..0000000000
Binary files a/public/img/sort_asc.png and /dev/null differ
diff --git a/public/img/sort_desc.png b/public/img/sort_desc.png
deleted file mode 100644
index ba651e22b1..0000000000
Binary files a/public/img/sort_desc.png and /dev/null differ
diff --git a/public/img/spacer.gif b/public/img/spacer.gif
deleted file mode 100644
index 980c8955f6..0000000000
Binary files a/public/img/spacer.gif and /dev/null differ
diff --git a/public/img/speaker.gif b/public/img/speaker.gif
deleted file mode 100644
index d190220561..0000000000
Binary files a/public/img/speaker.gif and /dev/null differ
diff --git a/public/img/spire.gif b/public/img/spire.gif
deleted file mode 100644
index 819bdbceae..0000000000
Binary files a/public/img/spire.gif and /dev/null differ
diff --git a/public/img/splash.png b/public/img/splash.png
deleted file mode 100644
index 6cc86a506f..0000000000
Binary files a/public/img/splash.png and /dev/null differ
diff --git a/public/img/spreadsheet.gif b/public/img/spreadsheet.gif
deleted file mode 100644
index 2395608b2c..0000000000
Binary files a/public/img/spreadsheet.gif and /dev/null differ
diff --git a/public/img/statistics_admin.gif b/public/img/statistics_admin.gif
deleted file mode 100644
index ac36da81fa..0000000000
Binary files a/public/img/statistics_admin.gif and /dev/null differ
diff --git a/public/img/statistics_bis.gif b/public/img/statistics_bis.gif
deleted file mode 100644
index ac36da81fa..0000000000
Binary files a/public/img/statistics_bis.gif and /dev/null differ
diff --git a/public/img/stats_access.gif b/public/img/stats_access.gif
deleted file mode 100644
index 011e51bb4c..0000000000
Binary files a/public/img/stats_access.gif and /dev/null differ
diff --git a/public/img/streaming.jpg b/public/img/streaming.jpg
deleted file mode 100644
index 1e84731556..0000000000
Binary files a/public/img/streaming.jpg and /dev/null differ
diff --git a/public/img/students.gif b/public/img/students.gif
deleted file mode 100644
index da34cdfa1c..0000000000
Binary files a/public/img/students.gif and /dev/null differ
diff --git a/public/img/submit_file.gif b/public/img/submit_file.gif
deleted file mode 100644
index 575805f937..0000000000
Binary files a/public/img/submit_file.gif and /dev/null differ
diff --git a/public/img/succeeded.gif b/public/img/succeeded.gif
deleted file mode 100644
index 7a5400a356..0000000000
Binary files a/public/img/succeeded.gif and /dev/null differ
diff --git a/public/img/succeeded.png b/public/img/succeeded.png
deleted file mode 100644
index ceb0352a98..0000000000
Binary files a/public/img/succeeded.png and /dev/null differ
diff --git a/public/img/survey_publish.gif b/public/img/survey_publish.gif
deleted file mode 100644
index 1606205ab9..0000000000
Binary files a/public/img/survey_publish.gif and /dev/null differ
diff --git a/public/img/survey_reporting_comparative.gif b/public/img/survey_reporting_comparative.gif
deleted file mode 100644
index 8addfce6dd..0000000000
Binary files a/public/img/survey_reporting_comparative.gif and /dev/null differ
diff --git a/public/img/survey_reporting_complete.gif b/public/img/survey_reporting_complete.gif
deleted file mode 100644
index db232b0983..0000000000
Binary files a/public/img/survey_reporting_complete.gif and /dev/null differ
diff --git a/public/img/survey_reporting_question.gif b/public/img/survey_reporting_question.gif
deleted file mode 100644
index 949aee8dec..0000000000
Binary files a/public/img/survey_reporting_question.gif and /dev/null differ
diff --git a/public/img/survey_reporting_user.gif b/public/img/survey_reporting_user.gif
deleted file mode 100644
index fb145c53ba..0000000000
Binary files a/public/img/survey_reporting_user.gif and /dev/null differ
diff --git a/public/img/surveyadd.gif b/public/img/surveyadd.gif
deleted file mode 100644
index cd4453fce8..0000000000
Binary files a/public/img/surveyadd.gif and /dev/null differ
diff --git a/public/img/synthese_view.gif b/public/img/synthese_view.gif
deleted file mode 100644
index 29bf534c6b..0000000000
Binary files a/public/img/synthese_view.gif and /dev/null differ
diff --git a/public/img/synthese_view_na.gif b/public/img/synthese_view_na.gif
deleted file mode 100644
index 76e3610005..0000000000
Binary files a/public/img/synthese_view_na.gif and /dev/null differ
diff --git a/public/img/t.gif b/public/img/t.gif
deleted file mode 100644
index cf2335f6da..0000000000
Binary files a/public/img/t.gif and /dev/null differ
diff --git a/public/img/talk.png b/public/img/talk.png
deleted file mode 100644
index 81c2b3d723..0000000000
Binary files a/public/img/talk.png and /dev/null differ
diff --git a/public/img/teachers.gif b/public/img/teachers.gif
deleted file mode 100644
index 8970f57543..0000000000
Binary files a/public/img/teachers.gif and /dev/null differ
diff --git a/public/img/template.gif b/public/img/template.gif
deleted file mode 100644
index 28c7436f9a..0000000000
Binary files a/public/img/template.gif and /dev/null differ
diff --git a/public/img/template_add.gif b/public/img/template_add.gif
deleted file mode 100644
index 664155eec2..0000000000
Binary files a/public/img/template_add.gif and /dev/null differ
diff --git a/public/img/templates.gif b/public/img/templates.gif
deleted file mode 100644
index 3ff3d4fbe6..0000000000
Binary files a/public/img/templates.gif and /dev/null differ
diff --git a/public/img/test_add_limit.gif b/public/img/test_add_limit.gif
deleted file mode 100644
index 102b7fb49f..0000000000
Binary files a/public/img/test_add_limit.gif and /dev/null differ
diff --git a/public/img/theme.gif b/public/img/theme.gif
deleted file mode 100644
index 10618ab0dc..0000000000
Binary files a/public/img/theme.gif and /dev/null differ
diff --git a/public/img/theme_add.gif b/public/img/theme_add.gif
deleted file mode 100644
index 98822b8328..0000000000
Binary files a/public/img/theme_add.gif and /dev/null differ
diff --git a/public/img/top.gif b/public/img/top.gif
deleted file mode 100644
index 9a493a2648..0000000000
Binary files a/public/img/top.gif and /dev/null differ
diff --git a/public/img/tuning.gif b/public/img/tuning.gif
deleted file mode 100644
index 08a7f2947b..0000000000
Binary files a/public/img/tuning.gif and /dev/null differ
diff --git a/public/img/txt.gif b/public/img/txt.gif
deleted file mode 100644
index 343f27f514..0000000000
Binary files a/public/img/txt.gif and /dev/null differ
diff --git a/public/img/un_check.gif b/public/img/un_check.gif
deleted file mode 100644
index 12e4ea1a03..0000000000
Binary files a/public/img/un_check.gif and /dev/null differ
diff --git a/public/img/uncheck.gif b/public/img/uncheck.gif
deleted file mode 100644
index 5023b7bdc7..0000000000
Binary files a/public/img/uncheck.gif and /dev/null differ
diff --git a/public/img/undelete.gif b/public/img/undelete.gif
deleted file mode 100644
index 961faba870..0000000000
Binary files a/public/img/undelete.gif and /dev/null differ
diff --git a/public/img/unlock.gif b/public/img/unlock.gif
deleted file mode 100644
index e9c0ccc146..0000000000
Binary files a/public/img/unlock.gif and /dev/null differ
diff --git a/public/img/user_info.gif b/public/img/user_info.gif
deleted file mode 100644
index 24a6057a01..0000000000
Binary files a/public/img/user_info.gif and /dev/null differ
diff --git a/public/img/valves_add.gif b/public/img/valves_add.gif
deleted file mode 100644
index fd6b65a7e6..0000000000
Binary files a/public/img/valves_add.gif and /dev/null differ
diff --git a/public/img/valves_delete.gif b/public/img/valves_delete.gif
deleted file mode 100644
index b01302c65e..0000000000
Binary files a/public/img/valves_delete.gif and /dev/null differ
diff --git a/public/img/valvesdelete.gif b/public/img/valvesdelete.gif
deleted file mode 100644
index b22327849d..0000000000
Binary files a/public/img/valvesdelete.gif and /dev/null differ
diff --git a/public/img/verticalruler.gif b/public/img/verticalruler.gif
deleted file mode 100644
index a334f0576b..0000000000
Binary files a/public/img/verticalruler.gif and /dev/null differ
diff --git a/public/img/videos.gif b/public/img/videos.gif
deleted file mode 100644
index 01cccb1af1..0000000000
Binary files a/public/img/videos.gif and /dev/null differ
diff --git a/public/img/view_choose.gif b/public/img/view_choose.gif
deleted file mode 100644
index 54237795b2..0000000000
Binary files a/public/img/view_choose.gif and /dev/null differ
diff --git a/public/img/view_choose_na.gif b/public/img/view_choose_na.gif
deleted file mode 100644
index 8beeb5c828..0000000000
Binary files a/public/img/view_choose_na.gif and /dev/null differ
diff --git a/public/img/view_embedframe.gif b/public/img/view_embedframe.gif
deleted file mode 100644
index 6a33f5dca7..0000000000
Binary files a/public/img/view_embedframe.gif and /dev/null differ
diff --git a/public/img/view_fullscreen.gif b/public/img/view_fullscreen.gif
deleted file mode 100644
index cb3a9abb0a..0000000000
Binary files a/public/img/view_fullscreen.gif and /dev/null differ
diff --git a/public/img/view_fullscreen_na.gif b/public/img/view_fullscreen_na.gif
deleted file mode 100644
index eb5caa606f..0000000000
Binary files a/public/img/view_fullscreen_na.gif and /dev/null differ
diff --git a/public/img/view_table.gif b/public/img/view_table.gif
deleted file mode 100644
index b6544f011c..0000000000
Binary files a/public/img/view_table.gif and /dev/null differ
diff --git a/public/img/visible.gif b/public/img/visible.gif
deleted file mode 100644
index 25e92a71a1..0000000000
Binary files a/public/img/visible.gif and /dev/null differ
diff --git a/public/img/visible_LP_list.gif b/public/img/visible_LP_list.gif
deleted file mode 100644
index 6d62311ea7..0000000000
Binary files a/public/img/visible_LP_list.gif and /dev/null differ
diff --git a/public/img/visio.gif b/public/img/visio.gif
deleted file mode 100644
index 5104eb21ad..0000000000
Binary files a/public/img/visio.gif and /dev/null differ
diff --git a/public/img/visio_meeting.gif b/public/img/visio_meeting.gif
deleted file mode 100644
index 2b1eff7f21..0000000000
Binary files a/public/img/visio_meeting.gif and /dev/null differ
diff --git a/public/img/visio_meeting_na.gif b/public/img/visio_meeting_na.gif
deleted file mode 100644
index 9d3b30d2ea..0000000000
Binary files a/public/img/visio_meeting_na.gif and /dev/null differ
diff --git a/public/img/visio_na.gif b/public/img/visio_na.gif
deleted file mode 100644
index 8bfa2234f6..0000000000
Binary files a/public/img/visio_na.gif and /dev/null differ
diff --git a/public/img/wav.gif b/public/img/wav.gif
deleted file mode 100644
index 56d6bf6ab3..0000000000
Binary files a/public/img/wav.gif and /dev/null differ
diff --git a/public/img/wizard.gif b/public/img/wizard.gif
deleted file mode 100644
index 12b4c63eab..0000000000
Binary files a/public/img/wizard.gif and /dev/null differ
diff --git a/public/img/wizard_gray.gif b/public/img/wizard_gray.gif
deleted file mode 100644
index 26ee9aa55c..0000000000
Binary files a/public/img/wizard_gray.gif and /dev/null differ
diff --git a/public/img/wizard_gray_small.gif b/public/img/wizard_gray_small.gif
deleted file mode 100644
index 52497d66cc..0000000000
Binary files a/public/img/wizard_gray_small.gif and /dev/null differ
diff --git a/public/img/wizard_small.gif b/public/img/wizard_small.gif
deleted file mode 100644
index b1512d8c0e..0000000000
Binary files a/public/img/wizard_small.gif and /dev/null differ
diff --git a/public/img/woogie.gif b/public/img/woogie.gif
deleted file mode 100644
index 4e2aa8ca5c..0000000000
Binary files a/public/img/woogie.gif and /dev/null differ
diff --git a/public/img/word.gif b/public/img/word.gif
deleted file mode 100644
index a65a1aeb4d..0000000000
Binary files a/public/img/word.gif and /dev/null differ
diff --git a/public/img/word_small.gif b/public/img/word_small.gif
deleted file mode 100644
index 7b2501a990..0000000000
Binary files a/public/img/word_small.gif and /dev/null differ
diff --git a/public/img/works_small.gif b/public/img/works_small.gif
deleted file mode 100644
index bb250c78fc..0000000000
Binary files a/public/img/works_small.gif and /dev/null differ
diff --git a/public/img/xls.gif b/public/img/xls.gif
deleted file mode 100644
index 1bd3116015..0000000000
Binary files a/public/img/xls.gif and /dev/null differ
diff --git a/public/img/zip_save.gif b/public/img/zip_save.gif
deleted file mode 100644
index bdac5c6edc..0000000000
Binary files a/public/img/zip_save.gif and /dev/null differ
|