fcid 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/assets/images/expand.gif +0 -0
- data/app/assets/javascripts/fcid.js +14 -0
- data/app/assets/javascripts/jquery.corner.js +152 -0
- data/app/assets/stylesheets/fcid/admin.css +3 -0
- data/app/assets/stylesheets/fcid/application.css +30 -0
- data/app/assets/stylesheets/fcid/apps.css +74 -0
- data/app/assets/stylesheets/fcid/base.css +151 -0
- data/app/assets/stylesheets/fcid/base_xiaonei.css +1678 -0
- data/app/assets/stylesheets/fcid/box.css +135 -0
- data/app/assets/stylesheets/fcid/chat.css +200 -0
- data/app/assets/stylesheets/fcid/coderay.css +10 -0
- data/app/assets/stylesheets/fcid/common.css +16 -0
- data/app/assets/stylesheets/fcid/dashboardpro.css +1205 -0
- data/app/assets/stylesheets/fcid/dialog.css +175 -0
- data/app/assets/stylesheets/fcid/dialogpro.css +296 -0
- data/app/assets/stylesheets/fcid/editor.css +73 -0
- data/app/assets/stylesheets/fcid/feeds.css +41 -0
- data/app/assets/stylesheets/fcid/flyout_menu.css +38 -0
- data/app/assets/stylesheets/fcid/form.css +176 -0
- data/app/assets/stylesheets/fcid/friend_selector.css +65 -0
- data/app/assets/stylesheets/fcid/friends.css +445 -0
- data/app/assets/stylesheets/fcid/green.css +942 -0
- data/app/assets/stylesheets/fcid/layout.css +185 -0
- data/app/assets/stylesheets/fcid/lightbox.css +26 -0
- data/app/assets/stylesheets/fcid/lister.css +49 -0
- data/app/assets/stylesheets/fcid/modalbox.css +153 -0
- data/app/assets/stylesheets/fcid/msg.css +62 -0
- data/app/assets/stylesheets/fcid/navigationpro.css +878 -0
- data/app/assets/stylesheets/fcid/notification.css +162 -0
- data/app/assets/stylesheets/fcid/pagination.css +45 -0
- data/app/assets/stylesheets/fcid/pill_filter.css +83 -0
- data/app/assets/stylesheets/fcid/post.css +69 -0
- data/app/assets/stylesheets/fcid/powerapple.css +2645 -0
- data/app/assets/stylesheets/fcid/rails.css +58 -0
- data/app/assets/stylesheets/fcid/register.css +711 -0
- data/app/assets/stylesheets/fcid/showbox.css +122 -0
- data/app/assets/stylesheets/fcid/super-actions.css +222 -0
- data/app/assets/stylesheets/fcid/tabs.css +370 -0
- data/app/assets/stylesheets/fcid/toolbar.css +10 -0
- data/{lib → app/models}/fcid/base.rb +0 -0
- data/{lib → app/models}/fcid/email.rb +0 -0
- data/{lib → app/models}/fcid/feed.rb +0 -0
- data/{lib → app/models}/fcid/friendship.rb +0 -0
- data/{lib → app/models}/fcid/message.rb +0 -0
- data/{lib → app/models}/fcid/notification.rb +0 -0
- data/{lib → app/models}/fcid/session.rb +0 -0
- data/{lib → app/models}/fcid/user.rb +0 -0
- data/lib/fcid.rb +0 -3
- data/lib/fcid/controller.rb +22 -24
- data/lib/fcid/version.rb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +2 -0
- metadata +133 -67
| @@ -0,0 +1,135 @@ | |
| 1 | 
            +
            /* box */
         | 
| 2 | 
            +
            .box {
         | 
| 3 | 
            +
              border-top:1px solid #99f;
         | 
| 4 | 
            +
            }
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            .box-border {
         | 
| 7 | 
            +
              border: 1px solid #99f;
         | 
| 8 | 
            +
            }
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            .box > h3,.box > h2 {
         | 
| 11 | 
            +
              background-color: #F2F2F2;
         | 
| 12 | 
            +
              border-top: #E2E2E2;
         | 
| 13 | 
            +
              padding: 4px 5px 5px;
         | 
| 14 | 
            +
              position: relative;
         | 
| 15 | 
            +
            }
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            .box > h2 a {
         | 
| 18 | 
            +
              font-size: 12px;
         | 
| 19 | 
            +
              text-decoration :none;
         | 
| 20 | 
            +
              font-weight: normal;
         | 
| 21 | 
            +
            }
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            .box > div {
         | 
| 24 | 
            +
              padding:10px;
         | 
| 25 | 
            +
            }
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            .box-no-padding > div {
         | 
| 28 | 
            +
              padding: 0px;
         | 
| 29 | 
            +
            }
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            .description {
         | 
| 32 | 
            +
              color: #888;
         | 
| 33 | 
            +
            }
         | 
| 34 | 
            +
             | 
| 35 | 
            +
             | 
| 36 | 
            +
            .box h4 {
         | 
| 37 | 
            +
              font-weight: bold;
         | 
| 38 | 
            +
              margin:0px;
         | 
| 39 | 
            +
              padding:0px;
         | 
| 40 | 
            +
              margin-bottom:5px;
         | 
| 41 | 
            +
            }
         | 
| 42 | 
            +
             | 
| 43 | 
            +
             | 
| 44 | 
            +
            .box .content {
         | 
| 45 | 
            +
              padding:3px;
         | 
| 46 | 
            +
            }
         | 
| 47 | 
            +
             | 
| 48 | 
            +
            .box h2,
         | 
| 49 | 
            +
            .box-head
         | 
| 50 | 
            +
            {
         | 
| 51 | 
            +
            },
         | 
| 52 | 
            +
             | 
| 53 | 
            +
            .box .box-body {
         | 
| 54 | 
            +
              padding:5px!important;
         | 
| 55 | 
            +
            }
         | 
| 56 | 
            +
             | 
| 57 | 
            +
            .box-sub-header {
         | 
| 58 | 
            +
              background-color:#EEE;
         | 
| 59 | 
            +
              border-top:1px solid #CCC;
         | 
| 60 | 
            +
              color:#444;
         | 
| 61 | 
            +
              overflow:hidden;
         | 
| 62 | 
            +
              padding:2px 8px;
         | 
| 63 | 
            +
              position:relative;
         | 
| 64 | 
            +
            }
         | 
| 65 | 
            +
             | 
| 66 | 
            +
            .box-sub-header span {
         | 
| 67 | 
            +
              position:absolute;
         | 
| 68 | 
            +
              right:10px;
         | 
| 69 | 
            +
            }
         | 
| 70 | 
            +
             | 
| 71 | 
            +
            .box h3 {
         | 
| 72 | 
            +
            }
         | 
| 73 | 
            +
             | 
| 74 | 
            +
            .box h4 span {
         | 
| 75 | 
            +
              float:right;
         | 
| 76 | 
            +
              margin-top:-17px;
         | 
| 77 | 
            +
            }
         | 
| 78 | 
            +
             | 
| 79 | 
            +
            .box h2 span {
         | 
| 80 | 
            +
              position:absolute;
         | 
| 81 | 
            +
              right:5px;
         | 
| 82 | 
            +
            }
         | 
| 83 | 
            +
             | 
| 84 | 
            +
            /* box 2 */
         | 
| 85 | 
            +
             | 
| 86 | 
            +
            .box2 {
         | 
| 87 | 
            +
              border:1px solid #ccc;
         | 
| 88 | 
            +
              margin:4px;
         | 
| 89 | 
            +
            }
         | 
| 90 | 
            +
             | 
| 91 | 
            +
             | 
| 92 | 
            +
            .box2 h2 {
         | 
| 93 | 
            +
              background-color:#6D84B4;
         | 
| 94 | 
            +
              color:white;
         | 
| 95 | 
            +
            }
         | 
| 96 | 
            +
             | 
| 97 | 
            +
            .box2 h2 span a {
         | 
| 98 | 
            +
              color: #D9DFEA;
         | 
| 99 | 
            +
            }
         | 
| 100 | 
            +
             | 
| 101 | 
            +
            .box h2 span a:hover {
         | 
| 102 | 
            +
            }
         | 
| 103 | 
            +
             | 
| 104 | 
            +
             | 
| 105 | 
            +
             | 
| 106 | 
            +
             | 
| 107 | 
            +
            /* new-box */
         | 
| 108 | 
            +
            .new-box {
         | 
| 109 | 
            +
            }
         | 
| 110 | 
            +
             | 
| 111 | 
            +
            .new-box .new-box-title {
         | 
| 112 | 
            +
              padding:4px 10px;
         | 
| 113 | 
            +
              position:relative;
         | 
| 114 | 
            +
            }
         | 
| 115 | 
            +
             | 
| 116 | 
            +
            .new-box .new-box-title span {
         | 
| 117 | 
            +
              position:absolute;
         | 
| 118 | 
            +
              right:10px;
         | 
| 119 | 
            +
              top:4px;
         | 
| 120 | 
            +
            }
         | 
| 121 | 
            +
             | 
| 122 | 
            +
            .new-box .new-box-sub-title {
         | 
| 123 | 
            +
              border-top:1px solid #E9E9E9;
         | 
| 124 | 
            +
              clear:left;
         | 
| 125 | 
            +
              margin:4px 0;
         | 
| 126 | 
            +
              padding:8px 9px 2px;
         | 
| 127 | 
            +
            }
         | 
| 128 | 
            +
             | 
| 129 | 
            +
            .new-box .new-box-sub-title span {
         | 
| 130 | 
            +
              top:8px;
         | 
| 131 | 
            +
            }
         | 
| 132 | 
            +
             | 
| 133 | 
            +
            .new-box .new-box-body {
         | 
| 134 | 
            +
              padding:4px 10px;
         | 
| 135 | 
            +
            }
         | 
| @@ -0,0 +1,200 @@ | |
| 1 | 
            +
            * {
         | 
| 2 | 
            +
              font-size:13px;
         | 
| 3 | 
            +
            }
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            .chat-box {
         | 
| 6 | 
            +
              background-color:#f7f7f7;
         | 
| 7 | 
            +
            }
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            .chat-box h2 {
         | 
| 10 | 
            +
              background-color:#f2f2f2;
         | 
| 11 | 
            +
              font-weight:normal;
         | 
| 12 | 
            +
              padding:2px 8px;
         | 
| 13 | 
            +
              margin:0px;
         | 
| 14 | 
            +
            }
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            .chat-box h2 span {
         | 
| 17 | 
            +
              margin-left:20px;
         | 
| 18 | 
            +
            }
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            .chat-box p {
         | 
| 21 | 
            +
              padding:5px;
         | 
| 22 | 
            +
            }
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            .time {
         | 
| 25 | 
            +
              color:gray;
         | 
| 26 | 
            +
            }
         | 
| 27 | 
            +
             | 
| 28 | 
            +
            a {
         | 
| 29 | 
            +
              color:#5D74A2;
         | 
| 30 | 
            +
              text-decoration:none;
         | 
| 31 | 
            +
            }
         | 
| 32 | 
            +
             | 
| 33 | 
            +
            ul {
         | 
| 34 | 
            +
              list-style:none;
         | 
| 35 | 
            +
            }
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            /* clear */
         | 
| 38 | 
            +
            .clear:after {
         | 
| 39 | 
            +
              content:".";
         | 
| 40 | 
            +
              display:block;
         | 
| 41 | 
            +
              height:0px;
         | 
| 42 | 
            +
              clear:both;
         | 
| 43 | 
            +
              visibility:hidden;
         | 
| 44 | 
            +
            }
         | 
| 45 | 
            +
             | 
| 46 | 
            +
            .clear {
         | 
| 47 | 
            +
              display:inline-block;
         | 
| 48 | 
            +
            }
         | 
| 49 | 
            +
             | 
| 50 | 
            +
            .clear {
         | 
| 51 | 
            +
              display:block;
         | 
| 52 | 
            +
            }
         | 
| 53 | 
            +
             | 
| 54 | 
            +
            .tab {
         | 
| 55 | 
            +
              border-bottom:1px solid #5D74A2;
         | 
| 56 | 
            +
              margin:5px 5px 0px 5px;
         | 
| 57 | 
            +
            }
         | 
| 58 | 
            +
             | 
| 59 | 
            +
            .tab ul {
         | 
| 60 | 
            +
              margin:0px;
         | 
| 61 | 
            +
              padding:0px;
         | 
| 62 | 
            +
            }
         | 
| 63 | 
            +
             | 
