← Back to team overview

openshot.code team mailing list archive

[Merge] lp:~eolinwen/openshot/OlivierThor-1.4 into lp:openshot

 

Cenwen has proposed merging lp:~eolinwen/openshot/OlivierThor-1.4 into lp:openshot.

Requested reviews:
  OpenShot Code (openshot.code)

For more details, see:
https://code.launchpad.net/~eolinwen/openshot/OlivierThor-1.4/+merge/75423

I don't know if it is the usual way when a release if near finished but I'm trying this option. It is the good way to see if it is working. Anyway,I have put all my modification in the bugs that I get opened. It is the good occasion to see what's happen in the launchpad code ( between all the branchs mature, experiemntale,....)
Sorry if I have done an error.
-- 
The attached diff has been truncated due to its size.
https://code.launchpad.net/~eolinwen/openshot/OlivierThor-1.4/+merge/75423
Your team OpenShot Code is requested to review the proposed merge of lp:~eolinwen/openshot/OlivierThor-1.4 into lp:openshot.
=== added directory 'openshot/dvdauthor'
=== added file 'openshot/dvdauthor/BurningIso.py'
--- openshot/dvdauthor/BurningIso.py	1970-01-01 00:00:00 +0000
+++ openshot/dvdauthor/BurningIso.py	2011-09-14 20:36:21 +0000
@@ -0,0 +1,44 @@
+#!/usr/bin/env python
+#*-* coding: utf8 *-*
+#	OpenShot Video Editor is a program that creates, modifies, and edits video files.
+#   Copyright (C) 2009  Jonathan Thomas
+#
+#	This file is part of OpenShot Video Editor (http://launchpad.net/openshot/).
+#
+#	OpenShot Video Editor is free software: you can redistribute it and/or modify
+#	it under the terms of the GNU General Public License as published by
+#	the Free Software Foundation, either version 3 of the License, or
+#	(at your option) any later version.
+#
+#	OpenShot Video Editor is distributed in the hope that it will be useful,
+#	but WITHOUT ANY WARRANTY; without even the implied warranty of
+#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#	GNU General Public License for more details.
+#
+#	You should have received a copy of the GNU General Public License
+#	along with OpenShot Video Editor.  If not, see <http://www.gnu.org/licenses/>.
+#
+#
+#	   BurningIso.py copyright (C) 2011 Olivier Girard aka Cenwen
+#
+#	   Can be used to burn a Iso image or a folder
+#
+#
+
+
+import subprocess
+from classes import messagebox
+
+#init the foreign language
+from language import Language_Init
+
+class Burning:
+    
+        def __init__(self, growisofs_command="growisofs", wodim_command="wodin"):
+                
+                self.growisofs_command = growisofs_command
+                self.wodim_command = wodim_command
+                
+                
+                
+                
\ No newline at end of file

=== added file 'openshot/dvdauthor/CreateIso.py'
--- openshot/dvdauthor/CreateIso.py	1970-01-01 00:00:00 +0000
+++ openshot/dvdauthor/CreateIso.py	2011-09-14 20:36:21 +0000
@@ -0,0 +1,70 @@
+#!/usr/bin/env python
+#*-* coding: utf8 *-*
+#	OpenShot Video Editor is a program that creates, modifies, and edits video files.
+#   Copyright (C) 2009  Jonathan Thomas
+#
+#	This file is part of OpenShot Video Editor (http://launchpad.net/openshot/).
+#
+#	OpenShot Video Editor is free software: you can redistribute it and/or modify
+#	it under the terms of the GNU General Public License as published by
+#	the Free Software Foundation, either version 3 of the License, or
+#	(at your option) any later version.
+#
+#	OpenShot Video Editor is distributed in the hope that it will be useful,
+#	but WITHOUT ANY WARRANTY; without even the implied warranty of
+#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#	GNU General Public License for more details.
+#
+#	You should have received a copy of the GNU General Public License
+#	along with OpenShot Video Editor.  If not, see <http://www.gnu.org/licenses/>.
+#
+#
+#	   CreateIso.py copyright (C) 2011 Olivier Girard aka Cenwenself.project = project.030......................................
+#
+#	   Can be used to create a Iso image ready for burning
+#
+#
+
+
+import subprocess
+from classes import messagebox
+
+#init the foreign language
+from language import Language_Init
+
+class GenerateIso:
+    
+        def __init__(self, project, file_name, device_burner="", genisoimage_command="genisoimage", which_command="which"):
+        
+                self.project = project
+                self.file_name = file_name
+                self.device_burner = device_burner
+                self.genisoimage_command = genisoimage_command
+                self.device_burner = []
+                self.file_name = ""
+                self.project = ""
+                
+                #Add language support
+                _ = Language_Init.Translator(project).lang.gettext
+                
+
+        def has_genisoimage_installed(self):
+                """Determine if genisoimage are installed on the system"""
+                
+                if not genisoimage.is_installed == False:
+                    messagebox.show("Openshot", _("Genisoimage is needed but is not installed. You should do that before to re-try"), )
+                
+        def create_the_iso(self, file):
+                """the command for create the iso"""
+                
+                self.file = file
+                self.file = ""
+                self.file_input = ""
+                self.file_output = ""
+                self.export_path = ""
+                self.temp_dir = temp_dir
+                
+                #genisoimage -r -J -V "MyFileToTransformIso" -o "MyFileTransformedInIso".iso mylocation(i.e. /home/user
+                
+                
+                
\ No newline at end of file

=== added directory 'openshot/dvdauthor/authoring_presets'
=== added file 'openshot/dvdauthor/authoring_presets/profile_simple_ntsc_16⁄9.xml'
--- openshot/dvdauthor/authoring_presets/profile_simple_ntsc_16⁄9.xml	1970-01-01 00:00:00 +0000
+++ openshot/dvdauthor/authoring_presets/profile_simple_ntsc_16⁄9.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,1 @@
+ 

=== added file 'openshot/dvdauthor/authoring_presets/profile_simple_ntsc_4⁄3.xml'
--- openshot/dvdauthor/authoring_presets/profile_simple_ntsc_4⁄3.xml	1970-01-01 00:00:00 +0000
+++ openshot/dvdauthor/authoring_presets/profile_simple_ntsc_4⁄3.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,1 @@
+ 

=== added file 'openshot/dvdauthor/authoring_presets/profile_simple_pal_16⁄9.xml'
--- openshot/dvdauthor/authoring_presets/profile_simple_pal_16⁄9.xml	1970-01-01 00:00:00 +0000
+++ openshot/dvdauthor/authoring_presets/profile_simple_pal_16⁄9.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE openshot-authoring>
+ <authoring>
+                <type translatable="True">Simple</type>
+                <title translatable="True">Pal 16/9</title>
+                    <dvdauthor dest="output-dir">
+                          <vmgm>
+                          <titleset>
+                          </titleset>
+                          </vmgm>
+                    </dvdauthor>
+</authoring> 

=== added file 'openshot/dvdauthor/authoring_presets/profile_simple_pal_4⁄3.xml'
--- openshot/dvdauthor/authoring_presets/profile_simple_pal_4⁄3.xml	1970-01-01 00:00:00 +0000
+++ openshot/dvdauthor/authoring_presets/profile_simple_pal_4⁄3.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE openshot-authoring>
+ <authoring>
+                <type translatable="True">Simple</type>
+                <title translatable="True">Pal 4/3</title>
+                    <dvdauthor dest="output-dir">
+                          <vmgm>
+                          <titleset>
+                          </titleset>
+                          </vmgm>
+                    </dvdauthor>
+</authoring>

=== added file 'openshot/dvdauthor/dvdauthor.py'
--- openshot/dvdauthor/dvdauthor.py	1970-01-01 00:00:00 +0000
+++ openshot/dvdauthor/dvdauthor.py	2011-09-14 20:36:21 +0000
@@ -0,0 +1,46 @@
+#!/usr/bin/env python
+#*-* coding: utf8 *-*
+#	OpenShot Video Editor is a program that creates, modifies, and edits video files.
+#   Copyright (C) 2009  Jonathan Thomas
+#
+#	This file is part of OpenShot Video Editor (http://launchpad.net/openshot/).
+#
+#	OpenShot Video Editor is free software: you can redistribute it and/or modify
+#	it under the terms of the GNU General Public License as published by
+#	the Free Software Foundation, either version 3 of the License, or
+#	(at your option) any later version.
+#
+#	OpenShot Video Editor is distributed in the hope that it will be useful,
+#	but WITHOUT ANY WARRANTY; without even the implied warranty of
+#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#	GNU General Public License for more details.
+#
+#	You should have received a copy of the GNU General Public License
+#	along with OpenShot Video Editor.  If not, see <http://www.gnu.org/licenses/>.
+#
+#
+#	  dvdauthor.py copyright (C) 2011 Olivier Girard aka Cenwen
+#
+#	   Can be used to create a authoring menu
+#
+#
+
+
+import subprocess
+from classes import messagebox
+
+#init the foreign language
+from language import Language_Init
+
+
+class DvdAuthor:
+        
+        def __init__(self, dvdauthor_command="dvdauthor"):
+                
+                self.dvdauthor_command = dvdauthor_command
+                
+                
+                #init the foreign language
+                _ = Language_Init.Translator(project).lang.gettext
+                
+                
\ No newline at end of file

