diff --git a/dev/optimize_images.sh b/dev/optimize_images.sh new file mode 100755 index 00000000000..616eec75757 --- /dev/null +++ b/dev/optimize_images.sh @@ -0,0 +1,195 @@ +#!/bin/bash +# Borrowed from https://gist.github.com/lgiraudel/6065155 +# Inplace mode added by Raphaƫl Doursenaud + +PROGNAME=${0##*/} +INPUT='' +QUIET='0' +NOSTATS='0' +INPLACE='0' +max_input_size=0 +max_output_size=0 + +usage() +{ + cat </dev/null + rm -fr $2.firstpass + fi + if [ "${1##*.}" = "jpg" -o "${1##*.}" = "jpeg" ]; then + jpegtran -copy none -progressive $1 > $2 + fi + + output_file_size=$(stat -c%s "$2") + max_output_size=$(expr $max_output_size + $output_file_size) +} + +get_max_file_length() +{ + local maxlength=0 + + IMAGES=$(find $INPUT -regextype posix-extended -regex '.*\.(jpg|jpeg|png)' | grep -v $OUTPUT) + + for CURRENT_IMAGE in $IMAGES; do + filename=$(basename "$CURRENT_IMAGE") + if [[ ${#filename} -gt $maxlength ]]; then + maxlength=${#filename} + fi + done + + echo "$maxlength" +} + +main() +{ + # If $INPUT is empty, then we use current directory + if [[ "$INPUT" == "" ]]; then + INPUT=$(pwd) + fi + + # If $OUTPUT is empty, then we use the directory "output" in the current directory + if [[ "$OUTPUT" == "" ]]; then + OUTPUT=$(pwd)/output + fi + # If inplace, we use /tmp for output + if [[ "$INPLACE" == "1" ]]; then + OUTPUT='/tmp/optimize' + fi + + # We create the output directory + mkdir -p $OUTPUT + + # To avoid some troubles with filename with spaces, we store the current IFS (Internal File Separator)... + SAVEIFS=$IFS + # ...and we set a new one + IFS=$(echo -en "\n\b") + + max_filelength=`get_max_file_length` + pad=$(printf '%0.1s' "."{1..600}) + sDone=' [ DONE ]' + linelength=$(expr $max_filelength + ${#sDone} + 5) + + # Search of all jpg/jpeg/png in $INPUT + # We remove images from $OUTPUT if $OUTPUT is a subdirectory of $INPUT + IMAGES=$(find $INPUT -regextype posix-extended -regex '.*\.(jpg|jpeg|png)' | grep -v $OUTPUT) + + if [ "$QUIET" == "0" ]; then + echo --- Optimizing $INPUT --- + echo + fi + for CURRENT_IMAGE in $IMAGES; do + filename=$(basename $CURRENT_IMAGE) + if [ "$QUIET" == "0" ]; then + printf '%s ' "$filename" + printf '%*.*s' 0 $((linelength - ${#filename} - ${#sDone} )) "$pad" + fi + + optimize_image $CURRENT_IMAGE $OUTPUT/$filename + + # Replace file + if [[ "$INPLACE" == "1" ]]; then + mv $OUTPUT/$filename $CURRENT_IMAGE + fi + + if [ "$QUIET" == "0" ]; then + printf '%s\n' "$sDone" + fi + done + + # Cleanup + if [[ "$INPLACE" == "1" ]]; then + rm -rf $OUTPUT + fi + + # we restore the saved IFS + IFS=$SAVEIFS + + if [ "$NOSTATS" == "0" -a "$QUIET" == "0" ]; then + echo + echo "Input: " $(human_readable_filesize $max_input_size) + echo "Output: " $(human_readable_filesize $max_output_size) + space_saved=$(expr $max_input_size - $max_output_size) + echo "Space save: " $(human_readable_filesize $space_saved) + fi +} + +human_readable_filesize() +{ +echo -n $1 | awk 'function human(x) { + s=" b Kb Mb Gb Tb" + while (x>=1024 && length(s)>1) + {x/=1024; s=substr(s,4)} + s=substr(s,1,4) + xf=(s==" b ")?"%5d ":"%.2f" + return sprintf( xf"%s", x, s) + } + {gsub(/^[0-9]+/, human($1)); print}' +} + +SHORTOPTS="h,i:,o:,q,s,p" +LONGOPTS="help,input:,output:,quiet,no-stats,inplace" +ARGS=$(getopt -s bash --options $SHORTOPTS --longoptions $LONGOPTS --name $PROGNAME -- "$@") + +eval set -- "$ARGS" +while true; do + case $1 in + -h|--help) + usage + exit 0 + ;; + -i|--input) + shift + INPUT=$1 + ;; + -o|--output) + shift + OUTPUT=$1 + ;; + -q|--quiet) + QUIET='1' + ;; + -s|--no-stats) + NOSTATS='1' + ;; + -p|--inplace) + INPLACE='1' + ;; + --) + shift + break + ;; + *) + shift + break + ;; + esac + shift +done + +main + diff --git a/htdocs/theme/amarok/img/1downarrow.png b/htdocs/theme/amarok/img/1downarrow.png old mode 100755 new mode 100644 index aa77afde326..33c655f345d Binary files a/htdocs/theme/amarok/img/1downarrow.png and b/htdocs/theme/amarok/img/1downarrow.png differ diff --git a/htdocs/theme/amarok/img/1downarrow_selected.png b/htdocs/theme/amarok/img/1downarrow_selected.png old mode 100755 new mode 100644 index cf70206a39b..c8615bac56c Binary files a/htdocs/theme/amarok/img/1downarrow_selected.png and b/htdocs/theme/amarok/img/1downarrow_selected.png differ diff --git a/htdocs/theme/amarok/img/1leftarrow.png b/htdocs/theme/amarok/img/1leftarrow.png old mode 100755 new mode 100644 index d81d4c089a1..a24894e25df Binary files a/htdocs/theme/amarok/img/1leftarrow.png and b/htdocs/theme/amarok/img/1leftarrow.png differ diff --git a/htdocs/theme/amarok/img/1leftarrow_selected.png b/htdocs/theme/amarok/img/1leftarrow_selected.png old mode 100755 new mode 100644 index 2b634693801..912f9a753be Binary files a/htdocs/theme/amarok/img/1leftarrow_selected.png and b/htdocs/theme/amarok/img/1leftarrow_selected.png differ diff --git a/htdocs/theme/amarok/img/1rightarrow.png b/htdocs/theme/amarok/img/1rightarrow.png old mode 100755 new mode 100644 index e80c81c6dd7..b6474eaad46 Binary files a/htdocs/theme/amarok/img/1rightarrow.png and b/htdocs/theme/amarok/img/1rightarrow.png differ diff --git a/htdocs/theme/amarok/img/1rightarrow_selected.png b/htdocs/theme/amarok/img/1rightarrow_selected.png old mode 100755 new mode 100644 index c19598f1e02..911ce8e2d56 Binary files a/htdocs/theme/amarok/img/1rightarrow_selected.png and b/htdocs/theme/amarok/img/1rightarrow_selected.png differ diff --git a/htdocs/theme/amarok/img/1uparrow.png b/htdocs/theme/amarok/img/1uparrow.png old mode 100755 new mode 100644 index 2e260bfce2a..b0d939999bd Binary files a/htdocs/theme/amarok/img/1uparrow.png and b/htdocs/theme/amarok/img/1uparrow.png differ diff --git a/htdocs/theme/amarok/img/1uparrow_selected.png b/htdocs/theme/amarok/img/1uparrow_selected.png old mode 100755 new mode 100644 index 28550cdda71..f311f885994 Binary files a/htdocs/theme/amarok/img/1uparrow_selected.png and b/htdocs/theme/amarok/img/1uparrow_selected.png differ diff --git a/htdocs/theme/amarok/img/1updownarrow.png b/htdocs/theme/amarok/img/1updownarrow.png old mode 100755 new mode 100644 index bd0e6b02ef5..07ae44c2c51 Binary files a/htdocs/theme/amarok/img/1updownarrow.png and b/htdocs/theme/amarok/img/1updownarrow.png differ diff --git a/htdocs/theme/amarok/img/addfile.png b/htdocs/theme/amarok/img/addfile.png old mode 100755 new mode 100644 index 135d539ed9d..35ace7e4cf2 Binary files a/htdocs/theme/amarok/img/addfile.png and b/htdocs/theme/amarok/img/addfile.png differ diff --git a/htdocs/theme/amarok/img/background_login.png b/htdocs/theme/amarok/img/background_login.png index 88594ffd7ca..e981431ce51 100644 Binary files a/htdocs/theme/amarok/img/background_login.png and b/htdocs/theme/amarok/img/background_login.png differ diff --git a/htdocs/theme/amarok/img/button_edit.png b/htdocs/theme/amarok/img/button_edit.png old mode 100755 new mode 100644 index 8e39750c569..2118cf41db3 Binary files a/htdocs/theme/amarok/img/button_edit.png and b/htdocs/theme/amarok/img/button_edit.png differ diff --git a/htdocs/theme/amarok/img/calc.png b/htdocs/theme/amarok/img/calc.png old mode 100755 new mode 100644 index fd9344db65f..11142a85f66 Binary files a/htdocs/theme/amarok/img/calc.png and b/htdocs/theme/amarok/img/calc.png differ diff --git a/htdocs/theme/amarok/img/calendar.png b/htdocs/theme/amarok/img/calendar.png old mode 100755 new mode 100644 index fe9d5317763..9238928c701 Binary files a/htdocs/theme/amarok/img/calendar.png and b/htdocs/theme/amarok/img/calendar.png differ diff --git a/htdocs/theme/amarok/img/call.png b/htdocs/theme/amarok/img/call.png old mode 100755 new mode 100644 index 55f8b311f78..c0d4c2d9200 Binary files a/htdocs/theme/amarok/img/call.png and b/htdocs/theme/amarok/img/call.png differ diff --git a/htdocs/theme/amarok/img/call_out.png b/htdocs/theme/amarok/img/call_out.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/amarok/img/close.png b/htdocs/theme/amarok/img/close.png old mode 100755 new mode 100644 index e6a186ac71d..1acc7a534d9 Binary files a/htdocs/theme/amarok/img/close.png and b/htdocs/theme/amarok/img/close.png differ diff --git a/htdocs/theme/amarok/img/close_title.png b/htdocs/theme/amarok/img/close_title.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/amarok/img/close_title.png and b/htdocs/theme/amarok/img/close_title.png differ diff --git a/htdocs/theme/amarok/img/delete.png b/htdocs/theme/amarok/img/delete.png old mode 100755 new mode 100644 index 6b9fa6dd36e..a8706fe5011 Binary files a/htdocs/theme/amarok/img/delete.png and b/htdocs/theme/amarok/img/delete.png differ diff --git a/htdocs/theme/amarok/img/detail.png b/htdocs/theme/amarok/img/detail.png old mode 100755 new mode 100644 index d8b59e60497..10dc7d72019 Binary files a/htdocs/theme/amarok/img/detail.png and b/htdocs/theme/amarok/img/detail.png differ diff --git a/htdocs/theme/amarok/img/disable.png b/htdocs/theme/amarok/img/disable.png old mode 100755 new mode 100644 index b14af18f6f7..f7322f6d68a Binary files a/htdocs/theme/amarok/img/disable.png and b/htdocs/theme/amarok/img/disable.png differ diff --git a/htdocs/theme/amarok/img/edit.png b/htdocs/theme/amarok/img/edit.png old mode 100755 new mode 100644 index 340b12633e6..faff605e3ca Binary files a/htdocs/theme/amarok/img/edit.png and b/htdocs/theme/amarok/img/edit.png differ diff --git a/htdocs/theme/amarok/img/edit_add.png b/htdocs/theme/amarok/img/edit_add.png old mode 100755 new mode 100644 index 4ac1bafbcc6..8a5877aeeb5 Binary files a/htdocs/theme/amarok/img/edit_add.png and b/htdocs/theme/amarok/img/edit_add.png differ diff --git a/htdocs/theme/amarok/img/edit_remove.png b/htdocs/theme/amarok/img/edit_remove.png old mode 100755 new mode 100644 index f953427ffbc..0f32e706b39 Binary files a/htdocs/theme/amarok/img/edit_remove.png and b/htdocs/theme/amarok/img/edit_remove.png differ diff --git a/htdocs/theme/amarok/img/editdelete.png b/htdocs/theme/amarok/img/editdelete.png old mode 100755 new mode 100644 index b14af18f6f7..f7322f6d68a Binary files a/htdocs/theme/amarok/img/editdelete.png and b/htdocs/theme/amarok/img/editdelete.png differ diff --git a/htdocs/theme/amarok/img/error.png b/htdocs/theme/amarok/img/error.png old mode 100755 new mode 100644 index 517725822ba..899fa9f6b63 Binary files a/htdocs/theme/amarok/img/error.png and b/htdocs/theme/amarok/img/error.png differ diff --git a/htdocs/theme/amarok/img/file.png b/htdocs/theme/amarok/img/file.png old mode 100755 new mode 100644 index 6a05d3a8e2a..221eaf83e86 Binary files a/htdocs/theme/amarok/img/file.png and b/htdocs/theme/amarok/img/file.png differ diff --git a/htdocs/theme/amarok/img/filenew.png b/htdocs/theme/amarok/img/filenew.png old mode 100755 new mode 100644 index 61f56baba39..92995d64faa Binary files a/htdocs/theme/amarok/img/filenew.png and b/htdocs/theme/amarok/img/filenew.png differ diff --git a/htdocs/theme/amarok/img/filter.png b/htdocs/theme/amarok/img/filter.png old mode 100755 new mode 100644 index e914fdec003..ec64ee55bcd Binary files a/htdocs/theme/amarok/img/filter.png and b/htdocs/theme/amarok/img/filter.png differ diff --git a/htdocs/theme/amarok/img/folder-open.png b/htdocs/theme/amarok/img/folder-open.png old mode 100755 new mode 100644 index 10ee9609794..186680e7ff4 Binary files a/htdocs/theme/amarok/img/folder-open.png and b/htdocs/theme/amarok/img/folder-open.png differ diff --git a/htdocs/theme/amarok/img/folder.png b/htdocs/theme/amarok/img/folder.png old mode 100755 new mode 100644 index 6db3c0e0c5f..5c28dea0aa5 Binary files a/htdocs/theme/amarok/img/folder.png and b/htdocs/theme/amarok/img/folder.png differ diff --git a/htdocs/theme/amarok/img/grip.png b/htdocs/theme/amarok/img/grip.png old mode 100755 new mode 100644 index 216e51ca8f0..8053007e9dd Binary files a/htdocs/theme/amarok/img/grip.png and b/htdocs/theme/amarok/img/grip.png differ diff --git a/htdocs/theme/amarok/img/grip_title.png b/htdocs/theme/amarok/img/grip_title.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/amarok/img/grip_title.png and b/htdocs/theme/amarok/img/grip_title.png differ diff --git a/htdocs/theme/amarok/img/help.png b/htdocs/theme/amarok/img/help.png old mode 100755 new mode 100644 index 310f9b08eac..f092e463807 Binary files a/htdocs/theme/amarok/img/help.png and b/htdocs/theme/amarok/img/help.png differ diff --git a/htdocs/theme/amarok/img/helpdoc.png b/htdocs/theme/amarok/img/helpdoc.png old mode 100755 new mode 100644 index 8b33d5e5536..02ea7c7a194 Binary files a/htdocs/theme/amarok/img/helpdoc.png and b/htdocs/theme/amarok/img/helpdoc.png differ diff --git a/htdocs/theme/amarok/img/high.png b/htdocs/theme/amarok/img/high.png old mode 100755 new mode 100644 index 517725822ba..899fa9f6b63 Binary files a/htdocs/theme/amarok/img/high.png and b/htdocs/theme/amarok/img/high.png differ diff --git a/htdocs/theme/amarok/img/history.png b/htdocs/theme/amarok/img/history.png old mode 100755 new mode 100644 index cc68175ed89..1e37cac68a7 Binary files a/htdocs/theme/amarok/img/history.png and b/htdocs/theme/amarok/img/history.png differ diff --git a/htdocs/theme/amarok/img/indent1.png b/htdocs/theme/amarok/img/indent1.png old mode 100755 new mode 100644 index 11effb043d5..0acd18fe2bb Binary files a/htdocs/theme/amarok/img/indent1.png and b/htdocs/theme/amarok/img/indent1.png differ diff --git a/htdocs/theme/amarok/img/info.png b/htdocs/theme/amarok/img/info.png old mode 100755 new mode 100644 index da1b7c55032..5f7683898a8 Binary files a/htdocs/theme/amarok/img/info.png and b/htdocs/theme/amarok/img/info.png differ diff --git a/htdocs/theme/amarok/img/lock.png b/htdocs/theme/amarok/img/lock.png old mode 100755 new mode 100644 index 73dc0eb27ce..fed5806fdda Binary files a/htdocs/theme/amarok/img/lock.png and b/htdocs/theme/amarok/img/lock.png differ diff --git a/htdocs/theme/amarok/img/logout.png b/htdocs/theme/amarok/img/logout.png old mode 100755 new mode 100644 index 73dc0eb27ce..fed5806fdda Binary files a/htdocs/theme/amarok/img/logout.png and b/htdocs/theme/amarok/img/logout.png differ diff --git a/htdocs/theme/amarok/img/money.png b/htdocs/theme/amarok/img/money.png old mode 100755 new mode 100644 index f68a1b84715..d8c8109abca Binary files a/htdocs/theme/amarok/img/money.png and b/htdocs/theme/amarok/img/money.png differ diff --git a/htdocs/theme/amarok/img/next.png b/htdocs/theme/amarok/img/next.png old mode 100755 new mode 100644 index f389ed680c1..774ca27e79b Binary files a/htdocs/theme/amarok/img/next.png and b/htdocs/theme/amarok/img/next.png differ diff --git a/htdocs/theme/amarok/img/object_account.png b/htdocs/theme/amarok/img/object_account.png old mode 100755 new mode 100644 index cf94186c436..d41f8fdee80 Binary files a/htdocs/theme/amarok/img/object_account.png and b/htdocs/theme/amarok/img/object_account.png differ diff --git a/htdocs/theme/amarok/img/object_action.png b/htdocs/theme/amarok/img/object_action.png old mode 100755 new mode 100644 index fe9d5317763..9238928c701 Binary files a/htdocs/theme/amarok/img/object_action.png and b/htdocs/theme/amarok/img/object_action.png differ diff --git a/htdocs/theme/amarok/img/object_action_rdv.png b/htdocs/theme/amarok/img/object_action_rdv.png index b892da1f655..25edfa85b45 100644 Binary files a/htdocs/theme/amarok/img/object_action_rdv.png and b/htdocs/theme/amarok/img/object_action_rdv.png differ diff --git a/htdocs/theme/amarok/img/object_barcode.png b/htdocs/theme/amarok/img/object_barcode.png old mode 100755 new mode 100644 index 9bb4daab07a..3296d7bedf6 Binary files a/htdocs/theme/amarok/img/object_barcode.png and b/htdocs/theme/amarok/img/object_barcode.png differ diff --git a/htdocs/theme/amarok/img/object_bill.png b/htdocs/theme/amarok/img/object_bill.png old mode 100755 new mode 100644 index a9095ae91da..b9af25f5788 Binary files a/htdocs/theme/amarok/img/object_bill.png and b/htdocs/theme/amarok/img/object_bill.png differ diff --git a/htdocs/theme/amarok/img/object_billa.png b/htdocs/theme/amarok/img/object_billa.png old mode 100755 new mode 100644 index 02185ffd161..bc9a81ea505 Binary files a/htdocs/theme/amarok/img/object_billa.png and b/htdocs/theme/amarok/img/object_billa.png differ diff --git a/htdocs/theme/amarok/img/object_billd.png b/htdocs/theme/amarok/img/object_billd.png old mode 100755 new mode 100644 index d29e0cec904..5558e18d682 Binary files a/htdocs/theme/amarok/img/object_billd.png and b/htdocs/theme/amarok/img/object_billd.png differ diff --git a/htdocs/theme/amarok/img/object_billr.png b/htdocs/theme/amarok/img/object_billr.png old mode 100755 new mode 100644 index 940b1db8c6d..7c7601ac88d Binary files a/htdocs/theme/amarok/img/object_billr.png and b/htdocs/theme/amarok/img/object_billr.png differ diff --git a/htdocs/theme/amarok/img/object_book.png b/htdocs/theme/amarok/img/object_book.png old mode 100755 new mode 100644 index 91e9faeb7a1..2532b9e46bb Binary files a/htdocs/theme/amarok/img/object_book.png and b/htdocs/theme/amarok/img/object_book.png differ diff --git a/htdocs/theme/amarok/img/object_bookmark.png b/htdocs/theme/amarok/img/object_bookmark.png old mode 100755 new mode 100644 index 16b409b6656..a33b726273e Binary files a/htdocs/theme/amarok/img/object_bookmark.png and b/htdocs/theme/amarok/img/object_bookmark.png differ diff --git a/htdocs/theme/amarok/img/object_calendar.png b/htdocs/theme/amarok/img/object_calendar.png old mode 100755 new mode 100644 index 6df0766f839..a9e239feec0 Binary files a/htdocs/theme/amarok/img/object_calendar.png and b/htdocs/theme/amarok/img/object_calendar.png differ diff --git a/htdocs/theme/amarok/img/object_calendarday.png b/htdocs/theme/amarok/img/object_calendarday.png old mode 100755 new mode 100644 index 3b0cc640693..eca345725a2 Binary files a/htdocs/theme/amarok/img/object_calendarday.png and b/htdocs/theme/amarok/img/object_calendarday.png differ diff --git a/htdocs/theme/amarok/img/object_calendarweek.png b/htdocs/theme/amarok/img/object_calendarweek.png old mode 100755 new mode 100644 index d45ba9c270f..807b7d5e53f Binary files a/htdocs/theme/amarok/img/object_calendarweek.png and b/htdocs/theme/amarok/img/object_calendarweek.png differ diff --git a/htdocs/theme/amarok/img/object_category-expanded.png b/htdocs/theme/amarok/img/object_category-expanded.png old mode 100755 new mode 100644 index 10ee9609794..186680e7ff4 Binary files a/htdocs/theme/amarok/img/object_category-expanded.png and b/htdocs/theme/amarok/img/object_category-expanded.png differ diff --git a/htdocs/theme/amarok/img/object_category.png b/htdocs/theme/amarok/img/object_category.png old mode 100755 new mode 100644 index 6db3c0e0c5f..5c28dea0aa5 Binary files a/htdocs/theme/amarok/img/object_category.png and b/htdocs/theme/amarok/img/object_category.png differ diff --git a/htdocs/theme/amarok/img/object_commercial.png b/htdocs/theme/amarok/img/object_commercial.png old mode 100755 new mode 100644 index ced060d8701..eea2b611196 Binary files a/htdocs/theme/amarok/img/object_commercial.png and b/htdocs/theme/amarok/img/object_commercial.png differ diff --git a/htdocs/theme/amarok/img/object_company.png b/htdocs/theme/amarok/img/object_company.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/amarok/img/object_contact.png b/htdocs/theme/amarok/img/object_contact.png old mode 100755 new mode 100644 index f10bfb0d29b..e837d2e70bc Binary files a/htdocs/theme/amarok/img/object_contact.png and b/htdocs/theme/amarok/img/object_contact.png differ diff --git a/htdocs/theme/amarok/img/object_contact_all.png b/htdocs/theme/amarok/img/object_contact_all.png old mode 100755 new mode 100644 index 79ef3657dde..83b2c8ec0a3 Binary files a/htdocs/theme/amarok/img/object_contact_all.png and b/htdocs/theme/amarok/img/object_contact_all.png differ diff --git a/htdocs/theme/amarok/img/object_contract.png b/htdocs/theme/amarok/img/object_contract.png old mode 100755 new mode 100644 index f34600c0a37..a3d207dec20 Binary files a/htdocs/theme/amarok/img/object_contract.png and b/htdocs/theme/amarok/img/object_contract.png differ diff --git a/htdocs/theme/amarok/img/object_cron.png b/htdocs/theme/amarok/img/object_cron.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/amarok/img/object_cron.png and b/htdocs/theme/amarok/img/object_cron.png differ diff --git a/htdocs/theme/amarok/img/object_dir.png b/htdocs/theme/amarok/img/object_dir.png old mode 100755 new mode 100644 index bce6c87554c..996415f98e3 Binary files a/htdocs/theme/amarok/img/object_dir.png and b/htdocs/theme/amarok/img/object_dir.png differ diff --git a/htdocs/theme/amarok/img/object_email.png b/htdocs/theme/amarok/img/object_email.png old mode 100755 new mode 100644 index 4e6fdc56c7b..5657fdb26c0 Binary files a/htdocs/theme/amarok/img/object_email.png and b/htdocs/theme/amarok/img/object_email.png differ diff --git a/htdocs/theme/amarok/img/object_energie.png b/htdocs/theme/amarok/img/object_energie.png old mode 100755 new mode 100644 index 7b588777ce7..255b847da99 Binary files a/htdocs/theme/amarok/img/object_energie.png and b/htdocs/theme/amarok/img/object_energie.png differ diff --git a/htdocs/theme/amarok/img/object_generic.png b/htdocs/theme/amarok/img/object_generic.png old mode 100755 new mode 100644 index 2de348dcceb..1128986cecd Binary files a/htdocs/theme/amarok/img/object_generic.png and b/htdocs/theme/amarok/img/object_generic.png differ diff --git a/htdocs/theme/amarok/img/object_globe.png b/htdocs/theme/amarok/img/object_globe.png old mode 100755 new mode 100644 index 183a68127ee..238b830405f Binary files a/htdocs/theme/amarok/img/object_globe.png and b/htdocs/theme/amarok/img/object_globe.png differ diff --git a/htdocs/theme/amarok/img/object_group.png b/htdocs/theme/amarok/img/object_group.png old mode 100755 new mode 100644 index 79ef3657dde..83b2c8ec0a3 Binary files a/htdocs/theme/amarok/img/object_group.png and b/htdocs/theme/amarok/img/object_group.png differ diff --git a/htdocs/theme/amarok/img/object_holiday.png b/htdocs/theme/amarok/img/object_holiday.png index 69ccdb279a5..fdc1dd8e22b 100644 Binary files a/htdocs/theme/amarok/img/object_holiday.png and b/htdocs/theme/amarok/img/object_holiday.png differ diff --git a/htdocs/theme/amarok/img/object_intervention.png b/htdocs/theme/amarok/img/object_intervention.png old mode 100755 new mode 100644 index aeb415bec03..84f5b87c805 Binary files a/htdocs/theme/amarok/img/object_intervention.png and b/htdocs/theme/amarok/img/object_intervention.png differ diff --git a/htdocs/theme/amarok/img/object_invoice.png b/htdocs/theme/amarok/img/object_invoice.png old mode 100755 new mode 100644 index a9095ae91da..b9af25f5788 Binary files a/htdocs/theme/amarok/img/object_invoice.png and b/htdocs/theme/amarok/img/object_invoice.png differ diff --git a/htdocs/theme/amarok/img/object_label.png b/htdocs/theme/amarok/img/object_label.png old mode 100755 new mode 100644 index b94c72400e4..a73cbb9e9bb Binary files a/htdocs/theme/amarok/img/object_label.png and b/htdocs/theme/amarok/img/object_label.png differ diff --git a/htdocs/theme/amarok/img/object_list.png b/htdocs/theme/amarok/img/object_list.png old mode 100755 new mode 100644 index 48446ce5444..edd4a53aefa Binary files a/htdocs/theme/amarok/img/object_list.png and b/htdocs/theme/amarok/img/object_list.png differ diff --git a/htdocs/theme/amarok/img/object_opensurvey.png b/htdocs/theme/amarok/img/object_opensurvey.png old mode 100755 new mode 100644 index 042d8217257..b5de3223bd4 Binary files a/htdocs/theme/amarok/img/object_opensurvey.png and b/htdocs/theme/amarok/img/object_opensurvey.png differ diff --git a/htdocs/theme/amarok/img/object_order.png b/htdocs/theme/amarok/img/object_order.png old mode 100755 new mode 100644 index 9774306827a..6550c11c061 Binary files a/htdocs/theme/amarok/img/object_order.png and b/htdocs/theme/amarok/img/object_order.png differ diff --git a/htdocs/theme/amarok/img/object_payment.png b/htdocs/theme/amarok/img/object_payment.png old mode 100755 new mode 100644 index 562d972db35..7215fc22aa8 Binary files a/htdocs/theme/amarok/img/object_payment.png and b/htdocs/theme/amarok/img/object_payment.png differ diff --git a/htdocs/theme/amarok/img/object_phoning.png b/htdocs/theme/amarok/img/object_phoning.png old mode 100755 new mode 100644 index 9395d988480..b1266e84127 Binary files a/htdocs/theme/amarok/img/object_phoning.png and b/htdocs/theme/amarok/img/object_phoning.png differ diff --git a/htdocs/theme/amarok/img/object_product.png b/htdocs/theme/amarok/img/object_product.png old mode 100755 new mode 100644 index cf49e8a072e..cb94e71a868 Binary files a/htdocs/theme/amarok/img/object_product.png and b/htdocs/theme/amarok/img/object_product.png differ diff --git a/htdocs/theme/amarok/img/object_project.png b/htdocs/theme/amarok/img/object_project.png old mode 100755 new mode 100644 index 0b9fa5a1ac5..68bb77ae989 Binary files a/htdocs/theme/amarok/img/object_project.png and b/htdocs/theme/amarok/img/object_project.png differ diff --git a/htdocs/theme/amarok/img/object_projectpub.png b/htdocs/theme/amarok/img/object_projectpub.png old mode 100755 new mode 100644 index f38b8664cfa..b50dba8ef2d Binary files a/htdocs/theme/amarok/img/object_projectpub.png and b/htdocs/theme/amarok/img/object_projectpub.png differ diff --git a/htdocs/theme/amarok/img/object_projecttask.png b/htdocs/theme/amarok/img/object_projecttask.png old mode 100755 new mode 100644 index 0023b3a75bd..2dc8d0111b6 Binary files a/htdocs/theme/amarok/img/object_projecttask.png and b/htdocs/theme/amarok/img/object_projecttask.png differ diff --git a/htdocs/theme/amarok/img/object_propal.png b/htdocs/theme/amarok/img/object_propal.png old mode 100755 new mode 100644 index a59f51015c1..efd49ca0163 Binary files a/htdocs/theme/amarok/img/object_propal.png and b/htdocs/theme/amarok/img/object_propal.png differ diff --git a/htdocs/theme/amarok/img/object_reduc.png b/htdocs/theme/amarok/img/object_reduc.png old mode 100755 new mode 100644 index 6a05d3a8e2a..221eaf83e86 Binary files a/htdocs/theme/amarok/img/object_reduc.png and b/htdocs/theme/amarok/img/object_reduc.png differ diff --git a/htdocs/theme/amarok/img/object_rss.png b/htdocs/theme/amarok/img/object_rss.png old mode 100755 new mode 100644 index 0210d989666..9ba662a6086 Binary files a/htdocs/theme/amarok/img/object_rss.png and b/htdocs/theme/amarok/img/object_rss.png differ diff --git a/htdocs/theme/amarok/img/object_sending.png b/htdocs/theme/amarok/img/object_sending.png old mode 100755 new mode 100644 index 544e194bbd7..5ef8072d54e Binary files a/htdocs/theme/amarok/img/object_sending.png and b/htdocs/theme/amarok/img/object_sending.png differ diff --git a/htdocs/theme/amarok/img/object_service.png b/htdocs/theme/amarok/img/object_service.png old mode 100755 new mode 100644 index ea5b0e73a5e..290a65f8a46 Binary files a/htdocs/theme/amarok/img/object_service.png and b/htdocs/theme/amarok/img/object_service.png differ diff --git a/htdocs/theme/amarok/img/object_skype.png b/htdocs/theme/amarok/img/object_skype.png index 97121565bb0..b209cd8d16e 100644 Binary files a/htdocs/theme/amarok/img/object_skype.png and b/htdocs/theme/amarok/img/object_skype.png differ diff --git a/htdocs/theme/amarok/img/object_stock.png b/htdocs/theme/amarok/img/object_stock.png old mode 100755 new mode 100644 index 9ea65b9b6e1..19ae2cdc0d3 Binary files a/htdocs/theme/amarok/img/object_stock.png and b/htdocs/theme/amarok/img/object_stock.png differ diff --git a/htdocs/theme/amarok/img/object_task.png b/htdocs/theme/amarok/img/object_task.png old mode 100755 new mode 100644 index 0023b3a75bd..2dc8d0111b6 Binary files a/htdocs/theme/amarok/img/object_task.png and b/htdocs/theme/amarok/img/object_task.png differ diff --git a/htdocs/theme/amarok/img/object_technic.png b/htdocs/theme/amarok/img/object_technic.png old mode 100755 new mode 100644 index eae2c746d92..0f1737ce582 Binary files a/htdocs/theme/amarok/img/object_technic.png and b/htdocs/theme/amarok/img/object_technic.png differ diff --git a/htdocs/theme/amarok/img/object_trip.png b/htdocs/theme/amarok/img/object_trip.png old mode 100755 new mode 100644 index d9ea9de8160..4ffacc73e86 Binary files a/htdocs/theme/amarok/img/object_trip.png and b/htdocs/theme/amarok/img/object_trip.png differ diff --git a/htdocs/theme/amarok/img/object_user.png b/htdocs/theme/amarok/img/object_user.png old mode 100755 new mode 100644 index d0ab1ec1dad..55ee040f98d Binary files a/htdocs/theme/amarok/img/object_user.png and b/htdocs/theme/amarok/img/object_user.png differ diff --git a/htdocs/theme/amarok/img/off.png b/htdocs/theme/amarok/img/off.png old mode 100755 new mode 100644 index 1b4d2072939..ab7742b4a97 Binary files a/htdocs/theme/amarok/img/off.png and b/htdocs/theme/amarok/img/off.png differ diff --git a/htdocs/theme/amarok/img/ok.png b/htdocs/theme/amarok/img/ok.png old mode 100755 new mode 100644 index 210b1a6c3cc..abe1bd2424e Binary files a/htdocs/theme/amarok/img/ok.png and b/htdocs/theme/amarok/img/ok.png differ diff --git a/htdocs/theme/amarok/img/on.png b/htdocs/theme/amarok/img/on.png old mode 100755 new mode 100644 index 2112071d494..9362cfb75ee Binary files a/htdocs/theme/amarok/img/on.png and b/htdocs/theme/amarok/img/on.png differ diff --git a/htdocs/theme/amarok/img/pdf2.png b/htdocs/theme/amarok/img/pdf2.png old mode 100755 new mode 100644 index 6bf44387a88..cbf205d383e Binary files a/htdocs/theme/amarok/img/pdf2.png and b/htdocs/theme/amarok/img/pdf2.png differ diff --git a/htdocs/theme/amarok/img/pdf3.png b/htdocs/theme/amarok/img/pdf3.png old mode 100755 new mode 100644 index 2dc7f897514..fec72dbd81e Binary files a/htdocs/theme/amarok/img/pdf3.png and b/htdocs/theme/amarok/img/pdf3.png differ diff --git a/htdocs/theme/amarok/img/play.png b/htdocs/theme/amarok/img/play.png index 6de3e256ba6..4922ea1ec12 100644 Binary files a/htdocs/theme/amarok/img/play.png and b/htdocs/theme/amarok/img/play.png differ diff --git a/htdocs/theme/amarok/img/previous.png b/htdocs/theme/amarok/img/previous.png old mode 100755 new mode 100644 index 18d4532f8ed..f50a54114ec Binary files a/htdocs/theme/amarok/img/previous.png and b/htdocs/theme/amarok/img/previous.png differ diff --git a/htdocs/theme/amarok/img/printer.png b/htdocs/theme/amarok/img/printer.png old mode 100755 new mode 100644 index ba2af6b0885..c2e20742b65 Binary files a/htdocs/theme/amarok/img/printer.png and b/htdocs/theme/amarok/img/printer.png differ diff --git a/htdocs/theme/amarok/img/puce.png b/htdocs/theme/amarok/img/puce.png old mode 100755 new mode 100644 index 4f23a349f17..d18f94cf582 Binary files a/htdocs/theme/amarok/img/puce.png and b/htdocs/theme/amarok/img/puce.png differ diff --git a/htdocs/theme/amarok/img/recent.png b/htdocs/theme/amarok/img/recent.png old mode 100755 new mode 100644 index fb87a873294..c5818910e6e Binary files a/htdocs/theme/amarok/img/recent.png and b/htdocs/theme/amarok/img/recent.png differ diff --git a/htdocs/theme/amarok/img/redstar.png b/htdocs/theme/amarok/img/redstar.png old mode 100755 new mode 100644 index 32a7574d834..5c02de23c6b Binary files a/htdocs/theme/amarok/img/redstar.png and b/htdocs/theme/amarok/img/redstar.png differ diff --git a/htdocs/theme/amarok/img/refresh.png b/htdocs/theme/amarok/img/refresh.png old mode 100755 new mode 100644 index 757b8d50fdb..e96e4bbf33c Binary files a/htdocs/theme/amarok/img/refresh.png and b/htdocs/theme/amarok/img/refresh.png differ diff --git a/htdocs/theme/amarok/img/reload.png b/htdocs/theme/amarok/img/reload.png old mode 100755 new mode 100644 index 8baf084bd99..72990aa88cf Binary files a/htdocs/theme/amarok/img/reload.png and b/htdocs/theme/amarok/img/reload.png differ diff --git a/htdocs/theme/amarok/img/rightarrow.png b/htdocs/theme/amarok/img/rightarrow.png old mode 100755 new mode 100644 index b0e7def02d9..91e19e47a81 Binary files a/htdocs/theme/amarok/img/rightarrow.png and b/htdocs/theme/amarok/img/rightarrow.png differ diff --git a/htdocs/theme/amarok/img/search.png b/htdocs/theme/amarok/img/search.png old mode 100755 new mode 100644 index ff08a7492d4..8e95c05c874 Binary files a/htdocs/theme/amarok/img/search.png and b/htdocs/theme/amarok/img/search.png differ diff --git a/htdocs/theme/amarok/img/searchclear.png b/htdocs/theme/amarok/img/searchclear.png old mode 100755 new mode 100644 index f80737aaa78..feff9b53fe4 Binary files a/htdocs/theme/amarok/img/searchclear.png and b/htdocs/theme/amarok/img/searchclear.png differ diff --git a/htdocs/theme/amarok/img/setup.png b/htdocs/theme/amarok/img/setup.png old mode 100755 new mode 100644 index 1444d86ce2a..ca5f28b1d17 Binary files a/htdocs/theme/amarok/img/setup.png and b/htdocs/theme/amarok/img/setup.png differ diff --git a/htdocs/theme/amarok/img/sort_asc.png b/htdocs/theme/amarok/img/sort_asc.png index a88d7975fe9..e327d952fa4 100644 Binary files a/htdocs/theme/amarok/img/sort_asc.png and b/htdocs/theme/amarok/img/sort_asc.png differ diff --git a/htdocs/theme/amarok/img/sort_asc_disabled.png b/htdocs/theme/amarok/img/sort_asc_disabled.png index 4e144cf0b1f..e327d952fa4 100644 Binary files a/htdocs/theme/amarok/img/sort_asc_disabled.png and b/htdocs/theme/amarok/img/sort_asc_disabled.png differ diff --git a/htdocs/theme/amarok/img/sort_desc.png b/htdocs/theme/amarok/img/sort_desc.png index def071ed5af..db99fd9ad47 100644 Binary files a/htdocs/theme/amarok/img/sort_desc.png and b/htdocs/theme/amarok/img/sort_desc.png differ diff --git a/htdocs/theme/amarok/img/sort_desc_disabled.png b/htdocs/theme/amarok/img/sort_desc_disabled.png index 7824973cc60..89051c2f34f 100644 Binary files a/htdocs/theme/amarok/img/sort_desc_disabled.png and b/htdocs/theme/amarok/img/sort_desc_disabled.png differ diff --git a/htdocs/theme/amarok/img/split.png b/htdocs/theme/amarok/img/split.png old mode 100755 new mode 100644 index 27d5ff87c9d..62034af3190 Binary files a/htdocs/theme/amarok/img/split.png and b/htdocs/theme/amarok/img/split.png differ diff --git a/htdocs/theme/amarok/img/star.png b/htdocs/theme/amarok/img/star.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/amarok/img/stats.png b/htdocs/theme/amarok/img/stats.png old mode 100755 new mode 100644 index 8f00204a33c..a503b20a95c Binary files a/htdocs/theme/amarok/img/stats.png and b/htdocs/theme/amarok/img/stats.png differ diff --git a/htdocs/theme/amarok/img/statut0.png b/htdocs/theme/amarok/img/statut0.png old mode 100755 new mode 100644 index 725c20a19c3..ceb9667d4b7 Binary files a/htdocs/theme/amarok/img/statut0.png and b/htdocs/theme/amarok/img/statut0.png differ diff --git a/htdocs/theme/amarok/img/statut1.png b/htdocs/theme/amarok/img/statut1.png old mode 100755 new mode 100644 index 663cfb93856..2f96ef7581d Binary files a/htdocs/theme/amarok/img/statut1.png and b/htdocs/theme/amarok/img/statut1.png differ diff --git a/htdocs/theme/amarok/img/statut2.png b/htdocs/theme/amarok/img/statut2.png old mode 100755 new mode 100644 index ff7be2c5808..155df5aa188 Binary files a/htdocs/theme/amarok/img/statut2.png and b/htdocs/theme/amarok/img/statut2.png differ diff --git a/htdocs/theme/amarok/img/statut3.png b/htdocs/theme/amarok/img/statut3.png old mode 100755 new mode 100644 index e59f0eb85d3..18b2a5b47dd Binary files a/htdocs/theme/amarok/img/statut3.png and b/htdocs/theme/amarok/img/statut3.png differ diff --git a/htdocs/theme/amarok/img/statut4.png b/htdocs/theme/amarok/img/statut4.png old mode 100755 new mode 100644 index 674773045e5..92450a62497 Binary files a/htdocs/theme/amarok/img/statut4.png and b/htdocs/theme/amarok/img/statut4.png differ diff --git a/htdocs/theme/amarok/img/statut5.png b/htdocs/theme/amarok/img/statut5.png old mode 100755 new mode 100644 index 22dba223a17..a8db4159a31 Binary files a/htdocs/theme/amarok/img/statut5.png and b/htdocs/theme/amarok/img/statut5.png differ diff --git a/htdocs/theme/amarok/img/statut6.png b/htdocs/theme/amarok/img/statut6.png old mode 100755 new mode 100644 index ff7be2c5808..155df5aa188 Binary files a/htdocs/theme/amarok/img/statut6.png and b/htdocs/theme/amarok/img/statut6.png differ diff --git a/htdocs/theme/amarok/img/statut7.png b/htdocs/theme/amarok/img/statut7.png old mode 100755 new mode 100644 index f18782947cb..cb71c05dcfc Binary files a/htdocs/theme/amarok/img/statut7.png and b/htdocs/theme/amarok/img/statut7.png differ diff --git a/htdocs/theme/amarok/img/statut8.png b/htdocs/theme/amarok/img/statut8.png old mode 100755 new mode 100644 index 5c008b0a6fa..bbe351f0942 Binary files a/htdocs/theme/amarok/img/statut8.png and b/htdocs/theme/amarok/img/statut8.png differ diff --git a/htdocs/theme/amarok/img/statut9.png b/htdocs/theme/amarok/img/statut9.png old mode 100755 new mode 100644 index 662d5e599ee..14287ee9bb4 Binary files a/htdocs/theme/amarok/img/statut9.png and b/htdocs/theme/amarok/img/statut9.png differ diff --git a/htdocs/theme/amarok/img/stcomm-1.png b/htdocs/theme/amarok/img/stcomm-1.png old mode 100755 new mode 100644 index e8ff761f0b5..8b77cfcae4a Binary files a/htdocs/theme/amarok/img/stcomm-1.png and b/htdocs/theme/amarok/img/stcomm-1.png differ diff --git a/htdocs/theme/amarok/img/stcomm-1_grayed.png b/htdocs/theme/amarok/img/stcomm-1_grayed.png old mode 100755 new mode 100644 index 8a7282ebe26..2b53ad3a2d5 Binary files a/htdocs/theme/amarok/img/stcomm-1_grayed.png and b/htdocs/theme/amarok/img/stcomm-1_grayed.png differ diff --git a/htdocs/theme/amarok/img/stcomm0.png b/htdocs/theme/amarok/img/stcomm0.png old mode 100755 new mode 100644 index 085226668a3..f0b8c3f7165 Binary files a/htdocs/theme/amarok/img/stcomm0.png and b/htdocs/theme/amarok/img/stcomm0.png differ diff --git a/htdocs/theme/amarok/img/stcomm0_grayed.png b/htdocs/theme/amarok/img/stcomm0_grayed.png old mode 100755 new mode 100644 index df3447e8431..a72e9900534 Binary files a/htdocs/theme/amarok/img/stcomm0_grayed.png and b/htdocs/theme/amarok/img/stcomm0_grayed.png differ diff --git a/htdocs/theme/amarok/img/stcomm1.png b/htdocs/theme/amarok/img/stcomm1.png old mode 100755 new mode 100644 index 613ebe96677..6d1b485f1a5 Binary files a/htdocs/theme/amarok/img/stcomm1.png and b/htdocs/theme/amarok/img/stcomm1.png differ diff --git a/htdocs/theme/amarok/img/stcomm1_grayed.png b/htdocs/theme/amarok/img/stcomm1_grayed.png old mode 100755 new mode 100644 index f2c7fe56a38..7cc52f5ee6b Binary files a/htdocs/theme/amarok/img/stcomm1_grayed.png and b/htdocs/theme/amarok/img/stcomm1_grayed.png differ diff --git a/htdocs/theme/amarok/img/stcomm2.png b/htdocs/theme/amarok/img/stcomm2.png old mode 100755 new mode 100644 index 20801a12d18..efc1796e410 Binary files a/htdocs/theme/amarok/img/stcomm2.png and b/htdocs/theme/amarok/img/stcomm2.png differ diff --git a/htdocs/theme/amarok/img/stcomm2_grayed.png b/htdocs/theme/amarok/img/stcomm2_grayed.png old mode 100755 new mode 100644 index 8316f7be432..f8da01cbc45 Binary files a/htdocs/theme/amarok/img/stcomm2_grayed.png and b/htdocs/theme/amarok/img/stcomm2_grayed.png differ diff --git a/htdocs/theme/amarok/img/stcomm3.png b/htdocs/theme/amarok/img/stcomm3.png old mode 100755 new mode 100644 index ea0a02f1dfe..18c8a6e323f Binary files a/htdocs/theme/amarok/img/stcomm3.png and b/htdocs/theme/amarok/img/stcomm3.png differ diff --git a/htdocs/theme/amarok/img/stcomm3_grayed.png b/htdocs/theme/amarok/img/stcomm3_grayed.png old mode 100755 new mode 100644 index ac15741111a..da65ebc51a2 Binary files a/htdocs/theme/amarok/img/stcomm3_grayed.png and b/htdocs/theme/amarok/img/stcomm3_grayed.png differ diff --git a/htdocs/theme/amarok/img/stcomm4.png b/htdocs/theme/amarok/img/stcomm4.png old mode 100755 new mode 100644 index dfe8db877d5..8f4a34e9ab2 Binary files a/htdocs/theme/amarok/img/stcomm4.png and b/htdocs/theme/amarok/img/stcomm4.png differ diff --git a/htdocs/theme/amarok/img/stcomm4_grayed.png b/htdocs/theme/amarok/img/stcomm4_grayed.png old mode 100755 new mode 100644 index 88e6727ac2c..62177f13df6 Binary files a/htdocs/theme/amarok/img/stcomm4_grayed.png and b/htdocs/theme/amarok/img/stcomm4_grayed.png differ diff --git a/htdocs/theme/amarok/img/tick.png b/htdocs/theme/amarok/img/tick.png old mode 100755 new mode 100644 index 38d76144fa7..c2279280b33 Binary files a/htdocs/theme/amarok/img/tick.png and b/htdocs/theme/amarok/img/tick.png differ diff --git a/htdocs/theme/amarok/img/title.png b/htdocs/theme/amarok/img/title.png old mode 100755 new mode 100644 index c3f59dcb6ae..4087ba572a5 Binary files a/htdocs/theme/amarok/img/title.png and b/htdocs/theme/amarok/img/title.png differ diff --git a/htdocs/theme/amarok/img/unlock.png b/htdocs/theme/amarok/img/unlock.png old mode 100755 new mode 100644 index 0ab8c4947e6..738c8393ede Binary files a/htdocs/theme/amarok/img/unlock.png and b/htdocs/theme/amarok/img/unlock.png differ diff --git a/htdocs/theme/amarok/img/uparrow.png b/htdocs/theme/amarok/img/uparrow.png old mode 100755 new mode 100644 index 7858bd0c45e..1f6f801f045 Binary files a/htdocs/theme/amarok/img/uparrow.png and b/htdocs/theme/amarok/img/uparrow.png differ diff --git a/htdocs/theme/amarok/img/vcard.png b/htdocs/theme/amarok/img/vcard.png old mode 100755 new mode 100644 index fc06e4c8fd8..74140d7026d Binary files a/htdocs/theme/amarok/img/vcard.png and b/htdocs/theme/amarok/img/vcard.png differ diff --git a/htdocs/theme/amarok/img/view.png b/htdocs/theme/amarok/img/view.png old mode 100755 new mode 100644 index 6a05d3a8e2a..221eaf83e86 Binary files a/htdocs/theme/amarok/img/view.png and b/htdocs/theme/amarok/img/view.png differ diff --git a/htdocs/theme/amarok/img/vmenu.png b/htdocs/theme/amarok/img/vmenu.png old mode 100755 new mode 100644 index 74d696bf6b2..06f1f0d6100 Binary files a/htdocs/theme/amarok/img/vmenu.png and b/htdocs/theme/amarok/img/vmenu.png differ diff --git a/htdocs/theme/amarok/img/warning.png b/htdocs/theme/amarok/img/warning.png old mode 100755 new mode 100644 index ae8e35e781d..f1b93b8cc82 Binary files a/htdocs/theme/amarok/img/warning.png and b/htdocs/theme/amarok/img/warning.png differ diff --git a/htdocs/theme/amarok/thumb.png b/htdocs/theme/amarok/thumb.png old mode 100755 new mode 100644 index 9bba79fedc5..96509b93046 Binary files a/htdocs/theme/amarok/thumb.png and b/htdocs/theme/amarok/thumb.png differ diff --git a/htdocs/theme/auguria/img/1downarrow.png b/htdocs/theme/auguria/img/1downarrow.png index 64b6199c774..8459a7fcf85 100644 Binary files a/htdocs/theme/auguria/img/1downarrow.png and b/htdocs/theme/auguria/img/1downarrow.png differ diff --git a/htdocs/theme/auguria/img/1downarrow_selected.png b/htdocs/theme/auguria/img/1downarrow_selected.png index 97249e7ab0a..c5a947c4d9f 100644 Binary files a/htdocs/theme/auguria/img/1downarrow_selected.png and b/htdocs/theme/auguria/img/1downarrow_selected.png differ diff --git a/htdocs/theme/auguria/img/1leftarrow.png b/htdocs/theme/auguria/img/1leftarrow.png index 150fc5e88bb..25665e556a9 100644 Binary files a/htdocs/theme/auguria/img/1leftarrow.png and b/htdocs/theme/auguria/img/1leftarrow.png differ diff --git a/htdocs/theme/auguria/img/1leftarrow_selected.png b/htdocs/theme/auguria/img/1leftarrow_selected.png index 320731ddd3f..9a88ada13f1 100644 Binary files a/htdocs/theme/auguria/img/1leftarrow_selected.png and b/htdocs/theme/auguria/img/1leftarrow_selected.png differ diff --git a/htdocs/theme/auguria/img/1rightarrow.png b/htdocs/theme/auguria/img/1rightarrow.png index a98d145d2a5..422fc3f9426 100644 Binary files a/htdocs/theme/auguria/img/1rightarrow.png and b/htdocs/theme/auguria/img/1rightarrow.png differ diff --git a/htdocs/theme/auguria/img/1rightarrow_selected.png b/htdocs/theme/auguria/img/1rightarrow_selected.png index 79ea84d9f72..422fc3f9426 100644 Binary files a/htdocs/theme/auguria/img/1rightarrow_selected.png and b/htdocs/theme/auguria/img/1rightarrow_selected.png differ diff --git a/htdocs/theme/auguria/img/1uparrow.png b/htdocs/theme/auguria/img/1uparrow.png index e67a663df4d..9cd9d0b4a28 100644 Binary files a/htdocs/theme/auguria/img/1uparrow.png and b/htdocs/theme/auguria/img/1uparrow.png differ diff --git a/htdocs/theme/auguria/img/1uparrow_selected.png b/htdocs/theme/auguria/img/1uparrow_selected.png index 590d05521a5..db109a4c2b5 100644 Binary files a/htdocs/theme/auguria/img/1uparrow_selected.png and b/htdocs/theme/auguria/img/1uparrow_selected.png differ diff --git a/htdocs/theme/auguria/img/1updownarrow.png b/htdocs/theme/auguria/img/1updownarrow.png index fd5e5801aea..871ac1c1f29 100644 Binary files a/htdocs/theme/auguria/img/1updownarrow.png and b/htdocs/theme/auguria/img/1updownarrow.png differ diff --git a/htdocs/theme/auguria/img/addfile.png b/htdocs/theme/auguria/img/addfile.png index 3bfa627d758..1cb7af0ad8a 100644 Binary files a/htdocs/theme/auguria/img/addfile.png and b/htdocs/theme/auguria/img/addfile.png differ diff --git a/htdocs/theme/auguria/img/banner_02.jpg b/htdocs/theme/auguria/img/banner_02.jpg index 29e0619e77f..81635fd2a59 100644 Binary files a/htdocs/theme/auguria/img/banner_02.jpg and b/htdocs/theme/auguria/img/banner_02.jpg differ diff --git a/htdocs/theme/auguria/img/bg-rubrique.png b/htdocs/theme/auguria/img/bg-rubrique.png index 6bc08feb211..9abf1dc1459 100644 Binary files a/htdocs/theme/auguria/img/bg-rubrique.png and b/htdocs/theme/auguria/img/bg-rubrique.png differ diff --git a/htdocs/theme/auguria/img/bg-titre-rubrique.png b/htdocs/theme/auguria/img/bg-titre-rubrique.png index feca840034b..a68206aa818 100644 Binary files a/htdocs/theme/auguria/img/bg-titre-rubrique.png and b/htdocs/theme/auguria/img/bg-titre-rubrique.png differ diff --git a/htdocs/theme/auguria/img/body_bg.jpg b/htdocs/theme/auguria/img/body_bg.jpg index ddde2c5f5aa..0480bfdc738 100644 Binary files a/htdocs/theme/auguria/img/body_bg.jpg and b/htdocs/theme/auguria/img/body_bg.jpg differ diff --git a/htdocs/theme/auguria/img/button_edit.png b/htdocs/theme/auguria/img/button_edit.png index ce8b226710b..894b4cfd78e 100644 Binary files a/htdocs/theme/auguria/img/button_edit.png and b/htdocs/theme/auguria/img/button_edit.png differ diff --git a/htdocs/theme/auguria/img/calc.png b/htdocs/theme/auguria/img/calc.png index d3bd2bbc824..5e6471408d8 100644 Binary files a/htdocs/theme/auguria/img/calc.png and b/htdocs/theme/auguria/img/calc.png differ diff --git a/htdocs/theme/auguria/img/calendar.png b/htdocs/theme/auguria/img/calendar.png index 90829a353c3..bbe6c27f041 100644 Binary files a/htdocs/theme/auguria/img/calendar.png and b/htdocs/theme/auguria/img/calendar.png differ diff --git a/htdocs/theme/auguria/img/call.png b/htdocs/theme/auguria/img/call.png index 8315c57d61d..ddfc1b7bd90 100644 Binary files a/htdocs/theme/auguria/img/call.png and b/htdocs/theme/auguria/img/call.png differ diff --git a/htdocs/theme/auguria/img/call_out.png b/htdocs/theme/auguria/img/call_out.png index bf972d8b1ae..b5a22eb827b 100644 Binary files a/htdocs/theme/auguria/img/call_out.png and b/htdocs/theme/auguria/img/call_out.png differ diff --git a/htdocs/theme/auguria/img/close.png b/htdocs/theme/auguria/img/close.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/auguria/img/close.png and b/htdocs/theme/auguria/img/close.png differ diff --git a/htdocs/theme/auguria/img/close_title.png b/htdocs/theme/auguria/img/close_title.png index 24eda772954..bebb74d9861 100644 Binary files a/htdocs/theme/auguria/img/close_title.png and b/htdocs/theme/auguria/img/close_title.png differ diff --git a/htdocs/theme/auguria/img/delete.png b/htdocs/theme/auguria/img/delete.png index 221cd3c76b9..8ad73597be7 100644 Binary files a/htdocs/theme/auguria/img/delete.png and b/htdocs/theme/auguria/img/delete.png differ diff --git a/htdocs/theme/auguria/img/detail.png b/htdocs/theme/auguria/img/detail.png index 2d31ec2202e..05562bef842 100644 Binary files a/htdocs/theme/auguria/img/detail.png and b/htdocs/theme/auguria/img/detail.png differ diff --git a/htdocs/theme/auguria/img/disable.png b/htdocs/theme/auguria/img/disable.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/auguria/img/disable.png and b/htdocs/theme/auguria/img/disable.png differ diff --git a/htdocs/theme/auguria/img/edit.png b/htdocs/theme/auguria/img/edit.png index d5ef04577cc..4e916fe1fb0 100644 Binary files a/htdocs/theme/auguria/img/edit.png and b/htdocs/theme/auguria/img/edit.png differ diff --git a/htdocs/theme/auguria/img/edit_add.png b/htdocs/theme/auguria/img/edit_add.png old mode 100755 new mode 100644 index f6e67164208..ae205e9d770 Binary files a/htdocs/theme/auguria/img/edit_add.png and b/htdocs/theme/auguria/img/edit_add.png differ diff --git a/htdocs/theme/auguria/img/edit_remove.png b/htdocs/theme/auguria/img/edit_remove.png old mode 100755 new mode 100644 index 0c7ca54fa1f..bc4bdb360fa Binary files a/htdocs/theme/auguria/img/edit_remove.png and b/htdocs/theme/auguria/img/edit_remove.png differ diff --git a/htdocs/theme/auguria/img/editdelete.png b/htdocs/theme/auguria/img/editdelete.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/auguria/img/editdelete.png and b/htdocs/theme/auguria/img/editdelete.png differ diff --git a/htdocs/theme/auguria/img/file.png b/htdocs/theme/auguria/img/file.png index 98bc98d2f1f..73c66e9b2b3 100644 Binary files a/htdocs/theme/auguria/img/file.png and b/htdocs/theme/auguria/img/file.png differ diff --git a/htdocs/theme/auguria/img/filenew.png b/htdocs/theme/auguria/img/filenew.png index 1f6581389d1..8680cce82bf 100644 Binary files a/htdocs/theme/auguria/img/filenew.png and b/htdocs/theme/auguria/img/filenew.png differ diff --git a/htdocs/theme/auguria/img/filter.png b/htdocs/theme/auguria/img/filter.png index 4baa3a3be8e..917715107bd 100644 Binary files a/htdocs/theme/auguria/img/filter.png and b/htdocs/theme/auguria/img/filter.png differ diff --git a/htdocs/theme/auguria/img/folder-open.png b/htdocs/theme/auguria/img/folder-open.png index 1687cd1b536..1db8369b3d5 100644 Binary files a/htdocs/theme/auguria/img/folder-open.png and b/htdocs/theme/auguria/img/folder-open.png differ diff --git a/htdocs/theme/auguria/img/folder.png b/htdocs/theme/auguria/img/folder.png index 908a6df9348..04a24af2e22 100644 Binary files a/htdocs/theme/auguria/img/folder.png and b/htdocs/theme/auguria/img/folder.png differ diff --git a/htdocs/theme/auguria/img/grip.png b/htdocs/theme/auguria/img/grip.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/auguria/img/grip.png and b/htdocs/theme/auguria/img/grip.png differ diff --git a/htdocs/theme/auguria/img/grip_title.png b/htdocs/theme/auguria/img/grip_title.png index 9b3c093c790..d6ecce335cb 100644 Binary files a/htdocs/theme/auguria/img/grip_title.png and b/htdocs/theme/auguria/img/grip_title.png differ diff --git a/htdocs/theme/auguria/img/headbg.jpg b/htdocs/theme/auguria/img/headbg.jpg index 7d1374e1fc9..160821354cc 100644 Binary files a/htdocs/theme/auguria/img/headbg.jpg and b/htdocs/theme/auguria/img/headbg.jpg differ diff --git a/htdocs/theme/auguria/img/headbg2.jpg b/htdocs/theme/auguria/img/headbg2.jpg index 7917abd9c07..0bc44f0ea99 100644 Binary files a/htdocs/theme/auguria/img/headbg2.jpg and b/htdocs/theme/auguria/img/headbg2.jpg differ diff --git a/htdocs/theme/auguria/img/help.png b/htdocs/theme/auguria/img/help.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/auguria/img/help.png and b/htdocs/theme/auguria/img/help.png differ diff --git a/htdocs/theme/auguria/img/high.png b/htdocs/theme/auguria/img/high.png index f893de7abf3..c0eaee6542f 100644 Binary files a/htdocs/theme/auguria/img/high.png and b/htdocs/theme/auguria/img/high.png differ diff --git a/htdocs/theme/auguria/img/history.png b/htdocs/theme/auguria/img/history.png index 932921c1f4c..0fa4283476b 100644 Binary files a/htdocs/theme/auguria/img/history.png and b/htdocs/theme/auguria/img/history.png differ diff --git a/htdocs/theme/auguria/img/indent1.png b/htdocs/theme/auguria/img/indent1.png index 52ebb2bd738..09695ac754f 100644 Binary files a/htdocs/theme/auguria/img/indent1.png and b/htdocs/theme/auguria/img/indent1.png differ diff --git a/htdocs/theme/auguria/img/info.png b/htdocs/theme/auguria/img/info.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/auguria/img/info.png and b/htdocs/theme/auguria/img/info.png differ diff --git a/htdocs/theme/auguria/img/lock.png b/htdocs/theme/auguria/img/lock.png index 8c2e2cbdb09..3d99cf1eaef 100644 Binary files a/htdocs/theme/auguria/img/lock.png and b/htdocs/theme/auguria/img/lock.png differ diff --git a/htdocs/theme/auguria/img/login_background.png b/htdocs/theme/auguria/img/login_background.png index b264649fcbc..facc2c6f442 100644 Binary files a/htdocs/theme/auguria/img/login_background.png and b/htdocs/theme/auguria/img/login_background.png differ diff --git a/htdocs/theme/auguria/img/menus/agenda.png b/htdocs/theme/auguria/img/menus/agenda.png index 2bea3152a10..866037c9b54 100644 Binary files a/htdocs/theme/auguria/img/menus/agenda.png and b/htdocs/theme/auguria/img/menus/agenda.png differ diff --git a/htdocs/theme/auguria/img/menus/commercial.png b/htdocs/theme/auguria/img/menus/commercial.png index e520f7eb71e..efc1b3f0608 100644 Binary files a/htdocs/theme/auguria/img/menus/commercial.png and b/htdocs/theme/auguria/img/menus/commercial.png differ diff --git a/htdocs/theme/auguria/img/menus/footer_bg.jpg b/htdocs/theme/auguria/img/menus/footer_bg.jpg index ab5511b57f1..7319c16f9af 100644 Binary files a/htdocs/theme/auguria/img/menus/footer_bg.jpg and b/htdocs/theme/auguria/img/menus/footer_bg.jpg differ diff --git a/htdocs/theme/auguria/img/menus/generic3.png b/htdocs/theme/auguria/img/menus/generic3.png index d3ed4fa89b3..e22f73aa6f9 100644 Binary files a/htdocs/theme/auguria/img/menus/generic3.png and b/htdocs/theme/auguria/img/menus/generic3.png differ diff --git a/htdocs/theme/auguria/img/menus/home.png b/htdocs/theme/auguria/img/menus/home.png index eec3240070b..f4d0d917d1f 100644 Binary files a/htdocs/theme/auguria/img/menus/home.png and b/htdocs/theme/auguria/img/menus/home.png differ diff --git a/htdocs/theme/auguria/img/menus/mail.png b/htdocs/theme/auguria/img/menus/mail.png index dab5feda5cd..d715ec7810c 100644 Binary files a/htdocs/theme/auguria/img/menus/mail.png and b/htdocs/theme/auguria/img/menus/mail.png differ diff --git a/htdocs/theme/auguria/img/menus/products.png b/htdocs/theme/auguria/img/menus/products.png index d1081185c44..6f5f45269ee 100644 Binary files a/htdocs/theme/auguria/img/menus/products.png and b/htdocs/theme/auguria/img/menus/products.png differ diff --git a/htdocs/theme/auguria/img/menus/project.png b/htdocs/theme/auguria/img/menus/project.png index 5bc0f86b4be..882235d2cd3 100644 Binary files a/htdocs/theme/auguria/img/menus/project.png and b/htdocs/theme/auguria/img/menus/project.png differ diff --git a/htdocs/theme/auguria/img/menus/shop.png b/htdocs/theme/auguria/img/menus/shop.png index 89627d8b332..efd6859ab60 100644 Binary files a/htdocs/theme/auguria/img/menus/shop.png and b/htdocs/theme/auguria/img/menus/shop.png differ diff --git a/htdocs/theme/auguria/img/menus/tab_background.png b/htdocs/theme/auguria/img/menus/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/auguria/img/menus/tab_background.png and b/htdocs/theme/auguria/img/menus/tab_background.png differ diff --git a/htdocs/theme/auguria/img/menus/tools.png b/htdocs/theme/auguria/img/menus/tools.png index 17215ec5899..c053f660ebf 100644 Binary files a/htdocs/theme/auguria/img/menus/tools.png and b/htdocs/theme/auguria/img/menus/tools.png differ diff --git a/htdocs/theme/auguria/img/menus/topmenu_bg.png b/htdocs/theme/auguria/img/menus/topmenu_bg.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/menus/topmenu_right.png b/htdocs/theme/auguria/img/menus/topmenu_right.png old mode 100755 new mode 100644 index d6fd3c41168..cd14ff61bbc Binary files a/htdocs/theme/auguria/img/menus/topmenu_right.png and b/htdocs/theme/auguria/img/menus/topmenu_right.png differ diff --git a/htdocs/theme/auguria/img/menus/trtitle.png b/htdocs/theme/auguria/img/menus/trtitle.png index e4fe4ffe1a6..29b694864e5 100644 Binary files a/htdocs/theme/auguria/img/menus/trtitle.png and b/htdocs/theme/auguria/img/menus/trtitle.png differ diff --git a/htdocs/theme/auguria/img/object_action.png b/htdocs/theme/auguria/img/object_action.png index dd356305161..001b0cf9b76 100644 Binary files a/htdocs/theme/auguria/img/object_action.png and b/htdocs/theme/auguria/img/object_action.png differ diff --git a/htdocs/theme/auguria/img/object_action_rdv.png b/htdocs/theme/auguria/img/object_action_rdv.png index b892da1f655..25edfa85b45 100644 Binary files a/htdocs/theme/auguria/img/object_action_rdv.png and b/htdocs/theme/auguria/img/object_action_rdv.png differ diff --git a/htdocs/theme/auguria/img/object_address.png b/htdocs/theme/auguria/img/object_address.png index b20734da69a..a4b878966dc 100644 Binary files a/htdocs/theme/auguria/img/object_address.png and b/htdocs/theme/auguria/img/object_address.png differ diff --git a/htdocs/theme/auguria/img/object_barcode.png b/htdocs/theme/auguria/img/object_barcode.png index 83d3e1ae993..6f1931ab96c 100644 Binary files a/htdocs/theme/auguria/img/object_barcode.png and b/htdocs/theme/auguria/img/object_barcode.png differ diff --git a/htdocs/theme/auguria/img/object_bill.png b/htdocs/theme/auguria/img/object_bill.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_billd.png b/htdocs/theme/auguria/img/object_billd.png index 3c7443cba3e..2080958f0fb 100644 Binary files a/htdocs/theme/auguria/img/object_billd.png and b/htdocs/theme/auguria/img/object_billd.png differ diff --git a/htdocs/theme/auguria/img/object_billr.png b/htdocs/theme/auguria/img/object_billr.png index c89098beaa5..7a9692a0804 100644 Binary files a/htdocs/theme/auguria/img/object_billr.png and b/htdocs/theme/auguria/img/object_billr.png differ diff --git a/htdocs/theme/auguria/img/object_book.png b/htdocs/theme/auguria/img/object_book.png old mode 100755 new mode 100644 index 67f6b06467d..85097420728 Binary files a/htdocs/theme/auguria/img/object_book.png and b/htdocs/theme/auguria/img/object_book.png differ diff --git a/htdocs/theme/auguria/img/object_bookmark.png b/htdocs/theme/auguria/img/object_bookmark.png index 76aba6c2a7d..86d1a0dfa52 100644 Binary files a/htdocs/theme/auguria/img/object_bookmark.png and b/htdocs/theme/auguria/img/object_bookmark.png differ diff --git a/htdocs/theme/auguria/img/object_calendarday.png b/htdocs/theme/auguria/img/object_calendarday.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_calendarweek.png b/htdocs/theme/auguria/img/object_calendarweek.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_commercial.png b/htdocs/theme/auguria/img/object_commercial.png index 5f11e40a81f..36cdcc8d4a2 100644 Binary files a/htdocs/theme/auguria/img/object_commercial.png and b/htdocs/theme/auguria/img/object_commercial.png differ diff --git a/htdocs/theme/auguria/img/object_company.png b/htdocs/theme/auguria/img/object_company.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_contact.png b/htdocs/theme/auguria/img/object_contact.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_contact_all.png b/htdocs/theme/auguria/img/object_contact_all.png index 966f6e05cfa..f571504b246 100644 Binary files a/htdocs/theme/auguria/img/object_contact_all.png and b/htdocs/theme/auguria/img/object_contact_all.png differ diff --git a/htdocs/theme/auguria/img/object_contract.png b/htdocs/theme/auguria/img/object_contract.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_cron.png b/htdocs/theme/auguria/img/object_cron.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/auguria/img/object_cron.png and b/htdocs/theme/auguria/img/object_cron.png differ diff --git a/htdocs/theme/auguria/img/object_email.png b/htdocs/theme/auguria/img/object_email.png index 9246f5cef24..d5cd141733d 100644 Binary files a/htdocs/theme/auguria/img/object_email.png and b/htdocs/theme/auguria/img/object_email.png differ diff --git a/htdocs/theme/auguria/img/object_generic.png b/htdocs/theme/auguria/img/object_generic.png index 4d5f811a891..ccfd2d2f5b2 100644 Binary files a/htdocs/theme/auguria/img/object_generic.png and b/htdocs/theme/auguria/img/object_generic.png differ diff --git a/htdocs/theme/auguria/img/object_globe.png b/htdocs/theme/auguria/img/object_globe.png index f726f8a705e..aae8bf6eba0 100644 Binary files a/htdocs/theme/auguria/img/object_globe.png and b/htdocs/theme/auguria/img/object_globe.png differ diff --git a/htdocs/theme/auguria/img/object_group.png b/htdocs/theme/auguria/img/object_group.png index f69db27d482..552eb39fa31 100644 Binary files a/htdocs/theme/auguria/img/object_group.png and b/htdocs/theme/auguria/img/object_group.png differ diff --git a/htdocs/theme/auguria/img/object_holiday.png b/htdocs/theme/auguria/img/object_holiday.png index 69ccdb279a5..fdc1dd8e22b 100644 Binary files a/htdocs/theme/auguria/img/object_holiday.png and b/htdocs/theme/auguria/img/object_holiday.png differ diff --git a/htdocs/theme/auguria/img/object_invoice.png b/htdocs/theme/auguria/img/object_invoice.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_label.png b/htdocs/theme/auguria/img/object_label.png index 75a363ec8d5..b112af5cf0a 100644 Binary files a/htdocs/theme/auguria/img/object_label.png and b/htdocs/theme/auguria/img/object_label.png differ diff --git a/htdocs/theme/auguria/img/object_margin.png b/htdocs/theme/auguria/img/object_margin.png index 13e4b92c9ce..cd0eb4109f7 100644 Binary files a/htdocs/theme/auguria/img/object_margin.png and b/htdocs/theme/auguria/img/object_margin.png differ diff --git a/htdocs/theme/auguria/img/object_opensurvey.png b/htdocs/theme/auguria/img/object_opensurvey.png old mode 100755 new mode 100644 index 042d8217257..b5de3223bd4 Binary files a/htdocs/theme/auguria/img/object_opensurvey.png and b/htdocs/theme/auguria/img/object_opensurvey.png differ diff --git a/htdocs/theme/auguria/img/object_order.png b/htdocs/theme/auguria/img/object_order.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_payment.png b/htdocs/theme/auguria/img/object_payment.png index 95f4c29ed2f..5691147d8ff 100644 Binary files a/htdocs/theme/auguria/img/object_payment.png and b/htdocs/theme/auguria/img/object_payment.png differ diff --git a/htdocs/theme/auguria/img/object_phoning.png b/htdocs/theme/auguria/img/object_phoning.png index 5f11e40a81f..36cdcc8d4a2 100644 Binary files a/htdocs/theme/auguria/img/object_phoning.png and b/htdocs/theme/auguria/img/object_phoning.png differ diff --git a/htdocs/theme/auguria/img/object_product.png b/htdocs/theme/auguria/img/object_product.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_project.png b/htdocs/theme/auguria/img/object_project.png index 070fe326983..fd84ab427db 100644 Binary files a/htdocs/theme/auguria/img/object_project.png and b/htdocs/theme/auguria/img/object_project.png differ diff --git a/htdocs/theme/auguria/img/object_projectpub.png b/htdocs/theme/auguria/img/object_projectpub.png index 5ea2e846ddf..1444573cf05 100644 Binary files a/htdocs/theme/auguria/img/object_projectpub.png and b/htdocs/theme/auguria/img/object_projectpub.png differ diff --git a/htdocs/theme/auguria/img/object_projecttask.png b/htdocs/theme/auguria/img/object_projecttask.png index 3ec85fed9d3..4a01b50435a 100644 Binary files a/htdocs/theme/auguria/img/object_projecttask.png and b/htdocs/theme/auguria/img/object_projecttask.png differ diff --git a/htdocs/theme/auguria/img/object_propal.png b/htdocs/theme/auguria/img/object_propal.png old mode 100755 new mode 100644 index 4a52d65b9e6..2dc60e66b3e Binary files a/htdocs/theme/auguria/img/object_propal.png and b/htdocs/theme/auguria/img/object_propal.png differ diff --git a/htdocs/theme/auguria/img/object_reduc.png b/htdocs/theme/auguria/img/object_reduc.png index 4d5f811a891..ccfd2d2f5b2 100644 Binary files a/htdocs/theme/auguria/img/object_reduc.png and b/htdocs/theme/auguria/img/object_reduc.png differ diff --git a/htdocs/theme/auguria/img/object_rss.png b/htdocs/theme/auguria/img/object_rss.png index 8f4224b5a30..37372031157 100644 Binary files a/htdocs/theme/auguria/img/object_rss.png and b/htdocs/theme/auguria/img/object_rss.png differ diff --git a/htdocs/theme/auguria/img/object_service.png b/htdocs/theme/auguria/img/object_service.png index 2161bfd59cc..65e9041589f 100644 Binary files a/htdocs/theme/auguria/img/object_service.png and b/htdocs/theme/auguria/img/object_service.png differ diff --git a/htdocs/theme/auguria/img/object_skype.png b/htdocs/theme/auguria/img/object_skype.png index 97121565bb0..b209cd8d16e 100644 Binary files a/htdocs/theme/auguria/img/object_skype.png and b/htdocs/theme/auguria/img/object_skype.png differ diff --git a/htdocs/theme/auguria/img/object_stock.png b/htdocs/theme/auguria/img/object_stock.png index 279a34f869a..2f439db7b50 100644 Binary files a/htdocs/theme/auguria/img/object_stock.png and b/htdocs/theme/auguria/img/object_stock.png differ diff --git a/htdocs/theme/auguria/img/object_task.png b/htdocs/theme/auguria/img/object_task.png index 24581634018..14dc14a9602 100644 Binary files a/htdocs/theme/auguria/img/object_task.png and b/htdocs/theme/auguria/img/object_task.png differ diff --git a/htdocs/theme/auguria/img/object_technic.png b/htdocs/theme/auguria/img/object_technic.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/auguria/img/object_technic.png and b/htdocs/theme/auguria/img/object_technic.png differ diff --git a/htdocs/theme/auguria/img/off.png b/htdocs/theme/auguria/img/off.png index 6b4604d38ed..f4217646b26 100644 Binary files a/htdocs/theme/auguria/img/off.png and b/htdocs/theme/auguria/img/off.png differ diff --git a/htdocs/theme/auguria/img/on.png b/htdocs/theme/auguria/img/on.png index 82572b9e1d1..728bb393536 100644 Binary files a/htdocs/theme/auguria/img/on.png and b/htdocs/theme/auguria/img/on.png differ diff --git a/htdocs/theme/auguria/img/pdf2.png b/htdocs/theme/auguria/img/pdf2.png index 4702d19fd50..06634550daa 100644 Binary files a/htdocs/theme/auguria/img/pdf2.png and b/htdocs/theme/auguria/img/pdf2.png differ diff --git a/htdocs/theme/auguria/img/pdf3.png b/htdocs/theme/auguria/img/pdf3.png index cd76e0f9253..f053591bf2d 100644 Binary files a/htdocs/theme/auguria/img/pdf3.png and b/htdocs/theme/auguria/img/pdf3.png differ diff --git a/htdocs/theme/auguria/img/play.png b/htdocs/theme/auguria/img/play.png index 6de3e256ba6..4922ea1ec12 100644 Binary files a/htdocs/theme/auguria/img/play.png and b/htdocs/theme/auguria/img/play.png differ diff --git a/htdocs/theme/auguria/img/puce.png b/htdocs/theme/auguria/img/puce.png index dfa83acd50d..8c116b0dc42 100644 Binary files a/htdocs/theme/auguria/img/puce.png and b/htdocs/theme/auguria/img/puce.png differ diff --git a/htdocs/theme/auguria/img/recent.png b/htdocs/theme/auguria/img/recent.png index 61daae778f5..a49fc171c06 100644 Binary files a/htdocs/theme/auguria/img/recent.png and b/htdocs/theme/auguria/img/recent.png differ diff --git a/htdocs/theme/auguria/img/redstar.png b/htdocs/theme/auguria/img/redstar.png index 001cde58667..486fd6770a2 100644 Binary files a/htdocs/theme/auguria/img/redstar.png and b/htdocs/theme/auguria/img/redstar.png differ diff --git a/htdocs/theme/auguria/img/refresh.png b/htdocs/theme/auguria/img/refresh.png index 046ce37b9c5..9994475cdfe 100644 Binary files a/htdocs/theme/auguria/img/refresh.png and b/htdocs/theme/auguria/img/refresh.png differ diff --git a/htdocs/theme/auguria/img/reload.png b/htdocs/theme/auguria/img/reload.png index 62056d2a89a..a4029f119de 100644 Binary files a/htdocs/theme/auguria/img/reload.png and b/htdocs/theme/auguria/img/reload.png differ diff --git a/htdocs/theme/auguria/img/rightarrow.png b/htdocs/theme/auguria/img/rightarrow.png index 2ea37440ecd..2c479d9453b 100644 Binary files a/htdocs/theme/auguria/img/rightarrow.png and b/htdocs/theme/auguria/img/rightarrow.png differ diff --git a/htdocs/theme/auguria/img/searchclear.png b/htdocs/theme/auguria/img/searchclear.png index 024e0c62cdd..203a85e10c4 100644 Binary files a/htdocs/theme/auguria/img/searchclear.png and b/htdocs/theme/auguria/img/searchclear.png differ diff --git a/htdocs/theme/auguria/img/setup.png b/htdocs/theme/auguria/img/setup.png index 1444d86ce2a..ca5f28b1d17 100644 Binary files a/htdocs/theme/auguria/img/setup.png and b/htdocs/theme/auguria/img/setup.png differ diff --git a/htdocs/theme/auguria/img/sort_asc.png b/htdocs/theme/auguria/img/sort_asc.png index a88d7975fe9..e327d952fa4 100644 Binary files a/htdocs/theme/auguria/img/sort_asc.png and b/htdocs/theme/auguria/img/sort_asc.png differ diff --git a/htdocs/theme/auguria/img/sort_asc_disabled.png b/htdocs/theme/auguria/img/sort_asc_disabled.png index 4e144cf0b1f..e327d952fa4 100644 Binary files a/htdocs/theme/auguria/img/sort_asc_disabled.png and b/htdocs/theme/auguria/img/sort_asc_disabled.png differ diff --git a/htdocs/theme/auguria/img/sort_desc.png b/htdocs/theme/auguria/img/sort_desc.png index def071ed5af..db99fd9ad47 100644 Binary files a/htdocs/theme/auguria/img/sort_desc.png and b/htdocs/theme/auguria/img/sort_desc.png differ diff --git a/htdocs/theme/auguria/img/sort_desc_disabled.png b/htdocs/theme/auguria/img/sort_desc_disabled.png index 7824973cc60..89051c2f34f 100644 Binary files a/htdocs/theme/auguria/img/sort_desc_disabled.png and b/htdocs/theme/auguria/img/sort_desc_disabled.png differ diff --git a/htdocs/theme/auguria/img/split.png b/htdocs/theme/auguria/img/split.png index 008557d7341..bb66213f413 100644 Binary files a/htdocs/theme/auguria/img/split.png and b/htdocs/theme/auguria/img/split.png differ diff --git a/htdocs/theme/auguria/img/stats.png b/htdocs/theme/auguria/img/stats.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/statut0.png b/htdocs/theme/auguria/img/statut0.png index 0f7b0bd4f87..d11252783a4 100644 Binary files a/htdocs/theme/auguria/img/statut0.png and b/htdocs/theme/auguria/img/statut0.png differ diff --git a/htdocs/theme/auguria/img/statut1.png b/htdocs/theme/auguria/img/statut1.png index 3e4650f4f02..558439d282e 100644 Binary files a/htdocs/theme/auguria/img/statut1.png and b/htdocs/theme/auguria/img/statut1.png differ diff --git a/htdocs/theme/auguria/img/statut3.png b/htdocs/theme/auguria/img/statut3.png index f49966eaaa1..e7515796683 100644 Binary files a/htdocs/theme/auguria/img/statut3.png and b/htdocs/theme/auguria/img/statut3.png differ diff --git a/htdocs/theme/auguria/img/statut4.png b/htdocs/theme/auguria/img/statut4.png index aed93a350ba..6ec1ba55961 100644 Binary files a/htdocs/theme/auguria/img/statut4.png and b/htdocs/theme/auguria/img/statut4.png differ diff --git a/htdocs/theme/auguria/img/statut5.png b/htdocs/theme/auguria/img/statut5.png index a2e22fe6f59..53264a0515d 100644 Binary files a/htdocs/theme/auguria/img/statut5.png and b/htdocs/theme/auguria/img/statut5.png differ diff --git a/htdocs/theme/auguria/img/statut7.png b/htdocs/theme/auguria/img/statut7.png index 50295a03ed5..8871a45519f 100644 Binary files a/htdocs/theme/auguria/img/statut7.png and b/htdocs/theme/auguria/img/statut7.png differ diff --git a/htdocs/theme/auguria/img/statut8.png b/htdocs/theme/auguria/img/statut8.png old mode 100755 new mode 100644 index 4d8f59be1c2..c24d4a9dac2 Binary files a/htdocs/theme/auguria/img/statut8.png and b/htdocs/theme/auguria/img/statut8.png differ diff --git a/htdocs/theme/auguria/img/statut9.png b/htdocs/theme/auguria/img/statut9.png old mode 100755 new mode 100644 index 5401cf9b03d..94b6dabf265 Binary files a/htdocs/theme/auguria/img/statut9.png and b/htdocs/theme/auguria/img/statut9.png differ diff --git a/htdocs/theme/auguria/img/stcomm-1.png b/htdocs/theme/auguria/img/stcomm-1.png index 52b3625ac05..df442fc1eda 100644 Binary files a/htdocs/theme/auguria/img/stcomm-1.png and b/htdocs/theme/auguria/img/stcomm-1.png differ diff --git a/htdocs/theme/auguria/img/stcomm-1_grayed.png b/htdocs/theme/auguria/img/stcomm-1_grayed.png index 20a7219535e..5942e6c72af 100644 Binary files a/htdocs/theme/auguria/img/stcomm-1_grayed.png and b/htdocs/theme/auguria/img/stcomm-1_grayed.png differ diff --git a/htdocs/theme/auguria/img/stcomm0.png b/htdocs/theme/auguria/img/stcomm0.png index 6053eeda485..cbe60a02d28 100644 Binary files a/htdocs/theme/auguria/img/stcomm0.png and b/htdocs/theme/auguria/img/stcomm0.png differ diff --git a/htdocs/theme/auguria/img/stcomm0_grayed.png b/htdocs/theme/auguria/img/stcomm0_grayed.png index a92e1558506..9016db48b02 100644 Binary files a/htdocs/theme/auguria/img/stcomm0_grayed.png and b/htdocs/theme/auguria/img/stcomm0_grayed.png differ diff --git a/htdocs/theme/auguria/img/stcomm1.png b/htdocs/theme/auguria/img/stcomm1.png index eb76c0fb179..6bdea492985 100644 Binary files a/htdocs/theme/auguria/img/stcomm1.png and b/htdocs/theme/auguria/img/stcomm1.png differ diff --git a/htdocs/theme/auguria/img/stcomm1_grayed.png b/htdocs/theme/auguria/img/stcomm1_grayed.png index 98ed423aa9e..367a55921e4 100644 Binary files a/htdocs/theme/auguria/img/stcomm1_grayed.png and b/htdocs/theme/auguria/img/stcomm1_grayed.png differ diff --git a/htdocs/theme/auguria/img/stcomm2.png b/htdocs/theme/auguria/img/stcomm2.png index 1e76ce4946b..9e000b70dc9 100644 Binary files a/htdocs/theme/auguria/img/stcomm2.png and b/htdocs/theme/auguria/img/stcomm2.png differ diff --git a/htdocs/theme/auguria/img/stcomm2_grayed.png b/htdocs/theme/auguria/img/stcomm2_grayed.png index 0f2a4332cfc..f667e3573d0 100644 Binary files a/htdocs/theme/auguria/img/stcomm2_grayed.png and b/htdocs/theme/auguria/img/stcomm2_grayed.png differ diff --git a/htdocs/theme/auguria/img/stcomm3.png b/htdocs/theme/auguria/img/stcomm3.png index 465234fcd3c..5a6c0aeface 100644 Binary files a/htdocs/theme/auguria/img/stcomm3.png and b/htdocs/theme/auguria/img/stcomm3.png differ diff --git a/htdocs/theme/auguria/img/stcomm3_grayed.png b/htdocs/theme/auguria/img/stcomm3_grayed.png index fc80eb2aebd..81a14c1e482 100644 Binary files a/htdocs/theme/auguria/img/stcomm3_grayed.png and b/htdocs/theme/auguria/img/stcomm3_grayed.png differ diff --git a/htdocs/theme/auguria/img/stcomm4.png b/htdocs/theme/auguria/img/stcomm4.png index c839a8acec5..3e26b4d06ed 100644 Binary files a/htdocs/theme/auguria/img/stcomm4.png and b/htdocs/theme/auguria/img/stcomm4.png differ diff --git a/htdocs/theme/auguria/img/stcomm4_grayed.png b/htdocs/theme/auguria/img/stcomm4_grayed.png index 4935499d917..4271aafb6ce 100644 Binary files a/htdocs/theme/auguria/img/stcomm4_grayed.png and b/htdocs/theme/auguria/img/stcomm4_grayed.png differ diff --git a/htdocs/theme/auguria/img/tab_background.png b/htdocs/theme/auguria/img/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/auguria/img/tab_background.png and b/htdocs/theme/auguria/img/tab_background.png differ diff --git a/htdocs/theme/auguria/img/tick.png b/htdocs/theme/auguria/img/tick.png index deb69ee75ec..9b035d99511 100644 Binary files a/htdocs/theme/auguria/img/tick.png and b/htdocs/theme/auguria/img/tick.png differ diff --git a/htdocs/theme/auguria/img/title.png b/htdocs/theme/auguria/img/title.png index bcd70489c80..bb48d617379 100644 Binary files a/htdocs/theme/auguria/img/title.png and b/htdocs/theme/auguria/img/title.png differ diff --git a/htdocs/theme/auguria/img/tmenu.jpg b/htdocs/theme/auguria/img/tmenu.jpg index 8db7fdcb6fa..4e51fef3fc7 100644 Binary files a/htdocs/theme/auguria/img/tmenu.jpg and b/htdocs/theme/auguria/img/tmenu.jpg differ diff --git a/htdocs/theme/auguria/img/tmenu2.jpg b/htdocs/theme/auguria/img/tmenu2.jpg index e5ca3f72414..920e0066341 100644 Binary files a/htdocs/theme/auguria/img/tmenu2.jpg and b/htdocs/theme/auguria/img/tmenu2.jpg differ diff --git a/htdocs/theme/auguria/img/tmenu3.jpg b/htdocs/theme/auguria/img/tmenu3.jpg index dc2434541cf..d42f804b026 100644 Binary files a/htdocs/theme/auguria/img/tmenu3.jpg and b/htdocs/theme/auguria/img/tmenu3.jpg differ diff --git a/htdocs/theme/auguria/img/tmenu_inverse.jpg b/htdocs/theme/auguria/img/tmenu_inverse.jpg index c8fe6d0aff2..e1efd44376e 100644 Binary files a/htdocs/theme/auguria/img/tmenu_inverse.jpg and b/htdocs/theme/auguria/img/tmenu_inverse.jpg differ diff --git a/htdocs/theme/auguria/img/unlock.png b/htdocs/theme/auguria/img/unlock.png index f3eebc59274..afefaa94d47 100644 Binary files a/htdocs/theme/auguria/img/unlock.png and b/htdocs/theme/auguria/img/unlock.png differ diff --git a/htdocs/theme/auguria/img/vcard.png b/htdocs/theme/auguria/img/vcard.png index e03026f87fb..315abdf179d 100644 Binary files a/htdocs/theme/auguria/img/vcard.png and b/htdocs/theme/auguria/img/vcard.png differ diff --git a/htdocs/theme/auguria/img/view.png b/htdocs/theme/auguria/img/view.png index 828c79a8323..76c1e9f1e6a 100644 Binary files a/htdocs/theme/auguria/img/view.png and b/htdocs/theme/auguria/img/view.png differ diff --git a/htdocs/theme/auguria/img/warning.png b/htdocs/theme/auguria/img/warning.png index ae8e35e781d..f1b93b8cc82 100644 Binary files a/htdocs/theme/auguria/img/warning.png and b/htdocs/theme/auguria/img/warning.png differ diff --git a/htdocs/theme/auguria/thumb.png b/htdocs/theme/auguria/thumb.png index b51b386fc7a..88cb0e849a2 100644 Binary files a/htdocs/theme/auguria/thumb.png and b/htdocs/theme/auguria/thumb.png differ diff --git a/htdocs/theme/bureau2crea/img/1downarrow.png b/htdocs/theme/bureau2crea/img/1downarrow.png index c77e4607958..316fe442e2b 100644 Binary files a/htdocs/theme/bureau2crea/img/1downarrow.png and b/htdocs/theme/bureau2crea/img/1downarrow.png differ diff --git a/htdocs/theme/bureau2crea/img/1downarrow_selected.png b/htdocs/theme/bureau2crea/img/1downarrow_selected.png index d5fed48abeb..082a545addb 100644 Binary files a/htdocs/theme/bureau2crea/img/1downarrow_selected.png and b/htdocs/theme/bureau2crea/img/1downarrow_selected.png differ diff --git a/htdocs/theme/bureau2crea/img/1leftarrow.png b/htdocs/theme/bureau2crea/img/1leftarrow.png index ef6dbd377a6..026a4cfff80 100644 Binary files a/htdocs/theme/bureau2crea/img/1leftarrow.png and b/htdocs/theme/bureau2crea/img/1leftarrow.png differ diff --git a/htdocs/theme/bureau2crea/img/1leftarrow_selected.png b/htdocs/theme/bureau2crea/img/1leftarrow_selected.png index 423b77600d0..4835cf8f508 100644 Binary files a/htdocs/theme/bureau2crea/img/1leftarrow_selected.png and b/htdocs/theme/bureau2crea/img/1leftarrow_selected.png differ diff --git a/htdocs/theme/bureau2crea/img/1rightarrow.png b/htdocs/theme/bureau2crea/img/1rightarrow.png index 0e3eb3372ff..54fe3dcf366 100644 Binary files a/htdocs/theme/bureau2crea/img/1rightarrow.png and b/htdocs/theme/bureau2crea/img/1rightarrow.png differ diff --git a/htdocs/theme/bureau2crea/img/1rightarrow_selected.png b/htdocs/theme/bureau2crea/img/1rightarrow_selected.png index cc15d2f2144..2cd1136c77a 100644 Binary files a/htdocs/theme/bureau2crea/img/1rightarrow_selected.png and b/htdocs/theme/bureau2crea/img/1rightarrow_selected.png differ diff --git a/htdocs/theme/bureau2crea/img/1uparrow.png b/htdocs/theme/bureau2crea/img/1uparrow.png index f2fd9a85eed..e4f7b42acb6 100644 Binary files a/htdocs/theme/bureau2crea/img/1uparrow.png and b/htdocs/theme/bureau2crea/img/1uparrow.png differ diff --git a/htdocs/theme/bureau2crea/img/1uparrow_selected.png b/htdocs/theme/bureau2crea/img/1uparrow_selected.png index e4c4ec1a6cb..d19fae7a61d 100644 Binary files a/htdocs/theme/bureau2crea/img/1uparrow_selected.png and b/htdocs/theme/bureau2crea/img/1uparrow_selected.png differ diff --git a/htdocs/theme/bureau2crea/img/2.png b/htdocs/theme/bureau2crea/img/2.png index ad65c580ee7..f592543dd8e 100644 Binary files a/htdocs/theme/bureau2crea/img/2.png and b/htdocs/theme/bureau2crea/img/2.png differ diff --git a/htdocs/theme/bureau2crea/img/addfile.png b/htdocs/theme/bureau2crea/img/addfile.png index 3bfa627d758..1cb7af0ad8a 100644 Binary files a/htdocs/theme/bureau2crea/img/addfile.png and b/htdocs/theme/bureau2crea/img/addfile.png differ diff --git a/htdocs/theme/bureau2crea/img/banner_02.jpg b/htdocs/theme/bureau2crea/img/banner_02.jpg index 29e0619e77f..81635fd2a59 100644 Binary files a/htdocs/theme/bureau2crea/img/banner_02.jpg and b/htdocs/theme/bureau2crea/img/banner_02.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg-bas-rubrique.png b/htdocs/theme/bureau2crea/img/bg-bas-rubrique.png index 941207d85da..d2fbe3a7a13 100644 Binary files a/htdocs/theme/bureau2crea/img/bg-bas-rubrique.png and b/htdocs/theme/bureau2crea/img/bg-bas-rubrique.png differ diff --git a/htdocs/theme/bureau2crea/img/bg-rubrique.png b/htdocs/theme/bureau2crea/img/bg-rubrique.png index 6bc08feb211..9abf1dc1459 100644 Binary files a/htdocs/theme/bureau2crea/img/bg-rubrique.png and b/htdocs/theme/bureau2crea/img/bg-rubrique.png differ diff --git a/htdocs/theme/bureau2crea/img/bg-titre-rubrique.png b/htdocs/theme/bureau2crea/img/bg-titre-rubrique.png index abf662a530b..ad6484fcbe9 100644 Binary files a/htdocs/theme/bureau2crea/img/bg-titre-rubrique.png and b/htdocs/theme/bureau2crea/img/bg-titre-rubrique.png differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnBlue.jpg b/htdocs/theme/bureau2crea/img/bg_btnBlue.jpg index f354fabf32d..f24b76ee016 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btnBlue.jpg and b/htdocs/theme/bureau2crea/img/bg_btnBlue.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnGreen.jpg b/htdocs/theme/bureau2crea/img/bg_btnGreen.jpg index d2c3f60f44d..eae9fb1217b 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btnGreen.jpg and b/htdocs/theme/bureau2crea/img/bg_btnGreen.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnGrey.jpg b/htdocs/theme/bureau2crea/img/bg_btnGrey.jpg index 05b95df748c..48911bf6f13 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btnGrey.jpg and b/htdocs/theme/bureau2crea/img/bg_btnGrey.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnRed.jpg b/htdocs/theme/bureau2crea/img/bg_btnRed.jpg index 9e309245c43..c8c7f55c85d 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btnRed.jpg and b/htdocs/theme/bureau2crea/img/bg_btnRed.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btn_blue.jpg b/htdocs/theme/bureau2crea/img/bg_btn_blue.jpg index b09d2bb5a5a..563cebdc3e7 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btn_blue.jpg and b/htdocs/theme/bureau2crea/img/bg_btn_blue.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btn_green.jpg b/htdocs/theme/bureau2crea/img/bg_btn_green.jpg index 513f0eb0fd8..d29a1bb0d61 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btn_green.jpg and b/htdocs/theme/bureau2crea/img/bg_btn_green.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btn_red.jpg b/htdocs/theme/bureau2crea/img/bg_btn_red.jpg index ad8da842c7c..fb11e4f2daf 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btn_red.jpg and b/htdocs/theme/bureau2crea/img/bg_btn_red.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_centerBlock-title.jpg b/htdocs/theme/bureau2crea/img/bg_centerBlock-title.jpg index 629a40617e5..354fb66cb5e 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_centerBlock-title.jpg and b/htdocs/theme/bureau2crea/img/bg_centerBlock-title.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_centerBlock-title2.jpg b/htdocs/theme/bureau2crea/img/bg_centerBlock-title2.jpg index c8cb8d9f39c..d3f196e469d 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_centerBlock-title2.jpg and b/htdocs/theme/bureau2crea/img/bg_centerBlock-title2.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_connectionBox.jpg b/htdocs/theme/bureau2crea/img/bg_connectionBox.jpg index 4634207f71b..946a51b63a8 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_connectionBox.jpg and b/htdocs/theme/bureau2crea/img/bg_connectionBox.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_leftCategorie.jpg b/htdocs/theme/bureau2crea/img/bg_leftCategorie.jpg index 00071c4ec42..f152d6d083f 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_leftCategorie.jpg and b/htdocs/theme/bureau2crea/img/bg_leftCategorie.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_leftMenu.jpg b/htdocs/theme/bureau2crea/img/bg_leftMenu.jpg index b095fe478a4..0fc515742a3 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_leftMenu.jpg and b/htdocs/theme/bureau2crea/img/bg_leftMenu.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_mainNav.jpg b/htdocs/theme/bureau2crea/img/bg_mainNav.jpg index 93e65598156..15387ee476b 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_mainNav.jpg and b/htdocs/theme/bureau2crea/img/bg_mainNav.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_navHorizontal.jpg b/htdocs/theme/bureau2crea/img/bg_navHorizontal.jpg index 34008a24cd7..ad42dee2ee9 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_navHorizontal.jpg and b/htdocs/theme/bureau2crea/img/bg_navHorizontal.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_other_table.jpg b/htdocs/theme/bureau2crea/img/bg_other_table.jpg index 086a46a8613..f4409cbaae5 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_other_table.jpg and b/htdocs/theme/bureau2crea/img/bg_other_table.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenu_btnD.jpg index 7df7fd0ab02..fd09bb40da0 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnD.jpg and b/htdocs/theme/bureau2crea/img/bg_ssmenu_btnD.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenu_btnG.jpg index 12accbf3ccb..ca483b7b295 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnG.jpg and b/htdocs/theme/bureau2crea/img/bg_ssmenu_btnG.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnD.jpg index d7324957df6..1e41b87c6ea 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnD.jpg and b/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnD.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnG.jpg index 1d012589854..3df9a20bcd5 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnG.jpg and b/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnG.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenu.jpg b/htdocs/theme/bureau2crea/img/bg_tmenu.jpg index 5fc95c7572c..985311e8a1e 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenu.jpg and b/htdocs/theme/bureau2crea/img/bg_tmenu.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenu_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_tmenu_btnD.jpg index ccd9b835f7d..fc064ef4dcf 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenu_btnD.jpg and b/htdocs/theme/bureau2crea/img/bg_tmenu_btnD.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenu_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_tmenu_btnG.jpg index 40caeea6e67..9c3342222aa 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenu_btnG.jpg and b/htdocs/theme/bureau2crea/img/bg_tmenu_btnG.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_tmenusel_btnD.jpg index 6fed6c09e1a..b5507043898 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnD.jpg and b/htdocs/theme/bureau2crea/img/bg_tmenusel_btnD.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_tmenusel_btnG.jpg index 28dcb500923..317dde2f556 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnG.jpg and b/htdocs/theme/bureau2crea/img/bg_tmenusel_btnG.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_vmenu.jpg b/htdocs/theme/bureau2crea/img/bg_vmenu.jpg index df83d4bd687..84d883d8d69 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_vmenu.jpg and b/htdocs/theme/bureau2crea/img/bg_vmenu.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_working_table.jpg b/htdocs/theme/bureau2crea/img/bg_working_table.jpg index dd925af6d1d..bb2c66aded3 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_working_table.jpg and b/htdocs/theme/bureau2crea/img/bg_working_table.jpg differ diff --git a/htdocs/theme/bureau2crea/img/body_bg.jpg b/htdocs/theme/bureau2crea/img/body_bg.jpg index ddde2c5f5aa..0480bfdc738 100644 Binary files a/htdocs/theme/bureau2crea/img/body_bg.jpg and b/htdocs/theme/bureau2crea/img/body_bg.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bouton/menu_l_title_bg.png b/htdocs/theme/bureau2crea/img/bouton/menu_l_title_bg.png index 8f61b220c59..10e03744ace 100644 Binary files a/htdocs/theme/bureau2crea/img/bouton/menu_l_title_bg.png and b/htdocs/theme/bureau2crea/img/bouton/menu_l_title_bg.png differ diff --git a/htdocs/theme/bureau2crea/img/bouton/round_black_tr.png b/htdocs/theme/bureau2crea/img/bouton/round_black_tr.png index f27609ae8ee..f0ea7d10c5c 100644 Binary files a/htdocs/theme/bureau2crea/img/bouton/round_black_tr.png and b/htdocs/theme/bureau2crea/img/bouton/round_black_tr.png differ diff --git a/htdocs/theme/bureau2crea/img/button_edit.png b/htdocs/theme/bureau2crea/img/button_edit.png index ce8b226710b..894b4cfd78e 100644 Binary files a/htdocs/theme/bureau2crea/img/button_edit.png and b/htdocs/theme/bureau2crea/img/button_edit.png differ diff --git a/htdocs/theme/bureau2crea/img/calc.png b/htdocs/theme/bureau2crea/img/calc.png index d3bd2bbc824..5e6471408d8 100644 Binary files a/htdocs/theme/bureau2crea/img/calc.png and b/htdocs/theme/bureau2crea/img/calc.png differ diff --git a/htdocs/theme/bureau2crea/img/calendar.png b/htdocs/theme/bureau2crea/img/calendar.png index 90829a353c3..bbe6c27f041 100644 Binary files a/htdocs/theme/bureau2crea/img/calendar.png and b/htdocs/theme/bureau2crea/img/calendar.png differ diff --git a/htdocs/theme/bureau2crea/img/call.png b/htdocs/theme/bureau2crea/img/call.png index 8315c57d61d..ddfc1b7bd90 100644 Binary files a/htdocs/theme/bureau2crea/img/call.png and b/htdocs/theme/bureau2crea/img/call.png differ diff --git a/htdocs/theme/bureau2crea/img/call_out.png b/htdocs/theme/bureau2crea/img/call_out.png index bf972d8b1ae..b5a22eb827b 100644 Binary files a/htdocs/theme/bureau2crea/img/call_out.png and b/htdocs/theme/bureau2crea/img/call_out.png differ diff --git a/htdocs/theme/bureau2crea/img/close.png b/htdocs/theme/bureau2crea/img/close.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/bureau2crea/img/close.png and b/htdocs/theme/bureau2crea/img/close.png differ diff --git a/htdocs/theme/bureau2crea/img/close_title.png b/htdocs/theme/bureau2crea/img/close_title.png index 24eda772954..bebb74d9861 100644 Binary files a/htdocs/theme/bureau2crea/img/close_title.png and b/htdocs/theme/bureau2crea/img/close_title.png differ diff --git a/htdocs/theme/bureau2crea/img/delete.png b/htdocs/theme/bureau2crea/img/delete.png index 221cd3c76b9..8ad73597be7 100644 Binary files a/htdocs/theme/bureau2crea/img/delete.png and b/htdocs/theme/bureau2crea/img/delete.png differ diff --git a/htdocs/theme/bureau2crea/img/detail.png b/htdocs/theme/bureau2crea/img/detail.png index 2d31ec2202e..05562bef842 100644 Binary files a/htdocs/theme/bureau2crea/img/detail.png and b/htdocs/theme/bureau2crea/img/detail.png differ diff --git a/htdocs/theme/bureau2crea/img/disable.png b/htdocs/theme/bureau2crea/img/disable.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/bureau2crea/img/disable.png and b/htdocs/theme/bureau2crea/img/disable.png differ diff --git a/htdocs/theme/bureau2crea/img/edit.png b/htdocs/theme/bureau2crea/img/edit.png index 2fe9e5bde4d..0f5fa5de31f 100644 Binary files a/htdocs/theme/bureau2crea/img/edit.png and b/htdocs/theme/bureau2crea/img/edit.png differ diff --git a/htdocs/theme/bureau2crea/img/edit_add.png b/htdocs/theme/bureau2crea/img/edit_add.png index f6e67164208..ae205e9d770 100644 Binary files a/htdocs/theme/bureau2crea/img/edit_add.png and b/htdocs/theme/bureau2crea/img/edit_add.png differ diff --git a/htdocs/theme/bureau2crea/img/edit_remove.png b/htdocs/theme/bureau2crea/img/edit_remove.png index 0c7ca54fa1f..bc4bdb360fa 100644 Binary files a/htdocs/theme/bureau2crea/img/edit_remove.png and b/htdocs/theme/bureau2crea/img/edit_remove.png differ diff --git a/htdocs/theme/bureau2crea/img/editdelete.png b/htdocs/theme/bureau2crea/img/editdelete.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/bureau2crea/img/editdelete.png and b/htdocs/theme/bureau2crea/img/editdelete.png differ diff --git a/htdocs/theme/bureau2crea/img/file.png b/htdocs/theme/bureau2crea/img/file.png index 98bc98d2f1f..73c66e9b2b3 100644 Binary files a/htdocs/theme/bureau2crea/img/file.png and b/htdocs/theme/bureau2crea/img/file.png differ diff --git a/htdocs/theme/bureau2crea/img/filenew.png b/htdocs/theme/bureau2crea/img/filenew.png index 1f6581389d1..8680cce82bf 100644 Binary files a/htdocs/theme/bureau2crea/img/filenew.png and b/htdocs/theme/bureau2crea/img/filenew.png differ diff --git a/htdocs/theme/bureau2crea/img/filter.png b/htdocs/theme/bureau2crea/img/filter.png index 4baa3a3be8e..917715107bd 100644 Binary files a/htdocs/theme/bureau2crea/img/filter.png and b/htdocs/theme/bureau2crea/img/filter.png differ diff --git a/htdocs/theme/bureau2crea/img/folder-open.png b/htdocs/theme/bureau2crea/img/folder-open.png index 1687cd1b536..1db8369b3d5 100644 Binary files a/htdocs/theme/bureau2crea/img/folder-open.png and b/htdocs/theme/bureau2crea/img/folder-open.png differ diff --git a/htdocs/theme/bureau2crea/img/folder.png b/htdocs/theme/bureau2crea/img/folder.png index 908a6df9348..04a24af2e22 100644 Binary files a/htdocs/theme/bureau2crea/img/folder.png and b/htdocs/theme/bureau2crea/img/folder.png differ diff --git a/htdocs/theme/bureau2crea/img/grip.png b/htdocs/theme/bureau2crea/img/grip.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/bureau2crea/img/grip.png and b/htdocs/theme/bureau2crea/img/grip.png differ diff --git a/htdocs/theme/bureau2crea/img/grip_title.png b/htdocs/theme/bureau2crea/img/grip_title.png index 9b3c093c790..d6ecce335cb 100644 Binary files a/htdocs/theme/bureau2crea/img/grip_title.png and b/htdocs/theme/bureau2crea/img/grip_title.png differ diff --git a/htdocs/theme/bureau2crea/img/headbg.jpg b/htdocs/theme/bureau2crea/img/headbg.jpg index 7d1374e1fc9..160821354cc 100644 Binary files a/htdocs/theme/bureau2crea/img/headbg.jpg and b/htdocs/theme/bureau2crea/img/headbg.jpg differ diff --git a/htdocs/theme/bureau2crea/img/headbg2.jpg b/htdocs/theme/bureau2crea/img/headbg2.jpg index 7917abd9c07..0bc44f0ea99 100644 Binary files a/htdocs/theme/bureau2crea/img/headbg2.jpg and b/htdocs/theme/bureau2crea/img/headbg2.jpg differ diff --git a/htdocs/theme/bureau2crea/img/help.png b/htdocs/theme/bureau2crea/img/help.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/bureau2crea/img/help.png and b/htdocs/theme/bureau2crea/img/help.png differ diff --git a/htdocs/theme/bureau2crea/img/high.png b/htdocs/theme/bureau2crea/img/high.png index f893de7abf3..c0eaee6542f 100644 Binary files a/htdocs/theme/bureau2crea/img/high.png and b/htdocs/theme/bureau2crea/img/high.png differ diff --git a/htdocs/theme/bureau2crea/img/history.png b/htdocs/theme/bureau2crea/img/history.png index 932921c1f4c..0fa4283476b 100644 Binary files a/htdocs/theme/bureau2crea/img/history.png and b/htdocs/theme/bureau2crea/img/history.png differ diff --git a/htdocs/theme/bureau2crea/img/indent1.png b/htdocs/theme/bureau2crea/img/indent1.png index 52ebb2bd738..09695ac754f 100644 Binary files a/htdocs/theme/bureau2crea/img/indent1.png and b/htdocs/theme/bureau2crea/img/indent1.png differ diff --git a/htdocs/theme/bureau2crea/img/info.png b/htdocs/theme/bureau2crea/img/info.png index 16f932283ad..db8ba04fac5 100644 Binary files a/htdocs/theme/bureau2crea/img/info.png and b/htdocs/theme/bureau2crea/img/info.png differ diff --git a/htdocs/theme/bureau2crea/img/lock.png b/htdocs/theme/bureau2crea/img/lock.png index 8c2e2cbdb09..3d99cf1eaef 100644 Binary files a/htdocs/theme/bureau2crea/img/lock.png and b/htdocs/theme/bureau2crea/img/lock.png differ diff --git a/htdocs/theme/bureau2crea/img/login_background.png b/htdocs/theme/bureau2crea/img/login_background.png index b264649fcbc..facc2c6f442 100644 Binary files a/htdocs/theme/bureau2crea/img/login_background.png and b/htdocs/theme/bureau2crea/img/login_background.png differ diff --git a/htdocs/theme/bureau2crea/img/logout.png b/htdocs/theme/bureau2crea/img/logout.png index cfff7ba61d1..84bd94e7b81 100644 Binary files a/htdocs/theme/bureau2crea/img/logout.png and b/htdocs/theme/bureau2crea/img/logout.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/agenda.png b/htdocs/theme/bureau2crea/img/menus/agenda.png index 2bea3152a10..866037c9b54 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/agenda.png and b/htdocs/theme/bureau2crea/img/menus/agenda.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/commercial.png b/htdocs/theme/bureau2crea/img/menus/commercial.png index e520f7eb71e..efc1b3f0608 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/commercial.png and b/htdocs/theme/bureau2crea/img/menus/commercial.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/footer_bg.jpg b/htdocs/theme/bureau2crea/img/menus/footer_bg.jpg index ab5511b57f1..7319c16f9af 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/footer_bg.jpg and b/htdocs/theme/bureau2crea/img/menus/footer_bg.jpg differ diff --git a/htdocs/theme/bureau2crea/img/menus/generic3.png b/htdocs/theme/bureau2crea/img/menus/generic3.png index d3ed4fa89b3..e22f73aa6f9 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/generic3.png and b/htdocs/theme/bureau2crea/img/menus/generic3.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/home.png b/htdocs/theme/bureau2crea/img/menus/home.png index eec3240070b..f4d0d917d1f 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/home.png and b/htdocs/theme/bureau2crea/img/menus/home.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/mail.png b/htdocs/theme/bureau2crea/img/menus/mail.png index dab5feda5cd..d715ec7810c 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/mail.png and b/htdocs/theme/bureau2crea/img/menus/mail.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/products.png b/htdocs/theme/bureau2crea/img/menus/products.png index d1081185c44..6f5f45269ee 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/products.png and b/htdocs/theme/bureau2crea/img/menus/products.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/project.png b/htdocs/theme/bureau2crea/img/menus/project.png index 5bc0f86b4be..882235d2cd3 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/project.png and b/htdocs/theme/bureau2crea/img/menus/project.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/shop.png b/htdocs/theme/bureau2crea/img/menus/shop.png index 89627d8b332..efd6859ab60 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/shop.png and b/htdocs/theme/bureau2crea/img/menus/shop.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/tab_background.png b/htdocs/theme/bureau2crea/img/menus/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/tab_background.png and b/htdocs/theme/bureau2crea/img/menus/tab_background.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/tools.png b/htdocs/theme/bureau2crea/img/menus/tools.png index 17215ec5899..c053f660ebf 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/tools.png and b/htdocs/theme/bureau2crea/img/menus/tools.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/trtitle.png b/htdocs/theme/bureau2crea/img/menus/trtitle.png index a63f7868c5e..e1841a4f7a7 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/trtitle.png and b/htdocs/theme/bureau2crea/img/menus/trtitle.png differ diff --git a/htdocs/theme/bureau2crea/img/nav.jpg b/htdocs/theme/bureau2crea/img/nav.jpg index 28a92271dcc..c4f28779dfe 100644 Binary files a/htdocs/theme/bureau2crea/img/nav.jpg and b/htdocs/theme/bureau2crea/img/nav.jpg differ diff --git a/htdocs/theme/bureau2crea/img/next.png b/htdocs/theme/bureau2crea/img/next.png index dc8fa61930b..aff8f9e2ca5 100644 Binary files a/htdocs/theme/bureau2crea/img/next.png and b/htdocs/theme/bureau2crea/img/next.png differ diff --git a/htdocs/theme/bureau2crea/img/object_account.png b/htdocs/theme/bureau2crea/img/object_account.png index 66b1b52471f..82f72c25740 100644 Binary files a/htdocs/theme/bureau2crea/img/object_account.png and b/htdocs/theme/bureau2crea/img/object_account.png differ diff --git a/htdocs/theme/bureau2crea/img/object_action.png b/htdocs/theme/bureau2crea/img/object_action.png index adf1860a462..9844c2dfa9b 100644 Binary files a/htdocs/theme/bureau2crea/img/object_action.png and b/htdocs/theme/bureau2crea/img/object_action.png differ diff --git a/htdocs/theme/bureau2crea/img/object_action_rdv.png b/htdocs/theme/bureau2crea/img/object_action_rdv.png index b892da1f655..25edfa85b45 100644 Binary files a/htdocs/theme/bureau2crea/img/object_action_rdv.png and b/htdocs/theme/bureau2crea/img/object_action_rdv.png differ diff --git a/htdocs/theme/bureau2crea/img/object_address.png b/htdocs/theme/bureau2crea/img/object_address.png index b20734da69a..a4b878966dc 100644 Binary files a/htdocs/theme/bureau2crea/img/object_address.png and b/htdocs/theme/bureau2crea/img/object_address.png differ diff --git a/htdocs/theme/bureau2crea/img/object_barcode.png b/htdocs/theme/bureau2crea/img/object_barcode.png index 4eb6082ec31..9241513f0b8 100644 Binary files a/htdocs/theme/bureau2crea/img/object_barcode.png and b/htdocs/theme/bureau2crea/img/object_barcode.png differ diff --git a/htdocs/theme/bureau2crea/img/object_bill.png b/htdocs/theme/bureau2crea/img/object_bill.png index e1cb50de2e6..277b6ab3233 100644 Binary files a/htdocs/theme/bureau2crea/img/object_bill.png and b/htdocs/theme/bureau2crea/img/object_bill.png differ diff --git a/htdocs/theme/bureau2crea/img/object_billa.png b/htdocs/theme/bureau2crea/img/object_billa.png index da4e4e8d5d9..2589f34bfed 100644 Binary files a/htdocs/theme/bureau2crea/img/object_billa.png and b/htdocs/theme/bureau2crea/img/object_billa.png differ diff --git a/htdocs/theme/bureau2crea/img/object_billd.png b/htdocs/theme/bureau2crea/img/object_billd.png index 11aa959cc43..201dc9057ae 100644 Binary files a/htdocs/theme/bureau2crea/img/object_billd.png and b/htdocs/theme/bureau2crea/img/object_billd.png differ diff --git a/htdocs/theme/bureau2crea/img/object_billr.png b/htdocs/theme/bureau2crea/img/object_billr.png index e933aebd65d..18b8701685e 100644 Binary files a/htdocs/theme/bureau2crea/img/object_billr.png and b/htdocs/theme/bureau2crea/img/object_billr.png differ diff --git a/htdocs/theme/bureau2crea/img/object_book.png b/htdocs/theme/bureau2crea/img/object_book.png index 6df91021589..cbbc05e8e72 100644 Binary files a/htdocs/theme/bureau2crea/img/object_book.png and b/htdocs/theme/bureau2crea/img/object_book.png differ diff --git a/htdocs/theme/bureau2crea/img/object_bookmark.png b/htdocs/theme/bureau2crea/img/object_bookmark.png index 1a6af792525..a78697bdc3b 100644 Binary files a/htdocs/theme/bureau2crea/img/object_bookmark.png and b/htdocs/theme/bureau2crea/img/object_bookmark.png differ diff --git a/htdocs/theme/bureau2crea/img/object_calendar.png b/htdocs/theme/bureau2crea/img/object_calendar.png index ec670d8857b..c647b7f998d 100644 Binary files a/htdocs/theme/bureau2crea/img/object_calendar.png and b/htdocs/theme/bureau2crea/img/object_calendar.png differ diff --git a/htdocs/theme/bureau2crea/img/object_calendarday.png b/htdocs/theme/bureau2crea/img/object_calendarday.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/bureau2crea/img/object_calendarweek.png b/htdocs/theme/bureau2crea/img/object_calendarweek.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/bureau2crea/img/object_category-expanded.png b/htdocs/theme/bureau2crea/img/object_category-expanded.png index 330d649a2b8..af943c376e6 100644 Binary files a/htdocs/theme/bureau2crea/img/object_category-expanded.png and b/htdocs/theme/bureau2crea/img/object_category-expanded.png differ diff --git a/htdocs/theme/bureau2crea/img/object_category.png b/htdocs/theme/bureau2crea/img/object_category.png index 5bf3c91df8d..c7e79d4d408 100644 Binary files a/htdocs/theme/bureau2crea/img/object_category.png and b/htdocs/theme/bureau2crea/img/object_category.png differ diff --git a/htdocs/theme/bureau2crea/img/object_commercial.png b/htdocs/theme/bureau2crea/img/object_commercial.png index 1af9828796b..ad1519f111c 100644 Binary files a/htdocs/theme/bureau2crea/img/object_commercial.png and b/htdocs/theme/bureau2crea/img/object_commercial.png differ diff --git a/htdocs/theme/bureau2crea/img/object_company.png b/htdocs/theme/bureau2crea/img/object_company.png index 614d760d936..58021fa506a 100644 Binary files a/htdocs/theme/bureau2crea/img/object_company.png and b/htdocs/theme/bureau2crea/img/object_company.png differ diff --git a/htdocs/theme/bureau2crea/img/object_contact.png b/htdocs/theme/bureau2crea/img/object_contact.png index 17926656455..e98a7e367e2 100644 Binary files a/htdocs/theme/bureau2crea/img/object_contact.png and b/htdocs/theme/bureau2crea/img/object_contact.png differ diff --git a/htdocs/theme/bureau2crea/img/object_contact_all.png b/htdocs/theme/bureau2crea/img/object_contact_all.png index bac3ede119a..f5c80635c28 100644 Binary files a/htdocs/theme/bureau2crea/img/object_contact_all.png and b/htdocs/theme/bureau2crea/img/object_contact_all.png differ diff --git a/htdocs/theme/bureau2crea/img/object_contract.png b/htdocs/theme/bureau2crea/img/object_contract.png index 97e51f9f800..78af93d559f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_contract.png and b/htdocs/theme/bureau2crea/img/object_contract.png differ diff --git a/htdocs/theme/bureau2crea/img/object_cron.png b/htdocs/theme/bureau2crea/img/object_cron.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/bureau2crea/img/object_cron.png and b/htdocs/theme/bureau2crea/img/object_cron.png differ diff --git a/htdocs/theme/bureau2crea/img/object_dir.png b/htdocs/theme/bureau2crea/img/object_dir.png index f02c3d8f2a0..7324bca0143 100644 Binary files a/htdocs/theme/bureau2crea/img/object_dir.png and b/htdocs/theme/bureau2crea/img/object_dir.png differ diff --git a/htdocs/theme/bureau2crea/img/object_email.png b/htdocs/theme/bureau2crea/img/object_email.png index ded4af2949a..fdda80ed4cf 100644 Binary files a/htdocs/theme/bureau2crea/img/object_email.png and b/htdocs/theme/bureau2crea/img/object_email.png differ diff --git a/htdocs/theme/bureau2crea/img/object_energie.png b/htdocs/theme/bureau2crea/img/object_energie.png index 572c80b8a5b..27b3b52f2c6 100644 Binary files a/htdocs/theme/bureau2crea/img/object_energie.png and b/htdocs/theme/bureau2crea/img/object_energie.png differ diff --git a/htdocs/theme/bureau2crea/img/object_generic.png b/htdocs/theme/bureau2crea/img/object_generic.png index 7ec4355a7c2..39e0ab9f52f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_generic.png and b/htdocs/theme/bureau2crea/img/object_generic.png differ diff --git a/htdocs/theme/bureau2crea/img/object_globe.png b/htdocs/theme/bureau2crea/img/object_globe.png index f3fa11be499..701e24b1c46 100644 Binary files a/htdocs/theme/bureau2crea/img/object_globe.png and b/htdocs/theme/bureau2crea/img/object_globe.png differ diff --git a/htdocs/theme/bureau2crea/img/object_group.png b/htdocs/theme/bureau2crea/img/object_group.png index 2c7e254c3bc..0e651e5aa5f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_group.png and b/htdocs/theme/bureau2crea/img/object_group.png differ diff --git a/htdocs/theme/bureau2crea/img/object_holiday.png b/htdocs/theme/bureau2crea/img/object_holiday.png index 69ccdb279a5..fdc1dd8e22b 100644 Binary files a/htdocs/theme/bureau2crea/img/object_holiday.png and b/htdocs/theme/bureau2crea/img/object_holiday.png differ diff --git a/htdocs/theme/bureau2crea/img/object_intervention.png b/htdocs/theme/bureau2crea/img/object_intervention.png index f197c86fc20..09cd8370678 100644 Binary files a/htdocs/theme/bureau2crea/img/object_intervention.png and b/htdocs/theme/bureau2crea/img/object_intervention.png differ diff --git a/htdocs/theme/bureau2crea/img/object_invoice.png b/htdocs/theme/bureau2crea/img/object_invoice.png index e1cb50de2e6..277b6ab3233 100644 Binary files a/htdocs/theme/bureau2crea/img/object_invoice.png and b/htdocs/theme/bureau2crea/img/object_invoice.png differ diff --git a/htdocs/theme/bureau2crea/img/object_label.png b/htdocs/theme/bureau2crea/img/object_label.png index 913d3cdcd5b..b112af5cf0a 100644 Binary files a/htdocs/theme/bureau2crea/img/object_label.png and b/htdocs/theme/bureau2crea/img/object_label.png differ diff --git a/htdocs/theme/bureau2crea/img/object_margin.png b/htdocs/theme/bureau2crea/img/object_margin.png index 13e4b92c9ce..cd0eb4109f7 100644 Binary files a/htdocs/theme/bureau2crea/img/object_margin.png and b/htdocs/theme/bureau2crea/img/object_margin.png differ diff --git a/htdocs/theme/bureau2crea/img/object_opensurvey.png b/htdocs/theme/bureau2crea/img/object_opensurvey.png old mode 100755 new mode 100644 index 042d8217257..b5de3223bd4 Binary files a/htdocs/theme/bureau2crea/img/object_opensurvey.png and b/htdocs/theme/bureau2crea/img/object_opensurvey.png differ diff --git a/htdocs/theme/bureau2crea/img/object_order.png b/htdocs/theme/bureau2crea/img/object_order.png index fa3414dbf69..1516cd03433 100644 Binary files a/htdocs/theme/bureau2crea/img/object_order.png and b/htdocs/theme/bureau2crea/img/object_order.png differ diff --git a/htdocs/theme/bureau2crea/img/object_payment.png b/htdocs/theme/bureau2crea/img/object_payment.png index 10c3066a00c..f8ecf1d144e 100644 Binary files a/htdocs/theme/bureau2crea/img/object_payment.png and b/htdocs/theme/bureau2crea/img/object_payment.png differ diff --git a/htdocs/theme/bureau2crea/img/object_phoning.png b/htdocs/theme/bureau2crea/img/object_phoning.png index 3a9a37836fb..9f5a14edd23 100644 Binary files a/htdocs/theme/bureau2crea/img/object_phoning.png and b/htdocs/theme/bureau2crea/img/object_phoning.png differ diff --git a/htdocs/theme/bureau2crea/img/object_product.png b/htdocs/theme/bureau2crea/img/object_product.png index 24c7bf76783..f6477644a1f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_product.png and b/htdocs/theme/bureau2crea/img/object_product.png differ diff --git a/htdocs/theme/bureau2crea/img/object_project.png b/htdocs/theme/bureau2crea/img/object_project.png index 47029fed03d..bea2ebd1f7f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_project.png and b/htdocs/theme/bureau2crea/img/object_project.png differ diff --git a/htdocs/theme/bureau2crea/img/object_projectpub.png b/htdocs/theme/bureau2crea/img/object_projectpub.png index 9ac8f39355f..1ba7da16dcc 100644 Binary files a/htdocs/theme/bureau2crea/img/object_projectpub.png and b/htdocs/theme/bureau2crea/img/object_projectpub.png differ diff --git a/htdocs/theme/bureau2crea/img/object_projecttask.png b/htdocs/theme/bureau2crea/img/object_projecttask.png index a3a580c3019..7aff1a2ee20 100644 Binary files a/htdocs/theme/bureau2crea/img/object_projecttask.png and b/htdocs/theme/bureau2crea/img/object_projecttask.png differ diff --git a/htdocs/theme/bureau2crea/img/object_propal.png b/htdocs/theme/bureau2crea/img/object_propal.png index b7780a6b66f..4e66eebbedb 100644 Binary files a/htdocs/theme/bureau2crea/img/object_propal.png and b/htdocs/theme/bureau2crea/img/object_propal.png differ diff --git a/htdocs/theme/bureau2crea/img/object_reduc.png b/htdocs/theme/bureau2crea/img/object_reduc.png index fd02156f297..39dcc0fe6a0 100644 Binary files a/htdocs/theme/bureau2crea/img/object_reduc.png and b/htdocs/theme/bureau2crea/img/object_reduc.png differ diff --git a/htdocs/theme/bureau2crea/img/object_rss.png b/htdocs/theme/bureau2crea/img/object_rss.png index dad39390fa4..f3f9db58d95 100644 Binary files a/htdocs/theme/bureau2crea/img/object_rss.png and b/htdocs/theme/bureau2crea/img/object_rss.png differ diff --git a/htdocs/theme/bureau2crea/img/object_search.png b/htdocs/theme/bureau2crea/img/object_search.png index 2627db2a7ba..6ffb1c806c7 100644 Binary files a/htdocs/theme/bureau2crea/img/object_search.png and b/htdocs/theme/bureau2crea/img/object_search.png differ diff --git a/htdocs/theme/bureau2crea/img/object_sending.png b/htdocs/theme/bureau2crea/img/object_sending.png index 2e267bae6e4..93404176e87 100644 Binary files a/htdocs/theme/bureau2crea/img/object_sending.png and b/htdocs/theme/bureau2crea/img/object_sending.png differ diff --git a/htdocs/theme/bureau2crea/img/object_service.png b/htdocs/theme/bureau2crea/img/object_service.png index 9a6eb8f091a..f6477644a1f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_service.png and b/htdocs/theme/bureau2crea/img/object_service.png differ diff --git a/htdocs/theme/bureau2crea/img/object_skype.png b/htdocs/theme/bureau2crea/img/object_skype.png index 97121565bb0..b209cd8d16e 100644 Binary files a/htdocs/theme/bureau2crea/img/object_skype.png and b/htdocs/theme/bureau2crea/img/object_skype.png differ diff --git a/htdocs/theme/bureau2crea/img/object_stock.png b/htdocs/theme/bureau2crea/img/object_stock.png index 0dae23bfdfb..c7e79d4d408 100644 Binary files a/htdocs/theme/bureau2crea/img/object_stock.png and b/htdocs/theme/bureau2crea/img/object_stock.png differ diff --git a/htdocs/theme/bureau2crea/img/object_task.png b/htdocs/theme/bureau2crea/img/object_task.png index c5fbb2a031a..20b9d641a23 100644 Binary files a/htdocs/theme/bureau2crea/img/object_task.png and b/htdocs/theme/bureau2crea/img/object_task.png differ diff --git a/htdocs/theme/bureau2crea/img/object_technic.png b/htdocs/theme/bureau2crea/img/object_technic.png index 66371d50c5e..ac256e463e9 100644 Binary files a/htdocs/theme/bureau2crea/img/object_technic.png and b/htdocs/theme/bureau2crea/img/object_technic.png differ diff --git a/htdocs/theme/bureau2crea/img/object_trip.png b/htdocs/theme/bureau2crea/img/object_trip.png index 7e057afe565..d1a025c8477 100644 Binary files a/htdocs/theme/bureau2crea/img/object_trip.png and b/htdocs/theme/bureau2crea/img/object_trip.png differ diff --git a/htdocs/theme/bureau2crea/img/object_user.png b/htdocs/theme/bureau2crea/img/object_user.png index 02704bd1a57..152fd668c08 100644 Binary files a/htdocs/theme/bureau2crea/img/object_user.png and b/htdocs/theme/bureau2crea/img/object_user.png differ diff --git a/htdocs/theme/bureau2crea/img/off.png b/htdocs/theme/bureau2crea/img/off.png index 38541c3d4b7..9e28e0fa91e 100644 Binary files a/htdocs/theme/bureau2crea/img/off.png and b/htdocs/theme/bureau2crea/img/off.png differ diff --git a/htdocs/theme/bureau2crea/img/on.png b/htdocs/theme/bureau2crea/img/on.png index e93440482ce..72e87ecaeb4 100644 Binary files a/htdocs/theme/bureau2crea/img/on.png and b/htdocs/theme/bureau2crea/img/on.png differ diff --git a/htdocs/theme/bureau2crea/img/pdf2.png b/htdocs/theme/bureau2crea/img/pdf2.png index 407fa968323..975d8098993 100644 Binary files a/htdocs/theme/bureau2crea/img/pdf2.png and b/htdocs/theme/bureau2crea/img/pdf2.png differ diff --git a/htdocs/theme/bureau2crea/img/pdf3.png b/htdocs/theme/bureau2crea/img/pdf3.png index f8058fa94b7..f053591bf2d 100644 Binary files a/htdocs/theme/bureau2crea/img/pdf3.png and b/htdocs/theme/bureau2crea/img/pdf3.png differ diff --git a/htdocs/theme/bureau2crea/img/play.png b/htdocs/theme/bureau2crea/img/play.png index 6de3e256ba6..4922ea1ec12 100644 Binary files a/htdocs/theme/bureau2crea/img/play.png and b/htdocs/theme/bureau2crea/img/play.png differ diff --git a/htdocs/theme/bureau2crea/img/previous.png b/htdocs/theme/bureau2crea/img/previous.png index ed929ee0c05..bff23a0f55d 100644 Binary files a/htdocs/theme/bureau2crea/img/previous.png and b/htdocs/theme/bureau2crea/img/previous.png differ diff --git a/htdocs/theme/bureau2crea/img/printer.png b/htdocs/theme/bureau2crea/img/printer.png index 2521942af43..774686d23be 100644 Binary files a/htdocs/theme/bureau2crea/img/printer.png and b/htdocs/theme/bureau2crea/img/printer.png differ diff --git a/htdocs/theme/bureau2crea/img/puce.png b/htdocs/theme/bureau2crea/img/puce.png index 922aff295cf..0bd4bd51023 100644 Binary files a/htdocs/theme/bureau2crea/img/puce.png and b/htdocs/theme/bureau2crea/img/puce.png differ diff --git a/htdocs/theme/bureau2crea/img/recent.png b/htdocs/theme/bureau2crea/img/recent.png index e721f977f33..a3405497f03 100644 Binary files a/htdocs/theme/bureau2crea/img/recent.png and b/htdocs/theme/bureau2crea/img/recent.png differ diff --git a/htdocs/theme/bureau2crea/img/redstar.png b/htdocs/theme/bureau2crea/img/redstar.png index 83ed4f4ae0d..ce7b207978a 100644 Binary files a/htdocs/theme/bureau2crea/img/redstar.png and b/htdocs/theme/bureau2crea/img/redstar.png differ diff --git a/htdocs/theme/bureau2crea/img/refresh.png b/htdocs/theme/bureau2crea/img/refresh.png index fdd0a2920e0..edc14adcd23 100644 Binary files a/htdocs/theme/bureau2crea/img/refresh.png and b/htdocs/theme/bureau2crea/img/refresh.png differ diff --git a/htdocs/theme/bureau2crea/img/reload.png b/htdocs/theme/bureau2crea/img/reload.png index 9efecb045f8..1e638197612 100644 Binary files a/htdocs/theme/bureau2crea/img/reload.png and b/htdocs/theme/bureau2crea/img/reload.png differ diff --git a/htdocs/theme/bureau2crea/img/rightarrow.png b/htdocs/theme/bureau2crea/img/rightarrow.png index 2ea37440ecd..2c479d9453b 100644 Binary files a/htdocs/theme/bureau2crea/img/rightarrow.png and b/htdocs/theme/bureau2crea/img/rightarrow.png differ diff --git a/htdocs/theme/bureau2crea/img/search.png b/htdocs/theme/bureau2crea/img/search.png index 8fc0005e69a..97f4801c921 100644 Binary files a/htdocs/theme/bureau2crea/img/search.png and b/htdocs/theme/bureau2crea/img/search.png differ diff --git a/htdocs/theme/bureau2crea/img/searchclear.png b/htdocs/theme/bureau2crea/img/searchclear.png index 45626e3be11..56fb7f1de87 100644 Binary files a/htdocs/theme/bureau2crea/img/searchclear.png and b/htdocs/theme/bureau2crea/img/searchclear.png differ diff --git a/htdocs/theme/bureau2crea/img/setup.png b/htdocs/theme/bureau2crea/img/setup.png index d386c8dce4a..ad9a58fe0d3 100644 Binary files a/htdocs/theme/bureau2crea/img/setup.png and b/htdocs/theme/bureau2crea/img/setup.png differ diff --git a/htdocs/theme/bureau2crea/img/sort_asc.png b/htdocs/theme/bureau2crea/img/sort_asc.png index a88d7975fe9..e327d952fa4 100644 Binary files a/htdocs/theme/bureau2crea/img/sort_asc.png and b/htdocs/theme/bureau2crea/img/sort_asc.png differ diff --git a/htdocs/theme/bureau2crea/img/sort_asc_disabled.png b/htdocs/theme/bureau2crea/img/sort_asc_disabled.png index 4e144cf0b1f..e327d952fa4 100644 Binary files a/htdocs/theme/bureau2crea/img/sort_asc_disabled.png and b/htdocs/theme/bureau2crea/img/sort_asc_disabled.png differ diff --git a/htdocs/theme/bureau2crea/img/sort_desc.png b/htdocs/theme/bureau2crea/img/sort_desc.png index def071ed5af..db99fd9ad47 100644 Binary files a/htdocs/theme/bureau2crea/img/sort_desc.png and b/htdocs/theme/bureau2crea/img/sort_desc.png differ diff --git a/htdocs/theme/bureau2crea/img/sort_desc_disabled.png b/htdocs/theme/bureau2crea/img/sort_desc_disabled.png index 7824973cc60..89051c2f34f 100644 Binary files a/htdocs/theme/bureau2crea/img/sort_desc_disabled.png and b/htdocs/theme/bureau2crea/img/sort_desc_disabled.png differ diff --git a/htdocs/theme/bureau2crea/img/split.png b/htdocs/theme/bureau2crea/img/split.png index a99bbcf26e7..50b6324c334 100644 Binary files a/htdocs/theme/bureau2crea/img/split.png and b/htdocs/theme/bureau2crea/img/split.png differ diff --git a/htdocs/theme/bureau2crea/img/star.png b/htdocs/theme/bureau2crea/img/star.png index 6c090d198e5..81feace1c30 100644 Binary files a/htdocs/theme/bureau2crea/img/star.png and b/htdocs/theme/bureau2crea/img/star.png differ diff --git a/htdocs/theme/bureau2crea/img/stats.png b/htdocs/theme/bureau2crea/img/stats.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/bureau2crea/img/statut0.png b/htdocs/theme/bureau2crea/img/statut0.png index f3aedc87cba..196f4f53c7d 100644 Binary files a/htdocs/theme/bureau2crea/img/statut0.png and b/htdocs/theme/bureau2crea/img/statut0.png differ diff --git a/htdocs/theme/bureau2crea/img/statut1.png b/htdocs/theme/bureau2crea/img/statut1.png index c3f62f5a773..774b3e4bd54 100644 Binary files a/htdocs/theme/bureau2crea/img/statut1.png and b/htdocs/theme/bureau2crea/img/statut1.png differ diff --git a/htdocs/theme/bureau2crea/img/statut3.png b/htdocs/theme/bureau2crea/img/statut3.png index 596f078ca8b..9ce49b93476 100644 Binary files a/htdocs/theme/bureau2crea/img/statut3.png and b/htdocs/theme/bureau2crea/img/statut3.png differ diff --git a/htdocs/theme/bureau2crea/img/statut4.png b/htdocs/theme/bureau2crea/img/statut4.png index b12bc0d000c..e4f42ac6d53 100644 Binary files a/htdocs/theme/bureau2crea/img/statut4.png and b/htdocs/theme/bureau2crea/img/statut4.png differ diff --git a/htdocs/theme/bureau2crea/img/statut5.png b/htdocs/theme/bureau2crea/img/statut5.png index 1a110285634..774b3e4bd54 100644 Binary files a/htdocs/theme/bureau2crea/img/statut5.png and b/htdocs/theme/bureau2crea/img/statut5.png differ diff --git a/htdocs/theme/bureau2crea/img/statut6.png b/htdocs/theme/bureau2crea/img/statut6.png index c3d6619e237..e4f42ac6d53 100644 Binary files a/htdocs/theme/bureau2crea/img/statut6.png and b/htdocs/theme/bureau2crea/img/statut6.png differ diff --git a/htdocs/theme/bureau2crea/img/statut7.png b/htdocs/theme/bureau2crea/img/statut7.png index 160a4b6fb56..b391da08db5 100644 Binary files a/htdocs/theme/bureau2crea/img/statut7.png and b/htdocs/theme/bureau2crea/img/statut7.png differ diff --git a/htdocs/theme/bureau2crea/img/statut8.png b/htdocs/theme/bureau2crea/img/statut8.png old mode 100755 new mode 100644 index 4d8f59be1c2..c24d4a9dac2 Binary files a/htdocs/theme/bureau2crea/img/statut8.png and b/htdocs/theme/bureau2crea/img/statut8.png differ diff --git a/htdocs/theme/bureau2crea/img/statut9.png b/htdocs/theme/bureau2crea/img/statut9.png index 5401cf9b03d..94b6dabf265 100644 Binary files a/htdocs/theme/bureau2crea/img/statut9.png and b/htdocs/theme/bureau2crea/img/statut9.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm-1.png b/htdocs/theme/bureau2crea/img/stcomm-1.png index e18aa77d893..2641cfa6a9d 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm-1.png and b/htdocs/theme/bureau2crea/img/stcomm-1.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm-1_grayed.png b/htdocs/theme/bureau2crea/img/stcomm-1_grayed.png index 20a7219535e..5942e6c72af 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm-1_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm-1_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm0.png b/htdocs/theme/bureau2crea/img/stcomm0.png index ffddcfdfa33..d3e0d1853d3 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm0.png and b/htdocs/theme/bureau2crea/img/stcomm0.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm0_grayed.png b/htdocs/theme/bureau2crea/img/stcomm0_grayed.png index a92e1558506..9016db48b02 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm0_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm0_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm1.png b/htdocs/theme/bureau2crea/img/stcomm1.png index 275b0eeb63e..40618af47ce 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm1.png and b/htdocs/theme/bureau2crea/img/stcomm1.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm1_grayed.png b/htdocs/theme/bureau2crea/img/stcomm1_grayed.png index 98ed423aa9e..367a55921e4 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm1_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm1_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm2.png b/htdocs/theme/bureau2crea/img/stcomm2.png index e9c0557e762..f9f3f1d853e 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm2.png and b/htdocs/theme/bureau2crea/img/stcomm2.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm2_grayed.png b/htdocs/theme/bureau2crea/img/stcomm2_grayed.png index 0f2a4332cfc..f667e3573d0 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm2_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm2_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm3.png b/htdocs/theme/bureau2crea/img/stcomm3.png index cbced22fb28..24cd66d3457 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm3.png and b/htdocs/theme/bureau2crea/img/stcomm3.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm3_grayed.png b/htdocs/theme/bureau2crea/img/stcomm3_grayed.png index fc80eb2aebd..81a14c1e482 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm3_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm3_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm4.png b/htdocs/theme/bureau2crea/img/stcomm4.png index c839a8acec5..3e26b4d06ed 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm4.png and b/htdocs/theme/bureau2crea/img/stcomm4.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm4_grayed.png b/htdocs/theme/bureau2crea/img/stcomm4_grayed.png index 4935499d917..4271aafb6ce 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm4_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm4_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/tab_background.png b/htdocs/theme/bureau2crea/img/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/bureau2crea/img/tab_background.png and b/htdocs/theme/bureau2crea/img/tab_background.png differ diff --git a/htdocs/theme/bureau2crea/img/tick.png b/htdocs/theme/bureau2crea/img/tick.png index 29ded7a552a..c899abb9c34 100644 Binary files a/htdocs/theme/bureau2crea/img/tick.png and b/htdocs/theme/bureau2crea/img/tick.png differ diff --git a/htdocs/theme/bureau2crea/img/title.png b/htdocs/theme/bureau2crea/img/title.png index bb1dd5683fa..eb9c329a6a5 100644 Binary files a/htdocs/theme/bureau2crea/img/title.png and b/htdocs/theme/bureau2crea/img/title.png differ diff --git a/htdocs/theme/bureau2crea/img/tmenu.jpg b/htdocs/theme/bureau2crea/img/tmenu.jpg index 46c239d371f..b8ffd399418 100644 Binary files a/htdocs/theme/bureau2crea/img/tmenu.jpg and b/htdocs/theme/bureau2crea/img/tmenu.jpg differ diff --git a/htdocs/theme/bureau2crea/img/tmenu2.jpg b/htdocs/theme/bureau2crea/img/tmenu2.jpg index e5ca3f72414..920e0066341 100644 Binary files a/htdocs/theme/bureau2crea/img/tmenu2.jpg and b/htdocs/theme/bureau2crea/img/tmenu2.jpg differ diff --git a/htdocs/theme/bureau2crea/img/tmenu3.jpg b/htdocs/theme/bureau2crea/img/tmenu3.jpg index dc2434541cf..d42f804b026 100644 Binary files a/htdocs/theme/bureau2crea/img/tmenu3.jpg and b/htdocs/theme/bureau2crea/img/tmenu3.jpg differ diff --git a/htdocs/theme/bureau2crea/img/tmenu_inverse.jpg b/htdocs/theme/bureau2crea/img/tmenu_inverse.jpg index c8fe6d0aff2..e1efd44376e 100644 Binary files a/htdocs/theme/bureau2crea/img/tmenu_inverse.jpg and b/htdocs/theme/bureau2crea/img/tmenu_inverse.jpg differ diff --git a/htdocs/theme/bureau2crea/img/unlock.png b/htdocs/theme/bureau2crea/img/unlock.png index f3eebc59274..afefaa94d47 100644 Binary files a/htdocs/theme/bureau2crea/img/unlock.png and b/htdocs/theme/bureau2crea/img/unlock.png differ diff --git a/htdocs/theme/bureau2crea/img/uparrow.png b/htdocs/theme/bureau2crea/img/uparrow.png index 0f6d64e936a..5706ca39da4 100644 Binary files a/htdocs/theme/bureau2crea/img/uparrow.png and b/htdocs/theme/bureau2crea/img/uparrow.png differ diff --git a/htdocs/theme/bureau2crea/img/vcard.png b/htdocs/theme/bureau2crea/img/vcard.png index e03026f87fb..315abdf179d 100644 Binary files a/htdocs/theme/bureau2crea/img/vcard.png and b/htdocs/theme/bureau2crea/img/vcard.png differ diff --git a/htdocs/theme/bureau2crea/img/view.png b/htdocs/theme/bureau2crea/img/view.png index 4e0396f7b09..76c1e9f1e6a 100644 Binary files a/htdocs/theme/bureau2crea/img/view.png and b/htdocs/theme/bureau2crea/img/view.png differ diff --git a/htdocs/theme/bureau2crea/img/warning.png b/htdocs/theme/bureau2crea/img/warning.png index 81514897fe6..dfa237a5302 100644 Binary files a/htdocs/theme/bureau2crea/img/warning.png and b/htdocs/theme/bureau2crea/img/warning.png differ diff --git a/htdocs/theme/bureau2crea/thumb.png b/htdocs/theme/bureau2crea/thumb.png index ff2d53c727f..75beae21b09 100644 Binary files a/htdocs/theme/bureau2crea/thumb.png and b/htdocs/theme/bureau2crea/thumb.png differ diff --git a/htdocs/theme/cameleo/img/1downarrow.png b/htdocs/theme/cameleo/img/1downarrow.png index fd3a3ceed9d..1d134ab3e4e 100644 Binary files a/htdocs/theme/cameleo/img/1downarrow.png and b/htdocs/theme/cameleo/img/1downarrow.png differ diff --git a/htdocs/theme/cameleo/img/1downarrow_selected.png b/htdocs/theme/cameleo/img/1downarrow_selected.png index 453fdf12a40..5caf8ead52d 100644 Binary files a/htdocs/theme/cameleo/img/1downarrow_selected.png and b/htdocs/theme/cameleo/img/1downarrow_selected.png differ diff --git a/htdocs/theme/cameleo/img/1leftarrow.png b/htdocs/theme/cameleo/img/1leftarrow.png index 123d94357ce..554cdc3d76c 100644 Binary files a/htdocs/theme/cameleo/img/1leftarrow.png and b/htdocs/theme/cameleo/img/1leftarrow.png differ diff --git a/htdocs/theme/cameleo/img/1leftarrow_selected.png b/htdocs/theme/cameleo/img/1leftarrow_selected.png index 123d94357ce..554cdc3d76c 100644 Binary files a/htdocs/theme/cameleo/img/1leftarrow_selected.png and b/htdocs/theme/cameleo/img/1leftarrow_selected.png differ diff --git a/htdocs/theme/cameleo/img/1rightarrow.png b/htdocs/theme/cameleo/img/1rightarrow.png index 06559cea65f..95fdc377ee9 100644 Binary files a/htdocs/theme/cameleo/img/1rightarrow.png and b/htdocs/theme/cameleo/img/1rightarrow.png differ diff --git a/htdocs/theme/cameleo/img/1rightarrow_selected.png b/htdocs/theme/cameleo/img/1rightarrow_selected.png index 06559cea65f..95fdc377ee9 100644 Binary files a/htdocs/theme/cameleo/img/1rightarrow_selected.png and b/htdocs/theme/cameleo/img/1rightarrow_selected.png differ diff --git a/htdocs/theme/cameleo/img/1uparrow.png b/htdocs/theme/cameleo/img/1uparrow.png index 392ddf81f77..70ea061dc5e 100644 Binary files a/htdocs/theme/cameleo/img/1uparrow.png and b/htdocs/theme/cameleo/img/1uparrow.png differ diff --git a/htdocs/theme/cameleo/img/1uparrow_selected.png b/htdocs/theme/cameleo/img/1uparrow_selected.png index cf0f50437a6..36d25a408c5 100644 Binary files a/htdocs/theme/cameleo/img/1uparrow_selected.png and b/htdocs/theme/cameleo/img/1uparrow_selected.png differ diff --git a/htdocs/theme/cameleo/img/1updownarrow.png b/htdocs/theme/cameleo/img/1updownarrow.png index fd5e5801aea..871ac1c1f29 100644 Binary files a/htdocs/theme/cameleo/img/1updownarrow.png and b/htdocs/theme/cameleo/img/1updownarrow.png differ diff --git a/htdocs/theme/cameleo/img/2.png b/htdocs/theme/cameleo/img/2.png index ad65c580ee7..f592543dd8e 100644 Binary files a/htdocs/theme/cameleo/img/2.png and b/htdocs/theme/cameleo/img/2.png differ diff --git a/htdocs/theme/cameleo/img/addfile.png b/htdocs/theme/cameleo/img/addfile.png index 3bfa627d758..1cb7af0ad8a 100644 Binary files a/htdocs/theme/cameleo/img/addfile.png and b/htdocs/theme/cameleo/img/addfile.png differ diff --git a/htdocs/theme/cameleo/img/banner_02.jpg b/htdocs/theme/cameleo/img/banner_02.jpg index 29e0619e77f..81635fd2a59 100644 Binary files a/htdocs/theme/cameleo/img/banner_02.jpg and b/htdocs/theme/cameleo/img/banner_02.jpg differ diff --git a/htdocs/theme/cameleo/img/bg-bas-rubrique.png b/htdocs/theme/cameleo/img/bg-bas-rubrique.png index 941207d85da..d2fbe3a7a13 100644 Binary files a/htdocs/theme/cameleo/img/bg-bas-rubrique.png and b/htdocs/theme/cameleo/img/bg-bas-rubrique.png differ diff --git a/htdocs/theme/cameleo/img/bg-rubrique.png b/htdocs/theme/cameleo/img/bg-rubrique.png index 6bc08feb211..9abf1dc1459 100644 Binary files a/htdocs/theme/cameleo/img/bg-rubrique.png and b/htdocs/theme/cameleo/img/bg-rubrique.png differ diff --git a/htdocs/theme/cameleo/img/bg-titre-rubrique.png b/htdocs/theme/cameleo/img/bg-titre-rubrique.png index abf662a530b..ad6484fcbe9 100644 Binary files a/htdocs/theme/cameleo/img/bg-titre-rubrique.png and b/htdocs/theme/cameleo/img/bg-titre-rubrique.png differ diff --git a/htdocs/theme/cameleo/img/bg_ListeTitrelong.jpg b/htdocs/theme/cameleo/img/bg_ListeTitrelong.jpg index 5140e17b284..05e49219bf4 100644 Binary files a/htdocs/theme/cameleo/img/bg_ListeTitrelong.jpg and b/htdocs/theme/cameleo/img/bg_ListeTitrelong.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btnBlue.jpg b/htdocs/theme/cameleo/img/bg_btnBlue.jpg index 5ffcea5554d..7409bacab3e 100644 Binary files a/htdocs/theme/cameleo/img/bg_btnBlue.jpg and b/htdocs/theme/cameleo/img/bg_btnBlue.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btnGreen.jpg b/htdocs/theme/cameleo/img/bg_btnGreen.jpg index 8bcabe5a4f5..fc1f52c65d4 100644 Binary files a/htdocs/theme/cameleo/img/bg_btnGreen.jpg and b/htdocs/theme/cameleo/img/bg_btnGreen.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btnGrey.jpg b/htdocs/theme/cameleo/img/bg_btnGrey.jpg index 05b95df748c..48911bf6f13 100644 Binary files a/htdocs/theme/cameleo/img/bg_btnGrey.jpg and b/htdocs/theme/cameleo/img/bg_btnGrey.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btnRed.jpg b/htdocs/theme/cameleo/img/bg_btnRed.jpg index 9e309245c43..c8c7f55c85d 100644 Binary files a/htdocs/theme/cameleo/img/bg_btnRed.jpg and b/htdocs/theme/cameleo/img/bg_btnRed.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btn_blue.jpg b/htdocs/theme/cameleo/img/bg_btn_blue.jpg index b09d2bb5a5a..563cebdc3e7 100644 Binary files a/htdocs/theme/cameleo/img/bg_btn_blue.jpg and b/htdocs/theme/cameleo/img/bg_btn_blue.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btn_green.jpg b/htdocs/theme/cameleo/img/bg_btn_green.jpg index 513f0eb0fd8..d29a1bb0d61 100644 Binary files a/htdocs/theme/cameleo/img/bg_btn_green.jpg and b/htdocs/theme/cameleo/img/bg_btn_green.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btn_red.jpg b/htdocs/theme/cameleo/img/bg_btn_red.jpg index ad8da842c7c..fb11e4f2daf 100644 Binary files a/htdocs/theme/cameleo/img/bg_btn_red.jpg and b/htdocs/theme/cameleo/img/bg_btn_red.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_centerBlock-title.jpg b/htdocs/theme/cameleo/img/bg_centerBlock-title.jpg index 6d2ac8ce0a9..9666d52336a 100644 Binary files a/htdocs/theme/cameleo/img/bg_centerBlock-title.jpg and b/htdocs/theme/cameleo/img/bg_centerBlock-title.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_leftCategorie.jpg b/htdocs/theme/cameleo/img/bg_leftCategorie.jpg index 00071c4ec42..f152d6d083f 100644 Binary files a/htdocs/theme/cameleo/img/bg_leftCategorie.jpg and b/htdocs/theme/cameleo/img/bg_leftCategorie.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_leftCategorie2.jpg b/htdocs/theme/cameleo/img/bg_leftCategorie2.jpg index 11bfc4d9f69..1a26e37a99b 100644 Binary files a/htdocs/theme/cameleo/img/bg_leftCategorie2.jpg and b/htdocs/theme/cameleo/img/bg_leftCategorie2.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_leftMenu.jpg b/htdocs/theme/cameleo/img/bg_leftMenu.jpg index 117cdc60a46..03bca88e2ae 100644 Binary files a/htdocs/theme/cameleo/img/bg_leftMenu.jpg and b/htdocs/theme/cameleo/img/bg_leftMenu.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_leftTable.jpg b/htdocs/theme/cameleo/img/bg_leftTable.jpg index 15a3386318b..36d6f9d00d2 100644 Binary files a/htdocs/theme/cameleo/img/bg_leftTable.jpg and b/htdocs/theme/cameleo/img/bg_leftTable.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_liste_titremenu.jpg b/htdocs/theme/cameleo/img/bg_liste_titremenu.jpg index dc62a41efac..419c8ce6bf0 100644 Binary files a/htdocs/theme/cameleo/img/bg_liste_titremenu.jpg and b/htdocs/theme/cameleo/img/bg_liste_titremenu.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_other_table.jpg b/htdocs/theme/cameleo/img/bg_other_table.jpg index 086a46a8613..f4409cbaae5 100644 Binary files a/htdocs/theme/cameleo/img/bg_other_table.jpg and b/htdocs/theme/cameleo/img/bg_other_table.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenu_btnD.jpg b/htdocs/theme/cameleo/img/bg_ssmenu_btnD.jpg index 7df7fd0ab02..fd09bb40da0 100644 Binary files a/htdocs/theme/cameleo/img/bg_ssmenu_btnD.jpg and b/htdocs/theme/cameleo/img/bg_ssmenu_btnD.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenu_btnG.jpg b/htdocs/theme/cameleo/img/bg_ssmenu_btnG.jpg index 12accbf3ccb..ca483b7b295 100644 Binary files a/htdocs/theme/cameleo/img/bg_ssmenu_btnG.jpg and b/htdocs/theme/cameleo/img/bg_ssmenu_btnG.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenusel_btnD.jpg b/htdocs/theme/cameleo/img/bg_ssmenusel_btnD.jpg index d7324957df6..1e41b87c6ea 100644 Binary files a/htdocs/theme/cameleo/img/bg_ssmenusel_btnD.jpg and b/htdocs/theme/cameleo/img/bg_ssmenusel_btnD.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenusel_btnG.jpg b/htdocs/theme/cameleo/img/bg_ssmenusel_btnG.jpg index 1d012589854..3df9a20bcd5 100644 Binary files a/htdocs/theme/cameleo/img/bg_ssmenusel_btnG.jpg and b/htdocs/theme/cameleo/img/bg_ssmenusel_btnG.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_tmenu.jpg b/htdocs/theme/cameleo/img/bg_tmenu.jpg index 90819e98bc8..95fc9868971 100644 Binary files a/htdocs/theme/cameleo/img/bg_tmenu.jpg and b/htdocs/theme/cameleo/img/bg_tmenu.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_tmenu_btnD.jpg b/htdocs/theme/cameleo/img/bg_tmenu_btnD.jpg index 0180a4b5d19..af8c5f9e49c 100644 Binary files a/htdocs/theme/cameleo/img/bg_tmenu_btnD.jpg and b/htdocs/theme/cameleo/img/bg_tmenu_btnD.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_tmenu_btnG.jpg b/htdocs/theme/cameleo/img/bg_tmenu_btnG.jpg index cf1f469dbe4..fc9152e2b0d 100644 Binary files a/htdocs/theme/cameleo/img/bg_tmenu_btnG.jpg and b/htdocs/theme/cameleo/img/bg_tmenu_btnG.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_tmenusel_btnD.jpg b/htdocs/theme/cameleo/img/bg_tmenusel_btnD.jpg index 5aab5a25799..ab0be94ee9c 100644 Binary files a/htdocs/theme/cameleo/img/bg_tmenusel_btnD.jpg and b/htdocs/theme/cameleo/img/bg_tmenusel_btnD.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_tmenusel_btnG.jpg b/htdocs/theme/cameleo/img/bg_tmenusel_btnG.jpg index 24eb92fd4cd..3e488176929 100644 Binary files a/htdocs/theme/cameleo/img/bg_tmenusel_btnG.jpg and b/htdocs/theme/cameleo/img/bg_tmenusel_btnG.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_vmenu.jpg b/htdocs/theme/cameleo/img/bg_vmenu.jpg index df83d4bd687..84d883d8d69 100644 Binary files a/htdocs/theme/cameleo/img/bg_vmenu.jpg and b/htdocs/theme/cameleo/img/bg_vmenu.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_working_table.jpg b/htdocs/theme/cameleo/img/bg_working_table.jpg index cdd8d9b2c26..881e65fcb7b 100644 Binary files a/htdocs/theme/cameleo/img/bg_working_table.jpg and b/htdocs/theme/cameleo/img/bg_working_table.jpg differ diff --git a/htdocs/theme/cameleo/img/body_bg.jpg b/htdocs/theme/cameleo/img/body_bg.jpg index ddde2c5f5aa..0480bfdc738 100644 Binary files a/htdocs/theme/cameleo/img/body_bg.jpg and b/htdocs/theme/cameleo/img/body_bg.jpg differ diff --git a/htdocs/theme/cameleo/img/bouton/menu_l_title_bg.png b/htdocs/theme/cameleo/img/bouton/menu_l_title_bg.png index 8f61b220c59..10e03744ace 100644 Binary files a/htdocs/theme/cameleo/img/bouton/menu_l_title_bg.png and b/htdocs/theme/cameleo/img/bouton/menu_l_title_bg.png differ diff --git a/htdocs/theme/cameleo/img/bouton/round_black_tr.png b/htdocs/theme/cameleo/img/bouton/round_black_tr.png index f27609ae8ee..f0ea7d10c5c 100644 Binary files a/htdocs/theme/cameleo/img/bouton/round_black_tr.png and b/htdocs/theme/cameleo/img/bouton/round_black_tr.png differ diff --git a/htdocs/theme/cameleo/img/bouton_edit.png b/htdocs/theme/cameleo/img/bouton_edit.png index a29e064933a..3d36eb0523f 100644 Binary files a/htdocs/theme/cameleo/img/bouton_edit.png and b/htdocs/theme/cameleo/img/bouton_edit.png differ diff --git a/htdocs/theme/cameleo/img/calc.png b/htdocs/theme/cameleo/img/calc.png index d3bd2bbc824..5e6471408d8 100644 Binary files a/htdocs/theme/cameleo/img/calc.png and b/htdocs/theme/cameleo/img/calc.png differ diff --git a/htdocs/theme/cameleo/img/calendar.png b/htdocs/theme/cameleo/img/calendar.png index 90829a353c3..bbe6c27f041 100644 Binary files a/htdocs/theme/cameleo/img/calendar.png and b/htdocs/theme/cameleo/img/calendar.png differ diff --git a/htdocs/theme/cameleo/img/call.png b/htdocs/theme/cameleo/img/call.png index 8315c57d61d..ddfc1b7bd90 100644 Binary files a/htdocs/theme/cameleo/img/call.png and b/htdocs/theme/cameleo/img/call.png differ diff --git a/htdocs/theme/cameleo/img/call_out.png b/htdocs/theme/cameleo/img/call_out.png index bf972d8b1ae..b5a22eb827b 100644 Binary files a/htdocs/theme/cameleo/img/call_out.png and b/htdocs/theme/cameleo/img/call_out.png differ diff --git a/htdocs/theme/cameleo/img/close.png b/htdocs/theme/cameleo/img/close.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/cameleo/img/close.png and b/htdocs/theme/cameleo/img/close.png differ diff --git a/htdocs/theme/cameleo/img/close_title.png b/htdocs/theme/cameleo/img/close_title.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/cameleo/img/close_title.png and b/htdocs/theme/cameleo/img/close_title.png differ diff --git a/htdocs/theme/cameleo/img/delete.png b/htdocs/theme/cameleo/img/delete.png index 221cd3c76b9..8ad73597be7 100644 Binary files a/htdocs/theme/cameleo/img/delete.png and b/htdocs/theme/cameleo/img/delete.png differ diff --git a/htdocs/theme/cameleo/img/detail.png b/htdocs/theme/cameleo/img/detail.png index 2d31ec2202e..05562bef842 100644 Binary files a/htdocs/theme/cameleo/img/detail.png and b/htdocs/theme/cameleo/img/detail.png differ diff --git a/htdocs/theme/cameleo/img/disable.png b/htdocs/theme/cameleo/img/disable.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/cameleo/img/disable.png and b/htdocs/theme/cameleo/img/disable.png differ diff --git a/htdocs/theme/cameleo/img/edit_add.png b/htdocs/theme/cameleo/img/edit_add.png index f6e67164208..ae205e9d770 100644 Binary files a/htdocs/theme/cameleo/img/edit_add.png and b/htdocs/theme/cameleo/img/edit_add.png differ diff --git a/htdocs/theme/cameleo/img/edit_remove.png b/htdocs/theme/cameleo/img/edit_remove.png index 0c7ca54fa1f..bc4bdb360fa 100644 Binary files a/htdocs/theme/cameleo/img/edit_remove.png and b/htdocs/theme/cameleo/img/edit_remove.png differ diff --git a/htdocs/theme/cameleo/img/editdelete.png b/htdocs/theme/cameleo/img/editdelete.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/cameleo/img/editdelete.png and b/htdocs/theme/cameleo/img/editdelete.png differ diff --git a/htdocs/theme/cameleo/img/file.png b/htdocs/theme/cameleo/img/file.png index 98bc98d2f1f..73c66e9b2b3 100644 Binary files a/htdocs/theme/cameleo/img/file.png and b/htdocs/theme/cameleo/img/file.png differ diff --git a/htdocs/theme/cameleo/img/filenew.png b/htdocs/theme/cameleo/img/filenew.png index 1f6581389d1..8680cce82bf 100644 Binary files a/htdocs/theme/cameleo/img/filenew.png and b/htdocs/theme/cameleo/img/filenew.png differ diff --git a/htdocs/theme/cameleo/img/filter.png b/htdocs/theme/cameleo/img/filter.png index 4baa3a3be8e..917715107bd 100644 Binary files a/htdocs/theme/cameleo/img/filter.png and b/htdocs/theme/cameleo/img/filter.png differ diff --git a/htdocs/theme/cameleo/img/folder-open.png b/htdocs/theme/cameleo/img/folder-open.png index 1687cd1b536..1db8369b3d5 100644 Binary files a/htdocs/theme/cameleo/img/folder-open.png and b/htdocs/theme/cameleo/img/folder-open.png differ diff --git a/htdocs/theme/cameleo/img/folder.png b/htdocs/theme/cameleo/img/folder.png index 908a6df9348..04a24af2e22 100644 Binary files a/htdocs/theme/cameleo/img/folder.png and b/htdocs/theme/cameleo/img/folder.png differ diff --git a/htdocs/theme/cameleo/img/grip.png b/htdocs/theme/cameleo/img/grip.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/cameleo/img/grip.png and b/htdocs/theme/cameleo/img/grip.png differ diff --git a/htdocs/theme/cameleo/img/grip_title.png b/htdocs/theme/cameleo/img/grip_title.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/cameleo/img/grip_title.png and b/htdocs/theme/cameleo/img/grip_title.png differ diff --git a/htdocs/theme/cameleo/img/headbg.jpg b/htdocs/theme/cameleo/img/headbg.jpg index 7d1374e1fc9..160821354cc 100644 Binary files a/htdocs/theme/cameleo/img/headbg.jpg and b/htdocs/theme/cameleo/img/headbg.jpg differ diff --git a/htdocs/theme/cameleo/img/headbg2.jpg b/htdocs/theme/cameleo/img/headbg2.jpg index 7917abd9c07..0bc44f0ea99 100644 Binary files a/htdocs/theme/cameleo/img/headbg2.jpg and b/htdocs/theme/cameleo/img/headbg2.jpg differ diff --git a/htdocs/theme/cameleo/img/help.png b/htdocs/theme/cameleo/img/help.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/cameleo/img/help.png and b/htdocs/theme/cameleo/img/help.png differ diff --git a/htdocs/theme/cameleo/img/high.png b/htdocs/theme/cameleo/img/high.png index f893de7abf3..c0eaee6542f 100644 Binary files a/htdocs/theme/cameleo/img/high.png and b/htdocs/theme/cameleo/img/high.png differ diff --git a/htdocs/theme/cameleo/img/history.png b/htdocs/theme/cameleo/img/history.png index 932921c1f4c..0fa4283476b 100644 Binary files a/htdocs/theme/cameleo/img/history.png and b/htdocs/theme/cameleo/img/history.png differ diff --git a/htdocs/theme/cameleo/img/indent1.png b/htdocs/theme/cameleo/img/indent1.png index 52ebb2bd738..09695ac754f 100644 Binary files a/htdocs/theme/cameleo/img/indent1.png and b/htdocs/theme/cameleo/img/indent1.png differ diff --git a/htdocs/theme/cameleo/img/info.png b/htdocs/theme/cameleo/img/info.png index 16f932283ad..db8ba04fac5 100644 Binary files a/htdocs/theme/cameleo/img/info.png and b/htdocs/theme/cameleo/img/info.png differ diff --git a/htdocs/theme/cameleo/img/lock.png b/htdocs/theme/cameleo/img/lock.png index 8c2e2cbdb09..3d99cf1eaef 100644 Binary files a/htdocs/theme/cameleo/img/lock.png and b/htdocs/theme/cameleo/img/lock.png differ diff --git a/htdocs/theme/cameleo/img/login_background.png b/htdocs/theme/cameleo/img/login_background.png index b264649fcbc..facc2c6f442 100644 Binary files a/htdocs/theme/cameleo/img/login_background.png and b/htdocs/theme/cameleo/img/login_background.png differ diff --git a/htdocs/theme/cameleo/img/logout.png b/htdocs/theme/cameleo/img/logout.png index cfff7ba61d1..84bd94e7b81 100644 Binary files a/htdocs/theme/cameleo/img/logout.png and b/htdocs/theme/cameleo/img/logout.png differ diff --git a/htdocs/theme/cameleo/img/menus/agenda.png b/htdocs/theme/cameleo/img/menus/agenda.png index 2bea3152a10..866037c9b54 100644 Binary files a/htdocs/theme/cameleo/img/menus/agenda.png and b/htdocs/theme/cameleo/img/menus/agenda.png differ diff --git a/htdocs/theme/cameleo/img/menus/bank.png b/htdocs/theme/cameleo/img/menus/bank.png index 225df251041..9c6300eae32 100644 Binary files a/htdocs/theme/cameleo/img/menus/bank.png and b/htdocs/theme/cameleo/img/menus/bank.png differ diff --git a/htdocs/theme/cameleo/img/menus/commercial.png b/htdocs/theme/cameleo/img/menus/commercial.png index e520f7eb71e..efc1b3f0608 100644 Binary files a/htdocs/theme/cameleo/img/menus/commercial.png and b/htdocs/theme/cameleo/img/menus/commercial.png differ diff --git a/htdocs/theme/cameleo/img/menus/externalsite.png b/htdocs/theme/cameleo/img/menus/externalsite.png index 73fef8ae4c8..0bf9138d463 100644 Binary files a/htdocs/theme/cameleo/img/menus/externalsite.png and b/htdocs/theme/cameleo/img/menus/externalsite.png differ diff --git a/htdocs/theme/cameleo/img/menus/footer_bg.jpg b/htdocs/theme/cameleo/img/menus/footer_bg.jpg index ab5511b57f1..7319c16f9af 100644 Binary files a/htdocs/theme/cameleo/img/menus/footer_bg.jpg and b/htdocs/theme/cameleo/img/menus/footer_bg.jpg differ diff --git a/htdocs/theme/cameleo/img/menus/generic3.png b/htdocs/theme/cameleo/img/menus/generic3.png index d3ed4fa89b3..e22f73aa6f9 100644 Binary files a/htdocs/theme/cameleo/img/menus/generic3.png and b/htdocs/theme/cameleo/img/menus/generic3.png differ diff --git a/htdocs/theme/cameleo/img/menus/holiday.png b/htdocs/theme/cameleo/img/menus/holiday.png index 27b653d93ba..42c519aa63d 100644 Binary files a/htdocs/theme/cameleo/img/menus/holiday.png and b/htdocs/theme/cameleo/img/menus/holiday.png differ diff --git a/htdocs/theme/cameleo/img/menus/home.png b/htdocs/theme/cameleo/img/menus/home.png index eec3240070b..f4d0d917d1f 100644 Binary files a/htdocs/theme/cameleo/img/menus/home.png and b/htdocs/theme/cameleo/img/menus/home.png differ diff --git a/htdocs/theme/cameleo/img/menus/mail.png b/htdocs/theme/cameleo/img/menus/mail.png index dab5feda5cd..d715ec7810c 100644 Binary files a/htdocs/theme/cameleo/img/menus/mail.png and b/htdocs/theme/cameleo/img/menus/mail.png differ diff --git a/htdocs/theme/cameleo/img/menus/products.png b/htdocs/theme/cameleo/img/menus/products.png index d1081185c44..6f5f45269ee 100644 Binary files a/htdocs/theme/cameleo/img/menus/products.png and b/htdocs/theme/cameleo/img/menus/products.png differ diff --git a/htdocs/theme/cameleo/img/menus/project.png b/htdocs/theme/cameleo/img/menus/project.png index 5bc0f86b4be..882235d2cd3 100644 Binary files a/htdocs/theme/cameleo/img/menus/project.png and b/htdocs/theme/cameleo/img/menus/project.png differ diff --git a/htdocs/theme/cameleo/img/menus/shop.png b/htdocs/theme/cameleo/img/menus/shop.png index 89627d8b332..efd6859ab60 100644 Binary files a/htdocs/theme/cameleo/img/menus/shop.png and b/htdocs/theme/cameleo/img/menus/shop.png differ diff --git a/htdocs/theme/cameleo/img/menus/tab_background.png b/htdocs/theme/cameleo/img/menus/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/cameleo/img/menus/tab_background.png and b/htdocs/theme/cameleo/img/menus/tab_background.png differ diff --git a/htdocs/theme/cameleo/img/menus/tools.png b/htdocs/theme/cameleo/img/menus/tools.png index 17215ec5899..c053f660ebf 100644 Binary files a/htdocs/theme/cameleo/img/menus/tools.png and b/htdocs/theme/cameleo/img/menus/tools.png differ diff --git a/htdocs/theme/cameleo/img/menus/trtitle.png b/htdocs/theme/cameleo/img/menus/trtitle.png index e4fe4ffe1a6..29b694864e5 100644 Binary files a/htdocs/theme/cameleo/img/menus/trtitle.png and b/htdocs/theme/cameleo/img/menus/trtitle.png differ diff --git a/htdocs/theme/cameleo/img/next.png b/htdocs/theme/cameleo/img/next.png index dc8fa61930b..aff8f9e2ca5 100644 Binary files a/htdocs/theme/cameleo/img/next.png and b/htdocs/theme/cameleo/img/next.png differ diff --git a/htdocs/theme/cameleo/img/object_account.png b/htdocs/theme/cameleo/img/object_account.png index 3b9c74f76ca..bc85bd73f83 100644 Binary files a/htdocs/theme/cameleo/img/object_account.png and b/htdocs/theme/cameleo/img/object_account.png differ diff --git a/htdocs/theme/cameleo/img/object_action.png b/htdocs/theme/cameleo/img/object_action.png index f8e424b354d..3b964b907dc 100644 Binary files a/htdocs/theme/cameleo/img/object_action.png and b/htdocs/theme/cameleo/img/object_action.png differ diff --git a/htdocs/theme/cameleo/img/object_action_rdv.png b/htdocs/theme/cameleo/img/object_action_rdv.png index b892da1f655..25edfa85b45 100644 Binary files a/htdocs/theme/cameleo/img/object_action_rdv.png and b/htdocs/theme/cameleo/img/object_action_rdv.png differ diff --git a/htdocs/theme/cameleo/img/object_address.png b/htdocs/theme/cameleo/img/object_address.png index b20734da69a..a4b878966dc 100644 Binary files a/htdocs/theme/cameleo/img/object_address.png and b/htdocs/theme/cameleo/img/object_address.png differ diff --git a/htdocs/theme/cameleo/img/object_barcode.png b/htdocs/theme/cameleo/img/object_barcode.png index 4eb6082ec31..9241513f0b8 100644 Binary files a/htdocs/theme/cameleo/img/object_barcode.png and b/htdocs/theme/cameleo/img/object_barcode.png differ diff --git a/htdocs/theme/cameleo/img/object_bill.png b/htdocs/theme/cameleo/img/object_bill.png index e1cb50de2e6..277b6ab3233 100644 Binary files a/htdocs/theme/cameleo/img/object_bill.png and b/htdocs/theme/cameleo/img/object_bill.png differ diff --git a/htdocs/theme/cameleo/img/object_billa.png b/htdocs/theme/cameleo/img/object_billa.png index da4e4e8d5d9..2589f34bfed 100644 Binary files a/htdocs/theme/cameleo/img/object_billa.png and b/htdocs/theme/cameleo/img/object_billa.png differ diff --git a/htdocs/theme/cameleo/img/object_billd.png b/htdocs/theme/cameleo/img/object_billd.png index 11aa959cc43..201dc9057ae 100644 Binary files a/htdocs/theme/cameleo/img/object_billd.png and b/htdocs/theme/cameleo/img/object_billd.png differ diff --git a/htdocs/theme/cameleo/img/object_billr.png b/htdocs/theme/cameleo/img/object_billr.png index e933aebd65d..18b8701685e 100644 Binary files a/htdocs/theme/cameleo/img/object_billr.png and b/htdocs/theme/cameleo/img/object_billr.png differ diff --git a/htdocs/theme/cameleo/img/object_book.png b/htdocs/theme/cameleo/img/object_book.png index 6df91021589..cbbc05e8e72 100644 Binary files a/htdocs/theme/cameleo/img/object_book.png and b/htdocs/theme/cameleo/img/object_book.png differ diff --git a/htdocs/theme/cameleo/img/object_bookmark.png b/htdocs/theme/cameleo/img/object_bookmark.png index 1a6af792525..a78697bdc3b 100644 Binary files a/htdocs/theme/cameleo/img/object_bookmark.png and b/htdocs/theme/cameleo/img/object_bookmark.png differ diff --git a/htdocs/theme/cameleo/img/object_calendar.png b/htdocs/theme/cameleo/img/object_calendar.png index ec670d8857b..c647b7f998d 100644 Binary files a/htdocs/theme/cameleo/img/object_calendar.png and b/htdocs/theme/cameleo/img/object_calendar.png differ diff --git a/htdocs/theme/cameleo/img/object_category-expanded.png b/htdocs/theme/cameleo/img/object_category-expanded.png index 330d649a2b8..af943c376e6 100644 Binary files a/htdocs/theme/cameleo/img/object_category-expanded.png and b/htdocs/theme/cameleo/img/object_category-expanded.png differ diff --git a/htdocs/theme/cameleo/img/object_category.png b/htdocs/theme/cameleo/img/object_category.png index 5bf3c91df8d..c7e79d4d408 100644 Binary files a/htdocs/theme/cameleo/img/object_category.png and b/htdocs/theme/cameleo/img/object_category.png differ diff --git a/htdocs/theme/cameleo/img/object_commercial.png b/htdocs/theme/cameleo/img/object_commercial.png index 1af9828796b..ad1519f111c 100644 Binary files a/htdocs/theme/cameleo/img/object_commercial.png and b/htdocs/theme/cameleo/img/object_commercial.png differ diff --git a/htdocs/theme/cameleo/img/object_company.png b/htdocs/theme/cameleo/img/object_company.png index 614d760d936..58021fa506a 100644 Binary files a/htdocs/theme/cameleo/img/object_company.png and b/htdocs/theme/cameleo/img/object_company.png differ diff --git a/htdocs/theme/cameleo/img/object_contact.png b/htdocs/theme/cameleo/img/object_contact.png index 17926656455..e98a7e367e2 100644 Binary files a/htdocs/theme/cameleo/img/object_contact.png and b/htdocs/theme/cameleo/img/object_contact.png differ diff --git a/htdocs/theme/cameleo/img/object_contact_all.png b/htdocs/theme/cameleo/img/object_contact_all.png index 2c7e254c3bc..0e651e5aa5f 100644 Binary files a/htdocs/theme/cameleo/img/object_contact_all.png and b/htdocs/theme/cameleo/img/object_contact_all.png differ diff --git a/htdocs/theme/cameleo/img/object_contract.png b/htdocs/theme/cameleo/img/object_contract.png index 97e51f9f800..78af93d559f 100644 Binary files a/htdocs/theme/cameleo/img/object_contract.png and b/htdocs/theme/cameleo/img/object_contract.png differ diff --git a/htdocs/theme/cameleo/img/object_cron.png b/htdocs/theme/cameleo/img/object_cron.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/cameleo/img/object_cron.png and b/htdocs/theme/cameleo/img/object_cron.png differ diff --git a/htdocs/theme/cameleo/img/object_dir.png b/htdocs/theme/cameleo/img/object_dir.png index f02c3d8f2a0..7324bca0143 100644 Binary files a/htdocs/theme/cameleo/img/object_dir.png and b/htdocs/theme/cameleo/img/object_dir.png differ diff --git a/htdocs/theme/cameleo/img/object_email.png b/htdocs/theme/cameleo/img/object_email.png index b3c2aee69e1..5a92241f7e7 100644 Binary files a/htdocs/theme/cameleo/img/object_email.png and b/htdocs/theme/cameleo/img/object_email.png differ diff --git a/htdocs/theme/cameleo/img/object_energie.png b/htdocs/theme/cameleo/img/object_energie.png index 572c80b8a5b..27b3b52f2c6 100644 Binary files a/htdocs/theme/cameleo/img/object_energie.png and b/htdocs/theme/cameleo/img/object_energie.png differ diff --git a/htdocs/theme/cameleo/img/object_event.png b/htdocs/theme/cameleo/img/object_event.png index 2c7e254c3bc..0e651e5aa5f 100644 Binary files a/htdocs/theme/cameleo/img/object_event.png and b/htdocs/theme/cameleo/img/object_event.png differ diff --git a/htdocs/theme/cameleo/img/object_generic.png b/htdocs/theme/cameleo/img/object_generic.png index 330d39ef019..caadc78e7d9 100644 Binary files a/htdocs/theme/cameleo/img/object_generic.png and b/htdocs/theme/cameleo/img/object_generic.png differ diff --git a/htdocs/theme/cameleo/img/object_globe.png b/htdocs/theme/cameleo/img/object_globe.png index f3fa11be499..701e24b1c46 100644 Binary files a/htdocs/theme/cameleo/img/object_globe.png and b/htdocs/theme/cameleo/img/object_globe.png differ diff --git a/htdocs/theme/cameleo/img/object_group.png b/htdocs/theme/cameleo/img/object_group.png index 2c7e254c3bc..0e651e5aa5f 100644 Binary files a/htdocs/theme/cameleo/img/object_group.png and b/htdocs/theme/cameleo/img/object_group.png differ diff --git a/htdocs/theme/cameleo/img/object_holiday.png b/htdocs/theme/cameleo/img/object_holiday.png index 69ccdb279a5..fdc1dd8e22b 100644 Binary files a/htdocs/theme/cameleo/img/object_holiday.png and b/htdocs/theme/cameleo/img/object_holiday.png differ diff --git a/htdocs/theme/cameleo/img/object_intervention.png b/htdocs/theme/cameleo/img/object_intervention.png index a1bb5f1203c..9b015af6f6d 100644 Binary files a/htdocs/theme/cameleo/img/object_intervention.png and b/htdocs/theme/cameleo/img/object_intervention.png differ diff --git a/htdocs/theme/cameleo/img/object_invoice.png b/htdocs/theme/cameleo/img/object_invoice.png index e1cb50de2e6..277b6ab3233 100644 Binary files a/htdocs/theme/cameleo/img/object_invoice.png and b/htdocs/theme/cameleo/img/object_invoice.png differ diff --git a/htdocs/theme/cameleo/img/object_label.png b/htdocs/theme/cameleo/img/object_label.png index 913d3cdcd5b..b112af5cf0a 100644 Binary files a/htdocs/theme/cameleo/img/object_label.png and b/htdocs/theme/cameleo/img/object_label.png differ diff --git a/htdocs/theme/cameleo/img/object_lead.png b/htdocs/theme/cameleo/img/object_lead.png index ae1d7deadb7..7324bca0143 100644 Binary files a/htdocs/theme/cameleo/img/object_lead.png and b/htdocs/theme/cameleo/img/object_lead.png differ diff --git a/htdocs/theme/cameleo/img/object_leadpub.png b/htdocs/theme/cameleo/img/object_leadpub.png index 2c7e254c3bc..0e651e5aa5f 100644 Binary files a/htdocs/theme/cameleo/img/object_leadpub.png and b/htdocs/theme/cameleo/img/object_leadpub.png differ diff --git a/htdocs/theme/cameleo/img/object_list.png b/htdocs/theme/cameleo/img/object_list.png index 1396dcc9211..1f49c887555 100644 Binary files a/htdocs/theme/cameleo/img/object_list.png and b/htdocs/theme/cameleo/img/object_list.png differ diff --git a/htdocs/theme/cameleo/img/object_margin.png b/htdocs/theme/cameleo/img/object_margin.png index 13e4b92c9ce..cd0eb4109f7 100644 Binary files a/htdocs/theme/cameleo/img/object_margin.png and b/htdocs/theme/cameleo/img/object_margin.png differ diff --git a/htdocs/theme/cameleo/img/object_opensurvey.png b/htdocs/theme/cameleo/img/object_opensurvey.png old mode 100755 new mode 100644 index 042d8217257..b5de3223bd4 Binary files a/htdocs/theme/cameleo/img/object_opensurvey.png and b/htdocs/theme/cameleo/img/object_opensurvey.png differ diff --git a/htdocs/theme/cameleo/img/object_order.png b/htdocs/theme/cameleo/img/object_order.png index fa3414dbf69..1516cd03433 100644 Binary files a/htdocs/theme/cameleo/img/object_order.png and b/htdocs/theme/cameleo/img/object_order.png differ diff --git a/htdocs/theme/cameleo/img/object_payment.png b/htdocs/theme/cameleo/img/object_payment.png index 10c3066a00c..f8ecf1d144e 100644 Binary files a/htdocs/theme/cameleo/img/object_payment.png and b/htdocs/theme/cameleo/img/object_payment.png differ diff --git a/htdocs/theme/cameleo/img/object_phoning.png b/htdocs/theme/cameleo/img/object_phoning.png index 3a9a37836fb..9f5a14edd23 100644 Binary files a/htdocs/theme/cameleo/img/object_phoning.png and b/htdocs/theme/cameleo/img/object_phoning.png differ diff --git a/htdocs/theme/cameleo/img/object_product.png b/htdocs/theme/cameleo/img/object_product.png index 24c7bf76783..f6477644a1f 100644 Binary files a/htdocs/theme/cameleo/img/object_product.png and b/htdocs/theme/cameleo/img/object_product.png differ diff --git a/htdocs/theme/cameleo/img/object_project.png b/htdocs/theme/cameleo/img/object_project.png index ae1d7deadb7..7324bca0143 100644 Binary files a/htdocs/theme/cameleo/img/object_project.png and b/htdocs/theme/cameleo/img/object_project.png differ diff --git a/htdocs/theme/cameleo/img/object_projectpub.png b/htdocs/theme/cameleo/img/object_projectpub.png index 9ac8f39355f..1ba7da16dcc 100644 Binary files a/htdocs/theme/cameleo/img/object_projectpub.png and b/htdocs/theme/cameleo/img/object_projectpub.png differ diff --git a/htdocs/theme/cameleo/img/object_projecttask.png b/htdocs/theme/cameleo/img/object_projecttask.png index a3a580c3019..7aff1a2ee20 100644 Binary files a/htdocs/theme/cameleo/img/object_projecttask.png and b/htdocs/theme/cameleo/img/object_projecttask.png differ diff --git a/htdocs/theme/cameleo/img/object_propal.png b/htdocs/theme/cameleo/img/object_propal.png index b7780a6b66f..4e66eebbedb 100644 Binary files a/htdocs/theme/cameleo/img/object_propal.png and b/htdocs/theme/cameleo/img/object_propal.png differ diff --git a/htdocs/theme/cameleo/img/object_reduc.png b/htdocs/theme/cameleo/img/object_reduc.png index fd02156f297..39dcc0fe6a0 100644 Binary files a/htdocs/theme/cameleo/img/object_reduc.png and b/htdocs/theme/cameleo/img/object_reduc.png differ diff --git a/htdocs/theme/cameleo/img/object_rss.png b/htdocs/theme/cameleo/img/object_rss.png index dad39390fa4..f3f9db58d95 100644 Binary files a/htdocs/theme/cameleo/img/object_rss.png and b/htdocs/theme/cameleo/img/object_rss.png differ diff --git a/htdocs/theme/cameleo/img/object_search.png b/htdocs/theme/cameleo/img/object_search.png index 2627db2a7ba..6ffb1c806c7 100644 Binary files a/htdocs/theme/cameleo/img/object_search.png and b/htdocs/theme/cameleo/img/object_search.png differ diff --git a/htdocs/theme/cameleo/img/object_sending.png b/htdocs/theme/cameleo/img/object_sending.png index 2e267bae6e4..93404176e87 100644 Binary files a/htdocs/theme/cameleo/img/object_sending.png and b/htdocs/theme/cameleo/img/object_sending.png differ diff --git a/htdocs/theme/cameleo/img/object_service.png b/htdocs/theme/cameleo/img/object_service.png index 725b0bcd2c0..7e990268740 100644 Binary files a/htdocs/theme/cameleo/img/object_service.png and b/htdocs/theme/cameleo/img/object_service.png differ diff --git a/htdocs/theme/cameleo/img/object_skype.png b/htdocs/theme/cameleo/img/object_skype.png index 97121565bb0..b209cd8d16e 100644 Binary files a/htdocs/theme/cameleo/img/object_skype.png and b/htdocs/theme/cameleo/img/object_skype.png differ diff --git a/htdocs/theme/cameleo/img/object_stat.png b/htdocs/theme/cameleo/img/object_stat.png index a9bd77da6b7..5b7ea7e966e 100644 Binary files a/htdocs/theme/cameleo/img/object_stat.png and b/htdocs/theme/cameleo/img/object_stat.png differ diff --git a/htdocs/theme/cameleo/img/object_stock.png b/htdocs/theme/cameleo/img/object_stock.png index c4c06ab6f78..94c594e99af 100644 Binary files a/htdocs/theme/cameleo/img/object_stock.png and b/htdocs/theme/cameleo/img/object_stock.png differ diff --git a/htdocs/theme/cameleo/img/object_task.png b/htdocs/theme/cameleo/img/object_task.png index c5fbb2a031a..20b9d641a23 100644 Binary files a/htdocs/theme/cameleo/img/object_task.png and b/htdocs/theme/cameleo/img/object_task.png differ diff --git a/htdocs/theme/cameleo/img/object_technic.png b/htdocs/theme/cameleo/img/object_technic.png index 3c3862e0cbf..cc71bb4fde2 100644 Binary files a/htdocs/theme/cameleo/img/object_technic.png and b/htdocs/theme/cameleo/img/object_technic.png differ diff --git a/htdocs/theme/cameleo/img/object_trip.png b/htdocs/theme/cameleo/img/object_trip.png index 9e082380242..c695a26415d 100644 Binary files a/htdocs/theme/cameleo/img/object_trip.png and b/htdocs/theme/cameleo/img/object_trip.png differ diff --git a/htdocs/theme/cameleo/img/object_user.png b/htdocs/theme/cameleo/img/object_user.png index 02704bd1a57..152fd668c08 100644 Binary files a/htdocs/theme/cameleo/img/object_user.png and b/htdocs/theme/cameleo/img/object_user.png differ diff --git a/htdocs/theme/cameleo/img/off.png b/htdocs/theme/cameleo/img/off.png index 38541c3d4b7..9e28e0fa91e 100644 Binary files a/htdocs/theme/cameleo/img/off.png and b/htdocs/theme/cameleo/img/off.png differ diff --git a/htdocs/theme/cameleo/img/on.png b/htdocs/theme/cameleo/img/on.png index e93440482ce..72e87ecaeb4 100644 Binary files a/htdocs/theme/cameleo/img/on.png and b/htdocs/theme/cameleo/img/on.png differ diff --git a/htdocs/theme/cameleo/img/pdf2.png b/htdocs/theme/cameleo/img/pdf2.png index 407fa968323..975d8098993 100644 Binary files a/htdocs/theme/cameleo/img/pdf2.png and b/htdocs/theme/cameleo/img/pdf2.png differ diff --git a/htdocs/theme/cameleo/img/pdf3.png b/htdocs/theme/cameleo/img/pdf3.png index f8058fa94b7..f053591bf2d 100644 Binary files a/htdocs/theme/cameleo/img/pdf3.png and b/htdocs/theme/cameleo/img/pdf3.png differ diff --git a/htdocs/theme/cameleo/img/play.png b/htdocs/theme/cameleo/img/play.png index 6de3e256ba6..4922ea1ec12 100644 Binary files a/htdocs/theme/cameleo/img/play.png and b/htdocs/theme/cameleo/img/play.png differ diff --git a/htdocs/theme/cameleo/img/previous.png b/htdocs/theme/cameleo/img/previous.png index ed929ee0c05..bff23a0f55d 100644 Binary files a/htdocs/theme/cameleo/img/previous.png and b/htdocs/theme/cameleo/img/previous.png differ diff --git a/htdocs/theme/cameleo/img/printer.png b/htdocs/theme/cameleo/img/printer.png index 2521942af43..774686d23be 100644 Binary files a/htdocs/theme/cameleo/img/printer.png and b/htdocs/theme/cameleo/img/printer.png differ diff --git a/htdocs/theme/cameleo/img/puce.png b/htdocs/theme/cameleo/img/puce.png index 922aff295cf..0bd4bd51023 100644 Binary files a/htdocs/theme/cameleo/img/puce.png and b/htdocs/theme/cameleo/img/puce.png differ diff --git a/htdocs/theme/cameleo/img/recent.png b/htdocs/theme/cameleo/img/recent.png index e721f977f33..a3405497f03 100644 Binary files a/htdocs/theme/cameleo/img/recent.png and b/htdocs/theme/cameleo/img/recent.png differ diff --git a/htdocs/theme/cameleo/img/redstar.png b/htdocs/theme/cameleo/img/redstar.png index 83ed4f4ae0d..ce7b207978a 100644 Binary files a/htdocs/theme/cameleo/img/redstar.png and b/htdocs/theme/cameleo/img/redstar.png differ diff --git a/htdocs/theme/cameleo/img/refresh.png b/htdocs/theme/cameleo/img/refresh.png index fdd0a2920e0..edc14adcd23 100644 Binary files a/htdocs/theme/cameleo/img/refresh.png and b/htdocs/theme/cameleo/img/refresh.png differ diff --git a/htdocs/theme/cameleo/img/reload.png b/htdocs/theme/cameleo/img/reload.png index 9efecb045f8..1e638197612 100644 Binary files a/htdocs/theme/cameleo/img/reload.png and b/htdocs/theme/cameleo/img/reload.png differ diff --git a/htdocs/theme/cameleo/img/rightarrow.png b/htdocs/theme/cameleo/img/rightarrow.png index 2ea37440ecd..2c479d9453b 100644 Binary files a/htdocs/theme/cameleo/img/rightarrow.png and b/htdocs/theme/cameleo/img/rightarrow.png differ diff --git a/htdocs/theme/cameleo/img/search.png b/htdocs/theme/cameleo/img/search.png index 8fc0005e69a..97f4801c921 100644 Binary files a/htdocs/theme/cameleo/img/search.png and b/htdocs/theme/cameleo/img/search.png differ diff --git a/htdocs/theme/cameleo/img/searchclear.png b/htdocs/theme/cameleo/img/searchclear.png index 45626e3be11..56fb7f1de87 100644 Binary files a/htdocs/theme/cameleo/img/searchclear.png and b/htdocs/theme/cameleo/img/searchclear.png differ diff --git a/htdocs/theme/cameleo/img/setup.png b/htdocs/theme/cameleo/img/setup.png index 71c9bf5d772..0dec91abb30 100644 Binary files a/htdocs/theme/cameleo/img/setup.png and b/htdocs/theme/cameleo/img/setup.png differ diff --git a/htdocs/theme/cameleo/img/sort_asc.png b/htdocs/theme/cameleo/img/sort_asc.png index a88d7975fe9..e327d952fa4 100644 Binary files a/htdocs/theme/cameleo/img/sort_asc.png and b/htdocs/theme/cameleo/img/sort_asc.png differ diff --git a/htdocs/theme/cameleo/img/sort_asc_disabled.png b/htdocs/theme/cameleo/img/sort_asc_disabled.png index 4e144cf0b1f..e327d952fa4 100644 Binary files a/htdocs/theme/cameleo/img/sort_asc_disabled.png and b/htdocs/theme/cameleo/img/sort_asc_disabled.png differ diff --git a/htdocs/theme/cameleo/img/sort_desc.png b/htdocs/theme/cameleo/img/sort_desc.png index def071ed5af..db99fd9ad47 100644 Binary files a/htdocs/theme/cameleo/img/sort_desc.png and b/htdocs/theme/cameleo/img/sort_desc.png differ diff --git a/htdocs/theme/cameleo/img/sort_desc_disabled.png b/htdocs/theme/cameleo/img/sort_desc_disabled.png index 7824973cc60..89051c2f34f 100644 Binary files a/htdocs/theme/cameleo/img/sort_desc_disabled.png and b/htdocs/theme/cameleo/img/sort_desc_disabled.png differ diff --git a/htdocs/theme/cameleo/img/split.png b/htdocs/theme/cameleo/img/split.png index a99bbcf26e7..50b6324c334 100644 Binary files a/htdocs/theme/cameleo/img/split.png and b/htdocs/theme/cameleo/img/split.png differ diff --git a/htdocs/theme/cameleo/img/star.png b/htdocs/theme/cameleo/img/star.png index 6c090d198e5..81feace1c30 100644 Binary files a/htdocs/theme/cameleo/img/star.png and b/htdocs/theme/cameleo/img/star.png differ diff --git a/htdocs/theme/cameleo/img/stats.png b/htdocs/theme/cameleo/img/stats.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/cameleo/img/statut0.png b/htdocs/theme/cameleo/img/statut0.png index f3aedc87cba..196f4f53c7d 100644 Binary files a/htdocs/theme/cameleo/img/statut0.png and b/htdocs/theme/cameleo/img/statut0.png differ diff --git a/htdocs/theme/cameleo/img/statut1.png b/htdocs/theme/cameleo/img/statut1.png index c3f62f5a773..774b3e4bd54 100644 Binary files a/htdocs/theme/cameleo/img/statut1.png and b/htdocs/theme/cameleo/img/statut1.png differ diff --git a/htdocs/theme/cameleo/img/statut3.png b/htdocs/theme/cameleo/img/statut3.png index 596f078ca8b..9ce49b93476 100644 Binary files a/htdocs/theme/cameleo/img/statut3.png and b/htdocs/theme/cameleo/img/statut3.png differ diff --git a/htdocs/theme/cameleo/img/statut4.png b/htdocs/theme/cameleo/img/statut4.png index b12bc0d000c..e4f42ac6d53 100644 Binary files a/htdocs/theme/cameleo/img/statut4.png and b/htdocs/theme/cameleo/img/statut4.png differ diff --git a/htdocs/theme/cameleo/img/statut5.png b/htdocs/theme/cameleo/img/statut5.png index 1a110285634..774b3e4bd54 100644 Binary files a/htdocs/theme/cameleo/img/statut5.png and b/htdocs/theme/cameleo/img/statut5.png differ diff --git a/htdocs/theme/cameleo/img/statut6.png b/htdocs/theme/cameleo/img/statut6.png index c3d6619e237..e4f42ac6d53 100644 Binary files a/htdocs/theme/cameleo/img/statut6.png and b/htdocs/theme/cameleo/img/statut6.png differ diff --git a/htdocs/theme/cameleo/img/statut7.png b/htdocs/theme/cameleo/img/statut7.png index 596f078ca8b..9ce49b93476 100644 Binary files a/htdocs/theme/cameleo/img/statut7.png and b/htdocs/theme/cameleo/img/statut7.png differ diff --git a/htdocs/theme/cameleo/img/statut8.png b/htdocs/theme/cameleo/img/statut8.png index 9472fd6a226..65ab6677ee7 100644 Binary files a/htdocs/theme/cameleo/img/statut8.png and b/htdocs/theme/cameleo/img/statut8.png differ diff --git a/htdocs/theme/cameleo/img/statut9.png b/htdocs/theme/cameleo/img/statut9.png index f3aedc87cba..196f4f53c7d 100644 Binary files a/htdocs/theme/cameleo/img/statut9.png and b/htdocs/theme/cameleo/img/statut9.png differ diff --git a/htdocs/theme/cameleo/img/stcomm0.png b/htdocs/theme/cameleo/img/stcomm0.png index f3aedc87cba..196f4f53c7d 100644 Binary files a/htdocs/theme/cameleo/img/stcomm0.png and b/htdocs/theme/cameleo/img/stcomm0.png differ diff --git a/htdocs/theme/cameleo/img/stcomm1.png b/htdocs/theme/cameleo/img/stcomm1.png index eb76c0fb179..6bdea492985 100644 Binary files a/htdocs/theme/cameleo/img/stcomm1.png and b/htdocs/theme/cameleo/img/stcomm1.png differ diff --git a/htdocs/theme/cameleo/img/stcomm10.png b/htdocs/theme/cameleo/img/stcomm10.png index 93f571ae6ea..ed95a29dc9a 100644 Binary files a/htdocs/theme/cameleo/img/stcomm10.png and b/htdocs/theme/cameleo/img/stcomm10.png differ diff --git a/htdocs/theme/cameleo/img/stcomm2.png b/htdocs/theme/cameleo/img/stcomm2.png index 1e76ce4946b..9e000b70dc9 100644 Binary files a/htdocs/theme/cameleo/img/stcomm2.png and b/htdocs/theme/cameleo/img/stcomm2.png differ diff --git a/htdocs/theme/cameleo/img/stcomm3.png b/htdocs/theme/cameleo/img/stcomm3.png index 465234fcd3c..5a6c0aeface 100644 Binary files a/htdocs/theme/cameleo/img/stcomm3.png and b/htdocs/theme/cameleo/img/stcomm3.png differ diff --git a/htdocs/theme/cameleo/img/stcomm4.png b/htdocs/theme/cameleo/img/stcomm4.png index 80b8e692971..0395aba2507 100644 Binary files a/htdocs/theme/cameleo/img/stcomm4.png and b/htdocs/theme/cameleo/img/stcomm4.png differ diff --git a/htdocs/theme/cameleo/img/stcomm5.png b/htdocs/theme/cameleo/img/stcomm5.png index 596f078ca8b..9ce49b93476 100644 Binary files a/htdocs/theme/cameleo/img/stcomm5.png and b/htdocs/theme/cameleo/img/stcomm5.png differ diff --git a/htdocs/theme/cameleo/img/stcomm6.png b/htdocs/theme/cameleo/img/stcomm6.png index 9472fd6a226..65ab6677ee7 100644 Binary files a/htdocs/theme/cameleo/img/stcomm6.png and b/htdocs/theme/cameleo/img/stcomm6.png differ diff --git a/htdocs/theme/cameleo/img/stcomm7.png b/htdocs/theme/cameleo/img/stcomm7.png index db669c736f7..fbb4ed56775 100644 Binary files a/htdocs/theme/cameleo/img/stcomm7.png and b/htdocs/theme/cameleo/img/stcomm7.png differ diff --git a/htdocs/theme/cameleo/img/stcomm8.png b/htdocs/theme/cameleo/img/stcomm8.png index fd89ea37856..05e7dae5dc2 100644 Binary files a/htdocs/theme/cameleo/img/stcomm8.png and b/htdocs/theme/cameleo/img/stcomm8.png differ diff --git a/htdocs/theme/cameleo/img/stcomm9.png b/htdocs/theme/cameleo/img/stcomm9.png index 526fdf4cb92..f2b68b4b218 100644 Binary files a/htdocs/theme/cameleo/img/stcomm9.png and b/htdocs/theme/cameleo/img/stcomm9.png differ diff --git a/htdocs/theme/cameleo/img/tab_background.png b/htdocs/theme/cameleo/img/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/cameleo/img/tab_background.png and b/htdocs/theme/cameleo/img/tab_background.png differ diff --git a/htdocs/theme/cameleo/img/tick.png b/htdocs/theme/cameleo/img/tick.png index 29ded7a552a..c899abb9c34 100644 Binary files a/htdocs/theme/cameleo/img/tick.png and b/htdocs/theme/cameleo/img/tick.png differ diff --git a/htdocs/theme/cameleo/img/title.png b/htdocs/theme/cameleo/img/title.png index bb1dd5683fa..eb9c329a6a5 100644 Binary files a/htdocs/theme/cameleo/img/title.png and b/htdocs/theme/cameleo/img/title.png differ diff --git a/htdocs/theme/cameleo/img/unlock.png b/htdocs/theme/cameleo/img/unlock.png index f3eebc59274..afefaa94d47 100644 Binary files a/htdocs/theme/cameleo/img/unlock.png and b/htdocs/theme/cameleo/img/unlock.png differ diff --git a/htdocs/theme/cameleo/img/uparrow.png b/htdocs/theme/cameleo/img/uparrow.png index 0f6d64e936a..5706ca39da4 100644 Binary files a/htdocs/theme/cameleo/img/uparrow.png and b/htdocs/theme/cameleo/img/uparrow.png differ diff --git a/htdocs/theme/cameleo/img/vcard.png b/htdocs/theme/cameleo/img/vcard.png index e03026f87fb..315abdf179d 100644 Binary files a/htdocs/theme/cameleo/img/vcard.png and b/htdocs/theme/cameleo/img/vcard.png differ diff --git a/htdocs/theme/cameleo/img/view.png b/htdocs/theme/cameleo/img/view.png index 4e0396f7b09..76c1e9f1e6a 100644 Binary files a/htdocs/theme/cameleo/img/view.png and b/htdocs/theme/cameleo/img/view.png differ diff --git a/htdocs/theme/cameleo/img/warning.png b/htdocs/theme/cameleo/img/warning.png index 81514897fe6..dfa237a5302 100644 Binary files a/htdocs/theme/cameleo/img/warning.png and b/htdocs/theme/cameleo/img/warning.png differ diff --git a/htdocs/theme/common/colorpicker.png b/htdocs/theme/common/colorpicker.png index e5ee4b7d74c..26cc6af26f0 100644 Binary files a/htdocs/theme/common/colorpicker.png and b/htdocs/theme/common/colorpicker.png differ diff --git a/htdocs/theme/common/devices/audio-card.png b/htdocs/theme/common/devices/audio-card.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/audio-headset.png b/htdocs/theme/common/devices/audio-headset.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/audio-input-line.png b/htdocs/theme/common/devices/audio-input-line.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/audio-input-microphone.png b/htdocs/theme/common/devices/audio-input-microphone.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/battery.png b/htdocs/theme/common/devices/battery.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/camera-photo.png b/htdocs/theme/common/devices/camera-photo.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/camera-web.png b/htdocs/theme/common/devices/camera-web.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/computer-laptop.png b/htdocs/theme/common/devices/computer-laptop.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/computer.png b/htdocs/theme/common/devices/computer.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/cpu.png b/htdocs/theme/common/devices/cpu.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/drive-harddisk.png b/htdocs/theme/common/devices/drive-harddisk.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/drive-optical.png b/htdocs/theme/common/devices/drive-optical.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/drive-removable-media-usb-pendrive.png b/htdocs/theme/common/devices/drive-removable-media-usb-pendrive.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/drive-removable-media-usb.png b/htdocs/theme/common/devices/drive-removable-media-usb.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/drive-removable-media.png b/htdocs/theme/common/devices/drive-removable-media.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/input-gaming.png b/htdocs/theme/common/devices/input-gaming.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/input-keyboard.png b/htdocs/theme/common/devices/input-keyboard.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/input-mouse.png b/htdocs/theme/common/devices/input-mouse.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/input-tablet.png b/htdocs/theme/common/devices/input-tablet.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-flash-memory-stick.png b/htdocs/theme/common/devices/media-flash-memory-stick.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-flash-sd-mmc.png b/htdocs/theme/common/devices/media-flash-sd-mmc.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-flash-smart-media.png b/htdocs/theme/common/devices/media-flash-smart-media.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-flash.png b/htdocs/theme/common/devices/media-flash.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-floppy.png b/htdocs/theme/common/devices/media-floppy.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-audio.png b/htdocs/theme/common/devices/media-optical-audio.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-blu-ray.png b/htdocs/theme/common/devices/media-optical-blu-ray.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-data.png b/htdocs/theme/common/devices/media-optical-data.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-dvd-video.png b/htdocs/theme/common/devices/media-optical-dvd-video.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-dvd.png b/htdocs/theme/common/devices/media-optical-dvd.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-mixed-cd.png b/htdocs/theme/common/devices/media-optical-mixed-cd.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-recordable.png b/htdocs/theme/common/devices/media-optical-recordable.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-video.png b/htdocs/theme/common/devices/media-optical-video.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical.png b/htdocs/theme/common/devices/media-optical.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-tape.png b/htdocs/theme/common/devices/media-tape.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/modem.png b/htdocs/theme/common/devices/modem.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/multimedia-player-apple-ipod.png b/htdocs/theme/common/devices/multimedia-player-apple-ipod.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/multimedia-player.png b/htdocs/theme/common/devices/multimedia-player.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wired.png b/htdocs/theme/common/devices/network-wired.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-connected-00.png b/htdocs/theme/common/devices/network-wireless-connected-00.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-connected-100.png b/htdocs/theme/common/devices/network-wireless-connected-100.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-connected-25.png b/htdocs/theme/common/devices/network-wireless-connected-25.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-connected-50.png b/htdocs/theme/common/devices/network-wireless-connected-50.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-connected-75.png b/htdocs/theme/common/devices/network-wireless-connected-75.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-disconnected.png b/htdocs/theme/common/devices/network-wireless-disconnected.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless.png b/htdocs/theme/common/devices/network-wireless.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/pda.png b/htdocs/theme/common/devices/pda.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/phone-openmoko-freerunner.png b/htdocs/theme/common/devices/phone-openmoko-freerunner.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/phone.png b/htdocs/theme/common/devices/phone.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/printer-laser.png b/htdocs/theme/common/devices/printer-laser.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/printer.png b/htdocs/theme/common/devices/printer.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/scanner.png b/htdocs/theme/common/devices/scanner.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/video-display.png b/htdocs/theme/common/devices/video-display.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/video-projector.png b/htdocs/theme/common/devices/video-projector.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/video-television.png b/htdocs/theme/common/devices/video-television.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/dolibarr_box.png b/htdocs/theme/common/dolibarr_box.png index 1005eee1a3f..074b41951ba 100644 Binary files a/htdocs/theme/common/dolibarr_box.png and b/htdocs/theme/common/dolibarr_box.png differ diff --git a/htdocs/theme/common/dolistore.jpg b/htdocs/theme/common/dolistore.jpg index 4c330cdc184..65a2d6ffae1 100644 Binary files a/htdocs/theme/common/dolistore.jpg and b/htdocs/theme/common/dolistore.jpg differ diff --git a/htdocs/theme/common/emotes/face-angel.png b/htdocs/theme/common/emotes/face-angel.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-embarrassed.png b/htdocs/theme/common/emotes/face-embarrassed.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-kiss.png b/htdocs/theme/common/emotes/face-kiss.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-laugh.png b/htdocs/theme/common/emotes/face-laugh.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-plain.png b/htdocs/theme/common/emotes/face-plain.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-raspberry.png b/htdocs/theme/common/emotes/face-raspberry.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-sad.png b/htdocs/theme/common/emotes/face-sad.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-smile-big.png b/htdocs/theme/common/emotes/face-smile-big.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-smile.png b/htdocs/theme/common/emotes/face-smile.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-surprise.png b/htdocs/theme/common/emotes/face-surprise.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-uncertain.png b/htdocs/theme/common/emotes/face-uncertain.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-wink.png b/htdocs/theme/common/emotes/face-wink.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/flags/ad.png b/htdocs/theme/common/flags/ad.png index 9cbbac67868..30e008b3c35 100644 Binary files a/htdocs/theme/common/flags/ad.png and b/htdocs/theme/common/flags/ad.png differ diff --git a/htdocs/theme/common/flags/ae.png b/htdocs/theme/common/flags/ae.png index b95418959f7..85d458ad289 100644 Binary files a/htdocs/theme/common/flags/ae.png and b/htdocs/theme/common/flags/ae.png differ diff --git a/htdocs/theme/common/flags/af.png b/htdocs/theme/common/flags/af.png index e7cf8379655..219c05b72b8 100644 Binary files a/htdocs/theme/common/flags/af.png and b/htdocs/theme/common/flags/af.png differ diff --git a/htdocs/theme/common/flags/ag.png b/htdocs/theme/common/flags/ag.png index e05c89a25dc..60a62e53832 100644 Binary files a/htdocs/theme/common/flags/ag.png and b/htdocs/theme/common/flags/ag.png differ diff --git a/htdocs/theme/common/flags/ai.png b/htdocs/theme/common/flags/ai.png index 99e6c99f755..0ca086500f9 100644 Binary files a/htdocs/theme/common/flags/ai.png and b/htdocs/theme/common/flags/ai.png differ diff --git a/htdocs/theme/common/flags/al.png b/htdocs/theme/common/flags/al.png index 722d29bcd91..997f3f1b748 100644 Binary files a/htdocs/theme/common/flags/al.png and b/htdocs/theme/common/flags/al.png differ diff --git a/htdocs/theme/common/flags/am.png b/htdocs/theme/common/flags/am.png index e063c9820f4..e25bc21af0f 100644 Binary files a/htdocs/theme/common/flags/am.png and b/htdocs/theme/common/flags/am.png differ diff --git a/htdocs/theme/common/flags/an.png b/htdocs/theme/common/flags/an.png index 41aa497f6b2..dab98820777 100644 Binary files a/htdocs/theme/common/flags/an.png and b/htdocs/theme/common/flags/an.png differ diff --git a/htdocs/theme/common/flags/ao.png b/htdocs/theme/common/flags/ao.png index fe1af784804..49f0b47fbdf 100644 Binary files a/htdocs/theme/common/flags/ao.png and b/htdocs/theme/common/flags/ao.png differ diff --git a/htdocs/theme/common/flags/ar.png b/htdocs/theme/common/flags/ar.png index a3ff84b1fa8..4211272f0fa 100644 Binary files a/htdocs/theme/common/flags/ar.png and b/htdocs/theme/common/flags/ar.png differ diff --git a/htdocs/theme/common/flags/as.png b/htdocs/theme/common/flags/as.png index 046d718ec23..8a2bfdaee5f 100644 Binary files a/htdocs/theme/common/flags/as.png and b/htdocs/theme/common/flags/as.png differ diff --git a/htdocs/theme/common/flags/at.png b/htdocs/theme/common/flags/at.png index 0f42a96dbee..49326161af6 100644 Binary files a/htdocs/theme/common/flags/at.png and b/htdocs/theme/common/flags/at.png differ diff --git a/htdocs/theme/common/flags/au.png b/htdocs/theme/common/flags/au.png index db60de6c18b..c2b0d6f2bac 100644 Binary files a/htdocs/theme/common/flags/au.png and b/htdocs/theme/common/flags/au.png differ diff --git a/htdocs/theme/common/flags/aw.png b/htdocs/theme/common/flags/aw.png index 26c6ad7210f..2c4a2a4ade6 100644 Binary files a/htdocs/theme/common/flags/aw.png and b/htdocs/theme/common/flags/aw.png differ diff --git a/htdocs/theme/common/flags/ax.png b/htdocs/theme/common/flags/ax.png index f9d3d501718..0d1009b3e2c 100644 Binary files a/htdocs/theme/common/flags/ax.png and b/htdocs/theme/common/flags/ax.png differ diff --git a/htdocs/theme/common/flags/az.png b/htdocs/theme/common/flags/az.png index b6d62ba21e0..d42a26360ee 100644 Binary files a/htdocs/theme/common/flags/az.png and b/htdocs/theme/common/flags/az.png differ diff --git a/htdocs/theme/common/flags/ba.png b/htdocs/theme/common/flags/ba.png index 7ccace03796..8daf16f80ad 100644 Binary files a/htdocs/theme/common/flags/ba.png and b/htdocs/theme/common/flags/ba.png differ diff --git a/htdocs/theme/common/flags/bb.png b/htdocs/theme/common/flags/bb.png index 4845ced25ff..54812d0c78d 100644 Binary files a/htdocs/theme/common/flags/bb.png and b/htdocs/theme/common/flags/bb.png differ diff --git a/htdocs/theme/common/flags/bd.png b/htdocs/theme/common/flags/bd.png index 7a0213594f3..7aeab3bf0cd 100644 Binary files a/htdocs/theme/common/flags/bd.png and b/htdocs/theme/common/flags/bd.png differ diff --git a/htdocs/theme/common/flags/be.png b/htdocs/theme/common/flags/be.png index e4e11fd8645..7c0329e9755 100644 Binary files a/htdocs/theme/common/flags/be.png and b/htdocs/theme/common/flags/be.png differ diff --git a/htdocs/theme/common/flags/bf.png b/htdocs/theme/common/flags/bf.png index d72fdcf9522..783930208fc 100644 Binary files a/htdocs/theme/common/flags/bf.png and b/htdocs/theme/common/flags/bf.png differ diff --git a/htdocs/theme/common/flags/bg.png b/htdocs/theme/common/flags/bg.png index cc99ef5ede0..b50b5cae999 100644 Binary files a/htdocs/theme/common/flags/bg.png and b/htdocs/theme/common/flags/bg.png differ diff --git a/htdocs/theme/common/flags/bh.png b/htdocs/theme/common/flags/bh.png index 4b727ab016b..07b64394023 100644 Binary files a/htdocs/theme/common/flags/bh.png and b/htdocs/theme/common/flags/bh.png differ diff --git a/htdocs/theme/common/flags/bi.png b/htdocs/theme/common/flags/bi.png index c010bbe5d8b..8dcc9a50b65 100644 Binary files a/htdocs/theme/common/flags/bi.png and b/htdocs/theme/common/flags/bi.png differ diff --git a/htdocs/theme/common/flags/bj.png b/htdocs/theme/common/flags/bj.png index b0977e677f1..90ce5ac89d4 100644 Binary files a/htdocs/theme/common/flags/bj.png and b/htdocs/theme/common/flags/bj.png differ diff --git a/htdocs/theme/common/flags/bm.png b/htdocs/theme/common/flags/bm.png index 92f56551d6e..86b1e3e2008 100644 Binary files a/htdocs/theme/common/flags/bm.png and b/htdocs/theme/common/flags/bm.png differ diff --git a/htdocs/theme/common/flags/bn.png b/htdocs/theme/common/flags/bn.png index 01d40266496..508c7bf49ef 100644 Binary files a/htdocs/theme/common/flags/bn.png and b/htdocs/theme/common/flags/bn.png differ diff --git a/htdocs/theme/common/flags/bo.png b/htdocs/theme/common/flags/bo.png index 1c2acb46d18..b53322d7ca4 100644 Binary files a/htdocs/theme/common/flags/bo.png and b/htdocs/theme/common/flags/bo.png differ diff --git a/htdocs/theme/common/flags/br.png b/htdocs/theme/common/flags/br.png index c170551ad57..dd49733c0fc 100644 Binary files a/htdocs/theme/common/flags/br.png and b/htdocs/theme/common/flags/br.png differ diff --git a/htdocs/theme/common/flags/bs.png b/htdocs/theme/common/flags/bs.png index c47b2c1cbb6..3d62217f02e 100644 Binary files a/htdocs/theme/common/flags/bs.png and b/htdocs/theme/common/flags/bs.png differ diff --git a/htdocs/theme/common/flags/bt.png b/htdocs/theme/common/flags/bt.png index bf41fd0c7b8..c6d93868a33 100644 Binary files a/htdocs/theme/common/flags/bt.png and b/htdocs/theme/common/flags/bt.png differ diff --git a/htdocs/theme/common/flags/bv.png b/htdocs/theme/common/flags/bv.png index fb90e843bb7..c403d06ad10 100644 Binary files a/htdocs/theme/common/flags/bv.png and b/htdocs/theme/common/flags/bv.png differ diff --git a/htdocs/theme/common/flags/bw.png b/htdocs/theme/common/flags/bw.png index 731ec9d41bb..62078f2c42d 100644 Binary files a/htdocs/theme/common/flags/bw.png and b/htdocs/theme/common/flags/bw.png differ diff --git a/htdocs/theme/common/flags/by.png b/htdocs/theme/common/flags/by.png index 833077d5769..20516d176f0 100644 Binary files a/htdocs/theme/common/flags/by.png and b/htdocs/theme/common/flags/by.png differ diff --git a/htdocs/theme/common/flags/bz.png b/htdocs/theme/common/flags/bz.png index 23c71c0b0d8..6d7e706544f 100644 Binary files a/htdocs/theme/common/flags/bz.png and b/htdocs/theme/common/flags/bz.png differ diff --git a/htdocs/theme/common/flags/ca.png b/htdocs/theme/common/flags/ca.png index e034d13601f..6aa3009bcaf 100644 Binary files a/htdocs/theme/common/flags/ca.png and b/htdocs/theme/common/flags/ca.png differ diff --git a/htdocs/theme/common/flags/catalonia.png b/htdocs/theme/common/flags/catalonia.png index 5de14e4956c..69d46d8f4ef 100644 Binary files a/htdocs/theme/common/flags/catalonia.png and b/htdocs/theme/common/flags/catalonia.png differ diff --git a/htdocs/theme/common/flags/cc.png b/htdocs/theme/common/flags/cc.png index ee54eceba35..e32bd1f9a82 100644 Binary files a/htdocs/theme/common/flags/cc.png and b/htdocs/theme/common/flags/cc.png differ diff --git a/htdocs/theme/common/flags/cf.png b/htdocs/theme/common/flags/cf.png index d0e272b7a7c..4fe18833d61 100644 Binary files a/htdocs/theme/common/flags/cf.png and b/htdocs/theme/common/flags/cf.png differ diff --git a/htdocs/theme/common/flags/cg.png b/htdocs/theme/common/flags/cg.png index 51f35cd5c70..23c51278c5c 100644 Binary files a/htdocs/theme/common/flags/cg.png and b/htdocs/theme/common/flags/cg.png differ diff --git a/htdocs/theme/common/flags/ch.png b/htdocs/theme/common/flags/ch.png index 3c2666cf21b..0b5ec13d26c 100644 Binary files a/htdocs/theme/common/flags/ch.png and b/htdocs/theme/common/flags/ch.png differ diff --git a/htdocs/theme/common/flags/ci.png b/htdocs/theme/common/flags/ci.png index 49230aa2b29..079a5b74b19 100644 Binary files a/htdocs/theme/common/flags/ci.png and b/htdocs/theme/common/flags/ci.png differ diff --git a/htdocs/theme/common/flags/ck.png b/htdocs/theme/common/flags/ck.png index 9200b718ce8..c3de282a2fa 100644 Binary files a/htdocs/theme/common/flags/ck.png and b/htdocs/theme/common/flags/ck.png differ diff --git a/htdocs/theme/common/flags/cl.png b/htdocs/theme/common/flags/cl.png index 36e5cfc3d50..f6e756fda12 100644 Binary files a/htdocs/theme/common/flags/cl.png and b/htdocs/theme/common/flags/cl.png differ diff --git a/htdocs/theme/common/flags/cm.png b/htdocs/theme/common/flags/cm.png index aee03acc323..4bf34fb5552 100644 Binary files a/htdocs/theme/common/flags/cm.png and b/htdocs/theme/common/flags/cm.png differ diff --git a/htdocs/theme/common/flags/cn.png b/htdocs/theme/common/flags/cn.png index 842a3c49625..45bdfe47cfa 100644 Binary files a/htdocs/theme/common/flags/cn.png and b/htdocs/theme/common/flags/cn.png differ diff --git a/htdocs/theme/common/flags/co.png b/htdocs/theme/common/flags/co.png index fab952d2891..8933a71b530 100644 Binary files a/htdocs/theme/common/flags/co.png and b/htdocs/theme/common/flags/co.png differ diff --git a/htdocs/theme/common/flags/cr.png b/htdocs/theme/common/flags/cr.png index 9632de9f616..2c84ea0c053 100644 Binary files a/htdocs/theme/common/flags/cr.png and b/htdocs/theme/common/flags/cr.png differ diff --git a/htdocs/theme/common/flags/cs.png b/htdocs/theme/common/flags/cs.png index 7e317bcdc8b..8fde28a6dfd 100644 Binary files a/htdocs/theme/common/flags/cs.png and b/htdocs/theme/common/flags/cs.png differ diff --git a/htdocs/theme/common/flags/cu.png b/htdocs/theme/common/flags/cu.png index f27bca37504..fe475e9b070 100644 Binary files a/htdocs/theme/common/flags/cu.png and b/htdocs/theme/common/flags/cu.png differ diff --git a/htdocs/theme/common/flags/cv.png b/htdocs/theme/common/flags/cv.png index 6cb77c61236..eff1aae4c98 100644 Binary files a/htdocs/theme/common/flags/cv.png and b/htdocs/theme/common/flags/cv.png differ diff --git a/htdocs/theme/common/flags/cx.png b/htdocs/theme/common/flags/cx.png index 9054c44b99f..245c76954d0 100644 Binary files a/htdocs/theme/common/flags/cx.png and b/htdocs/theme/common/flags/cx.png differ diff --git a/htdocs/theme/common/flags/cy.png b/htdocs/theme/common/flags/cy.png index 5475b558785..52fc49a27fe 100644 Binary files a/htdocs/theme/common/flags/cy.png and b/htdocs/theme/common/flags/cy.png differ diff --git a/htdocs/theme/common/flags/cz.png b/htdocs/theme/common/flags/cz.png index dfe4d732962..3e97234172f 100644 Binary files a/htdocs/theme/common/flags/cz.png and b/htdocs/theme/common/flags/cz.png differ diff --git a/htdocs/theme/common/flags/de.png b/htdocs/theme/common/flags/de.png index a1374d11f22..26c425a2bfc 100644 Binary files a/htdocs/theme/common/flags/de.png and b/htdocs/theme/common/flags/de.png differ diff --git a/htdocs/theme/common/flags/dj.png b/htdocs/theme/common/flags/dj.png index c769df60921..c71c3600212 100644 Binary files a/htdocs/theme/common/flags/dj.png and b/htdocs/theme/common/flags/dj.png differ diff --git a/htdocs/theme/common/flags/dk.png b/htdocs/theme/common/flags/dk.png index da446d7ffda..5d93653f59d 100644 Binary files a/htdocs/theme/common/flags/dk.png and b/htdocs/theme/common/flags/dk.png differ diff --git a/htdocs/theme/common/flags/dm.png b/htdocs/theme/common/flags/dm.png index 5e78e1e3a60..687c73acb33 100644 Binary files a/htdocs/theme/common/flags/dm.png and b/htdocs/theme/common/flags/dm.png differ diff --git a/htdocs/theme/common/flags/do.png b/htdocs/theme/common/flags/do.png index f958623838b..5618447d2da 100644 Binary files a/htdocs/theme/common/flags/do.png and b/htdocs/theme/common/flags/do.png differ diff --git a/htdocs/theme/common/flags/dz.png b/htdocs/theme/common/flags/dz.png index a6a38700852..55ab7971596 100644 Binary files a/htdocs/theme/common/flags/dz.png and b/htdocs/theme/common/flags/dz.png differ diff --git a/htdocs/theme/common/flags/ec.png b/htdocs/theme/common/flags/ec.png index d25f3d461dd..1588df6feb9 100644 Binary files a/htdocs/theme/common/flags/ec.png and b/htdocs/theme/common/flags/ec.png differ diff --git a/htdocs/theme/common/flags/ee.png b/htdocs/theme/common/flags/ee.png index 0b643ab2d17..152ac6dd5c1 100644 Binary files a/htdocs/theme/common/flags/ee.png and b/htdocs/theme/common/flags/ee.png differ diff --git a/htdocs/theme/common/flags/eg.png b/htdocs/theme/common/flags/eg.png index 05522174578..d3e67889305 100644 Binary files a/htdocs/theme/common/flags/eg.png and b/htdocs/theme/common/flags/eg.png differ diff --git a/htdocs/theme/common/flags/eh.png b/htdocs/theme/common/flags/eh.png index 69852d6b48e..84f89ed867e 100644 Binary files a/htdocs/theme/common/flags/eh.png and b/htdocs/theme/common/flags/eh.png differ diff --git a/htdocs/theme/common/flags/en.png b/htdocs/theme/common/flags/en.png index 8161f0727fa..025009e2045 100644 Binary files a/htdocs/theme/common/flags/en.png and b/htdocs/theme/common/flags/en.png differ diff --git a/htdocs/theme/common/flags/england.png b/htdocs/theme/common/flags/england.png index e2b69c415f7..50bd40cb7df 100644 Binary files a/htdocs/theme/common/flags/england.png and b/htdocs/theme/common/flags/england.png differ diff --git a/htdocs/theme/common/flags/er.png b/htdocs/theme/common/flags/er.png index eb1a436cae9..c727d4d349d 100644 Binary files a/htdocs/theme/common/flags/er.png and b/htdocs/theme/common/flags/er.png differ diff --git a/htdocs/theme/common/flags/es.png b/htdocs/theme/common/flags/es.png index e8b6f2f1613..12dd9a59475 100644 Binary files a/htdocs/theme/common/flags/es.png and b/htdocs/theme/common/flags/es.png differ diff --git a/htdocs/theme/common/flags/et.png b/htdocs/theme/common/flags/et.png index f36f2a7866d..26cfab3a785 100644 Binary files a/htdocs/theme/common/flags/et.png and b/htdocs/theme/common/flags/et.png differ diff --git a/htdocs/theme/common/flags/fam.png b/htdocs/theme/common/flags/fam.png index 42d1484be8d..aebb02c64eb 100644 Binary files a/htdocs/theme/common/flags/fam.png and b/htdocs/theme/common/flags/fam.png differ diff --git a/htdocs/theme/common/flags/fi.png b/htdocs/theme/common/flags/fi.png index 364ef4838bd..e5d813ab456 100644 Binary files a/htdocs/theme/common/flags/fi.png and b/htdocs/theme/common/flags/fi.png differ diff --git a/htdocs/theme/common/flags/fj.png b/htdocs/theme/common/flags/fj.png index fa6a000e44f..ccd3090bbfc 100644 Binary files a/htdocs/theme/common/flags/fj.png and b/htdocs/theme/common/flags/fj.png differ diff --git a/htdocs/theme/common/flags/fk.png b/htdocs/theme/common/flags/fk.png index 27e145e32a2..094e64f2093 100644 Binary files a/htdocs/theme/common/flags/fk.png and b/htdocs/theme/common/flags/fk.png differ diff --git a/htdocs/theme/common/flags/fm.png b/htdocs/theme/common/flags/fm.png index 89972e9cc5f..acb54953825 100644 Binary files a/htdocs/theme/common/flags/fm.png and b/htdocs/theme/common/flags/fm.png differ diff --git a/htdocs/theme/common/flags/fo.png b/htdocs/theme/common/flags/fo.png index d1064424df9..7ba11b6d1ba 100644 Binary files a/htdocs/theme/common/flags/fo.png and b/htdocs/theme/common/flags/fo.png differ diff --git a/htdocs/theme/common/flags/fr.png b/htdocs/theme/common/flags/fr.png index 3dd99eca7cf..9bceb7c255f 100644 Binary files a/htdocs/theme/common/flags/fr.png and b/htdocs/theme/common/flags/fr.png differ diff --git a/htdocs/theme/common/flags/ga.png b/htdocs/theme/common/flags/ga.png index c7d38e0976e..54c7c40c2ab 100644 Binary files a/htdocs/theme/common/flags/ga.png and b/htdocs/theme/common/flags/ga.png differ diff --git a/htdocs/theme/common/flags/gb.png b/htdocs/theme/common/flags/gb.png index 94530bc0224..025009e2045 100644 Binary files a/htdocs/theme/common/flags/gb.png and b/htdocs/theme/common/flags/gb.png differ diff --git a/htdocs/theme/common/flags/gd.png b/htdocs/theme/common/flags/gd.png index b8944ea771b..07cdb3d11eb 100644 Binary files a/htdocs/theme/common/flags/gd.png and b/htdocs/theme/common/flags/gd.png differ diff --git a/htdocs/theme/common/flags/ge.png b/htdocs/theme/common/flags/ge.png index d1611d44a84..0d3f6b3d99a 100644 Binary files a/htdocs/theme/common/flags/ge.png and b/htdocs/theme/common/flags/ge.png differ diff --git a/htdocs/theme/common/flags/gf.png b/htdocs/theme/common/flags/gf.png index 3dd99eca7cf..9bceb7c255f 100644 Binary files a/htdocs/theme/common/flags/gf.png and b/htdocs/theme/common/flags/gf.png differ diff --git a/htdocs/theme/common/flags/gg.png b/htdocs/theme/common/flags/gg.png index d83d0dfa10c..a61bc7ddc7f 100644 Binary files a/htdocs/theme/common/flags/gg.png and b/htdocs/theme/common/flags/gg.png differ diff --git a/htdocs/theme/common/flags/gh.png b/htdocs/theme/common/flags/gh.png index f21737a2384..d5b36270abb 100644 Binary files a/htdocs/theme/common/flags/gh.png and b/htdocs/theme/common/flags/gh.png differ diff --git a/htdocs/theme/common/flags/gi.png b/htdocs/theme/common/flags/gi.png index 514093218ee..54d542c8eb3 100644 Binary files a/htdocs/theme/common/flags/gi.png and b/htdocs/theme/common/flags/gi.png differ diff --git a/htdocs/theme/common/flags/gl.png b/htdocs/theme/common/flags/gl.png index de49012f0a8..a20795c2ea8 100644 Binary files a/htdocs/theme/common/flags/gl.png and b/htdocs/theme/common/flags/gl.png differ diff --git a/htdocs/theme/common/flags/gm.png b/htdocs/theme/common/flags/gm.png index 27bf0d5422e..3c5d1fc3382 100644 Binary files a/htdocs/theme/common/flags/gm.png and b/htdocs/theme/common/flags/gm.png differ diff --git a/htdocs/theme/common/flags/gn.png b/htdocs/theme/common/flags/gn.png index 24731c9226d..0a97da77bad 100644 Binary files a/htdocs/theme/common/flags/gn.png and b/htdocs/theme/common/flags/gn.png differ diff --git a/htdocs/theme/common/flags/gp.png b/htdocs/theme/common/flags/gp.png index 6d12f0a2c3b..2ed1b78eadc 100644 Binary files a/htdocs/theme/common/flags/gp.png and b/htdocs/theme/common/flags/gp.png differ diff --git a/htdocs/theme/common/flags/gq.png b/htdocs/theme/common/flags/gq.png index db514344948..c6b3d5d3f2e 100644 Binary files a/htdocs/theme/common/flags/gq.png and b/htdocs/theme/common/flags/gq.png differ diff --git a/htdocs/theme/common/flags/gr.png b/htdocs/theme/common/flags/gr.png index 32c174e0338..c5a05354189 100644 Binary files a/htdocs/theme/common/flags/gr.png and b/htdocs/theme/common/flags/gr.png differ diff --git a/htdocs/theme/common/flags/gs.png b/htdocs/theme/common/flags/gs.png index 8116e5035f1..33385645196 100644 Binary files a/htdocs/theme/common/flags/gs.png and b/htdocs/theme/common/flags/gs.png differ diff --git a/htdocs/theme/common/flags/gt.png b/htdocs/theme/common/flags/gt.png index e70b5f1cb0b..375a86987e6 100644 Binary files a/htdocs/theme/common/flags/gt.png and b/htdocs/theme/common/flags/gt.png differ diff --git a/htdocs/theme/common/flags/gu.png b/htdocs/theme/common/flags/gu.png index 9a3f911bd83..ad91f5c37e8 100644 Binary files a/htdocs/theme/common/flags/gu.png and b/htdocs/theme/common/flags/gu.png differ diff --git a/htdocs/theme/common/flags/gw.png b/htdocs/theme/common/flags/gw.png index ab2ea0799ae..815d1eba4ab 100644 Binary files a/htdocs/theme/common/flags/gw.png and b/htdocs/theme/common/flags/gw.png differ diff --git a/htdocs/theme/common/flags/gy.png b/htdocs/theme/common/flags/gy.png index d9584813375..3e74461376e 100644 Binary files a/htdocs/theme/common/flags/gy.png and b/htdocs/theme/common/flags/gy.png differ diff --git a/htdocs/theme/common/flags/hk.png b/htdocs/theme/common/flags/hk.png index 57d1750201e..cb8dc67b4ac 100644 Binary files a/htdocs/theme/common/flags/hk.png and b/htdocs/theme/common/flags/hk.png differ diff --git a/htdocs/theme/common/flags/hm.png b/htdocs/theme/common/flags/hm.png index f7aba127e3f..c2b0d6f2bac 100644 Binary files a/htdocs/theme/common/flags/hm.png and b/htdocs/theme/common/flags/hm.png differ diff --git a/htdocs/theme/common/flags/hn.png b/htdocs/theme/common/flags/hn.png index 88ab2794bc5..45b6fe69264 100644 Binary files a/htdocs/theme/common/flags/hn.png and b/htdocs/theme/common/flags/hn.png differ diff --git a/htdocs/theme/common/flags/hr.png b/htdocs/theme/common/flags/hr.png index 46373d48960..a93b68684ed 100644 Binary files a/htdocs/theme/common/flags/hr.png and b/htdocs/theme/common/flags/hr.png differ diff --git a/htdocs/theme/common/flags/ht.png b/htdocs/theme/common/flags/ht.png index 1a6a94e9787..849aeef99f9 100644 Binary files a/htdocs/theme/common/flags/ht.png and b/htdocs/theme/common/flags/ht.png differ diff --git a/htdocs/theme/common/flags/hu.png b/htdocs/theme/common/flags/hu.png index 3a5e37750eb..92d2c1b66f6 100644 Binary files a/htdocs/theme/common/flags/hu.png and b/htdocs/theme/common/flags/hu.png differ diff --git a/htdocs/theme/common/flags/id.png b/htdocs/theme/common/flags/id.png index 103f9f43a38..b1d3776b0f6 100644 Binary files a/htdocs/theme/common/flags/id.png and b/htdocs/theme/common/flags/id.png differ diff --git a/htdocs/theme/common/flags/ie.png b/htdocs/theme/common/flags/ie.png index 9530cdc067a..45fee80eab4 100644 Binary files a/htdocs/theme/common/flags/ie.png and b/htdocs/theme/common/flags/ie.png differ diff --git a/htdocs/theme/common/flags/il.png b/htdocs/theme/common/flags/il.png index 6c5e9d56954..25ac3ffcab5 100644 Binary files a/htdocs/theme/common/flags/il.png and b/htdocs/theme/common/flags/il.png differ diff --git a/htdocs/theme/common/flags/in.png b/htdocs/theme/common/flags/in.png index 7a0d7a0d393..27b07d91665 100644 Binary files a/htdocs/theme/common/flags/in.png and b/htdocs/theme/common/flags/in.png differ diff --git a/htdocs/theme/common/flags/io.png b/htdocs/theme/common/flags/io.png index bb184d200c4..a9c83c78af8 100644 Binary files a/htdocs/theme/common/flags/io.png and b/htdocs/theme/common/flags/io.png differ diff --git a/htdocs/theme/common/flags/iq.png b/htdocs/theme/common/flags/iq.png index 6ad574a1c6f..4b7aecf5d22 100644 Binary files a/htdocs/theme/common/flags/iq.png and b/htdocs/theme/common/flags/iq.png differ diff --git a/htdocs/theme/common/flags/ir.png b/htdocs/theme/common/flags/ir.png index 7cc378453a8..0667684b624 100644 Binary files a/htdocs/theme/common/flags/ir.png and b/htdocs/theme/common/flags/ir.png differ diff --git a/htdocs/theme/common/flags/is.png b/htdocs/theme/common/flags/is.png index bc582e6b8ab..7ed17c6494a 100644 Binary files a/htdocs/theme/common/flags/is.png and b/htdocs/theme/common/flags/is.png differ diff --git a/htdocs/theme/common/flags/it.png b/htdocs/theme/common/flags/it.png index 35d9cca6f5e..459bd5cf525 100644 Binary files a/htdocs/theme/common/flags/it.png and b/htdocs/theme/common/flags/it.png differ diff --git a/htdocs/theme/common/flags/jm.png b/htdocs/theme/common/flags/jm.png index a514f3c0cf4..6e37e4ff041 100644 Binary files a/htdocs/theme/common/flags/jm.png and b/htdocs/theme/common/flags/jm.png differ diff --git a/htdocs/theme/common/flags/jo.png b/htdocs/theme/common/flags/jo.png index b39d33a876e..b2005b98c34 100644 Binary files a/htdocs/theme/common/flags/jo.png and b/htdocs/theme/common/flags/jo.png differ diff --git a/htdocs/theme/common/flags/jp.png b/htdocs/theme/common/flags/jp.png index 4cd4ec095ef..f9b572923ab 100644 Binary files a/htdocs/theme/common/flags/jp.png and b/htdocs/theme/common/flags/jp.png differ diff --git a/htdocs/theme/common/flags/ke.png b/htdocs/theme/common/flags/ke.png index 64fc05eba4d..3fa66c5b32b 100644 Binary files a/htdocs/theme/common/flags/ke.png and b/htdocs/theme/common/flags/ke.png differ diff --git a/htdocs/theme/common/flags/kg.png b/htdocs/theme/common/flags/kg.png index 7ecc2174dd1..2676ec90f29 100644 Binary files a/htdocs/theme/common/flags/kg.png and b/htdocs/theme/common/flags/kg.png differ diff --git a/htdocs/theme/common/flags/kh.png b/htdocs/theme/common/flags/kh.png index 0d5d59532f1..7382c8527b3 100644 Binary files a/htdocs/theme/common/flags/kh.png and b/htdocs/theme/common/flags/kh.png differ diff --git a/htdocs/theme/common/flags/ki.png b/htdocs/theme/common/flags/ki.png index b98d197ba08..7972152dec0 100644 Binary files a/htdocs/theme/common/flags/ki.png and b/htdocs/theme/common/flags/ki.png differ diff --git a/htdocs/theme/common/flags/km.png b/htdocs/theme/common/flags/km.png index 24c11028acd..6aaafa71efc 100644 Binary files a/htdocs/theme/common/flags/km.png and b/htdocs/theme/common/flags/km.png differ diff --git a/htdocs/theme/common/flags/kn.png b/htdocs/theme/common/flags/kn.png index 663b74e59b6..e41a57c61d6 100644 Binary files a/htdocs/theme/common/flags/kn.png and b/htdocs/theme/common/flags/kn.png differ diff --git a/htdocs/theme/common/flags/kp.png b/htdocs/theme/common/flags/kp.png index fa8f31d58c0..dda0c588b9f 100644 Binary files a/htdocs/theme/common/flags/kp.png and b/htdocs/theme/common/flags/kp.png differ diff --git a/htdocs/theme/common/flags/kr.png b/htdocs/theme/common/flags/kr.png index 6af9de44c2d..76cb8c55025 100644 Binary files a/htdocs/theme/common/flags/kr.png and b/htdocs/theme/common/flags/kr.png differ diff --git a/htdocs/theme/common/flags/kw.png b/htdocs/theme/common/flags/kw.png index e64619a7e43..54563f3fcba 100644 Binary files a/htdocs/theme/common/flags/kw.png and b/htdocs/theme/common/flags/kw.png differ diff --git a/htdocs/theme/common/flags/ky.png b/htdocs/theme/common/flags/ky.png index 58dc705b65c..bb8a5951c98 100644 Binary files a/htdocs/theme/common/flags/ky.png and b/htdocs/theme/common/flags/ky.png differ diff --git a/htdocs/theme/common/flags/kz.png b/htdocs/theme/common/flags/kz.png index 0650f2a6077..9c6c52e711b 100644 Binary files a/htdocs/theme/common/flags/kz.png and b/htdocs/theme/common/flags/kz.png differ diff --git a/htdocs/theme/common/flags/la.png b/htdocs/theme/common/flags/la.png index 3d52eac824f..7ef2a818c22 100644 Binary files a/htdocs/theme/common/flags/la.png and b/htdocs/theme/common/flags/la.png differ diff --git a/htdocs/theme/common/flags/lb.png b/htdocs/theme/common/flags/lb.png index 898fa7a5f28..ef128ece9bc 100644 Binary files a/htdocs/theme/common/flags/lb.png and b/htdocs/theme/common/flags/lb.png differ diff --git a/htdocs/theme/common/flags/lc.png b/htdocs/theme/common/flags/lc.png index 131b69ba594..aeb7734b46c 100644 Binary files a/htdocs/theme/common/flags/lc.png and b/htdocs/theme/common/flags/lc.png differ diff --git a/htdocs/theme/common/flags/li.png b/htdocs/theme/common/flags/li.png index 687387820c0..760d59ff16a 100644 Binary files a/htdocs/theme/common/flags/li.png and b/htdocs/theme/common/flags/li.png differ diff --git a/htdocs/theme/common/flags/lk.png b/htdocs/theme/common/flags/lk.png index 215ee75b7ab..70ef8bbf4f8 100644 Binary files a/htdocs/theme/common/flags/lk.png and b/htdocs/theme/common/flags/lk.png differ diff --git a/htdocs/theme/common/flags/lr.png b/htdocs/theme/common/flags/lr.png index 43a41a8be0c..b1565daaf36 100644 Binary files a/htdocs/theme/common/flags/lr.png and b/htdocs/theme/common/flags/lr.png differ diff --git a/htdocs/theme/common/flags/ls.png b/htdocs/theme/common/flags/ls.png index e8828871a95..4aba8078c7c 100644 Binary files a/htdocs/theme/common/flags/ls.png and b/htdocs/theme/common/flags/ls.png differ diff --git a/htdocs/theme/common/flags/lt.png b/htdocs/theme/common/flags/lt.png index 0f4afda156d..b860b3266a3 100644 Binary files a/htdocs/theme/common/flags/lt.png and b/htdocs/theme/common/flags/lt.png differ diff --git a/htdocs/theme/common/flags/lu.png b/htdocs/theme/common/flags/lu.png index a4cfd314bd1..1783986d89b 100644 Binary files a/htdocs/theme/common/flags/lu.png and b/htdocs/theme/common/flags/lu.png differ diff --git a/htdocs/theme/common/flags/lv.png b/htdocs/theme/common/flags/lv.png index 280b4bff48e..bab01cd56ee 100644 Binary files a/htdocs/theme/common/flags/lv.png and b/htdocs/theme/common/flags/lv.png differ diff --git a/htdocs/theme/common/flags/ly.png b/htdocs/theme/common/flags/ly.png index ed91ad6fc1a..1d41b58d1fc 100644 Binary files a/htdocs/theme/common/flags/ly.png and b/htdocs/theme/common/flags/ly.png differ diff --git a/htdocs/theme/common/flags/ma.png b/htdocs/theme/common/flags/ma.png index d5d71aae7af..6810c8cae99 100644 Binary files a/htdocs/theme/common/flags/ma.png and b/htdocs/theme/common/flags/ma.png differ diff --git a/htdocs/theme/common/flags/mc.png b/htdocs/theme/common/flags/mc.png index 754a3acda6c..e9bb93a4875 100644 Binary files a/htdocs/theme/common/flags/mc.png and b/htdocs/theme/common/flags/mc.png differ diff --git a/htdocs/theme/common/flags/md.png b/htdocs/theme/common/flags/md.png index 72dec4b5340..02d9213e80f 100644 Binary files a/htdocs/theme/common/flags/md.png and b/htdocs/theme/common/flags/md.png differ diff --git a/htdocs/theme/common/flags/me.png b/htdocs/theme/common/flags/me.png index 4f3e74798d8..c18f139dd3f 100644 Binary files a/htdocs/theme/common/flags/me.png and b/htdocs/theme/common/flags/me.png differ diff --git a/htdocs/theme/common/flags/mg.png b/htdocs/theme/common/flags/mg.png index cb9c48a2b89..78cb9f3cc4a 100644 Binary files a/htdocs/theme/common/flags/mg.png and b/htdocs/theme/common/flags/mg.png differ diff --git a/htdocs/theme/common/flags/mh.png b/htdocs/theme/common/flags/mh.png index 4fe396ed9db..ce403e71ace 100644 Binary files a/htdocs/theme/common/flags/mh.png and b/htdocs/theme/common/flags/mh.png differ diff --git a/htdocs/theme/common/flags/mk.png b/htdocs/theme/common/flags/mk.png index 364a3377a9b..ed39c018d6b 100644 Binary files a/htdocs/theme/common/flags/mk.png and b/htdocs/theme/common/flags/mk.png differ diff --git a/htdocs/theme/common/flags/ml.png b/htdocs/theme/common/flags/ml.png index 027f3ed87bb..7cb80193653 100644 Binary files a/htdocs/theme/common/flags/ml.png and b/htdocs/theme/common/flags/ml.png differ diff --git a/htdocs/theme/common/flags/mm.png b/htdocs/theme/common/flags/mm.png index 6ad72752246..4090ce6d415 100644 Binary files a/htdocs/theme/common/flags/mm.png and b/htdocs/theme/common/flags/mm.png differ diff --git a/htdocs/theme/common/flags/mn.png b/htdocs/theme/common/flags/mn.png index a10bca6842a..e269d46855a 100644 Binary files a/htdocs/theme/common/flags/mn.png and b/htdocs/theme/common/flags/mn.png differ diff --git a/htdocs/theme/common/flags/mo.png b/htdocs/theme/common/flags/mo.png index 17081b8409f..763679381a0 100644 Binary files a/htdocs/theme/common/flags/mo.png and b/htdocs/theme/common/flags/mo.png differ diff --git a/htdocs/theme/common/flags/mp.png b/htdocs/theme/common/flags/mp.png index 19a0e5997af..88617cf99f3 100644 Binary files a/htdocs/theme/common/flags/mp.png and b/htdocs/theme/common/flags/mp.png differ diff --git a/htdocs/theme/common/flags/mq.png b/htdocs/theme/common/flags/mq.png index 96e4bec7c69..5a29bce76fc 100644 Binary files a/htdocs/theme/common/flags/mq.png and b/htdocs/theme/common/flags/mq.png differ diff --git a/htdocs/theme/common/flags/mr.png b/htdocs/theme/common/flags/mr.png index 2fa59151823..93a112700e1 100644 Binary files a/htdocs/theme/common/flags/mr.png and b/htdocs/theme/common/flags/mr.png differ diff --git a/htdocs/theme/common/flags/ms.png b/htdocs/theme/common/flags/ms.png index 0d967bdf594..345517e651f 100644 Binary files a/htdocs/theme/common/flags/ms.png and b/htdocs/theme/common/flags/ms.png differ diff --git a/htdocs/theme/common/flags/mt.png b/htdocs/theme/common/flags/mt.png index 52bcbab4db6..4930eb53f04 100644 Binary files a/htdocs/theme/common/flags/mt.png and b/htdocs/theme/common/flags/mt.png differ diff --git a/htdocs/theme/common/flags/mu.png b/htdocs/theme/common/flags/mu.png index 99d33d8500f..b05690cd721 100644 Binary files a/htdocs/theme/common/flags/mu.png and b/htdocs/theme/common/flags/mu.png differ diff --git a/htdocs/theme/common/flags/mv.png b/htdocs/theme/common/flags/mv.png index bb7ef640590..35e7a5784d9 100644 Binary files a/htdocs/theme/common/flags/mv.png and b/htdocs/theme/common/flags/mv.png differ diff --git a/htdocs/theme/common/flags/mw.png b/htdocs/theme/common/flags/mw.png index 0f9dc992c51..57bd5392914 100644 Binary files a/htdocs/theme/common/flags/mw.png and b/htdocs/theme/common/flags/mw.png differ diff --git a/htdocs/theme/common/flags/mx.png b/htdocs/theme/common/flags/mx.png index ea5059d8045..fe2ca683808 100644 Binary files a/htdocs/theme/common/flags/mx.png and b/htdocs/theme/common/flags/mx.png differ diff --git a/htdocs/theme/common/flags/my.png b/htdocs/theme/common/flags/my.png index 72df8474f49..8c9798b6abf 100644 Binary files a/htdocs/theme/common/flags/my.png and b/htdocs/theme/common/flags/my.png differ diff --git a/htdocs/theme/common/flags/mz.png b/htdocs/theme/common/flags/mz.png index 4876c8e074d..9fb494db12c 100644 Binary files a/htdocs/theme/common/flags/mz.png and b/htdocs/theme/common/flags/mz.png differ diff --git a/htdocs/theme/common/flags/na.png b/htdocs/theme/common/flags/na.png index f3a1890677c..c669b82e8ad 100644 Binary files a/htdocs/theme/common/flags/na.png and b/htdocs/theme/common/flags/na.png differ diff --git a/htdocs/theme/common/flags/nc.png b/htdocs/theme/common/flags/nc.png index 7f81310f41f..08c9aa312e9 100644 Binary files a/htdocs/theme/common/flags/nc.png and b/htdocs/theme/common/flags/nc.png differ diff --git a/htdocs/theme/common/flags/ne.png b/htdocs/theme/common/flags/ne.png index 3f5617924dc..ddcbdb4b793 100644 Binary files a/htdocs/theme/common/flags/ne.png and b/htdocs/theme/common/flags/ne.png differ diff --git a/htdocs/theme/common/flags/ng.png b/htdocs/theme/common/flags/ng.png index 59ec1772181..7b7729ef3d9 100644 Binary files a/htdocs/theme/common/flags/ng.png and b/htdocs/theme/common/flags/ng.png differ diff --git a/htdocs/theme/common/flags/ni.png b/htdocs/theme/common/flags/ni.png index 3e920b91082..d1c3192f702 100644 Binary files a/htdocs/theme/common/flags/ni.png and b/htdocs/theme/common/flags/ni.png differ diff --git a/htdocs/theme/common/flags/nl.png b/htdocs/theme/common/flags/nl.png index f365be6be11..7f9853cb4ba 100644 Binary files a/htdocs/theme/common/flags/nl.png and b/htdocs/theme/common/flags/nl.png differ diff --git a/htdocs/theme/common/flags/no.png b/htdocs/theme/common/flags/no.png index 39d60859962..c403d06ad10 100644 Binary files a/htdocs/theme/common/flags/no.png and b/htdocs/theme/common/flags/no.png differ diff --git a/htdocs/theme/common/flags/np.png b/htdocs/theme/common/flags/np.png index d2cd336e162..7d92685c625 100644 Binary files a/htdocs/theme/common/flags/np.png and b/htdocs/theme/common/flags/np.png differ diff --git a/htdocs/theme/common/flags/nr.png b/htdocs/theme/common/flags/nr.png index 4c523b00df7..89fbe24351c 100644 Binary files a/htdocs/theme/common/flags/nr.png and b/htdocs/theme/common/flags/nr.png differ diff --git a/htdocs/theme/common/flags/nu.png b/htdocs/theme/common/flags/nu.png index 01033c2120c..0f828f60ebb 100644 Binary files a/htdocs/theme/common/flags/nu.png and b/htdocs/theme/common/flags/nu.png differ diff --git a/htdocs/theme/common/flags/nz.png b/htdocs/theme/common/flags/nz.png index dabc9c2c3e7..541fa4dbdf5 100644 Binary files a/htdocs/theme/common/flags/nz.png and b/htdocs/theme/common/flags/nz.png differ diff --git a/htdocs/theme/common/flags/om.png b/htdocs/theme/common/flags/om.png index f011fa926d7..fae4261a4b3 100644 Binary files a/htdocs/theme/common/flags/om.png and b/htdocs/theme/common/flags/om.png differ diff --git a/htdocs/theme/common/flags/pa.png b/htdocs/theme/common/flags/pa.png index d8d03b3c410..4c39c327769 100644 Binary files a/htdocs/theme/common/flags/pa.png and b/htdocs/theme/common/flags/pa.png differ diff --git a/htdocs/theme/common/flags/pe.png b/htdocs/theme/common/flags/pe.png index b8ed40cfd61..08ac2849712 100644 Binary files a/htdocs/theme/common/flags/pe.png and b/htdocs/theme/common/flags/pe.png differ diff --git a/htdocs/theme/common/flags/pf.png b/htdocs/theme/common/flags/pf.png index d755572a94e..01ef8ff1db9 100644 Binary files a/htdocs/theme/common/flags/pf.png and b/htdocs/theme/common/flags/pf.png differ diff --git a/htdocs/theme/common/flags/pg.png b/htdocs/theme/common/flags/pg.png index f5ad1eb5143..28e777d9a35 100644 Binary files a/htdocs/theme/common/flags/pg.png and b/htdocs/theme/common/flags/pg.png differ diff --git a/htdocs/theme/common/flags/ph.png b/htdocs/theme/common/flags/ph.png index 3ec1acd2896..758d91a3647 100644 Binary files a/htdocs/theme/common/flags/ph.png and b/htdocs/theme/common/flags/ph.png differ diff --git a/htdocs/theme/common/flags/pk.png b/htdocs/theme/common/flags/pk.png index 9456267e7e6..310cf364022 100644 Binary files a/htdocs/theme/common/flags/pk.png and b/htdocs/theme/common/flags/pk.png differ diff --git a/htdocs/theme/common/flags/pl.png b/htdocs/theme/common/flags/pl.png index a000601518e..96cb1aa144c 100644 Binary files a/htdocs/theme/common/flags/pl.png and b/htdocs/theme/common/flags/pl.png differ diff --git a/htdocs/theme/common/flags/pm.png b/htdocs/theme/common/flags/pm.png index 5b81562dfbf..dab08881a6c 100644 Binary files a/htdocs/theme/common/flags/pm.png and b/htdocs/theme/common/flags/pm.png differ diff --git a/htdocs/theme/common/flags/pn.png b/htdocs/theme/common/flags/pn.png index 26b0f457b7e..aec27da5bed 100644 Binary files a/htdocs/theme/common/flags/pn.png and b/htdocs/theme/common/flags/pn.png differ diff --git a/htdocs/theme/common/flags/pr.png b/htdocs/theme/common/flags/pr.png index 9bef175e714..28f866bd6e0 100644 Binary files a/htdocs/theme/common/flags/pr.png and b/htdocs/theme/common/flags/pr.png differ diff --git a/htdocs/theme/common/flags/ps.png b/htdocs/theme/common/flags/ps.png index bb7f2fdc1cb..4b7ea877118 100644 Binary files a/htdocs/theme/common/flags/ps.png and b/htdocs/theme/common/flags/ps.png differ diff --git a/htdocs/theme/common/flags/pt.png b/htdocs/theme/common/flags/pt.png index 6360b668a8c..1dbc37f1283 100644 Binary files a/htdocs/theme/common/flags/pt.png and b/htdocs/theme/common/flags/pt.png differ diff --git a/htdocs/theme/common/flags/pw.png b/htdocs/theme/common/flags/pw.png index 679709dc95e..a8df9403a9b 100644 Binary files a/htdocs/theme/common/flags/pw.png and b/htdocs/theme/common/flags/pw.png differ diff --git a/htdocs/theme/common/flags/py.png b/htdocs/theme/common/flags/py.png index 3c4fac78c3d..ac02fc5bc6e 100644 Binary files a/htdocs/theme/common/flags/py.png and b/htdocs/theme/common/flags/py.png differ diff --git a/htdocs/theme/common/flags/qa.png b/htdocs/theme/common/flags/qa.png index 3589176e875..e9c75e98be8 100644 Binary files a/htdocs/theme/common/flags/qa.png and b/htdocs/theme/common/flags/qa.png differ diff --git a/htdocs/theme/common/flags/re.png b/htdocs/theme/common/flags/re.png index c69762fc1d1..9bceb7c255f 100644 Binary files a/htdocs/theme/common/flags/re.png and b/htdocs/theme/common/flags/re.png differ diff --git a/htdocs/theme/common/flags/ro.png b/htdocs/theme/common/flags/ro.png index 86d99ff8bc0..d914fde33f1 100644 Binary files a/htdocs/theme/common/flags/ro.png and b/htdocs/theme/common/flags/ro.png differ diff --git a/htdocs/theme/common/flags/rs.png b/htdocs/theme/common/flags/rs.png index f43d6667e56..2284c686c37 100644 Binary files a/htdocs/theme/common/flags/rs.png and b/htdocs/theme/common/flags/rs.png differ diff --git a/htdocs/theme/common/flags/ru.png b/htdocs/theme/common/flags/ru.png index bdd68e3ee3d..5ab028885c1 100644 Binary files a/htdocs/theme/common/flags/ru.png and b/htdocs/theme/common/flags/ru.png differ diff --git a/htdocs/theme/common/flags/rw.png b/htdocs/theme/common/flags/rw.png index e1da81921b4..9fe4fde864d 100644 Binary files a/htdocs/theme/common/flags/rw.png and b/htdocs/theme/common/flags/rw.png differ diff --git a/htdocs/theme/common/flags/sa.png b/htdocs/theme/common/flags/sa.png index f8c924c9e82..a65b59e06a1 100644 Binary files a/htdocs/theme/common/flags/sa.png and b/htdocs/theme/common/flags/sa.png differ diff --git a/htdocs/theme/common/flags/sb.png b/htdocs/theme/common/flags/sb.png index d5f0386ebdc..43e8a46da8c 100644 Binary files a/htdocs/theme/common/flags/sb.png and b/htdocs/theme/common/flags/sb.png differ diff --git a/htdocs/theme/common/flags/sc.png b/htdocs/theme/common/flags/sc.png index c3a1ddf5665..e41bc222505 100644 Binary files a/htdocs/theme/common/flags/sc.png and b/htdocs/theme/common/flags/sc.png differ diff --git a/htdocs/theme/common/flags/scotland.png b/htdocs/theme/common/flags/scotland.png index cc808df9aef..31c6075c5b9 100644 Binary files a/htdocs/theme/common/flags/scotland.png and b/htdocs/theme/common/flags/scotland.png differ diff --git a/htdocs/theme/common/flags/sd.png b/htdocs/theme/common/flags/sd.png index 1935149bdd3..9770d0bbeb9 100644 Binary files a/htdocs/theme/common/flags/sd.png and b/htdocs/theme/common/flags/sd.png differ diff --git a/htdocs/theme/common/flags/se.png b/htdocs/theme/common/flags/se.png index fd800f1df4f..569fe949e23 100644 Binary files a/htdocs/theme/common/flags/se.png and b/htdocs/theme/common/flags/se.png differ diff --git a/htdocs/theme/common/flags/sg.png b/htdocs/theme/common/flags/sg.png index d71eba395b1..22240587ad3 100644 Binary files a/htdocs/theme/common/flags/sg.png and b/htdocs/theme/common/flags/sg.png differ diff --git a/htdocs/theme/common/flags/sh.png b/htdocs/theme/common/flags/sh.png index c8da953a71b..a4633de4fc5 100644 Binary files a/htdocs/theme/common/flags/sh.png and b/htdocs/theme/common/flags/sh.png differ diff --git a/htdocs/theme/common/flags/si.png b/htdocs/theme/common/flags/si.png index 14566c987de..a73dd8c2bc6 100644 Binary files a/htdocs/theme/common/flags/si.png and b/htdocs/theme/common/flags/si.png differ diff --git a/htdocs/theme/common/flags/sj.png b/htdocs/theme/common/flags/sj.png index 2a032e25df7..c403d06ad10 100644 Binary files a/htdocs/theme/common/flags/sj.png and b/htdocs/theme/common/flags/sj.png differ diff --git a/htdocs/theme/common/flags/sk.png b/htdocs/theme/common/flags/sk.png index acf3dbb312a..b1b99b04678 100644 Binary files a/htdocs/theme/common/flags/sk.png and b/htdocs/theme/common/flags/sk.png differ diff --git a/htdocs/theme/common/flags/sl.png b/htdocs/theme/common/flags/sl.png index c50b2795087..ed622b46045 100644 Binary files a/htdocs/theme/common/flags/sl.png and b/htdocs/theme/common/flags/sl.png differ diff --git a/htdocs/theme/common/flags/sm.png b/htdocs/theme/common/flags/sm.png index e4aebb22017..abaed46622b 100644 Binary files a/htdocs/theme/common/flags/sm.png and b/htdocs/theme/common/flags/sm.png differ diff --git a/htdocs/theme/common/flags/sn.png b/htdocs/theme/common/flags/sn.png index 525971f35fe..b8fe72eddfd 100644 Binary files a/htdocs/theme/common/flags/sn.png and b/htdocs/theme/common/flags/sn.png differ diff --git a/htdocs/theme/common/flags/so.png b/htdocs/theme/common/flags/so.png index 1dc6f40aa02..26e78bb0e32 100644 Binary files a/htdocs/theme/common/flags/so.png and b/htdocs/theme/common/flags/so.png differ diff --git a/htdocs/theme/common/flags/sr.png b/htdocs/theme/common/flags/sr.png index e13ee67f2e6..f838a8bb472 100644 Binary files a/htdocs/theme/common/flags/sr.png and b/htdocs/theme/common/flags/sr.png differ diff --git a/htdocs/theme/common/flags/st.png b/htdocs/theme/common/flags/st.png index 48a547a0f89..fa50b4301e9 100644 Binary files a/htdocs/theme/common/flags/st.png and b/htdocs/theme/common/flags/st.png differ diff --git a/htdocs/theme/common/flags/sv.png b/htdocs/theme/common/flags/sv.png index 924da6f465c..8604c1f5864 100644 Binary files a/htdocs/theme/common/flags/sv.png and b/htdocs/theme/common/flags/sv.png differ diff --git a/htdocs/theme/common/flags/sy.png b/htdocs/theme/common/flags/sy.png index a4caabc5bb3..0e5972c1a92 100644 Binary files a/htdocs/theme/common/flags/sy.png and b/htdocs/theme/common/flags/sy.png differ diff --git a/htdocs/theme/common/flags/sz.png b/htdocs/theme/common/flags/sz.png index 1f2a001ee6a..4e3f1fdb894 100644 Binary files a/htdocs/theme/common/flags/sz.png and b/htdocs/theme/common/flags/sz.png differ diff --git a/htdocs/theme/common/flags/tc.png b/htdocs/theme/common/flags/tc.png index 83fc10aa290..e7e9a0a18a0 100644 Binary files a/htdocs/theme/common/flags/tc.png and b/htdocs/theme/common/flags/tc.png differ diff --git a/htdocs/theme/common/flags/td.png b/htdocs/theme/common/flags/td.png index 153eeba1f2e..dec25350f52 100644 Binary files a/htdocs/theme/common/flags/td.png and b/htdocs/theme/common/flags/td.png differ diff --git a/htdocs/theme/common/flags/tf.png b/htdocs/theme/common/flags/tf.png index 27477209633..8106f7adac0 100644 Binary files a/htdocs/theme/common/flags/tf.png and b/htdocs/theme/common/flags/tf.png differ diff --git a/htdocs/theme/common/flags/tg.png b/htdocs/theme/common/flags/tg.png index f7e56dfd15c..aef3d9f2160 100644 Binary files a/htdocs/theme/common/flags/tg.png and b/htdocs/theme/common/flags/tg.png differ diff --git a/htdocs/theme/common/flags/th.png b/htdocs/theme/common/flags/th.png index 3f8a2881717..c0c7a6862a1 100644 Binary files a/htdocs/theme/common/flags/th.png and b/htdocs/theme/common/flags/th.png differ diff --git a/htdocs/theme/common/flags/tj.png b/htdocs/theme/common/flags/tj.png index 9f4c51f9180..2dc4a0d1c06 100644 Binary files a/htdocs/theme/common/flags/tj.png and b/htdocs/theme/common/flags/tj.png differ diff --git a/htdocs/theme/common/flags/tk.png b/htdocs/theme/common/flags/tk.png index e88b300b03d..218413dda9a 100644 Binary files a/htdocs/theme/common/flags/tk.png and b/htdocs/theme/common/flags/tk.png differ diff --git a/htdocs/theme/common/flags/tl.png b/htdocs/theme/common/flags/tl.png index de0e052e0d3..5644f94cb7b 100644 Binary files a/htdocs/theme/common/flags/tl.png and b/htdocs/theme/common/flags/tl.png differ diff --git a/htdocs/theme/common/flags/tm.png b/htdocs/theme/common/flags/tm.png index 48ce59a5d05..a9c6edbdea9 100644 Binary files a/htdocs/theme/common/flags/tm.png and b/htdocs/theme/common/flags/tm.png differ diff --git a/htdocs/theme/common/flags/tn.png b/htdocs/theme/common/flags/tn.png index 7c04f551291..cc727ab9caf 100644 Binary files a/htdocs/theme/common/flags/tn.png and b/htdocs/theme/common/flags/tn.png differ diff --git a/htdocs/theme/common/flags/to.png b/htdocs/theme/common/flags/to.png index 4df011126a8..6f5fe0482f5 100644 Binary files a/htdocs/theme/common/flags/to.png and b/htdocs/theme/common/flags/to.png differ diff --git a/htdocs/theme/common/flags/tr.png b/htdocs/theme/common/flags/tr.png index 65f8d79b85f..2031bed4dac 100644 Binary files a/htdocs/theme/common/flags/tr.png and b/htdocs/theme/common/flags/tr.png differ diff --git a/htdocs/theme/common/flags/trans.png b/htdocs/theme/common/flags/trans.png index f1013d8f8e6..e001b642ee8 100644 Binary files a/htdocs/theme/common/flags/trans.png and b/htdocs/theme/common/flags/trans.png differ diff --git a/htdocs/theme/common/flags/tt.png b/htdocs/theme/common/flags/tt.png index 4e18707a77e..d280e2c7f5d 100644 Binary files a/htdocs/theme/common/flags/tt.png and b/htdocs/theme/common/flags/tt.png differ diff --git a/htdocs/theme/common/flags/tv.png b/htdocs/theme/common/flags/tv.png index 2e9be7d53f2..4746c382843 100644 Binary files a/htdocs/theme/common/flags/tv.png and b/htdocs/theme/common/flags/tv.png differ diff --git a/htdocs/theme/common/flags/tw.png b/htdocs/theme/common/flags/tw.png index 310d7a90d6d..a99e1d04c5e 100644 Binary files a/htdocs/theme/common/flags/tw.png and b/htdocs/theme/common/flags/tw.png differ diff --git a/htdocs/theme/common/flags/tz.png b/htdocs/theme/common/flags/tz.png index dbbd00195a1..39a7d21dbe7 100644 Binary files a/htdocs/theme/common/flags/tz.png and b/htdocs/theme/common/flags/tz.png differ diff --git a/htdocs/theme/common/flags/ua.png b/htdocs/theme/common/flags/ua.png index 70eaac3a3cf..f544c6ec27e 100644 Binary files a/htdocs/theme/common/flags/ua.png and b/htdocs/theme/common/flags/ua.png differ diff --git a/htdocs/theme/common/flags/ug.png b/htdocs/theme/common/flags/ug.png index 6f08c4f4cca..2c1674828ef 100644 Binary files a/htdocs/theme/common/flags/ug.png and b/htdocs/theme/common/flags/ug.png differ diff --git a/htdocs/theme/common/flags/uk.png b/htdocs/theme/common/flags/uk.png index 8161f0727fa..025009e2045 100644 Binary files a/htdocs/theme/common/flags/uk.png and b/htdocs/theme/common/flags/uk.png differ diff --git a/htdocs/theme/common/flags/um.png b/htdocs/theme/common/flags/um.png index 30b7a177993..fd5ea83a9c5 100644 Binary files a/htdocs/theme/common/flags/um.png and b/htdocs/theme/common/flags/um.png differ diff --git a/htdocs/theme/common/flags/us.png b/htdocs/theme/common/flags/us.png index d508607184e..e6eeb28549e 100644 Binary files a/htdocs/theme/common/flags/us.png and b/htdocs/theme/common/flags/us.png differ diff --git a/htdocs/theme/common/flags/uy.png b/htdocs/theme/common/flags/uy.png index 7cb393c0460..45dd4d970b3 100644 Binary files a/htdocs/theme/common/flags/uy.png and b/htdocs/theme/common/flags/uy.png differ diff --git a/htdocs/theme/common/flags/uz.png b/htdocs/theme/common/flags/uz.png index 15772a3a1be..7735ae170e7 100644 Binary files a/htdocs/theme/common/flags/uz.png and b/htdocs/theme/common/flags/uz.png differ diff --git a/htdocs/theme/common/flags/va.png b/htdocs/theme/common/flags/va.png index 5068cf96360..2394c5ebf18 100644 Binary files a/htdocs/theme/common/flags/va.png and b/htdocs/theme/common/flags/va.png differ diff --git a/htdocs/theme/common/flags/vc.png b/htdocs/theme/common/flags/vc.png index 37c5a127d35..0e7806f989c 100644 Binary files a/htdocs/theme/common/flags/vc.png and b/htdocs/theme/common/flags/vc.png differ diff --git a/htdocs/theme/common/flags/ve.png b/htdocs/theme/common/flags/ve.png index 2371233789c..806d76b8997 100644 Binary files a/htdocs/theme/common/flags/ve.png and b/htdocs/theme/common/flags/ve.png differ diff --git a/htdocs/theme/common/flags/vg.png b/htdocs/theme/common/flags/vg.png index ca0ab404194..222f6b7d9bd 100644 Binary files a/htdocs/theme/common/flags/vg.png and b/htdocs/theme/common/flags/vg.png differ diff --git a/htdocs/theme/common/flags/vi.png b/htdocs/theme/common/flags/vi.png index 570f143f374..b5d4222764c 100644 Binary files a/htdocs/theme/common/flags/vi.png and b/htdocs/theme/common/flags/vi.png differ diff --git a/htdocs/theme/common/flags/vn.png b/htdocs/theme/common/flags/vn.png index fb751baa218..11b4ae710bb 100644 Binary files a/htdocs/theme/common/flags/vn.png and b/htdocs/theme/common/flags/vn.png differ diff --git a/htdocs/theme/common/flags/vu.png b/htdocs/theme/common/flags/vu.png index f6402874364..31aa37ec304 100644 Binary files a/htdocs/theme/common/flags/vu.png and b/htdocs/theme/common/flags/vu.png differ diff --git a/htdocs/theme/common/flags/wales.png b/htdocs/theme/common/flags/wales.png index b05cb3d595c..6b141e1d412 100644 Binary files a/htdocs/theme/common/flags/wales.png and b/htdocs/theme/common/flags/wales.png differ diff --git a/htdocs/theme/common/flags/wf.png b/htdocs/theme/common/flags/wf.png index 7576aff6efc..1c99bdcf71a 100644 Binary files a/htdocs/theme/common/flags/wf.png and b/htdocs/theme/common/flags/wf.png differ diff --git a/htdocs/theme/common/flags/ws.png b/htdocs/theme/common/flags/ws.png index 30ca42ba8b9..287482db540 100644 Binary files a/htdocs/theme/common/flags/ws.png and b/htdocs/theme/common/flags/ws.png differ diff --git a/htdocs/theme/common/flags/ye.png b/htdocs/theme/common/flags/ye.png index 5b36464d389..ede2401cf0a 100644 Binary files a/htdocs/theme/common/flags/ye.png and b/htdocs/theme/common/flags/ye.png differ diff --git a/htdocs/theme/common/flags/yt.png b/htdocs/theme/common/flags/yt.png index 3c1bc99da3f..fb9c3669c13 100644 Binary files a/htdocs/theme/common/flags/yt.png and b/htdocs/theme/common/flags/yt.png differ diff --git a/htdocs/theme/common/flags/za.png b/htdocs/theme/common/flags/za.png index 25607ebbe8e..070aec4cd57 100644 Binary files a/htdocs/theme/common/flags/za.png and b/htdocs/theme/common/flags/za.png differ diff --git a/htdocs/theme/common/flags/zm.png b/htdocs/theme/common/flags/zm.png index a9705c6f32d..bcce6de9380 100644 Binary files a/htdocs/theme/common/flags/zm.png and b/htdocs/theme/common/flags/zm.png differ diff --git a/htdocs/theme/common/flags/zw.png b/htdocs/theme/common/flags/zw.png index 11f9b917352..62d6988aaee 100644 Binary files a/htdocs/theme/common/flags/zw.png and b/htdocs/theme/common/flags/zw.png differ diff --git a/htdocs/theme/common/folder-new.png b/htdocs/theme/common/folder-new.png index fcd15c01849..fdeea131de2 100644 Binary files a/htdocs/theme/common/folder-new.png and b/htdocs/theme/common/folder-new.png differ diff --git a/htdocs/theme/common/gmap.png b/htdocs/theme/common/gmap.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/help.png b/htdocs/theme/common/help.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/common/help.png and b/htdocs/theme/common/help.png differ diff --git a/htdocs/theme/common/mime/archive.png b/htdocs/theme/common/mime/archive.png index 6461fbc76e3..b15510e30dd 100644 Binary files a/htdocs/theme/common/mime/archive.png and b/htdocs/theme/common/mime/archive.png differ diff --git a/htdocs/theme/common/mime/css.png b/htdocs/theme/common/mime/css.png old mode 100755 new mode 100644 index 5c2881cb3b3..21398610778 Binary files a/htdocs/theme/common/mime/css.png and b/htdocs/theme/common/mime/css.png differ diff --git a/htdocs/theme/common/mime/doc.png b/htdocs/theme/common/mime/doc.png index 15c47fd7390..efb194dcfd2 100644 Binary files a/htdocs/theme/common/mime/doc.png and b/htdocs/theme/common/mime/doc.png differ diff --git a/htdocs/theme/common/mime/dotnet.png b/htdocs/theme/common/mime/dotnet.png old mode 100755 new mode 100644 index d1f9b3bb524..08ec78c2c17 Binary files a/htdocs/theme/common/mime/dotnet.png and b/htdocs/theme/common/mime/dotnet.png differ diff --git a/htdocs/theme/common/mime/encrypt.png b/htdocs/theme/common/mime/encrypt.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/mime/flash.png b/htdocs/theme/common/mime/flash.png index de944582b26..ac3b89e0aac 100644 Binary files a/htdocs/theme/common/mime/flash.png and b/htdocs/theme/common/mime/flash.png differ diff --git a/htdocs/theme/common/mime/glasses.png b/htdocs/theme/common/mime/glasses.png old mode 100755 new mode 100644 index 36224141277..be153e04d45 Binary files a/htdocs/theme/common/mime/glasses.png and b/htdocs/theme/common/mime/glasses.png differ diff --git a/htdocs/theme/common/mime/html.png b/htdocs/theme/common/mime/html.png index 318ff6f8d89..70b5e5a31af 100644 Binary files a/htdocs/theme/common/mime/html.png and b/htdocs/theme/common/mime/html.png differ diff --git a/htdocs/theme/common/mime/image.png b/htdocs/theme/common/mime/image.png index 076e61a1509..dbb1b823b10 100644 Binary files a/htdocs/theme/common/mime/image.png and b/htdocs/theme/common/mime/image.png differ diff --git a/htdocs/theme/common/mime/jnlp.png b/htdocs/theme/common/mime/jnlp.png old mode 100755 new mode 100644 index 2b36ee032e9..d53b7d0cdc7 Binary files a/htdocs/theme/common/mime/jnlp.png and b/htdocs/theme/common/mime/jnlp.png differ diff --git a/htdocs/theme/common/mime/jscript.png b/htdocs/theme/common/mime/jscript.png index 416e505775e..af8f13ccc12 100644 Binary files a/htdocs/theme/common/mime/jscript.png and b/htdocs/theme/common/mime/jscript.png differ diff --git a/htdocs/theme/common/mime/library.png b/htdocs/theme/common/mime/library.png old mode 100755 new mode 100644 index 05aad8e1515..25f1df113ed Binary files a/htdocs/theme/common/mime/library.png and b/htdocs/theme/common/mime/library.png differ diff --git a/htdocs/theme/common/mime/lit.png b/htdocs/theme/common/mime/lit.png old mode 100755 new mode 100644 index 88ae1fee882..4804e9fbffa Binary files a/htdocs/theme/common/mime/lit.png and b/htdocs/theme/common/mime/lit.png differ diff --git a/htdocs/theme/common/mime/mdb.png b/htdocs/theme/common/mime/mdb.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/mime/notavailable.png b/htdocs/theme/common/mime/notavailable.png index 05ff3180a72..b1a4d2e47ac 100644 Binary files a/htdocs/theme/common/mime/notavailable.png and b/htdocs/theme/common/mime/notavailable.png differ diff --git a/htdocs/theme/common/mime/ooffice.png b/htdocs/theme/common/mime/ooffice.png old mode 100755 new mode 100644 index f10e8b49b5d..d5080edc26c Binary files a/htdocs/theme/common/mime/ooffice.png and b/htdocs/theme/common/mime/ooffice.png differ diff --git a/htdocs/theme/common/mime/other.png b/htdocs/theme/common/mime/other.png index edc21d6d8a2..6256a7fc753 100644 Binary files a/htdocs/theme/common/mime/other.png and b/htdocs/theme/common/mime/other.png differ diff --git a/htdocs/theme/common/mime/page.png b/htdocs/theme/common/mime/page.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/mime/pdf.png b/htdocs/theme/common/mime/pdf.png index 9d9e0341d65..8c234ade6d5 100644 Binary files a/htdocs/theme/common/mime/pdf.png and b/htdocs/theme/common/mime/pdf.png differ diff --git a/htdocs/theme/common/mime/pl.png b/htdocs/theme/common/mime/pl.png index 95deeffb138..c8460bb2a03 100644 Binary files a/htdocs/theme/common/mime/pl.png and b/htdocs/theme/common/mime/pl.png differ diff --git a/htdocs/theme/common/mime/ppt.png b/htdocs/theme/common/mime/ppt.png index 44a9407290e..71a41fa4559 100644 Binary files a/htdocs/theme/common/mime/ppt.png and b/htdocs/theme/common/mime/ppt.png differ diff --git a/htdocs/theme/common/mime/rss.png b/htdocs/theme/common/mime/rss.png old mode 100755 new mode 100644 index 4403674b8f1..6ef8b252969 Binary files a/htdocs/theme/common/mime/rss.png and b/htdocs/theme/common/mime/rss.png differ diff --git a/htdocs/theme/common/mime/script.png b/htdocs/theme/common/mime/script.png index 991d7aef1ec..161f7707816 100644 Binary files a/htdocs/theme/common/mime/script.png and b/htdocs/theme/common/mime/script.png differ diff --git a/htdocs/theme/common/mime/svg.png b/htdocs/theme/common/mime/svg.png index d98de4c5301..6c627890259 100644 Binary files a/htdocs/theme/common/mime/svg.png and b/htdocs/theme/common/mime/svg.png differ diff --git a/htdocs/theme/common/mime/text.png b/htdocs/theme/common/mime/text.png index 72a36218af4..cbefa2a14dc 100644 Binary files a/htdocs/theme/common/mime/text.png and b/htdocs/theme/common/mime/text.png differ diff --git a/htdocs/theme/common/mime/ttf.png b/htdocs/theme/common/mime/ttf.png index f3cc58c2a3c..4c258eb0b99 100644 Binary files a/htdocs/theme/common/mime/ttf.png and b/htdocs/theme/common/mime/ttf.png differ diff --git a/htdocs/theme/common/mime/xls.png b/htdocs/theme/common/mime/xls.png index 27f53be8f31..211ab0b0904 100644 Binary files a/htdocs/theme/common/mime/xls.png and b/htdocs/theme/common/mime/xls.png differ diff --git a/htdocs/theme/common/nophoto.jpg b/htdocs/theme/common/nophoto.jpg index 7e2872a1aff..14eeb1cf01f 100644 Binary files a/htdocs/theme/common/nophoto.jpg and b/htdocs/theme/common/nophoto.jpg differ diff --git a/htdocs/theme/common/paypal.png b/htdocs/theme/common/paypal.png index 523ee9dcf78..d5705c8bbb9 100644 Binary files a/htdocs/theme/common/paypal.png and b/htdocs/theme/common/paypal.png differ diff --git a/htdocs/theme/common/redstar.png b/htdocs/theme/common/redstar.png index 001cde58667..486fd6770a2 100644 Binary files a/htdocs/theme/common/redstar.png and b/htdocs/theme/common/redstar.png differ diff --git a/htdocs/theme/common/skype_callbutton.png b/htdocs/theme/common/skype_callbutton.png index 79ee7963fc4..dd76442627a 100644 Binary files a/htdocs/theme/common/skype_callbutton.png and b/htdocs/theme/common/skype_callbutton.png differ diff --git a/htdocs/theme/common/skype_chatbutton.png b/htdocs/theme/common/skype_chatbutton.png index 788c31fec21..750b49fa221 100644 Binary files a/htdocs/theme/common/skype_chatbutton.png and b/htdocs/theme/common/skype_chatbutton.png differ diff --git a/htdocs/theme/common/transform-crop-and-resize.png b/htdocs/theme/common/transform-crop-and-resize.png index 8cef80a232d..72512db6cd7 100644 Binary files a/htdocs/theme/common/transform-crop-and-resize.png and b/htdocs/theme/common/transform-crop-and-resize.png differ diff --git a/htdocs/theme/common/treemenu/folder2-expanded.png b/htdocs/theme/common/treemenu/folder2-expanded.png old mode 100755 new mode 100644 index 4e3548352fc..21b1cda2363 Binary files a/htdocs/theme/common/treemenu/folder2-expanded.png and b/htdocs/theme/common/treemenu/folder2-expanded.png differ diff --git a/htdocs/theme/common/treemenu/folder2.png b/htdocs/theme/common/treemenu/folder2.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/view-refresh.png b/htdocs/theme/common/view-refresh.png index 606ea9eba46..d5e3dbd4782 100644 Binary files a/htdocs/theme/common/view-refresh.png and b/htdocs/theme/common/view-refresh.png differ diff --git a/htdocs/theme/common/weather/weather-clear-night.png b/htdocs/theme/common/weather/weather-clear-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-clear.png b/htdocs/theme/common/weather/weather-clear.png old mode 100755 new mode 100644 index b7cc930c761..8b5c71297be Binary files a/htdocs/theme/common/weather/weather-clear.png and b/htdocs/theme/common/weather/weather-clear.png differ diff --git a/htdocs/theme/common/weather/weather-clouds-night.png b/htdocs/theme/common/weather/weather-clouds-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-clouds.png b/htdocs/theme/common/weather/weather-clouds.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-few-clouds-night.png b/htdocs/theme/common/weather/weather-few-clouds-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-few-clouds.png b/htdocs/theme/common/weather/weather-few-clouds.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-freezing-rain.png b/htdocs/theme/common/weather/weather-freezing-rain.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-hail.png b/htdocs/theme/common/weather/weather-hail.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-many-clouds.png b/htdocs/theme/common/weather/weather-many-clouds.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-mist.png b/htdocs/theme/common/weather/weather-mist.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers-day.png b/htdocs/theme/common/weather/weather-showers-day.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers-night.png b/htdocs/theme/common/weather/weather-showers-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers-scattered-day.png b/htdocs/theme/common/weather/weather-showers-scattered-day.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers-scattered-night.png b/htdocs/theme/common/weather/weather-showers-scattered-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers-scattered.png b/htdocs/theme/common/weather/weather-showers-scattered.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers.png b/htdocs/theme/common/weather/weather-showers.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-snow-rain.png b/htdocs/theme/common/weather/weather-snow-rain.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-snow-scattered-day.png b/htdocs/theme/common/weather/weather-snow-scattered-day.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-snow-scattered-night.png b/htdocs/theme/common/weather/weather-snow-scattered-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-snow-scattered.png b/htdocs/theme/common/weather/weather-snow-scattered.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-snow.png b/htdocs/theme/common/weather/weather-snow.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-storm-day.png b/htdocs/theme/common/weather/weather-storm-day.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-storm-night.png b/htdocs/theme/common/weather/weather-storm-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-storm.png b/htdocs/theme/common/weather/weather-storm.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/dolibarr.png b/htdocs/theme/dolibarr.png old mode 100755 new mode 100644 index dbac590012f..691fc3d68a9 Binary files a/htdocs/theme/dolibarr.png and b/htdocs/theme/dolibarr.png differ diff --git a/htdocs/theme/dolibarr_logo.png b/htdocs/theme/dolibarr_logo.png old mode 100755 new mode 100644 index 5c361732926..3ee46b51553 Binary files a/htdocs/theme/dolibarr_logo.png and b/htdocs/theme/dolibarr_logo.png differ diff --git a/htdocs/theme/doliforge_logo.png b/htdocs/theme/doliforge_logo.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/dolistore_logo.png b/htdocs/theme/dolistore_logo.png old mode 100755 new mode 100644 index 76ff5ac1535..38642add7b5 Binary files a/htdocs/theme/dolistore_logo.png and b/htdocs/theme/dolistore_logo.png differ diff --git a/htdocs/theme/eldy/img/1downarrow.png b/htdocs/theme/eldy/img/1downarrow.png index d61271211de..1d134ab3e4e 100644 Binary files a/htdocs/theme/eldy/img/1downarrow.png and b/htdocs/theme/eldy/img/1downarrow.png differ diff --git a/htdocs/theme/eldy/img/1leftarrow.png b/htdocs/theme/eldy/img/1leftarrow.png index 123d94357ce..554cdc3d76c 100644 Binary files a/htdocs/theme/eldy/img/1leftarrow.png and b/htdocs/theme/eldy/img/1leftarrow.png differ diff --git a/htdocs/theme/eldy/img/1leftarrow_selected.png b/htdocs/theme/eldy/img/1leftarrow_selected.png index 123d94357ce..554cdc3d76c 100644 Binary files a/htdocs/theme/eldy/img/1leftarrow_selected.png and b/htdocs/theme/eldy/img/1leftarrow_selected.png differ diff --git a/htdocs/theme/eldy/img/1rightarrow.png b/htdocs/theme/eldy/img/1rightarrow.png index 06559cea65f..95fdc377ee9 100644 Binary files a/htdocs/theme/eldy/img/1rightarrow.png and b/htdocs/theme/eldy/img/1rightarrow.png differ diff --git a/htdocs/theme/eldy/img/1rightarrow_selected.png b/htdocs/theme/eldy/img/1rightarrow_selected.png index 06559cea65f..95fdc377ee9 100644 Binary files a/htdocs/theme/eldy/img/1rightarrow_selected.png and b/htdocs/theme/eldy/img/1rightarrow_selected.png differ diff --git a/htdocs/theme/eldy/img/1uparrow.png b/htdocs/theme/eldy/img/1uparrow.png index b40cb15977a..70ea061dc5e 100644 Binary files a/htdocs/theme/eldy/img/1uparrow.png and b/htdocs/theme/eldy/img/1uparrow.png differ diff --git a/htdocs/theme/eldy/img/1updownarrow.png b/htdocs/theme/eldy/img/1updownarrow.png index fd5e5801aea..871ac1c1f29 100644 Binary files a/htdocs/theme/eldy/img/1updownarrow.png and b/htdocs/theme/eldy/img/1updownarrow.png differ diff --git a/htdocs/theme/eldy/img/addfile.png b/htdocs/theme/eldy/img/addfile.png index 3bfa627d758..1cb7af0ad8a 100644 Binary files a/htdocs/theme/eldy/img/addfile.png and b/htdocs/theme/eldy/img/addfile.png differ diff --git a/htdocs/theme/eldy/img/bg-bas-rubrique.png b/htdocs/theme/eldy/img/bg-bas-rubrique.png index bb1e5ecd0a5..af8483f8746 100644 Binary files a/htdocs/theme/eldy/img/bg-bas-rubrique.png and b/htdocs/theme/eldy/img/bg-bas-rubrique.png differ diff --git a/htdocs/theme/eldy/img/bg-rubrique.png b/htdocs/theme/eldy/img/bg-rubrique.png index 1678c8536fb..0eb3cc2603c 100644 Binary files a/htdocs/theme/eldy/img/bg-rubrique.png and b/htdocs/theme/eldy/img/bg-rubrique.png differ diff --git a/htdocs/theme/eldy/img/bg-titre-rubrique.png b/htdocs/theme/eldy/img/bg-titre-rubrique.png index c0091701b16..17b35d88823 100644 Binary files a/htdocs/theme/eldy/img/bg-titre-rubrique.png and b/htdocs/theme/eldy/img/bg-titre-rubrique.png differ diff --git a/htdocs/theme/eldy/img/button_edit.png b/htdocs/theme/eldy/img/button_edit.png index ce8b226710b..894b4cfd78e 100644 Binary files a/htdocs/theme/eldy/img/button_edit.png and b/htdocs/theme/eldy/img/button_edit.png differ diff --git a/htdocs/theme/eldy/img/calc.png b/htdocs/theme/eldy/img/calc.png index d3bd2bbc824..5e6471408d8 100644 Binary files a/htdocs/theme/eldy/img/calc.png and b/htdocs/theme/eldy/img/calc.png differ diff --git a/htdocs/theme/eldy/img/calendar.png b/htdocs/theme/eldy/img/calendar.png index 90829a353c3..bbe6c27f041 100644 Binary files a/htdocs/theme/eldy/img/calendar.png and b/htdocs/theme/eldy/img/calendar.png differ diff --git a/htdocs/theme/eldy/img/call.png b/htdocs/theme/eldy/img/call.png index 8315c57d61d..ddfc1b7bd90 100644 Binary files a/htdocs/theme/eldy/img/call.png and b/htdocs/theme/eldy/img/call.png differ diff --git a/htdocs/theme/eldy/img/call_out.png b/htdocs/theme/eldy/img/call_out.png index bf972d8b1ae..b5a22eb827b 100644 Binary files a/htdocs/theme/eldy/img/call_out.png and b/htdocs/theme/eldy/img/call_out.png differ diff --git a/htdocs/theme/eldy/img/close.png b/htdocs/theme/eldy/img/close.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/eldy/img/close.png and b/htdocs/theme/eldy/img/close.png differ diff --git a/htdocs/theme/eldy/img/close_title.png b/htdocs/theme/eldy/img/close_title.png index 24eda772954..bebb74d9861 100644 Binary files a/htdocs/theme/eldy/img/close_title.png and b/htdocs/theme/eldy/img/close_title.png differ diff --git a/htdocs/theme/eldy/img/delete.png b/htdocs/theme/eldy/img/delete.png index 221cd3c76b9..8ad73597be7 100644 Binary files a/htdocs/theme/eldy/img/delete.png and b/htdocs/theme/eldy/img/delete.png differ diff --git a/htdocs/theme/eldy/img/detail.png b/htdocs/theme/eldy/img/detail.png index 2d31ec2202e..05562bef842 100644 Binary files a/htdocs/theme/eldy/img/detail.png and b/htdocs/theme/eldy/img/detail.png differ diff --git a/htdocs/theme/eldy/img/disable.png b/htdocs/theme/eldy/img/disable.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/eldy/img/disable.png and b/htdocs/theme/eldy/img/disable.png differ diff --git a/htdocs/theme/eldy/img/edit.png b/htdocs/theme/eldy/img/edit.png index d5ef04577cc..4e916fe1fb0 100644 Binary files a/htdocs/theme/eldy/img/edit.png and b/htdocs/theme/eldy/img/edit.png differ diff --git a/htdocs/theme/eldy/img/edit_add.png b/htdocs/theme/eldy/img/edit_add.png index f6e67164208..ae205e9d770 100644 Binary files a/htdocs/theme/eldy/img/edit_add.png and b/htdocs/theme/eldy/img/edit_add.png differ diff --git a/htdocs/theme/eldy/img/edit_remove.png b/htdocs/theme/eldy/img/edit_remove.png index 0c7ca54fa1f..bc4bdb360fa 100644 Binary files a/htdocs/theme/eldy/img/edit_remove.png and b/htdocs/theme/eldy/img/edit_remove.png differ diff --git a/htdocs/theme/eldy/img/editdelete.png b/htdocs/theme/eldy/img/editdelete.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/eldy/img/editdelete.png and b/htdocs/theme/eldy/img/editdelete.png differ diff --git a/htdocs/theme/eldy/img/file.png b/htdocs/theme/eldy/img/file.png index 98bc98d2f1f..73c66e9b2b3 100644 Binary files a/htdocs/theme/eldy/img/file.png and b/htdocs/theme/eldy/img/file.png differ diff --git a/htdocs/theme/eldy/img/filenew.png b/htdocs/theme/eldy/img/filenew.png index 1f6581389d1..8680cce82bf 100644 Binary files a/htdocs/theme/eldy/img/filenew.png and b/htdocs/theme/eldy/img/filenew.png differ diff --git a/htdocs/theme/eldy/img/filter.png b/htdocs/theme/eldy/img/filter.png index 4baa3a3be8e..917715107bd 100644 Binary files a/htdocs/theme/eldy/img/filter.png and b/htdocs/theme/eldy/img/filter.png differ diff --git a/htdocs/theme/eldy/img/folder-open.png b/htdocs/theme/eldy/img/folder-open.png index 1687cd1b536..1db8369b3d5 100644 Binary files a/htdocs/theme/eldy/img/folder-open.png and b/htdocs/theme/eldy/img/folder-open.png differ diff --git a/htdocs/theme/eldy/img/folder.png b/htdocs/theme/eldy/img/folder.png index 908a6df9348..04a24af2e22 100644 Binary files a/htdocs/theme/eldy/img/folder.png and b/htdocs/theme/eldy/img/folder.png differ diff --git a/htdocs/theme/eldy/img/grip.png b/htdocs/theme/eldy/img/grip.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/eldy/img/grip.png and b/htdocs/theme/eldy/img/grip.png differ diff --git a/htdocs/theme/eldy/img/grip_title.png b/htdocs/theme/eldy/img/grip_title.png index 9b3c093c790..d6ecce335cb 100644 Binary files a/htdocs/theme/eldy/img/grip_title.png and b/htdocs/theme/eldy/img/grip_title.png differ diff --git a/htdocs/theme/eldy/img/headbg.jpg b/htdocs/theme/eldy/img/headbg.jpg index 7d1374e1fc9..160821354cc 100644 Binary files a/htdocs/theme/eldy/img/headbg.jpg and b/htdocs/theme/eldy/img/headbg.jpg differ diff --git a/htdocs/theme/eldy/img/headbg2.jpg b/htdocs/theme/eldy/img/headbg2.jpg index 7917abd9c07..0bc44f0ea99 100644 Binary files a/htdocs/theme/eldy/img/headbg2.jpg and b/htdocs/theme/eldy/img/headbg2.jpg differ diff --git a/htdocs/theme/eldy/img/help.png b/htdocs/theme/eldy/img/help.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/eldy/img/help.png and b/htdocs/theme/eldy/img/help.png differ diff --git a/htdocs/theme/eldy/img/high.png b/htdocs/theme/eldy/img/high.png index f893de7abf3..c0eaee6542f 100644 Binary files a/htdocs/theme/eldy/img/high.png and b/htdocs/theme/eldy/img/high.png differ diff --git a/htdocs/theme/eldy/img/history.png b/htdocs/theme/eldy/img/history.png index 932921c1f4c..0fa4283476b 100644 Binary files a/htdocs/theme/eldy/img/history.png and b/htdocs/theme/eldy/img/history.png differ diff --git a/htdocs/theme/eldy/img/info.png b/htdocs/theme/eldy/img/info.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/eldy/img/info.png and b/htdocs/theme/eldy/img/info.png differ diff --git a/htdocs/theme/eldy/img/liste_titre.png b/htdocs/theme/eldy/img/liste_titre.png index 7405550c080..a58ee63e1b6 100644 Binary files a/htdocs/theme/eldy/img/liste_titre.png and b/htdocs/theme/eldy/img/liste_titre.png differ diff --git a/htdocs/theme/eldy/img/liste_titre2.png b/htdocs/theme/eldy/img/liste_titre2.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/eldy/img/lock.png b/htdocs/theme/eldy/img/lock.png index 8c2e2cbdb09..3d99cf1eaef 100644 Binary files a/htdocs/theme/eldy/img/lock.png and b/htdocs/theme/eldy/img/lock.png differ diff --git a/htdocs/theme/eldy/img/login_background.png b/htdocs/theme/eldy/img/login_background.png index b264649fcbc..facc2c6f442 100644 Binary files a/htdocs/theme/eldy/img/login_background.png and b/htdocs/theme/eldy/img/login_background.png differ diff --git a/htdocs/theme/eldy/img/menus/agenda.png b/htdocs/theme/eldy/img/menus/agenda.png index 2bea3152a10..866037c9b54 100644 Binary files a/htdocs/theme/eldy/img/menus/agenda.png and b/htdocs/theme/eldy/img/menus/agenda.png differ diff --git a/htdocs/theme/eldy/img/menus/bank.png b/htdocs/theme/eldy/img/menus/bank.png index 225df251041..9c6300eae32 100644 Binary files a/htdocs/theme/eldy/img/menus/bank.png and b/htdocs/theme/eldy/img/menus/bank.png differ diff --git a/htdocs/theme/eldy/img/menus/commercial.png b/htdocs/theme/eldy/img/menus/commercial.png index e520f7eb71e..efc1b3f0608 100644 Binary files a/htdocs/theme/eldy/img/menus/commercial.png and b/htdocs/theme/eldy/img/menus/commercial.png differ diff --git a/htdocs/theme/eldy/img/menus/externalsite.png b/htdocs/theme/eldy/img/menus/externalsite.png index 73fef8ae4c8..0bf9138d463 100644 Binary files a/htdocs/theme/eldy/img/menus/externalsite.png and b/htdocs/theme/eldy/img/menus/externalsite.png differ diff --git a/htdocs/theme/eldy/img/menus/generic3.png b/htdocs/theme/eldy/img/menus/generic3.png index d3ed4fa89b3..e22f73aa6f9 100644 Binary files a/htdocs/theme/eldy/img/menus/generic3.png and b/htdocs/theme/eldy/img/menus/generic3.png differ diff --git a/htdocs/theme/eldy/img/menus/holiday.png b/htdocs/theme/eldy/img/menus/holiday.png index 27b653d93ba..42c519aa63d 100644 Binary files a/htdocs/theme/eldy/img/menus/holiday.png and b/htdocs/theme/eldy/img/menus/holiday.png differ diff --git a/htdocs/theme/eldy/img/menus/home.png b/htdocs/theme/eldy/img/menus/home.png index eec3240070b..f4d0d917d1f 100644 Binary files a/htdocs/theme/eldy/img/menus/home.png and b/htdocs/theme/eldy/img/menus/home.png differ diff --git a/htdocs/theme/eldy/img/menus/mail.png b/htdocs/theme/eldy/img/menus/mail.png index 0877bf47cba..39434770f60 100644 Binary files a/htdocs/theme/eldy/img/menus/mail.png and b/htdocs/theme/eldy/img/menus/mail.png differ diff --git a/htdocs/theme/eldy/img/menus/project.png b/htdocs/theme/eldy/img/menus/project.png index 5bc0f86b4be..882235d2cd3 100644 Binary files a/htdocs/theme/eldy/img/menus/project.png and b/htdocs/theme/eldy/img/menus/project.png differ diff --git a/htdocs/theme/eldy/img/menus/shop.png b/htdocs/theme/eldy/img/menus/shop.png index 5b39ee81ea3..efd6859ab60 100644 Binary files a/htdocs/theme/eldy/img/menus/shop.png and b/htdocs/theme/eldy/img/menus/shop.png differ diff --git a/htdocs/theme/eldy/img/menutab-r.png b/htdocs/theme/eldy/img/menutab-r.png index d841ad40d19..95c2324b612 100644 Binary files a/htdocs/theme/eldy/img/menutab-r.png and b/htdocs/theme/eldy/img/menutab-r.png differ diff --git a/htdocs/theme/eldy/img/nav-overlay.png b/htdocs/theme/eldy/img/nav-overlay.png index 595f026cc24..82d159c6ec0 100644 Binary files a/htdocs/theme/eldy/img/nav-overlay.png and b/htdocs/theme/eldy/img/nav-overlay.png differ diff --git a/htdocs/theme/eldy/img/nav-overlay3.png b/htdocs/theme/eldy/img/nav-overlay3.png index f252f5f51a5..3d73145dab7 100644 Binary files a/htdocs/theme/eldy/img/nav-overlay3.png and b/htdocs/theme/eldy/img/nav-overlay3.png differ diff --git a/htdocs/theme/eldy/img/object_action.png b/htdocs/theme/eldy/img/object_action.png index dd356305161..001b0cf9b76 100644 Binary files a/htdocs/theme/eldy/img/object_action.png and b/htdocs/theme/eldy/img/object_action.png differ diff --git a/htdocs/theme/eldy/img/object_action_rdv.png b/htdocs/theme/eldy/img/object_action_rdv.png index b892da1f655..25edfa85b45 100644 Binary files a/htdocs/theme/eldy/img/object_action_rdv.png and b/htdocs/theme/eldy/img/object_action_rdv.png differ diff --git a/htdocs/theme/eldy/img/object_address.png b/htdocs/theme/eldy/img/object_address.png index b20734da69a..a4b878966dc 100644 Binary files a/htdocs/theme/eldy/img/object_address.png and b/htdocs/theme/eldy/img/object_address.png differ diff --git a/htdocs/theme/eldy/img/object_barcode.png b/htdocs/theme/eldy/img/object_barcode.png index 83d3e1ae993..6f1931ab96c 100644 Binary files a/htdocs/theme/eldy/img/object_barcode.png and b/htdocs/theme/eldy/img/object_barcode.png differ diff --git a/htdocs/theme/eldy/img/object_billd.png b/htdocs/theme/eldy/img/object_billd.png index 3c7443cba3e..2080958f0fb 100644 Binary files a/htdocs/theme/eldy/img/object_billd.png and b/htdocs/theme/eldy/img/object_billd.png differ diff --git a/htdocs/theme/eldy/img/object_billr.png b/htdocs/theme/eldy/img/object_billr.png index c89098beaa5..7a9692a0804 100644 Binary files a/htdocs/theme/eldy/img/object_billr.png and b/htdocs/theme/eldy/img/object_billr.png differ diff --git a/htdocs/theme/eldy/img/object_book.png b/htdocs/theme/eldy/img/object_book.png index 67f6b06467d..85097420728 100644 Binary files a/htdocs/theme/eldy/img/object_book.png and b/htdocs/theme/eldy/img/object_book.png differ diff --git a/htdocs/theme/eldy/img/object_commercial.png b/htdocs/theme/eldy/img/object_commercial.png index 5f11e40a81f..36cdcc8d4a2 100644 Binary files a/htdocs/theme/eldy/img/object_commercial.png and b/htdocs/theme/eldy/img/object_commercial.png differ diff --git a/htdocs/theme/eldy/img/object_contact_all.png b/htdocs/theme/eldy/img/object_contact_all.png index 966f6e05cfa..f571504b246 100644 Binary files a/htdocs/theme/eldy/img/object_contact_all.png and b/htdocs/theme/eldy/img/object_contact_all.png differ diff --git a/htdocs/theme/eldy/img/object_cron.png b/htdocs/theme/eldy/img/object_cron.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/eldy/img/object_cron.png and b/htdocs/theme/eldy/img/object_cron.png differ diff --git a/htdocs/theme/eldy/img/object_email.png b/htdocs/theme/eldy/img/object_email.png index 9246f5cef24..d5cd141733d 100644 Binary files a/htdocs/theme/eldy/img/object_email.png and b/htdocs/theme/eldy/img/object_email.png differ diff --git a/htdocs/theme/eldy/img/object_generic.png b/htdocs/theme/eldy/img/object_generic.png index 4d5f811a891..ccfd2d2f5b2 100644 Binary files a/htdocs/theme/eldy/img/object_generic.png and b/htdocs/theme/eldy/img/object_generic.png differ diff --git a/htdocs/theme/eldy/img/object_globe.png b/htdocs/theme/eldy/img/object_globe.png index f726f8a705e..aae8bf6eba0 100644 Binary files a/htdocs/theme/eldy/img/object_globe.png and b/htdocs/theme/eldy/img/object_globe.png differ diff --git a/htdocs/theme/eldy/img/object_group.png b/htdocs/theme/eldy/img/object_group.png index f69db27d482..552eb39fa31 100644 Binary files a/htdocs/theme/eldy/img/object_group.png and b/htdocs/theme/eldy/img/object_group.png differ diff --git a/htdocs/theme/eldy/img/object_holiday.png b/htdocs/theme/eldy/img/object_holiday.png index 69ccdb279a5..fdc1dd8e22b 100644 Binary files a/htdocs/theme/eldy/img/object_holiday.png and b/htdocs/theme/eldy/img/object_holiday.png differ diff --git a/htdocs/theme/eldy/img/object_label.png b/htdocs/theme/eldy/img/object_label.png index 75a363ec8d5..b112af5cf0a 100644 Binary files a/htdocs/theme/eldy/img/object_label.png and b/htdocs/theme/eldy/img/object_label.png differ diff --git a/htdocs/theme/eldy/img/object_margin.png b/htdocs/theme/eldy/img/object_margin.png index 13e4b92c9ce..cd0eb4109f7 100644 Binary files a/htdocs/theme/eldy/img/object_margin.png and b/htdocs/theme/eldy/img/object_margin.png differ diff --git a/htdocs/theme/eldy/img/object_opensurvey.png b/htdocs/theme/eldy/img/object_opensurvey.png old mode 100755 new mode 100644 index 042d8217257..b5de3223bd4 Binary files a/htdocs/theme/eldy/img/object_opensurvey.png and b/htdocs/theme/eldy/img/object_opensurvey.png differ diff --git a/htdocs/theme/eldy/img/object_payment.png b/htdocs/theme/eldy/img/object_payment.png index 95f4c29ed2f..5691147d8ff 100644 Binary files a/htdocs/theme/eldy/img/object_payment.png and b/htdocs/theme/eldy/img/object_payment.png differ diff --git a/htdocs/theme/eldy/img/object_phoning.png b/htdocs/theme/eldy/img/object_phoning.png index 5f11e40a81f..36cdcc8d4a2 100644 Binary files a/htdocs/theme/eldy/img/object_phoning.png and b/htdocs/theme/eldy/img/object_phoning.png differ diff --git a/htdocs/theme/eldy/img/object_project.png b/htdocs/theme/eldy/img/object_project.png index 070fe326983..fd84ab427db 100644 Binary files a/htdocs/theme/eldy/img/object_project.png and b/htdocs/theme/eldy/img/object_project.png differ diff --git a/htdocs/theme/eldy/img/object_projectpub.png b/htdocs/theme/eldy/img/object_projectpub.png index 5ea2e846ddf..1444573cf05 100644 Binary files a/htdocs/theme/eldy/img/object_projectpub.png and b/htdocs/theme/eldy/img/object_projectpub.png differ diff --git a/htdocs/theme/eldy/img/object_projecttask.png b/htdocs/theme/eldy/img/object_projecttask.png index 3ec85fed9d3..4a01b50435a 100644 Binary files a/htdocs/theme/eldy/img/object_projecttask.png and b/htdocs/theme/eldy/img/object_projecttask.png differ diff --git a/htdocs/theme/eldy/img/object_propal.png b/htdocs/theme/eldy/img/object_propal.png index 4a52d65b9e6..2dc60e66b3e 100644 Binary files a/htdocs/theme/eldy/img/object_propal.png and b/htdocs/theme/eldy/img/object_propal.png differ diff --git a/htdocs/theme/eldy/img/object_reduc.png b/htdocs/theme/eldy/img/object_reduc.png index 4d5f811a891..ccfd2d2f5b2 100644 Binary files a/htdocs/theme/eldy/img/object_reduc.png and b/htdocs/theme/eldy/img/object_reduc.png differ diff --git a/htdocs/theme/eldy/img/object_rss.png b/htdocs/theme/eldy/img/object_rss.png index 8f4224b5a30..37372031157 100644 Binary files a/htdocs/theme/eldy/img/object_rss.png and b/htdocs/theme/eldy/img/object_rss.png differ diff --git a/htdocs/theme/eldy/img/object_service.png b/htdocs/theme/eldy/img/object_service.png index 2161bfd59cc..65e9041589f 100644 Binary files a/htdocs/theme/eldy/img/object_service.png and b/htdocs/theme/eldy/img/object_service.png differ diff --git a/htdocs/theme/eldy/img/object_skype.png b/htdocs/theme/eldy/img/object_skype.png index 97121565bb0..b209cd8d16e 100644 Binary files a/htdocs/theme/eldy/img/object_skype.png and b/htdocs/theme/eldy/img/object_skype.png differ diff --git a/htdocs/theme/eldy/img/object_stock.png b/htdocs/theme/eldy/img/object_stock.png index 279a34f869a..2f439db7b50 100644 Binary files a/htdocs/theme/eldy/img/object_stock.png and b/htdocs/theme/eldy/img/object_stock.png differ diff --git a/htdocs/theme/eldy/img/object_task.png b/htdocs/theme/eldy/img/object_task.png index 24581634018..14dc14a9602 100644 Binary files a/htdocs/theme/eldy/img/object_task.png and b/htdocs/theme/eldy/img/object_task.png differ diff --git a/htdocs/theme/eldy/img/object_technic.png b/htdocs/theme/eldy/img/object_technic.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/eldy/img/object_technic.png and b/htdocs/theme/eldy/img/object_technic.png differ diff --git a/htdocs/theme/eldy/img/off.png b/htdocs/theme/eldy/img/off.png index 6b4604d38ed..f4217646b26 100644 Binary files a/htdocs/theme/eldy/img/off.png and b/htdocs/theme/eldy/img/off.png differ diff --git a/htdocs/theme/eldy/img/on.png b/htdocs/theme/eldy/img/on.png index 82572b9e1d1..728bb393536 100644 Binary files a/htdocs/theme/eldy/img/on.png and b/htdocs/theme/eldy/img/on.png differ diff --git a/htdocs/theme/eldy/img/pdf2.png b/htdocs/theme/eldy/img/pdf2.png index 4702d19fd50..06634550daa 100644 Binary files a/htdocs/theme/eldy/img/pdf2.png and b/htdocs/theme/eldy/img/pdf2.png differ diff --git a/htdocs/theme/eldy/img/pdf3.png b/htdocs/theme/eldy/img/pdf3.png index cd76e0f9253..f053591bf2d 100644 Binary files a/htdocs/theme/eldy/img/pdf3.png and b/htdocs/theme/eldy/img/pdf3.png differ diff --git a/htdocs/theme/eldy/img/play.png b/htdocs/theme/eldy/img/play.png index 6de3e256ba6..4922ea1ec12 100644 Binary files a/htdocs/theme/eldy/img/play.png and b/htdocs/theme/eldy/img/play.png differ diff --git a/htdocs/theme/eldy/img/puce.png b/htdocs/theme/eldy/img/puce.png index dfa83acd50d..8c116b0dc42 100644 Binary files a/htdocs/theme/eldy/img/puce.png and b/htdocs/theme/eldy/img/puce.png differ diff --git a/htdocs/theme/eldy/img/recent.png b/htdocs/theme/eldy/img/recent.png index 61daae778f5..a49fc171c06 100644 Binary files a/htdocs/theme/eldy/img/recent.png and b/htdocs/theme/eldy/img/recent.png differ diff --git a/htdocs/theme/eldy/img/redstar.png b/htdocs/theme/eldy/img/redstar.png index 001cde58667..486fd6770a2 100644 Binary files a/htdocs/theme/eldy/img/redstar.png and b/htdocs/theme/eldy/img/redstar.png differ diff --git a/htdocs/theme/eldy/img/refresh.png b/htdocs/theme/eldy/img/refresh.png index 046ce37b9c5..9994475cdfe 100644 Binary files a/htdocs/theme/eldy/img/refresh.png and b/htdocs/theme/eldy/img/refresh.png differ diff --git a/htdocs/theme/eldy/img/reload.png b/htdocs/theme/eldy/img/reload.png index 62056d2a89a..a4029f119de 100644 Binary files a/htdocs/theme/eldy/img/reload.png and b/htdocs/theme/eldy/img/reload.png differ diff --git a/htdocs/theme/eldy/img/rightarrow.png b/htdocs/theme/eldy/img/rightarrow.png index 2ea37440ecd..2c479d9453b 100644 Binary files a/htdocs/theme/eldy/img/rightarrow.png and b/htdocs/theme/eldy/img/rightarrow.png differ diff --git a/htdocs/theme/eldy/img/searchclear.png b/htdocs/theme/eldy/img/searchclear.png index 024e0c62cdd..203a85e10c4 100644 Binary files a/htdocs/theme/eldy/img/searchclear.png and b/htdocs/theme/eldy/img/searchclear.png differ diff --git a/htdocs/theme/eldy/img/setup.png b/htdocs/theme/eldy/img/setup.png index b9bef6d2a18..f997e53799b 100644 Binary files a/htdocs/theme/eldy/img/setup.png and b/htdocs/theme/eldy/img/setup.png differ diff --git a/htdocs/theme/eldy/img/sort_asc.png b/htdocs/theme/eldy/img/sort_asc.png index a88d7975fe9..e327d952fa4 100644 Binary files a/htdocs/theme/eldy/img/sort_asc.png and b/htdocs/theme/eldy/img/sort_asc.png differ diff --git a/htdocs/theme/eldy/img/sort_asc_disabled.png b/htdocs/theme/eldy/img/sort_asc_disabled.png index 4e144cf0b1f..e327d952fa4 100644 Binary files a/htdocs/theme/eldy/img/sort_asc_disabled.png and b/htdocs/theme/eldy/img/sort_asc_disabled.png differ diff --git a/htdocs/theme/eldy/img/sort_desc.png b/htdocs/theme/eldy/img/sort_desc.png index def071ed5af..db99fd9ad47 100644 Binary files a/htdocs/theme/eldy/img/sort_desc.png and b/htdocs/theme/eldy/img/sort_desc.png differ diff --git a/htdocs/theme/eldy/img/sort_desc_disabled.png b/htdocs/theme/eldy/img/sort_desc_disabled.png index 7824973cc60..89051c2f34f 100644 Binary files a/htdocs/theme/eldy/img/sort_desc_disabled.png and b/htdocs/theme/eldy/img/sort_desc_disabled.png differ diff --git a/htdocs/theme/eldy/img/split.png b/htdocs/theme/eldy/img/split.png index 008557d7341..bb66213f413 100644 Binary files a/htdocs/theme/eldy/img/split.png and b/htdocs/theme/eldy/img/split.png differ diff --git a/htdocs/theme/eldy/img/statut0.png b/htdocs/theme/eldy/img/statut0.png index 0f7b0bd4f87..d11252783a4 100644 Binary files a/htdocs/theme/eldy/img/statut0.png and b/htdocs/theme/eldy/img/statut0.png differ diff --git a/htdocs/theme/eldy/img/statut1.png b/htdocs/theme/eldy/img/statut1.png index 3e4650f4f02..558439d282e 100644 Binary files a/htdocs/theme/eldy/img/statut1.png and b/htdocs/theme/eldy/img/statut1.png differ diff --git a/htdocs/theme/eldy/img/statut3.png b/htdocs/theme/eldy/img/statut3.png index f49966eaaa1..e7515796683 100644 Binary files a/htdocs/theme/eldy/img/statut3.png and b/htdocs/theme/eldy/img/statut3.png differ diff --git a/htdocs/theme/eldy/img/statut4.png b/htdocs/theme/eldy/img/statut4.png index aed93a350ba..6ec1ba55961 100644 Binary files a/htdocs/theme/eldy/img/statut4.png and b/htdocs/theme/eldy/img/statut4.png differ diff --git a/htdocs/theme/eldy/img/statut5.png b/htdocs/theme/eldy/img/statut5.png index a2e22fe6f59..53264a0515d 100644 Binary files a/htdocs/theme/eldy/img/statut5.png and b/htdocs/theme/eldy/img/statut5.png differ diff --git a/htdocs/theme/eldy/img/statut7.png b/htdocs/theme/eldy/img/statut7.png index 50295a03ed5..8871a45519f 100644 Binary files a/htdocs/theme/eldy/img/statut7.png and b/htdocs/theme/eldy/img/statut7.png differ diff --git a/htdocs/theme/eldy/img/statut8.png b/htdocs/theme/eldy/img/statut8.png index 4d8f59be1c2..c24d4a9dac2 100644 Binary files a/htdocs/theme/eldy/img/statut8.png and b/htdocs/theme/eldy/img/statut8.png differ diff --git a/htdocs/theme/eldy/img/statut9.png b/htdocs/theme/eldy/img/statut9.png index 5401cf9b03d..94b6dabf265 100644 Binary files a/htdocs/theme/eldy/img/statut9.png and b/htdocs/theme/eldy/img/statut9.png differ diff --git a/htdocs/theme/eldy/img/stcomm-1.png b/htdocs/theme/eldy/img/stcomm-1.png index 52b3625ac05..df442fc1eda 100644 Binary files a/htdocs/theme/eldy/img/stcomm-1.png and b/htdocs/theme/eldy/img/stcomm-1.png differ diff --git a/htdocs/theme/eldy/img/stcomm-1_grayed.png b/htdocs/theme/eldy/img/stcomm-1_grayed.png index 20a7219535e..5942e6c72af 100644 Binary files a/htdocs/theme/eldy/img/stcomm-1_grayed.png and b/htdocs/theme/eldy/img/stcomm-1_grayed.png differ diff --git a/htdocs/theme/eldy/img/stcomm0.png b/htdocs/theme/eldy/img/stcomm0.png index 6053eeda485..cbe60a02d28 100644 Binary files a/htdocs/theme/eldy/img/stcomm0.png and b/htdocs/theme/eldy/img/stcomm0.png differ diff --git a/htdocs/theme/eldy/img/stcomm0_grayed.png b/htdocs/theme/eldy/img/stcomm0_grayed.png index a92e1558506..9016db48b02 100644 Binary files a/htdocs/theme/eldy/img/stcomm0_grayed.png and b/htdocs/theme/eldy/img/stcomm0_grayed.png differ diff --git a/htdocs/theme/eldy/img/stcomm1.png b/htdocs/theme/eldy/img/stcomm1.png index eb76c0fb179..6bdea492985 100644 Binary files a/htdocs/theme/eldy/img/stcomm1.png and b/htdocs/theme/eldy/img/stcomm1.png differ diff --git a/htdocs/theme/eldy/img/stcomm1_grayed.png b/htdocs/theme/eldy/img/stcomm1_grayed.png index 98ed423aa9e..367a55921e4 100644 Binary files a/htdocs/theme/eldy/img/stcomm1_grayed.png and b/htdocs/theme/eldy/img/stcomm1_grayed.png differ diff --git a/htdocs/theme/eldy/img/stcomm2.png b/htdocs/theme/eldy/img/stcomm2.png index 1e76ce4946b..9e000b70dc9 100644 Binary files a/htdocs/theme/eldy/img/stcomm2.png and b/htdocs/theme/eldy/img/stcomm2.png differ diff --git a/htdocs/theme/eldy/img/stcomm2_grayed.png b/htdocs/theme/eldy/img/stcomm2_grayed.png index 0f2a4332cfc..f667e3573d0 100644 Binary files a/htdocs/theme/eldy/img/stcomm2_grayed.png and b/htdocs/theme/eldy/img/stcomm2_grayed.png differ diff --git a/htdocs/theme/eldy/img/stcomm3.png b/htdocs/theme/eldy/img/stcomm3.png index 465234fcd3c..5a6c0aeface 100644 Binary files a/htdocs/theme/eldy/img/stcomm3.png and b/htdocs/theme/eldy/img/stcomm3.png differ diff --git a/htdocs/theme/eldy/img/stcomm3_grayed.png b/htdocs/theme/eldy/img/stcomm3_grayed.png index fc80eb2aebd..81a14c1e482 100644 Binary files a/htdocs/theme/eldy/img/stcomm3_grayed.png and b/htdocs/theme/eldy/img/stcomm3_grayed.png differ diff --git a/htdocs/theme/eldy/img/stcomm4.png b/htdocs/theme/eldy/img/stcomm4.png index c839a8acec5..3e26b4d06ed 100644 Binary files a/htdocs/theme/eldy/img/stcomm4.png and b/htdocs/theme/eldy/img/stcomm4.png differ diff --git a/htdocs/theme/eldy/img/stcomm4_grayed.png b/htdocs/theme/eldy/img/stcomm4_grayed.png index 4935499d917..4271aafb6ce 100644 Binary files a/htdocs/theme/eldy/img/stcomm4_grayed.png and b/htdocs/theme/eldy/img/stcomm4_grayed.png differ diff --git a/htdocs/theme/eldy/img/tab_background.png b/htdocs/theme/eldy/img/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/eldy/img/tab_background.png and b/htdocs/theme/eldy/img/tab_background.png differ diff --git a/htdocs/theme/eldy/img/tick.png b/htdocs/theme/eldy/img/tick.png index deb69ee75ec..9b035d99511 100644 Binary files a/htdocs/theme/eldy/img/tick.png and b/htdocs/theme/eldy/img/tick.png differ diff --git a/htdocs/theme/eldy/img/title.png b/htdocs/theme/eldy/img/title.png index bcd70489c80..bb48d617379 100644 Binary files a/htdocs/theme/eldy/img/title.png and b/htdocs/theme/eldy/img/title.png differ diff --git a/htdocs/theme/eldy/img/tmenu.jpg b/htdocs/theme/eldy/img/tmenu.jpg index 3e8c28692da..e7c37c34041 100644 Binary files a/htdocs/theme/eldy/img/tmenu.jpg and b/htdocs/theme/eldy/img/tmenu.jpg differ diff --git a/htdocs/theme/eldy/img/tmenu2.jpg b/htdocs/theme/eldy/img/tmenu2.jpg index b9c24a7c18b..b8f434c6d1f 100644 Binary files a/htdocs/theme/eldy/img/tmenu2.jpg and b/htdocs/theme/eldy/img/tmenu2.jpg differ diff --git a/htdocs/theme/eldy/img/tmenu3.jpg b/htdocs/theme/eldy/img/tmenu3.jpg index dc2434541cf..d42f804b026 100644 Binary files a/htdocs/theme/eldy/img/tmenu3.jpg and b/htdocs/theme/eldy/img/tmenu3.jpg differ diff --git a/htdocs/theme/eldy/img/tmenu_inverse.jpg b/htdocs/theme/eldy/img/tmenu_inverse.jpg index c8fe6d0aff2..e1efd44376e 100644 Binary files a/htdocs/theme/eldy/img/tmenu_inverse.jpg and b/htdocs/theme/eldy/img/tmenu_inverse.jpg differ diff --git a/htdocs/theme/eldy/img/unlock.png b/htdocs/theme/eldy/img/unlock.png index f3eebc59274..afefaa94d47 100644 Binary files a/htdocs/theme/eldy/img/unlock.png and b/htdocs/theme/eldy/img/unlock.png differ diff --git a/htdocs/theme/eldy/img/vcard.png b/htdocs/theme/eldy/img/vcard.png index e03026f87fb..315abdf179d 100644 Binary files a/htdocs/theme/eldy/img/vcard.png and b/htdocs/theme/eldy/img/vcard.png differ diff --git a/htdocs/theme/eldy/img/view.png b/htdocs/theme/eldy/img/view.png index 828c79a8323..76c1e9f1e6a 100644 Binary files a/htdocs/theme/eldy/img/view.png and b/htdocs/theme/eldy/img/view.png differ diff --git a/htdocs/theme/eldy/img/warning.png b/htdocs/theme/eldy/img/warning.png index ae8e35e781d..f1b93b8cc82 100644 Binary files a/htdocs/theme/eldy/img/warning.png and b/htdocs/theme/eldy/img/warning.png differ diff --git a/htdocs/theme/eldy/thumb.png b/htdocs/theme/eldy/thumb.png index e17e0912147..6b4c467bead 100644 Binary files a/htdocs/theme/eldy/thumb.png and b/htdocs/theme/eldy/thumb.png differ diff --git a/htdocs/theme/login_background.png b/htdocs/theme/login_background.png index b264649fcbc..facc2c6f442 100644 Binary files a/htdocs/theme/login_background.png and b/htdocs/theme/login_background.png differ diff --git a/htdocs/theme/login_logo.png b/htdocs/theme/login_logo.png index 2337863c340..53cf79da7b4 100644 Binary files a/htdocs/theme/login_logo.png and b/htdocs/theme/login_logo.png differ