| 64 | 
            +
             | 
| 65 | 
            +
            .tab ul li {
         | 
| 66 | 
            +
              float:left;
         | 
| 67 | 
            +
              min-width:100px;
         | 
| 68 | 
            +
              text-align:center;
         | 
| 69 | 
            +
              line-height:22px;
         | 
| 70 | 
            +
              margin-left:2px;
         | 
| 71 | 
            +
              cursor: pointer;
         | 
| 72 | 
            +
              list-style: none;
         | 
| 73 | 
            +
              position:relative;
         | 
| 74 | 
            +
              background-color:#F1F1F1;
         | 
| 75 | 
            +
              border:1px solid #5D74A2;
         | 
| 76 | 
            +
              border-bottom:none;
         | 
| 77 | 
            +
            }
         | 
| 78 | 
            +
             | 
| 79 | 
            +
            .tab ul li a {
         | 
| 80 | 
            +
              display:block;
         | 
| 81 | 
            +
              padding:2px 20px 2px 5px;
         | 
| 82 | 
            +
              width:auto;
         | 
| 83 | 
            +
            }
         | 
| 84 | 
            +
             | 
| 85 | 
            +
            .tab ul li span.close {
         | 
| 86 | 
            +
              top:0px;
         | 
| 87 | 
            +
              right:3px;
         | 
| 88 | 
            +
              background:transparent url(/images/wi/tabclose.gif) no-repeat scroll 50% 50%;
         | 
| 89 | 
            +
              position:absolute;
         | 
| 90 | 
            +
            }
         | 
| 91 | 
            +
             | 
| 92 | 
            +
            .tab ul li a:hover {
         | 
| 93 | 
            +
              background-color:#D8DFEA;
         | 
| 94 | 
            +
              text-decoration:none;
         | 
| 95 | 
            +
            }
         | 
| 96 | 
            +
             | 
| 97 | 
            +
            .tab ul li.active a {
         | 
| 98 | 
            +
              /*width:100px;*/
         | 
| 99 | 
            +
              background-color:#5D74A2;
         | 
| 100 | 
            +
              color:white;
         | 
| 101 | 
            +
            }
         | 
| 102 | 
            +
             | 
| 103 | 
            +
            .tab ul li.active a:hover {
         | 
| 104 | 
            +
              background-color:#5D74A2;
         | 
| 105 | 
            +
              color:white;
         | 
| 106 | 
            +
            }
         | 
| 107 | 
            +
             | 
| 108 | 
            +
            .tab ul li span.active {
         | 
| 109 | 
            +
              background:transparent url(/images/wi/tabclosehover.gif) no-repeat scroll 50% 50%;
         | 
| 110 | 
            +
            }
         | 
| 111 | 
            +
             | 
| 112 | 
            +
            .tab ol li  {
         | 
| 113 | 
            +
              border:1px solid black;
         | 
| 114 | 
            +
            }
         | 
| 115 | 
            +
             | 
| 116 | 
            +
            .tab ul li.tab-right {
         | 
| 117 | 
            +
              float:right;
         | 
| 118 | 
            +
              width:auto;
         | 
| 119 | 
            +
            }
         | 
| 120 | 
            +
             | 
| 121 | 
            +
            .tab ul li.tab-right a , .tab ul li.tab-right a:hover {
         | 
| 122 | 
            +
              border:none;
         | 
| 123 | 
            +
              background-color:transparent;
         | 
| 124 | 
            +
              color:#5D74A2;
         | 
| 125 | 
            +
            }
         | 
| 126 | 
            +
             | 
| 127 | 
            +
            .disabled {
         | 
| 128 | 
            +
              color:gray!important;
         | 
| 129 | 
            +
            }
         | 
| 130 | 
            +
             | 
| 131 | 
            +
             | 
| 132 | 
            +
            #chat-panels {
         | 
| 133 | 
            +
              height:300px;
         | 
| 134 | 
            +
              width:70%;
         | 
| 135 | 
            +
              border:1px solid #efefef;
         | 
| 136 | 
            +
              overflow:hidden;
         | 
| 137 | 
            +
              padding:0px 5px;
         | 
| 138 | 
            +
              float:left;
         | 
| 139 | 
            +
            }
         | 
| 140 | 
            +
             | 
| 141 | 
            +
            #chat-users {
         | 
| 142 | 
            +
              width:25%;
         | 
| 143 | 
            +
              float:right;
         | 
| 144 | 
            +
              overflow:hidden;
         | 
| 145 | 
            +
              padding:5px;
         | 
| 146 | 
            +
            }
         | 
| 147 | 
            +
             | 
| 148 | 
            +
            table tr td.t,table tr td.s {
         | 
| 149 | 
            +
              background:#3B5888 url(/images/wi/logo_tiny.gif) no-repeat scroll 10px 50%;
         | 
| 150 | 
            +
              color:#FFFFFF;
         | 
| 151 | 
            +
              font-size:80%;
         | 
| 152 | 
            +
              height:30px;
         | 
| 153 | 
            +
              line-height:2.4em;
         | 
| 154 | 
            +
              text-indent:6em;
         | 
| 155 | 
            +
            }
         | 
| 156 | 
            +
             | 
| 157 | 
            +
            #warning {
         | 
| 158 | 
            +
              padding:10px;
         | 
| 159 | 
            +
              background:#FFFFE1;
         | 
| 160 | 
            +
              border:1px solid #E0E0E0;
         | 
| 161 | 
            +
              font-size:12px;
         | 
| 162 | 
            +
              color:#333;
         | 
| 163 | 
            +
              line-height:1.3em;
         | 
| 164 | 
            +
              margin:10px 0;
         | 
| 165 | 
            +
            }
         | 
| 166 | 
            +
             | 
| 167 | 
            +
            textarea {
         | 
| 168 | 
            +
              border:1px solid #9AACC8;
         | 
| 169 | 
            +
              font-size:100%;
         | 
| 170 | 
            +
              overflow:hidden;
         | 
| 171 | 
            +
              padding:5px 5px 3px;
         | 
| 172 | 
            +
              width:100%;
         | 
| 173 | 
            +
              overflow-y:auto;
         | 
| 174 | 
            +
              height:50px;
         | 
| 175 | 
            +
            }
         | 
| 176 | 
            +
             | 
| 177 | 
            +
            .button {
         | 
| 178 | 
            +
              background:#3B5888 none repeat scroll 0% 0%;
         | 
| 179 | 
            +
              border-color:#D8DFEA rgb(14, 31, 91) rgb(14, 31, 91) rgb(216, 223, 234);
         | 
| 180 | 
            +
              border-style:solid;
         | 
| 181 | 
            +
              border-width:1px;
         | 
| 182 | 
            +
              color:#FFFFFF;
         | 
| 183 | 
            +
              cursor:pointer;
         | 
| 184 | 
            +
              font-size:12px;
         | 
| 185 | 
            +
              height:24px;
         | 
| 186 | 
            +
              line-height:16px;
         | 
| 187 | 
            +
              padding:0px 5px;
         | 
| 188 | 
            +
              width:58px;
         | 
| 189 | 
            +
            }
         | 
| 190 | 
            +
             | 
| 191 | 
            +
            .block-button {
         | 
| 192 | 
            +
              background:#E9E4EA url(/images/wi/block.gif) no-repeat scroll 4px center;
         | 
| 193 | 
            +
              border:1px solid #8A8A8A;
         | 
| 194 | 
            +
              color:#405783;
         | 
| 195 | 
            +
              cursor:pointer;
         | 
| 196 | 
            +
              font-size:12px;
         | 
| 197 | 
            +
              height:24px;
         | 
| 198 | 
            +
              padding-left:23px;
         | 
| 199 | 
            +
              width:78px;
         | 
| 200 | 
            +
            }
         | 
| @@ -0,0 +1,16 @@ | |
| 1 | 
            +
            @import url(base.css);
         | 
| 2 | 
            +
            @import url(form.css);
         | 
| 3 | 
            +
            @import url(rails.css);
         | 
| 4 | 
            +
            @import url(layout.css);
         | 
| 5 | 
            +
            @import url(tabs.css);
         | 
| 6 | 
            +
            @import url(box.css);
         | 
| 7 | 
            +
            @import url(lister.css);
         | 
| 8 | 
            +
            @import url(showbox.css);
         | 
| 9 | 
            +
            @import url(flyout_menu.css);
         | 
| 10 | 
            +
            @import url(pill_filter.css);
         | 
| 11 | 
            +
            @import url(dialog.css);
         | 
| 12 | 
            +
            @import url(notification.css);
         | 
| 13 | 
            +
            @import url(pagination.css);
         | 
| 14 | 
            +
            @import url(editor.css);
         | 
| 15 | 
            +
            @import url(post.css);
         | 
| 16 | 
            +
            @import url(apps.css);
         | 
| @@ -0,0 +1,1205 @@ | |
| 1 | 
            +
            #dashboardPage #wide-column {width:456px;position:relative; z-index:1000;}
         | 
| 2 | 
            +
            #dashboardPage #side-column {width:172px;padding:5px;}
         | 
| 3 | 
            +
            #dashboardPage #side-column h3 {
         | 
| 4 | 
            +
                background: #E9E9E9;
         | 
| 5 | 
            +
                border: none;
         | 
| 6 | 
            +
                color: #333333;
         | 
| 7 | 
            +
                font-size: 12px;
         | 
| 8 | 
            +
                height: 20px;
         | 
| 9 | 
            +
                line-height: 20px;
         | 
| 10 | 
            +
                margin: 0 0 5px;
         | 
| 11 | 
            +
                padding: 0 5px;
         | 
| 12 | 
            +
            }
         | 
| 13 | 
            +
            #dashboardPage #side-column .boxcont {
         | 
| 14 | 
            +
                line-height: 20px;
         | 
| 15 | 
            +
                padding: 0 5px;
         | 
| 16 | 
            +
            }
         | 
| 17 | 
            +
            #dashboardPage #side-column .more {
         | 
| 18 | 
            +
                right: 5px;
         | 
| 19 | 
            +
                line-height: 20px;
         | 
| 20 | 
            +
            }
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            #dashboardPage .cube {
         | 
| 23 | 
            +
                position: relative;
         | 
| 24 | 
            +
            	zoom:1;
         | 
| 25 | 
            +
            }
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            #dashboardPage .cube h3.foot-header {
         | 
| 28 | 
            +
                border-bottom: 1px solid #CCC;
         | 
| 29 | 
            +
                height:1.8em;
         | 
| 30 | 
            +
                line-height:1.8em;
         | 
| 31 | 
            +
                margin-bottom:10px;
         | 
| 32 | 
            +
            }
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            #dashboardPage .cube h3 .foot-header-title {
         | 
| 35 | 
            +
                background-image:url(/images/arrow_shut.gif);
         | 
| 36 | 
            +
            	background-repeat:no-repeat;
         | 
| 37 | 
            +
            	background-position:2px 2px;
         | 
| 38 | 
            +
            	padding-left:12px;
         | 
| 39 | 
            +
            }
         | 
| 40 | 
            +
            #dashboardPage .cube h3 .foot-header-title.open {
         | 
| 41 | 
            +
                background-image:url(/images/arrow_open.gif);
         | 
| 42 | 
            +
            	background-position:1px 3px;
         | 
| 43 | 
            +
            }
         | 
| 44 | 
            +
            #dashboardPage .cube h2.message-header, #dashboardPage .cube h2.newsfeed-header {
         | 
| 45 | 
            +
                border-bottom: 1px solid #CCC;
         | 
| 46 | 
            +
                height:1.8em;
         | 
| 47 | 
            +
                line-height:1.8em;
         | 
| 48 | 
            +
                margin-bottom:5px;
         | 
| 49 | 
            +
            	position: relative;
         | 
| 50 | 
            +
            }
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            #dashboardPage .cube .more {
         | 
| 53 | 
            +
                float: right;
         | 
| 54 | 
            +
                font-size: 12px;
         | 
| 55 | 
            +
                font-weight: normal;
         | 
| 56 | 
            +
            }
         | 
| 57 | 
            +
             | 
| 58 | 
            +
            #dashboardPage #list-archive {
         | 
| 59 | 
            +
                padding: 10px 5px;
         | 
| 60 | 
            +
            }
         | 
| 61 | 
            +
             | 
| 62 | 
            +
            #dashboardPage #list-archive h4 {
         | 
| 63 | 
            +
                line-height: 2.0em;
         | 
| 64 | 
            +
            }
         | 
| 65 | 
            +
             | 
