Normalitunes.ini
30.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
[Globals]
EdgeDkShadowColor = 116 116 116
EdgeFillColor = 232 232 232
EdgeHighLightColor = 225 225 225
EdgeLightColor = 238 238 238
EdgeShadowColor = 134 134 134
[SysMetrics]
ActiveCaption = 172 172 172
Background = 172 172 172
Btnface = 182 182 182
BtnHighlight = 219 219 219
BtnShadow = 136 136 136
CaptionBarHeight = 21
CaptionFont = Lucida Grande, 8
CaptionText = 0 0 0
CssName = cpwebvw.css
DkShadow3d = 136 136 136
FlatMenus = true
GradientActiveCaption = 172 172 172
GradientInactiveCaption = 163 163 163
GrayText = 89 89 89
Highlight = 129 129 129
HighlightText = 255 255 255
HotTracking = 67 67 67
IconTitleFont = Lucida Grande, 8
InactiveCaption = 163 163 163
InactiveCaptionText = 120 120 120
Light3d = 251 251 251
Menu = 182 182 182
MenuBar = 182 182 182
MenuFont = Lucida Grande, 8
MenuHilight = 129 129 129
MinColorDepth = 15
MsgBoxFont = Lucida Grande, 8
ScrollbarHeight = 16
ScrollbarWidth = 16
SmallCaptionFont = Lucida Grande, 8
SMCaptionBarHeight = 20
SMCaptionBarWidth = 17
StatusFont = Lucida Grande, 8
Window = 255 255 255
XmlName = default.xml
[Button.Checkbox]
AccentColorHint = 250 196 88
Bgtype = imagefile
BorderColorHint = 29 82 129
FillColorHint = 33 161 33
ImageCount = 12
ImageFile1 = itunes\CHECKm2.png
ImageFile2 = itunes\CHECKm2.png
ImageFile3 = itunes\CHECKl2.png
Imagelayout = vertical
ImageSelectType = Dpi
MinDpi1 = 96
MinDpi2 = 118
MinDpi3 = 185
MirrorImage = false
ContentMargins = 0, 0, 0, 0
SizingMargins = 0, 0, 0, 0
SizingType = TrueSize
TrueSizeScalingType = Dpi
TrueSizeStretchMark = 50
UniformSizing = true
CONTENTALIGNMENT = Left
FONT = Arial, 7
TEXTCOLOR = 0 0 0
TRANSPARENT = true
[Button.Checkbox(Checkeddisabled)]
TextColor = 0 0 0
CONTENTALIGNMENT = Left
FONT = Arial, 7
TRANSPARENT = true
[Button.Checkbox(Mixeddisabled)]
TextColor = 0 0 0
CONTENTALIGNMENT = Left
FONT = Arial, 7
TRANSPARENT = true
[Button.Checkbox(Uncheckeddisabled)]
TextColor = 0 0 0
CONTENTALIGNMENT = Left
FONT = Arial, 7
TRANSPARENT = true
[Button.Groupbox]
Bgtype = imagefile
BorderColorHint = 22 25 34
BorderOnly = true
ImageFile = itunes\GroupBox.png
NormalSize = 9999, 9999
SizingMargins = 4, 4, 6, 6
SizingType = Tile
TextColor = 1 1 1
Transparent = true
[Button.Pushbutton]
AccentColorHint = 250 196 88
Bgtype = imagefile
BorderColorHint = 0 60 116
ContentMargins = 2, 2, 2, 2
FillColorHint = 243 243 239
ImageCount = 5
ImageFile = itunes\boton.png
ImageLayout = Vertical
MinSize = 0, 20
SizingMargins = 10, 8, 6, 5
SizingType = Stretch
TextColor = 13 13 13
FONT = Lucida Grande, 8
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
[Button.Pushbutton(Defaulted)]
AccentColorHint = 0 255 0
[Button.Pushbutton(Disabled)]
TextColor = 122 122 122
[Button.Pushbutton(Hot)]
TextColor = 17 17 17
[Button.Pushbutton(Normal)]
TextColor = 1 1 1
[Button.Pushbutton(Pressed)]
TextColor = 1 1 1
[Button.Radiobutton]
AccentColorHint = 250 196 88
Bgtype = imagefile
BorderColorHint = 29 82 129
ContentMargins = 0, 0, 0, 0
FillColorHint = 33 161 33
ImageCount = 8
ImageFile1 = itunes\RADIOm.png
ImageFile2 = itunes\RADIOM.png
ImageFile3 = itunes\RADIOl.png
Imagelayout = vertical
ImageSelectType = Dpi
MinDpi1 = 96
MinDpi2 = 118
MinDpi3 = 185
SizingMargins = 0, 0, 0, 0
SizingType = TrueSize
Transparent = true
TrueSizeScalingType = None
TrueSizeStretchMark = 50
UniformSizing = true
CONTENTALIGNMENT = Left
FONT = Arial, 7
TEXTCOLOR = 0 0 0
[Button.Radiobutton(Checkeddisabled)]
TextColor = 0 0 0
CONTENTALIGNMENT = Left
FONT = Arial, 7
TRANSPARENT = true
[Button.Radiobutton(Uncheckeddisabled)]
TextColor = 0 0 0
CONTENTALIGNMENT = Left
FONT = Arial, 7
TRANSPARENT = true
[Combobox]
BgType = ImageFile
BorderColor = 141 142 160
BorderSize = 0
FillColor = 250 250 250
ImageFile = itunes\ComboBox.png
ContentMargins = 0, 0, 0, 0
SizingMargins = 8, 3, 9, 11
SizingType = Stretch
BorderOnly = False
[Combobox(Disabled)]
BgType = ImageFile
BorderColor = 7 150 235
BorderSize = 0
FillColor = 240 240 240
ImageFile = itunes\ComboBox.png
ContentMargins = 0, 0, 0, 0
SizingMargins = 3, 3, 3, 3
SizingType = Stretch
BorderOnly = False
[Combobox(Hot)]
BgType = ImageFile
BorderColor = 7 150 235
BorderSize = 0
FillColor = 240 240 240
ImageFile = itunes\ComboBox.png
ContentMargins = 0, 0, 0, 0
SizingMargins = 10, 7, 7, 6
SizingType = Stretch
BorderOnly = False
[Combobox.DropDownButton]
BgType = imagefile
BorderColorHint = 240 240 240
ContentMargins = 1, 1, 1, 1
FillColorHint = 200 214 251
GlyphImageFile = itunes\COMBOBUTTONGLYPH2.png
GlyphTransparent = true
GlyphType = ImageGlyph
ImageCount = 4
ImageFile = itunes\ComboButton.png
Imagelayout = vertical
SizingMargins = 2, 4, 2, 1
SizingType = Stretch
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
[Dialog]
BgType = ImageFile
BorderColor = 240 240 240
FillColor = 247 247 247
CONTENTALIGNMENT = Center
ImageFile = itunes\dialog.png
SizingMargins = 0, 0, 0, 0
SizingType = Tile
FONT = LucidaGrande, 8,
TEXTCOLOR = 45 45 45
TEXTSHADOWCOLOR = 180 180 180
TEXTSHADOWOFFSET = 0,2
TEXTSHADOWTYPE = Continuous
TRANSPARENT = False
[Edit]
BgType = BorderFill
BorderColor = 112 112 112
BorderSize = 1
FillColor = 255 255 255
ImageFile = itunes\ListViewHOT.png
SizingMargins = 11, 9, 5, 5
SizingType = Tile
BorderOnly = True
[Edit.Edittext(Disabled)]
FillColor = 240 240 240
TextColor = 152 152 152
[Edit.Edittext(ReadOnly)]
FillColor = 240 240 240
TextColor = 0 0 0
[Edit.Edittext(Hot)]
BgType = BorderFill
BorderColor = 119 119 119
BorderSize = 1
FillColor = 255 255 255
ImageFile = itunes\ListViewHOT.png
SizingMargins = 11, 9, 3, 3
SizingType = Tile
BorderOnly = True
CONTENTALIGNMENT = Left
TEXTCOLOR = 45 45 45
TEXTSHADOWTYPE = Continuous
TEXTSHADOWCOLOR = 180 180 180
TEXTSHADOWOFFSET = 1,2
[ExplorerBar]
BgType = BorderFill
BorderSize = 0
ContentMargins = 12, 12, 12, 12
FillType = VertGradient
GradientColor1 = 140 170 230
GradientColor2 = 100 135 220
GradientRatio1 = 0
GradientRatio2 = 255
[ExplorerBar.HeaderClose]
AccentColorHint = 255 121 95
BgType = ImageFile
FillColorHint = 138 168 229
ImageCount = 3
ImageFile = itunes\BALLOONCLOSE.png
ImageLayout = Vertical
Offset = 4, 4
OffsetType = TopRight
SizingType = TrueSize
Transparent = true
[ExplorerBar.HeaderPin]
BgType = ImageFile
FillColorHint = 189 206 239
ImageCount = 6
ImageFile = itunes\ExplorerBarHeaderPin.png
ImageLayout = Vertical
Offset = 6, 4
OffsetType = TopRight
SizingType = TrueSize
Transparent = true
[Header]
Bgtype = imagefile
ImageFile = itunes\ListviewHeaderBackground.png
SizingMargins = 2, 0, 2, 2
SizingType = Stretch
[Header.HeaderItem]
AccentColorHint = 252 194 71
Bgtype = imagefile
ContentMargins = 3, 0, 0, 0
FillColorHint = 250 248 243
ImageCount = 5
ImageFile = itunes\ListViewHeader.png
ImageLayout = vertical
SizingMargins = 2, 2, 2, 2
SizingType = Stretch
Transparent = true
Transparentcolor = 255 0 0
[Listbox]
BgType = ImageFile
BorderColor = 119 119 119
BorderSize = 0
FillColor = 240 240 240
ImageFile = itunes\ComboBox.png
SizingMargins = 8, 6, 9, 11
SizingType = Stretch
BorderOnly = False
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
FONT = Lucida Grande, 8
[ListView]
BgType = ImageFile
BorderColor = 119 119 119
BorderSize = 0
FillColor = 240 240 240
ImageFile = itunes\ListView.png
SizingMargins = 3, 3, 3, 3
SizingType = Tile
BorderOnly = False
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
FONT = Lucida Grande, 8
[Progress]
BgType = borderFill
BorderColor = 235 235 228
Bordersize = 0
FillColor = 46 211 49
FillType = TileImage
ProgressChunkSize = 1
ProgressSpaceSize = 0
[Progress.Bar]
Bgtype = imagefile
BorderColorHint = 104 104 104
FillColorHint = 255 255 255
ImageFile = itunes\ProgressTrack.png
MinSize = 8, 8
NormalSize = 16, 16
SizingMargins = 2, 2, 2, 2
SizingType = Stretch
SourceShrink = True
[Progress.BarVert]
Bgtype = imagefile
BorderColorHint = 104 104 104
FillColorHint = 255 255 255
ImageFile = itunes\ProgressTrackVert.png
SizingMargins = 4, 4, 4, 4
SizingType = Stretch
[Progress.Chunk]
Bgtype = imagefile
FillColorHint = 46 211 49
ImageFile = itunes\ProgressChunk.png
SizingMargins = 0, 0, 0, 0
SizingType = Stretch
[Progress.ChunkVert]
Bgtype = imagefile
FillColorHint = 46 211 49
ImageFile = itunes\ProgressChunkVert.png
SizingMargins = 1, 0, 0, 0
SizingType = Stretch
[Rebar]
Bgtype = imagefile
FillColorHint = 194 197 204
Font = Lucida Grande, 8
ImageFile = itunes\ToolbarBackground.png
Sizingmargins = 10, 10, 0, 0
Sizingtype = Stretch
TextColor = 93 93 93
[Rebar.Band]
Bgtype = none
ContentMargins = 0, 0, 0, 0
EdgeShadowColor = 134 134 134
[Rebar.Chevron]
Bgtype = imagefile
ContentMargins = 0, 0, 9, 0
FillColorHint = 0 0 0
GlyphImageFile = itunes\Chevron.png
GlyphTransparent = true
GlyphType = ImageGlyph
ImageCount = 6
ImageFile = itunes\ToolbarButtons.png
Imagelayout = vertical
SizingMargins = 9, 10, 3, 3
SizingType = Stretch
Transparent = true
VAlign = Top
[Rebar.ChevronVert]
Bgtype = imagefile
ContentMargins = 0, 0, 0, 0
FillColorHint = 0 0 0
GlyphImageFile = itunes\Chevron.png
GlyphTransparent = true
GlyphType = ImageGlyph
ImageCount = 6
ImageFile = itunes\ToolbarButtons.png
Imagelayout = vertical
SizingMargins = 4, 4, 4, 4
SizingType = Stretch
Transparent = true
VAlign = Top
[Rebar.Gripper]
Bgtype = imagefile
ContentMargins = 2, 1, 0, 0
FillColorHint = 171 167 149
ImageFile = itunes\SEPARATOR.png
SizingMargins = 5, 1, 2, 2
SizingType = Tile
Transparent = true
TRANSPARENTCOLOR = 255 0 0
[Rebar.GripperVert]
Bgtype = imagefile
ContentMargins = 1, 2, 0, 0
FillColorHint = 171 167 149
ImageFile = itunes\ToolbarGripper.png
SizingMargins = 3, 3, 2, 1
SizingType = Tile
Transparent = true
[ScrollBar.ArrowBtn]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 3, 3
FillColorHint = 200 214 251
GlyphTransparent = True
GlyphType = ImageGlyph
ImageCount = 16
ImageFile = itunes\ScrollArrows.png
ImageFile1 = itunes\SCROLLARROWGLYPHS.png
ImageFile2 = itunes\ScrollArrowGlyphs.png
ImageLayout = Vertical
ImageSelectType = size
MinSize1 = 7, 10
MinSize2 = 7, 10
NormalSize = 7, 10
SizingMargins = 5, 5, 5, 5
SizingType = Stretch
SourceShrink = True
TrueSizeScalingType = size
TrueSizeStretchMark = 150
UniformSizing = true
[ScrollBar.GripperHorz]
BgType = ImageFile
ImageCount = 4
ImageFile = itunes\ScrollThumbGripperHorizontal.png
Imagelayout = vertical
SizingType = TrueSize
Transparent = True
[ScrollBar.GripperVert]
BgType = ImageFile
ImageCount = 4
ImageFile = itunes\ScrollThumbGripperVertical.png
ImageLayout = Vertical
SizingType = TrueSize
Transparent = True
[ScrollBar.LowerTrackHorz]
BgType = imagefile
FillColorHint = 198 213 253
ImageCount = 4
ImageFile = itunes\ScrollShaftHorizontal.png
ImageLayout = Horizontal
SizingMargins = 14, 2, 1, 1
SizingType = Stretch
[ScrollBar.LowerTrackVert]
BgType = imagefile
FillColorHint = 198 213 253
ImageCount = 4
ImageFile = itunes\ScrollShaftVertical.png
ImageLayout = Horizontal
SizingMargins = 1, 1, 7, 2
SizingType = Stretch
[ScrollBar.SizeBox]
Bgtype = imagefile
FillColorHint = 184 180 163
ImageCount = 2
ImageFile = itunes\ResizeGrip2.png
SizingType = trueSize
Transparent = True
TransparentColor = 255 0 0
VAlign = Bottom
[ScrollBar.ThumbBtnHorz]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 4, 4, 1, 1
FillColorHint = 198 213 253
ImageCount = 4
ImageFile = itunes\ScrollThumbHorizontal.png
ImageLayout = Vertical
SizingMargins = 9, 9, 7, 8
SizingType = Stretch
TRANSPARENT = true
[ScrollBar.ThumbBtnVert]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 4, 4
FillColorHint = 198 213 253
ImageCount = 4
ImageFile = itunes\ScrollThumbVertical.png
ImageLayout = vertical
SizingMargins = 7, 8, 12, 12
SizingType = Stretch
TRANSPARENT = true
[ScrollBar.UpperTrackHorz]
BgType = imagefile
FillColorHint = 198 213 253
ImageCount = 4
ImageFile = itunes\ScrollShaftHorizontal1.png
ImageLayout = Horizontal
SizingMargins = 2, 13, 1, 1
SizingType = Stretch
[ScrollBar.UpperTrackVert]
BgType = imagefile
FillColorHint = 198 213 253
ImageCount = 4
ImageFile = itunes\SCROLLSHAFTVERTICAL1.png
ImageLayout = Horizontal
SizingMargins = 1, 1, 2, 18
SizingType = Stretch
[Spin]
Bgtype = ImageFile
ImageCount = 2
ImageFile = itunes\FieldOutlineBlue.png
SizingMargins = 4, 4, 4, 4
SizingType = tile
CONTENTALIGNMENT = Left
FONT = LucidaGrande, 8
TEXTCOLOR = 45 45 45
TRANSPARENTCOLOR = 255 0 255
[Spin.Down]
Bgtype = imagefile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 200 214 251
GlyphImageFile = itunes\SpinDownGlyph.png
GlyphTransparent = True
GlyphType = ImageGlyph
ImageCount = 4
ImageFile = itunes\SpinButtonBackgroundDown.png
ImageLayout = Vertical
SizingMargins = 2, 2, 2, 6
SizingType = Stretch
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
[Spin.Downhorz]
Bgtype = imagefile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 200 214 251
GlyphImageFile = itunes\SpinLeftGlyph.png
GlyphTransparent = True
GlyphType = ImageGlyph
ImageCount = 4
ImageFile = itunes\SpinButtonBackgroundLeft.png
ImageLayout = Vertical
SizingMargins = 2, 2, 2, 2
SizingType = Stretch
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
[Spin.Up]
Bgtype = imagefile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 200 214 251
GlyphImageFile = itunes\SpinUpGlyph.png
GlyphTransparent = True
GlyphType = ImageGlyph
ImageCount = 4
ImageFile = itunes\SpinButtonBackgroundUp.png
ImageLayout = Vertical
SizingMargins = 2, 2, 6, 2
SizingType = Stretch
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
[Spin.Uphorz]
Bgtype = imagefile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 200 214 251
GlyphImageFile = itunes\SpinRightGlyph.png
GlyphTransparent = True
GlyphType = ImageGlyph
ImageCount = 4
ImageFile = itunes\SpinButtonBackgroundRight.png
ImageLayout = Vertical
SizingMargins = 2, 2, 2, 2
SizingType = Stretch
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
[Status]
Bgtype = imagefile
FillColorHint = 240 240 240
ImageCount = 1
ImageFile = itunes\StatusBackground.png
SizingMargins = 10, 10, 2, 1
SizingType = Stretch
[Status.Gripper]
Bgtype = imagefile
ContentMargins = 0,0,0,0
FillColorHint = 184 180 163
ImageCount = 2
ImageFile = itunes\ResizeGrip2.png
SizingType = trueSize
Transparent = True
TransparentColor = 255 0 0
VAlign = Bottom
[Status.GripperPane]
Bgtype = none
[Status.Pane]
Bgtype = imagefile
ImageCount = 1
ImageFile = itunes\StatusPane.png
SizingMargins = 0, 2, 2, 2
SizingType = Tile
Transparent = True
TransparentColor = 255 0 0
[Tab]
BgType = borderFill
Bordersize = 0
FillColor = 240 240 240
FillType = Solid
FONT = Lucida Grande, 8, Bold
TRANSPARENT = true
TRANSPARENTCOLOR = 189 191 203
[Tab.Body]
Bgtype = imagefile
FillColorHint = 251 251 253
ImageFile1 = itunes\TabBackground.png
ImageFile2 = itunes\TabBackground133.png
ImageSelectType = Dpi
MinDpi1 = 96
MinDpi2 = 164
StockImageFile = itunes\TabBackground.png
SizingMargins = 3, 3, 26, 0
SizingType = Tile
Transparent = True
TrueSizeScalingType = Dpi
TrueSizeStretchMark = 50
FONT = LucidaGrande, 8
[Tab.Pane]
Bgtype = imagefile
BorderColorHint = 145 155 156
FillColorHint = 251 251 253
Imagecount = 1
ImageFile = itunes\tabpaneedge.png
SizingMargins = 8, 8, 9, 9
SizingType = Tile
[Tab.TabItem]
AccentColorHint = 255 200 60
Bgtype = imagefile
BorderColorHint = 145 167 180
ContentMargins = 0, 1, 0, 0
FillColorHint = 248 248 246
Imagecount = 5
ImageFile = itunes\TABITEM.png
Imagelayout = vertical
SizingMargins = 11, 11, 17, 1
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
FONT = Arial, 8
[Tab.TabItemBothEdge]
AccentColorHint = 255 200 60
Bgtype = imagefile
BorderColorHint = 145 167 180
ContentMargins = 0, 1, 0, 0
FillColorHint = 248 248 246
Imagecount = 5
ImageFile = itunes\TABITEM.png
Imagelayout = vertical
SizingMargins = 11, 11, 17, 1
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
FONT = Arial, 8
[Tab.TabItemLeftEdge]
AccentColorHint = 255 200 60
Bgtype = imagefile
BorderColorHint = 145 167 180
ContentMargins = 0, 1, 0, 0
FillColorHint = 248 248 246
Imagecount = 5
ImageFile = itunes\tabItemleft.png
Imagelayout = vertical
SizingMargins = 14, 10, 17, 1
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
FONT = Arial, 8
[Tab.TabItemRightEdge]
AccentColorHint = 255 200 60
Bgtype = imagefile
BorderColorHint = 145 167 180
ContentMargins = 0, 4, 0, 0
FillColorHint = 248 248 246
Imagecount = 5
ImageFile = itunes\TABITEMright.png
Imagelayout = vertical
SizingMargins = 10, 12, 17, 1
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
FONT = Arial, 8
[Tab.TopTabItem]
AccentColorHint = 255 200 60
Bgtype = imagefile
BorderColorHint = 145 167 180
ContentMargins = 0, 1, 0, 0
FillColorHint = 248 248 246
Imagecount = 5
ImageFile = itunes\TABITEM.png
Imagelayout = vertical
SizingMargins = 11, 11, 17, 1
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
FONT = Arial, 8
[Tab.TopTabItemBothEdge]
AccentColorHint = 255 200 60
Bgtype = imagefile
BorderColorHint = 145 167 180
ContentMargins = 0, 1, 0, 0
FillColorHint = 248 248 246
Imagecount = 5
ImageFile = itunes\TABITEM.png
Imagelayout = vertical
SizingMargins = 13, 12, 17, 1
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
FONT = Arial, 8
[Tab.TopTabItemLeftEdge]
AccentColorHint = 255 200 60
Bgtype = imagefile
BorderColorHint = 145 167 180
ContentMargins = 0, 1, 0, 0
FillColorHint = 248 248 246
Imagecount = 5
ImageFile = itunes\tabItemleft.png
Imagelayout = vertical
SizingMargins = 14, 11, 17, 1
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
FONT = Arial, 8
[Tab.TopTabItemRightEdge]
AccentColorHint = 255 200 60
Bgtype = imagefile
BorderColorHint = 145 167 180
ContentMargins = 0, 4, 0, 0
FillColorHint = 248 248 246
Imagecount = 5
ImageFile = itunes\TABITEMright.png
Imagelayout = vertical
SizingMargins = 8, 16, 17, 1
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
FONT = Arial, 8
[Toolbar]
BgType = Borderfill
Bordersize = 0
FillColor = 240 240 240
TextColor = 0 0 0
[Toolbar(Pressed)]
TextColor = 0 0 0
[Toolbar.Button]
Bgtype = ImageFile
BorderColorHint = 206 206 195
ContentMargins = 0, 0, 0, 0
FillColorHint = 241 243 239
ImageCount = 6
ImageFile = itunes\TOOLBARBUTTONS.png
Imagelayout = vertical
SizingMargins = 9, 10, 3, 3
SizingType = Stretch
Transparent = true
TransparentColor = 255 0 255
[Toolbar.DropdownButton]
Bgtype = imagefile
BorderColorHint = 206 206 195
ContentMargins = 0, 0, 0, 0
FillColorHint = 241 243 239
ImageCount = 6
ImageFile = itunes\ToolbarButtons.png
Imagelayout = vertical
SizingMargins = 4, 4, 4, 4
SizingType = Stretch
Transparent = true
TransparentColor = 255 0 255
[Toolbar.Separator]
Bgtype = imagefile
FillColorHint = 202 198 175
ImageCount = 1
ImageFile = itunes\SEPARATOR.png
SizingMargins = 5, 1, 2, 2
SizingType = tile
Transparent = true
TransparentColor = 255 0 0
[Toolbar.SeparatorVert]
Bgtype = imagefile
FillColorHint = 202 198 175
ImageCount = 1
ImageFile = itunes\SeparatorVert.png
SizingMargins = 2, 1, 5, 1
SizingType = tile
Transparent = true
TransparentColor = 255 0 0
[Toolbar.SplitButton]
Bgtype = ImageFile
BorderColorHint = 206 206 195
FillColorHint = 241 243 239
ImageCount = 6
ImageFile = itunes\ToolbarButtonsSplit.png
Imagelayout = vertical
SizingMargins = 4, 2, 3, 3
SizingType = Stretch
Transparent = true
TransparentColor = 255 0 255
CONTENTALIGNMENT = Left
[Toolbar.SplitButtonDropdown]
Bgtype = ImageFile
BorderColorHint = 206 206 195
FillColorHint = 241 243 239
GlyphImageFile = itunes\ToolbarButtonsSplitDropdownGlyph.png
GlyphTransparent = true
GlyphType = ImageGlyph
ImageCount = 6
ImageFile = itunes\ToolbarButtonsSplitDropdown.png
Imagelayout = vertical
SizingMargins = 3, 5, 3, 3
SizingType = Stretch
Transparent = true
TransparentColor = 255 0 255
[Tooltip]
CONTENTALIGNMENT = Center
FONT = LucidaGrande, 8
TEXTCOLOR = 45 45 45
TEXTSHADOWCOLOR = 180 180 180
TEXTSHADOWOFFSET = 0,2
TEXTSHADOWTYPE = Continuous
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
[Tooltip.Close]
BgType = ImageFile
Imagecount = 3
ImageFile = itunes\BALLOONCLOSE.png
Imagelayout = vertical
Sizingtype = truesize
[TrackBar]
BgType = borderFill
BorderColor = 235 235 228
Bordersize = 1
FillColor = 24 27 36
FillType = Solid
[TrackBar.Thumb]
AccentColorHint = 71 196 70
Bgtype = imagefile
BorderColorHint = 181 196 205
FillColorHint = 243 243 239
Imagecount = 5
ImageFile = itunes\TRACKBAR.png
Imagelayout = Vertical
SizingMargins = 1, 1, 1, 1
Sizingtype = TrueSize
Transparent = true
Transparentcolor = 255 0 255
[TrackBar.ThumbBottom]
AccentColorHint = 251 253 254
Bgtype = imagefile
BorderColorHint = 19 18 19
FillColorHint = 214 215 224
Imagecount = 5
ImageFile1 = itunes\TrackBarD13.png
ImageFile2 = itunes\TrackBarD16.png
ImageFile3 = itunes\TrackBarD25.png
ImageLayout = vertical
ImageSelectType = Dpi
MinDpi1 = 96
MinDpi2 = 118
MinDpi3 = 185
SizingMargins = 0, 0, 0, 0
Sizingtype = TrueSize
Transparent = True
TrueSizeScalingType = Dpi
TrueSizeStretchMark = 50
UniformSizing = True
TRANSPARENTCOLOR = 189 191 203
[TrackBar.ThumbLeft]
AccentColorHint = 71 196 70
Bgtype = imagefile
BorderColorHint = 181 196 205
FillColorHint = 243 243 239
Imagecount = 5
ImageFile1 = itunes\TrackBarL13.png
ImageFile2 = itunes\TrackBarL16.png
ImageFile3 = itunes\TrackBarL25.png
ImageLayout = Vertical
ImageSelectType = Dpi
MinDpi1 = 96
MinDpi2 = 118
MinDpi3 = 185
Sizingtype = TrueSize
SizingMargins = 0, 0, 0, 0
Transparent = true
Transparentcolor = 188 191 200
TrueSizeScalingType = Dpi
TrueSizeStretchMark = 60
UniformSizing = True
[TrackBar.ThumbRight]
AccentColorHint = 71 196 70
Bgtype = imagefile
BorderColorHint = 181 196 205
FillColorHint = 243 243 239
Imagecount = 5
ImageFile = itunes\TrackBarR13.png
ImageFile1 = itunes\TrackBarR16.png
ImageFile2 = itunes\TrackBarR25.png
ImageFile3 = itunes\TrackBarR25.png
ImageLayout = Vertical
ImageSelectType = Dpi
MinDpi1 = 96
MinDpi2 = 118
MinDpi3 = 185
Sizingtype = TrueSize
SizingMargins = 0, 0, 0, 0
Transparent = true
Transparentcolor = 188 191 200
TrueSizeScalingType = Dpi
TrueSizeStretchMark = 50
UniformSizing = true
[TrackBar.ThumbTop]
AccentColorHint = 71 196 70
Bgtype = imagefile
BorderColorHint = 181 196 205
FillColorHint = 243 243 239
Imagecount = 5
ImageFile1 = itunes\TRACKBARu.png
ImageFile2 = itunes\TrackBarU16.png
ImageFile3 = itunes\TrackBarU25.png
Imagelayout = vertical
ImageSelectType = Dpi
MinDpi1 = 96
MinDpi2 = 118
MinDpi3 = 185
Sizingtype = TrueSize
SizingMargins = 0, 0, 0, 0
Transparent = True
Transparentcolor = 188 191 200
TrueSizeScalingType = Dpi
TrueSizeStretchMark = 50
UniformSizing = True
[TrackBar.ThumbVert]
AccentColorHint = 71 196 70
Bgtype = imagefile
BorderColorHint = 181 196 205
FillColorHint = 243 243 239
Imagecount = 5
ImageFile = itunes\Trackbar.png
ImageLayout = vertical
SizingMargins = 1, 1, 1, 1
Sizingtype = TrueSize
[TrackBar.Tics]
Color = 152 152 152
[TrackBar.TicsVert]
Color = 152 152 152
[TrackBar.Track]
Bgtype = imagefile
BorderColorHint = 157 156 153
FillColorHint = 242 241 233
Imagecount = 1
ImageFile = itunes\SLIDERTRACKH.png
SizingMargins = 4, 4, 3, 1
Sizingtype = Stretch
TRANSPARENT = true
TRANSPARENTCOLOR = 189 191 203
[TrackBar.TrackVert]
Bgtype = imagefile
BorderColorHint = 157 156 153
FillColorHint = 242 241 233
Imagecount = 1
ImageFile = itunes\SLIDERTRACKV.png
SizingMargins = 3, 1, 4, 5
Sizingtype = Stretch
TRANSPARENT = true
TRANSPARENTCOLOR = 189 191 203
[TreeView]
BgType = BorderFill
BorderColor = 119 119 119
BorderSize = 1
FillColor = 240 240 240
CONTENTALIGNMENT = Left
FONT = LucidaGrande, 8
TEXTCOLOR = 45 45 45
TEXTSHADOWCOLOR = 180 180 180
TEXTSHADOWOFFSET = 0,2
TEXTSHADOWTYPE = Continuous
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
[TreeView.Glyph]
Bgtype = imagefile
Imagecount = 2
ImageFile = itunes\treeExpandCollapse.png
ImageLayout = vertical
SizingType = TrueSize
[Window]
BgType = ImageFile
Transparent = true
[Window.Caption]
CaptionMargins = 8, 8, 3, 2
ContentMargins = 8, 8, 3, 3
ContentAlignment = Center
FillColorHint = 0 84 229
ImageCount = 2
ImageFile = itunes\FRAMECAPTION.png
Imagelayout = vertical
SizingMargins = 10, 10, 10, 0
SizingType = Stretch
[Window.Caption(Active)]
IconEffect = Shadow
[Window.Caption(Disabled)]
IconEffect = Shadow
[Window.Caption(Inactive)]
IconEffect = Alpha
[Window.CaptionSizingTemplate]
ContentMargins = 3, 8, 3, 20
ImageCount = 2
ImageFile = itunes\FrameCaptionSizing.png
Imagelayout = vertical
SizingMargins = 15, 15, 11, 12
SizingType = tile
Transparent = True
TransparentColor = 0 0 0
[Window.CloseButton]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 228 93 61
GlyphTransparent = True
GlyphType = ImageGlyph
ImageCount = 8
ImageFile = itunes\CloseButton.png
ImageFile1 = itunes\CLOSEGLYPH.png
ImageFile2 = itunes\CLOSEGLYPH.png
ImageFile3 = itunes\CLOSEGLYPH.png
ImageFile4 = itunes\CLOSEGLYPH.png
ImageFile5 = itunes\CLOSEGLYPH.png
ImageLayout = Vertical
ImageSelectType = size
MinDpi1 = 96
MinDpi2 = 126
MinDpi3 = 170
Offset = 30, 0
OffsetType = TopRight
SizingMargins = 0, 0, 0, 0
SizingType = TrueSize
UniformSizing = true
TRANSPARENT = true
TRANSPARENTCOLOR = 255 0 255
[Window.Dialog]
BgType = ImageFile
BorderColor = 240 240 240
FillColor = 247 247 247
CONTENTALIGNMENT = Center
ImageFile = itunes\dialog.png
SizingMargins = 0, 1, 0, 0
SizingType = Tile
[Window.FrameBottom]
Borderonly = True
ImageCount = 2
ImageFile = itunes\frameBottom.png
ImageLayout = vertical
SizingMargins = 10, 10, 0, 3
SizingType = stretch
Transparent = True
[Window.FrameLeft]
Borderonly = True
ImageCount = 2
ImageFile = itunes\frameLeft.png
ImageLayout = vertical
SizingMargins = 1, 0, 0, 0
SizingType = Stretch
Transparent = True
[Window.FrameRight]
Borderonly = True
ImageCount = 2
ImageFile = itunes\frameRight.png
ImageLayout = vertical
SizingMargins = 0, 1, 0, 0
SizingType = Stretch
Transparent = True
[Window.HelpButton]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 74 121 246
GlyphTransparent = True
GlyphType = ImageGlyph
ImageCount = 8
ImageFile = itunes\CAPTIONBUTTON.png
ImageFile1 = itunes\HelpGlyph.png
ImageFile2 = itunes\HelpGlyph.png
ImageFile3 = itunes\HelpGlyph.png
ImageFile4 = itunes\HelpGlyph.png
ImageFile5 = itunes\HelpGlyph.png
ImageLayout = Vertical
ImageSelectType = size
MinDpi1 = 96
MinDpi2 = 126
MinDpi3 = 170
MirrorImage = true
Offset = 73, 5
OffsetType = TopRight
SizingMargins = 0, 0, 0, 0
SizingType = TrueSize
UniformSizing = true
[Window.MaxButton]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 74 121 246
GlyphTransparent = True
GlyphType = ImageGlyph
ImageCount = 8
ImageFile = itunes\CaptionButton.png
ImageFile1 = itunes\MaximizeGlyph.png
ImageFile2 = itunes\MaximizeGlyph.png
ImageFile3 = itunes\MaximizeGlyph.png
ImageFile4 = itunes\MaximizeGlyph.png
ImageFile5 = itunes\MaximizeGlyph.png
ImageLayout = Vertical
ImageSelectType = size
MinDpi1 = 96
MinDpi2 = 126
MinDpi3 = 170
Offset = 49, 5
OffsetType = TopRight
SizingMargins = 0, 0, 0, 0
SizingType = TrueSize
UniformSizing = true
[Window.MaxCaption]
CaptionMargins = 8, 8, 3, 3
ContentAlignment = Center
ContentMargins = 8, 8, 3, 3
FillColorHint = 0 84 229
ImageCount = 2
ImageFile = itunes\FRAMEMAXIMIZED.png
Imagelayout = vertical
SizingMargins = 1, 1, 2, 2
SizingType = Stretch
SizingType = Stretch
[Window.MDICloseButton]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 241 239 229
GlyphImageFile = itunes\MDIGlyphClose.png
GlyphTransparent = true
GlyphType = ImageGlyph
ImageCount = 4
ImageFile = itunes\MDICLOSEBUTTON.png
ImageLayout = Vertical
Offset = 19, 1
OffsetType = TopRight
SizingMargins = 4, 4, 4, 4
SizingType = TrueSize
Transparent = True
TransparentColor = 255 0 255
[Window.MDIMinButton]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 241 239 229
GlyphImageFile = itunes\MDIGlyphMinimize.png
GlyphTransparent = true
GlyphType = ImageGlyph
ImageCount = 4
ImageFile = itunes\MDIMINBUTTON.png
ImageLayout = Vertical
Offset = 53, 1
OffsetType = TopRight
SizingMargins = 4, 4, 4, 4
SizingType = TrueSize
Transparent = True
TransparentColor = 255 0 255
[Window.MDIRestoreButton]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 241 239 229
GlyphImageFile = itunes\MDIGlyphRestore.png
GlyphTransparent = true
GlyphType = ImageGlyph
ImageCount = 4
ImageFile = itunes\MDIMAXBUTTON.png
ImageLayout = Vertical
Offset = 37, 1
OffsetType = TopRight
SizingMargins = 4, 4, 4, 4
SizingType = TrueSize
Transparent = True
TransparentColor = 255 0 255
[Window.MinButton]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 74 121 246
GlyphTransparent = True
GlyphType = ImageGlyph
ImageCount = 8
ImageFile = itunes\CaptionButton.png
ImageFile1 = itunes\MINIMIZEGLYPH.png
ImageFile2 = itunes\MINIMIZEGLYPH.png
ImageFile3 = itunes\MINIMIZEGLYPH.png
ImageFile4 = itunes\MINIMIZEGLYPH.png
ImageFile5 = itunes\MINIMIZEGLYPH.png
ImageLayout = Vertical
ImageSelectType = size
MinDpi1 = 96
MinDpi2 = 126
MinDpi3 = 170
Offset = 73, 5
OffsetType = TopRight
SizingMargins = 5, 5, 5, 5
SizingType = TrueSize
UniformSizing = true
[Window.MinCaption]
CaptionMargins = 8, 8, 7, 1
ContentMargins = 8, 8, 3, 3
FillColorHint = 0 84 229
ImageCount = 2
ImageFile = itunes\FRAMEMAXIMIZED.png
ImageLayout = vertical
SizingMargins = 10, 10, 2, 2
SizingType = stretch
[Window.RestoreButton]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 74 121 246
GlyphTransparent = True
GlyphType = ImageGlyph
ImageCount = 8
ImageFile = itunes\CAPTIONBUTTON.png
ImageFile1 = itunes\MAXIMIZEGLYPH.png
ImageFile2 = itunes\MAXIMIZEGLYPH.png
ImageFile3 = itunes\MAXIMIZEGLYPH.png
ImageFile4 = itunes\MAXIMIZEGLYPH.png
ImageFile5 = itunes\MAXIMIZEGLYPH.png
ImageLayout = Vertical
ImageSelectType = size
MinDpi1 = 96
MinDpi2 = 126
MinDpi3 = 170
Offset = 49, 5
OffsetType = TopRight
SizingMargins = 0, 0, 0, 0
SizingType = TrueSize
UniformSizing = true
[Window.SmallCaption]
ContentMargins = 1, 1, 1, 3
ContentAlignment = Center
FillColorHint = 191 191 191
ImageCount = 2
ImageFile = itunes\FRAMECAPTIONsmall.png
Imagelayout = vertical
SizingMargins = 10, 10, 13, 2
SizingType = Stretch
[Window.SmallCaptionSizingTemplate]
ContentMargins = 14, 14, 16, 0
ImageCount = 2
ImageFile = itunes\SmallFrameCaptionSizing.png
Imagelayout = vertical
SizingMargins = 1, 1, 3, 2
SizingType = tile
Transparent = True
TransparentColor = 0 0 0
[Window.SmallCloseButton]
BgType = ImageFile
BorderColorHint = 255 255 255
ContentMargins = 0, 0, 0, 0
FillColorHint = 228 93 61
GlyphImageFile = itunes\SmallCloseGlyph.png
GlyphTransparent = True
GlyphType = ImageGlyph
ImageCount = 8
ImageFile = itunes\SMALLCLOSEBUTTON.png
ImageLayout = Vertical
Offset = 16, 3
OffsetType = TopRight
SizingMargins = 0, 0, 0, 0
SizingType = TrueSize
[Window.SmallFrameBottom]
Borderonly = FALSE
ImageCount = 2
ImageFile = itunes\frameBottom.png
ImageLayout = vertical
SizingMargins = 5, 5, 1, 3
SizingType = stretch
Transparent = FALSE
[Window.SmallFrameLeft]
Borderonly = FALSE
ImageCount = 2
ImageFile = itunes\frameLeft.png
ImageLayout = vertical
SizingMargins = 1, 0, 0, 0
SizingType = stretch
Transparent = FALSE
[Window.SmallFrameRight]
Borderonly = FALSE
ImageCount = 2
ImageFile = itunes\frameRight.png
ImageLayout = vertical
SizingMargins = 0, 3, 0, 0
SizingType = stretch
Transparent = FALSE
[Window.SysButton]
Offset = 10, 3
OffsetType = TopLeft