diff --git a/dev/optimize_images.sh b/dev/optimize_images.sh new file mode 100755 index 0000000000000000000000000000000000000000..616eec75757ef7ae5a2390766dd49654a180f31b --- /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 <rdoursenaud@gpcsolutions.fr> + +PROGNAME=${0##*/} +INPUT='' +QUIET='0' +NOSTATS='0' +INPLACE='0' +max_input_size=0 +max_output_size=0 + +usage() +{ + cat <<EO +Usage: $PROGNAME [options] + +Script to optimize JPG and PNG images in a directory. + +Options: +EO +cat <<EO | column -s\& -t + -h, --help & shows this help + -q, --quiet & disables output + -i, --input [dir] & specify input directory (current directory by default) + -o, --output [dir] & specify output directory ("output" by default) + -ns, --no-stats & no stats at the end + -p, --inplace & optimizes files inplace +EO +} + +# $1: input image +# $2: output image +optimize_image() +{ + input_file_size=$(stat -c%s "$1") + max_input_size=$(expr $max_input_size + $input_file_size) + + if [ "${1##*.}" = "png" ]; then + optipng -o1 -clobber -quiet $1 -out $2.firstpass + pngcrush -q -rem alla -reduce $2.firstpass $2 >/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 aa77afde326e748c32762bd4ac6d0ae36a8adf89..33c655f345d3173d0979b6f3a12b006de8a21a87 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 cf70206a39b735f4c7851e8ea1a9f640863653c3..c8615bac56c969035506ca476d37feed03a5c219 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 d81d4c089a12cc24fcef93dd9fb62d8b8e6f9f5a..a24894e25dff5885610d9fc541a87bdab8d2b0e7 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 2b634693801b806bf6b1db51b891b70bd8dded50..912f9a753bee52eb39fdfe49da3fc8a4b168107c 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 e80c81c6dd74732ddb2204fe28108c001699c48b..b6474eaad46dce85e7c8d3b54829a696f3d0fb21 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 c19598f1e02da101b55a9f9aea9b807042969f13..911ce8e2d568824f68ab66b62d7a40bcaecaf809 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 2e260bfce2a9658f167d17ab5ec526531d4ae24f..b0d939999bd876f232a6cd343b555b80f56d0929 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 28550cdda710d49f564ca9bc6469546e34e07db1..f311f885994cddf96c2b27d0028d87533684fd9f 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 bd0e6b02ef58376e21d463cbe59a942f07b1b390..07ae44c2c5119d38af23243d858ff468709dab41 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 135d539ed9d05e5bc1efa3e2d525b58bf6c3125e..35ace7e4cf2431f337539bc50c253de38a2cd1e1 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 88594ffd7ca57d9271681be52291a74d08c1563f..e981431ce51298480b8e61caf65045b10be1dcae 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 8e39750c569f4e947215df6cbacb46ceac402105..2118cf41db3a7c2941b7e9bd4e955fd4c03bf729 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 fd9344db65fd0e2408a3771798dedcfeb3a7102a..11142a85f66f01330c570a19b64da02919779197 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 fe9d531776380e4539ff6a458180f27395be22c9..9238928c701ff612d4716979e989dc96dd283513 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 55f8b311f78dddc24136be1848aad64fe2db0aa8..c0d4c2d9200677cbdc86b41842417cfa57dd4058 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 e6a186ac71d7309e3d70dd05a90ec11091840515..1acc7a534d95838d0de32e05a22cb0601085f6e4 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 aacac9fc4237261adb5bb78013b618a4cce24a7c..ec4338e8bca2ad6905cee379100a8b0becfa5c9d 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 6b9fa6dd36ee8165272a13dd263f573507c78ca6..a8706fe50118b7ef57b1533d8e3ccc08f0409771 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 d8b59e60497439f9256d1a17d08343597ffe16ca..10dc7d72019411b1b0c1f11e66faa58c370a74d8 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 b14af18f6f7da81993978d56c4eafb308b087a41..f7322f6d68ab2275a3bb90a5bbc6e0c82e807ba4 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 340b12633e6eec2bb0775a09eecba3f9c571750e..faff605e3cadb87ef5dd007adb7446fc559c90f8 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 4ac1bafbcc6fc7a894a0e7c0a4d58730818477d9..8a5877aeeb5a47933df972636653a15af4cecd6c 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 f953427ffbcf0ab10541446a4b93cff0aa17162b..0f32e706b390f9580d2fc96e8b99051d86518444 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 b14af18f6f7da81993978d56c4eafb308b087a41..f7322f6d68ab2275a3bb90a5bbc6e0c82e807ba4 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 517725822ba2859be6811af489efc672fe4117df..899fa9f6b63f9cc24d2956938a4acf8b3644371f 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 6a05d3a8e2aa079d48135ff379e57b9c91652d82..221eaf83e862844e319261f290ab174fdfba3511 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 61f56baba39206518c702ffefea343aaf06c67e7..92995d64faa7e1d39ed6e41871488e9af4b07628 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 e914fdec00381a84c53c960315b40341e20e692a..ec64ee55bcd15419e9ac7a788ab6fb88cf535e11 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 10ee96097941f97921271bb355ae555e39418392..186680e7ff4dfa2fc6b71e5f679447cb71c528b4 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 6db3c0e0c5fcef15c2b3067dd4681a2018005c5c..5c28dea0aa509b052a727d16794e532793e4173c 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 216e51ca8f077b7b6e1fd0186c0c0f2166433394..8053007e9ddc69c0e5adb53ad1cc5fe511ab7a43 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 216e51ca8f077b7b6e1fd0186c0c0f2166433394..8053007e9ddc69c0e5adb53ad1cc5fe511ab7a43 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 310f9b08eacda3e3543855dcf4b917d7419a2fce..f092e463807148e368f8139b831e636b95ac98e2 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 8b33d5e5536ab93956b580b14534322f12ac884c..02ea7c7a19403aee1ec758350360ec31feb38838 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 517725822ba2859be6811af489efc672fe4117df..899fa9f6b63f9cc24d2956938a4acf8b3644371f 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 cc68175ed89a62c386e51c93655a03655178d4e4..1e37cac68a7dd2f9cb0188758277b63ceda1fa0e 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 11effb043d5cf1c056d8331a57c0401521c7b632..0acd18fe2bb5d80a36e8e253ac673cc7d77e60a8 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 da1b7c5503236a9ece3bd0166ae5e4f4c10942e4..5f7683898a86b8030332c77d0d2302600863ebfd 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 73dc0eb27ce702e13f9542a2085e921ddcbca789..fed5806fddac757e809c3f444a9a15f19efe3ede 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 73dc0eb27ce702e13f9542a2085e921ddcbca789..fed5806fddac757e809c3f444a9a15f19efe3ede 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 f68a1b847150e2a9d6d526ff0da6f775e94c284c..d8c8109abca59134bfd50d9c47f88987a0f0d778 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 f389ed680c1616216fe9cb3e87932acb57685dc7..774ca27e79bd168481106d0dbf852527ff9f8c5e 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 cf94186c436e5df0c6e8cc65cb24ba3bafac3caf..d41f8fdee8085640c30031fe2b784783f26a68b9 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 fe9d531776380e4539ff6a458180f27395be22c9..9238928c701ff612d4716979e989dc96dd283513 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 b892da1f65587da7a7e3e2da5971c7899b8a9b10..25edfa85b45b03ac727df4e3f8f93a037a5c6801 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 9bb4daab07aa24859f66b45c70dd4908e2f1090c..3296d7bedf6b23126fdc490aee4c079f552384de 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 a9095ae91da010b3cbc91e813f46fa300cda39ee..b9af25f5788942952e1fa18b38853a41d2e6e5fc 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 02185ffd1618ffb4a44e4f05ce5285b4e7d4db9e..bc9a81ea50545357ed20521e8e4c38851254ee73 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 d29e0cec90498bc3565a482514ff14c3f254b6e1..5558e18d682b58f65109adb76426e530f511d811 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 940b1db8c6df4548094158487a28986ddd5aed40..7c7601ac88d191239d6171b6b98f14f1bc0bba8f 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 91e9faeb7a154ab2b0cce706d053c58d2eb40e17..2532b9e46bb05e339bd1c9f51aa1c1aa6cf5aa54 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 16b409b665662d38a2790ed9aacfc338ac245f02..a33b726273e03f13d0dd2110eee546144671b729 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 6df0766f83901f7209b91d9c0c8a62b08958ca02..a9e239feec0140a9f018c35d40380d758c6d461e 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 3b0cc640693886e059f7ad2655b687a6c0ce2b93..eca345725a2c0ef77c94207a58fa588357957104 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 d45ba9c270f18cd987ce0b01ffe74b9bbd9914cb..807b7d5e53fb0d1cf30deea9b3053586cea52c43 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 10ee96097941f97921271bb355ae555e39418392..186680e7ff4dfa2fc6b71e5f679447cb71c528b4 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 6db3c0e0c5fcef15c2b3067dd4681a2018005c5c..5c28dea0aa509b052a727d16794e532793e4173c 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 ced060d87015cd5319d366cf14ba9c378919a2bb..eea2b6111962d4127339dcf7ef86e3f2b1a72fe1 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 f10bfb0d29bec59e9b0ce6e4930fdcbad9c969e4..e837d2e70bcc4753f7690a3491df181091ec7f3b 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 79ef3657ddebeedb72345a74190928ad741129b9..83b2c8ec0a3255c7159f5eb310bc0f42173e9936 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 f34600c0a376dc3ef1791256fad7c19b684dd239..a3d207dec207c6426defdb1a92d3f3c596f821e7 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 b929050598d10d851b4bca1299e8cd75514a41cc..6186d18da70caa5acaa255752415d8136edcdc98 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 bce6c87554c157e5fc68c799ed0d0dd3b5f5fe18..996415f98e35eaacb80e5d45e0c6360d93a479ad 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 4e6fdc56c7b3b17f65d2ff69464c32fa0ea0537c..5657fdb26c0b25f1843d96c4500d9ae3451dd276 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 7b588777ce78c62aacaa4248e8aebb78ed5d25b1..255b847da998d8ed59b39ac24fc2a310049ed150 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 2de348dccebb1796e38a577d1c8d9cdc7bfa94ef..1128986cecd4e3bd062c3c5365b3862caae21985 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 183a68127ee96fbe62de0f1ed58a73017585f3f3..238b830405fb936ecc465517df0e6c26be06e32b 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 79ef3657ddebeedb72345a74190928ad741129b9..83b2c8ec0a3255c7159f5eb310bc0f42173e9936 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 69ccdb279a55ed5f6ef24fe152436652e26f6ac6..fdc1dd8e22ba4d7780de2fa6aaf8be3d130e2d28 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 aeb415bec03abe9415a79df9895a08faacc5d0cd..84f5b87c805bc759555981e2fcceb613183e4e6e 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 a9095ae91da010b3cbc91e813f46fa300cda39ee..b9af25f5788942952e1fa18b38853a41d2e6e5fc 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 b94c72400e447052a482ceea7e99dfa5b72f8e77..a73cbb9e9bb0f42c0e9bf7e88bc0a580ee1496d9 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 48446ce5444a8a336d244108efd37e96cd4bfcf1..edd4a53aefa03cf0e0e0a02b27d0c4140b77db8d 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 042d82172576c5653ed257e778eb73fa1ddfefda..b5de3223bd4944e9ba35075c3c6a0052731a12d2 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 9774306827adc070d22589ff11c9b264ea218de1..6550c11c061531621fba632af3a3ea6b52134a5d 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 562d972db3520c7c1de1fcf13ddbbce15ff61a3d..7215fc22aa80abe1c079658fc6fe7c7c6122d817 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 9395d98848079cefa6e412a7ed2d8a5dec9075b3..b1266e841276ca20241ae6e3b62b5601f6f90f8b 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 cf49e8a072efb1543816fd72919f09fabcd34f93..cb94e71a86849735d5cfe4e332797cc4bf517b65 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 0b9fa5a1ac5e23674f95576148507d3e33fcdc78..68bb77ae9894e584d9cfa7b8a5d2ba18f060b6b2 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 f38b8664cfac99613aa064b00be2d4daae347e50..b50dba8ef2d341459570f6de305157a293ff5453 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 0023b3a75bd8d4c08da3ab6b88812d0f0eb3fb94..2dc8d0111b6e10950593baa032956369dc5c343d 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 a59f51015c12e7a110237168a1d60a0f100c2100..efd49ca01638b61ae6f38aeb8bcd00f93765a418 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 6a05d3a8e2aa079d48135ff379e57b9c91652d82..221eaf83e862844e319261f290ab174fdfba3511 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 0210d989666b45ca5a23920ac0407f10356cf91a..9ba662a6086036245c5f809474549abecd785e26 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 544e194bbd71f96825c68b8a57ab646a282cb772..5ef8072d54ecc1d445a32bf041559674848c69ac 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 ea5b0e73a5e3fd78e6e93275bcdafdb2e7965e80..290a65f8a46dce8d556ec23eb2e597c2ed475292 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 97121565bb08b2eac9ba51c91368e7171370c923..b209cd8d16e340a330069c891053a431d7a9e01c 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 9ea65b9b6e189bee7d5cd11f06111392092ac21c..19ae2cdc0d32a6b24e87b68501f1d140980a8fb9 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 0023b3a75bd8d4c08da3ab6b88812d0f0eb3fb94..2dc8d0111b6e10950593baa032956369dc5c343d 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 eae2c746d9244d4df36a469178b983b03256a670..0f1737ce5822abf1e04ce05b1280dc03dddcd6bf 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 d9ea9de8160e97b0a60543e69ce59721d2f7ed06..4ffacc73e861d39df2e4144b6804aa0cdb28ba7b 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 d0ab1ec1dadf285f295dca58d8d3f4571dee284c..55ee040f98d474f9d73ed288e26ec7ec9157ec67 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 1b4d2072939209f51bcad301ab06adea4c1a08ae..ab7742b4a9774c130ddbfbd515e6b3e42904ad61 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 210b1a6c3ccefb387a9f902b012f61aa83eb775e..abe1bd2424ef5911c29ce64fec97c2c0d39766f2 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 2112071d494671c6cc16dcddca15c0f09200196c..9362cfb75ee8dda5208893213fdd9cf39dc9569a 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 6bf44387a885ba9296af5de03e01b2564d28abe2..cbf205d383e6b461d96221d9d67da2e77b129d3d 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 2dc7f89751444c6067513ea33acb9c2a7cf540cd..fec72dbd81e9effde84536727dbd12867753ac3c 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 6de3e256ba63c72c88e3ad9929da735574d84ee1..4922ea1ec12a8606851317be0927fa7c83132889 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 18d4532f8ed7df19383cbdf01afc25067041bd74..f50a54114ec6b52f934411179a04505c0a69d3a7 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 ba2af6b088598dd1e8b7d8223f14ebace3cf9ded..c2e20742b65d1a538f321b706e4ec03979abf3f4 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 4f23a349f17d1880e9e65331b2e1c21f10131c56..d18f94cf5822973aa05f76231025cc7a153ee86d 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 fb87a87329408ccf5500fe6cc04b3677d59dac3b..c5818910e6ea86171288543d2e55ef2e854dc1b8 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 32a7574d8348eaa39ca7979b514fc94228731c29..5c02de23c6b46ba5eff81d05c9fcfac45192f92d 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 757b8d50fdb354bc30950e1762581859cc8c252e..e96e4bbf33cbca9cb792dded1bf873470867cae4 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 8baf084bd99bc218500d029ae66f65f9701d1bd0..72990aa88cf4677306886913eea87a941dae4eac 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 b0e7def02d955adb60fee8a25534580ef68538ec..91e19e47a810bfa527172e0ee783efa4bc273d16 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 ff08a7492d4ac43455ae19b0ef64fbe22b1788f9..8e95c05c874a435dfba250be981126457c6637c4 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 f80737aaa781cfe0585fec0ca884d61cb2e56b8e..feff9b53fe4185a7045670795268b22f68d6a2b9 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 1444d86ce2ad101eac6c8aa20f5b003104307b5d..ca5f28b1d17ee34efc93a01ba5259a4fd795ca2c 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 a88d7975fe9017e4e5f2289a94bd1ed66a5f59dc..e327d952fa47a490b79b8b9c6d32854de82a0961 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 4e144cf0b1f786a9248a2998311e8109998d8a2d..e327d952fa47a490b79b8b9c6d32854de82a0961 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 def071ed5afd264a036f6d9e75856366fd6ad153..db99fd9ad478bf432bb8491ed7e0e38dcb856030 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 7824973cc60fc1841b16f2cb39323cefcdc3f942..89051c2f34f0c4f05b109ea3c9f35c161cdd316a 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 27d5ff87c9d9f462fb9c48e177fc373164c9df27..62034af3190cb7b201b04b336bc235ae778f5225 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 8f00204a33cd251368054dcd41843e5a4a3788b8..a503b20a95cf0953d0d8c5e55a73a8d7eeeadab8 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 725c20a19c329c19b939a60526e46fe6ca39f6b0..ceb9667d4b7141c68f216ffc809a36a2fd98d5ac 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 663cfb9385617224bfb2b9b921dda6ae7ff8d568..2f96ef7581d13557d0d528123b02af7d634e00b4 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 ff7be2c5808dc4ae6ffed1d641a796e999955f85..155df5aa18822932b8d5fff61bf09899226959cc 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 e59f0eb85d35c95b5e37b1a91a5a05b84355c25e..18b2a5b47ddbe59c3b0cbba35331dee4006814b2 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 674773045e5dccb320fcaf2a8f8ea51a82068668..92450a62497656ad61ecb78f0077d8b9813874c1 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 22dba223a17976ee2a4a1c87fd28a8997fdca7b9..a8db4159a31c3ff9d76dfc19961eb54e27ddf86b 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 ff7be2c5808dc4ae6ffed1d641a796e999955f85..155df5aa18822932b8d5fff61bf09899226959cc 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 f18782947cb4281af8d5227968650bffc71cc214..cb71c05dcfc4ea623cd605d9761c1e5f674d4929 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 5c008b0a6fa5e8a1f8ddc294419aeb3e37f79f46..bbe351f09421820056d8df042030f19d944525b5 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 662d5e599ee73443b11a74e21fb0e5583adb1483..14287ee9bb4517a357816e676459f627c3c5be76 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 e8ff761f0b5bf59b25f92a635eb08c39ef0bcb34..8b77cfcae4a649bcf4c481f7e216ea431d63c4dc 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 8a7282ebe265128e57f50c7c3b93466dfd0f7c9a..2b53ad3a2d516ae86197a8970ce898c053f72830 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 085226668a3263be0b2092e1c5a75cd21633b501..f0b8c3f71651765b54e1ac9b4a6370292c89019e 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 df3447e84315c98edc6e25a08e2b01c1249b1210..a72e990053414c4cda054ca15433e15de80fb173 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 613ebe966773b080312722bd73acc093445b5eb7..6d1b485f1a5ffd5e407b4c18993076c36a93310a 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 f2c7fe56a3807186c6bc0cfff898c58c366f59a1..7cc52f5ee6b0917d0d74068029f656d628de97b3 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 20801a12d18e66ce4fa8e1741a8b05d2b029a018..efc1796e410f4e052eaae6b0c17df5917bc30aaa 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 8316f7be43241d9994ba6fc824605a416f2b8490..f8da01cbc45d3dd709b00a2c9ece91c2b4d8804b 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 ea0a02f1dfeecef47bcf308737d2bab6b9382182..18c8a6e323fa6822c52da4362febd39998ebcb38 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 ac15741111a1484f1a552878d709f20e442c72ee..da65ebc51a285d162a5f03ceb94b185b8ceb9b69 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 dfe8db877d5ba95eb909b0fe11004b892ecee37b..8f4a34e9ab23008f3afded11711785b358fe981b 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 88e6727ac2cfd5f8271c7818ea8e5d49dc342d97..62177f13df627a1216e1d157e9abc75d421a1331 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 38d76144fa712afdaa88f583f0fcb791f3626263..c2279280b33b629bb770fd9e3fc7ad258da05354 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 c3f59dcb6ae73f0bb8adccb49f4e4cb3f2e87016..4087ba572a54a2bcf4c1cc85545ba080df597163 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 0ab8c4947e62921b1270a48d64224f4817cb8064..738c8393edebd92050ea9890fc85068158671d20 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 7858bd0c45e089be6f72c70e5bc4bd928b8a5619..1f6f801f04518d7688af4bb67f6c9105ac65c15a 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 fc06e4c8fd8c746882c094abb1099881993871f8..74140d7026de5a62e109d5b4325c3a2cfa680328 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 6a05d3a8e2aa079d48135ff379e57b9c91652d82..221eaf83e862844e319261f290ab174fdfba3511 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 74d696bf6b227ee93b616258f5ba111fd84d3309..06f1f0d61003d127aeced2f7b757cf29950661d8 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 ae8e35e781d8ecc65ee5aa4805d657a875349be1..f1b93b8cc8267b6299f2b299726e05ca560ac881 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 9bba79fedc596ef6b05984f196f9e51e77d5daff..96509b930461377001fd2711adc58188be42d9cf 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 64b6199c77453ffaab42241460ac4b38b8911884..8459a7fcf8541208774ac608a41e50fbaaaa0ec8 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 97249e7ab0ae46d8ed88db9de434d0e6590c98cb..c5a947c4d9f1fe2fb54dc875a1a49b617aac51ef 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 150fc5e88bb84c8148be1640bc990909f2ec3d0d..25665e556a9eb18ad131edd5610411862b40a22f 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 320731ddd3f834b65c1b44bd44b92af299096f12..9a88ada13f1c2eecb59ced7e523ef85fb19703e2 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 a98d145d2a55941c3036e4c76e1206c2fe3a84c7..422fc3f942667be0c205ad13a58e1ae16cdce2bc 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 79ea84d9f72bd924b517c0b2b2fe0ccc96b61024..422fc3f942667be0c205ad13a58e1ae16cdce2bc 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 e67a663df4d19ceeeb2be9d003d9002692eef5be..9cd9d0b4a28690d4266b0f3b2fbbc7d4951bdeed 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 590d05521a5dc4f397682668155376e7fd19b847..db109a4c2b5ee965524b3510db452a2c6a1ef3e9 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 fd5e5801aea18dc5a327f7a7279d5a985a9bd07a..871ac1c1f290dd7098702eba8b5bf707b71b49e8 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 3bfa627d758e3ab89cc7a9bdc1f1e952210f5b0e..1cb7af0ad8a4db9aa8a5b07dcbef05ccd55862f9 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 29e0619e77f6ca017b8606d3ce1e19541ebbb563..81635fd2a592fd01ffb6ec4c105db5669c69c84f 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 6bc08feb21191b7a7d784af4a13d97fa30424502..9abf1dc14593877efd8f0f5aa48da97ba6ff7ccc 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 feca840034b5aa8af5001c8d0e3e3df9b5b8a492..a68206aa818dd5c75e50b1b6c94c9e1575c7c6d9 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 ddde2c5f5aa32e1a527adf0484d833c7ccca3b21..0480bfdc73831ae92434dddc5386e12aedf935fe 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 ce8b226710bc4bdd74059a5d46487cdf6743f3ef..894b4cfd78e0b5ad8a07621669fb204881b9c1e5 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 d3bd2bbc824a1edab176d8f722dbf5d2c51c375f..5e6471408d875064b8a38104922f6b70e67287f7 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 90829a353c3bc132301a84376b2bd6602a55c322..bbe6c27f041005fec8f47099cdfc7ebb1053af89 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 8315c57d61d0f6b46b16da364db14691ab129938..ddfc1b7bd905e5d43d62734cff1a7d2138687db4 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 bf972d8b1aebc51e070aa55e46a2842de4423701..b5a22eb827b46edf53625bcd7a82a1db04ae3485 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 aacac9fc4237261adb5bb78013b618a4cce24a7c..ec4338e8bca2ad6905cee379100a8b0becfa5c9d 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 24eda772954e2f6104f91b76a4fd271db04941ab..bebb74d98611e818118d81d55d5dfc5eb62f15cb 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 221cd3c76b946a67e537cc35b117aa3dfa4f6a83..8ad73597be74e4690e6a5b354ceb560c5542ab0b 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 2d31ec2202ee78fa38f0e1cba6e6e0c14b6bb1ca..05562bef842a0baafa8813f528fe2c5012d6fd94 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 6abca6e2acb29ca9021c488554bc0df43824c568..f8c84994d473348e27391c7095c451fdfac9e0fb 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 d5ef04577cc2c7a25c3df91dd0030d8891521e6c..4e916fe1fb095017458fcdd1093c1efb8cc8afca 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 f6e6716420812b2bb07e839e53c7bdf573f7146f..ae205e9d77050e9de7990790a6328bb58b008ad7 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 0c7ca54fa1f34ce50512e8f2131d79c8c1fe270c..bc4bdb360faaf5046d321966748582f0d44e9551 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 6abca6e2acb29ca9021c488554bc0df43824c568..f8c84994d473348e27391c7095c451fdfac9e0fb 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 98bc98d2f1fdd36431933d1c04d9a7aa45914437..73c66e9b2b33cb54953d608d06896218ebe6dc44 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 1f6581389d1a3767c0467181c43c15e053230773..8680cce82bff07a3c3aa496e6280d871bcc50e27 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 4baa3a3be8e1741ae21a1c4dc149351c1fb07bbd..917715107bde9b14abbe77024e805b1a03d40153 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 1687cd1b5367ad08588201f46510f525ab7a9398..1db8369b3d571114205b1df33c74356590be04e2 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 908a6df9348330b2e9aaebcda75d5c6a08b86fef..04a24af2e22a3ef25a986218506e1cbf0147db71 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 216e51ca8f077b7b6e1fd0186c0c0f2166433394..8053007e9ddc69c0e5adb53ad1cc5fe511ab7a43 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 9b3c093c790a83405306ff8ed8316820eeca9ee7..d6ecce335cba5efbb3ddf5d2f6f1e329619f8c68 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 7d1374e1fc98e3e00458393b6dda4d10be8a0143..160821354cc45e249353e69ab85ed7ca7423c8ef 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 7917abd9c07b32b08b20cc4ff2afea4af556ba0f..0bc44f0ea99e8f70fba0c19ea6015d1a7693821a 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 0f716f6771103a7159ead341aa4a6dabca62d131..12e6cd655d6630345cd24c74b5e85bec38524c1a 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 f893de7abf32d169f1dad5e6f76e9120e098adf0..c0eaee6542fc0d716f1fd9ecaf7e30a7c96ecd36 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 932921c1f4c4d0a3c6da9d9c1f5bdd3c6b27e4f6..0fa4283476b0da9b026b8b26a2226ae30a9abd2f 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 52ebb2bd738cd7db3aa78f79d49cb2d316412c71..09695ac754f9dc55f8ee0daba9bfcca8392fc271 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 0f716f6771103a7159ead341aa4a6dabca62d131..12e6cd655d6630345cd24c74b5e85bec38524c1a 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 8c2e2cbdb0908b4c15467dd79bdcde69912dc518..3d99cf1eaef689386c6bcae4b7e3f237d53bf43b 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 b264649fcbc26d7774496d1d9c308841c69c769f..facc2c6f4423ed902fc2c478068417b0a08bd823 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 2bea3152a101d8966cf5e379aca049a12a19fcf8..866037c9b543df97f7e01e4f7873850ba597d030 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 e520f7eb71e57e57e965f0990cb830dd91d8882c..efc1b3f060822cd3e5ad5867a9ca5f7213549e79 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 ab5511b57f13960dfc1c51b3c84a09061b4ef311..7319c16f9af646704bac40dc2cd8c5c55f3a3370 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 d3ed4fa89b3dbd94b4500b3ce0ac8ee752d1c66b..e22f73aa6f9eccb8ab6bf9049d8789d3cc2625b4 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 eec3240070b2618d28e56397b80f0092d8fc18ee..f4d0d917d1fd1c764891dba2d26ee146436ac8ca 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 dab5feda5cde518534221efae5e22db51e48a06d..d715ec7810c6c22b0dccb5e6931b86003528ab51 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 d1081185c44b2b97be0a0f5908e745d41d53aedd..6f5f45269ee328cb33a9befa0fc52ddb25113cba 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 5bc0f86b4be7eee3b03ea5cd4485212532fc269b..882235d2cd3497a1488ddea08af1dfc2b4eeef73 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 89627d8b332a8bd25af68194837c833038929982..efd6859ab607a0d18cee7f09a94ec6695fff7465 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 0864dcc5852d7a494a4b5191404fa97b9f05a874..6edd65003e04bc8d56e0be5e68711dd886b526ad 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 17215ec5899175e4bdc4b80eb8ffa60669a3a017..c053f660ebf6046d6fe8cd635fd31273984e34bf 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 d6fd3c41168c075b2bfdde814911c4f5531c0a8d..cd14ff61bbca4b7a8ab698eeb90adf5f2f39b5e2 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 e4fe4ffe1a6d1452ea8a10fe17c46995b155faf5..29b694864e51fba5c88d1ff3054fbca09847ca35 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 dd3563051617efcf79e947bb939d3fb8ad78a246..001b0cf9b7698a7da6ced443f8402134cf7d12c6 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 b892da1f65587da7a7e3e2da5971c7899b8a9b10..25edfa85b45b03ac727df4e3f8f93a037a5c6801 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 b20734da69abc6d778f525e70f27b74ff67f07b2..a4b878966dcc70ba0ccbf3647d56a39cef02a864 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 83d3e1ae993589fc72c54868f9c7e5d24653d1d2..6f1931ab96cab03c827544dd17a96ad2e785d713 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 3c7443cba3e2bbe9c56d15e922fe340a7f817e1b..2080958f0fb04a7ddb9fe953bd9294e3666d43b8 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 c89098beaa583e0d2c7a9f539b5d642ad4d88ec8..7a9692a08045fcaa51db342804aa593ef1bff0bc 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 67f6b06467d3fcc60d2197e53a39b7953d44959d..85097420728731b740922b6725fd90ff6ce2de88 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 76aba6c2a7dcbad4b87bc5253e35fd938a756ff5..86d1a0dfa52a2a2be3b2805a9623d08982c703a1 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 5f11e40a81fefb9091fea49eba655df1e2573fbf..36cdcc8d4a2d0220e02cdddb5d62dea514d60a54 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 966f6e05cfae09a7aee52be96322918399a547b3..f571504b24677f54c02299d6eb3435fcf1118788 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 b929050598d10d851b4bca1299e8cd75514a41cc..6186d18da70caa5acaa255752415d8136edcdc98 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 9246f5cef24e5613aa29f3066242a45094cf5f0c..d5cd141733d3b07e6d6348aaf0afecac51346718 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 4d5f811a891317267d33a3fbd608f198dba1293a..ccfd2d2f5b2cc8a689ef175cbece501f8084084b 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 f726f8a705e2e870d9ecb45151af020564207ad9..aae8bf6eba03015d44032e7fafb2450c05a19dda 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 f69db27d48243d38955043af0c5cfcb734d83f84..552eb39fa314968d61faac60b024ed0210ad9e7e 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 69ccdb279a55ed5f6ef24fe152436652e26f6ac6..fdc1dd8e22ba4d7780de2fa6aaf8be3d130e2d28 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 75a363ec8d5ee3bf2a360517808ac441403db580..b112af5cf0afc02fc7c8f00999205ed0a8d8b603 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 13e4b92c9ce2e0a3698d31fcfc2b82704653f7a0..cd0eb4109f7768afd725ee12fc5213b3d4c31adb 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 042d82172576c5653ed257e778eb73fa1ddfefda..b5de3223bd4944e9ba35075c3c6a0052731a12d2 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 95f4c29ed2f6e4fc6e5e8fd7e1f81544390b8c2b..5691147d8ffc7e161001fe58d28bd306815f779a 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 5f11e40a81fefb9091fea49eba655df1e2573fbf..36cdcc8d4a2d0220e02cdddb5d62dea514d60a54 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 070fe326983cfd8d0ae07621c5415c734803f6ee..fd84ab427dbd736dfd5be112faf87c9d7d2896d8 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 5ea2e846ddfd125708ef8fdc650742f6acc88823..1444573cf05c248eaad1c94fa6ad2cedcd7a78d8 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 3ec85fed9d3b2f6ca50036741eed51f4b0ded557..4a01b50435a54567ce0d53cad192e728aba5505a 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 4a52d65b9e62af63d7a677fa6cdd991016c00ee4..2dc60e66b3ec3d81f7a71167d00921dbb1bca75b 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 4d5f811a891317267d33a3fbd608f198dba1293a..ccfd2d2f5b2cc8a689ef175cbece501f8084084b 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 8f4224b5a307e7dfd15948304eafc1e25aa6d345..37372031157d10aa794a333dcadd1f62ce4a7b13 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 2161bfd59cc627e7b959ee0650c73086ca9d86b7..65e9041589f39e0c76746ea08669baa778442a61 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 97121565bb08b2eac9ba51c91368e7171370c923..b209cd8d16e340a330069c891053a431d7a9e01c 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 279a34f869a1a8c7fe9e06abf3f0589e0dd7fc95..2f439db7b500111372c4f8cba7e71e06e460b823 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 24581634018bb192dc33963796ea3d69a01c8cd7..14dc14a9602dbabc7b0702b0db699610bbd68313 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 b929050598d10d851b4bca1299e8cd75514a41cc..6186d18da70caa5acaa255752415d8136edcdc98 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 6b4604d38ed0fd940428812c4c6a2611a224d3a2..f4217646b2645e16a1c83ccedb6755a8932a1e38 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 82572b9e1d1b17f5399986b83932a3a90a8c169c..728bb3935366414766d184afb9cbc545e4ccebe1 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 4702d19fd5097b4ab56cf65bdca8994a14b86ee9..06634550daa62ede26dc024bb75b36a3d901ba16 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 cd76e0f92532b226acc2d3cb615bef9edc773c2c..f053591bf2d39a54cd060ddea4b9e23bcd625743 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 6de3e256ba63c72c88e3ad9929da735574d84ee1..4922ea1ec12a8606851317be0927fa7c83132889 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 dfa83acd50d7f973b4db1a8251c956644ec2cf5a..8c116b0dc4218939fcb62ee4087b2f2a353f6d03 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 61daae778f5abcf2bc9efea8a6fa3b33ce11d0b9..a49fc171c06d79261f00cc16118595d22077b29b 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 001cde58667bc3b8edf80a6ed54298302b55d20c..486fd6770a231ed55293df7f54edce03ee55c303 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 046ce37b9c5f85182bc5976705b15e1bede8cd36..9994475cdfe0fb8c646eb1877a84443066a73d93 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 62056d2a89a17791285526bd7f80189dc7d0b018..a4029f119def5d9ca4c5f7f1bc6a452176bf5b06 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 2ea37440ecd65e4ff739a0ee0532bce17e7e2d1c..2c479d9453b4a6e65bc3909c793c221241071707 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 024e0c62cdd8682cdf9f161bef76587e078bbcb3..203a85e10c4c0d1f76f0203cf266b6b7b62353be 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 1444d86ce2ad101eac6c8aa20f5b003104307b5d..ca5f28b1d17ee34efc93a01ba5259a4fd795ca2c 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 a88d7975fe9017e4e5f2289a94bd1ed66a5f59dc..e327d952fa47a490b79b8b9c6d32854de82a0961 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 4e144cf0b1f786a9248a2998311e8109998d8a2d..e327d952fa47a490b79b8b9c6d32854de82a0961 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 def071ed5afd264a036f6d9e75856366fd6ad153..db99fd9ad478bf432bb8491ed7e0e38dcb856030 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 7824973cc60fc1841b16f2cb39323cefcdc3f942..89051c2f34f0c4f05b109ea3c9f35c161cdd316a 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 008557d7341afbf56bd049d3ab93f1f425986f26..bb66213f41332ebfae7172ce9e949bd2a4c60dda 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 0f7b0bd4f874dc13ebfe947e631aa35028df3d87..d11252783a43163cbd0a824e10cb094df58967e4 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 3e4650f4f02c6f7db52a9f4a186d929c3eb7b384..558439d282e451c5f0750dfb474e8c83d55fb6ee 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 f49966eaaa1d52ad73d9eee9e84f5dc6f2603ddb..e75157966839a5a704853b3a48cd290183dae710 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 aed93a350baeaea64fa0635a1bd020bec49b9b9e..6ec1ba559613fc19c80ae08681f3b47459cfd0bd 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 a2e22fe6f59ff70ca4de8fab3d49805e4934af5d..53264a0515d664babba63581e6735b811532a01a 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 50295a03ed5f89cd54df3d45907ebcab9d734255..8871a45519fbb0984b59bd2364e3fe06087e1f63 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 4d8f59be1c226e76c2ddc5a89f5bde2f7de5da8e..c24d4a9dac21aa0a6e03b96185f94db180c2c128 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 5401cf9b03d42d649ccd8a2c58f17777eb3d33f6..94b6dabf265571f7f830cc164413b84506526b67 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 52b3625ac057bf43d8817354b1a74ef73443d313..df442fc1edaa803c7a3304408a2259aaa95ec7f4 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 20a7219535e8b243ead09bd9f13be1cdc3bd51b3..5942e6c72af8bf19fd85fcf34071f869638ba036 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 6053eeda485dd88f281622827bc505cb2228d613..cbe60a02d28bfe7c944b1bc0e2d778b89c23ff42 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 a92e15585063a3780a5f0a2396e5328ccbb59656..9016db48b027bb23d07b6217818abe89b3d982d1 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 eb76c0fb179c46977fc3df02d7ea680ee2bff4da..6bdea4929859d27c6178875b740cad6984e894f7 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 98ed423aa9e4c3ee1b9312783ed0a6a6f07feb69..367a55921e44767f726c115921a09a0df0be3cac 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 1e76ce4946bfcbdeaf9a8215d767c85ee2f4fa34..9e000b70dc9b40039aeea98211cdb88e3a930c41 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 0f2a4332cfc64f6c86bdd0125c962606afff16f4..f667e3573d092f8114a72edaefe3dfd2bbb552c5 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 465234fcd3c3976e5b478d155996b1091d018d31..5a6c0aeface51c0bd908a4aeadfc2df1345bc274 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 fc80eb2aebd3e26d7eeb251877da0937b83fc79a..81a14c1e4823bc40fd0c6f9fb94f197a7bac83d1 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 c839a8acec58e3cb26c1e5f5c2f39f2f376f8202..3e26b4d06ed2c4c88c75c00ab6b5f1f2a7683e53 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 4935499d917ff4221ad89c6bc2c42d09acc2d361..4271aafb6ceaa0e364ba20610e20bfe1aeaf5699 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 0864dcc5852d7a494a4b5191404fa97b9f05a874..6edd65003e04bc8d56e0be5e68711dd886b526ad 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 deb69ee75ec9f45b6eee6a09825046e2b4ced7ab..9b035d99511c7edb7d17f84e171817e6edee3b3a 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 bcd70489c80b81cc5a93523a1531e0ba321292f8..bb48d617379cfd5d92909464a4571e9b987649d7 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 8db7fdcb6fa92b7d86879ebfcfe9f27937cec022..4e51fef3fc7f9ae03d9920198b56bb9cb16cf4d1 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 e5ca3f72414c07b8f41aff8a5bffb167549204da..920e00663410450cd10ad550e03d6ffcaae1a1fb 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 dc2434541cfe96f472cb8c081f2859ed2b237e66..d42f804b026fdd4d6a1402c4be09b78232d06fe3 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 c8fe6d0aff21a688e3d3365e3a2505c120730265..e1efd44376ec00184b1e15eedf21ad5a9ed46480 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 f3eebc59274a242caa5731a7f56cdd1a5f2c477b..afefaa94d47dbe2e173bbcb9d464e02dd2bfc771 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 e03026f87fb30d52f39b24b6c48381ccdbd30c32..315abdf179d730998a31ef3be62955f892771663 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 828c79a8323ae40dddc99b2cc8f38f23b38d73ee..76c1e9f1e6a37537d3f3ad016ea6411213012116 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 ae8e35e781d8ecc65ee5aa4805d657a875349be1..f1b93b8cc8267b6299f2b299726e05ca560ac881 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 b51b386fc7aaa9466ce12031d7a8a852ffeec630..88cb0e849a2092e1a8d3456ae9f7977cf58ab6d3 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 c77e4607958d985f3457efdf411699e4187a0973..316fe442e2b0daa0c895d2f4097c21ba9746f4d1 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 d5fed48abebc107ceebdae65e414787f3867ecdc..082a545addb6104f5c265496b22ba82cb77977d7 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 ef6dbd377a6c63eed8211066a2b49bac991a154e..026a4cfff8047e2112be6cb87f875017b899f1ff 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 423b77600d02242f20196b07727597dbafd14d77..4835cf8f5087fcac0774e37d859af5cbc8a34cb7 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 0e3eb3372ff09fbfb0c9e3c6672b1820ef1cbf52..54fe3dcf3667035adeba2aceb2679b1d2e58f345 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 cc15d2f2144a07cb42e37aa7bb3f6f1899e36b0b..2cd1136c77a9401819e3b9e9d51625f16e0b68b2 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 f2fd9a85eed69f49614356e83221dbe28265c870..e4f7b42acb6b961104fec5f79d840104fe3ac890 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 e4c4ec1a6cb1b4f7e559b4a000a371e3df098905..d19fae7a61d1541d4dde6ae20d575cc9d31441d0 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 ad65c580ee752ee27e51e62a8417aa94995adef8..f592543dd8e6ccb897469409ca2b09f3ab0c83b0 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 3bfa627d758e3ab89cc7a9bdc1f1e952210f5b0e..1cb7af0ad8a4db9aa8a5b07dcbef05ccd55862f9 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 29e0619e77f6ca017b8606d3ce1e19541ebbb563..81635fd2a592fd01ffb6ec4c105db5669c69c84f 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 941207d85da1e8d98353bc95eed1e85c6ee1fc48..d2fbe3a7a13070fc14abb0bcc176be76c7ad52c6 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 6bc08feb21191b7a7d784af4a13d97fa30424502..9abf1dc14593877efd8f0f5aa48da97ba6ff7ccc 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 abf662a530b75654dfc0dd0e5d2b04ede1ebbf60..ad6484fcbe967f20cd97fa0c61c66217a2ed26bd 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 f354fabf32d2e4333e40b4b57ef262d39b707dd8..f24b76ee016b1398ce83086ae21bfbd6a2d9de78 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 d2c3f60f44dbb282c90eba4c5474d81595e41b39..eae9fb1217b225f4917eb8db6e44fbc63f7fcef2 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 05b95df748ca19fe383db4f6d0346a89d9232132..48911bf6f135f68a685db498941fec871b765c80 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 9e309245c43dc80bf69bdc7229f1cac06b609892..c8c7f55c85d724f041f25b22dfa3a1cf10b75bb0 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 b09d2bb5a5a42e58965499bef80412163ef794c5..563cebdc3e7ef64358f53c14f2261325a4f32930 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 513f0eb0fd8ad8e70798fdd2a0049976bde8b887..d29a1bb0d61ce03c691530e0951fb0c53f5c2c28 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 ad8da842c7c6ccf1ad827c4d0252f6248aeabedd..fb11e4f2dafee8fbed7953ec16d79194e03bf71b 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 629a40617e5cf373178a2ec8bf8457b0958dc523..354fb66cb5e6977c33182b7103c9aad709e028a3 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 c8cb8d9f39c5771820ef90d371522427515e16cb..d3f196e469dc136863f2e1136737b9c6c60dbe8a 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 4634207f71b376c689bf47530e2d1c27f245451f..946a51b63a89f764bd03a8bc4c72e85f4665af91 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 00071c4ec427d4c3e0e0580f6cb40add4b4ea197..f152d6d083f52d1accc5d5601dfaaba04973a98b 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 b095fe478a45906882673cb78083bfd64a78a70f..0fc515742a3d1fa1564ad0cbb1203538924385c4 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 93e655981568e94c20ac959ab386b661602e25b5..15387ee476bd5a7f6ef3dd910cf4209ae021d6c3 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 34008a24cd7e1b38e652a552a0e26609304f8026..ad42dee2ee9ffb6a160f8e60624cdbda23e4dbe3 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 086a46a861334e66c8f772664e024689f6dfaf13..f4409cbaae5fee0a8f19e09ef364012a141d99d8 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 7df7fd0ab023786383458c534545d8c3d8b67e88..fd09bb40da08a595178fda83659323d52b22f5f5 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 12accbf3ccbdebaab730f77ca617e6d10d68cc95..ca483b7b295544c940cbbd0229e026c9baed4a9f 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 d7324957df6cfe1f8c8d3782485b08e8ed60b475..1e41b87c6ea412ce423197a3ffd9696e3f4a3259 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 1d012589854ef1f53adb1d2d25861e241ec7de59..3df9a20bcd55a3d1d8c2561559b8c824fe8f79bc 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 5fc95c7572c7a9c87d6fbe0d004951942682bdef..985311e8a1e54d2161e6df49ccabf10270f9250c 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 ccd9b835f7df103536679c8343da1a387cd22d45..fc064ef4dcf4799a6e612bbdacf1cd2cb412c262 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 40caeea6e6783d28723ba6daab980a762e215de7..9c3342222aabe530f203ad09dee940bb3e7dba48 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 6fed6c09e1a02a519a707c1dcd05d483e9327d96..b5507043898e811243a7b3d82ae14e9e757a6b78 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 28dcb500923c56c183eb2b04cf154e93c706817d..317dde2f5565bcac6e11bbd17eb171034e10d894 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 df83d4bd68734a0f9d6e3dc9dccb0fc4e1aaee13..84d883d8d6957975c9dabde7354d1402524d21c2 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 dd925af6d1dd0d45d394ca9849c28b956234bc15..bb2c66aded38183d23eda29489d37bbb97645462 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 ddde2c5f5aa32e1a527adf0484d833c7ccca3b21..0480bfdc73831ae92434dddc5386e12aedf935fe 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 8f61b220c59806df61fc5f90d408c0fa9d8a80fd..10e03744ace66f1b6d96e02432d61dc226583d36 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 f27609ae8eeaafb5510f7a95bbb55187b27d7053..f0ea7d10c5ccc35c695a6ae244f7dd42c408c125 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 ce8b226710bc4bdd74059a5d46487cdf6743f3ef..894b4cfd78e0b5ad8a07621669fb204881b9c1e5 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 d3bd2bbc824a1edab176d8f722dbf5d2c51c375f..5e6471408d875064b8a38104922f6b70e67287f7 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 90829a353c3bc132301a84376b2bd6602a55c322..bbe6c27f041005fec8f47099cdfc7ebb1053af89 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 8315c57d61d0f6b46b16da364db14691ab129938..ddfc1b7bd905e5d43d62734cff1a7d2138687db4 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 bf972d8b1aebc51e070aa55e46a2842de4423701..b5a22eb827b46edf53625bcd7a82a1db04ae3485 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 aacac9fc4237261adb5bb78013b618a4cce24a7c..ec4338e8bca2ad6905cee379100a8b0becfa5c9d 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 24eda772954e2f6104f91b76a4fd271db04941ab..bebb74d98611e818118d81d55d5dfc5eb62f15cb 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 221cd3c76b946a67e537cc35b117aa3dfa4f6a83..8ad73597be74e4690e6a5b354ceb560c5542ab0b 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 2d31ec2202ee78fa38f0e1cba6e6e0c14b6bb1ca..05562bef842a0baafa8813f528fe2c5012d6fd94 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 6abca6e2acb29ca9021c488554bc0df43824c568..f8c84994d473348e27391c7095c451fdfac9e0fb 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 2fe9e5bde4d7124acae57e5d4c5b0bd7b30dbc5f..0f5fa5de31f2ca58a59df4f6519d2f921d29b884 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 f6e6716420812b2bb07e839e53c7bdf573f7146f..ae205e9d77050e9de7990790a6328bb58b008ad7 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 0c7ca54fa1f34ce50512e8f2131d79c8c1fe270c..bc4bdb360faaf5046d321966748582f0d44e9551 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 6abca6e2acb29ca9021c488554bc0df43824c568..f8c84994d473348e27391c7095c451fdfac9e0fb 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 98bc98d2f1fdd36431933d1c04d9a7aa45914437..73c66e9b2b33cb54953d608d06896218ebe6dc44 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 1f6581389d1a3767c0467181c43c15e053230773..8680cce82bff07a3c3aa496e6280d871bcc50e27 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 4baa3a3be8e1741ae21a1c4dc149351c1fb07bbd..917715107bde9b14abbe77024e805b1a03d40153 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 1687cd1b5367ad08588201f46510f525ab7a9398..1db8369b3d571114205b1df33c74356590be04e2 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 908a6df9348330b2e9aaebcda75d5c6a08b86fef..04a24af2e22a3ef25a986218506e1cbf0147db71 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 216e51ca8f077b7b6e1fd0186c0c0f2166433394..8053007e9ddc69c0e5adb53ad1cc5fe511ab7a43 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 9b3c093c790a83405306ff8ed8316820eeca9ee7..d6ecce335cba5efbb3ddf5d2f6f1e329619f8c68 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 7d1374e1fc98e3e00458393b6dda4d10be8a0143..160821354cc45e249353e69ab85ed7ca7423c8ef 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 7917abd9c07b32b08b20cc4ff2afea4af556ba0f..0bc44f0ea99e8f70fba0c19ea6015d1a7693821a 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 0f716f6771103a7159ead341aa4a6dabca62d131..12e6cd655d6630345cd24c74b5e85bec38524c1a 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 f893de7abf32d169f1dad5e6f76e9120e098adf0..c0eaee6542fc0d716f1fd9ecaf7e30a7c96ecd36 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 932921c1f4c4d0a3c6da9d9c1f5bdd3c6b27e4f6..0fa4283476b0da9b026b8b26a2226ae30a9abd2f 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 52ebb2bd738cd7db3aa78f79d49cb2d316412c71..09695ac754f9dc55f8ee0daba9bfcca8392fc271 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 16f932283add3f1146ce65704ecc878cea3b4326..db8ba04fac576ab615aac9373121d83861dee78e 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 8c2e2cbdb0908b4c15467dd79bdcde69912dc518..3d99cf1eaef689386c6bcae4b7e3f237d53bf43b 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 b264649fcbc26d7774496d1d9c308841c69c769f..facc2c6f4423ed902fc2c478068417b0a08bd823 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 cfff7ba61d15e8d44ada9eb3eca7f67ee164ef3c..84bd94e7b81d8181891806df29bd9da0b15bcbf7 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 2bea3152a101d8966cf5e379aca049a12a19fcf8..866037c9b543df97f7e01e4f7873850ba597d030 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 e520f7eb71e57e57e965f0990cb830dd91d8882c..efc1b3f060822cd3e5ad5867a9ca5f7213549e79 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 ab5511b57f13960dfc1c51b3c84a09061b4ef311..7319c16f9af646704bac40dc2cd8c5c55f3a3370 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 d3ed4fa89b3dbd94b4500b3ce0ac8ee752d1c66b..e22f73aa6f9eccb8ab6bf9049d8789d3cc2625b4 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 eec3240070b2618d28e56397b80f0092d8fc18ee..f4d0d917d1fd1c764891dba2d26ee146436ac8ca 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 dab5feda5cde518534221efae5e22db51e48a06d..d715ec7810c6c22b0dccb5e6931b86003528ab51 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 d1081185c44b2b97be0a0f5908e745d41d53aedd..6f5f45269ee328cb33a9befa0fc52ddb25113cba 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 5bc0f86b4be7eee3b03ea5cd4485212532fc269b..882235d2cd3497a1488ddea08af1dfc2b4eeef73 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 89627d8b332a8bd25af68194837c833038929982..efd6859ab607a0d18cee7f09a94ec6695fff7465 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 0864dcc5852d7a494a4b5191404fa97b9f05a874..6edd65003e04bc8d56e0be5e68711dd886b526ad 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 17215ec5899175e4bdc4b80eb8ffa60669a3a017..c053f660ebf6046d6fe8cd635fd31273984e34bf 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 a63f7868c5e66a14363d219e95492a75abd92cc1..e1841a4f7a7a81fca74e18c20ed019fc9d43c676 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 28a92271dcc3999717e26215e72ba770a3091704..c4f28779dfebe548a57e8f3faec4aed843d6cadb 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 dc8fa61930b7c208b57d975db126c9d948a489e9..aff8f9e2ca5b92c1e44770b40b7a5a19a0ea6422 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 66b1b52471f4988c127bad02761a8095aa3c3acf..82f72c25740006fd9c52c1278f91fcf0d9c6086f 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 adf1860a4623543bfd8c82fc9212a6923b52ce69..9844c2dfa9bc224f2bd434f3d3ddd865b3b6dcb6 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 b892da1f65587da7a7e3e2da5971c7899b8a9b10..25edfa85b45b03ac727df4e3f8f93a037a5c6801 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 b20734da69abc6d778f525e70f27b74ff67f07b2..a4b878966dcc70ba0ccbf3647d56a39cef02a864 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 4eb6082ec31dbb9cb2e89062a4c61e494d4cf730..9241513f0b889c339ba6a585de33cab096b693f5 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 e1cb50de2e6939512f9c66f78db7c6f4b6848a63..277b6ab3233e8b3e88fb7993d99bb82c7421f123 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 da4e4e8d5d9ae8418bc3bcf40e5eec484f180ba4..2589f34bfed739f99fc1de93de97fa972642b1ad 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 11aa959cc43409b1864308390c5649d6eca09fa3..201dc9057aedaec8a59a4c8250f8e01323d8c92e 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 e933aebd65d8ee4db2c49f88011364503b3daf82..18b8701685e8976ef7486cb0ea6b909ca633ec5a 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 6df91021589db7af5da565c130e3831eb8200485..cbbc05e8e724f33043cda7bc96d8043df6c3a746 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 1a6af792525541b654e1e083205bbd2a3c7671c5..a78697bdc3bb478b1bcd8ad3a3611c84636e2f2b 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 ec670d8857b29fcf63d980dfce4ab6ab250ec296..c647b7f998d3f213dd67811a1c6d652551ed44c7 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 330d649a2b80b345caa4cc19291beb805cc86dc3..af943c376e62f66d418922557976bd07618fe9ba 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 5bf3c91df8d03b10102250631bb7a07788005a7b..c7e79d4d4081e3835af601882224c086a2cb81cb 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 1af9828796b24f0d81dc7efbc2e951b8dde4d97b..ad1519f111c25fd5d0e8880f013d13b14c845666 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 614d760d9366efa9e7e1f1aa1917b39a87e1e3b8..58021fa506aff274c13ee75aa396ebc7ede035f4 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 17926656455aedd9fb96feff0282a7909491dda3..e98a7e367e27e5784405fa413ce551a42416199b 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 bac3ede119a47cea7d6b6a5cd828e399bb9ea80d..f5c80635c285b6c93d19902bbe9fea8a3e93145b 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 97e51f9f8006577a692ed19dcbcbbbbd44cfc527..78af93d559f9082d1d10cdd6deabbe2d9f13c51f 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 b929050598d10d851b4bca1299e8cd75514a41cc..6186d18da70caa5acaa255752415d8136edcdc98 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 f02c3d8f2a06d7a3865f07a634f390df4a0dd06e..7324bca0143992dd41626bcda2db2d995f0b4bbc 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 ded4af2949abe67ae5f69d93c85b7a998a636a1f..fdda80ed4cf12020301641cdc51fe1b8fb381f2a 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 572c80b8a5bba4bcc4fd1c2b50caacc5486dfc30..27b3b52f2c61d5937911a1e9e6eab7c2fd940c6e 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 7ec4355a7c2fb20fbc7ec2034ff26eb2bf7e977d..39e0ab9f52f52af04faa2e0afd8e63a7fabc114d 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 f3fa11be49956922f4d2671b02abdcfdf956dd28..701e24b1c4652a4723124726047b012d6ce6bf08 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 2c7e254c3bc390fd600810ebdba6feea99605793..0e651e5aa5fbfe9c4d636f6fa81d8d5c99ef1295 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 69ccdb279a55ed5f6ef24fe152436652e26f6ac6..fdc1dd8e22ba4d7780de2fa6aaf8be3d130e2d28 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 f197c86fc2048e472aaff4359b5419a0bd02b662..09cd83706784bcf9b7355ae6ec1e7b6383bc2b2f 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 e1cb50de2e6939512f9c66f78db7c6f4b6848a63..277b6ab3233e8b3e88fb7993d99bb82c7421f123 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 913d3cdcd5bbfb3f4867b354f9dcb7160a00fa69..b112af5cf0afc02fc7c8f00999205ed0a8d8b603 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 13e4b92c9ce2e0a3698d31fcfc2b82704653f7a0..cd0eb4109f7768afd725ee12fc5213b3d4c31adb 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 042d82172576c5653ed257e778eb73fa1ddfefda..b5de3223bd4944e9ba35075c3c6a0052731a12d2 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 fa3414dbf69b76ad783452962cfdf01ebeccaa45..1516cd03433cbf1c3e2b76d10422bb153e59a525 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 10c3066a00c52783abb48fe2b3912469d10af7df..f8ecf1d144e18cc7f7317764a83f14ff3d91c7b6 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 3a9a37836fbc08d7d833c18d8ea4e3c619ef78bd..9f5a14edd2302a73970ce6bd1814b416e3acee64 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 24c7bf76783bcd1feb65542cfe4dfbe498c55d2e..f6477644a1fa7ae1fdf8faca95e3d77ac741bbcd 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 47029fed03d23a091a24abf56d2e3db16ef3300e..bea2ebd1f7f42bf34ebfef1872521596eb3612cb 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 9ac8f39355f806ba6008dc6ec3c4f016bfa91f32..1ba7da16dcce1e34a07fb6c51716de4b5a14e18f 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 a3a580c3019d5c0b7a165467f80514a37d616b14..7aff1a2ee202e1631764eed75c9930f4f688c79f 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 b7780a6b66fd593693bcf0766a7ec8ccbd253d16..4e66eebbedba0c4d289c23ce304a0f0681d0332a 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 fd02156f297e08ae0d230caa8234fd4bf0630e2f..39dcc0fe6a0f28fe1a9d4cb606fdc483d304c1e6 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 dad39390fa41011ba2a7c594880539f59285fb64..f3f9db58d95f3300bde95445e55c86a26463e7d8 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 2627db2a7ba2bab53ed0c058ea168e504dd1ae87..6ffb1c806c7598fc435b9d8eb03af2dc045bf8da 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 2e267bae6e4ef16a5425aa86c19299be130d87a9..93404176e879c40c38c9e88a5011efc86d5c309f 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 9a6eb8f091a1153aaa86d232820198a588ad21e4..f6477644a1fa7ae1fdf8faca95e3d77ac741bbcd 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 97121565bb08b2eac9ba51c91368e7171370c923..b209cd8d16e340a330069c891053a431d7a9e01c 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 0dae23bfdfb9f23783853aa18d135ce1c2d3c8d4..c7e79d4d4081e3835af601882224c086a2cb81cb 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 c5fbb2a031abeb3df97b36bc1773aa5401c3b50c..20b9d641a236a62a4b66d5d77e7d029119234342 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 66371d50c5ea2ca2a399dfd99b915a3ad00690e0..ac256e463e94700837fb844a86f8d8227d7f7ec5 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 7e057afe565c3d19c3ee0891e2017498f713cc1e..d1a025c84779feef16cc7ee0ec25eb781d78b79d 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 02704bd1a572b44dd712c5ca4d520012af57078d..152fd668c088b9415d09f5a9b3c9ce6c5f328cde 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 38541c3d4b7fc0332a0c4065cc02d7981e94bacb..9e28e0fa91e4be1675ce5a1b8849b0a0511e3b81 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 e93440482cee9a3da9c5c7939c097ea0cdbbae0a..72e87ecaeb472ab3d1115e9c91d4cf6fe730e187 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 407fa96832339fa5ee40387f2a29b3c597a68c7c..975d80989934c1c2602fbd9d8391c1ffa107bf6d 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 f8058fa94b7f764c9301385da9adc7ba904d6e01..f053591bf2d39a54cd060ddea4b9e23bcd625743 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 6de3e256ba63c72c88e3ad9929da735574d84ee1..4922ea1ec12a8606851317be0927fa7c83132889 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 ed929ee0c05fad11d4c17c4464a1d6ccf6417816..bff23a0f55dd0e9422f0f878ae060d19931ba566 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 2521942af43303262216bd55ad5d50dc63be4455..774686d23be01dd8762ca506a705d80a9c4f0c89 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 922aff295cf08e00e26df2160b3a9c19735ec429..0bd4bd51023d19650f973182e838c2fa2bd344dc 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 e721f977f330133e93b7c0da642d72200a2c881d..a3405497f0355a05228367dadf1fce3aa2c94762 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 83ed4f4ae0dc8318c035cf80357af8cbbc8042f3..ce7b207978a58865bb784974915958085172e860 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 fdd0a2920e09704739a496a5fbc5e57a8588fb6a..edc14adcd23a5c7b228ee4aa36375b01c3c6c6a9 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 9efecb045f87097dd3314e0e145d9c680875a3ce..1e63819761260a20ccdd41035bfdaf7d380b07bc 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 2ea37440ecd65e4ff739a0ee0532bce17e7e2d1c..2c479d9453b4a6e65bc3909c793c221241071707 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 8fc0005e69ad2b562d74444b7a9d72f821526983..97f4801c921a12e90799b807ef3b3c68ad2d217d 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 45626e3be11968145973d99bcdfd61f1c3ffdaee..56fb7f1de87ca58fe7c53c19a62ce8b2688a0d38 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 d386c8dce4a664bea3d494e587a97e3f008bfafa..ad9a58fe0d32d32ef1e38738ea8a8f20dddedc70 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 a88d7975fe9017e4e5f2289a94bd1ed66a5f59dc..e327d952fa47a490b79b8b9c6d32854de82a0961 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 4e144cf0b1f786a9248a2998311e8109998d8a2d..e327d952fa47a490b79b8b9c6d32854de82a0961 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 def071ed5afd264a036f6d9e75856366fd6ad153..db99fd9ad478bf432bb8491ed7e0e38dcb856030 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 7824973cc60fc1841b16f2cb39323cefcdc3f942..89051c2f34f0c4f05b109ea3c9f35c161cdd316a 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 a99bbcf26e75c58a1e9efc32a046aa42f2c313fd..50b6324c33436579c6ec9c93090f3cab7563a7de 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 6c090d198e581a9c4465d353a476a11f2d1cf071..81feace1c30d52dc6265f7f154198c18e508fc06 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 f3aedc87cba9192fcc29f9ad17c80a1c507ff123..196f4f53c7d72db03ca8a5d6fd5283ade15c5a27 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 c3f62f5a773c07d69b91f7ce41efe0d383174313..774b3e4bd543345c1dfc5d96da423ee3ce9fd80f 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 596f078ca8b4719904940616d48c45b2cdcc556c..9ce49b9347657d23ab033c4c472de2d2309805df 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 b12bc0d000ccf86ca62574d00783a7a26d3869f7..e4f42ac6d53cd80c35834083be5c9670179b433f 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 1a11028563444ca6296b6e42bce7d8c30d2c4c76..774b3e4bd543345c1dfc5d96da423ee3ce9fd80f 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 c3d6619e237b5de20dee18b04d3cc415697610d1..e4f42ac6d53cd80c35834083be5c9670179b433f 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 160a4b6fb56f4a8bc9d9273fb7206334ef90a4ac..b391da08db5082dc5e51670352a471efa9909e4e 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 4d8f59be1c226e76c2ddc5a89f5bde2f7de5da8e..c24d4a9dac21aa0a6e03b96185f94db180c2c128 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 5401cf9b03d42d649ccd8a2c58f17777eb3d33f6..94b6dabf265571f7f830cc164413b84506526b67 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 e18aa77d893ad4cacf6fc074a562e430ddf6c707..2641cfa6a9db081c7da35d071d72f572bec6c28a 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 20a7219535e8b243ead09bd9f13be1cdc3bd51b3..5942e6c72af8bf19fd85fcf34071f869638ba036 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 ffddcfdfa33ebc38fad2e5bf5fdd0819386d5daf..d3e0d1853d3dc093473453f0d2740cf5e2cd780e 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 a92e15585063a3780a5f0a2396e5328ccbb59656..9016db48b027bb23d07b6217818abe89b3d982d1 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 275b0eeb63e65fde30ea41e55ca938d848b9779d..40618af47ce82a4f3d69cb0ba878bd93277d930d 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 98ed423aa9e4c3ee1b9312783ed0a6a6f07feb69..367a55921e44767f726c115921a09a0df0be3cac 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 e9c0557e7623c9753c3ffd432d49873e83e44638..f9f3f1d853e2304ac4d24bbafcbe321283cd4b52 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 0f2a4332cfc64f6c86bdd0125c962606afff16f4..f667e3573d092f8114a72edaefe3dfd2bbb552c5 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 cbced22fb2827d77843589c8a4fd87df5d7fa8f9..24cd66d3457f02334c3fc08071f9204c86d68d99 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 fc80eb2aebd3e26d7eeb251877da0937b83fc79a..81a14c1e4823bc40fd0c6f9fb94f197a7bac83d1 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 c839a8acec58e3cb26c1e5f5c2f39f2f376f8202..3e26b4d06ed2c4c88c75c00ab6b5f1f2a7683e53 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 4935499d917ff4221ad89c6bc2c42d09acc2d361..4271aafb6ceaa0e364ba20610e20bfe1aeaf5699 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 0864dcc5852d7a494a4b5191404fa97b9f05a874..6edd65003e04bc8d56e0be5e68711dd886b526ad 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 29ded7a552a1525621708dc3a6bfa67625057a18..c899abb9c34126073b53dcffc66c663623e6adac 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 bb1dd5683faaa5934c48e782c671e4a0a429167f..eb9c329a6a5c47645b797f6c2a8c1c4518daf8a9 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 46c239d371f929dd7fe49b59c221429488fcf7c4..b8ffd399418446fa1b5eeef8b32c2e18ef2d653e 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 e5ca3f72414c07b8f41aff8a5bffb167549204da..920e00663410450cd10ad550e03d6ffcaae1a1fb 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 dc2434541cfe96f472cb8c081f2859ed2b237e66..d42f804b026fdd4d6a1402c4be09b78232d06fe3 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 c8fe6d0aff21a688e3d3365e3a2505c120730265..e1efd44376ec00184b1e15eedf21ad5a9ed46480 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 f3eebc59274a242caa5731a7f56cdd1a5f2c477b..afefaa94d47dbe2e173bbcb9d464e02dd2bfc771 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 0f6d64e936ac6237a3c58635c774771bb0513bdc..5706ca39da47d5872a86859df95ec3ac5e445c5d 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 e03026f87fb30d52f39b24b6c48381ccdbd30c32..315abdf179d730998a31ef3be62955f892771663 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 4e0396f7b094ea1ae418e438b8f6c19ba5be0085..76c1e9f1e6a37537d3f3ad016ea6411213012116 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 81514897fe6926517de01496a69505b30416085e..dfa237a5302a2672f136fe28569a95c8a7b9e2ca 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 ff2d53c727f563bfc35172cbf269c08aa7d13ca7..75beae21b0996001b880852b645afed78dd2c629 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 fd3a3ceed9d655b8dd4488046dfa0bc8f96062a2..1d134ab3e4e52167abaa33369164ffb8fd3bf060 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 453fdf12a4022e60bce2d04edfce96f8af2f4ce0..5caf8ead52d3673720fa0f03631ef47ea04bf86e 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 123d94357cefe11c72395242c75f30ec170a08de..554cdc3d76c3543d9c08f56aa3dd64d06bbddbf1 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 123d94357cefe11c72395242c75f30ec170a08de..554cdc3d76c3543d9c08f56aa3dd64d06bbddbf1 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 06559cea65f08771c06f382e186fea00a21ad263..95fdc377ee90c3b9d7c8fade2197c941571f3142 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 06559cea65f08771c06f382e186fea00a21ad263..95fdc377ee90c3b9d7c8fade2197c941571f3142 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 392ddf81f7755b4946609a5adff978c98bf71c29..70ea061dc5e90f4901b94529ef13ffbbc21e640b 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 cf0f50437a6b1b8a5b23e3c08ebe0e1e1abc94fb..36d25a408c544e5edc09ee7abaeca830896bb2fc 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 fd5e5801aea18dc5a327f7a7279d5a985a9bd07a..871ac1c1f290dd7098702eba8b5bf707b71b49e8 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 ad65c580ee752ee27e51e62a8417aa94995adef8..f592543dd8e6ccb897469409ca2b09f3ab0c83b0 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 3bfa627d758e3ab89cc7a9bdc1f1e952210f5b0e..1cb7af0ad8a4db9aa8a5b07dcbef05ccd55862f9 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 29e0619e77f6ca017b8606d3ce1e19541ebbb563..81635fd2a592fd01ffb6ec4c105db5669c69c84f 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 941207d85da1e8d98353bc95eed1e85c6ee1fc48..d2fbe3a7a13070fc14abb0bcc176be76c7ad52c6 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 6bc08feb21191b7a7d784af4a13d97fa30424502..9abf1dc14593877efd8f0f5aa48da97ba6ff7ccc 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 abf662a530b75654dfc0dd0e5d2b04ede1ebbf60..ad6484fcbe967f20cd97fa0c61c66217a2ed26bd 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 5140e17b2849398c72feb86d9463db7d543d8d1c..05e49219bf4d50db567c98ed70e99aef626ead91 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 5ffcea5554d08549082d63eb8a82c35f0804475e..7409bacab3e5f90d327195aaa71c8af0365a8442 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 8bcabe5a4f5fc12119fdb3ddfb693ddbb73e3720..fc1f52c65d475e9830d7b7ec04eaf0b1e4fa185f 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 05b95df748ca19fe383db4f6d0346a89d9232132..48911bf6f135f68a685db498941fec871b765c80 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 9e309245c43dc80bf69bdc7229f1cac06b609892..c8c7f55c85d724f041f25b22dfa3a1cf10b75bb0 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 b09d2bb5a5a42e58965499bef80412163ef794c5..563cebdc3e7ef64358f53c14f2261325a4f32930 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 513f0eb0fd8ad8e70798fdd2a0049976bde8b887..d29a1bb0d61ce03c691530e0951fb0c53f5c2c28 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 ad8da842c7c6ccf1ad827c4d0252f6248aeabedd..fb11e4f2dafee8fbed7953ec16d79194e03bf71b 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 6d2ac8ce0a959c39a7605dc8aee021bca6da61a7..9666d52336a02a7195689e37049a860ce62f177a 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 00071c4ec427d4c3e0e0580f6cb40add4b4ea197..f152d6d083f52d1accc5d5601dfaaba04973a98b 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 11bfc4d9f6980afa9e0a0f19edb2d96e860dcd47..1a26e37a99b9193110f483686560ab2204b88cf1 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 117cdc60a46167d7c617dd461a0ea5758b6d2889..03bca88e2aed4c012b3ea61efa6c02e1f1f1b0ce 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 15a3386318b089832d473fa23ea6869d1991114c..36d6f9d00d2429bb5b740c0090bd399afe0d736e 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 dc62a41efac36c0c41461fd9571d76a1d3dd58c8..419c8ce6bf01eb9832c41ead7617e392a8e1c411 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 086a46a861334e66c8f772664e024689f6dfaf13..f4409cbaae5fee0a8f19e09ef364012a141d99d8 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 7df7fd0ab023786383458c534545d8c3d8b67e88..fd09bb40da08a595178fda83659323d52b22f5f5 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 12accbf3ccbdebaab730f77ca617e6d10d68cc95..ca483b7b295544c940cbbd0229e026c9baed4a9f 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 d7324957df6cfe1f8c8d3782485b08e8ed60b475..1e41b87c6ea412ce423197a3ffd9696e3f4a3259 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 1d012589854ef1f53adb1d2d25861e241ec7de59..3df9a20bcd55a3d1d8c2561559b8c824fe8f79bc 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 90819e98bc8ab8a8738880f15b6984c9eacfe56c..95fc98689714c7f29164b783af8b3234fd7173bd 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 0180a4b5d192e9f5d58547f30ad3fd6cacdedff2..af8c5f9e49c861344919f452c7980bec37e49313 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 cf1f469dbe4789ba10088d5cd5fafe78764115e2..fc9152e2b0d5a2c7567487f8f0b32a002560f351 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 5aab5a25799ad81ef8a517cfde8ee8260d26b8f5..ab0be94ee9c87bdb148b35df3140ddb2a1327b87 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 24eb92fd4cd03e69937e183ff41d8c5be3ac0be6..3e4881769293f35f9332d906a938118b582c9c80 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 df83d4bd68734a0f9d6e3dc9dccb0fc4e1aaee13..84d883d8d6957975c9dabde7354d1402524d21c2 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 cdd8d9b2c262b1b30ae24e15c85c2dd0380d022e..881e65fcb7be0939f5c5735fbb62159e494185af 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 ddde2c5f5aa32e1a527adf0484d833c7ccca3b21..0480bfdc73831ae92434dddc5386e12aedf935fe 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 8f61b220c59806df61fc5f90d408c0fa9d8a80fd..10e03744ace66f1b6d96e02432d61dc226583d36 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 f27609ae8eeaafb5510f7a95bbb55187b27d7053..f0ea7d10c5ccc35c695a6ae244f7dd42c408c125 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 a29e064933a3a894a45467c29fdca647c044d88c..3d36eb0523fede780c59d311c1d36eb0941f287f 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 d3bd2bbc824a1edab176d8f722dbf5d2c51c375f..5e6471408d875064b8a38104922f6b70e67287f7 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 90829a353c3bc132301a84376b2bd6602a55c322..bbe6c27f041005fec8f47099cdfc7ebb1053af89 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 8315c57d61d0f6b46b16da364db14691ab129938..ddfc1b7bd905e5d43d62734cff1a7d2138687db4 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 bf972d8b1aebc51e070aa55e46a2842de4423701..b5a22eb827b46edf53625bcd7a82a1db04ae3485 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 aacac9fc4237261adb5bb78013b618a4cce24a7c..ec4338e8bca2ad6905cee379100a8b0becfa5c9d 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 aacac9fc4237261adb5bb78013b618a4cce24a7c..ec4338e8bca2ad6905cee379100a8b0becfa5c9d 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 221cd3c76b946a67e537cc35b117aa3dfa4f6a83..8ad73597be74e4690e6a5b354ceb560c5542ab0b 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 2d31ec2202ee78fa38f0e1cba6e6e0c14b6bb1ca..05562bef842a0baafa8813f528fe2c5012d6fd94 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 6abca6e2acb29ca9021c488554bc0df43824c568..f8c84994d473348e27391c7095c451fdfac9e0fb 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 f6e6716420812b2bb07e839e53c7bdf573f7146f..ae205e9d77050e9de7990790a6328bb58b008ad7 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 0c7ca54fa1f34ce50512e8f2131d79c8c1fe270c..bc4bdb360faaf5046d321966748582f0d44e9551 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 6abca6e2acb29ca9021c488554bc0df43824c568..f8c84994d473348e27391c7095c451fdfac9e0fb 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 98bc98d2f1fdd36431933d1c04d9a7aa45914437..73c66e9b2b33cb54953d608d06896218ebe6dc44 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 1f6581389d1a3767c0467181c43c15e053230773..8680cce82bff07a3c3aa496e6280d871bcc50e27 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 4baa3a3be8e1741ae21a1c4dc149351c1fb07bbd..917715107bde9b14abbe77024e805b1a03d40153 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 1687cd1b5367ad08588201f46510f525ab7a9398..1db8369b3d571114205b1df33c74356590be04e2 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 908a6df9348330b2e9aaebcda75d5c6a08b86fef..04a24af2e22a3ef25a986218506e1cbf0147db71 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 216e51ca8f077b7b6e1fd0186c0c0f2166433394..8053007e9ddc69c0e5adb53ad1cc5fe511ab7a43 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 216e51ca8f077b7b6e1fd0186c0c0f2166433394..8053007e9ddc69c0e5adb53ad1cc5fe511ab7a43 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 7d1374e1fc98e3e00458393b6dda4d10be8a0143..160821354cc45e249353e69ab85ed7ca7423c8ef 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 7917abd9c07b32b08b20cc4ff2afea4af556ba0f..0bc44f0ea99e8f70fba0c19ea6015d1a7693821a 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 0f716f6771103a7159ead341aa4a6dabca62d131..12e6cd655d6630345cd24c74b5e85bec38524c1a 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 f893de7abf32d169f1dad5e6f76e9120e098adf0..c0eaee6542fc0d716f1fd9ecaf7e30a7c96ecd36 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 932921c1f4c4d0a3c6da9d9c1f5bdd3c6b27e4f6..0fa4283476b0da9b026b8b26a2226ae30a9abd2f 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 52ebb2bd738cd7db3aa78f79d49cb2d316412c71..09695ac754f9dc55f8ee0daba9bfcca8392fc271 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 16f932283add3f1146ce65704ecc878cea3b4326..db8ba04fac576ab615aac9373121d83861dee78e 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 8c2e2cbdb0908b4c15467dd79bdcde69912dc518..3d99cf1eaef689386c6bcae4b7e3f237d53bf43b 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 b264649fcbc26d7774496d1d9c308841c69c769f..facc2c6f4423ed902fc2c478068417b0a08bd823 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 cfff7ba61d15e8d44ada9eb3eca7f67ee164ef3c..84bd94e7b81d8181891806df29bd9da0b15bcbf7 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 2bea3152a101d8966cf5e379aca049a12a19fcf8..866037c9b543df97f7e01e4f7873850ba597d030 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 225df251041750de28c64d9add1183f1e92d7371..9c6300eae328e5ceb9ef00e02da20ceea075711e 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 e520f7eb71e57e57e965f0990cb830dd91d8882c..efc1b3f060822cd3e5ad5867a9ca5f7213549e79 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 73fef8ae4c8b03689e4161d61dea297fedce077e..0bf9138d463f9d2254ebd19794bf3e6e944f88dc 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 ab5511b57f13960dfc1c51b3c84a09061b4ef311..7319c16f9af646704bac40dc2cd8c5c55f3a3370 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 d3ed4fa89b3dbd94b4500b3ce0ac8ee752d1c66b..e22f73aa6f9eccb8ab6bf9049d8789d3cc2625b4 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 27b653d93ba448745bf4a7fa9597899efaee5698..42c519aa63d0a6d309d303d8feeb75096cd04ec0 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 eec3240070b2618d28e56397b80f0092d8fc18ee..f4d0d917d1fd1c764891dba2d26ee146436ac8ca 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 dab5feda5cde518534221efae5e22db51e48a06d..d715ec7810c6c22b0dccb5e6931b86003528ab51 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 d1081185c44b2b97be0a0f5908e745d41d53aedd..6f5f45269ee328cb33a9befa0fc52ddb25113cba 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 5bc0f86b4be7eee3b03ea5cd4485212532fc269b..882235d2cd3497a1488ddea08af1dfc2b4eeef73 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 89627d8b332a8bd25af68194837c833038929982..efd6859ab607a0d18cee7f09a94ec6695fff7465 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 0864dcc5852d7a494a4b5191404fa97b9f05a874..6edd65003e04bc8d56e0be5e68711dd886b526ad 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 17215ec5899175e4bdc4b80eb8ffa60669a3a017..c053f660ebf6046d6fe8cd635fd31273984e34bf 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 e4fe4ffe1a6d1452ea8a10fe17c46995b155faf5..29b694864e51fba5c88d1ff3054fbca09847ca35 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 dc8fa61930b7c208b57d975db126c9d948a489e9..aff8f9e2ca5b92c1e44770b40b7a5a19a0ea6422 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 3b9c74f76ca1cdb836efbe9338ac0499d3ff7443..bc85bd73f834f86a661c20546d357a9680fdd343 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 f8e424b354dc1ffba3eb739defe059a1ff095843..3b964b907dc14944170ff842716d1377cb8f86c5 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 b892da1f65587da7a7e3e2da5971c7899b8a9b10..25edfa85b45b03ac727df4e3f8f93a037a5c6801 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 b20734da69abc6d778f525e70f27b74ff67f07b2..a4b878966dcc70ba0ccbf3647d56a39cef02a864 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 4eb6082ec31dbb9cb2e89062a4c61e494d4cf730..9241513f0b889c339ba6a585de33cab096b693f5 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 e1cb50de2e6939512f9c66f78db7c6f4b6848a63..277b6ab3233e8b3e88fb7993d99bb82c7421f123 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 da4e4e8d5d9ae8418bc3bcf40e5eec484f180ba4..2589f34bfed739f99fc1de93de97fa972642b1ad 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 11aa959cc43409b1864308390c5649d6eca09fa3..201dc9057aedaec8a59a4c8250f8e01323d8c92e 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 e933aebd65d8ee4db2c49f88011364503b3daf82..18b8701685e8976ef7486cb0ea6b909ca633ec5a 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 6df91021589db7af5da565c130e3831eb8200485..cbbc05e8e724f33043cda7bc96d8043df6c3a746 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 1a6af792525541b654e1e083205bbd2a3c7671c5..a78697bdc3bb478b1bcd8ad3a3611c84636e2f2b 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 ec670d8857b29fcf63d980dfce4ab6ab250ec296..c647b7f998d3f213dd67811a1c6d652551ed44c7 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 330d649a2b80b345caa4cc19291beb805cc86dc3..af943c376e62f66d418922557976bd07618fe9ba 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 5bf3c91df8d03b10102250631bb7a07788005a7b..c7e79d4d4081e3835af601882224c086a2cb81cb 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 1af9828796b24f0d81dc7efbc2e951b8dde4d97b..ad1519f111c25fd5d0e8880f013d13b14c845666 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 614d760d9366efa9e7e1f1aa1917b39a87e1e3b8..58021fa506aff274c13ee75aa396ebc7ede035f4 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 17926656455aedd9fb96feff0282a7909491dda3..e98a7e367e27e5784405fa413ce551a42416199b 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 2c7e254c3bc390fd600810ebdba6feea99605793..0e651e5aa5fbfe9c4d636f6fa81d8d5c99ef1295 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 97e51f9f8006577a692ed19dcbcbbbbd44cfc527..78af93d559f9082d1d10cdd6deabbe2d9f13c51f 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 b929050598d10d851b4bca1299e8cd75514a41cc..6186d18da70caa5acaa255752415d8136edcdc98 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 f02c3d8f2a06d7a3865f07a634f390df4a0dd06e..7324bca0143992dd41626bcda2db2d995f0b4bbc 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 b3c2aee69e18bd23ecc03134c984bc5b1b686f4c..5a92241f7e7999830a1a66566e0dd7fc12aae620 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 572c80b8a5bba4bcc4fd1c2b50caacc5486dfc30..27b3b52f2c61d5937911a1e9e6eab7c2fd940c6e 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 2c7e254c3bc390fd600810ebdba6feea99605793..0e651e5aa5fbfe9c4d636f6fa81d8d5c99ef1295 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 330d39ef019a92ddcd40e04df6bfef05bb05aa6e..caadc78e7d9aea1aa8af6d5b17e01597df6a5925 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 f3fa11be49956922f4d2671b02abdcfdf956dd28..701e24b1c4652a4723124726047b012d6ce6bf08 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 2c7e254c3bc390fd600810ebdba6feea99605793..0e651e5aa5fbfe9c4d636f6fa81d8d5c99ef1295 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 69ccdb279a55ed5f6ef24fe152436652e26f6ac6..fdc1dd8e22ba4d7780de2fa6aaf8be3d130e2d28 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 a1bb5f1203c2c5ac73f652c70aeb97e147a8d5ac..9b015af6f6dcaabdb1ef95767d2239aca1afa688 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 e1cb50de2e6939512f9c66f78db7c6f4b6848a63..277b6ab3233e8b3e88fb7993d99bb82c7421f123 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 913d3cdcd5bbfb3f4867b354f9dcb7160a00fa69..b112af5cf0afc02fc7c8f00999205ed0a8d8b603 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 ae1d7deadb7544e7053269f68314591a55449ca3..7324bca0143992dd41626bcda2db2d995f0b4bbc 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 2c7e254c3bc390fd600810ebdba6feea99605793..0e651e5aa5fbfe9c4d636f6fa81d8d5c99ef1295 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 1396dcc9211984d6991456cf37fb3ad851269c9a..1f49c887555ea89080e4ddefa28809665e05f695 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 13e4b92c9ce2e0a3698d31fcfc2b82704653f7a0..cd0eb4109f7768afd725ee12fc5213b3d4c31adb 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 042d82172576c5653ed257e778eb73fa1ddfefda..b5de3223bd4944e9ba35075c3c6a0052731a12d2 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 fa3414dbf69b76ad783452962cfdf01ebeccaa45..1516cd03433cbf1c3e2b76d10422bb153e59a525 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 10c3066a00c52783abb48fe2b3912469d10af7df..f8ecf1d144e18cc7f7317764a83f14ff3d91c7b6 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 3a9a37836fbc08d7d833c18d8ea4e3c619ef78bd..9f5a14edd2302a73970ce6bd1814b416e3acee64 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 24c7bf76783bcd1feb65542cfe4dfbe498c55d2e..f6477644a1fa7ae1fdf8faca95e3d77ac741bbcd 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 ae1d7deadb7544e7053269f68314591a55449ca3..7324bca0143992dd41626bcda2db2d995f0b4bbc 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 9ac8f39355f806ba6008dc6ec3c4f016bfa91f32..1ba7da16dcce1e34a07fb6c51716de4b5a14e18f 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 a3a580c3019d5c0b7a165467f80514a37d616b14..7aff1a2ee202e1631764eed75c9930f4f688c79f 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 b7780a6b66fd593693bcf0766a7ec8ccbd253d16..4e66eebbedba0c4d289c23ce304a0f0681d0332a 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 fd02156f297e08ae0d230caa8234fd4bf0630e2f..39dcc0fe6a0f28fe1a9d4cb606fdc483d304c1e6 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 dad39390fa41011ba2a7c594880539f59285fb64..f3f9db58d95f3300bde95445e55c86a26463e7d8 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 2627db2a7ba2bab53ed0c058ea168e504dd1ae87..6ffb1c806c7598fc435b9d8eb03af2dc045bf8da 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 2e267bae6e4ef16a5425aa86c19299be130d87a9..93404176e879c40c38c9e88a5011efc86d5c309f 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 725b0bcd2c0bbf99651da6e2d3e8a3e72f54cb6c..7e9902687408d7b864fd23a1502500ff56a65b88 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 97121565bb08b2eac9ba51c91368e7171370c923..b209cd8d16e340a330069c891053a431d7a9e01c 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 a9bd77da6b7ff88a4789b9936d82531042ae67e8..5b7ea7e966e369709019c0f5202267b8e8457808 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 c4c06ab6f7873dec83526d5025db38e01d014efd..94c594e99af527f6ee8ecdd1f78f2b6040df0038 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 c5fbb2a031abeb3df97b36bc1773aa5401c3b50c..20b9d641a236a62a4b66d5d77e7d029119234342 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 3c3862e0cbf2819aa7303c4afde490a5afb8a65b..cc71bb4fde2123533b8e7846d2269209c7cb5e56 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 9e0823802429e4c0de67283e2e20e4ece909966c..c695a26415d520dccda24cd0a2c94b620c83f462 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 02704bd1a572b44dd712c5ca4d520012af57078d..152fd668c088b9415d09f5a9b3c9ce6c5f328cde 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 38541c3d4b7fc0332a0c4065cc02d7981e94bacb..9e28e0fa91e4be1675ce5a1b8849b0a0511e3b81 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 e93440482cee9a3da9c5c7939c097ea0cdbbae0a..72e87ecaeb472ab3d1115e9c91d4cf6fe730e187 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 407fa96832339fa5ee40387f2a29b3c597a68c7c..975d80989934c1c2602fbd9d8391c1ffa107bf6d 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 f8058fa94b7f764c9301385da9adc7ba904d6e01..f053591bf2d39a54cd060ddea4b9e23bcd625743 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 6de3e256ba63c72c88e3ad9929da735574d84ee1..4922ea1ec12a8606851317be0927fa7c83132889 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 ed929ee0c05fad11d4c17c4464a1d6ccf6417816..bff23a0f55dd0e9422f0f878ae060d19931ba566 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 2521942af43303262216bd55ad5d50dc63be4455..774686d23be01dd8762ca506a705d80a9c4f0c89 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 922aff295cf08e00e26df2160b3a9c19735ec429..0bd4bd51023d19650f973182e838c2fa2bd344dc 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 e721f977f330133e93b7c0da642d72200a2c881d..a3405497f0355a05228367dadf1fce3aa2c94762 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 83ed4f4ae0dc8318c035cf80357af8cbbc8042f3..ce7b207978a58865bb784974915958085172e860 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 fdd0a2920e09704739a496a5fbc5e57a8588fb6a..edc14adcd23a5c7b228ee4aa36375b01c3c6c6a9 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 9efecb045f87097dd3314e0e145d9c680875a3ce..1e63819761260a20ccdd41035bfdaf7d380b07bc 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 2ea37440ecd65e4ff739a0ee0532bce17e7e2d1c..2c479d9453b4a6e65bc3909c793c221241071707 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 8fc0005e69ad2b562d74444b7a9d72f821526983..97f4801c921a12e90799b807ef3b3c68ad2d217d 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 45626e3be11968145973d99bcdfd61f1c3ffdaee..56fb7f1de87ca58fe7c53c19a62ce8b2688a0d38 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 71c9bf5d7725a6944f721fd508516069194c1b74..0dec91abb3056b1a6c6b53c3f1177a200a13d319 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 a88d7975fe9017e4e5f2289a94bd1ed66a5f59dc..e327d952fa47a490b79b8b9c6d32854de82a0961 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 4e144cf0b1f786a9248a2998311e8109998d8a2d..e327d952fa47a490b79b8b9c6d32854de82a0961 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 def071ed5afd264a036f6d9e75856366fd6ad153..db99fd9ad478bf432bb8491ed7e0e38dcb856030 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 7824973cc60fc1841b16f2cb39323cefcdc3f942..89051c2f34f0c4f05b109ea3c9f35c161cdd316a 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 a99bbcf26e75c58a1e9efc32a046aa42f2c313fd..50b6324c33436579c6ec9c93090f3cab7563a7de 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 6c090d198e581a9c4465d353a476a11f2d1cf071..81feace1c30d52dc6265f7f154198c18e508fc06 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 f3aedc87cba9192fcc29f9ad17c80a1c507ff123..196f4f53c7d72db03ca8a5d6fd5283ade15c5a27 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 c3f62f5a773c07d69b91f7ce41efe0d383174313..774b3e4bd543345c1dfc5d96da423ee3ce9fd80f 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 596f078ca8b4719904940616d48c45b2cdcc556c..9ce49b9347657d23ab033c4c472de2d2309805df 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 b12bc0d000ccf86ca62574d00783a7a26d3869f7..e4f42ac6d53cd80c35834083be5c9670179b433f 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 1a11028563444ca6296b6e42bce7d8c30d2c4c76..774b3e4bd543345c1dfc5d96da423ee3ce9fd80f 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 c3d6619e237b5de20dee18b04d3cc415697610d1..e4f42ac6d53cd80c35834083be5c9670179b433f 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 596f078ca8b4719904940616d48c45b2cdcc556c..9ce49b9347657d23ab033c4c472de2d2309805df 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 9472fd6a22687ab033483ab5bc811a3ee5caf6e9..65ab6677ee771a1c57944c877a2ee2039a39397c 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 f3aedc87cba9192fcc29f9ad17c80a1c507ff123..196f4f53c7d72db03ca8a5d6fd5283ade15c5a27 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 f3aedc87cba9192fcc29f9ad17c80a1c507ff123..196f4f53c7d72db03ca8a5d6fd5283ade15c5a27 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 eb76c0fb179c46977fc3df02d7ea680ee2bff4da..6bdea4929859d27c6178875b740cad6984e894f7 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 93f571ae6ea3e737a0dd24b1605eef641fb89e62..ed95a29dc9a6d74748a7e9e73aa59a4960af954f 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 1e76ce4946bfcbdeaf9a8215d767c85ee2f4fa34..9e000b70dc9b40039aeea98211cdb88e3a930c41 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 465234fcd3c3976e5b478d155996b1091d018d31..5a6c0aeface51c0bd908a4aeadfc2df1345bc274 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 80b8e692971372aca8f916d7c789a5b2f07cea7c..0395aba250737c9111c5bc4d68af9a9fbfab5705 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 596f078ca8b4719904940616d48c45b2cdcc556c..9ce49b9347657d23ab033c4c472de2d2309805df 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 9472fd6a22687ab033483ab5bc811a3ee5caf6e9..65ab6677ee771a1c57944c877a2ee2039a39397c 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 db669c736f7899d21f92021c016d2a5656fe52a4..fbb4ed56775020576e890087957e5a9d6afa60db 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 fd89ea37856bf94b9b67c4e10e92ab8c4788920d..05e7dae5dc2936ce16522b2cb7767a9f84ecbe9c 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 526fdf4cb923416cab8e251b0d74501d33c835f1..f2b68b4b218866c8f1eb739c265c486fafd35a22 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 0864dcc5852d7a494a4b5191404fa97b9f05a874..6edd65003e04bc8d56e0be5e68711dd886b526ad 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 29ded7a552a1525621708dc3a6bfa67625057a18..c899abb9c34126073b53dcffc66c663623e6adac 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 bb1dd5683faaa5934c48e782c671e4a0a429167f..eb9c329a6a5c47645b797f6c2a8c1c4518daf8a9 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 f3eebc59274a242caa5731a7f56cdd1a5f2c477b..afefaa94d47dbe2e173bbcb9d464e02dd2bfc771 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 0f6d64e936ac6237a3c58635c774771bb0513bdc..5706ca39da47d5872a86859df95ec3ac5e445c5d 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 e03026f87fb30d52f39b24b6c48381ccdbd30c32..315abdf179d730998a31ef3be62955f892771663 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 4e0396f7b094ea1ae418e438b8f6c19ba5be0085..76c1e9f1e6a37537d3f3ad016ea6411213012116 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 81514897fe6926517de01496a69505b30416085e..dfa237a5302a2672f136fe28569a95c8a7b9e2ca 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 e5ee4b7d74cdfd392953d9621bb7d054e55f9394..26cc6af26f05d7647672a33aee56ee765572b2e1 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 1005eee1a3ff1340d0dcf202c4ef7550e2c78036..074b41951badb0f25e1f06b8c0c3d6b43a21f8df 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 4c330cdc184bedee72af6891fd0ba75c1c6c6322..65a2d6ffae11011a2e0b4cf5d050eb651a60b150 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 9cbbac678687dd159f9bb2adab7b30a6fd6069e7..30e008b3c357074215a5847372f657f4939b8654 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 b95418959f7bcbeae23fa179dbc107dad82f1adf..85d458ad289bac549cd4076387d7ad4df7da822b 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 e7cf837965593c958c34f93c8912c920f750313a..219c05b72b8d45850f89bef393113d573b60333d 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 e05c89a25dcdf236052298181c01c1ca28344bf8..60a62e5383259815406bb2ab4579c454738e87e5 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 99e6c99f755855de9865d613fc026bea2319136e..0ca086500f95da966ae6be97910fee51c9185ca7 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 722d29bcd91162b3e260a1b546eda1aaab4f24a5..997f3f1b748a223f4c15d786ce72e75892bce3f5 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 e063c9820f48d20b6dfe3eca6074b07a634799ca..e25bc21af0f597af07769b53eb3cc0dc660a3368 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 41aa497f6b2a25a896b8539524764a5dbc2fdf25..dab988207778a8adf982b0a516d8b2b99c137f4e 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 fe1af784804b56490fc9466c1163801903d9ef4f..49f0b47fbdfbca4a4f6a86c6ba1a245295ae16c3 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 a3ff84b1fa8885fbed242832a689e252ce8969c8..4211272f0fa51c4c52544425ff96b56e0f4c3e87 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 046d718ec239431382477a282e4538e876bd312a..8a2bfdaee5fa5aa844f11d148b5bec2986898d15 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 0f42a96dbee34bbd08fab8d4e248013df1bd60c3..49326161af69ae7f869808075b5883e8b8526bdc 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 db60de6c18bae149df6d880ff94a4c5d160a3f1b..c2b0d6f2bac51fde72613b0b4dce37a3166c5367 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 26c6ad7210febf9a09b64b0e09746468b11eb97f..2c4a2a4ade6ffaa6c41dfcf6e5f5ca8a8fbb178e 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 f9d3d501718673c8b81d33b0df89eb52594fe3bc..0d1009b3e2cca70e650614dde07cc78d1279f193 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 b6d62ba21e015f222053924e0acfb94b8c996e53..d42a26360ee5a0ac3726d13bc82bcec9926de283 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 7ccace03796c2def4dd5a53c5c3a10d879e85cdb..8daf16f80adb8a58a55ef4b1108abcb4de3ca3ae 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 4845ced25ffc545a98027a01329322af8a88a719..54812d0c78d04fb6f5c4e87cd638b2b0e8fd368e 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 7a0213594f37d8d9cd6b772ab8844cc232dce32e..7aeab3bf0cdbb2adeec8516e0bfdeaba29ac5f48 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 e4e11fd86455a8b0bc2fcfbcca9bd14de4cba098..7c0329e97557fb99cacddfd8ed621ba6ee78eb7e 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 d72fdcf95226f9c2f5e1a74a67f172dc1285910f..783930208fcfd4851fb05899e5ee48d5d4a8ea67 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 cc99ef5ede062a383e33e0a74604f2fd419766bb..b50b5cae9990574c55cf614161c50578a22946c1 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 4b727ab016b575ccb907dfda49fce2591fdcad4e..07b64394023c277290b230499fa3eceb4934185f 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 c010bbe5d8b76592fed70a60515aba3db7e8cccb..8dcc9a50b65c46c8f7748c398f9e9efbbc1e0f5b 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 b0977e677f1289a4d278f80d422ad5333eb377dd..90ce5ac89d478360780cfb967b20e60aea58470b 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 92f56551d6e9f6e75d7c27cda50144d96f1f7481..86b1e3e2008f91d1bab7f8087b4b67f91391bf6e 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 01d402664967c897eb6726d581aef5394b631a42..508c7bf49ef90f5105e68c3de9a613a1c3617285 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 1c2acb46d1842a58f3c12c666f9fffa91ed9b8a9..b53322d7ca4717c1748e6d2f5885958d4f6428be 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 c170551ad573fab1a0f2dc0353e9ae807feb38b1..dd49733c0fc9427c92cd6315a8946ac54b3c4548 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 c47b2c1cbb6b12476c8d985444c7a6539d86e2c6..3d62217f02ee7fe25fff47e431e1ead08db494fa 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 bf41fd0c7b8d299f4e6380a562753d6a8ba389c6..c6d93868a339681dd6bb57a22885e5f606ab8e93 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 fb90e843bb70fcca056d899207392baff9107fae..c403d06ad10a2719b643c87203e503c6ebeea323 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 731ec9d41bb02a14ecd65cb8061c951c0f5c08c0..62078f2c42d2112ae323025273c060e148cefa9f 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 833077d5769688cc0417f611e8589a26228edab3..20516d176f0186a1ca76d8e21b0a23bc33427871 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 23c71c0b0d88ed81ef63e2749fbaa0823f844748..6d7e706544fb0d237727cf1450cbeee947509c94 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 e034d13601fad25dfe4e444f678b3fcbcda8fa72..6aa3009bcaf247b18aae101e49c110855651ce73 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 5de14e4956c7fffa161c8fe9528529adaa862dee..69d46d8f4ef86276e4deeffd377dd37b03837dd4 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 ee54eceba35ba1e7d7b3aa75690227519192e97b..e32bd1f9a825810a48a44a0b23d604005990b45c 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 d0e272b7a7c7bbf59db6910581cca7a1cd404909..4fe18833d6187edfdceebeeeac33895b94629396 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 51f35cd5c700298a7aa9a4b2b78881579ac2c1c5..23c51278c5cd1e5195815f5e8fa4a2e9674ba07e 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 3c2666cf21baa5e4632999f9c0ad1021d54168cb..0b5ec13d26c338eea9a6fd7c5e2008d8f639461c 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 49230aa2b2929c57b325c41175482211aa16d335..079a5b74b191b945ca523188061f14b3dcefbc58 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 9200b718ce820825d4b9c7d3ceb11f145b348110..c3de282a2fa897644cd318504f0ae0dda24c969d 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 36e5cfc3d50fe588745824000f0189d17be3f9b0..f6e756fda121640445e9e33936c0ecf6a8cbedeb 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 aee03acc32396210c401468ef3168aa2aaa533fa..4bf34fb5552f6c5d925cc588cc523b25839308f6 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 842a3c496255bae2a92ab52c084794ba9fac9503..45bdfe47cfa65b69e5395ecbfbb14a67aa563b78 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 fab952d2891604a2ee0a715b9aa76bfab0ef67a7..8933a71b5304bd10826012d51f13cb46ac8acdf1 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 9632de9f616748b12862b3d59613e1ee8c7e5c3c..2c84ea0c053be527da5abd055f00d9f0bb29beb5 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 7e317bcdc8ba8a394fc12eab977f6d33c5321c50..8fde28a6dfd4a81716a78ab7e909f15725a12d8e 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 f27bca3750426c2e201813c793212386b81af818..fe475e9b07034a0ffb5fabf3a8861a060e084a5e 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 6cb77c61236b3cbd0dd3a64541bf5f65487106e6..eff1aae4c98b1f476ff628f080c962e8944d574e 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 9054c44b99f0f60cc8850fbe3e50096fa3ca6932..245c76954d0f4ce3528348094f22fe763770d43d 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 5475b55878543a7111564aa5771560f81e099aba..52fc49a27fea11dec728df5adac9e631af8e4cf9 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 dfe4d7329622e9b596ce9673070dfbee5839e1e3..3e97234172f5e515285529aa50c56331723df3ec 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 a1374d11f2226b0e8d28f40f8869f41ea133d3c5..26c425a2bfc7102720dffd47ef640012891537f4 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 c769df6092188eb221c4b9d0572c3e0de4f059b8..c71c3600212a127f62aa02ca0ae3c63982eed4ce 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 da446d7ffdafbc964aa80319e193442b219b55d2..5d93653f59dc4d4359e571527a77dad710af5c91 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 5e78e1e3a60c573a9f5e3592b3ac13bcdb222929..687c73acb3324463d695815a442800bb4998d4c9 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 f958623838b557e03f7640cc7a63fde1f183adc2..5618447d2da17fd0d2a48e2a0d55510f0973923a 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 a6a38700852021be7cc34a74e9afd703e6244103..55ab797159681237e6c9635917ae97e89f86106c 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 d25f3d461ddcf9d0f239518be8963289aa6358ef..1588df6feb9ac57bb85ec89033f4fe7cb3d5f80c 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 0b643ab2d175b7560a16de1572cf2ce5685986d9..152ac6dd5c1d5c64a20d412c10838d12f6739a97 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 05522174578563928498cf062f17ca731bf013bf..d3e678893054c12e0e0b31a69c7c3afc3a4e8103 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 69852d6b48e987c69c069219a8bebdef29fb1483..84f89ed867e37b4db908ed9e1b4057b8e762551d 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 8161f0727fa4342afb40b1a50c45a15e7b7ce95b..025009e204571fcf4d702a2b5303f83899af82d3 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 e2b69c415f77280279d586b9b00d65d7516595df..50bd40cb7dfaeb1139ddb5f5e3e45d441d04de18 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 eb1a436cae902247deb9bcae7a818e15d224202b..c727d4d349d16d212fbc8c21da97493e711c74b9 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 e8b6f2f161343113a89eb7bafdff9b0eb19f3493..12dd9a594758d94426a03c1f451892ca7d699804 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 f36f2a7866dd036c39b11544d980f7620006fd81..26cfab3a78513591f305a74d5daf6f2849d3f512 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 42d1484be8df2ad6a2542606c3b335b0a698f579..aebb02c64eb9cc8bc7bc182d1946dda48ddb878a 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 364ef4838bd24ed2a0fb7f3c4029c5c495bb8887..e5d813ab45686d773cf51490ed1fcb94f0a3562b 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 fa6a000e44fc8607b66702e9d37245c193a0e076..ccd3090bbfcd7d6e68b179c17fd89e2fbbc053d1 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 27e145e32a2126fb30de95cc01b87e5abc5fe82f..094e64f20933b4fb010ec346b9213bcc641dab22 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 89972e9cc5f9dafb9881d67599bf514aa0a22156..acb5495382517252517e7130544275c0e7323e65 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 d1064424df9515f80ae72a66f9c2f5707950a628..7ba11b6d1bad812407c37be360edb61fc5f1aa16 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 3dd99eca7cf760395fc805d51cf8da69abb211b1..9bceb7c255fb2a0f14602281317f189c639dab0b 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 c7d38e0976ee86740454628362a57469dff6249d..54c7c40c2ab00492a2b93bb2fff9cfd20ab82c52 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 94530bc0224f6c50ce79c60d8231b2bcf221dbe0..025009e204571fcf4d702a2b5303f83899af82d3 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 b8944ea771b08dad1224da4bede2d77948046eb8..07cdb3d11eb9ef87c7e390144a24336dd7ec6e78 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 d1611d44a843d7db2b037c32b80c2c1da86aac10..0d3f6b3d99a468c3ab4066333111e7d3b4b69b48 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 3dd99eca7cf760395fc805d51cf8da69abb211b1..9bceb7c255fb2a0f14602281317f189c639dab0b 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 d83d0dfa10cd60407290fced70a2adbff229d628..a61bc7ddc7ff8b83a51f6e5a641d7f31af020f29 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 f21737a238492bc399e4bd16b614026dea86fd09..d5b36270abb99fc11f64abe8efe25894c8213989 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 514093218ee55caa0ca3e851624499b4e21505e3..54d542c8eb3eecf680cfe32641d02d3da2fa1ae1 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 de49012f0a8840e5cedbe71f54d228281db94d80..a20795c2ea82ba0d943aaf54a7343ca6a31e700d 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 27bf0d5422e8bf0c4832c3f713fffb7416bd4941..3c5d1fc338235f20b2547bd7889dd13caaee1850 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 24731c9226d65d308133943256b3861dc1353050..0a97da77bad944469c842578c344bcd43417de63 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 6d12f0a2c3be8ee4ec89d1a4b3286d71c20d9d5e..2ed1b78eadc7ad7c845534a13d0fe4283b69a76c 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 db514344948ea05542771d50c0893e9414ef5c25..c6b3d5d3f2e702ccf63fcec122c3163c804f2537 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 32c174e033837bab5bea228840265ee85519e936..c5a053541898dbf8f6aaecfc927c1145dfe6dc26 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 8116e5035f12148744e917bda12fcb4fd00c7765..333856451961470a3b7537c0f5d5d581484b0b9d 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 e70b5f1cb0be4c38cd66cc7c16858656e7c16527..375a86987e639d3106a40288e2874950a0e1008e 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 9a3f911bd8332b5409f2612a0e8d0a61d78340d0..ad91f5c37e8edc1053c3ede27f2e22a5de71b538 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 ab2ea0799ae4fede4c4ab4562cce491a92bae724..815d1eba4ab4f6e7ca324fec728114760441be42 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 d9584813375fd5ee4d78e6fc635e46d1157f0e6e..3e74461376e4bd16bbc5b121af6ccba1cc282032 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 57d1750201ed88597ae801318eee50f120dafa42..cb8dc67b4accaba745230543ea2f338dd2dd8128 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 f7aba127e3fe5ef7044773b5f4bb9765890d6a64..c2b0d6f2bac51fde72613b0b4dce37a3166c5367 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 88ab2794bc5a147e01eb50ed887fbe6bf399ab56..45b6fe692641b98881e715b482ae2d1660b5eab1 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 46373d489609fb8a11962b89860d8f7f5a409975..a93b68684edfc3ac4c87256aa81040b453db149a 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 1a6a94e9787fb7c442e8befc6a442c6f121b5e0b..849aeef99f9ac09060f2cd7158dbdef0e002d7a2 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 3a5e37750eba7dd26985f06f0176abcdb65ea0e4..92d2c1b66f666dc5d5f2e75c7608f56f7f2e1a1e 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 103f9f43a38f8a9b1beb76b58e28d12afa9c6ef3..b1d3776b0f66df9ae40079ca0cc12b31601b0a8d 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 9530cdc067a728b92842f5bf143ca0950e8be5c2..45fee80eab4aa928b929a201ccfbe07822a4e2b6 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 6c5e9d5695447b4cbf500c473f708a68924f5adc..25ac3ffcab596c5740cab4bdf9496b3cc2796c56 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 7a0d7a0d393655996bef20f6b5dbf705f710890b..27b07d916656470f2a83de120671a1dcb938feca 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 bb184d200c41a86ee6b9b6e7fef8853789bfd2dc..a9c83c78af8162d21bbd45292729fceb66888a43 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 6ad574a1c6fa2364e39b732b6695486a4ebea71a..4b7aecf5d2255019c92ee14e7b4f7f80941412b7 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 7cc378453a862773ae116af34db1313eff70fb11..0667684b6249fd77991027c762209473fec58876 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 bc582e6b8ab29c47d296817f43b43e4c96124759..7ed17c6494a69fcf06b4876842eb6c404d250681 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 35d9cca6f5ec42fccb5702df51f9c205c201b9de..459bd5cf525f7edea5cc9e123564a92b3339198d 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 a514f3c0cf46a7bf16a25ba3d6d30d8606d567ad..6e37e4ff041d9b0f64a4a89dbeee3bce1097e8f2 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 b39d33a876e3a3ed66604bacbfd31897fd5bad3e..b2005b98c3426eda63bc17efa7afbee5c700987d 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 4cd4ec095ef5d9d2e95dc263ded91613af3c7821..f9b572923ab3806f3c2f8fe82ad2954407d71587 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 64fc05eba4d04869b70b369f9ec76402a84d08cc..3fa66c5b32b1288a2815d0badc4f320a8f5ced77 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 7ecc2174dd125e80038bdd593af64cc2827e0a42..2676ec90f29436cb0d0faeaaaa876e1022cdaa66 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 0d5d59532f178d39d313124f4ac0c3c888fa8dc3..7382c8527b36b268583e0fe9eb98e30f840b6aea 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 b98d197ba082839256827b9efc7868df83a1c3d2..7972152dec09c94eead5e0c680fcab3765f32066 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 24c11028acdc845032f35f29d767ba72b6635298..6aaafa71efc09b696fcc8cc64d416411a7a5b287 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 663b74e59b6fc95570105a7efa2ff832dcacda66..e41a57c61d6e6f18e95cc6120dcf4a6d85f4417a 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 fa8f31d58c042b33ed1fedebc8e91643ec3aefec..dda0c588b9fae76b84d3120116c0e508e1661d7f 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 6af9de44c2db4ee23b8ac0789fbadf9bb9bb2d78..76cb8c55025137d4a65c625ebf78ee3467f690a4 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 e64619a7e430d3aaf4033dfb449910b602af8d68..54563f3fcba6b6ddeded38a20639b907c3a22aca 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 58dc705b65cc1f0079f912cf912cf0ab9ee1bf30..bb8a5951c98689c6c0958a6b183a1533eee490ec 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 0650f2a607710418af47cb8143000c0a85363a12..9c6c52e711b85e3187c1198bcfbd5c169bfd1af6 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 3d52eac824f232ad5063fbe82a9375c045e7eb39..7ef2a818c2218071e5f542f4c228c74f2e0be363 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 898fa7a5f28fc0273a67ecd04bd2e3a8cd466985..ef128ece9bcfcacaf38e42afdbfbe45c83b214e7 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 131b69ba59473f6ee825b262216c868c576ca8aa..aeb7734b46ced9d7363cc26d9f4e716b89ad99d2 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 687387820c04426bbc8b2e62b5e17644534d8a71..760d59ff16a33ef100a9b9d2c13e0e652b8ef63d 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 215ee75b7ab9c5f94715099161d9a16ddbeea49b..70ef8bbf4f88b25fc4d48c2430c5ad15ddd1d235 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 43a41a8be0c300640b807af7cd23a167fb9ef179..b1565daaf364670c412bfc6127f3be3bf2823dff 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 e8828871a95986564742b9e232f7bd7ac211e5f3..4aba8078c7c47f30103b6d2c8222e5896c68f354 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 0f4afda156d9458b04be8cad472364182bf791cc..b860b3266a343df88eeb16d186e4d0ac139523d1 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 a4cfd314bd16ce266851c81667671fc8430054bd..1783986d89b38579ee4c40c60b84e2893367b2f4 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 280b4bff48ee15e5a1d7c7413a0bcdde81fa4532..bab01cd56eedbedd75107e7260e547a99167a693 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 ed91ad6fc1af33009c77a7e36e9ecabcdbb456a5..1d41b58d1fcca28c4891fd968b0ff3e907b5c8ad 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 d5d71aae7af64ee89ab853b4e968db59cecc0ca2..6810c8cae99a5de2915ec44888b86ad0920d9682 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 754a3acda6c5687e406ba771c9df0d873cb4bfbe..e9bb93a4875cae2fa6c5c027aa9d91d452b22b92 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 72dec4b53406b7074682712375281acd01bbb6fd..02d9213e80f5357b314c75b7c71f3ce339e75cf5 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 4f3e74798d8270219cbf46c6ef66a282b76bf5d2..c18f139dd3feffa2eadae26458c9ec76229b3535 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 cb9c48a2b8933359f291172b758bccb073132fec..78cb9f3cc4a9b38b94a5f6d48d0e3fd9abce3fba 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 4fe396ed9db3c4ce3f2b26c4a7636bf9d3b76f48..ce403e71aceb9bd4ddd367f6bba35774761df0a3 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 364a3377a9bc3862f22957396470e40dd506b2a5..ed39c018d6bbb2f33a92e3791ab89cc13ff3bc02 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 027f3ed87bbe6fb61e827759ced4741a3223dcf3..7cb801936538710018ddd89cdc9da4b581642f4e 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 6ad72752246b67bdc8a1efdb2011bc8b65452d76..4090ce6d415d953d582c9293ddd211fa26e6d737 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 a10bca6842a39926ee59253065c5259e8c06c85e..e269d46855a2a4a0792b0d96b9649b37b9bfb016 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 17081b8409fd20be9d60e54aa5ddd32fa5dffacc..763679381a0fb97d0408c2d88d2755de9c7b05bd 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 19a0e5997af4b251e4868754b27d480f52eafc85..88617cf99f3b73c70cbaf886f9310a882f9eb965 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 96e4bec7c691d561d003a31a49b682478817d44b..5a29bce76fcd07e6a58c20838be8354a1369da88 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 2fa591518237d0e998397539fa6139f06e9ec579..93a112700e1e10984fd3c3e54276f35c7c23a0f8 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 0d967bdf594681ba1b5d00a86faffd0acaa88910..345517e651fcdb2f85718afe4f67092bb6af9ede 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 52bcbab4db6275b3168463308480fc4101efb685..4930eb53f042feb47effe7fd625e147d6d5175c2 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 99d33d8500fd138dd55a89378d622eb2bf976b4e..b05690cd721315a085a14308b2d151cb9e9acfe0 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 bb7ef640590317be5cf8573b8ea32fc70a0ab78e..35e7a5784d9938704ff3281167a1def5d7ad9442 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 0f9dc992c510bd6da31d21083cbabb8b7b476d29..57bd539291416ea6086dda695963732cfc00024b 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 ea5059d8045de0195f317b88919269b67ea6b29e..fe2ca68380839324b29738d3aeaec3b8ee486902 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 72df8474f4908c1ca784d679a56f60e1f3cb6b7d..8c9798b6abf0d28b9f630272ddad10f338661322 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 4876c8e074d8487bf73b2da1616f79c8490ccd9d..9fb494db12ca029ced7fed02c93626dbaa80da8a 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 f3a1890677c0ae9613ac53e733441ab83c3c056f..c669b82e8ad697ec857c1932a58959290a69db18 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 7f81310f41f51048bb3f259ef3c5a4a5650a49e3..08c9aa312e9f496282ff3243a818180942232046 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 3f5617924dc17d7f32b677fef789f37fb1ea80b0..ddcbdb4b79362b0c02004ab16309403afe980d57 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 59ec177218153458a2af1447c464528fdbc55441..7b7729ef3d9e8d582c1ce90d6e23244452972b09 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 3e920b910823926af073ca9b343ae7db0d406c87..d1c3192f7029da71d5cdb276149edfd2fc75ef2a 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 f365be6be111751477c346dcce376d4f02d935f7..7f9853cb4baeebd2fdb252bff28288241f0c0b60 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 39d60859962c8c8db52d1e27258f6efeaecc424a..c403d06ad10a2719b643c87203e503c6ebeea323 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 d2cd336e1628c92e76d5d5658868b6448f9c9dd0..7d92685c6253e50f038a9280059ea77951ae3356 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 4c523b00df7604eb0ea4da2821a598aefe5bbc3c..89fbe24351c1ec3692304eb2ebb7fc493e724a38 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 01033c2120c75767fa8c192437d0bb8c99418091..0f828f60ebb4102448ed67f3c3f96ef753b3a5fc 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 dabc9c2c3e7b16ffce368651649cd3dd9f879fd3..541fa4dbdf594a9da78dc849c398bc8c3209a6b2 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 f011fa926d7852a66958910a36d2b7b184ee5a6b..fae4261a4b321c115c4384dc7e361a4efd732601 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 d8d03b3c410ab5a9b12c0a3bf8419ca2d029c919..4c39c32776920eea06782cf323f1532d6594ddbd 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 b8ed40cfd617a8fe20445a54658294e02916535a..08ac284971296675a937294d0b2fc65a3ad883a4 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 d755572a94e5e10bc67d8584f277d5e153084852..01ef8ff1db905c4733d167a0a3a8cd7fd0bbea8a 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 f5ad1eb5143a315cc5cc738b059af6948c19b364..28e777d9a3590ac1309dc21d2270da1bfb89ca19 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 3ec1acd28969201fb940aee17a04955f66e6c5bd..758d91a3647e693e64ebc9d961c68c82bfc3a37d 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 9456267e7e69feb3b7a45aa71c490e5fa7ea9d4a..310cf3640225f2b2e2a030139ac99132489ca570 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 a000601518e3a3a21988cbaf6844e51f6e7e83bd..96cb1aa144ceaa2778238188692073032db42204 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 5b81562dfbf3f62d1400ea098c56ffe052d0902b..dab08881a6c7afb3f90d98e264eb14c953c4d936 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 26b0f457b7e6150707192f262a05046f47ebe677..aec27da5bedf93c7a9d9ab260dad6980ca70522b 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 9bef175e714fa4edf7950f7326420c3a6aaf22ca..28f866bd6e0eaf09f02effc719a3c99139bc2003 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 bb7f2fdc1cb9c94b03be401616532b99a12d26df..4b7ea8771183ed2745d75937dc4ec8f6ae6a6231 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 6360b668a8cbe4733e36c4666bba70b4b3e07842..1dbc37f12839a41205ce8e5d11c795a09cfdc564 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 679709dc95e375612c16fdf8106aa691cd19ab87..a8df9403a9bb460271c7daf2f355ef6b9882af97 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 3c4fac78c3d74c307aaef99ffa3e349d7baa1a12..ac02fc5bc6e987dd84118dc06f065f3291ae9263 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 3589176e8755dc7e6ebfa6a0c291cd6b234a9082..e9c75e98be8538a41676ebf693dc2f1c3beaffe9 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 c69762fc1d130a94f4830c9edc21ca92a20a90f5..9bceb7c255fb2a0f14602281317f189c639dab0b 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 86d99ff8bc05f4afad396a900816d0b38eb99bca..d914fde33f14cde3d2632aaa680e98bb62005085 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 f43d6667e56ba6f3126cbc37dd16ba02e90e89b5..2284c686c37deb6310fceefb64ea5b33d221e3e0 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 bdd68e3ee3d4cc347e3c01de3254b782e7de420d..5ab028885c1df6da322a02a3f88f19e1012404c0 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 e1da81921b4484b7195a967df133a2b4b0a56794..9fe4fde864d291e3ec17b05b821c6c9e7a4a5109 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 f8c924c9e820f5c53a1756a8293932151c0c272d..a65b59e06a1c6d8362883fed6399d209ecbd6aeb 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 d5f0386ebdc6fa81b3d83e248676968152dbce9c..43e8a46da8ca03046e9bda199245cf9582617df3 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 c3a1ddf5665f78c2bf11551ede40f2d85b7c92bb..e41bc2225056a0c42dd36a57d9c108139dab4b55 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 cc808df9aef7f66cfb82b22eb8c20cb57dcb035a..31c6075c5b978e580c475511bf6949227bd96414 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 1935149bdd3b6890b835696f78048d217bd0643b..9770d0bbeb9a6405e3f3d7d8a48e531b773ed09f 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 fd800f1df4f2884cc9b9a6c3a8d9b1e8edd36e7d..569fe949e23226e7cb27bd719be65e72091b47ae 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 d71eba395b17eab9721f02fef59e9ec49945391d..22240587ad37461364c7b49cf8c16d219b489e8d 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 c8da953a71b7711034bfa2e5c689a8901ac7bb94..a4633de4fc51852d0123e8d9b3fc1d012c1b3d39 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 14566c987ded53318ce6082c1860ab38b573296a..a73dd8c2bc6f76e7d40878abf83652a8cb3ab26a 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 2a032e25df79fb76d1d9fd064ed68e552323c07b..c403d06ad10a2719b643c87203e503c6ebeea323 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 acf3dbb312a96de18b7424cc8d855684a27668cf..b1b99b04678bf9a4d76e24b9a746bc8911239e1a 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 c50b2795087dc96918d289554eb0f413525e908e..ed622b46045f9f32939fe5c6e46df2eefd708d74 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 e4aebb22017629623667a89d24033c91a578bd4e..abaed46622b7448188c100b30b6f4c44abf119ee 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 525971f35fe6109ae686ef753a574f2f980141e0..b8fe72eddfdb381483f292a4877282b73553b63a 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 1dc6f40aa0217e7c73197f426f54fa10093ebcda..26e78bb0e326f575025081b4ae085175965a8578 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 e13ee67f2e6cfb1d934a69583674d55348d1be6a..f838a8bb472fd1834ed7509618a518e4c5567b53 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 48a547a0f8957341d1ecb5e976a8812d1953e54a..fa50b4301e981d19a1c52293ba3843aafe8fa7ab 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 924da6f465c424d1cc7fe869cb66df517c165e8c..8604c1f58644373222beb3de170c90d1d500e922 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 a4caabc5bb331a846dc7d033e906013d4015d64f..0e5972c1a922546d6338e84c0a7ea458d9bb20fe 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 1f2a001ee6a715d695e360e5ea181ab8b1a4c54c..4e3f1fdb894dfc868acd15a4565696ca08a5eaea 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 83fc10aa29074729a0a2218c66b03c3b8fab7708..e7e9a0a18a04fa9f152de2d0494dbbe6f1c56af1 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 153eeba1f2e3748aebe42482ae1b823b5db5d1b2..dec25350f525804dbf24d1f2c6f39bf169c241ea 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 27477209633379e136c07a2b33437329413d7b08..8106f7adac009f9e29c47166d9d141bddb463640 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 f7e56dfd15c2396a4f620d18ddbaf2d896c260ab..aef3d9f2160896351fbbc047598dd973b00310aa 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 3f8a2881717d600d4f501e9aeaa9bb73057acfe3..c0c7a6862a113a3274daaf0067acd41859d47b91 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 9f4c51f9180254b15b4e6ad36880af6464650784..2dc4a0d1c068e3c45362e9be91024fa402f06484 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 e88b300b03d3e7111400266f66ae7fd963558136..218413dda9ade93a1ab4f9c3f78639b3ddac7fe8 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 de0e052e0d36053114f61e331637d925f037cfb7..5644f94cb7b1315f0fa97f14bcffdd134cdefa93 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 48ce59a5d0577dafba9959200ea6a904ed6567d0..a9c6edbdea933ce7f0fd8a4f25b1730de5a43583 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 7c04f55129107f293e06bc026c3bb4cc7638581b..cc727ab9cafa87fedba3e3e4dcdd90628ef98ddd 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 4df011126a8ae59616d77c495517f7d28de88e9f..6f5fe0482f56975d56294598c8b1780c858ca236 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 65f8d79b85f8427f6a899a41ce96eb39f2861b2e..2031bed4dac6ce15c83a0092a0ba1f715504bbb0 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 f1013d8f8e6c6f917a579f64627d9bb14fa5421f..e001b642ee8035b6e4256c1993941da99aaf685f 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 4e18707a77e395706f0f2b7fc0db2da50be024b3..d280e2c7f5d9117792bced7f7e41546874de10ad 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 2e9be7d53f2c1ddc74e43d8ff4a10cac84d89358..4746c382843eb81a55f54e6a10d4ea12e011aede 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 310d7a90d6d1dc7061296aef347b9dacbfc18437..a99e1d04c5e3dffe8b48df53110b6ac36b3c7a9a 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 dbbd00195a133077bb283ecd1ebf786ddc27199d..39a7d21dbe73b59262f423d619d64b16c4977f04 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 70eaac3a3cfc2ec219bd417e063e5cefb00c6042..f544c6ec27e4bdf3be40cee846f301542dfa8c86 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 6f08c4f4ccaa8640720a163fc70acfba9cc1ac14..2c1674828efc4f8ca63c4f3d397b605ee7be0a1c 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 8161f0727fa4342afb40b1a50c45a15e7b7ce95b..025009e204571fcf4d702a2b5303f83899af82d3 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 30b7a1779935851892a809a871ee9763925309ee..fd5ea83a9c5e92771085b0634bc8479d79e485b8 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 d508607184e64e2dfaf1272e341ee4b5fe8f271b..e6eeb28549eeda02c380a2549c1d95c4900b36de 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 7cb393c046048d66b57a0649b9af27a87ea48f7b..45dd4d970b319d3e69f6efc9bfe0da104c18f94f 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 15772a3a1be271570c46376b14842052045d0873..7735ae170e7b58dff4d6b2093524e4ce50949e3a 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 5068cf96360ceda9950aecc802eeb01316417398..2394c5ebf18f8cbd7e3cba1e2c0295bef8ffb05e 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 37c5a127d35980c8a6079afb104fddfecb22f049..0e7806f989c4a46c93b2a7da8667406d6ab2329a 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 2371233789c8ded974b9630938390d675471b10d..806d76b899796028ef96e97e35e795698a65824a 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 ca0ab40419495010dd9c6043e9eb6fa31d362e72..222f6b7d9bdf7f263c3a01aa8c54c4b2df87a279 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 570f143f37476ff7e34fa6f5068842ecb46ca933..b5d4222764c30f65288ba76157e7e06b7425ea78 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 fb751baa218cedb790af91bf0a8643334cbe546b..11b4ae710bb14085bc0f63013b1deabd86db0235 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 f6402874364e9ea675514ea1c710f1921e74dc2f..31aa37ec30405c32ad7c8de3fd979035a9dbabb2 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 b05cb3d595cd7e49baf23cbbfbf11ed81724ca40..6b141e1d412ecaad72479b6f3494fb773e4008bc 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 7576aff6efc069c5a0d16c7e7e49e139296a0d47..1c99bdcf71a8cdb218005e822c13454c198fbd81 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 30ca42ba8b9a5dc8d4d2799f1fb6ae8c2a5a35a7..287482db540ede99b057cc782f4651366745bf18 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 5b36464d3891011531aecc387fab68e2895494aa..ede2401cf0a5139d3bd8e045ecbcefd19c822c63 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 3c1bc99da3f3cc102473d3b6550ba3385a7fa625..fb9c3669c13c97dcadd36a2227603000a408d674 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 25607ebbe8ef0f04a4933b960a819f49567b484f..070aec4cd5764cc97c3f55320d9674a050a66dfd 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 a9705c6f32d028fa0612b85973594928af5b0e65..bcce6de9380f510ec879fdd54e53d9af3a4f8926 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 11f9b917352f9873cde61365e3bdc3dccaea1a5e..62d6988aaee219f17586b4a5c6a0f6bf64b0b1e4 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 fcd15c018493cecd0498daa8d0f2e1cf3f4126e3..fdeea131de2ef3a9cae7984b2d56c0afe53febd1 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 0f716f6771103a7159ead341aa4a6dabca62d131..12e6cd655d6630345cd24c74b5e85bec38524c1a 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 6461fbc76e35bc74171f16fdf47c3133dc2e6c80..b15510e30ddbca94b3909004f58db4658684f738 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 5c2881cb3b33abee41f833f87d6114fdb8caba29..21398610778d056375886782bd9e1c2caef86c8e 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 15c47fd7390ea746a169ad463867825c3ab8d2f1..efb194dcfd2558c85445e53655501fdf8ada6aff 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 d1f9b3bb52418e4afea17b298ec192f6e79d6859..08ec78c2c173c2adcb1e6467520c92b195548daa 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 de944582b261f7d0834898d36a0a32713b7ebd10..ac3b89e0aaca899ef87e9b8237c4526231a69e80 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 36224141277d71581413f98718801a0b3f045eb6..be153e04d45666bcbbaa1f37caf600a6b8fdb645 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 318ff6f8d8971738280211c73451fb51ddd0d4d1..70b5e5a31afc76628b3db80e302dd721f08e5817 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 076e61a15090e47355d20591df378b008970cf74..dbb1b823b10c3cbcbe5a9a33e266846f248b37e8 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 2b36ee032e9e5343cf1e9d7ae564431169e2d429..d53b7d0cdc7be6037737a4e5668010ab75bb0d15 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 416e505775e48dc1d70ebd3c2c6c644f260210a5..af8f13ccc12b5d54fa5c531dc9842970caaea32b 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 05aad8e151540e023e67ef565e361b58c5574618..25f1df113ed9b8eb30bca64ffe81c1bd432821d2 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 88ae1fee882faffd457d8bc6a04cedc1276595b7..4804e9fbffae2a32c84b468ba28eedcbc77b1868 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 05ff3180a7247ff51a973b1eeb3406fccebc561a..b1a4d2e47ac9efbec96a28408b7cea3254b69656 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 f10e8b49b5d85f07d9a1ecff09c9be483f1b3114..d5080edc26ca2f5e6489a6640af6240f22262cdd 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 edc21d6d8a2a6eba2b2d88235256733bc74dbe4a..6256a7fc753b0b1fdf331a6aad5fe882eb54fa43 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 9d9e0341d659491db27aa9b93d6d3186b62099ed..8c234ade6d519d94d9927b52772ebbfa64c82cda 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 95deeffb1387c473d20a7690901ebf47f42a9c25..c8460bb2a034e6666e5cc26b9195f487faa15d08 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 44a9407290e0416a00a003036547492938b276dc..71a41fa45593dc1c1dff5ede45ec29f3f122e2be 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 4403674b8f11e633ba8a3d256427f82285eee958..6ef8b2529697edd09a26b7b9a3b029f53608eaa8 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 991d7aef1ece2079df4ae776df3604fc52dfd9f2..161f77078161c8cae1821d3fe10871f5322787ce 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 d98de4c5301322bc630f7749d40baa5407e24293..6c627890259d88a617adc5afde1023fc430d0452 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 72a36218af4716ee165067ae0f092a46c8f5d29f..cbefa2a14dcbf9b6f478a5cfa9a1d845d53159f2 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 f3cc58c2a3c370f811b92bff631811e11fa8bcd7..4c258eb0b99528401e27f4717331a7773f2f2ec3 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 27f53be8f3169d3fde85f44708393fbe7c1d512e..211ab0b09047b2120b8e447387a3e51124363717 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 7e2872a1aff14ec74f6ac9396a2bb3bd0d84c157..14eeb1cf01fcd037f612061d53c9bf18d61be901 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 523ee9dcf78d6285cab44e3f2082b81b6f830b52..d5705c8bbb97b8c66f2b44fdcf5501c1089eb2c0 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 001cde58667bc3b8edf80a6ed54298302b55d20c..486fd6770a231ed55293df7f54edce03ee55c303 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 79ee7963fc4e1624244419e2b3806807ec7d32dd..dd76442627a8c261aef378eb4df40442c8a9f1a2 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 788c31fec2182fbd9a434d06337c4862579c4fcb..750b49fa2213b1ac6bf9cc8c0e9b6e51253ecf85 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 8cef80a232d122c246e0c08ce17365427e67fc72..72512db6cd7ef2c19156613cbda14191de48a05e 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 4e3548352fc4a82e91ebc7e79907565e40aae457..21b1cda2363634e7d8be2200ef77fa90831c128b 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 606ea9eba46b82eea04678e64369b97e595f9da5..d5e3dbd478239f617cb7a25ebc9865d8dffecf45 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 b7cc930c7611ecb44b9f917ac25960cb95e32393..8b5c71297be93d30ea29eadc000fd86d8df8b06d 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 dbac590012f71cb9872549e423ffcdc596308413..691fc3d68a927615e2c722924b934de5084b0e0c 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 5c3617329268d172defea15e9915b5efd35cd3e8..3ee46b5155303f5f03b05594070a6c076e773636 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 76ff5ac15354b8dbc1e1065f61242886fc079d43..38642add7b50688620e93de6b81731e57257f664 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 d61271211de764c5cadeb1e2f5162d18a2885d72..1d134ab3e4e52167abaa33369164ffb8fd3bf060 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 123d94357cefe11c72395242c75f30ec170a08de..554cdc3d76c3543d9c08f56aa3dd64d06bbddbf1 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 123d94357cefe11c72395242c75f30ec170a08de..554cdc3d76c3543d9c08f56aa3dd64d06bbddbf1 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 06559cea65f08771c06f382e186fea00a21ad263..95fdc377ee90c3b9d7c8fade2197c941571f3142 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 06559cea65f08771c06f382e186fea00a21ad263..95fdc377ee90c3b9d7c8fade2197c941571f3142 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 b40cb15977a66a23616af38b00ca2fc7b62e4d1d..70ea061dc5e90f4901b94529ef13ffbbc21e640b 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 fd5e5801aea18dc5a327f7a7279d5a985a9bd07a..871ac1c1f290dd7098702eba8b5bf707b71b49e8 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 3bfa627d758e3ab89cc7a9bdc1f1e952210f5b0e..1cb7af0ad8a4db9aa8a5b07dcbef05ccd55862f9 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 bb1e5ecd0a565060a1dde8e808a98e6f40957a4d..af8483f8746c14bf1da25637fa6338fb9043e334 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 1678c8536fb15993be009a26062074fb9cbd6e89..0eb3cc2603cdde831a7384a8330ddedd9c76e105 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 c0091701b164c19c33bddc43e0ab952687fa2bc1..17b35d88823569c82695eb73b99f620d98e2a667 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 ce8b226710bc4bdd74059a5d46487cdf6743f3ef..894b4cfd78e0b5ad8a07621669fb204881b9c1e5 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 d3bd2bbc824a1edab176d8f722dbf5d2c51c375f..5e6471408d875064b8a38104922f6b70e67287f7 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 90829a353c3bc132301a84376b2bd6602a55c322..bbe6c27f041005fec8f47099cdfc7ebb1053af89 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 8315c57d61d0f6b46b16da364db14691ab129938..ddfc1b7bd905e5d43d62734cff1a7d2138687db4 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 bf972d8b1aebc51e070aa55e46a2842de4423701..b5a22eb827b46edf53625bcd7a82a1db04ae3485 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 aacac9fc4237261adb5bb78013b618a4cce24a7c..ec4338e8bca2ad6905cee379100a8b0becfa5c9d 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 24eda772954e2f6104f91b76a4fd271db04941ab..bebb74d98611e818118d81d55d5dfc5eb62f15cb 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 221cd3c76b946a67e537cc35b117aa3dfa4f6a83..8ad73597be74e4690e6a5b354ceb560c5542ab0b 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 2d31ec2202ee78fa38f0e1cba6e6e0c14b6bb1ca..05562bef842a0baafa8813f528fe2c5012d6fd94 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 6abca6e2acb29ca9021c488554bc0df43824c568..f8c84994d473348e27391c7095c451fdfac9e0fb 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 d5ef04577cc2c7a25c3df91dd0030d8891521e6c..4e916fe1fb095017458fcdd1093c1efb8cc8afca 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 f6e6716420812b2bb07e839e53c7bdf573f7146f..ae205e9d77050e9de7990790a6328bb58b008ad7 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 0c7ca54fa1f34ce50512e8f2131d79c8c1fe270c..bc4bdb360faaf5046d321966748582f0d44e9551 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 6abca6e2acb29ca9021c488554bc0df43824c568..f8c84994d473348e27391c7095c451fdfac9e0fb 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 98bc98d2f1fdd36431933d1c04d9a7aa45914437..73c66e9b2b33cb54953d608d06896218ebe6dc44 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 1f6581389d1a3767c0467181c43c15e053230773..8680cce82bff07a3c3aa496e6280d871bcc50e27 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 4baa3a3be8e1741ae21a1c4dc149351c1fb07bbd..917715107bde9b14abbe77024e805b1a03d40153 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 1687cd1b5367ad08588201f46510f525ab7a9398..1db8369b3d571114205b1df33c74356590be04e2 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 908a6df9348330b2e9aaebcda75d5c6a08b86fef..04a24af2e22a3ef25a986218506e1cbf0147db71 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 216e51ca8f077b7b6e1fd0186c0c0f2166433394..8053007e9ddc69c0e5adb53ad1cc5fe511ab7a43 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 9b3c093c790a83405306ff8ed8316820eeca9ee7..d6ecce335cba5efbb3ddf5d2f6f1e329619f8c68 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 7d1374e1fc98e3e00458393b6dda4d10be8a0143..160821354cc45e249353e69ab85ed7ca7423c8ef 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 7917abd9c07b32b08b20cc4ff2afea4af556ba0f..0bc44f0ea99e8f70fba0c19ea6015d1a7693821a 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 0f716f6771103a7159ead341aa4a6dabca62d131..12e6cd655d6630345cd24c74b5e85bec38524c1a 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 f893de7abf32d169f1dad5e6f76e9120e098adf0..c0eaee6542fc0d716f1fd9ecaf7e30a7c96ecd36 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 932921c1f4c4d0a3c6da9d9c1f5bdd3c6b27e4f6..0fa4283476b0da9b026b8b26a2226ae30a9abd2f 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 0f716f6771103a7159ead341aa4a6dabca62d131..12e6cd655d6630345cd24c74b5e85bec38524c1a 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 7405550c08000d935e7c221df65770ca5630819b..a58ee63e1b6af52557ef53ae424a77bf940d478a 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 8c2e2cbdb0908b4c15467dd79bdcde69912dc518..3d99cf1eaef689386c6bcae4b7e3f237d53bf43b 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 b264649fcbc26d7774496d1d9c308841c69c769f..facc2c6f4423ed902fc2c478068417b0a08bd823 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 2bea3152a101d8966cf5e379aca049a12a19fcf8..866037c9b543df97f7e01e4f7873850ba597d030 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 225df251041750de28c64d9add1183f1e92d7371..9c6300eae328e5ceb9ef00e02da20ceea075711e 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 e520f7eb71e57e57e965f0990cb830dd91d8882c..efc1b3f060822cd3e5ad5867a9ca5f7213549e79 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 73fef8ae4c8b03689e4161d61dea297fedce077e..0bf9138d463f9d2254ebd19794bf3e6e944f88dc 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 d3ed4fa89b3dbd94b4500b3ce0ac8ee752d1c66b..e22f73aa6f9eccb8ab6bf9049d8789d3cc2625b4 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 27b653d93ba448745bf4a7fa9597899efaee5698..42c519aa63d0a6d309d303d8feeb75096cd04ec0 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 eec3240070b2618d28e56397b80f0092d8fc18ee..f4d0d917d1fd1c764891dba2d26ee146436ac8ca 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 0877bf47cbae150b0b8cdccbb9e0b68c17f4d696..39434770f60df1db73f77116c096ece72e45625f 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 5bc0f86b4be7eee3b03ea5cd4485212532fc269b..882235d2cd3497a1488ddea08af1dfc2b4eeef73 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 5b39ee81ea3019517db9397df0c4ee9c41e56ac5..efd6859ab607a0d18cee7f09a94ec6695fff7465 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 d841ad40d19e3a80eac9082771875c78d2f2ff4b..95c2324b6125c5da3759c9af2eeb4c5fb2dbabb6 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 595f026cc248f0f52bf9d40a45693237d5719667..82d159c6ec05c44f543ae14152981a15cd8d8c4d 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 f252f5f51a58e77d09cd19e5f6a72e1c40fd8625..3d73145dab7eab4a524f451f15cb7a3ae66cc5cb 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 dd3563051617efcf79e947bb939d3fb8ad78a246..001b0cf9b7698a7da6ced443f8402134cf7d12c6 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 b892da1f65587da7a7e3e2da5971c7899b8a9b10..25edfa85b45b03ac727df4e3f8f93a037a5c6801 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 b20734da69abc6d778f525e70f27b74ff67f07b2..a4b878966dcc70ba0ccbf3647d56a39cef02a864 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 83d3e1ae993589fc72c54868f9c7e5d24653d1d2..6f1931ab96cab03c827544dd17a96ad2e785d713 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 3c7443cba3e2bbe9c56d15e922fe340a7f817e1b..2080958f0fb04a7ddb9fe953bd9294e3666d43b8 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 c89098beaa583e0d2c7a9f539b5d642ad4d88ec8..7a9692a08045fcaa51db342804aa593ef1bff0bc 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 67f6b06467d3fcc60d2197e53a39b7953d44959d..85097420728731b740922b6725fd90ff6ce2de88 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 5f11e40a81fefb9091fea49eba655df1e2573fbf..36cdcc8d4a2d0220e02cdddb5d62dea514d60a54 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 966f6e05cfae09a7aee52be96322918399a547b3..f571504b24677f54c02299d6eb3435fcf1118788 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 b929050598d10d851b4bca1299e8cd75514a41cc..6186d18da70caa5acaa255752415d8136edcdc98 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 9246f5cef24e5613aa29f3066242a45094cf5f0c..d5cd141733d3b07e6d6348aaf0afecac51346718 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 4d5f811a891317267d33a3fbd608f198dba1293a..ccfd2d2f5b2cc8a689ef175cbece501f8084084b 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 f726f8a705e2e870d9ecb45151af020564207ad9..aae8bf6eba03015d44032e7fafb2450c05a19dda 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 f69db27d48243d38955043af0c5cfcb734d83f84..552eb39fa314968d61faac60b024ed0210ad9e7e 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 69ccdb279a55ed5f6ef24fe152436652e26f6ac6..fdc1dd8e22ba4d7780de2fa6aaf8be3d130e2d28 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 75a363ec8d5ee3bf2a360517808ac441403db580..b112af5cf0afc02fc7c8f00999205ed0a8d8b603 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 13e4b92c9ce2e0a3698d31fcfc2b82704653f7a0..cd0eb4109f7768afd725ee12fc5213b3d4c31adb 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 042d82172576c5653ed257e778eb73fa1ddfefda..b5de3223bd4944e9ba35075c3c6a0052731a12d2 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 95f4c29ed2f6e4fc6e5e8fd7e1f81544390b8c2b..5691147d8ffc7e161001fe58d28bd306815f779a 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 5f11e40a81fefb9091fea49eba655df1e2573fbf..36cdcc8d4a2d0220e02cdddb5d62dea514d60a54 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 070fe326983cfd8d0ae07621c5415c734803f6ee..fd84ab427dbd736dfd5be112faf87c9d7d2896d8 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 5ea2e846ddfd125708ef8fdc650742f6acc88823..1444573cf05c248eaad1c94fa6ad2cedcd7a78d8 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 3ec85fed9d3b2f6ca50036741eed51f4b0ded557..4a01b50435a54567ce0d53cad192e728aba5505a 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 4a52d65b9e62af63d7a677fa6cdd991016c00ee4..2dc60e66b3ec3d81f7a71167d00921dbb1bca75b 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 4d5f811a891317267d33a3fbd608f198dba1293a..ccfd2d2f5b2cc8a689ef175cbece501f8084084b 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 8f4224b5a307e7dfd15948304eafc1e25aa6d345..37372031157d10aa794a333dcadd1f62ce4a7b13 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 2161bfd59cc627e7b959ee0650c73086ca9d86b7..65e9041589f39e0c76746ea08669baa778442a61 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 97121565bb08b2eac9ba51c91368e7171370c923..b209cd8d16e340a330069c891053a431d7a9e01c 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 279a34f869a1a8c7fe9e06abf3f0589e0dd7fc95..2f439db7b500111372c4f8cba7e71e06e460b823 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 24581634018bb192dc33963796ea3d69a01c8cd7..14dc14a9602dbabc7b0702b0db699610bbd68313 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 b929050598d10d851b4bca1299e8cd75514a41cc..6186d18da70caa5acaa255752415d8136edcdc98 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 6b4604d38ed0fd940428812c4c6a2611a224d3a2..f4217646b2645e16a1c83ccedb6755a8932a1e38 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 82572b9e1d1b17f5399986b83932a3a90a8c169c..728bb3935366414766d184afb9cbc545e4ccebe1 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 4702d19fd5097b4ab56cf65bdca8994a14b86ee9..06634550daa62ede26dc024bb75b36a3d901ba16 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 cd76e0f92532b226acc2d3cb615bef9edc773c2c..f053591bf2d39a54cd060ddea4b9e23bcd625743 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 6de3e256ba63c72c88e3ad9929da735574d84ee1..4922ea1ec12a8606851317be0927fa7c83132889 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 dfa83acd50d7f973b4db1a8251c956644ec2cf5a..8c116b0dc4218939fcb62ee4087b2f2a353f6d03 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 61daae778f5abcf2bc9efea8a6fa3b33ce11d0b9..a49fc171c06d79261f00cc16118595d22077b29b 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 001cde58667bc3b8edf80a6ed54298302b55d20c..486fd6770a231ed55293df7f54edce03ee55c303 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 046ce37b9c5f85182bc5976705b15e1bede8cd36..9994475cdfe0fb8c646eb1877a84443066a73d93 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 62056d2a89a17791285526bd7f80189dc7d0b018..a4029f119def5d9ca4c5f7f1bc6a452176bf5b06 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 2ea37440ecd65e4ff739a0ee0532bce17e7e2d1c..2c479d9453b4a6e65bc3909c793c221241071707 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 024e0c62cdd8682cdf9f161bef76587e078bbcb3..203a85e10c4c0d1f76f0203cf266b6b7b62353be 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 b9bef6d2a18520c126c46274e463300d84655e14..f997e53799b568372453abbdc854c78d5c628a40 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 a88d7975fe9017e4e5f2289a94bd1ed66a5f59dc..e327d952fa47a490b79b8b9c6d32854de82a0961 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 4e144cf0b1f786a9248a2998311e8109998d8a2d..e327d952fa47a490b79b8b9c6d32854de82a0961 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 def071ed5afd264a036f6d9e75856366fd6ad153..db99fd9ad478bf432bb8491ed7e0e38dcb856030 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 7824973cc60fc1841b16f2cb39323cefcdc3f942..89051c2f34f0c4f05b109ea3c9f35c161cdd316a 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 008557d7341afbf56bd049d3ab93f1f425986f26..bb66213f41332ebfae7172ce9e949bd2a4c60dda 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 0f7b0bd4f874dc13ebfe947e631aa35028df3d87..d11252783a43163cbd0a824e10cb094df58967e4 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 3e4650f4f02c6f7db52a9f4a186d929c3eb7b384..558439d282e451c5f0750dfb474e8c83d55fb6ee 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 f49966eaaa1d52ad73d9eee9e84f5dc6f2603ddb..e75157966839a5a704853b3a48cd290183dae710 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 aed93a350baeaea64fa0635a1bd020bec49b9b9e..6ec1ba559613fc19c80ae08681f3b47459cfd0bd 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 a2e22fe6f59ff70ca4de8fab3d49805e4934af5d..53264a0515d664babba63581e6735b811532a01a 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 50295a03ed5f89cd54df3d45907ebcab9d734255..8871a45519fbb0984b59bd2364e3fe06087e1f63 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 4d8f59be1c226e76c2ddc5a89f5bde2f7de5da8e..c24d4a9dac21aa0a6e03b96185f94db180c2c128 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 5401cf9b03d42d649ccd8a2c58f17777eb3d33f6..94b6dabf265571f7f830cc164413b84506526b67 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 52b3625ac057bf43d8817354b1a74ef73443d313..df442fc1edaa803c7a3304408a2259aaa95ec7f4 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 20a7219535e8b243ead09bd9f13be1cdc3bd51b3..5942e6c72af8bf19fd85fcf34071f869638ba036 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 6053eeda485dd88f281622827bc505cb2228d613..cbe60a02d28bfe7c944b1bc0e2d778b89c23ff42 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 a92e15585063a3780a5f0a2396e5328ccbb59656..9016db48b027bb23d07b6217818abe89b3d982d1 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 eb76c0fb179c46977fc3df02d7ea680ee2bff4da..6bdea4929859d27c6178875b740cad6984e894f7 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 98ed423aa9e4c3ee1b9312783ed0a6a6f07feb69..367a55921e44767f726c115921a09a0df0be3cac 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 1e76ce4946bfcbdeaf9a8215d767c85ee2f4fa34..9e000b70dc9b40039aeea98211cdb88e3a930c41 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 0f2a4332cfc64f6c86bdd0125c962606afff16f4..f667e3573d092f8114a72edaefe3dfd2bbb552c5 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 465234fcd3c3976e5b478d155996b1091d018d31..5a6c0aeface51c0bd908a4aeadfc2df1345bc274 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 fc80eb2aebd3e26d7eeb251877da0937b83fc79a..81a14c1e4823bc40fd0c6f9fb94f197a7bac83d1 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 c839a8acec58e3cb26c1e5f5c2f39f2f376f8202..3e26b4d06ed2c4c88c75c00ab6b5f1f2a7683e53 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 4935499d917ff4221ad89c6bc2c42d09acc2d361..4271aafb6ceaa0e364ba20610e20bfe1aeaf5699 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 0864dcc5852d7a494a4b5191404fa97b9f05a874..6edd65003e04bc8d56e0be5e68711dd886b526ad 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 deb69ee75ec9f45b6eee6a09825046e2b4ced7ab..9b035d99511c7edb7d17f84e171817e6edee3b3a 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 bcd70489c80b81cc5a93523a1531e0ba321292f8..bb48d617379cfd5d92909464a4571e9b987649d7 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 3e8c28692da7895c376c63a8f2c6547d00ddfaa5..e7c37c340411aede138a293b65efff930fcd1f2e 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 b9c24a7c18b986d9f6233671b7ecfd6808a7bb19..b8f434c6d1f1fcc6ef65415ad336b2efee8f786a 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 dc2434541cfe96f472cb8c081f2859ed2b237e66..d42f804b026fdd4d6a1402c4be09b78232d06fe3 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 c8fe6d0aff21a688e3d3365e3a2505c120730265..e1efd44376ec00184b1e15eedf21ad5a9ed46480 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 f3eebc59274a242caa5731a7f56cdd1a5f2c477b..afefaa94d47dbe2e173bbcb9d464e02dd2bfc771 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 e03026f87fb30d52f39b24b6c48381ccdbd30c32..315abdf179d730998a31ef3be62955f892771663 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 828c79a8323ae40dddc99b2cc8f38f23b38d73ee..76c1e9f1e6a37537d3f3ad016ea6411213012116 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 ae8e35e781d8ecc65ee5aa4805d657a875349be1..f1b93b8cc8267b6299f2b299726e05ca560ac881 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 e17e09121473686849b33e203d492ed8d9760697..6b4c467bead7e991a22ad47a394bd135b8837094 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 b264649fcbc26d7774496d1d9c308841c69c769f..facc2c6f4423ed902fc2c478068417b0a08bd823 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 2337863c34061df85c0f0ad60381847d7b780cc0..53cf79da7b43e423bfcc8706eb8aa00682b4a105 100644 Binary files a/htdocs/theme/login_logo.png and b/htdocs/theme/login_logo.png differ