| 66 | 
            +
            #dashboardPage #list-archive a {
         | 
| 67 | 
            +
                padding-left: 1.5em;
         | 
| 68 | 
            +
                background-position: 3px 50%;
         | 
| 69 | 
            +
                background-repeat: no-repeat;
         | 
| 70 | 
            +
            }
         | 
| 71 | 
            +
             | 
| 72 | 
            +
            #dashboardPage #list-archive a.all {background-image: url(../img/newsfeed/arrow.gif)}
         | 
| 73 | 
            +
            #dashboardPage #list-archive a.network {background-image: url(../img/newsfeed/network.gif)}
         | 
| 74 | 
            +
            #dashboardPage #list-archive a.profiles {background-image: url(../img/newsfeed/profile.gif)}
         | 
| 75 | 
            +
            #dashboardPage #list-archive a.event {background-image: url(../img/newsfeed/acts.gif)}
         | 
| 76 | 
            +
            #dashboardPage #list-archive a.blog {background-image: url(../img/newsfeed/blog.gif)}
         | 
| 77 | 
            +
            #dashboardPage #list-archive a.photos {background-image: url(../img/newsfeed/photo.gif)}
         | 
| 78 | 
            +
            #dashboardPage #list-archive a.share {background-image: url(../img/newsfeed/share.gif)}
         | 
| 79 | 
            +
            #dashboardPage #list-archive a.groups {background-image: url(../img/newsfeed/group.gif)}
         | 
| 80 | 
            +
             | 
| 81 | 
            +
            /* clearfix Start */
         | 
| 82 | 
            +
            .opi:after, .opi-content .headline:after {
         | 
| 83 | 
            +
            	content:".";
         | 
| 84 | 
            +
            	display:block;
         | 
| 85 | 
            +
            	height:0;
         | 
| 86 | 
            +
            	clear:both;
         | 
| 87 | 
            +
            	visibility:hidden;
         | 
| 88 | 
            +
            }
         | 
| 89 | 
            +
            .opi, .opi-content .headline {
         | 
| 90 | 
            +
            	display:inline-block;
         | 
| 91 | 
            +
            }
         | 
| 92 | 
            +
            /* Hide from IE Mac */
         | 
| 93 | 
            +
            .opi, .opi-content .headline {display:block;}
         | 
| 94 | 
            +
            /* End hide from IE Mac */
         | 
| 95 | 
            +
            /* clearfix End */
         | 
| 96 | 
            +
             | 
| 97 | 
            +
             | 
| 98 | 
            +
            .opi.read {
         | 
| 99 | 
            +
            	opacity: 0.3;
         | 
| 100 | 
            +
            	filter: alpha(opacity=30);
         | 
| 101 | 
            +
            }
         | 
| 102 | 
            +
            .mini .opi.read {display:none;}
         | 
| 103 | 
            +
             | 
| 104 | 
            +
            .opi-icon {
         | 
| 105 | 
            +
                float: left;
         | 
| 106 | 
            +
                font-size:1px;
         | 
| 107 | 
            +
                line-height: 1px;
         | 
| 108 | 
            +
                width: 16px;
         | 
| 109 | 
            +
                padding-top: 6px;
         | 
| 110 | 
            +
            }
         | 
| 111 | 
            +
             | 
| 112 | 
            +
            .opi-content {
         | 
| 113 | 
            +
                float: right;
         | 
| 114 | 
            +
                width: 413px;
         | 
| 115 | 
            +
                border-bottom: 1px solid #EBEFF4;
         | 
| 116 | 
            +
                padding: 6px 0;
         | 
| 117 | 
            +
            	word-break: break-all;
         | 
| 118 | 
            +
                word-wrap: break-word;
         | 
| 119 | 
            +
            }
         | 
| 120 | 
            +
             | 
| 121 | 
            +
             | 
| 122 | 
            +
            #replyDiv .opi-content {
         | 
| 123 | 
            +
                padding: 4px 0;
         | 
| 124 | 
            +
            }
         | 
| 125 | 
            +
             | 
| 126 | 
            +
            .opi-content .headline .title {
         | 
| 127 | 
            +
                display: inline;
         | 
| 128 | 
            +
                float: left;
         | 
| 129 | 
            +
                width: 411px;
         | 
| 130 | 
            +
            }
         | 
| 131 | 
            +
             | 
| 132 | 
            +
            .opi-content .headline .title .share-n-hide {
         | 
| 133 | 
            +
                float: right;
         | 
| 134 | 
            +
            }
         | 
| 135 | 
            +
            .opi-content .headline .title .newsfeed-actions {
         | 
| 136 | 
            +
            	float: right;
         | 
| 137 | 
            +
            }
         | 
| 138 | 
            +
            .opi-content .headline .title h2 {
         | 
| 139 | 
            +
                font-weight: normal;
         | 
| 140 | 
            +
                font-size: 12px;
         | 
| 141 | 
            +
                display: inline;
         | 
| 142 | 
            +
                color: #333;
         | 
| 143 | 
            +
                width: 411px;
         | 
| 144 | 
            +
            }
         | 
| 145 | 
            +
             | 
| 146 | 
            +
            .opi-content .headline .title h2 span.more{ float:right;}
         | 
| 147 | 
            +
             | 
| 148 | 
            +
            .opi-content .headline .title h2 .date {
         | 
| 149 | 
            +
                font-size: 11px;
         | 
| 150 | 
            +
            }
         | 
| 151 | 
            +
             | 
| 152 | 
            +
            .opi-content .headline .title .share {
         | 
| 153 | 
            +
                background: #FFF url(/images/share_tiny.gif) no-repeat right center;
         | 
| 154 | 
            +
                font-size: 11px;
         | 
| 155 | 
            +
                line-height: 11px;
         | 
| 156 | 
            +
                font-family: MingLiu;
         | 
| 157 | 
            +
                display: block;
         | 
| 158 | 
            +
                border: 1px solid #7F93BC;
         | 
| 159 | 
            +
                color: #525C97;
         | 
| 160 | 
            +
                padding: 2px 15px 1px 4px;
         | 
| 161 | 
            +
                text-decoration: none;
         | 
| 162 | 
            +
                float: left;
         | 
| 163 | 
            +
            }
         | 
| 164 | 
            +
             | 
| 165 | 
            +
            .opi-content .headline .title .share:hover {
         | 
| 166 | 
            +
                background: #3B5888 url(/images/share_tiny_hover.gif) no-repeat right center;
         | 
| 167 | 
            +
                border:1px solid #3B5888;
         | 
| 168 | 
            +
                color: #FFF;
         | 
| 169 | 
            +
            }
         | 
| 170 | 
            +
             | 
| 171 | 
            +
            * html .opi-content .headline .title .share {
         | 
| 172 | 
            +
                padding: 3px 15px 0 4px;
         | 
| 173 | 
            +
                width: 24px;
         | 
| 174 | 
            +
            }
         | 
| 175 | 
            +
             | 
| 176 | 
            +
             | 
| 177 | 
            +
            .opi-content .headline .title .x-2-hide {
         | 
| 178 | 
            +
                background:transparent url(/images/x_to_hide.gif) no-repeat scroll center;
         | 
| 179 | 
            +
            	width:14px;
         | 
| 180 | 
            +
                text-decoration: none;
         | 
| 181 | 
            +
                display: block;
         | 
| 182 | 
            +
            	height: 14px;
         | 
| 183 | 
            +
            }
         | 
| 184 | 
            +
             | 
| 185 | 
            +
            .opi-content .headline .title .x-2-hide:hover {
         | 
| 186 | 
            +
                background:url(/images/x_to_hide_hover.gif) no-repeat scroll center;
         | 
| 187 | 
            +
            }
         | 
| 188 | 
            +
             | 
| 189 | 
            +
            .opi-content .headline .title .status-reply {
         | 
| 190 | 
            +
                background:transparent url(/images/status_reply.gif) no-repeat scroll center;
         | 
| 191 | 
            +
            	width:15px;
         | 
| 192 | 
            +
                text-decoration: none;
         | 
| 193 | 
            +
                display: block;
         | 
| 194 | 
            +
            	height: 16px;
         | 
| 195 | 
            +
            	padding:0 3px;
         | 
| 196 | 
            +
            	margin:-1px 2px 0 0;
         | 
| 197 | 
            +
            	border-right:1px solid #d8dfea;
         | 
| 198 | 
            +
            }
         | 
| 199 | 
            +
             | 
| 200 | 
            +
            .opi-content .headline .title .status-reply:hover {
         | 
| 201 | 
            +
                background:url(/images/status_reply_hover.gif) no-repeat scroll center;
         | 
| 202 | 
            +
            }
         | 
| 203 | 
            +
             | 
| 204 | 
            +
            .opi-content .headline .title .arrow-dropdown {
         | 
| 205 | 
            +
                background: url(/images/super_actions_c.gif) no-repeat 0 0;
         | 
| 206 | 
            +
                display: block;
         | 
| 207 | 
            +
                height: 14px;
         | 
| 208 | 
            +
                line-height: 14px;
         | 
| 209 | 
            +
                width: 15px;
         | 
| 210 | 
            +
                text-decoration: none;
         | 
| 211 | 
            +
            }
         | 
| 212 | 
            +
             | 
| 213 | 
            +
            .opi-content .headline .title .arrow-dropdown:hover {
         | 
| 214 | 
            +
            	background: url(/images/super_actions_c.gif) no-repeat 0 100%;
         | 
| 215 | 
            +
            }
         | 
| 216 | 
            +
            .opi-content .headline .title .f-act-holder {
         | 
| 217 | 
            +
            	position:absolute;
         | 
| 218 | 
            +
            	margin:-80px 0 0 -180px;
         | 
| 219 | 
            +
            	padding:80px 80px 80px 180px;
         | 
| 220 | 
            +
            }
         | 
| 221 | 
            +
            .opi-content .headline .title .feed-act-menu {
         | 
| 222 | 
            +
            	list-style:none;
         | 
| 223 | 
            +
            	background:#fff;
         | 
| 224 | 
            +
            	border:1px solid #3b5888;
         | 
| 225 | 
            +
            	width:130px;
         | 
| 226 | 
            +
            }
         | 
| 227 | 
            +
            .opi-content .headline .title .feed-act-menu li {
         | 
| 228 | 
            +
            	border-bottom:1px solid #eee;
         | 
| 229 | 
            +
            }
         | 
| 230 | 
            +
            .opi-content .headline .title .feed-act-menu li.more-f-set {
         | 
| 231 | 
            +
            	border:0;
         | 
| 232 | 
            +
            }
         | 
| 233 | 
            +
            .opi-content .headline .title .feed-act-menu li a {
         | 
| 234 | 
            +
            	display:block;
         | 
| 235 | 
            +
                line-height: 22px;
         | 
| 236 | 
            +
                height: 22px;
         | 
| 237 | 
            +
            	padding:0 5px 1px;
         | 
| 238 | 
            +
            	text-decoration:none;
         | 
| 239 | 
            +
            }
         | 
| 240 | 
            +
            *+html .opi-content .headline .title .feed-act-menu li a {
         | 
| 241 | 
            +
            	padding:3px 5px 0;
         | 
| 242 | 
            +
            }
         | 
| 243 | 
            +
            .opi-content .headline .title .feed-act-menu li a:hover {
         | 
| 244 | 
            +
            	color:#fff;
         | 
| 245 | 
            +
            	background:#6d84b4;
         | 
| 246 | 
            +
            }
         | 
| 247 | 
            +
             | 
| 248 | 
            +
            .opi .opi-content .mb-status {margin-bottom:-1px;}
         | 
| 249 | 
            +
            .opi-blog .opi-content, .opi-club .opi-content, .opi-market .opi-content, .opi-movcmt .opi-content, .opi-share-link .opi-content {padding-bottom: 1.0em;}
         | 
| 250 | 
            +
            .opi-blog .opi-content h3, .opi-club .opi-content h3, .opi-market .opi-content h3, .opi-movcmt .opi-content h3, .opi-share-link .opi-content h3 {line-height: 1.5em;}
         | 
| 251 | 
            +
             | 
| 252 | 
            +
            .opi-photo .opi-content {
         | 
| 253 | 
            +
                padding-bottom: 1.0em;
         | 
| 254 | 
            +
            }
         | 
| 255 | 
            +
             | 
| 256 | 
            +
            .opi-avatar .opi-content {
         | 
| 257 | 
            +
                padding-bottom: 1.0em;
         | 
| 258 | 
            +
            }
         | 
| 259 | 
            +
             | 