=== added directory 'openshot/dvdauthor/images'
=== added file 'openshot/dvdauthor/images/AboutLogo.png'
Binary files openshot/dvdauthor/images/AboutLogo.png	1970-01-01 00:00:00 +0000 and openshot/dvdauthor/images/AboutLogo.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/dvdauthor/images/WizardDependancies.png'
Binary files openshot/dvdauthor/images/WizardDependancies.png	1970-01-01 00:00:00 +0000 and openshot/dvdauthor/images/WizardDependancies.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/dvdauthor/images/k3b-icon.png'
Binary files openshot/dvdauthor/images/k3b-icon.png	1970-01-01 00:00:00 +0000 and openshot/dvdauthor/images/k3b-icon.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/dvdauthor/images/k3b.png'
Binary files openshot/dvdauthor/images/k3b.png	1970-01-01 00:00:00 +0000 and openshot/dvdauthor/images/k3b.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/dvdauthor/images/media-optical-blu-ray.png'
Binary files openshot/dvdauthor/images/media-optical-blu-ray.png	1970-01-01 00:00:00 +0000 and openshot/dvdauthor/images/media-optical-blu-ray.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/dvdauthor/images/media-optical-dvd-video.png'
Binary files openshot/dvdauthor/images/media-optical-dvd-video.png	1970-01-01 00:00:00 +0000 and openshot/dvdauthor/images/media-optical-dvd-video.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/dvdauthor/images/tools-media-optical-burn.png'
Binary files openshot/dvdauthor/images/tools-media-optical-burn.png	1970-01-01 00:00:00 +0000 and openshot/dvdauthor/images/tools-media-optical-burn.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/effects/equaliz0r.xml'
--- openshot/effects/equaliz0r.xml	1970-01-01 00:00:00 +0000
+++ openshot/effects/equaliz0r.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE openshot-effect>
+<effect>
+	<title translatable="True">Equaliz0r</title>
+	<description translatable="True">Equalizes the intensity histograms</description>
+	<icon>contrast.png</icon>
+	<category>Video</category>
+	<service>frei0r.equaliz0r</service>
+</effect>

=== renamed file 'openshot/effects/equaliz0r.xml' => 'openshot/effects/equaliz0r.xml.moved'
=== added file 'openshot/effects/flippo.xml'
--- openshot/effects/flippo.xml	1970-01-01 00:00:00 +0000
+++ openshot/effects/flippo.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE openshot-effect>
+<effect>
+	<title translatable="True">flippo</title>
+	<description translatable="True">flippo inverse l'image selon X et/ou Y</description>
+	<icon>blur.png</icon>
+	<category>Video</category>
+	<service>frei0r.flippo</service>
+	<param name="X axis" type="dropdown" title="X axis" description="Inversement de l'image selon l'axe X ?">
+		<values>
+			<value name="Yes" num="1.0"/>
+			<value name="No" num="0.0"/> 
+		</values>
+		<default>1.0</default>
+	</param>
+	<param name="Y axis" type="dropdown" title="X axis" description="Inversement de l'image selon l'axe Y ?">
+		<values>
+			<value name="Yes" num="1.0"/>
+			<value name="No" num="0.0"/> 
+		</values>
+		<default>1.0</default>
+	</param>
+
+</effect>

