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
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
/*---------------畫面背景*/

html
{
 background:#ca6 url(https://images.plurk.com/5OnTHJcmS6tLNwvTRfyo8k.jpg) 0% top repeat;
 overflow-x:hidden !important;
}
body 
{
 background:transparent !important;
 width:100% !important;
 height:100% !important;
 min-height:800px !important;
 overflow:hidden !important;
}


/*---------------語言字型*/

body.language-large-font,  
.language-large-font #top_login,
.language-large-font #footer,
.language-large-font .small,
.language-large-font .tooltip_cnt,
.language-large-font .direct-l,
h2,.GB_Window .caption,#mainpage_content h4,#mainpage_content h5
{
 font-family: Tahoma, Calibri;
 font-size:12px !important;
 font-weight:normal !important;
 text-transform:normal;
 -webkit-text-size-adjust:none; /*Google瀏覽器字型預設取消*/
}

/*連結樣式*/
a, a:link, a:visited, a:active,
#dashboard_holder #perma-right a,
#plurk_responses ul.responses .message a,
.plurk_content a.ex_link
{
 color:#963 !important; /*cf5a00*/
 text-decoration:none !important;
}
.plurk a.ex_link, .text_holder a.ex_link,
.plurk a.ex_link:visited, .plurk a.ex_link:active,
#plurk_responses ul.responses .message a,
.plurk_content a.ex_link
{
 border-bottom:1px dashed #ccc !important;
}
a:hover,
#dashboard_holder #perma-right a:hover,
#plurk_responses ul.responses .message a:hover,
.plurk_content a.ex_link:hover
{
 color:#ca6 !important;
 text-decoration:none !important;
}

/*去除連結虛線框*/
a:focus, :focus, a, a:link, a:visited, a:active, select, select:focus 
{ -moz-outline-style:none !important; outline:none !important; outline:0 !important;}