| 260 | 
            +
            .opi-share-p .opi-content {
         | 
| 261 | 
            +
                padding-bottom: 1.0em;
         | 
| 262 | 
            +
            }
         | 
| 263 | 
            +
             | 
| 264 | 
            +
            .opi-share-img .opi-content {
         | 
| 265 | 
            +
                padding-bottom: 1.0em;
         | 
| 266 | 
            +
            }
         | 
| 267 | 
            +
             | 
| 268 | 
            +
            .opi-tag-img .opi-content {
         | 
| 269 | 
            +
                padding-bottom: 1.0em;
         | 
| 270 | 
            +
            }
         | 
| 271 | 
            +
             | 
| 272 | 
            +
            .opi-share-p .opi-content .feedbody {
         | 
| 273 | 
            +
                overflow: hidden;
         | 
| 274 | 
            +
                zoom: 1;
         | 
| 275 | 
            +
            }
         | 
| 276 | 
            +
            .opi-share-mkt .opi-content {
         | 
| 277 | 
            +
                padding-bottom: 1.0em;
         | 
| 278 | 
            +
            }
         | 
| 279 | 
            +
             | 
| 280 | 
            +
            .opi-share-mov .opi-content {
         | 
| 281 | 
            +
                padding-bottom: 1.0em;
         | 
| 282 | 
            +
            }
         | 
| 283 | 
            +
             | 
| 284 | 
            +
            .opi-share-p .opi-content .avatar-box {
         | 
| 285 | 
            +
                float: left;
         | 
| 286 | 
            +
                margin: 0 10px 6px 0;
         | 
| 287 | 
            +
            }
         | 
| 288 | 
            +
             | 
| 289 | 
            +
            *html .opi-share-p .opi-content .avatar-box {
         | 
| 290 | 
            +
            	margin:0 10px 0 0;
         | 
| 291 | 
            +
            }
         | 
| 292 | 
            +
            *+html .opi-share-p .opi-content .avatar-box {
         | 
| 293 | 
            +
            	margin:0 10px 0 0;
         | 
| 294 | 
            +
            }
         | 
| 295 | 
            +
             | 
| 296 | 
            +
            .opi-share-p .opi-content .feedbody p.quote {
         | 
| 297 | 
            +
            	clear:both;
         | 
| 298 | 
            +
            }
         | 
| 299 | 
            +
             | 
| 300 | 
            +
            .opi-content .feedbody {
         | 
| 301 | 
            +
                padding-top: 4px;
         | 
| 302 | 
            +
            	color: #808080;
         | 
| 303 | 
            +
            }
         | 
| 304 | 
            +
             | 
| 305 | 
            +
            .opi-blog .opi-content .feedbody .relative-user {
         | 
| 306 | 
            +
            	margin-top:2px;
         | 
| 307 | 
            +
            	color:#555;
         | 
| 308 | 
            +
            }
         | 
| 309 | 
            +
             | 
| 310 | 
            +
             | 
| 311 | 
            +
            .opi-photo .opi-content .feedbody .photo-box {
         | 
| 312 | 
            +
                overflow: hidden;
         | 
| 313 | 
            +
                zoom: 1;
         | 
| 314 | 
            +
                padding-bottom:8px;
         | 
| 315 | 
            +
            }
         | 
| 316 | 
            +
             | 
| 317 | 
            +
            .opi-photo .opi-content .feedbody .photo-box a {
         | 
| 318 | 
            +
                border: 1px solid #CCC;
         | 
| 319 | 
            +
                display: block;
         | 
| 320 | 
            +
                float: left;
         | 
| 321 | 
            +
                margin-right: 10px;
         | 
| 322 | 
            +
            }
         | 
| 323 | 
            +
             | 
| 324 | 
            +
            .opi-photo .opi-content .feedbody .photo-box a:hover {
         | 
| 325 | 
            +
                border: 1px solid #3B5888;
         | 
| 326 | 
            +
            }
         | 
| 327 | 
            +
             | 
| 328 | 
            +
            .opi-photo .opi-content .feedbody .photo-box img {
         | 
| 329 | 
            +
                padding: 3px;
         | 
| 330 | 
            +
            }
         | 
| 331 | 
            +
             | 
| 332 | 
            +
            .opi-share-blog .opi-content .feedbody {
         | 
| 333 | 
            +
            	padding-top:0;
         | 
| 334 | 
            +
            }
         | 
| 335 | 
            +
            .opi-share-blog .opi-content .feedbody .quote {
         | 
| 336 | 
            +
            	margin-top:6px;
         | 
| 337 | 
            +
            }
         | 
| 338 | 
            +
             | 
| 339 | 
            +
            .opi-share-img .opi-content .feedbody .photo-box a {
         | 
| 340 | 
            +
                border: 1px solid #CCC;
         | 
| 341 | 
            +
                display: block;
         | 
| 342 | 
            +
                float: left;
         | 
| 343 | 
            +
                margin: 0 10px 6px 0;
         | 
| 344 | 
            +
            }
         | 
| 345 | 
            +
            *html .opi-share-img .opi-content .feedbody .photo-box a {
         | 
| 346 | 
            +
            	margin:0 10px 0 0;
         | 
| 347 | 
            +
            }
         | 
| 348 | 
            +
            *+html .opi-share-img .opi-content .feedbody .photo-box a {
         | 
| 349 | 
            +
            	margin:0 10px 0 0;
         | 
| 350 | 
            +
            }
         | 
| 351 | 
            +
            .opi-share-img .opi-content .feedbody .photo-box a:hover {
         | 
| 352 | 
            +
                border: 1px solid #3B5888;
         | 
| 353 | 
            +
            }
         | 
| 354 | 
            +
             | 
| 355 | 
            +
            .opi-share-img .opi-content .feedbody .photo-box img {
         | 
| 356 | 
            +
                padding: 3px;
         | 
| 357 | 
            +
            }
         | 
| 358 | 
            +
            .opi-share-img .opi-content .feedbody p.quote {
         | 
| 359 | 
            +
            	clear:both;
         | 
| 360 | 
            +
            }
         | 
| 361 | 
            +
             | 
| 362 | 
            +
             | 
| 363 | 
            +
            .opi-tag-img .opi-content .feedbody .photo-box a {
         | 
| 364 | 
            +
                border: 1px solid #CCC;
         | 
| 365 | 
            +
                display: block;
         | 
| 366 | 
            +
                float: left;
         | 
| 367 | 
            +
                margin: 0 10px 6px 0;
         | 
| 368 | 
            +
            }
         | 
| 369 | 
            +
            *html .opi-tag-img .opi-content .feedbody .photo-box a {
         | 
| 370 | 
            +
            	margin:0 10px 0 0;
         | 
| 371 | 
            +
            }
         | 
| 372 | 
            +
            *+html .opi-tag-img .opi-content .feedbody .photo-box a {
         | 
| 373 | 
            +
            	margin:0 10px 0 0;
         | 
| 374 | 
            +
            }
         | 
| 375 | 
            +
            .opi-tag-img .opi-content .feedbody .photo-box a:hover {
         | 
| 376 | 
            +
                border: 1px solid #3B5888;
         | 
| 377 | 
            +
            }
         | 
| 378 | 
            +
            .opi-tag-img .opi-content .feedbody .photo-box img {
         | 
| 379 | 
            +
                padding: 3px;
         | 
| 380 | 
            +
            }
         | 
| 381 | 
            +
            .opi-tag-img .opi-content .feedbody h3 {
         | 
| 382 | 
            +
            	line-height:1.5em;
         | 
| 383 | 
            +
            	font-weight:normal;
         | 
| 384 | 
            +
            }
         | 
| 385 | 
            +
             | 
| 386 | 
            +
             | 
| 387 | 
            +
            .opi-share-mkt .opi-content .feedbody .photo-box a {
         | 
| 388 | 
            +
                border: 1px solid #CCC;
         | 
| 389 | 
            +
                display: block;
         | 
| 390 | 
            +
                float: left;
         | 
| 391 | 
            +
                margin: 0 10px 6px 0;
         | 
| 392 | 
            +
            }
         | 
| 393 | 
            +
            *html .opi-share-mkt .opi-content .feedbody .photo-box a {
         | 
| 394 | 
            +
            	margin:0 10px 0 0;
         | 
| 395 | 
            +
            }
         | 
| 396 | 
            +
            *+html .opi-share-mkt .opi-content .feedbody .photo-box a {
         | 
| 397 | 
            +
            	margin:0 10px 0 0;
         | 
| 398 | 
            +
            }
         | 
| 399 | 
            +
            .opi-share-mkt .opi-content .feedbody .photo-box a:hover {
         | 
| 400 | 
            +
                border: 1px solid #3B5888;
         | 
| 401 | 
            +
            }
         | 
| 402 | 
            +
            .opi-share-mkt .opi-content .feedbody .photo-box img {
         | 
| 403 | 
            +
                padding: 3px;
         | 
| 404 | 
            +
            }
         | 
| 405 | 
            +
            .opi-share-mkt .opi-content .feedbody p.quote {
         | 
| 406 | 
            +
            	clear:both;
         | 
| 407 | 
            +
            }
         | 
| 408 | 
            +
             | 
| 409 | 
            +
             | 
| 410 | 
            +
            .opi-share-mov .opi-content .feedbody .photo-box a {
         | 
| 411 | 
            +
                border: 1px solid #CCC;
         | 
| 412 | 
            +
                display: block;
         | 
| 413 | 
            +
                float: left;
         | 
| 414 | 
            +
                margin: 0 10px 10px 0;
         | 
| 415 | 
            +
            }
         | 
| 416 | 
            +
            *html .opi-share-mov .opi-content .feedbody .photo-box a {
         | 
| 417 | 
            +
            	margin:0 10px 0 0;
         | 
| 418 | 
            +
            }
         | 
| 419 | 
            +
            *+html .opi-share-mov .opi-content .feedbody .photo-box a {
         | 
| 420 | 
            +
            	margin:0 10px 0 0;
         | 
| 421 | 
            +
            }
         | 
| 422 | 
            +
            .opi-share-mov .opi-content .feedbody .photo-box a:hover {
         | 
| 423 | 
            +
                border: 1px solid #3B5888;
         | 
| 424 | 
            +
            }
         | 
| 425 | 
            +
            .opi-share-mov .opi-content .feedbody .photo-box img {
         | 
| 426 | 
            +
                padding: 3px;
         | 
| 427 | 
            +
            	width:70px;
         | 
| 428 | 
            +
            }
         | 
| 429 | 
            +
            .opi-share-mov .opi-content .feedbody p.quote {
         | 
| 430 | 
            +
            	clear:both;
         | 
| 431 | 
            +
            }
         | 
| 432 | 
            +
            .opi-share-mov .opi-content h3 {
         | 
| 433 | 
            +
            	line-height:1.5em;
         | 
| 434 | 
            +
            }
         | 
| 435 | 
            +
             | 
| 436 | 
            +
             | 
| 437 | 
            +
             | 
| 438 | 
            +
             | 
| 439 | 
            +
             | 
| 440 | 
            +
             | 
| 441 | 
            +
             | 
| 442 | 
            +
             | 
| 443 | 
            +
             | 
| 444 | 
            +
            .opi-gift .opi-content .feedbody {
         | 
| 445 | 
            +
            	padding: 10px;
         | 
| 446 | 
            +
            }
         | 
| 447 | 
            +
             | 
| 448 | 
            +
            .opi-gift .opi-content .feedbody .opi-comment {
         | 
| 449 | 
            +
            	float: left;
         | 
| 450 | 
            +
            	width: 22em;
         | 
| 451 | 
            +
            }
         | 
| 452 | 
            +
            .opi-free-gift .opi-content .feedbody {
         | 
| 453 | 
            +
            	padding: 10px;
         | 
| 454 | 
            +
            }
         | 
| 455 | 
            +
            .opi-free-gift .opi-content .gift-new-title h2{
         | 
| 456 | 
            +
            	margin-top:5px;
         | 
| 457 | 
            +
            	font-size:12px;
         | 
| 458 | 
            +
            	font-weight:normal;
         | 
| 459 | 
            +
            }
         | 
| 460 | 
            +
            .opi-free-gift .opi-content .feedbody .opi-comment {
         | 
| 461 | 
            +
            	float: left;
         | 
| 462 | 
            +
            	width: 22em;
         | 
| 463 | 
            +
            }
         | 
| 464 | 
            +
             | 