=== renamed file 'openshot/effects/flippo.xml' => 'openshot/effects/flippo.xml.moved'
=== added file 'openshot/effects/icons/medium/equaliz0r.png'
Binary files openshot/effects/icons/medium/equaliz0r.png	1970-01-01 00:00:00 +0000 and openshot/effects/icons/medium/equaliz0r.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/effects/icons/medium/flippo.png'
Binary files openshot/effects/icons/medium/flippo.png	1970-01-01 00:00:00 +0000 and openshot/effects/icons/medium/flippo.png	2011-09-14 20:36:21 +0000 differ
=== renamed file 'openshot/effects/icons/medium/flippo.png' => 'openshot/effects/icons/medium/flippo.png.moved'
=== added file 'openshot/effects/icons/small/equaliz0r.png'
Binary files openshot/effects/icons/small/equaliz0r.png	1970-01-01 00:00:00 +0000 and openshot/effects/icons/small/equaliz0r.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/effects/icons/small/flippo.png'
Binary files openshot/effects/icons/small/flippo.png	1970-01-01 00:00:00 +0000 and openshot/effects/icons/small/flippo.png	2011-09-14 20:36:21 +0000 differ
=== renamed file 'openshot/effects/icons/small/flippo.png' => 'openshot/effects/icons/small/flippo.png.moved'
=== modified file 'openshot/images/AboutLogo.png'
Binary files openshot/images/AboutLogo.png	2010-09-11 03:57:08 +0000 and openshot/images/AboutLogo.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/images/WizardDependancies.png'
Binary files openshot/images/WizardDependancies.png	1970-01-01 00:00:00 +0000 and openshot/images/WizardDependancies.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/images/k3b-icon.png'
Binary files openshot/images/k3b-icon.png	1970-01-01 00:00:00 +0000 and openshot/images/k3b-icon.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/images/media-optical-dvd-video.png'
Binary files openshot/images/media-optical-dvd-video.png	1970-01-01 00:00:00 +0000 and openshot/images/media-optical-dvd-video.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/images/tools-media-optical-burn.png'
Binary files openshot/images/tools-media-optical-burn.png	1970-01-01 00:00:00 +0000 and openshot/images/tools-media-optical-burn.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_blue'
=== added file 'openshot/themes/aqua_glassy_big_blue/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_big_blue/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_big_blue/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_big_blue/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/Track_Left.png'
Binary files openshot/themes/aqua_glassy_big_blue/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_big_blue/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_big_blue/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_big_blue/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/Track_Right.png'
Binary files openshot/themes/aqua_glassy_big_blue/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_big_blue/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_big_blue/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_big_blue/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_big_blue/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/effect.png'
Binary files openshot/themes/aqua_glassy_big_blue/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_blue/icons'
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/minus.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/next.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/pause.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/play.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/plus.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/previous.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/razor.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/resize.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/snap.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/icons/stop.png'
Binary files openshot/themes/aqua_glassy_big_blue/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/marker.png'
Binary files openshot/themes/aqua_glassy_big_blue/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/not_visible.png'
Binary files openshot/themes/aqua_glassy_big_blue/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_blue/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/pause.png'
Binary files openshot/themes/aqua_glassy_big_blue/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/play_head.png'
Binary files openshot/themes/aqua_glassy_big_blue/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/position_line.png'
Binary files openshot/themes/aqua_glassy_big_blue/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/ruler_left.png'
Binary files openshot/themes/aqua_glassy_big_blue/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_big_blue/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/ruler_right.png'
Binary files openshot/themes/aqua_glassy_big_blue/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_big_blue/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/speaker.png'
Binary files openshot/themes/aqua_glassy_big_blue/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_big_blue/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_big_blue/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_big_blue/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/theme.xml'
--- openshot/themes/aqua_glassy_big_blue/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_big_blue/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_big_blue/transition_down.png'
Binary files openshot/themes/aqua_glassy_big_blue/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/transition_mask.png'
Binary files openshot/themes/aqua_glassy_big_blue/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/transition_up.png'
Binary files openshot/themes/aqua_glassy_big_blue/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/visible.png'
Binary files openshot/themes/aqua_glassy_big_blue/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_blue/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_blue/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_blue/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_gray_clear'
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Track_Left.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Track_Right.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/effect.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_gray_clear/icons'
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/minus.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/next.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/pause.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/play.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/plus.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/previous.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/razor.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/resize.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/snap.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/icons/stop.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/marker.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/not_visible.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/pause.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/play_head.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/position_line.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/ruler_left.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/ruler_right.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/speaker.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/theme.xml'
--- openshot/themes/aqua_glassy_big_gray_clear/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_big_gray_clear/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_big_gray_clear/transition_down.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/transition_mask.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/transition_up.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/visible.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_clear/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_gray_clear/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_clear/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_gray_dark'
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Track_Left.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Track_Right.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/effect.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_gray_dark/icons'
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/minus.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/next.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/pause.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/play.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/plus.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/previous.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/razor.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/resize.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/snap.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/icons/stop.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/marker.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/not_visible.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/pause.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/play_head.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/position_line.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/ruler_left.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/ruler_right.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/speaker.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/theme.xml'
--- openshot/themes/aqua_glassy_big_gray_dark/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_big_gray_dark/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_big_gray_dark/transition_down.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/transition_mask.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/transition_up.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/visible.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_gray_dark/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_gray_dark/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_gray_dark/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_green'
=== added file 'openshot/themes/aqua_glassy_big_green/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_big_green/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_big_green/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_big_green/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/Track_Left.png'
Binary files openshot/themes/aqua_glassy_big_green/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_big_green/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_big_green/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_big_green/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/Track_Right.png'
Binary files openshot/themes/aqua_glassy_big_green/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_big_green/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_big_green/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_big_green/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_big_green/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/effect.png'
Binary files openshot/themes/aqua_glassy_big_green/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_green/icons'
=== added file 'openshot/themes/aqua_glassy_big_green/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/minus.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/next.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/pause.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/play.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/plus.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/previous.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/razor.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/resize.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/snap.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/icons/stop.png'
Binary files openshot/themes/aqua_glassy_big_green/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/marker.png'
Binary files openshot/themes/aqua_glassy_big_green/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/not_visible.png'
Binary files openshot/themes/aqua_glassy_big_green/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_green/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/pause.png'
Binary files openshot/themes/aqua_glassy_big_green/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/play_head.png'
Binary files openshot/themes/aqua_glassy_big_green/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/position_line.png'
Binary files openshot/themes/aqua_glassy_big_green/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/ruler_left.png'
Binary files openshot/themes/aqua_glassy_big_green/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_big_green/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/ruler_right.png'
Binary files openshot/themes/aqua_glassy_big_green/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_big_green/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/speaker.png'
Binary files openshot/themes/aqua_glassy_big_green/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_big_green/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_big_green/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_big_green/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/theme.xml'
--- openshot/themes/aqua_glassy_big_green/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_big_green/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_big_green/transition_down.png'
Binary files openshot/themes/aqua_glassy_big_green/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/transition_mask.png'
Binary files openshot/themes/aqua_glassy_big_green/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/transition_up.png'
Binary files openshot/themes/aqua_glassy_big_green/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/visible.png'
Binary files openshot/themes/aqua_glassy_big_green/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_green/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_green/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_green/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_orange'
=== added file 'openshot/themes/aqua_glassy_big_orange/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_big_orange/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_big_orange/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_big_orange/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/Track_Left.png'
Binary files openshot/themes/aqua_glassy_big_orange/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_big_orange/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_big_orange/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_big_orange/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/Track_Right.png'
Binary files openshot/themes/aqua_glassy_big_orange/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_big_orange/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_big_orange/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_big_orange/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_big_orange/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/effect.png'
Binary files openshot/themes/aqua_glassy_big_orange/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_orange/icons'
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/minus.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/next.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/pause.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/play.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/plus.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/previous.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/razor.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/resize.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/snap.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/icons/stop.png'
Binary files openshot/themes/aqua_glassy_big_orange/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/marker.png'
Binary files openshot/themes/aqua_glassy_big_orange/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/not_visible.png'
Binary files openshot/themes/aqua_glassy_big_orange/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_orange/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/pause.png'
Binary files openshot/themes/aqua_glassy_big_orange/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/play_head.png'
Binary files openshot/themes/aqua_glassy_big_orange/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/position_line.png'
Binary files openshot/themes/aqua_glassy_big_orange/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/ruler_left.png'
Binary files openshot/themes/aqua_glassy_big_orange/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_big_orange/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/ruler_right.png'
Binary files openshot/themes/aqua_glassy_big_orange/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_big_orange/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/speaker.png'
Binary files openshot/themes/aqua_glassy_big_orange/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_big_orange/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_big_orange/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_big_orange/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/theme.xml'
--- openshot/themes/aqua_glassy_big_orange/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_big_orange/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_big_orange/transition_down.png'
Binary files openshot/themes/aqua_glassy_big_orange/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/transition_mask.png'
Binary files openshot/themes/aqua_glassy_big_orange/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/transition_up.png'
Binary files openshot/themes/aqua_glassy_big_orange/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/visible.png'
Binary files openshot/themes/aqua_glassy_big_orange/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_orange/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_orange/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_orange/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_pink'
=== added file 'openshot/themes/aqua_glassy_big_pink/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_big_pink/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_big_pink/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_big_pink/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/Track_Left.png'
Binary files openshot/themes/aqua_glassy_big_pink/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_big_pink/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_big_pink/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_big_pink/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/Track_Right.png'
Binary files openshot/themes/aqua_glassy_big_pink/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_big_pink/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_big_pink/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_big_pink/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_big_pink/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/effect.png'
Binary files openshot/themes/aqua_glassy_big_pink/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_pink/icons'
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/minus.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/next.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/pause.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/play.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/plus.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/previous.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/razor.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/resize.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/snap.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/icons/stop.png'
Binary files openshot/themes/aqua_glassy_big_pink/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/marker.png'
Binary files openshot/themes/aqua_glassy_big_pink/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/not_visible.png'
Binary files openshot/themes/aqua_glassy_big_pink/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_pink/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/pause.png'
Binary files openshot/themes/aqua_glassy_big_pink/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/play_head.png'
Binary files openshot/themes/aqua_glassy_big_pink/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/position_line.png'
Binary files openshot/themes/aqua_glassy_big_pink/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/ruler_left.png'
Binary files openshot/themes/aqua_glassy_big_pink/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_big_pink/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/ruler_right.png'
Binary files openshot/themes/aqua_glassy_big_pink/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_big_pink/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/speaker.png'
Binary files openshot/themes/aqua_glassy_big_pink/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_big_pink/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_big_pink/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_big_pink/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/theme.xml'
--- openshot/themes/aqua_glassy_big_pink/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_big_pink/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_big_pink/transition_down.png'
Binary files openshot/themes/aqua_glassy_big_pink/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/transition_mask.png'
Binary files openshot/themes/aqua_glassy_big_pink/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/transition_up.png'
Binary files openshot/themes/aqua_glassy_big_pink/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/visible.png'
Binary files openshot/themes/aqua_glassy_big_pink/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_pink/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_pink/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_pink/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_purple'
=== added file 'openshot/themes/aqua_glassy_big_purple/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_big_purple/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_big_purple/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_big_purple/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/Track_Left.png'
Binary files openshot/themes/aqua_glassy_big_purple/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_big_purple/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_big_purple/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_big_purple/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/Track_Right.png'
Binary files openshot/themes/aqua_glassy_big_purple/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_big_purple/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_big_purple/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_big_purple/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_big_purple/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/effect.png'
Binary files openshot/themes/aqua_glassy_big_purple/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_purple/icons'
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/minus.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/next.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/pause.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/play.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/plus.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/previous.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/razor.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/resize.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/snap.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/icons/stop.png'
Binary files openshot/themes/aqua_glassy_big_purple/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/marker.png'
Binary files openshot/themes/aqua_glassy_big_purple/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/not_visible.png'
Binary files openshot/themes/aqua_glassy_big_purple/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_purple/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/pause.png'
Binary files openshot/themes/aqua_glassy_big_purple/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/play_head.png'
Binary files openshot/themes/aqua_glassy_big_purple/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/position_line.png'
Binary files openshot/themes/aqua_glassy_big_purple/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/ruler_left.png'
Binary files openshot/themes/aqua_glassy_big_purple/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_big_purple/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/ruler_right.png'
Binary files openshot/themes/aqua_glassy_big_purple/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_big_purple/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/speaker.png'
Binary files openshot/themes/aqua_glassy_big_purple/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_big_purple/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_big_purple/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_big_purple/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/theme.xml'
--- openshot/themes/aqua_glassy_big_purple/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_big_purple/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_big_purple/transition_down.png'
Binary files openshot/themes/aqua_glassy_big_purple/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/transition_mask.png'
Binary files openshot/themes/aqua_glassy_big_purple/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/transition_up.png'
Binary files openshot/themes/aqua_glassy_big_purple/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/visible.png'
Binary files openshot/themes/aqua_glassy_big_purple/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_purple/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_purple/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_purple/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_red'
=== added file 'openshot/themes/aqua_glassy_big_red/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_big_red/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_big_red/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_big_red/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/Track_Left.png'
Binary files openshot/themes/aqua_glassy_big_red/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_big_red/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_big_red/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_big_red/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/Track_Right.png'
Binary files openshot/themes/aqua_glassy_big_red/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_big_red/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_big_red/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_big_red/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_big_red/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/effect.png'
Binary files openshot/themes/aqua_glassy_big_red/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_red/icons'
=== added file 'openshot/themes/aqua_glassy_big_red/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/minus.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/next.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/pause.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/play.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/plus.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/previous.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/razor.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/resize.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/snap.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/icons/stop.png'
Binary files openshot/themes/aqua_glassy_big_red/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/marker.png'
Binary files openshot/themes/aqua_glassy_big_red/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/not_visible.png'
Binary files openshot/themes/aqua_glassy_big_red/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_red/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/pause.png'
Binary files openshot/themes/aqua_glassy_big_red/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/play_head.png'
Binary files openshot/themes/aqua_glassy_big_red/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/position_line.png'
Binary files openshot/themes/aqua_glassy_big_red/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/ruler_left.png'
Binary files openshot/themes/aqua_glassy_big_red/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_big_red/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/ruler_right.png'
Binary files openshot/themes/aqua_glassy_big_red/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_big_red/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/speaker.png'
Binary files openshot/themes/aqua_glassy_big_red/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_big_red/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_big_red/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_big_red/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/theme.xml'
--- openshot/themes/aqua_glassy_big_red/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_big_red/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_big_red/transition_down.png'
Binary files openshot/themes/aqua_glassy_big_red/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/transition_mask.png'
Binary files openshot/themes/aqua_glassy_big_red/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/transition_up.png'
Binary files openshot/themes/aqua_glassy_big_red/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/visible.png'
Binary files openshot/themes/aqua_glassy_big_red/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_red/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_red/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_red/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_yellow'
=== added file 'openshot/themes/aqua_glassy_big_yellow/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/Track_Left.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/Track_Right.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_big_yellow/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/effect.png'
Binary files openshot/themes/aqua_glassy_big_yellow/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_big_yellow/icons'
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/minus.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/next.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/pause.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/play.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/plus.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/previous.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/razor.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/resize.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/snap.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/icons/stop.png'
Binary files openshot/themes/aqua_glassy_big_yellow/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/marker.png'
Binary files openshot/themes/aqua_glassy_big_yellow/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/not_visible.png'
Binary files openshot/themes/aqua_glassy_big_yellow/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_yellow/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/pause.png'
Binary files openshot/themes/aqua_glassy_big_yellow/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/play_head.png'
Binary files openshot/themes/aqua_glassy_big_yellow/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/position_line.png'
Binary files openshot/themes/aqua_glassy_big_yellow/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/ruler_left.png'
Binary files openshot/themes/aqua_glassy_big_yellow/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_big_yellow/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/ruler_right.png'
Binary files openshot/themes/aqua_glassy_big_yellow/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_big_yellow/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/speaker.png'
Binary files openshot/themes/aqua_glassy_big_yellow/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_big_yellow/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_big_yellow/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_big_yellow/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/theme.xml'
--- openshot/themes/aqua_glassy_big_yellow/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_big_yellow/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_big_yellow/transition_down.png'
Binary files openshot/themes/aqua_glassy_big_yellow/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/transition_mask.png'
Binary files openshot/themes/aqua_glassy_big_yellow/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/transition_up.png'
Binary files openshot/themes/aqua_glassy_big_yellow/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/visible.png'
Binary files openshot/themes/aqua_glassy_big_yellow/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_big_yellow/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_big_yellow/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_big_yellow/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_blue'
=== added file 'openshot/themes/aqua_glassy_blue/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_blue/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_blue/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_blue/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/Track_Left.png'
Binary files openshot/themes/aqua_glassy_blue/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_blue/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_blue/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_blue/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/Track_Right.png'
Binary files openshot/themes/aqua_glassy_blue/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_blue/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_blue/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_blue/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_blue/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/effect.png'
Binary files openshot/themes/aqua_glassy_blue/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_blue/icons'
=== added file 'openshot/themes/aqua_glassy_blue/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_blue/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_blue/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_blue/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/minus.png'
Binary files openshot/themes/aqua_glassy_blue/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_blue/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/next.png'
Binary files openshot/themes/aqua_glassy_blue/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_blue/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_blue/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/pause.png'
Binary files openshot/themes/aqua_glassy_blue/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_blue/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/play.png'
Binary files openshot/themes/aqua_glassy_blue/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_blue/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/plus.png'
Binary files openshot/themes/aqua_glassy_blue/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/previous.png'
Binary files openshot/themes/aqua_glassy_blue/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_blue/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/razor.png'
Binary files openshot/themes/aqua_glassy_blue/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_blue/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_blue/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/resize.png'
Binary files openshot/themes/aqua_glassy_blue/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_blue/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_blue/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/snap.png'
Binary files openshot/themes/aqua_glassy_blue/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_blue/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/icons/stop.png'
Binary files openshot/themes/aqua_glassy_blue/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/marker.png'
Binary files openshot/themes/aqua_glassy_blue/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/not_visible.png'
Binary files openshot/themes/aqua_glassy_blue/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_blue/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/pause.png'
Binary files openshot/themes/aqua_glassy_blue/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/play_head.png'
Binary files openshot/themes/aqua_glassy_blue/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/position_line.png'
Binary files openshot/themes/aqua_glassy_blue/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/ruler_left.png'
Binary files openshot/themes/aqua_glassy_blue/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_blue/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/ruler_right.png'
Binary files openshot/themes/aqua_glassy_blue/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_blue/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/speaker.png'
Binary files openshot/themes/aqua_glassy_blue/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_blue/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_blue/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_blue/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/theme.xml'
--- openshot/themes/aqua_glassy_blue/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_blue/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>30</x>
+			<y>30</y>
+		</visible>
+		<speaker>
+			<x>50</x>
+			<y>30</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>90</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>108</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>40</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>15</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_blue/transition_down.png'
Binary files openshot/themes/aqua_glassy_blue/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/transition_mask.png'
Binary files openshot/themes/aqua_glassy_blue/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/transition_up.png'
Binary files openshot/themes/aqua_glassy_blue/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/visible.png'
Binary files openshot/themes/aqua_glassy_blue/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_blue/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_blue/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_blue/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_green'
=== added file 'openshot/themes/aqua_glassy_green/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_green/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_green/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_green/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/Track_Left.png'
Binary files openshot/themes/aqua_glassy_green/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_green/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_green/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_green/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/Track_Right.png'
Binary files openshot/themes/aqua_glassy_green/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_green/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_green/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_green/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_green/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/effect.png'
Binary files openshot/themes/aqua_glassy_green/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_green/icons'
=== added file 'openshot/themes/aqua_glassy_green/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_green/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_green/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_green/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/minus.png'
Binary files openshot/themes/aqua_glassy_green/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_green/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/next.png'
Binary files openshot/themes/aqua_glassy_green/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_green/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_green/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/pause.png'
Binary files openshot/themes/aqua_glassy_green/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_green/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/play.png'
Binary files openshot/themes/aqua_glassy_green/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_green/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/plus.png'
Binary files openshot/themes/aqua_glassy_green/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/previous.png'
Binary files openshot/themes/aqua_glassy_green/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_green/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/razor.png'
Binary files openshot/themes/aqua_glassy_green/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_green/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_green/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/resize.png'
Binary files openshot/themes/aqua_glassy_green/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_green/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_green/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/snap.png'
Binary files openshot/themes/aqua_glassy_green/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_green/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/icons/stop.png'
Binary files openshot/themes/aqua_glassy_green/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/marker.png'
Binary files openshot/themes/aqua_glassy_green/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/not_visible.png'
Binary files openshot/themes/aqua_glassy_green/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_green/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/pause.png'
Binary files openshot/themes/aqua_glassy_green/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/play_head.png'
Binary files openshot/themes/aqua_glassy_green/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/position_line.png'
Binary files openshot/themes/aqua_glassy_green/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/ruler_left.png'
Binary files openshot/themes/aqua_glassy_green/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_green/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/ruler_right.png'
Binary files openshot/themes/aqua_glassy_green/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_green/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/speaker.png'
Binary files openshot/themes/aqua_glassy_green/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_green/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_green/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_green/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/theme.xml'
--- openshot/themes/aqua_glassy_green/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_green/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>30</x>
+			<y>30</y>
+		</visible>
+		<speaker>
+			<x>50</x>
+			<y>30</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>90</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>108</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>40</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>15</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_green/transition_down.png'
Binary files openshot/themes/aqua_glassy_green/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/transition_mask.png'
Binary files openshot/themes/aqua_glassy_green/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/transition_up.png'
Binary files openshot/themes/aqua_glassy_green/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/visible.png'
Binary files openshot/themes/aqua_glassy_green/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_green/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_green/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_green/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_grey_dark'
=== added file 'openshot/themes/aqua_glassy_grey_dark/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/Track_Left.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/Track_Right.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_grey_dark/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/effect.png'
Binary files openshot/themes/aqua_glassy_grey_dark/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_grey_dark/icons'
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/minus.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/next.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/pause.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/play.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/plus.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/previous.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/razor.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/resize.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/snap.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/icons/stop.png'
Binary files openshot/themes/aqua_glassy_grey_dark/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/marker.png'
Binary files openshot/themes/aqua_glassy_grey_dark/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/not_visible.png'
Binary files openshot/themes/aqua_glassy_grey_dark/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_grey_dark/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/pause.png'
Binary files openshot/themes/aqua_glassy_grey_dark/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/play_head.png'
Binary files openshot/themes/aqua_glassy_grey_dark/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/position_line.png'
Binary files openshot/themes/aqua_glassy_grey_dark/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/ruler_left.png'
Binary files openshot/themes/aqua_glassy_grey_dark/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_grey_dark/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/ruler_right.png'
Binary files openshot/themes/aqua_glassy_grey_dark/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_grey_dark/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/speaker.png'
Binary files openshot/themes/aqua_glassy_grey_dark/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_grey_dark/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_grey_dark/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_grey_dark/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/theme.xml'
--- openshot/themes/aqua_glassy_grey_dark/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_grey_dark/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>30</x>
+			<y>30</y>
+		</visible>
+		<speaker>
+			<x>50</x>
+			<y>30</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>90</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>108</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>40</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>15</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_grey_dark/transition_down.png'
Binary files openshot/themes/aqua_glassy_grey_dark/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/transition_mask.png'
Binary files openshot/themes/aqua_glassy_grey_dark/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/transition_up.png'
Binary files openshot/themes/aqua_glassy_grey_dark/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/visible.png'
Binary files openshot/themes/aqua_glassy_grey_dark/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_dark/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_grey_dark/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_dark/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_grey_light'
=== added file 'openshot/themes/aqua_glassy_grey_light/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_grey_light/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_grey_light/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_grey_light/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/Track_Left.png'
Binary files openshot/themes/aqua_glassy_grey_light/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_grey_light/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_grey_light/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_grey_light/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/Track_Right.png'
Binary files openshot/themes/aqua_glassy_grey_light/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_grey_light/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_grey_light/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_grey_light/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_grey_light/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/effect.png'
Binary files openshot/themes/aqua_glassy_grey_light/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_grey_light/icons'
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/minus.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/next.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/pause.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/play.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/plus.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/previous.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/razor.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/resize.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/snap.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/icons/stop.png'
Binary files openshot/themes/aqua_glassy_grey_light/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/marker.png'
Binary files openshot/themes/aqua_glassy_grey_light/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/not_visible.png'
Binary files openshot/themes/aqua_glassy_grey_light/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_grey_light/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/pause.png'
Binary files openshot/themes/aqua_glassy_grey_light/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/play_head.png'
Binary files openshot/themes/aqua_glassy_grey_light/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/position_line.png'
Binary files openshot/themes/aqua_glassy_grey_light/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/ruler_left.png'
Binary files openshot/themes/aqua_glassy_grey_light/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_grey_light/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/ruler_right.png'
Binary files openshot/themes/aqua_glassy_grey_light/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_grey_light/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/speaker.png'
Binary files openshot/themes/aqua_glassy_grey_light/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_grey_light/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_grey_light/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_grey_light/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/theme.xml'
--- openshot/themes/aqua_glassy_grey_light/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_grey_light/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>30</x>
+			<y>30</y>
+		</visible>
+		<speaker>
+			<x>50</x>
+			<y>30</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>90</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>108</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>40</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>15</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_grey_light/transition_down.png'
Binary files openshot/themes/aqua_glassy_grey_light/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/transition_mask.png'
Binary files openshot/themes/aqua_glassy_grey_light/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/transition_up.png'
Binary files openshot/themes/aqua_glassy_grey_light/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/visible.png'
Binary files openshot/themes/aqua_glassy_grey_light/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_grey_light/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_grey_light/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_grey_light/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_orange'
=== added file 'openshot/themes/aqua_glassy_orange/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_orange/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_orange/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_orange/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/Track_Left.png'
Binary files openshot/themes/aqua_glassy_orange/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_orange/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_orange/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_orange/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/Track_Right.png'
Binary files openshot/themes/aqua_glassy_orange/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_orange/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_orange/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_orange/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_orange/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/effect.png'
Binary files openshot/themes/aqua_glassy_orange/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_orange/icons'
=== added file 'openshot/themes/aqua_glassy_orange/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_orange/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_orange/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_orange/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/minus.png'
Binary files openshot/themes/aqua_glassy_orange/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_orange/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/next.png'
Binary files openshot/themes/aqua_glassy_orange/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_orange/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_orange/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/pause.png'
Binary files openshot/themes/aqua_glassy_orange/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_orange/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/play.png'
Binary files openshot/themes/aqua_glassy_orange/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_orange/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/plus.png'
Binary files openshot/themes/aqua_glassy_orange/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/previous.png'
Binary files openshot/themes/aqua_glassy_orange/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_orange/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/razor.png'
Binary files openshot/themes/aqua_glassy_orange/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_orange/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_orange/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/resize.png'
Binary files openshot/themes/aqua_glassy_orange/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_orange/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_orange/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/snap.png'
Binary files openshot/themes/aqua_glassy_orange/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_orange/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/icons/stop.png'
Binary files openshot/themes/aqua_glassy_orange/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/marker.png'
Binary files openshot/themes/aqua_glassy_orange/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/not_visible.png'
Binary files openshot/themes/aqua_glassy_orange/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_orange/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/pause.png'
Binary files openshot/themes/aqua_glassy_orange/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/play_head.png'
Binary files openshot/themes/aqua_glassy_orange/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/position_line.png'
Binary files openshot/themes/aqua_glassy_orange/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/ruler_left.png'
Binary files openshot/themes/aqua_glassy_orange/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_orange/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/ruler_right.png'
Binary files openshot/themes/aqua_glassy_orange/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_orange/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/speaker.png'
Binary files openshot/themes/aqua_glassy_orange/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_orange/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_orange/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_orange/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/theme.xml'
--- openshot/themes/aqua_glassy_orange/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_orange/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>30</x>
+			<y>30</y>
+		</visible>
+		<speaker>
+			<x>50</x>
+			<y>30</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>90</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>108</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>40</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>15</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_orange/transition_down.png'
Binary files openshot/themes/aqua_glassy_orange/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/transition_mask.png'
Binary files openshot/themes/aqua_glassy_orange/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/transition_up.png'
Binary files openshot/themes/aqua_glassy_orange/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/visible.png'
Binary files openshot/themes/aqua_glassy_orange/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_orange/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_orange/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_orange/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_pink'
=== added file 'openshot/themes/aqua_glassy_pink/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_pink/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_pink/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_pink/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/Track_Left.png'
Binary files openshot/themes/aqua_glassy_pink/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_pink/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_pink/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_pink/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/Track_Right.png'
Binary files openshot/themes/aqua_glassy_pink/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_pink/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_pink/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_pink/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_pink/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/effect.png'
Binary files openshot/themes/aqua_glassy_pink/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_pink/icons'
=== added file 'openshot/themes/aqua_glassy_pink/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_pink/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_pink/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_pink/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/minus.png'
Binary files openshot/themes/aqua_glassy_pink/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_pink/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/next.png'
Binary files openshot/themes/aqua_glassy_pink/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_pink/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_pink/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/pause.png'
Binary files openshot/themes/aqua_glassy_pink/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_pink/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/play.png'
Binary files openshot/themes/aqua_glassy_pink/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_pink/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/plus.png'
Binary files openshot/themes/aqua_glassy_pink/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/previous.png'
Binary files openshot/themes/aqua_glassy_pink/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_pink/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/razor.png'
Binary files openshot/themes/aqua_glassy_pink/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_pink/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_pink/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/resize.png'
Binary files openshot/themes/aqua_glassy_pink/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_pink/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_pink/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/snap.png'
Binary files openshot/themes/aqua_glassy_pink/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_pink/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/icons/stop.png'
Binary files openshot/themes/aqua_glassy_pink/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/marker.png'
Binary files openshot/themes/aqua_glassy_pink/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/not_visible.png'
Binary files openshot/themes/aqua_glassy_pink/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_pink/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/pause.png'
Binary files openshot/themes/aqua_glassy_pink/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/play_head.png'
Binary files openshot/themes/aqua_glassy_pink/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/position_line.png'
Binary files openshot/themes/aqua_glassy_pink/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/ruler_left.png'
Binary files openshot/themes/aqua_glassy_pink/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_pink/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/ruler_right.png'
Binary files openshot/themes/aqua_glassy_pink/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_pink/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/speaker.png'
Binary files openshot/themes/aqua_glassy_pink/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_pink/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_pink/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_pink/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/theme.xml'
--- openshot/themes/aqua_glassy_pink/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_pink/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>30</x>
+			<y>30</y>
+		</visible>
+		<speaker>
+			<x>50</x>
+			<y>30</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>90</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>108</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>40</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>15</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_pink/transition_down.png'
Binary files openshot/themes/aqua_glassy_pink/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/transition_mask.png'
Binary files openshot/themes/aqua_glassy_pink/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/transition_up.png'
Binary files openshot/themes/aqua_glassy_pink/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/visible.png'
Binary files openshot/themes/aqua_glassy_pink/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_pink/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_pink/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_pink/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_purple'
=== added file 'openshot/themes/aqua_glassy_purple/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_purple/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_purple/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_purple/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/Track_Left.png'
Binary files openshot/themes/aqua_glassy_purple/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_purple/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_purple/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_purple/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/Track_Right.png'
Binary files openshot/themes/aqua_glassy_purple/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_purple/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_purple/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_purple/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_purple/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/effect.png'
Binary files openshot/themes/aqua_glassy_purple/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_purple/icons'
=== added file 'openshot/themes/aqua_glassy_purple/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_purple/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_purple/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_purple/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/minus.png'
Binary files openshot/themes/aqua_glassy_purple/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_purple/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/next.png'
Binary files openshot/themes/aqua_glassy_purple/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_purple/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_purple/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/pause.png'
Binary files openshot/themes/aqua_glassy_purple/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_purple/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/play.png'
Binary files openshot/themes/aqua_glassy_purple/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_purple/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/plus.png'
Binary files openshot/themes/aqua_glassy_purple/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/previous.png'
Binary files openshot/themes/aqua_glassy_purple/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_purple/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/razor.png'
Binary files openshot/themes/aqua_glassy_purple/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_purple/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_purple/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/resize.png'
Binary files openshot/themes/aqua_glassy_purple/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_purple/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_purple/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/snap.png'
Binary files openshot/themes/aqua_glassy_purple/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_purple/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/icons/stop.png'
Binary files openshot/themes/aqua_glassy_purple/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/marker.png'
Binary files openshot/themes/aqua_glassy_purple/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/not_visible.png'
Binary files openshot/themes/aqua_glassy_purple/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_purple/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/pause.png'
Binary files openshot/themes/aqua_glassy_purple/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/play_head.png'
Binary files openshot/themes/aqua_glassy_purple/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/position_line.png'
Binary files openshot/themes/aqua_glassy_purple/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/ruler_left.png'
Binary files openshot/themes/aqua_glassy_purple/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_purple/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/ruler_right.png'
Binary files openshot/themes/aqua_glassy_purple/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_purple/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/speaker.png'
Binary files openshot/themes/aqua_glassy_purple/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_purple/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_purple/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_purple/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/theme.xml'
--- openshot/themes/aqua_glassy_purple/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_purple/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>30</x>
+			<y>30</y>
+		</visible>
+		<speaker>
+			<x>50</x>
+			<y>30</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>90</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>108</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>40</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>15</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_purple/transition_down.png'
Binary files openshot/themes/aqua_glassy_purple/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/transition_mask.png'
Binary files openshot/themes/aqua_glassy_purple/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/transition_up.png'
Binary files openshot/themes/aqua_glassy_purple/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/visible.png'
Binary files openshot/themes/aqua_glassy_purple/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_purple/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_purple/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_purple/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_red'
=== added file 'openshot/themes/aqua_glassy_red/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_red/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_red/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_red/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/Track_Left.png'
Binary files openshot/themes/aqua_glassy_red/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_red/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_red/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_red/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/Track_Right.png'
Binary files openshot/themes/aqua_glassy_red/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_red/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_red/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_red/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_red/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/effect.png'
Binary files openshot/themes/aqua_glassy_red/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_red/icons'
=== added file 'openshot/themes/aqua_glassy_red/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_red/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_red/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_red/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/minus.png'
Binary files openshot/themes/aqua_glassy_red/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_red/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/next.png'
Binary files openshot/themes/aqua_glassy_red/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_red/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_red/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/pause.png'
Binary files openshot/themes/aqua_glassy_red/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_red/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/play.png'
Binary files openshot/themes/aqua_glassy_red/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_red/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/plus.png'
Binary files openshot/themes/aqua_glassy_red/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/previous.png'
Binary files openshot/themes/aqua_glassy_red/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_red/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/razor.png'
Binary files openshot/themes/aqua_glassy_red/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_red/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_red/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/resize.png'
Binary files openshot/themes/aqua_glassy_red/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_red/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_red/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/snap.png'
Binary files openshot/themes/aqua_glassy_red/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_red/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/icons/stop.png'
Binary files openshot/themes/aqua_glassy_red/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/marker.png'
Binary files openshot/themes/aqua_glassy_red/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/not_visible.png'
Binary files openshot/themes/aqua_glassy_red/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_red/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/pause.png'
Binary files openshot/themes/aqua_glassy_red/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/play_head.png'
Binary files openshot/themes/aqua_glassy_red/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/position_line.png'
Binary files openshot/themes/aqua_glassy_red/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/ruler_left.png'
Binary files openshot/themes/aqua_glassy_red/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_red/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/ruler_right.png'
Binary files openshot/themes/aqua_glassy_red/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_red/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/speaker.png'
Binary files openshot/themes/aqua_glassy_red/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_red/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_red/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_red/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/theme.xml'
--- openshot/themes/aqua_glassy_red/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_red/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>30</x>
+			<y>30</y>
+		</visible>
+		<speaker>
+			<x>50</x>
+			<y>30</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>90</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>108</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>40</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>15</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_red/transition_down.png'
Binary files openshot/themes/aqua_glassy_red/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/transition_mask.png'
Binary files openshot/themes/aqua_glassy_red/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/transition_up.png'
Binary files openshot/themes/aqua_glassy_red/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/visible.png'
Binary files openshot/themes/aqua_glassy_red/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_red/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_red/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_red/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_yellow'
=== added file 'openshot/themes/aqua_glassy_yellow/Clip_Left_Gold.png'
Binary files openshot/themes/aqua_glassy_yellow/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/Clip_Middle_Gold.png'
Binary files openshot/themes/aqua_glassy_yellow/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/Clip_Right_Gold.png'
Binary files openshot/themes/aqua_glassy_yellow/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/Track_Left.png'
Binary files openshot/themes/aqua_glassy_yellow/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/Track_Left_Hover.png'
Binary files openshot/themes/aqua_glassy_yellow/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/Track_Middle.png'
Binary files openshot/themes/aqua_glassy_yellow/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/Track_Middle_Hover.png'
Binary files openshot/themes/aqua_glassy_yellow/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/Track_Right.png'
Binary files openshot/themes/aqua_glassy_yellow/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/Track_Right_Hover.png'
Binary files openshot/themes/aqua_glassy_yellow/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/Transition_Left_Blue.png'
Binary files openshot/themes/aqua_glassy_yellow/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/Transition_Middle_Blue.png'
Binary files openshot/themes/aqua_glassy_yellow/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/Transition_Right_Blue.png'
Binary files openshot/themes/aqua_glassy_yellow/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/effect.png'
Binary files openshot/themes/aqua_glassy_yellow/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/aqua_glassy_yellow/icons'
=== added file 'openshot/themes/aqua_glassy_yellow/icons/add_marker.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/arrow.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/media-eject.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/minus.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/move_all_line.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/next.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/next_marker.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/openshot.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/pause.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/pause_big.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/play.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/play_big.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/plus.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/previous.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/previous_marker.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/razor.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/razor_line.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/razor_line_with_razor.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/resize.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/seek_backwards.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/seek_forwards.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/snap.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/snapshot.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/icons/stop.png'
Binary files openshot/themes/aqua_glassy_yellow/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/marker.png'
Binary files openshot/themes/aqua_glassy_yellow/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/not_visible.png'
Binary files openshot/themes/aqua_glassy_yellow/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/not_visible_transparent.png'
Binary files openshot/themes/aqua_glassy_yellow/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/pause.png'
Binary files openshot/themes/aqua_glassy_yellow/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/play_head.png'
Binary files openshot/themes/aqua_glassy_yellow/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/position_line.png'
Binary files openshot/themes/aqua_glassy_yellow/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/ruler_left.png'
Binary files openshot/themes/aqua_glassy_yellow/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/ruler_middle.png'
Binary files openshot/themes/aqua_glassy_yellow/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/ruler_right.png'
Binary files openshot/themes/aqua_glassy_yellow/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/ruler_tick.png'
Binary files openshot/themes/aqua_glassy_yellow/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/speaker.png'
Binary files openshot/themes/aqua_glassy_yellow/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/speaker_mute.png'
Binary files openshot/themes/aqua_glassy_yellow/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/speaker_mute_transparent.png'
Binary files openshot/themes/aqua_glassy_yellow/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/speaker_transparent.png'
Binary files openshot/themes/aqua_glassy_yellow/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/theme.xml'
--- openshot/themes/aqua_glassy_yellow/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/aqua_glassy_yellow/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>30</x>
+			<y>30</y>
+		</visible>
+		<speaker>
+			<x>50</x>
+			<y>30</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>90</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>108</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>40</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>15</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/aqua_glassy_yellow/transition_down.png'
Binary files openshot/themes/aqua_glassy_yellow/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/transition_mask.png'
Binary files openshot/themes/aqua_glassy_yellow/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/transition_up.png'
Binary files openshot/themes/aqua_glassy_yellow/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/visible.png'
Binary files openshot/themes/aqua_glassy_yellow/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/aqua_glassy_yellow/visible_transparent.png'
Binary files openshot/themes/aqua_glassy_yellow/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/aqua_glassy_yellow/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/openblue'
=== renamed directory 'openshot/themes/openblue' => 'openshot/themes/openblue.moved'
=== added file 'openshot/themes/openblue/Clip_Left_Gold.png'
Binary files openshot/themes/openblue/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Clip_Left_Green.png'
Binary files openshot/themes/openblue/Clip_Left_Green.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Left_Green.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Clip_Left_Pink.png'
Binary files openshot/themes/openblue/Clip_Left_Pink.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Left_Pink.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Clip_Left_Red.png'
Binary files openshot/themes/openblue/Clip_Left_Red.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Left_Red.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Clip_Middle_Gold.png'
Binary files openshot/themes/openblue/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Clip_Middle_Green.png'
Binary files openshot/themes/openblue/Clip_Middle_Green.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Middle_Green.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Clip_Middle_Pink.png'
Binary files openshot/themes/openblue/Clip_Middle_Pink.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Middle_Pink.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Clip_Middle_Red.png'
Binary files openshot/themes/openblue/Clip_Middle_Red.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Middle_Red.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Clip_Right_Gold.png'
Binary files openshot/themes/openblue/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Clip_Right_Green.png'
Binary files openshot/themes/openblue/Clip_Right_Green.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Right_Green.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Clip_Right_Pink.png'
Binary files openshot/themes/openblue/Clip_Right_Pink.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Right_Pink.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Clip_Right_Red.png'
Binary files openshot/themes/openblue/Clip_Right_Red.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Clip_Right_Red.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Track_Left.png'
Binary files openshot/themes/openblue/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Track_Left_Hover.png'
Binary files openshot/themes/openblue/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Track_Middle.png'
Binary files openshot/themes/openblue/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Track_Middle_Hover.png'
Binary files openshot/themes/openblue/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Track_Right.png'
Binary files openshot/themes/openblue/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Track_Right_Hover.png'
Binary files openshot/themes/openblue/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Transition_Left_Blue.png'
Binary files openshot/themes/openblue/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Transition_Middle_Blue.png'
Binary files openshot/themes/openblue/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/Transition_Right_Blue.png'
Binary files openshot/themes/openblue/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/effect.png'
Binary files openshot/themes/openblue/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/openblue/icons'
=== added file 'openshot/themes/openblue/icons/add_marker.png'
Binary files openshot/themes/openblue/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/arrow.png'
Binary files openshot/themes/openblue/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/media-eject.png'
Binary files openshot/themes/openblue/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/minus.png'
Binary files openshot/themes/openblue/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/move_all_line.png'
Binary files openshot/themes/openblue/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/next.png'
Binary files openshot/themes/openblue/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/next_marker.png'
Binary files openshot/themes/openblue/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/openshot.png'
Binary files openshot/themes/openblue/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/pause.png'
Binary files openshot/themes/openblue/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/pause_big.png'
Binary files openshot/themes/openblue/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/play.png'
Binary files openshot/themes/openblue/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/play_big.png'
Binary files openshot/themes/openblue/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/plus.png'
Binary files openshot/themes/openblue/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/previous.png'
Binary files openshot/themes/openblue/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/previous_marker.png'
Binary files openshot/themes/openblue/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/razor.png'
Binary files openshot/themes/openblue/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/razor_line.png'
Binary files openshot/themes/openblue/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/razor_line_with_razor.png'
Binary files openshot/themes/openblue/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/resize.png'
Binary files openshot/themes/openblue/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/seek_backwards.png'
Binary files openshot/themes/openblue/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/seek_forwards.png'
Binary files openshot/themes/openblue/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/snap.png'
Binary files openshot/themes/openblue/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/snapshot.png'
Binary files openshot/themes/openblue/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/icons/stop.png'
Binary files openshot/themes/openblue/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/marker.png'
Binary files openshot/themes/openblue/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/not_visible.png'
Binary files openshot/themes/openblue/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/not_visible_transparent.png'
Binary files openshot/themes/openblue/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/pause.png'
Binary files openshot/themes/openblue/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/play.png'
Binary files openshot/themes/openblue/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/play_head.png'
Binary files openshot/themes/openblue/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/position_line.png'
Binary files openshot/themes/openblue/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/ruler_left.png'
Binary files openshot/themes/openblue/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/ruler_middle.png'
Binary files openshot/themes/openblue/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/ruler_right.png'
Binary files openshot/themes/openblue/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/ruler_tick.png'
Binary files openshot/themes/openblue/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/speaker.png'
Binary files openshot/themes/openblue/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/speaker_mute.png'
Binary files openshot/themes/openblue/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/speaker_mute_transparent.png'
Binary files openshot/themes/openblue/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/speaker_transparent.png'
Binary files openshot/themes/openblue/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/theme.xml'
--- openshot/themes/openblue/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/openblue/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#FFFFFF' size='11000'>%02d:%02d:%02d:%03d</span></font>
+			<x>26</x>
+			<y>4</y>
+		</playhead_text>
+		<ruler>
+			<height>36</height>
+			<x>10</x>
+			<y>12</y>
+			<playhead>
+				<x>0</x>
+				<y>10</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>003b73ff</stroke_color>
+				<line_width>1</line_width>
+				<y>2</y>
+				<length_offset>-3</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#000000' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>25</y>
+				<h>18</h>
+			</small_tick>
+			<medium_tick>
+				<y>19</y>
+				<h>20</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>4</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#000000' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>8</y>
+			<w>159</w>
+		</track_name_text>
+		<visible>
+			<x>93</x>
+			<y>5</y>
+		</visible>
+		<speaker>
+			<x>120</x>
+			<y>5</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>60</collapse_pixel_threshold>
+		<thumbnail>
+			<x>4</x>
+			<y>4</y>
+			<w>22</w>
+			<h>20</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#000000' size='7000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#000000' size='7000'>%s (%s - %s)</span></font_resize>
+			<x>28</x>
+			<y>2</y>
+			<collapsed_x>4</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>29</x>
+			<y>11</y>
+		</visible>
+		<speaker>
+			<x>57</x>
+			<y>11</y>
+		</speaker>
+		<effect>
+			<x>66</x>
+			<y>11</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#000000' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#000000' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>9dbde9dc</stroke_color_rgba>
+			<fill_color_rgba>9dbde9dc</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>18</y>
+			<h>22</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>15</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/openblue/transition_down.png'
Binary files openshot/themes/openblue/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/transition_mask.png'
Binary files openshot/themes/openblue/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/transition_up.png'
Binary files openshot/themes/openblue/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/visible.png'
Binary files openshot/themes/openblue/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/openblue/visible_transparent.png'
Binary files openshot/themes/openblue/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/openblue/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_blue'
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Clip_Left_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Clip_Middle_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Clip_Right_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Track_Left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Track_Left_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Track_Middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Track_Middle_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Track_Right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Track_Right_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Transition_Left_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Transition_Middle_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/Transition_Right_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/effect.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_blue/icons'
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/add_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/arrow.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/media-eject.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/minus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/move_all_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/next.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/next_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/openshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/play.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/play_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/plus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/previous.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/previous_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/razor_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/razor_line_with_razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/resize.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/seek_backwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/seek_forwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/snap.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/snapshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/icons/stop.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/no_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/no_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/no_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/no_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/no_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/no_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/not_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/not_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/play_head.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/position_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/ruler_left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/ruler_middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/ruler_right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/ruler_tick.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/speaker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/speaker_mute.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/speaker_mute_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/speaker_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/theme.xml'
--- openshot/themes/revisited_aqua_glassy_big_blue/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/revisited_aqua_glassy_big_blue/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/transition_down.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/transition_down2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/transition_down2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/transition_down2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/transition_mask.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/transition_mask2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/transition_mask2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/transition_mask2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/transition_up.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/transition_up2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/transition_up2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/transition_up2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_blue/visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_blue/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_blue/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_gray_clear'
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Clip_Left_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Clip_Middle_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Clip_Right_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Left_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Middle_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Right_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Transition_Left_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Transition_Middle_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/Transition_Right_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/effect.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons'
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/add_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/arrow.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/media-eject.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/minus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/move_all_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/next.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/next_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/openshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/pause_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/play.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/play_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/plus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/previous.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/previous_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/razor_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/razor_line_with_razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/resize.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/seek_backwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/seek_forwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/snap.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/snapshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/stop.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/no_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/no_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/no_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/no_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/no_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/no_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/not_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/not_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/play_head.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/position_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_tick.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker_mute.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker_mute_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/theme.xml'
--- openshot/themes/revisited_aqua_glassy_big_gray_clear/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/revisited_aqua_glassy_big_gray_clear/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_down.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_down2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_down2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_down2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_mask.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_mask2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_mask2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_mask2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_up.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_up2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_up2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/transition_up2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_clear/visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_clear/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_clear/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_gray_dark'
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Clip_Left_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Clip_Middle_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Clip_Right_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Left_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Middle_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Right_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Transition_Left_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Transition_Middle_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/Transition_Right_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/effect.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons'
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/add_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/arrow.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/media-eject.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/minus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/move_all_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/next.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/next_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/openshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/pause_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/play.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/play_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/plus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/previous.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/previous_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/razor_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/razor_line_with_razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/resize.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/seek_backwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/seek_forwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/snap.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/snapshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/stop.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/no_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/no_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/no_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/no_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/no_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/no_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/not_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/not_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/play_head.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/position_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_tick.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker_mute.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker_mute_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/theme.xml'
--- openshot/themes/revisited_aqua_glassy_big_gray_dark/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/revisited_aqua_glassy_big_gray_dark/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_down.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_down2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_down2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_down2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_mask.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_mask2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_mask2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_mask2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_up.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_up2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_up2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/transition_up2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_gray_dark/visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_gray_dark/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_gray_dark/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_green'
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Clip_Left_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Clip_Middle_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Clip_Right_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Track_Left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Track_Left_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Track_Middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Track_Middle_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Track_Right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Track_Right_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Transition_Left_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Transition_Middle_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/Transition_Right_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/effect.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_green/icons'
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/add_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/arrow.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/media-eject.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/minus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/move_all_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/next.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/next_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/openshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/pause_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/play.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/play_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/plus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/previous.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/previous_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/razor_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/razor_line_with_razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/resize.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/seek_backwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/seek_forwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/snap.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/snapshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/icons/stop.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/no_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/no_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/no_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/no_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/no_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/no_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/not_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/not_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/play_head.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/position_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/ruler_left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/ruler_middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/ruler_right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/ruler_tick.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/speaker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/speaker_mute.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/speaker_mute_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/speaker_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/theme.xml'
--- openshot/themes/revisited_aqua_glassy_big_green/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/revisited_aqua_glassy_big_green/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/revisited_aqua_glassy_big_green/transition_down.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/transition_down2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/transition_down2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/transition_down2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/transition_mask.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/transition_mask2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/transition_mask2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/transition_mask2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/transition_up.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/transition_up2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/transition_up2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/transition_up2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_green/visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_green/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_green/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_orange'
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Clip_Left_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Clip_Middle_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Clip_Right_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Track_Left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Track_Left_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Track_Middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Track_Middle_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Track_Right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Track_Right_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Transition_Left_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Transition_Middle_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/Transition_Right_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/effect.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_orange/icons'
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/add_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/arrow.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/media-eject.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/minus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/move_all_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/next.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/next_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/openshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/pause_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/play.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/play_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/plus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/previous.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/previous_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/razor_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/razor_line_with_razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/resize.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/seek_backwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/seek_forwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/snap.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/snapshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/icons/stop.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/no_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/no_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/no_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/no_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/no_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/no_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/not_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/not_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/play_head.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/position_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/ruler-middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/ruler-middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/ruler-middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/ruler_left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/ruler_middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/ruler_right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/ruler_tick.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/speaker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/speaker_mute.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/speaker_mute_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/speaker_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/theme.xml'
--- openshot/themes/revisited_aqua_glassy_big_orange/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/revisited_aqua_glassy_big_orange/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/transition_down.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/transition_down2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/transition_down2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/transition_down2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/transition_mask.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/transition_mask2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/transition_mask2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/transition_mask2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/transition_up.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/transition_up2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/transition_up2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/transition_up2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_orange/visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_orange/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_orange/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_pink'
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Clip_Left_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Clip_Middle_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Clip_Right_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Track_Left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Track_Left_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Track_Middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Track_Middle_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Track_Right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Track_Right_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Transition_Left_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Transition_Middle_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/Transition_Right_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/effect.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_pink/icons'
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/add_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/arrow.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/media-eject.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/minus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/move_all_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/next.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/next_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/openshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/pause_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/play.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/play_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/plus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/previous.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/previous_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/razor_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/razor_line_with_razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/resize.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/seek_backwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/seek_forwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/snap.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/snapshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/icons/stop.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/no_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/no_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/no_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/no_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/no_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/no_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/not_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/not_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/play_head.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/position_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/ruler_left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/ruler_middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/ruler_right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/ruler_tick.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/speaker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/speaker_mute.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/speaker_mute_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/speaker_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/theme.xml'
--- openshot/themes/revisited_aqua_glassy_big_pink/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/revisited_aqua_glassy_big_pink/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/transition_down.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/transition_down2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/transition_down2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/transition_down2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/transition_mask.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/transition_mask2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/transition_mask2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/transition_mask2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/transition_up.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/transition_up2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/transition_up2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/transition_up2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_pink/visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_pink/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_pink/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_purple'
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Clip_Left_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Clip_Middle_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Clip_Right_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Track_Left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Track_Left_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Track_Middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Track_Middle_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Track_Right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Track_Right_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Transition_Left_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Transition_Middle_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/Transition_Right_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/effect.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_purple/icons'
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/add_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/arrow.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/media-eject.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/minus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/move_all_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/next.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/next_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/openshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/pause_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/play.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/play_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/plus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/previous.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/previous_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/razor_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/razor_line_with_razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/resize.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/seek_backwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/seek_forwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/snap.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/snapshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/icons/stop.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/no_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/no_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/no_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/no_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/no_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/no_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/not_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/not_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/play_head.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/position_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/ruler_left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/ruler_middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/ruler_right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/ruler_tick.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/speaker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/speaker_mute.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/speaker_mute_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/speaker_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/theme.xml'
--- openshot/themes/revisited_aqua_glassy_big_purple/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/revisited_aqua_glassy_big_purple/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/transition_down.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/transition_down2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/transition_down2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/transition_down2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/transition_mask.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/transition_mask2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/transition_mask2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/transition_mask2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/transition_up.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/transition_up2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/transition_up2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/transition_up2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_purple/visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_purple/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_purple/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_red'
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Clip_Left_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Clip_Middle_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Clip_Right_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Track_Left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Track_Left_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Track_Middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Track_Middle_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Track_Right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Track_Right_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Transition_Left_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Transition_Middle_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/Transition_Right_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/effect.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_red/icons'
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/add_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/arrow.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/media-eject.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/minus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/move_all_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/next.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/next_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/openshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/openshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/openshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/pause_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/pause_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/pause_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/play.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/play.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/play.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/play_big.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/play_big.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/play_big.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/plus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/plus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/plus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/previous.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/previous.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/previous.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/previous_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/previous_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/previous_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/razor_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/razor_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/razor_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/razor_line_with_razor.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/razor_line_with_razor.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/razor_line_with_razor.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/resize.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/resize.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/resize.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/seek_backwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/seek_backwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/seek_backwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/seek_forwards.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/seek_forwards.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/seek_forwards.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/snap.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/snap.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/snap.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/snapshot.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/snapshot.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/snapshot.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/icons/stop.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/icons/stop.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/icons/stop.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/no_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/no_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/no_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/no_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/no_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/no_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/not_visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/not_visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/not_visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/not_visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/not_visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/not_visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/pause.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/pause.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/pause.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/play_head.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/play_head.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/play_head.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/position_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/position_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/position_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/ruler_left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/ruler_left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/ruler_left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/ruler_middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/ruler_middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/ruler_middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/ruler_right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/ruler_right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/ruler_right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/ruler_tick.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/ruler_tick.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/ruler_tick.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/speaker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/speaker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/speaker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/speaker_mute.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/speaker_mute.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/speaker_mute.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/speaker_mute_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/speaker_mute_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/speaker_mute_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/speaker_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/speaker_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/speaker_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/theme.xml'
--- openshot/themes/revisited_aqua_glassy_big_red/theme.xml	1970-01-01 00:00:00 +0000
+++ openshot/themes/revisited_aqua_glassy_big_red/theme.xml	2011-09-14 20:36:21 +0000
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<theme>
+	<timeline>
+		<playhead_text>
+			<font><span face='Sans' foreground='#c8c8c8' size='12000'>%02d:%02d:%02d:%03d</span></font>
+			<x>24</x>
+			<y>8</y>
+		</playhead_text>
+		<ruler>
+			<height>50</height>
+			<x>0</x>
+			<y>0</y>
+			<playhead>
+				<x>0</x>
+				<y>9</y>
+			</playhead>
+			<playhead_line>
+				<stroke_color>ff0000ff</stroke_color>
+				<line_width>0.5</line_width>
+				<y>4</y>
+				<length_offset>-2</length_offset>
+			</playhead_line>
+			<time_text>
+				<font><span face='Sans' foreground='#c8c8c8' size='7000'>%02d:%02d:%02d:%03d</span></font>
+				<x>31</x>
+				<y>3</y>
+			</time_text>
+			<small_tick>
+				<y>29</y>
+				<h>10</h>
+			</small_tick>
+			<medium_tick>
+				<y>23</y>
+				<h>16</h>
+			</medium_tick>
+			<large_tick>
+				<y>15</y>
+				<h>24</h>
+			</large_tick>
+		</ruler>
+	</timeline>
+	<track>
+		<padding>6</padding>
+		<track_name_text>
+			<font><span face='Sans' foreground='#393834' size='9000'>%s</span></font>
+			<x>8</x>
+			<y>7</y>
+			<w>160</w>
+		</track_name_text>
+		<visible>
+			<x>27</x>
+			<y>20</y>
+		</visible>
+		<speaker>
+			<x>68</x>
+			<y>20</y>
+		</speaker>
+	</track>
+	<clip>
+		<collapse_pixel_threshold>102</collapse_pixel_threshold>
+		<thumbnail>
+			<x>6</x>
+			<y>6</y>
+			<w>57</w>
+			<h>44</h>
+		</thumbnail>
+		<clip_name_text>
+			<font><span face='Sans' foreground='#393834' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#393834' size='8000'>%s (%s - %s)</span></font_resize>
+			<x>72</x>
+			<y>6</y>
+			<collapsed_x>8</collapsed_x>
+		</clip_name_text>
+		<rectangle>
+			<stroke_color_rgba>cc8d00ff</stroke_color_rgba>
+			<line_width>0.85</line_width>
+		</rectangle>
+		<visible>
+			<x>72</x>
+			<y>18</y>
+		</visible>
+		<speaker>
+			<x>110</x>
+			<y>18</y>
+		</speaker>
+		<effect>
+			<x>148</x>
+			<y>18</y>
+		</effect>
+	</clip>
+	<transition>
+		<collapse_pixel_threshold_text>20</collapse_pixel_threshold_text>
+		<collapse_pixel_threshold_thumbnail>32</collapse_pixel_threshold_thumbnail>
+		<transition_name_text>
+			<font><span face='Sans' foreground='#ffffff' size='8000'>%s</span></font>
+			<font_resize><span face='Sans' foreground='#ffffff' size='8000'>%s|%s</span></font_resize>
+			<x>8</x>
+			<y>2</y>
+		</transition_name_text>
+		<rectangle>
+			<stroke_color_rgba>5387b484</stroke_color_rgba>
+			<fill_color_rgba>5387b484</fill_color_rgba>
+			<line_width>1.0</line_width>
+			<y>20</y>
+			<h>60</h>
+		</rectangle>
+		<thumbnail>
+			<x>8</x>
+			<y>12</y>
+		</thumbnail>
+	</transition>
+</theme>