/*粗體斜體底線與刪除線字設定*/
strike {color:#909090 !important;cursor: default;}
strike:hover {color:#111 !important;}
strong {color:#111 !important;}
strong:hover {color:#111 !important;}
i {color:#111 !important;}
i:hover {color:#111 !important;}
u {color:#111 !important;border-bottom:0px solid #ccc;}
u:hover {color:#111 !important;border-bottom:0px solid #bbb;}


/*---------------隱藏項目*/

#span_years, #m_or_f,
#replurkers_holder, .dots .inner, #plurks_count a,
 img#creature,
.block_bg .div_one_line, .small_timeline .block_bg .div_one_line,
#top_login a#sign_up, #getting_started, div .adsense,
.link_arrow, .cmp_points-arrow, .cmp_karma_up, .cmp_karma_down,
#dash-friends p, #dash-friends form, div#fan_holder span, #block_user,
div #tw_help, div a#dashboard-invite, div #sharePlurk, .dash-icon
{
 display : none; 
 height:0 !important;
 width:0 !important;
 overflow:hidden;_overflow:none;
 position:fixed;
 top:-9000px;
 filter:alpha(opacity=0) !important; opacity:0 !important; zoom:1; 
}
#plurk_ads 
{
 max-height:0px !important;max-width:0px !important;
 background:rgba(255,255,255,0.6) !important;
 border-bottom:1px dotted #ccc !important;
 border-top:1px dotted #bbb !important;
 font-size:11px !important;
 color:#ccc !important;
 border-radius:2px;
}
#form_holder .caption {z-index:9999;position:relative;}



/*---------------更新通知*/

#updater
{
 background-color:#none;
 border:1px solid #none;
 padding:0px 0px;
 top:-5px;
 left:10px;
 color:#5e3725;
 font-size:12px !important;
 opacity:0.7; zoom:1;
 border-radius:0px;
}
.small_timeline #updater {top:284px;}
#updater .text {color:#bbb;}
#update_sepa {padding:0;}
#updater a {color:#5e3725 !important;text-decoration:none!important;}
#updater a:hover {color:#5e3725 !important;}
#updater a:hover span {text-decoration:none!important;}
#updater #noti_np #noti_np_text {color:# } /*左*/
#updater #noti_np a {color:#;}
#updater #noti_re #noti_re_view #noti_re_text {color:#;}
#updater #noti_re #noti_re_view a {color:#;}  /*檢視*/


/*---------------音樂播放器*/

#music_player
{
 background-color:#ca6;
 border:1px solid #963;
 padding:2px 5px;
 top:360px;
 right:10px;
 color:#111;
 opacity:0.7; zoom:1;
 border-radius:3px;
}
#music_player:hover {opacity:1; zoom:1;}
.small_timeline #music_player {top:284px;}
#music_player a {color:#963 !important;}
#music_player a:hover {text-decoration:none; color:#963 !important;}

/*---------------所有訊息*/

#filter_tab {margin:0px 10px 0 0;}
#filter_tab a
{
 border:0px solid #5e3725 !important;
 border-top:none!important;
 padding:2px 5px !important;
 margin:0 4px 0 0 !important;
}
#filter_tab .off_tab
{
 background:none;
 color:# !important;
 border-radius:0px;
 opacity:0.8; zoom:1;
}
#filter_tab a:hover {text-decoration:none;}
#filter_tab a.filter_selected
{
 background:#632;
 color:#fc7 !important;
 border-radius:0px;
 opacity:0.9; zoom:1;
}
.unread_generic,
#filter_tab a.filter_selected .unread_generic
{
 background:#632 !important;
 color:#fff !important;
}
#filter_tab a.off_tab:hover, #filter_tab a.filter_selected:hover {opacity:1; zoom:1;}


/*---------------浪上的噗*/

.plurk {margin-top:10px;}

/*淡入效果*/
#timeline_holder div.plurk
{
 -moz-transition:top 0.5s ease, -moz-transform 0.5s ease;
 -moz-transform-origin:0 0;
 -webkit-transition:top 0.5s ease, -webkit-transform 0.5s ease;
 -webkit-transform-origin:0 0;
 -o-transition:top 0.5s ease, -o-transform 0.5s ease;
 -o-transform-origin:0 0;
}

/*浪上噗的寬高*/
.plurk .truncated {width:px;min-height:22px;}
.plurk .truncated_media {width:px;}
.plurk .truncated_media_height {width:px;min-height:px;}
.plurk .truncated_total {width:px;}

/*噗打開後回應區寬度*/
.display, .toggled
{
 min-width:450px;_width:450px !important;
 z-index:1200;
}
.plurk_box {z-index:1450;width:450px;}

/*表格寬度*/
.display table,.toggled table,
.list table {width:100% !important;}

/*噗外框2*/
.block_cnt .plurk_cnt
{
 background:rgba(255,255,255,0.7) !important;
 border:1px solid #bbb !important;
 border-right:1px solid #ddd !important;
 border-bottom:1px solid #ccc !important;
 border-radius:2px;
 margin:-2px 0px 0px -26px;
 padding:4px 4px 4px 26px;
}
.block_cnt .link_extend .plurk_cnt
{
 background:rgba(255,255,255,0.93) !important;
 box-shadow:2px 3px 4px rgba(0,0,0,0.3);
}
.block_cnt .plurk_box .plurk_cnt
{
 background:rgba(255,255,255,0.93) !important;
}

/*文字設定2*/
#timeline_holder .plurk_cnt
{
 font-size:13px !important;
 line-height:22px !important;
 letter-spacing:0.03em;
}
.list .plurk_cnt
{
 background:none !important;
 font-size:13px !important;
 line-height:22px !important;
 letter-spacing:0.03em;
 padding:4px;
 border-bottom:1px solid #bbb !important;
 opacity:0.93; zoom:1;
}
.list .plurk_cnt:hover
{
 background:rgba(238,238,238,0.7) !important;
 border-radius:2px;
}
.td_cnt .text_holder
{
 color:#111 !important;
}

/*回應列表區*/
.plurk_box .plurk_cnt {padding-bottom:0px;}
.plurk_box .caption
{
 color:#999;
 background:rgba(255,255,255,0.93);
 border-right:1px solid #bbb;
 padding:2px 5px;
 font-size:10px !important;
 border-radius:0px;
}
.plurk_box .list
{
 height:px;
 padding:0 5px 0 5px;
 border-right:1px solid #bbb;
 background:rgba(255,255,255,0.93);
 border-radius:0px;
}
.plurk_box .mini_form,
.plurk_box .login_to_see
{
 padding:5px;
 border-right:1px solid #bbb;
 border-bottom:0px solid #bbb;
 background:rgba(255,255,255,0.93);
 font-weight:normal;
 border-radius:0px;
}
.mini_form .qual_holder
{
 color:#632 !important;
 font-size:12px !important;
}
.mini_form .char_updater {font-size:10px;color:#c6c6c6;}
.char_updater span
{
 color:#ccc !important;
 font-size:10px !important;
 font-weight:400 !important;
 background:none !important; 
}
td.td_cnt textarea, textarea#input_small
{
 width:98%;
 padding:2px 1px 0 1px;
 font-size:13px !important;
 line-height:1.4 !important;
 height:80px;
}
.plurk_box .login_to_see a,.red_link
{
 background:none;
 text-align:center;
 text-decoration:none !important;
 font-size:10px !important;
 color:#eee;
}
.info_box
{
 background:#eee;
 border-right:1px solid #bbb;
 border-bottom:1px solid #bbb;
 border-top:1px dashed #ccc;
 padding:1px 5px 1px 5px;
 color:#888;
 font-size:11px !important;
 border-radius:0px;
}
.info_box a {color:#444 !important;text-decoration:none;}
.info_box a:hover {text-decoration:none !important;color:#000 !important;}

/*噗上的人名*/
.name, a.name:hover,
.td_qual span a, .td_qual span a:hover
{
 color:#000 !important;
 font-weight:bold;
 text-decoration:none;
}

/*回應中的暱稱*/
.text_holder a.ex_link[href*=www.plurk.com]
{
 color:#fff !important;
 background:#963 !important;
 margin:2px !important;
 padding:2px 5px !important;
 padding-top:1px !important;
 border-radius:3px;
 font-size:11.9px !important;
 text-decoration:none !important;
 border:0 !important;
}
.text_holder a.ex_link[href*=www.plurk.com]:hover
{
 color:#fff !important;
 background:#ca6 !important;
 text-decoration:none !important;
 border:0 !important;
}

.td_qual {padding:2px 0px 2px 5px;}
.td_cnt {padding:2px 5px 5px 0px;}


/*隱藏已經消音的噗*/
.muted {filter:alpha(opacity=10); opacity:0.1; zoom:1;}
.muted:hover {filter:alpha(opacity=100); opacity:1; zoom:1;}

/*新回應的底色*/
.shade_2,.plurk_box .shade_2{background:#ffd!important;}
.shade_3,.plurk_box .shade_3{background:#ffc!important;}
.shade_4,.plurk_box .shade_4{background:#ffb!important;}
.shade_5,.plurk_box .shade_5{background:#ffa!important;}
.shade_6,.plurk_box .shade_6{background:#ff9!important;}
.shade_1,.plurk_box .shade_1{background:#ffe!important;}

.plurk_box td .shade_6, td .shade_6,
.plurk_box td .shade_5, td .shade_5,
.plurk_box td .shade_4, td .shade_4,
.plurk_box td .shade_3, td .shade_3,
.plurk_box td .shade_2, td .shade_2,
.plurk_box td .shade_1, td .shade_1
{
 background:rgba(255,255,255,0.93) !important;
}
.plurk.new .plurk_cnt
{
 box-shadow: 0px 3px 4px rgba(0,0,0,0.1); 
}

/*原噗者的回應*/
.list .highlight_owner .td_qual a
{
 color:#632 !important; 
 text-decoration:none;
}
.list .highlight_owner .plurk_cnt tr {}
.list .highlight_owner .plurk_cnt,
.list .highlight_owner .plurk_cnt:hover
{
 background:#EEE2F3 !important;
 border-radius:5px;
 border-bottom:1px solid #c8a !important;
}
.list .highlight_owner .plurk_cnt .text_holder
{
 color:#111 !important; 
}

/*回應時間標示*/
.response_time .plurk_cnt,
div.response_time 
{
 background:none !important;
 border:0 !important;
}
div.response_time .holder 
{
 background:rgba(255,255,255,0.93) !important;
 color:#333 !important;
 font-size:11px !important;
 border:0 !important;
 margin-left:-2px !important;
 letter-spacing:0.02em;
 border-radius:0px 4px 4px 0px;
}

/*分享連結區塊*/
.plurk a.oembed, .plurk a.oembedmeta,
.plurk a.youtube.video, 
.plurk a.appledaily, .plurk a.gmap,
.plurk_content a.oembed, .plurk_content a.oembedmeta, .plurk_content a.youtube, .plurk_content a.appledaily, .plurk_content a.gmap
{
 padding-left:7px;
 border:0 !important;
 border-left:5px solid #B0B6BA  !important;
 font-size:12px !important;
 color:#B0B6BA !important;
}
.plurk a.oembed:hover, .plurk a.oembedmeta:hover,
.plurk a.youtube.video:hover,
.plurk a.appledaily:hover, .plurk a.gmap:hover,
.plurk_content a.oembed:hover, .plurk_content a.oembedmeta:hover, .plurk_content a.youtube:hover, .plurk_content a.appledaily:hover, .plurk_content a.gmap:hover
{
 background:none !important;
 border:0;
 border-left:5px solid #8F989E;
 color:#8F989E !important;
}
a.youtube img, a.oembed img, a.oembedmeta img, a.appledaily img, a.gmap img
{
 max-width:80px !important; 
 background:none !important;
 border:0 !important;
 padding:1px;
 border:1px solid #c4c4c4;
 border-radius:3px;
}
a.youtube:hover img, a.oembed:hover img, a.oembedmeta:hover img, 
a.appledaily:hover img {max-width:80px!important; border:0 !important;}

/*影片圖大小修正*/
.youtube img, .youtube:hover img, 
.video img, .video:hover img
{
 max-width:80px !important; max-height:60px !important;
}
p#about_me a.youtube.video
{
 font-size:0px !important;
 max-height:45px !important;
 overflow:hidden;_overflow:none;
}
p#about_me .youtube img, p#about_me .youtube:hover img {border:0 !important;}

/*播放箭頭*/
.video img.media_play_icon {}
.video:hover img.media_play_icon {}
img[https://statics.plurk.com/003e5e225479d6b82e8ffb93c26b6a01.png]
{filter:alpha(opacity=80); opacity:0.8; zoom:1;}

/*圖片*/
.pictureservices img,
.plurk a.pictureservices img
{
 padding:2px;
 margin-top:2px;
 margin-left:3px;
 border:0 !important;
 border-radius:3px;
 background:none !important;
}
.pictureservices:hover img,
.plurk a.pictureservices:hover img
{
 background:none !important;
 border:0 !important;
}

/*回應數*/
.td_response_count {padding-top:0px; width:15px; height:30px !important;}
.response_count
{
 color:#963 !important;
 background-color:none;
 font-size:13px !important;
 margin-left:1px;
 background:none;
 border-radius:3px;
 padding:2px 5px !important;
 opacity:0.75; zoom:1;
}
.new .response_count
{
 background-color:#a78;
 color:#fff !important;
 box-shadow:0px 0px 4px rgba(255,255,255,0.8);
 text-shadow:1px 2px 3px rgba(238,238,238,0.2);
 opacity:0.9; zoom:1;
}

/*讓噗列表換行*/
.list .plurk_cnt .td_qual 
{
 position:absolute;
 width:auto;
 overflow:visible;
 margin-left:0.7em;
}
.list .plurk_cnt .text_holder  
{
 margin-top:1.8em;
 padding:0.5em;
 margin-left:0.7em;
 width:auto !important;
 background:# !important;
 border-radius:px;
}


/*---------------單則訊息網址頁*/

div.bigplurk
{
 width:1000px;
 margin-left:auto;
 margin-right:auto;
}
div.bigplurk
.user-nick,
.user-nick:hover
{
 font-size:14px !important;
 color:#111 !important;
}
div.bigplurk h1.content .plurk_content
{
 color:#000 !important;
}
div.bigplurk h1.content
{
 padding:5px;
 line-height:1.5;
 font-size:14px;
 background-color:rgba(255,255,255,0.93);
 border-right:1px solid #ddd;
 border-radius:2px 2px 0px 0px;
}
span.time {color:#999;font-size:11px;}
div.bigplurk div.time
{
 margin:0 70px 0 0;
 padding:0 4px 4px 0;
 text-align:right;
 background-color:rgba(255,255,255,0.93);
 color:#9f9f9f;
 border-right:1px solid #ccc;
 border-bottom:1px solid #bbb;
 border-radius:0px 0px 2px 2px;
}

/*噗主代表圖*/
img.bubble_edge {filter:alpha(opacity=0) !important; opacity:0 !important; zoom:1;}
div.bigplurk div.user {margin:-12px auto 0 auto;padding-left:390px;}
div.bigplurk div.user img
{
 border:2px solid #bbb !important;
 border-radius:2px;
}

/*上一則下一則*/
#plurk_nav {font-size:12px;height:30px;margin:20px 10px 0 10px;}
#next_plurk { float : left ; text-align:left;}
#prev_plurk { float : right ; text-align:right;text-align:right;}
#prev_plurk,#next_plurk
{
 background:none;
 padding:3px 4px;
 text-decoration:none!important;
 border-radius:0px;
}
#prev_plurk:hover, #next_plurk:hover {}

/*回應列表*/
#plurk_responses 
{
 width:700px;
 margin:0 auto !important;
}
div #plurk_responses h2 {color:#bbb !important;}
div #plurk_responses h2 a, #plurk_responses div.feed-link a
{
 color:#963 !important;
 background:none !important;
}
#plurk_responses ul.responses
{
 background:none !important;
 border:0 !important;
 max-height:500px !important;
 overflow:auto !important;
 border-radius:0px;
}
#plurk_responses ul.responses li
{
 background:rgba(255,255,255,0.93) !important;
 border-bottom:1px dashed #ccc !important;
}
#plurk_responses .responses .odd {background:#EEE2F3 !important;}
#plurk_responses ul.responses li .avatar {margin:4px 4px 0 4px;}
#plurk_responses ul.responses li img.avatar {width:30px;height:30px;border-radius:2px;}
#plurk_responses ul.responses .message a.user
{
 color:#111 !important;
 text-decoration:none !important;
 border:0 !important;
}
#plurk_responses ul.responses .message a.user:hover {color:#111 !important;}
#plurk_responses ul.responses .message
{
 margin:4px 0 0 34px;
 padding:6px;
 color:#000 !important;
 font-size:13px !important;
 line-height:22px !important;
}
#plurk_responses ul.responses .message a {color:#963 !important;}
#plurk_responses ul.responses .message a:hover {text-decoration:none !important;}

/*下方回應區*/
#reply {margin-top:0px;}
#reply #reply_box,#reply h2,#reply #reply_box_holder
{
 background:none !important;
 border:0 !important;
}
#reply_box_holder .qual_holder {color:#fff !important; font-size:17px !important; }
#reply_box #input_big {font-size:17px; color:# !important;}

/*登入或註冊以回應*/
div #not_logged_in h2, div #not_logged_in h2 a, div #not_logged_in h2 a:hover  
{
 background:none !important;
 font-size:14px !important;
 font-family: Tahoma !important;
 text-decoration:none !important;
 color:#963 !important;
}
div #not_logged_in h2 a:hover {color:#ca6 !important;}


/*---------------功能視窗 */

/*圖片彈出*/
.direct-l
{
 background:#eee;
 border-top:1px solid #cfcfcf;
 color:#777;
 text-align:center;
 padding:1px 0 2px 0;
}
.direct-l.yt {width:633px;border:1px solid #cfcfcf;margin:0 auto 10px 12px;}

/*隱藏影片在背景播放*/
.hide_window {text-align:center; margin:3px 0 8px 0;}
.hide_window a
{
 padding:3px 5px 3px 5px;
 background:none !important;
}

/*分享及設定視窗*/
.GB_Window, .GB_Gallery .iframe_holder
{
 background:url(https://statics.plurk.com/577ea8acd3e7ade25d3a23345f4d70d8.png);
 background:rgba(0,0,0,0.2) !important;
 padding:6px;
 border:1px solid rgba(0,0,0,0.2);
 border-radius:4px;
}
.GB_window .content {border:1px solid #ccc;border-top:0;}
.GB_Gallery .content  {border:0;}
.GB_Window .header
{
 background:rgba(0,0,0,0.2) !important;
 border:1px solid rgba(0,0,0,0.2);
 color:rgba(0,0,0,0.2);
}
.GB_Window .header td.caption
{
 font-size:14px;
 color:#fff;
 background:rgba(0,0,0,0.2);
 padding:4px 0 4px 10px;
}
.GB_Window .close {background:rgba(0,0,0,0.2);}
.GB_Window .close span
{
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/icon/icon1/16/cancel-inv.png) no-repeat 0 0;
 width:15px;
 margin-right:7px;
 color:rgba(0,0,0,0.2);
 font-size:1px !important;
}
img[https://www.plurk.com/static/greybox/w_close1.gif]
{filter:alpha(opacity=0); opacity:0; zoom:1;}
.GB_Gallery .content
{
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/icon/icon1/16/cancel-inv.png) right 5px no-repeat !important;
}

/*浪上噗友小視窗*/
.AmiMenu.info_menu
{
 background-color:#963; /*526879*/
 border:1px solid #632; /*8399aa*/
 border-right:1px solid #632; /*263745*/
 border-bottom:1px solid #632;
 border-radius:0px;
}
.AmiMenu.info_menu td
{
 font-size:11px;
 line-height:16px;
 color:#fff;
}
.AmiMenu.info_menu td.user_info .user_img {padding:0 4px;}
.AmiMenu.info_menu .user_info .user_img
{
 margin:4px 6px 0 0;
 width:45px;
 height:45px;
}
.AmiMenu.info_menu .user_info img
{
 border:0 !important;
 border-radius:0px;
}
.AmiMenu.info_menu .separator
{
 background:url(https://statics.plurk.com/73f0eff6f2a828f0a3f67e25e5c8d12b.png) repeat-x 0 bottom;
 background:none !important;
 height:2px;
}
.AmiMenu.info_menu .block {background-color:#632; color:#fff;border-radius:0px;}
.AmiMenu.info_menu .user_info {padding-bottom:6px;}
.AmiMenu.info_menu .user_info b {padding-top:2px;}
.AmiMenu.info_menu .user_info.on,.award_bar_mini.on
{
 color:#ddd !important;
 background-color:#632 !important;
 border-radius:0px;
}
.AmiMenu.info_menu .on
{
 background-color:#ca6; /*091823*/
 border:none!important;
 margin:0!important;
 border-radius:0px;
}
#info_overlay .drop_arrow div, #info_overlay .on_arrow div
{
 background-color:#ca6;
 width:px;
 text-align:;
}
.cmp_tooltips-down
{
 height: 17px;
 background: transparent url(https://i614.photobucket.com/albums/tt230/m66660000/plurk/up_down/orange2_down.png) no-repeat scroll left top;
}
.cmp_tooltips-up
{
 height: 17px;
 background: transparent url(https://i614.photobucket.com/albums/tt230/m66660000/plurk/up_down/orange2_up.png) no-repeat scroll left top;
}
.award_bar_mini .award_bar {margin-left:0px!important;}
.award_bar_mini .award_bar div {margin-right:2px!important;}

/*說明小視窗*/
.tooltip_cnt 
{
 padding:4px 6px 4px 4px;
 margin-top:8px;
 background-color:#c8a; /*526879*/
 border:1px solid #c8a;
 border-right:1px solid #a78; /*263745*/
 border-bottom:1px solid #a78;
 color:#fff;
 line-height:1.2;
 font-size:12px;
 border-radius:0px;
 opacity:0.9; zoom:1;
}
.tooltip_cnt img {margin:0 6px 0 0; border:0 !important; border-radius:2px;}
.AmiTT_main {background:none !important; border:0 !important;}
.AmiTT_main b
{
 color:#fff !important; 
 font-weight:normal;
 font-size:12px;
}

/*語助詞*/
.plurkaction .dd_img img, .dd_img img {opacity:0.3 !important; zoom:1;}
.qualifier, .m_qualifier, .r_qualifier, div.bigplurk .r_qualifier
{
 background:none !important;
 border:0 !important;
 padding:0 3px 1px 3px;
 color:white;
 margin:0 3px 0 4px;
 border-radius:0px;
}
.qualifier, .mini_form .m_qualifier, .r_qualifier {}
.m_qualifier, #reply_box .m_qualifier, .content .r_qualifier {}
.AmiMenu
{
 background-color:#111;
 border-top:1px solid #111;
 border-left:1px solid #111;
 border-right:1px solid #000;
 border-bottom:1px solid #111;
}
.qual_menu td {text-align:center !important;font-size:12px;}
.qual_menu {border-radius:3px;}
.qual_menu .on
{
 background-color:none !important;
 border-radius:0px;
 color:#fff !important;
}

/*表情視窗*/
#emoticon_selecter { top:px !important;}
#emoticon_selecter .upper_arrow { background-image:none !important; }
#emoticon_selecter #emoticons_tabs ul { overflow : visible !important; }
#emoticon_selecter
{
 background:#eee !important;
 border-color:#a0a0a0 !important;
 border-radius:3px;
}
#emoticon_selecter #emoticons_tabs
{
 background:edf2f6;
 border-color:#fff !important;
 border-bottom:1px solid #c1d0d7;
 overflow:visible !important;
}
#emoticons_show
{
 background:#fff !important;
 width:422px !important;
 overflow:auto !important;
}
#emoticon_selecter img, #emoticon_selecter a:hover img,
.emo-manager .emo-public-pool .emo-wrapper,
.emo-manager .emo-public-pool .emo-wrapper:hover
{
 border:0 !important;
}
#emoticon_selecter #emoticons_tabs li
{
 background:#c1d0d7 !important;
 border-color:#fff !important;
 border-radius:0px;
 font-size:12px !important;
}
#emoticons_tabs ul li a
{
 color:# !important;  /*8099ad*/
 font-weight:normal !important;
}
#emoticons_tabs ul li.current a
{
 color:# !important;   /*133d5f*/
}
#emoticon_selecter #emoticons_tabs li.current 
{
 background:#fff !important;
 border-bottom:1px solid #fff;
 border-radius:0px;
}
#emoticons_show .red_link
{
 background:none !important;
 font-weight:normal; 
 font-size:11px;
 color:#bbb !important;
 border:0 !important;
 text-decoration:none !important;
}
.emo-manager
{
 background:#edf2f6 !important;
 border-bottom:1px solid #c1d0d7;
 margin-top:px !important;
}
.emo-manager .emo-add-bn,
.emoticons_my .add-emoticon-panel .orange-but
{
 background:#bbb !important;
 border:0 !important;
 box-shadow:0 1px 0 #fff !important;
 font-size:11px !important;
}
.emoticons_my .add-emoticon-panel div.popup
{
 background:#fff !important;
 border:1px solid #eee !important;
 border-radius:3px;
 font-size:11px !important;
 color:#333 !important;
 width:px;
}
.emoticons_my .add-emoticon-panel input.col-right,
.emoticons_my .add-emoticon-panel input.col-right:focus
{
 background:#F3F3F3 !important;
 border:1px solid #C6C6C6;
 border-right:1px solid #EFEFEF;
 border-bottom:1px solid #EFEFEF;
 font-size:11px !important;
 color:#333 !important;
}
.emoticons_my .add-emoticon-panel input.col-right:focus {background:#fff;}
.emoticons_my .add-emoticon-panel img.col-right
{
 margin-top:2px;
 border:1px solid #8190b7 !important;
}
a .bn_close
{
 background: url(https://statics.plurk.com/d21cadfe7fa8c3977700f1d389621d2d.png) !important;
}

/*同步訊息視窗*/
#sync_checked_form
{
 font-size:12px !important;
 color:#333;
 width:240px;
 background:#edf2f6;
 border-color:#ededed !important;
 top:0px !important;
 border-radius: 3px;
}
#sync_checked_ul a {}
.upper_arrow
{
 filter:alpha(opacity=0) !important; opacity:0 !important; zoom:1;
}

/*私人訊息及隱私選項*/
#more_options_holder
{
 background:#e71 !important;
 margin-top:5px;
 padding-bottom:10px;
 border:0 !important;
 color:#eda !important;
 font-size:12px !important;
 border-radius:2px;
}
#more_options td {background:none !important;}
#more_options .caption {color:#eda !important;font-size:12px !important;}
.small {font-size:10px !important;}
.private_to {color:#fff !important;}
.advert a {font-size:0px !important;}
.private_to b,
.selectedSmartInputItem, .selectedSmartInputItem a,
.selectedSmartInputItem a:hover, 
.auto_ta .person
{
 background:#bbb !important;
 color:#333 !important;
 font-size:12px !important;
 font-weight:normal !important;
 text-decoration:none !important;
 border-radius:3px;
}
#smartInputFloaterContent
{
 background:#fff !important;
 font-size:12px !important;
}
.private_to b,
.auto_ta .person
{
 padding:2px 4px;
 font-size:12px !important;
}
.wickEnabled, .wickEnabled:focus
{
 background:none !important;
 border:0 !important;
 color:#fff !important;
 box-shadow:0px 0px 0px #ccc;
}


/*-------------圖片更換-------------*/

/*噗按鈕*/
.cmp_plurk
{
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/plurk/orange2.png) no-repeat scroll top left;
}

/*往前往後*/
.cmp_arrow_right
{
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/icon/icon1/24/media-fast-forward.png)  no-repeat;
 width:24px; height:24px;
 margin:2px;
}
.cmp_arrow_left
{
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/icon/icon1/24/media-fast-backward.png) no-repeat;
 width:24px; height:24px;
 margin:2px;
}
.cmp_back_to_today
{
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/icon/icon1/24/media-previous.png) no-repeat;
 width:24x; height:24px;
 margin:2px;
}
.browse_button
{
 top:300px;
 filter:alpha(opacity=10) !important; opacity:0.1 !important; zoom:1;
 -moz-transition:opacity 0.2s ease-out;
 -webkit-transition:opacity 0.2s ease-out;
 -o-transition:opacity 0.2s ease-out;
}
.browse_button:hover
{
 filter:alpha(opacity=80) !important; opacity:0.8 !important; zoom:1;
 -moz-transition:opacity 0.2s ease-in;
 -webkit-transition:opacity 0.2s ease-in;
 -o-transition:opacity 0.2s ease-in;
}

/*loading*/
.cmp_loading {width:0px;height:0px;}
#div_loading .cnt 
{
 background:transparent url(https://i614.photobucket.com/albums/tt230/m66660000/plurk/loading/loading1.gif) no-repeat scroll center top !important;  
 margin-top:150px; height:px;
  opacity:1 !important; zoom:1;
}
.loading img  {width:0px;height:0px;}
.loading
{
 background:transparent url(https://i614.photobucket.com/albums/tt230/m66660000/plurk/loading/loading1.gif) no-repeat scroll center top !important;  
 margin-top:30px;height:px;
  opacity:1 !important; zoom:1;
}

/*分享與表情選項圖片*/
.cmp_media_off, .cmp_media_on,
.cmp_media_mini_off, .cmp_media_mini_on 
{
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/_ic/orange/iphone_12x16.png) no-repeat scroll top left;
 width: 12px; height: 16px;
}
img[https://static.plurk.com/static/icons/emoticon_off.png],
img[https://static.plurk.com/static/icons/emoticon_on.png],
img[https://static.plurk.com/static/icons/emoticon_mini_off.png],
img[https://static.plurk.com/static/icons/emoticon_mini_on.png]
{
 filter:alpha(opacity=0); opacity:0; zoom:1;
}
.emoticon_selecter_img_on, .emoticon_selecter_img_off {width: 16px; height: 16px;}
.icons_holder
{
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/_ic/orange/chat_alt_stroke_16x16.png) no-repeat 18px 4px;
}
.cmp_sync_off, .cmp_sync_on
{
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/_ic/orange/spin_alt_16x16.png) no-repeat scroll top left;
 width: 16px; height: 16px;
 margin-top: 4px !important;
}
.cmp_privacy_off, .cmp_privacy_on
{
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/_ic/orange/lock_stroke_12x16.png) no-repeat scroll top left;
 width: 12px; height: 16px;
}

/*無回應 : )*/
.list .empty 
{
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/icon/icon1/16/uc-level-3-user-goal.png) no-repeat 50% 0px transparent;
 height:32px;
 color:#fff !important;
 margin:20px 0 0 0;
 padding:30px 0 0 0; 
 text-indent:-9999px;
}

/*刪除與回覆回應圖示*/
.reply_to
{
 background:transparent url(https://i614.photobucket.com/albums/tt230/m66660000/_ic/orange/comment_stroke_12x11.png) no-repeat scroll 1px 2px;
}
.reply_to:hover
{
 background:transparent url(https://i614.photobucket.com/albums/tt230/m66660000/_ic/black/comment_stroke_12x11.png) no-repeat scroll 1px 2px; 
}
.del_icon 
{
 background:transparent url(https://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/x_7x7.png) no-repeat scroll 5px 4px;
}
.del_icon:hover
{
 background:transparent url(https://i614.photobucket.com/albums/tt230/m66660000/_ic/black/x_7x7.png) no-repeat scroll 5px 4px;
}

/*單一噗頁面連結*/
.perma_link
{
 margin-left:5px;
 padding-left:15px;
 background:url(https://i614.photobucket.com/albums/tt230/m66660000/icon/arrow/arrow10_gray2.gif) no-repeat 3px 6px;
}
.perma_link a,
.perma_link a:hover 
{
 text-decoration:none !important;
}

/*私訊圖示*/
img[https://statics.plurk.com/c550f52f61da13964d5415c07b7506ca.png]
{filter:alpha(opacity=0); opacity:0; zoom:1;}
.private
{
 background: url(https://i614.photobucket.com/albums/tt230/m66660000/icon/icon1/16/padlock-closed.png) no-repeat 0 0;
}

/*轉噗圖示*/
img[https://statics.plurk.com/2da9c174ff4bce649887dba83a97222e.png]
{filter:alpha(opacity=0); opacity:0; zoom:1;}
.replurk
{
 background: url(https://i614.photobucket.com/albums/tt230/m66660000/icon/icon1/16/media-repeat-alt.png) no-repeat 0 0;
}
.manager .replurk {background:none !important;}

/*說讚圖示*/
img[https://statics.plurk.com/ffdca9715cfcd8ea7adc140c1f9d37df.png]
{filter:alpha(opacity=0); opacity:0; zoom:1;}
.favorite_icon
{
 background: url(https://i614.photobucket.com/albums/tt230/m66660000/icon/icon1/16/star.png) no-repeat 0 0;
}

/*捲軸語法*/
::-moz-scrollbar
{
 background:#fff !important;
 -moz-border-radius:10px;
 -moz-box-shadow:0px 3px 0px rgba(238,238,238,0.3);
}
::-moz-scrollbar:hover {background:#f4f4f4 !important;}
::-moz-scrollbar-thumb {background:#fff !important;border-radius:10px;}
::-moz-scrollbar-thumb:hover {background:#f1f1f1 !important;}
::-moz-scrollbar-thumb:active {background:#f0f0f0 !important;}

::-webkit-scrollbar
{
 background:#fff !important;
 -webkit-border-radius:10px;
 -webkit-box-shadow:0px 3px 0px rgba(238,238,238,0.3);
}
::-webkit-scrollbar:hover {background:#f3f3f3 !important;}
::-webkit-scrollbar-thumb {background:#fff !important;border-radius:10px;}
::-webkit-scrollbar-thumb:hover {background:#f1f1f1 !important;}
::-webkit-scrollbar-thumb:active {background:#f0f0f0 !important;}

/*瀏覽器所選部份底色*/
::-moz-selection {background:#a78 !important;color:#fff;}
::selection {background:#a78 !important;color:#fff;}

/*透明度與淡入淡出效果*/
div#plurk-dashboard, #plurk_responses
{
 filter:alpha(opacity=20) !important; opacity:0.2 !important; zoom:1;
 -moz-transition:opacity 0.7s ease-out, height 1.5s ease-out;
 -webkit-transition:opacity 0.7s ease-out, height 1.5s ease-out;
 -o-transition:opacity 0.7s ease-out, height 1.5s ease-out;
}
div#plurk-dashboard:hover, #plurk_responses:hover
{
 filter:alpha(opacity=100) !important; opacity:1 !important; zoom:1;
 -moz-transition:opacity 0.7s ease-in, height 1s ease-in;
 -webkit-transition:opacity 0.7s ease-in, height 1s ease-in;
 -o-transition:opacity 0.7s ease-in, height 1s ease-in;
}
.award_bar img, .user_link img
{
 filter:alpha(opacity=20) !important; opacity:0.2 !important; zoom:1;
 -moz-transition:opacity 0.3s ease-out;
 -webkit-transition:opacity 0.3s ease-out;
 -o-transition:opacity 0.3s ease-out;
}
.award_bar img:hover, .user_link img:hover
{
 filter:alpha(opacity=100) !important; opacity:1 !important; zoom:1;
 -moz-transition:opacity 0.3s ease-in;
 -webkit-transition:opacity 0.3s ease-in;
 -o-transition:opacity 0.3s ease-in;
}

/*列表延伸動態*/
.list
{
 -moz-transition:height 0.5s ease;
 -webkit-transition:height 0.5s ease;
 -o-transition:height 0.5s ease;
}

/*語助詞顏色指定*/
.qual_menu .q_freestyle, 
.q_freestyle,
td .q_freestyle   /*自由發揮*/
{
 background:none !important;
 color:#999 !important;
} 
.qual_menu .q_loves,
.q_loves,
td .q_loves   /*愛*/
{
 background:none !important;
 color:#B20C0C !important;
} 
.qual_menu .q_likes,
.q_likes,
td .q_likes   /*喜歡*/
{
 background:none !important;
 color:#CB2728 !important;
} 
.qual_menu .q_shares,
.q_shares,
td .q_shares   /*分享*/
{
 background:none !important;
 color:#A74949 !important;
 border:0 !important;
} 
.qual_menu .q_gives,
.q_gives,
td .q_gives    /*給*/
{
 background:none !important;
 color:#620E0E !important;
} 
.qual_menu .q_hates, 
.q_hates, 
td .q_hates    /*討厭*/
{
 background:none !important;
 color:#ccc !important;
} 
.qual_menu .q_wants,
.q_wants,
td .q_wants    /*想要*/
{
 background:none !important;
 color:#8DB241 !important;
} 
.qual_menu .q_wishes, 
.q_wishes, 
td .q_wishes   /*期待*/
{
 background:none !important;
 color:#5BB017 !important;
} 
.qual_menu .q_needs,
.q_needs,
td .q_needs    /*需要*/
{
 background:none !important;
 color:#7A9A37 !important;
} 
.qual_menu .q_will,
.q_will,
td .q_will   /*打算*/
{
 background:none !important;
 color:#B46DB9 !important;
} 
.qual_menu .q_hopes,
.q_hopes,
td .q_hopes   /*希望*/
{
 background:none !important;
 color:#e05be9 !important;
} 
.qual_menu .q_asks,
.q_asks,
td .q_asks   /*問*/
{
 background:none !important;
 color:#8361bc !important;
} 
.qual_menu .q_has,
.q_has,
td .q_has    /*已經*/
{
 background:none !important;
 color:#777 !important;
}
.qual_menu .q_was,
.q_was,
td .q_was   /*曾經*/
{
 background:none !important;
 color:#525252 !important;
} 
.qual_menu .q_wonders,
.q_wonders,
td .q_wonders   /*好奇*/
{
 background:none !important;
 color:#2e4e9e !important;
} 
.qual_menu .q_feels,
.q_feels,
td .q_feels   /*覺得*/
{
 background:none !important;
 color:#2D83BE !important;
} 
.qual_menu .q_thinks,
.q_thinks,
td .q_thinks   /*想*/
{
 background:none !important;
 color:#689CC1 !important;
} 
.qual_menu .q_says, 
.q_says,
td .q_says   /*說*/
{
 background:none !important;
 color:#632 !important;  /*E2560B*/
} 
.qual_menu .q_is,
.q_is,
td .q_is    /*正在*/
{
 background:none !important;
 color:#E57C43 !important;
}
.q_replurks  /*轉噗*/
{
 background-image: url(https://i614.photobucket.com/albums/tt230/m66660000/_ic/green/loop_8x8.png) !important;
 background-repeat: no-repeat !important;
 background-position: right center !important;
 color:#3b8610 !important;
}
.qual_menu .on
{
 color:#FFF !important;
 text-shadow:0px 0px 4px #bbb;
}


/*------------此噗版CSS僅供個人自用,請勿改製再分享或用於商業用途---------------
 Date: 2012-01-24
 Design by: Be Myself Inc. M6
 Copyright: All Rights Reserved.
------------------------------------------------------------------------*/


/*分類在右、更新在左*/
/*此為官方提供之寫法*/
#filter_tab li{
  clear: none;
  width: auto;
  margin-right: 5px;}
#filter_tab a{
  height:25px !important;
  margin:0 !important;}
.timeline_control{
  margin-left:0;}
#timeline_control_holder{
  width:100%;}
#updater{
  left:5px;}
/*以下為小月的修正
https://www.plurk.com/tsukiari
*/
/*可避免標籤蓋在較低的噗上*/
#timeline_bg{
  z-index: -1;}
#timeline_cnt, .timeline_control{
  z-index: auto;}

/*未讀噗數去掉紅背景*/
.unread_generic  
{
background:none !important;
}


img#creature
{
filter:alpha(opacity=0) ; -moz-opacity:0; opacity: 0;
}

/*Plurk 生物*/
#dynamic_logo img{
/*先隱藏原本的影像*/
filter: alpha(opacity=0);opacity:0.0;
}
#dynamic_logo{
z-index:1;
height: 300px; /*請依照您的生物調整到適當高度*/
width: 496px; /*請依照您的生物調整到適當寬度*/
margin-top: 20px; /*生物距離頂部的位置*/
margin-left: 4px; /*生物的左右位置 ( px > 0 時會往左邊,px < 0 時會往右邊)*/
background-repeat: no-repeat; /*防止背景重複*/
/*接著,請將以下圖片網址改成你想放的生物*/
background-image: url(https://images.plurk.com/6CAJPgOckDcg8KZuLebTf8.gif );
}
 
/*新噗去掉淡黃底色*/
.plurk_cnt.new6,
.plurk_cnt.new5,
.plurk_cnt.new4,
.plurk_cnt.new3,
.plurk_cnt.new2,
.plurk_cnt.new1
{
background:#ffffff;
}
 
/*河道上的噗的透明度變化*/
#timeline_cnt
{
filter:alpha(opacity=70)!important;opacity:0.7!important;
}
#timeline_cnt:hover
{
filter:alpha(opacity=95) !important;opacity:0.95!important;
}

/*隱藏河道的loading圖*/
#div_loading .cnt
{
opacity:.0;
}
 
/*點開噗後的loading圖*/
.cmp_loading
{
width:16px;height:10px;
}
#div_loading .cnt
{
background:transparent url(https://i614.photobucket.com/albums/tt230/m66660000/plurk/loader/plurkload.gif) no-repeat scroll center !important;
margin-top:140px;
width:16px;height:10px;
}
.loading img
{
width:16px;height:10px;
}
.loading
{
background: url(https://i614.photobucket.com/albums/tt230/m66660000/plurk/loader/plurkload.gif) no-repeat scroll center top !important;
margin-top:30px;
width:16px;height:10px;
}

/*時間顯示變成半透明*/
.div_bottom
{
filter: alpha(opacity=45); opacity: 0.45; zoom:1;
}

/*隱藏時間軸線*/
#bottom_line
{
background:none;
}


/*噗文蓋住時間軸*/
._lc_ #timeline_cnt, ._lc_ .timeline_control {
z-index: 2;
}

/*噗分類標籤的透明度變化*/
#filter_tab
{filter:alpha(opacity=65) !important;opacity:0.65 !important; zoom:1;}
#filter_tab:hover
{filter:alpha(opacity=100) !important;opacity:1 !important; zoom:1;}

/*主控台各區塊的透明度變化*/
div.dash-segment, /*各區*/
#footer /*頁尾*/
{
filter:alpha(opacity=50) !important; opacity:0.5 !important; zoom:1;
}
 
div.dash-segment:hover,
#footer:hover
{
filter:alpha(opacity=50) !important; opacity:0.5 !important; zoom:1;
}

/****◆ 主控台背景刪除◆****/
.dash-segment .segment-content{background:none;}

/****◆ 主控台的文字色 ◆****/
#plurk-dashboard{ color:#000;}


/*歡迎大家拿去用
有問題或建議再跟我說~*/

/*隱藏廣告*/
#ad-home, #sliderAds, #sliderAds{
  display : none !important;}
#resp_banner_ads{
  height: 0 !important;}
  
/*
Written by YaoiKei
https://www.plurk.com/Helens89227
*/

.td_img {position:relative; z-index:1; }

/*噗幣旁增加圖案*/
._lc_ #dash-profile { background: url(https://emos.plurk.com/6ebf1ac8cdc619c5dda46d06573ecc9f_w29_h29.gif) no-repeat; 
background-position: 90% bottom; }