| 465 | 
            +
            .opi-market .opi-content .feedbody .photo-box a {
         | 
| 466 | 
            +
                border: 1px solid #CCC;
         | 
| 467 | 
            +
                display: block;
         | 
| 468 | 
            +
                float: left;
         | 
| 469 | 
            +
                margin: 0 10px 6px 0;
         | 
| 470 | 
            +
            }
         | 
| 471 | 
            +
            *html .opi-market .opi-content .feedbody .photo-box a {
         | 
| 472 | 
            +
            	margin:0 10px 0 0;
         | 
| 473 | 
            +
            }
         | 
| 474 | 
            +
            *+html .opi-market .opi-content .feedbody .photo-box a {
         | 
| 475 | 
            +
            	margin:0 10px 0 0;
         | 
| 476 | 
            +
            }
         | 
| 477 | 
            +
            .opi-market .opi-content .feedbody .photo-box a:hover {
         | 
| 478 | 
            +
                border: 1px solid #3B5888;
         | 
| 479 | 
            +
            }
         | 
| 480 | 
            +
             | 
| 481 | 
            +
            .opi-market .opi-content .feedbody .photo-box img {
         | 
| 482 | 
            +
                padding: 3px;
         | 
| 483 | 
            +
            }
         | 
| 484 | 
            +
             | 
| 485 | 
            +
            .opi-market .opi-content .feedbody p.quote {
         | 
| 486 | 
            +
            	clear:both;
         | 
| 487 | 
            +
            }
         | 
| 488 | 
            +
             | 
| 489 | 
            +
            .opi-guide-add .feedbody {
         | 
| 490 | 
            +
            	padding: 5px 0;
         | 
| 491 | 
            +
            }
         | 
| 492 | 
            +
             | 
| 493 | 
            +
            .opi-guide-add .feedbody .personIconList td {
         | 
| 494 | 
            +
            	padding: 5px 5px 5px 0;
         | 
| 495 | 
            +
            }
         | 
| 496 | 
            +
             | 
| 497 | 
            +
            .opi-guide-add .feedbody .personIconList td .personAdd {
         | 
| 498 | 
            +
            	width: 130px;
         | 
| 499 | 
            +
            }
         | 
| 500 | 
            +
             | 
| 501 | 
            +
            .opi-guide-add .feedbody .personIconList td .personAdd strong a {
         | 
| 502 | 
            +
            	padding-top: 1.0em;
         | 
| 503 | 
            +
            }
         | 
| 504 | 
            +
             | 
| 505 | 
            +
            .opi-guide-add .feedbody .personIconList td .personAdd a {
         | 
| 506 | 
            +
            	display: block;
         | 
| 507 | 
            +
            }
         | 
| 508 | 
            +
             | 
| 509 | 
            +
            .opi-content .feedbody h3 {
         | 
| 510 | 
            +
                font-size: 12px;
         | 
| 511 | 
            +
                color: #333;
         | 
| 512 | 
            +
            }
         | 
| 513 | 
            +
             | 
| 514 | 
            +
            .opi-content p {
         | 
| 515 | 
            +
                line-height: 1.5em;
         | 
| 516 | 
            +
            }
         | 
| 517 | 
            +
             | 
| 518 | 
            +
            .opi-comment {
         | 
| 519 | 
            +
            	padding-left: 18px;
         | 
| 520 | 
            +
            	background: url(/images/quote_start.gif) no-repeat 0 0;
         | 
| 521 | 
            +
            }
         | 
| 522 | 
            +
             | 
| 523 | 
            +
            .opi-comment p {
         | 
| 524 | 
            +
            	color: #808080;
         | 
| 525 | 
            +
            	padding-right: 18px;
         | 
| 526 | 
            +
            	background: url(/images/quote_end.gif) no-repeat 100% 100%;
         | 
| 527 | 
            +
            	display: inline;
         | 
| 528 | 
            +
            	zoom: 1;
         | 
| 529 | 
            +
            }
         | 
| 530 | 
            +
             | 
| 531 | 
            +
            .opi-more {
         | 
| 532 | 
            +
                margin-top:15px;
         | 
| 533 | 
            +
            	clear: both;
         | 
| 534 | 
            +
            }
         | 
| 535 | 
            +
             | 
| 536 | 
            +
            .opi-more a {
         | 
| 537 | 
            +
            	color: #808080;
         | 
| 538 | 
            +
            }
         | 
| 539 | 
            +
             | 
| 540 | 
            +
            .opi-more .more {
         | 
| 541 | 
            +
            	float: right;
         | 
| 542 | 
            +
            }
         | 
| 543 | 
            +
             | 
| 544 | 
            +
            .opi-more .more a {
         | 
| 545 | 
            +
            	color: #3B5888;
         | 
| 546 | 
            +
            }
         | 
| 547 | 
            +
             | 
| 548 | 
            +
            .newsfeed-list .x-2-hide {
         | 
| 549 | 
            +
            	display: none !important;
         | 
| 550 | 
            +
            }
         | 
| 551 | 
            +
             | 
| 552 | 
            +
            .newsfeed-list .cube {
         | 
| 553 | 
            +
            	padding-bottom: 0;
         | 
| 554 | 
            +
            }
         | 
| 555 | 
            +
             | 
| 556 | 
            +
            .newsfeed-list .pager-bottom {
         | 
| 557 | 
            +
            	border-top: none;
         | 
| 558 | 
            +
            }
         | 
| 559 | 
            +
             | 
| 560 | 
            +
            .newsfeed-empty {
         | 
| 561 | 
            +
            	text-align:center;
         | 
| 562 | 
            +
            	color:#808080;
         | 
| 563 | 
            +
            	padding: 1.0em 0;
         | 
| 564 | 
            +
            	font-size: 1.2em;
         | 
| 565 | 
            +
            	line-height: 1.5em;
         | 
| 566 | 
            +
            }
         | 
| 567 | 
            +
             | 
| 568 | 
            +
            #dashboardPage #oak.white-gray {background: url(/images/dashboard_bg.gif) repeat-y right top;}
         | 
| 569 | 
            +
            .stat, .time, .date, .count { color:#808080; font-size:12px; font-weight:normal;}
         | 
| 570 | 
            +
             | 
| 571 | 
            +
            .attention { text-align:left;position:relative;border:none;padding:8px;border-bottom:1px solid #EBAE7F;background:#FEFFCF;}
         | 
| 572 | 
            +
            .attention strong { color:#dd3c10;}
         | 
| 573 | 
            +
            .attention h3 {font-size:1.2em; border-bottom:1px solid #D8DFEA;color:#C30;}
         | 
| 574 | 
            +
            .attention .closetips {position:relative;float:right;font-size:12px;font-weight:normal;}
         | 
| 575 | 
            +
             | 
| 576 | 
            +
            /* Left : class */
         | 
| 577 | 
            +
            .tip { background:#fff;}
         | 
| 578 | 
            +
            .tip .note { *zoom:1; padding:0 0 17px; background:url(/images/style_tip.gif) 0 100% no-repeat;}
         | 
| 579 | 
            +
            .tip .note h4 { padding:5px 10px 0; color:#d85d01; background:#feffcf; font-weight:bold;}
         | 
| 580 | 
            +
            .tip .note p { padding:0 10px 5px; background:#feffcf;}
         | 
| 581 | 
            +
            .tip form p { margin:5px 0;}
         | 
| 582 | 
            +
            .tip form label { color:#808080; font-weight:bold; line-height:22px;}
         | 
| 583 | 
            +
            .tip form #highSchool { margin-left:70px;}
         | 
| 584 | 
            +
            .tip form p.actions { margin:5px 10px 0 70px; padding:0;}
         | 
| 585 | 
            +
             | 
| 586 | 
            +
            /* Left : feeds */
         | 
| 587 | 
            +
            .waiting { text-align:center;}
         | 
| 588 | 
            +
            .rapidlist { width:100%; color:#333; table-layout:fixed;}
         | 
| 589 | 
            +
            .rapidlist td { height:18px; padding:2px 0 0; border-top:1px solid #eee; background:#fff; line-height:18px;}
         | 
| 590 | 
            +
            .rapidlist td p { overflow:hidden;/* white-space:nowrap;*/}
         | 
| 591 | 
            +
            .rapidlist .location { width:8em; padding:0 5px; text-align:right;}
         | 
| 592 | 
            +
            .rapidlist .name { width:120px;}
         | 
| 593 | 
            +
            .rapidlist .meta { width:4em; text-align:right;}
         | 
| 594 | 
            +
            .rapidlist .read td, .rapidlist .read td a { color:#808080;}
         | 
| 595 | 
            +
            .rapidlist .time { font-size:11px; margin-left:5px; float:right;}
         | 
| 596 | 
            +
            .rapidlist .remove { float:right; width:7px; height:7px; margin:6px 0 0; background:url(/images/icon_remove.gif) 0 0 no-repeat; text-indent:-999em; font-size:0; line-height:0; overflow:hidden;}
         | 
| 597 | 
            +
            .rapidlist .remove:hover { background-position:0 100%;}
         | 
| 598 | 
            +
             | 
| 599 | 
            +
            /* Left : blogList */
         | 
| 600 | 
            +
            .blogList th { height:24px; border-top:1px solid #d8dfea; background:#f8f9fc; color:#3B5888; font-size:12px; line-height:24px;}
         | 
| 601 | 
            +
            .blogList td { height:20px; padding:0 5px; background:#fff; line-height:20px;}
         | 
| 602 | 
            +
            .blogList .blogTitle { padding:0 0.5em; border-bottom:1px solid #d8dfea; border-right:1px solid #d8dfea;}
         | 
| 603 | 
            +
            .blogList .blogAuthor { width:6em; padding:0 5px; border-bottom:1px solid #d8dfea; border-right:1px solid #d8dfea; text-align:center;}
         | 
| 604 | 
            +
            .blogList .blogTime { width:110px; border-bottom:1px solid #d8dfea; text-align:center;}
         | 
| 605 | 
            +
            .blogList .blogTitleText { overflow:hidden; width:25em; white-space:nowrap;}
         | 
| 606 | 
            +
            .blogList .blogAuthorText { width:6em; overflow:hidden; white-space:nowrap;}
         | 
| 607 | 
            +
             | 
| 608 | 
            +
            /* Right : requests */
         | 
| 609 | 
            +
            #requests a .count { padding:0 3px; color:#3B5888; font-weight:bold;}
         | 
| 610 | 
            +
             | 
| 611 | 
            +
            /* Right : pokes */
         | 
| 612 | 
            +
            #pokes ol { text-align:right;}
         | 
| 613 | 
            +
            #pokes li { clear:both; padding-bottom:5px;}
         | 
| 614 | 
            +
            #pokes .pokeName { width:4em; overflow:hidden; white-space:nowrap;}
         | 
| 615 | 
            +
            #pokes .pokeTime { width:3em;}
         | 
| 616 | 
            +
             | 
| 617 | 
            +
            #pokes .poke { position:relative; border-bottom:1px solid #ddd;}
         | 
| 618 | 
            +
            * html #pokes .poke { height:1%;}
         | 
| 619 | 
            +
            *+html #pokes .poke { min-height:1%;}
         | 
| 620 | 
            +
            #pokes .poke .title { display:block;}
         | 
| 621 | 
            +
            #pokes .poke .action { position:absolute; right:0; bottom:0;}
         | 
| 622 | 
            +
             | 
| 623 | 
            +
            #pokes ol { text-align:left;}
         | 
| 624 | 
            +
            #pokes .title { display:block;}
         | 
| 625 | 
            +
             | 
| 626 | 
            +
            #dashNotice {
         | 
| 627 | 
            +
            	background:#F2F4F7;
         | 
| 628 | 
            +
            	border-bottom: 1px solid #D8DFEA;
         | 
| 629 | 
            +
            	padding: 10px 15px;
         | 
| 630 | 
            +
            	margin-bottom: 5px;
         | 
| 631 | 
            +
            }
         | 
| 632 | 
            +
             | 
| 633 | 
            +
            *html #dashNotice{zoom:1;}
         | 
| 634 | 
            +
             | 
| 635 | 
            +
            #dashNoticenew {
         | 
| 636 | 
            +
            	background:#fff;
         | 
| 637 | 
            +
            	border: 1px solid #D8DFEA;
         | 
| 638 | 
            +
            	padding: 10px 15px;
         | 
| 639 | 
            +
            	margin-bottom: 5px;
         | 
| 640 | 
            +
            }
         | 
| 641 | 
            +
             | 
| 642 | 
            +
            #dashNoticeyellow{
         | 
| 643 | 
            +
            	background:#FEFFCF;
         | 
| 644 | 
            +
            	border-bottom: 1px solid #ccc;
         | 
| 645 | 
            +
            	padding: 10px 15px;
         | 
| 646 | 
            +
            	margin-bottom:5px;
         | 
| 647 | 
            +
            }
         | 
| 648 | 
            +
             | 
| 649 | 
            +
            *html #dashNoticeyellow{zoom:1;}
         | 
| 650 | 
            +
             | 
| 651 | 
            +
            #dashNotice p,#dashNoticenew p,#dashNoticeyellow p {
         | 
| 652 | 
            +
            	line-height: 1.5em;
         | 
| 653 | 
            +
            }
         | 
| 654 | 
            +
             | 
| 655 | 
            +
            #dashNotice h3,#dashNoticenew h3,#dashNoticeyellow h3 {
         | 
| 656 | 
            +
            	border-bottom: 1px solid #D8DFEA;
         | 
| 657 | 
            +
            	color: #C30;
         | 
| 658 | 
            +
            	font-size: 1.2em;
         | 
| 659 | 
            +
            	line-height: 1.5em;
         | 
| 660 | 
            +
            	margin-bottom: 0.5em;
         | 
| 661 | 
            +
            }
         | 
| 662 | 
            +
             | 
| 663 | 
            +
            #dashNoticeyellow h3{border-bottom: 0;}
         | 
| 664 | 
            +
             | 
| 665 | 
            +
            #dashNotice h3 span,#dashNoticenew h3 span,#dashNoticeyellow span {
         | 
| 666 | 
            +
            	float: right;
         | 
| 667 | 
            +
            	font-size: 12px;
         | 
| 668 | 
            +
            }
         | 
| 669 | 
            +
             | 
| 670 | 
            +
            #dashNotice.dashForm {
         | 
| 671 | 
            +
            	padding: 10px;
         | 
| 672 | 
            +
            }
         | 
| 673 | 
            +
             | 
| 674 | 
            +
            #dashNotice.dashForm h3 {
         | 
| 675 | 
            +
            	background: #FEFFCF;
         | 
| 676 | 
            +
            	border: none;
         | 
| 677 | 
            +
            	margin: 0;
         | 
| 678 | 
            +
            	padding: 10px 10px 0;
         | 
| 679 | 
            +
            }
         | 
| 680 | 
            +
             | 
| 681 | 
            +
            #dashNotice.dashForm p {
         | 
| 682 | 
            +
            	background: #FEFFCF;
         | 
| 683 | 
            +
            	padding: 0 10px 10px;
         | 
| 684 | 
            +
            }
         | 
| 685 | 
            +
             | 
| 686 | 
            +
            #dashNotice.dashForm form {
         | 
| 687 | 
            +
            	background: url(/images/dash_form_bg.gif) no-repeat 0 0;
         | 
| 688 | 
            +
            	padding-top: 15px;
         | 
| 689 | 
            +
            }
         | 
| 690 | 
            +
             | 
| 691 | 
            +
            #dashNotice.dashForm form p {
         | 
| 692 | 
            +
            	background: none;
         | 
| 693 | 
            +
            	padding: 0;
         | 
| 694 | 
            +
            }
         | 
| 695 | 
            +
             | 
| 696 | 
            +
            #dashNotice.dashForm form p.close {
         | 
| 697 | 
            +
            	text-align: right;
         | 
| 698 | 
            +
            	padding-top: 10px;
         | 
| 699 | 
            +
            }
         | 
| 700 | 
            +
             | 
| 701 | 
            +
            #dashNotice.dashForm label {
         | 
| 702 | 
            +
            	color: #808080;
         | 
| 703 | 
            +
            	font-weight: bold;
         | 
| 704 | 
            +
            	padding-left: 2.0em;
         | 
| 705 | 
            +
            }
         | 
| 706 | 
            +
             | 
| 707 | 
            +
            #dashNotice.dashForm .newbee-search {
         | 
| 708 | 
            +
            	padding-left: 3.0em;
         | 
| 709 | 
            +
            	margin: 1.0em 0 0 2.0em;
         | 
| 710 | 
            +
            	background: url(/images/newbee_search.gif) no-repeat;
         | 
| 711 | 
            +
            }
         | 
| 712 | 
            +
             | 
| 713 | 
            +
            #dashNotice.dashForm .newbee-info {
         | 
| 714 | 
            +
            	padding-left: 3.0em;
         | 
| 715 | 
            +
            	margin: 1.0em 0 0 2.0em;
         | 
| 716 | 
            +
            	background: url(/images/newbee_info.gif) no-repeat;
         | 
| 717 | 
            +
            }
         | 
| 718 | 
            +
            #dashNotice.dashForm.tinyheight {
         | 
| 719 | 
            +
            	position:relative;
         | 
| 720 | 
            +
            }
         | 