=== added file 'openshot/themes/revisited_aqua_glassy_big_red/transition_down.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/transition_down.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/transition_down.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/transition_down2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/transition_down2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/transition_down2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/transition_mask.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/transition_mask.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/transition_mask.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/transition_mask2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/transition_mask2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/transition_mask2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/transition_up.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/transition_up.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/transition_up.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/transition_up2.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/transition_up2.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/transition_up2.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/visible.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/visible.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/visible.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_red/visible_transparent.png'
Binary files openshot/themes/revisited_aqua_glassy_big_red/visible_transparent.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_red/visible_transparent.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_yellow'
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Clip_Left_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Clip_Left_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Clip_Left_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Clip_Middle_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Clip_Middle_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Clip_Middle_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Clip_Right_Gold.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Clip_Right_Gold.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Clip_Right_Gold.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Track_Left.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Track_Left.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Track_Left.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Track_Left_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Track_Left_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Track_Left_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Track_Middle.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Track_Middle.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Track_Middle.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Track_Middle_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Track_Middle_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Track_Middle_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Track_Right.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Track_Right.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Track_Right.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Track_Right_Hover.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Track_Right_Hover.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Track_Right_Hover.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Transition_Left_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Transition_Left_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Transition_Left_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Transition_Middle_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Transition_Middle_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Transition_Middle_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/Transition_Right_Blue.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/Transition_Right_Blue.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/Transition_Right_Blue.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/effect.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/effect.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/effect.png	2011-09-14 20:36:21 +0000 differ
=== added directory 'openshot/themes/revisited_aqua_glassy_big_yellow/icons'
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/icons/add_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/icons/add_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/icons/add_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/icons/arrow.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/icons/arrow.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/icons/arrow.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/icons/media-eject.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/icons/media-eject.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/icons/media-eject.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/icons/minus.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/icons/minus.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/icons/minus.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/icons/move_all_line.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/icons/move_all_line.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/icons/move_all_line.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/icons/next.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/icons/next.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/icons/next.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/icons/next_marker.png'
Binary files openshot/themes/revisited_aqua_glassy_big_yellow/icons/next_marker.png	1970-01-01 00:00:00 +0000 and openshot/themes/revisited_aqua_glassy_big_yellow/icons/next_marker.png	2011-09-14 20:36:21 +0000 differ
=== added file 'openshot/themes/revisited_aqua_glassy_big_yellow/icons/openshot.png'
Binary files openshot/them

Follow ups