| 721 | 
            +
            #dashNotice.dashForm.tinyheight h3 {
         | 
| 722 | 
            +
            	padding:6px 6px 0;
         | 
| 723 | 
            +
            }
         | 
| 724 | 
            +
            #dashNotice.dashForm.tinyheight p {
         | 
| 725 | 
            +
            	padding:0 6px 6px;
         | 
| 726 | 
            +
            }
         | 
| 727 | 
            +
            #dashNotice.dashForm.tinyheight .newbee-search {
         | 
| 728 | 
            +
            	margin:0.6em 0pt 0pt 2em;
         | 
| 729 | 
            +
            	padding-left:3em;
         | 
| 730 | 
            +
            }
         | 
| 731 | 
            +
            #dashNotice.dashForm.tinyheight .newbee-info {
         | 
| 732 | 
            +
            	margin:0.5em 0pt 0pt 2em;
         | 
| 733 | 
            +
            	padding-left:3em;
         | 
| 734 | 
            +
            }
         | 
| 735 | 
            +
            #dashNotice.dashForm.tinyheight form p.close {
         | 
| 736 | 
            +
            	padding:0;
         | 
| 737 | 
            +
            	margin-top:-1em;
         | 
| 738 | 
            +
            }
         | 
| 739 | 
            +
             | 
| 740 | 
            +
            /* Right : birthdays */
         | 
| 741 | 
            +
            #dashBirth dl { clear:both;}
         | 
| 742 | 
            +
            #dashBirth dt { clear:both; float:left; width:40px; color:#808080;}
         | 
| 743 | 
            +
            #dashBirth dd { height:20px; margin-left:40px; text-align:right; line-height:20px;}
         | 
| 744 | 
            +
            #dashBirth .user { float:left; width:6em; text-align:left;}
         | 
| 745 | 
            +
             | 
| 746 | 
            +
            #birthdaylist { padding:20px;}
         | 
| 747 | 
            +
            #birthdaylist dt { color:#3B5888; font-size:14px; font-weight:bold;}
         | 
| 748 | 
            +
            #birthdaylist dd { padding:0 10px;}
         | 
| 749 | 
            +
             | 
| 750 | 
            +
            /* Right : mystatus */
         | 
| 751 | 
            +
            #mystatus {text-align:left;}
         | 
| 752 | 
            +
            #mystatus .boxcont {padding-right:0 !important;}
         | 
| 753 | 
            +
            #mystatus #statuscontent .avatar {width:56px;}
         | 
| 754 | 
            +
            #mystatus #statuscontent .avatar img {width:50px;float:left}
         | 
| 755 | 
            +
            #mystatus #statuscontent .status-body {margin-left:6px;width:109px;float:left;line-height:1.2em;}
         | 
| 756 | 
            +
            #mystatus #statuscontent .status-edit {color:#808080;line-height:2.0em;}
         | 
| 757 | 
            +
            #mystatus #statuscontent .status-browse {border-top:1px solid #D8DFEA;margin-top:5px;line-height:1.9em;}
         | 
| 758 | 
            +
            #mystatus #statusEdit textarea {height:6.0em;width:13.0em;}
         | 
| 759 | 
            +
            #mystatus #statusEdit .status-edit {text-align:right;padding-right:5px;}
         | 
| 760 | 
            +
            #mystatus #statusEdit .status-count {float:left;font-size:10px;}
         | 
| 761 | 
            +
            #mystatus #statusEdit .status-count-full {float:left;font-size:10px;color:red;}
         | 
| 762 | 
            +
            #mystatus .status-mbtips {clear:both; background:url(../img/mobile-intro/tinymobile.gif) no-repeat 0 50%;padding-left:20px;margin-top:3px;}
         | 
| 763 | 
            +
            #mystatus #statusEdit {margin-bottom:0;}
         | 
| 764 | 
            +
             | 
| 765 | 
            +
            /* Right : tiplist */
         | 
| 766 | 
            +
            #tiplist, .stdcontainer .feedlist { margin:10px 0; padding:10px; border:1px solid #d8dfea; background:#fff; line-height:24px;}
         | 
| 767 | 
            +
            #tiplist ul { padding-left:20px;}
         | 
| 768 | 
            +
             | 
| 769 | 
            +
            /* added on March 30, 2007 */
         | 
| 770 | 
            +
            .tip h3#findmates { border:0; font-size:14px;}
         | 
| 771 | 
            +
            #myicon .image { float:left; margin-right:10px;}
         | 
| 772 | 
            +
            #myicon .image img { width:50px; max-height:75px;}
         | 
| 773 | 
            +
            #moreoptions { list-style:none; padding:5px 0; border-top:1px solid #d8dfea; border-bottom:1px solid #d8dfea;}
         | 
| 774 | 
            +
            #moreoptions:after { content:"."; display:block; font-size:0; clear:both; visibility:hidden;}
         | 
| 775 | 
            +
            #moreoptions { *zoom:1;}
         | 
| 776 | 
            +
            #moreoptions li { float:left; width:190px; line-height:24px;}
         | 
| 777 | 
            +
            #moreoptions .count { color:#808080;}
         | 
| 778 | 
            +
            #moremates { padding-top:8px;}
         | 
| 779 | 
            +
            #moremates h3 { border:0;}
         | 
| 780 | 
            +
            #moremates .more { top:10px;}
         | 
| 781 | 
            +
             | 
| 782 | 
            +
            #dashInvite .boxcont a {
         | 
| 783 | 
            +
            	display: block;
         | 
| 784 | 
            +
            	background: url(/images/invite_ico.gif) no-repeat 8px 50%;
         | 
| 785 | 
            +
            	padding: 5px 0 0 50px;
         | 
| 786 | 
            +
            	height: 40px;
         | 
| 787 | 
            +
            	line-height: 1.3em;
         | 
| 788 | 
            +
            }
         | 
| 789 | 
            +
             | 
| 790 | 
            +
            #dashfindfriend .boxcont a {
         | 
| 791 | 
            +
            	display:block;
         | 
| 792 | 
            +
            	background: url(../img/newsfeed/findfriend.gif) 0px 5px no-repeat;
         | 
| 793 | 
            +
            	padding: 5px 0 0 20px;
         | 
| 794 | 
            +
            	text-decoration: none;
         | 
| 795 | 
            +
            	line-height:1.5em;
         | 
| 796 | 
            +
            	height:1.5em;
         | 
| 797 | 
            +
            	color: #333;
         | 
| 798 | 
            +
            }
         | 
| 799 | 
            +
            #dashfindfriend .boxcont{ margin-left:10px;}
         | 
| 800 | 
            +
            #dashfindfriend .boxcont a span{color: #3B5888;}
         | 
| 801 | 
            +
            #dashfindfriend .boxcont a:hover span{text-decoration: underline;}
         | 
| 802 | 
            +
             | 
| 803 | 
            +
             | 
| 804 | 
            +
             | 
| 805 | 
            +
            #dashfindact .boxcont a {
         | 
| 806 | 
            +
            	display:block;
         | 
| 807 | 
            +
            	background: url(/images/pepsi.gif) 0px 5px no-repeat;
         | 
| 808 | 
            +
            	padding: 5px 0 0 20px;
         | 
| 809 | 
            +
            	text-decoration: none;
         | 
| 810 | 
            +
            	line-height:1.5em;
         | 
| 811 | 
            +
            	height:1.5em;
         | 
| 812 | 
            +
            	color: #333;
         | 
| 813 | 
            +
            }
         | 
| 814 | 
            +
            #dashfindact .boxcont{ margin-left:10px;}
         | 
| 815 | 
            +
            #dashfindact .boxcont a span{color: #3B5888;}
         | 
| 816 | 
            +
            #dashfindact .boxcont a:hover span{text-decoration: underline;}
         | 
| 817 | 
            +
             | 
| 818 | 
            +
             | 
| 819 | 
            +
             | 
| 820 | 
            +
            #dashIm .boxcont a {
         | 
| 821 | 
            +
            	display: block;
         | 
| 822 | 
            +
            	background: url(/images/im.gif) no-repeat 8px 45%;
         | 
| 823 | 
            +
            	padding: 5px 0 0 50px;
         | 
| 824 | 
            +
            	height: 40px;
         | 
| 825 | 
            +
            	line-height: 1.3em;
         | 
| 826 | 
            +
            	text-decoration: none;
         | 
| 827 | 
            +
            	color: #333;
         | 
| 828 | 
            +
            }
         | 
| 829 | 
            +
             | 
| 830 | 
            +
            #dashIm .boxcont a span {
         | 
| 831 | 
            +
            	display: block;
         | 
| 832 | 
            +
            	color: #3B5888;
         | 
| 833 | 
            +
            }
         | 
| 834 | 
            +
             | 
| 835 | 
            +
            #dashIm .boxcont a:hover span {
         | 
| 836 | 
            +
            	text-decoration: underline;
         | 
| 837 | 
            +
            }
         | 
| 838 | 
            +
             | 
| 839 | 
            +
            #dashboardPage .gift-outer,#dashboardPage .newdd-outer, #dashboardPage .mkt-outer {
         | 
| 840 | 
            +
                width: 64px;
         | 
| 841 | 
            +
                height: 64px;
         | 
| 842 | 
            +
                float: left;
         | 
| 843 | 
            +
                margin-right: 10px;
         | 
| 844 | 
            +
            	cursor: pointer;
         | 
| 845 | 
            +
            }
         | 
| 846 | 
            +
             | 
| 847 | 
            +
            .newdd-inner,.gift-inner,.mkt-inner {
         | 
| 848 | 
            +
                background-repeat:no-repeat;
         | 
| 849 | 
            +
                height:64px;
         | 
| 850 | 
            +
                width:64px;
         | 
| 851 | 
            +
            }
         | 
| 852 | 
            +
             | 
| 853 | 
            +
            .mkt-inner { overflow:hidden; border:0; }
         | 
| 854 | 
            +
            .mkt-inner img{min-width:64px; min-height:64px;}
         | 
| 855 | 
            +
             | 
| 856 | 
            +
            .newdd-discription,.gift-discription,.mkt-discription {
         | 
| 857 | 
            +
                float: left;
         | 
| 858 | 
            +
                line-height: 1.2em;
         | 
| 859 | 
            +
                width: 86px;
         | 
| 860 | 
            +
                overflow: hidden;
         | 
| 861 | 
            +
                height: 70px;
         | 
| 862 | 
            +
            }
         | 
| 863 | 
            +
            .newdd-discription.heighter{ height:90px;}
         | 
| 864 | 
            +
             | 
| 865 | 
            +
             | 
| 866 | 
            +
            .mkt-discription p a{ height:45px; display:block; overflow:hidden;}
         | 
| 867 | 
            +
            *html .mkt-discription p a{ height:43px; display:block; overflow:hidden;}
         | 
| 868 | 
            +
             | 
| 869 | 
            +
            .newdd-discription span,.gift-discription span,.mkt-discription span {
         | 
| 870 | 
            +
                color: #808080;
         | 
| 871 | 
            +
            }
         | 
| 872 | 
            +
             | 
| 873 | 
            +
            .newdd-discription p,.gift-discription p,.mkt-discription p {
         | 
| 874 | 
            +
                padding-bottom: 0.4em;
         | 
| 875 | 
            +
            }
         | 
| 876 | 
            +
             | 
| 877 | 
            +
            .newdd-actions , .gift-actions,.mkt-actions {
         | 
| 878 | 
            +
                clear: both;
         | 
| 879 | 
            +
                margin-top: 5px;
         | 
| 880 | 
            +
                border-top: 1px solid #E9E9E9;
         | 
| 881 | 
            +
            }
         | 
| 882 | 
            +
             | 
| 883 | 
            +
            #dashNew h4 {
         | 
| 884 | 
            +
                padding-bottom: 5px;
         | 
| 885 | 
            +
                font-weight: normal;
         | 
| 886 | 
            +
            }
         | 
| 887 | 
            +
             | 
| 888 | 
            +
            #dashNew .new-stuff img {
         | 
| 889 | 
            +
            	float: left;
         | 
| 890 | 
            +
            	width: 64px;
         | 
| 891 | 
            +
            }
         | 
| 892 | 
            +
             | 
| 893 | 
            +
            #dashNew .new-stuff p {
         | 
| 894 | 
            +
            	float: left;
         | 
| 895 | 
            +
            	width: 85px;
         | 
| 896 | 
            +
            	line-height: 1.3em;
         | 
| 897 | 
            +
            	padding-left: 10px;
         | 
| 898 | 
            +
            }
         | 
| 899 | 
            +
             | 
| 900 | 
            +
            #dashMovie .mov-pics {
         | 
| 901 | 
            +
            	float:left;
         | 
| 902 | 
            +
            	margin-right:6px;
         | 
| 903 | 
            +
            }
         | 
| 904 | 
            +
            #dashMovie .mov-pics img {
         | 
| 905 | 
            +
            	width:50px;
         | 
| 906 | 
            +
            	border:1px solid #ccc;
         | 
| 907 | 
            +
            }
         | 
| 908 | 
            +
            #dashMovie .mov-intro {
         | 
| 909 | 
            +
            	float:left;
         | 
| 910 | 
            +
            	width:104px;
         | 
| 911 | 
            +
            }
         | 
| 912 | 
            +
            #dashMovie .mov-intro h4 {
         | 
| 913 | 
            +
            	line-height:1.2em;
         | 
| 914 | 
            +
            	padding:1px 0 4px;
         | 
| 915 | 
            +
            }
         | 
| 916 | 
            +
            #dashMovie .mov-intro h5 {
         | 
| 917 | 
            +
            	border-top:1px solid #ccc;
         | 
| 918 | 
            +
            	font-weight:normal;
         | 
| 919 | 
            +
            	line-height:1.3em;
         | 
| 920 | 
            +
            	padding:4px 0;
         | 
| 921 | 
            +
            }
         | 
| 922 | 
            +
            #dashMovie .mov-intro span {
         | 
| 923 | 
            +
            	font-size:11px;
         | 
| 924 | 
            +
            	color:#808080;
         | 
| 925 | 
            +
            	font-weight:normal;
         | 
| 926 | 
            +
            	display:block;
         | 
| 927 | 
            +
            }
         | 
| 928 | 
            +
            #dashMovie .mov-intro h5 span span {
         | 
| 929 | 
            +
            	font-family:mingliu;
         | 
| 930 | 
            +
            	display:inline;
         | 
| 931 | 
            +
            }
         | 
| 932 | 
            +
             | 
| 933 | 
            +
            #dashPoll .boxcont {
         | 
| 934 | 
            +
            	background: url(/images/poll.gif) no-repeat 13px 5px;
         | 
| 935 | 
            +
            	padding-left: 55px !important;
         | 
| 936 | 
            +
            	line-height: 1.3em !important;
         | 
| 937 | 
            +
            }
         | 
| 938 | 
            +
             | 
| 939 | 
            +
             | 
| 940 | 
            +
            * html .transparent-png {display:none}
         | 
| 941 | 
            +
             | 
| 942 | 
            +
             | 
| 943 | 
            +
             | 
| 944 | 
            +
             | 
| 945 | 
            +
            .dashForm {
         | 
| 946 | 
            +
            	background:#F2F4F7;
         | 
| 947 | 
            +
            	border-bottom: 1px solid #DEDDE3;
         | 
| 948 | 
            +
            	padding: 10px;
         | 
| 949 | 
            +
            	margin-bottom: 10px;
         | 
| 950 | 
            +
            }
         | 
| 951 | 
            +
             | 
| 952 | 
            +
            .dashForm .attention {
         | 
| 953 | 
            +
            	border-bottom: 0;
         | 
| 954 | 
            +
            	margin: 0;
         | 
| 955 | 
            +
            }
         | 
| 956 | 
            +
             | 
| 957 | 
            +
            .dashForm .attention h3 {border:0;margin: 0;}
         | 
| 958 | 
            +
             | 
| 959 | 
            +
            .dashForm .dashFormContent {
         | 
| 960 | 
            +
            	background: url(/images/dash_form_bg.gif) no-repeat 0 0;
         | 
| 961 | 
            +
            	padding-top: 15px;
         | 
| 962 | 
            +
            }
         | 
| 963 | 
            +
             | 
| 964 | 
            +
            .dashForm .dashFormContent .inputfile {
         | 
| 965 | 
            +
            	margin-right:1.0em;
         | 
| 966 | 
            +
            	border:1px solid #BDC7D8;
         | 
| 967 | 
            +
            }
         | 
| 968 | 
            +
             | 
| 969 | 
            +
            .group-feed .opi-icon .icon img {width: 25px;}
         | 
| 970 | 
            +
            .group-feed .opi-content {width: 400px;}
         | 
| 971 | 
            +
            .group-feed .opi-content .title {width: 398px;}
         | 
| 972 | 
            +
            .group-feed .opi-content .title h2 {width: 398px;}
         | 
| 973 | 
            +
             | 
| 974 | 
            +
            .form-invite .cube {
         | 
| 975 | 
            +
            	border: 1px solid #CCC;
         | 
| 976 | 
            +
            	margin-top: 2.0em;
         | 
| 977 | 
            +
            }
         | 
| 978 | 
            +
             | 
| 979 | 
            +
            .form-invite legend {
         | 
| 980 | 
            +
            	font-weight: bold;
         | 
| 981 | 
            +
            	font-size: 1.2em;
         | 
| 982 | 
            +
            	margin-bottom: 0.5em;
         | 
| 983 | 
            +
            	color: #333;
         | 
| 984 | 
            +
            }
         | 
| 985 | 
            +
             | 
| 986 | 
            +
            .form-invite legend.icon {
         | 
| 987 | 
            +
            	background: url(/images/hotmail_logo.gif) no-repeat 100% 50%;
         | 
| 988 | 
            +
            	padding-right: 4.5em;
         | 
| 989 | 
            +
            }
         | 
| 990 | 
            +
             | 
| 991 | 
            +
            * html .form-invite legend {margin-left: -0.5em;}
         | 
| 992 | 
            +
            *+html .form-invite legend {margin-left: -0.5em;}
         | 
| 993 | 
            +
             | 
| 994 | 
            +
            .form-invite p {
         | 
| 995 | 
            +
            	padding: 5px 0;
         | 
| 996 | 
            +
            	overflow:hidden;
         | 
| 997 | 
            +
            	zoom: 0;
         | 
| 998 | 
            +
            	height: 21px;
         | 
| 999 | 
            +
            	line-height: 21px;
         | 
| 1000 | 
            +
            }
         | 
| 1001 | 
            +
             | 
| 1002 | 
            +
            .form-invite label {
         | 
| 1003 | 
            +
            	float: left;
         | 
| 1004 | 
            +
            	color: #777;
         | 
| 1005 | 
            +
            	font-weight: bold;
         | 
| 1006 | 
            +
            	text-align: left;
         | 
| 1007 | 
            +
            	width: 8.0em;
         | 
| 1008 | 
            +
            	height: 21px;
         | 
| 1009 | 
            +
            	line-height: 21px;
         | 
| 1010 | 
            +
            }
         | 
| 1011 | 
            +
             | 
| 1012 | 
            +
            .form-invite label.empty {color:#FFF !important;}
         | 
| 1013 | 
            +
             | 
| 1014 | 
            +
            .form-invite .inputtext {
         | 
| 1015 | 
            +
            	width: 10.0em;
         | 
| 1016 | 
            +
            }
         | 
| 1017 | 
            +
             | 
| 1018 | 
            +
            .form-invite #inviteurl {
         | 
| 1019 | 
            +
            	width: 25.4em;
         | 
| 1020 | 
            +
            	margin-right: 1.0em;
         | 
| 1021 | 
            +
            }
         | 
| 1022 | 
            +
             | 
| 1023 | 
            +
            .form-invite strong {
         | 
| 1024 | 
            +
            	background: #EDF1F7;
         | 
| 1025 | 
            +
            	border: 1px solid #CCCCFF;
         | 
| 1026 | 
            +
            	padding: 10px 10px;
         | 
| 1027 | 
            +
            	display: block;
         | 
| 1028 | 
            +
            	line-height: 1.25em;
         | 
| 1029 | 
            +
            	font-weight: normal;
         | 
| 1030 | 
            +
            }
         | 
| 1031 | 
            +
             | 
| 1032 | 
            +
             | 
| 1033 | 
            +
            .opi_market .opi-content .feedbody .photo-box{
         | 
| 1034 | 
            +
            	overflow: hidden; float:left; border:1px #ccc solid; margin-right:5px; margin-top:5px; margin-bottom:5px;}
         | 
| 1035 | 
            +
             | 
| 1036 | 
            +
            .opi_market .opi-content .feedbody .photo-box a {
         | 
| 1037 | 
            +
            	margin:2px;
         | 
| 1038 | 
            +
                display: block;
         | 
| 1039 | 
            +
            }
         | 
| 1040 | 
            +
             | 
| 1041 | 
            +
            .opi_market .opi-content .feedbody p.havepic{ width:290px;  float:left; }
         | 
| 1042 | 
            +
             | 
| 1043 | 
            +
             | 
| 1044 | 
            +
             | 
| 1045 | 
            +
            .opi-movcmt .opi-content .feedbody .photo-box a {
         | 
| 1046 | 
            +
                border: 1px solid #CCC;
         | 
| 1047 | 
            +
                display: block;
         | 
| 1048 | 
            +
                float: left;
         | 
| 1049 | 
            +
                margin: 0 10px 6px 0;
         | 
| 1050 | 
            +
            }
         | 
| 1051 | 
            +
            *html .opi-movcmt .opi-content .feedbody .photo-box a {
         | 
| 1052 | 
            +
            	margin:0 10px 0 0;
         | 
| 1053 | 
            +
            }
         | 
| 1054 | 
            +
            *+html .opi-movcmt .opi-content .feedbody .photo-box a {
         | 
| 1055 | 
            +
            	margin:0 10px 0 0;
         | 
| 1056 | 
            +
            }
         | 
| 1057 | 
            +
            .opi-movcmt .opi-content .feedbody .photo-box a:hover {
         | 
| 1058 | 
            +
                border: 1px solid #3B5888;
         | 
| 1059 | 
            +
            }
         | 
| 1060 | 
            +
            .opi-movcmt .opi-content .feedbody .photo-box img {
         | 
| 1061 | 
            +
                padding: 3px;
         | 
| 1062 | 
            +
            	width:70px;
         | 
| 1063 | 
            +
            }
         | 
| 1064 | 
            +
            .opi-movcmt .opi-content .feedbody p.quote {
         | 
| 1065 | 
            +
            	clear:both;
         | 
| 1066 | 
            +
            }
         | 
| 1067 | 
            +
             | 
| 1068 | 
            +
            .movie-rate {
         | 
| 1069 | 
            +
            	display:-moz-inline-stack;
         | 
| 1070 | 
            +
            	display:inline-block;
         | 
| 1071 | 
            +
            	width:50px;
         | 
| 1072 | 
            +
            	height:14px;
         | 
| 1073 | 
            +
            	background:url(/images/rate-stars.gif) 0 0 no-repeat;
         | 
| 1074 | 
            +
            	font-size:0;
         | 
| 1075 | 
            +
            	text-indent:-999em;
         | 
| 1076 | 
            +
            	vertical-align:top;
         | 
| 1077 | 
            +
            	overflow:hidden;
         | 
| 1078 | 
            +
            	*text-indent:0;
         | 
| 1079 | 
            +
            }
         | 
| 1080 | 
            +
            *+html .movie-rate {
         | 
| 1081 | 
            +
            	margin:-1px 0 2px;
         | 
| 1082 | 
            +
            }
         | 
| 1083 | 
            +
            .rate-star1 {	background-position:0 -55px; }
         | 
| 1084 | 
            +
            .rate-star2 { background-position:0 -41px; }
         | 
| 1085 | 
            +
            .rate-star3 {	background-position:0 -27px; }
         | 
| 1086 | 
            +
            .rate-star4 {	background-position:0 -13px; }
         | 
| 1087 | 
            +
            .rate-star5 {	background-position:0 0;}
         | 
| 1088 | 
            +
             | 
| 1089 | 
            +
             | 
| 1090 | 
            +
            /* share music and video */
         | 
| 1091 | 
            +
            .opi-share-link .opi-content .feedbody .music-bar {
         | 
| 1092 | 
            +
            	padding:6px 0 0;
         | 
| 1093 | 
            +
            }
         | 
| 1094 | 
            +
            .opi-share-link .opi-content .feedbody .music-info {
         | 
| 1095 | 
            +
            	margin-bottom:8px;
         | 
| 1096 | 
            +
            }
         | 
| 1097 | 
            +
            .opi-share-link .opi-content .feedbody .music-info strong {
         | 
| 1098 | 
            +
            	color:#808080;
         | 
| 1099 | 
            +
            	font-weight:normal;
         | 
| 1100 | 
            +
            	padding-right:6px;
         | 
| 1101 | 
            +
            }
         | 
| 1102 | 
            +
            .opi-share-link .opi-content .feedbody .music-info a {
         | 
| 1103 | 
            +
            	font-weight:bold;
         | 
| 1104 | 
            +
            }
         | 
| 1105 | 
            +
            .opi-share-link .opi-content .feedbody .video-pic {
         | 
| 1106 | 
            +
            	display: block;
         | 
| 1107 | 
            +
            	float: left;
         | 
| 1108 | 
            +
            	margin: 0 10px 10px 0;
         | 
| 1109 | 
            +
            	position:relative;
         | 
| 1110 | 
            +
            	background-position:center center;
         | 
| 1111 | 
            +
            	background-repeat:no-repeat;
         | 
| 1112 | 
            +
            }
         | 
| 1113 | 
            +
            *html .opi-share-link .opi-content .feedbody .video-pic {
         | 
| 1114 | 
            +
            	margin:0 10px 0 0;
         | 
| 1115 | 
            +
            }
         | 
| 1116 | 
            +
            *+html .opi-share-link .opi-content .feedbody .video-pic {
         | 
| 1117 | 
            +
            	margin:0 10px 0 0;
         | 
| 1118 | 
            +
            }
         | 
| 1119 | 
            +
            .opi-share-link .opi-content .feedbody .video-pic .thumb {
         | 
| 1120 | 
            +
            	width: 120px;
         | 
| 1121 | 
            +
            	height:90px;
         | 
| 1122 | 
            +
            	cursor:pointer;
         | 
| 1123 | 
            +
            }
         | 
| 1124 | 
            +
             | 
| 1125 | 
            +
            .opi-share-link .opi-content .feedbody .playbtn {
         | 
| 1126 | 
            +
            	cursor:pointer;
         | 
| 1127 | 
            +
            }
         | 
| 1128 | 
            +
            .opi-share-link .opi-content .feedbody .video-pic .playbtn {
         | 
| 1129 | 
            +
            	top:30px;
         | 
| 1130 | 
            +
            	left:42px;
         | 
| 1131 | 
            +
            	position:absolute;
         | 
| 1132 | 
            +
            }
         | 
| 1133 | 
            +
             | 
| 1134 | 
            +
            *html .opi-share-link .opi-content .feedbody .video-pic .transparent-png {
         | 
| 1135 | 
            +
            	display:none;
         | 
| 1136 | 
            +
            }
         | 
| 1137 | 
            +
            *html .opi-share-link .opi-content .feedbody .video-pic .playbtn {
         | 
| 1138 | 
            +
            	width:38px;
         | 
| 1139 | 
            +
            	height:28px;
         | 
| 1140 | 
            +
            }
         | 
| 1141 | 
            +
            .opi-share-link .opi-content .feedbody p.quote {
         | 
| 1142 | 
            +
            	clear:both;
         | 
| 1143 | 
            +
            }
         | 
| 1144 | 
            +
             | 
| 1145 | 
            +
            /* temp-guide of share */
         | 
| 1146 | 
            +
            .temp-guide {
         | 
| 1147 | 
            +
            	margin-bottom:-1em;
         | 
| 1148 | 
            +
            	margin-top:1em;
         | 
| 1149 | 
            +
            	border-left:5px solid #fde045;
         | 
| 1150 | 
            +
            }
         | 
| 1151 | 
            +
            #spacePage .temp-guide {
         | 
| 1152 | 
            +
            	margin-bottom:-0.5em;
         | 
| 1153 | 
            +
            	margin-left:-7px;
         | 
| 1154 | 
            +
            }
         | 
| 1155 | 
            +
            .temp-guide a {
         | 
| 1156 | 
            +
            	padding:1px 6px;
         | 
| 1157 | 
            +
            	display:block;
         | 
| 1158 | 
            +
            	color:#666;
         | 
| 1159 | 
            +
            	background:#fff9d7;
         | 
| 1160 | 
            +
            }
         | 
| 1161 | 
            +
            .temp-guide a:hover {
         | 
| 1162 | 
            +
            	background:#fff6c6;
         | 
| 1163 | 
            +
            	text-decoration:none;
         | 
| 1164 | 
            +
            	color:#333;
         | 
| 1165 | 
            +
            }
         | 
| 1166 | 
            +
            *+html .temp-guide a {
         | 
| 1167 | 
            +
            	padding:1px 6px 0;
         | 
| 1168 | 
            +
            }
         | 
| 1169 | 
            +
             | 
| 1170 | 
            +
            form#joinWorkNetworkForm{}
         | 
| 1171 | 
            +
            form#joinWorkNetworkForm h2{ font-size:12px; background:url(../img/newsfeed/team.gif) left no-repeat; line-height:20px; height:20px; padding-left:20px;}
         | 
| 1172 | 
            +
            form#joinWorkNetworkForm p.alttext{ margin-left:20px; margin:10px 0; margin-left:20px;}
         | 
| 1173 | 
            +
            form#joinWorkNetworkForm p.inputemailbox{ margin-left:20px;}
         | 
| 1174 | 
            +
             | 
| 1175 | 
            +
             | 
| 1176 | 
            +
            #dashNoticeyellow.atindex{ margin-bottom:20px; border-bottom:0 !important;}
         | 
| 1177 | 
            +
             | 
| 1178 | 
            +
             | 
| 1179 | 
            +
            /*online friends*/
         | 
| 1180 | 
            +
            #onlinefriend{ padding:3px 0; border-top:1px #ccc solid;}
         | 
| 1181 | 
            +
            #onlinefriend a.extend{ height:1.8em; line-height:1.8em; padding-right:13px; background:url(/images/act_collapse.gif) right -22px no-repeat;}
         | 
| 1182 | 
            +
            #onlinefriend a.collapse{ height:1.8em; line-height:1.8em; padding-right:13px; background:url(/images/act_collapse.gif) right -2px no-repeat;}
         | 
| 1183 | 
            +
             | 
| 1184 | 
            +
            #onlinefriend #onlinefriendlist{ height:160px; border:1px #ccc solid; overflow-x:hidden; overflow-y:scroll;}
         | 
| 1185 | 
            +
             | 
| 1186 | 
            +
            #onlinefriend #onlinefriendlist li{border-bottom:1px #eee solid;}
         | 
| 1187 | 
            +
            #onlinefriend #onlinefriendlist li a{ color:#333; padding-left:17px; background:#fff url(/images/onlineico.gif) 5px 50% no-repeat; display:block; height:23px; line-height:23px; }
         | 
| 1188 | 
            +
            #onlinefriend #onlinefriendlist li a:hover{ background-color:#D8DFEA; color:#333; text-decoration:none;}
         | 
| 1189 | 
            +
             | 
| 1190 | 
            +
            /*for getuser_privacy page*/
         | 
| 1191 | 
            +
            .yellowbox_morepadding{ background-color:#feffcf; border:1px #ccc solid; padding:20px; margin-bottom:20px;}
         | 
| 1192 | 
            +
            *html .yellowbox_morepadding{ padding-top:10px;}
         | 
| 1193 | 
            +
            *+html .yellowbox_morepadding{ padding-top:10px;}
         | 
| 1194 | 
            +
            .yellowbox_morepadding p.bigger{ font-size:15px;}
         | 
| 1195 | 
            +
            .yellowbox_morepadding p.btn_center{ text-align:center; margin-top:10px;}
         | 
| 1196 | 
            +
             | 
| 1197 | 
            +
             | 
| 1198 | 
            +
             | 
| 1199 | 
            +
             | 
| 1200 | 
            +
             | 
| 1201 | 
            +
             | 
| 1202 | 
            +
             | 
| 1203 | 
            +
             | 
| 1204 | 
            +
             | 
| 1205 | 
            +
             |