Make WordPress Core

Ticket #22862: 22862.diff

File 22862.diff, 695.1 KB (added by wonderboymusic, 12 years ago)
  • new file wp-admin/css/less/mixins.less

    diff --git a/wp-admin/css/less/mixins.less b/wp-admin/css/less/mixins.less
    new file mode 100644
    index 0000000..3f523cb
    - +  
     1.linear-gradient(@start, @start_opacity, @end, @end_opacity) {
     2        background: @end;
     3        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(@start_opacity, @start), color-stop(@end_opacity, @end));
     4        background-image: -webkit-linear-gradient(bottom, @start @start_opacity, @end @end_opacity);
     5        background-image:    -moz-linear-gradient(bottom, @start @start_opacity, @end @end_opacity);
     6        background-image:      -o-linear-gradient(bottom, @start @start_opacity, @end @end_opacity);
     7        background-image: linear-gradient(to top, @start @start_opacity, @end);
     8}
     9
     10.linear-gradient(@start, @end) {
     11        background: @end;
     12        background-image: -webkit-gradient(linear, left bottom, left top, from(@start), to(@end));
     13        background-image: -webkit-linear-gradient(bottom, @start, @end);
     14        background-image:    -moz-linear-gradient(bottom, @start, @end);
     15        background-image:      -o-linear-gradient(bottom, @start, @end);
     16        background-image: linear-gradient(to top, @start, @end);
     17}
     18
     19.rounded(@radius: 3px) {
     20    border-radius: @radius;
     21    -moz-border-radius: @radius;
     22    -webkit-border-radius: @radius;
     23}
     24
     25.rounded-bottom(@radius: 3px) {
     26        border-bottom-left-radius: @radius;
     27        border-bottom-right-radius: @radius;
     28    -moz-border-bottom-left-radius: @radius;
     29        -moz-border-bottom-right-radius: @radius;   
     30        -webkit-border-bottom-left-radius: @radius;
     31        -webkit-border-bottom-right-radius: @radius;
     32}
     33
     34.rounded-top(@radius: 3px) {
     35        border-top-left-radius: @radius;
     36        border-top-right-radius: @radius;
     37    -moz-border-top-left-radius: @radius;
     38        -moz-border-top-right-radius: @radius;   
     39        -webkit-border-top-left-radius: @radius;
     40        -webkit-border-top-right-radius: @radius;
     41}
     42
     43.rounded-left(@radius: 3px) {
     44        border-top-left-radius: @radius;
     45        border-bottom-left-radius: @radius;
     46    -moz-border-top-left-radius: @radius;
     47        -moz-border-bottom-left-radius: @radius;   
     48        -webkit-border-top-left-radius: @radius;
     49        -webkit-border-bottom-left-radius: @radius;
     50}
     51
     52.rounded-right(@radius: 3px) {
     53        border-top-right-radius: @radius;
     54        border-bottom-right-radius: @radius;
     55    -moz-border-top-right-radius: @radius;
     56        -moz-border-bottom-right-radius: @radius;   
     57        -webkit-border-top-right-radius: @radius;
     58        -webkit-border-bottom-right-radius: @radius;
     59}
     60
     61.border-box() {
     62        -moz-box-sizing: border-box;
     63        -webkit-box-sizing: border-box;
     64        -ms-box-sizing: border-box;
     65        box-sizing: border-box;
     66}
     67
     68.transitions(@duration: 0.2s) {
     69        -webkit-transition-property: left, right, top, bottom, width, margin;
     70        -moz-transition-property:    left, right, top, bottom, width, margin;
     71        -ms-transition-property:     left, right, top, bottom, width, margin;
     72        -o-transition-property:      left, right, top, bottom, width, margin;
     73        transition-property:         left, right, top, bottom, width, margin;
     74
     75        -webkit-transition-duration: @duration;
     76        -moz-transition-duration:    @duration;
     77        -ms-transition-duration:     @duration;
     78        -o-transition-duration:      @duration;
     79        transition-duration:         @duration;
     80}
     81
     82.no-box-shadows() {
     83        -moz-box-shadow:        none;   
     84        -webkit-box-shadow: none;
     85        box-shadow:                     none;
     86}
     87
     88.no-user-select() {
     89        -webkit-user-select: none;
     90        -moz-user-select: none;
     91        user-select: none;
     92}
     93
     94.serif-font() {
     95        font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
     96}
     97
     98.sans-serif-font() {
     99        font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
     100}
     101
     102.normal-font(@size: 12px, @height: 1) {
     103        font-size: @size;
     104        font-weight: normal;
     105        line-height: @height;
     106}
     107
     108.bold-font(@size: 12px, @height: normal) {
     109        font-size: @size;
     110        font-weight: bold;
     111        line-height: @height;
     112}
     113
     114.about-font (@size: 20px) {
     115        .sans-serif-font();
     116        .normal-font(@size, 1.6em);
     117}
     118 No newline at end of file
  • new file wp-admin/css/less/modules/about.less

    diff --git a/wp-admin/css/less/modules/about.less b/wp-admin/css/less/modules/about.less
    new file mode 100644
    index 0000000..95f94de
    - +  
     1/*------------------------------------------------------------------------------
     2  22.0 - About Pages
     3------------------------------------------------------------------------------*/
     4
     5/* WordPress Version Badge */
     6
     7.wp-badge {
     8        padding-top: 142px;
     9        height: 50px;
     10        width: 173px;
     11        .bold-font(14px);
     12        text-align: center;
     13        margin: 0 -5px;
     14        background: url('../images/wp-badge.png?ver=20111120') no-repeat;
     15}
     16
     17.about-wrap {
     18        position: relative;
     19        margin: 25px 40px 0 20px;
     20        max-width: 1050px; /* readability */
     21        font-size: 15px;
     22
     23        div.updated,
     24        div.error {
     25                display: none !important;
     26        }
     27
     28        /* Typography */
     29        p {
     30                line-height: 1.6em;
     31        }
     32
     33        h1 {
     34                margin: 0.2em 200px 0 0;
     35                line-height: 1.2em;
     36                font-size: 2.8em;
     37                font-weight: 200;
     38        }
     39
     40        h3 {
     41                font-size: 24px;
     42                margin-bottom: 1em;
     43                padding-top: 20px;
     44        }
     45
     46        code {
     47                font-size: 14px;
     48        }
     49
     50        li.wp-person a.web {
     51                .about-font;
     52        }
     53
     54        /* Point Releases */
     55
     56        .point-releases {
     57                margin-top: 5px;
     58        }
     59
     60        .changelog.point-releases h3 {
     61                padding-top: 35px;
     62               
     63                &:first-child {
     64                        padding-top: 7px;
     65                }
     66        }
     67
     68        .wp-badge {
     69                position: absolute;
     70                top: 0;
     71                right: 0;
     72        }
     73
     74        /* Tabs */
     75
     76        h2 {
     77                &.nav-tab-wrapper {
     78                        padding-left: 6px;
     79                }
     80
     81                & .nav-tab {
     82                        padding: 4px 10px 6px;
     83                        margin: 0 3px -1px 0;
     84                        font-size: 18px;
     85                        vertical-align: top;
     86                }
     87
     88                & .nav-tab-active {
     89                        font-weight: bold;
     90                        padding-top: 3px;
     91                }       
     92        }
     93
     94        /* Changelog / Update screen */
     95
     96        .feature-section {
     97                padding-bottom: 20px;
     98                h4 {
     99                        margin-bottom: 0.6em;
     100                }
     101
     102                p {
     103                        margin-top: 0.6em;
     104                }
     105
     106                img,
     107                .video {
     108                        border: none;
     109                        margin: 0 1.94% 10px 0;
     110                        .rounded(3px);
     111                }
     112
     113                .video video {
     114                        max-width: 100%;
     115                }
     116
     117                &.three-col img {
     118                        margin: 0.5em 0 0.5em 5px;
     119                        max-width: 100%;
     120                        float: none;
     121                }
     122
     123                &.images-stagger-right img,
     124                &.images-stagger-right .video {
     125                        float: right;
     126                        margin: 0 5px 12px 2em;
     127                }
     128
     129                &.images-stagger-left img {
     130                        float: left;
     131                        margin: 0 2em 12px 5px;
     132                }
     133
     134                .image-100 {
     135                        margin: 0 0 2em 0;
     136                        width: 100%;
     137                }
     138
     139                .image-66 {
     140                        width: 65%;
     141                        &.video {
     142                                max-width: 600px;
     143                        }                       
     144                }
     145
     146                .image-50 {
     147                        max-width: 50%;
     148                }
     149
     150                img.image-30 {
     151                        max-width: 31.2381%;
     152                }
     153
     154                &.col {
     155                        margin-bottom: 0;
     156                        h4 {
     157                                margin:  0 0 0.6em 0;
     158                        }
     159
     160                        .last-feature {
     161                                margin-right: 0;
     162                        }
     163                }
     164
     165                &.two-col div, &.three-col div {
     166                        margin-right: 4.999999999%;
     167                        float: left;
     168                }
     169
     170                &.two-col div {
     171                        width: 47%;
     172                }
     173
     174                &.three-col div {
     175                        width: 30%;
     176                }
     177        }
     178
     179        .ie8 & .feature-section {
     180                &.three-col img {
     181                        margin-left: 0;
     182                }
     183
     184                img {
     185                        border-width: 1px;
     186                        border-style: solid;
     187                }
     188        }
     189
     190        .images-stagger-right img.image-30:nth-child(2) {
     191                margin-left: 1em;
     192        }
     193
     194        .three-col-images {
     195                text-align: center;
     196                img {
     197                        margin: 0 0 10px;
     198                }
     199                .last-feature {
     200                        float: right;
     201                }
     202
     203                .first-feature {
     204                        float: left;
     205                }       
     206        }
     207
     208        .changelog {
     209                .feature-section {
     210                        overflow: hidden;
     211                }
     212
     213                li {
     214                        list-style-type: disc;
     215                        margin-left: 3em;
     216                }
     217        }
     218
     219        /* Return to Dashboard Home link */
     220
     221        .return-to-dashboard {
     222                margin: 30px 0 0 -5px;
     223                .bold-font(14px);
     224                a {
     225                        text-decoration: none;
     226                        padding: 0 5px;
     227                }
     228        }
     229
     230        /* Credits */
     231
     232        h4.wp-people-group {
     233                margin-top: 2.6em;
     234                font-size: 16px;
     235        }
     236
     237        ul.wp-people-group {
     238                overflow: hidden;
     239                padding: 0 5px;
     240                margin: 0 -15px 0 -5px;
     241        }
     242
     243        li.wp-person {
     244                float: left;
     245                margin-right: 10px;
     246       
     247                img.gravatar {
     248                        float: left;
     249                        margin: 0 10px 10px 0;
     250                        padding: 2px;
     251                        width: 60px;
     252                        height: 60px;
     253                }
     254        }
     255
     256        ul.compact {
     257                margin-bottom: 0;
     258
     259                li.wp-person img.gravatar {
     260                        width: 30px;
     261                        height: 30px;
     262                }       
     263        }
     264
     265        li.wp-person {
     266                height: 70px;
     267                width: 280px;
     268                padding-bottom: 15px;
     269
     270                ul.compact & {
     271                        height: auto;
     272                        width: 180px;
     273                        padding-bottom: 0;
     274                        margin-bottom: 0;
     275                }       
     276
     277                a.web {
     278                        display: block;
     279                        margin: 6px 0 2px;
     280                        font-size: 16px;
     281                        text-decoration: none;
     282                }
     283        }
     284
     285        #wp-people-group-validators + p.wp-credits-list {
     286                margin-top: 0;
     287        }
     288
     289        p.wp-credits-list a {
     290                white-space: nowrap;
     291        }
     292
     293        /* Freedoms */
     294
     295        .freedoms-php & {
     296                ol {
     297                        margin: 40px 60px;
     298                        li {
     299                                list-style-type: decimal;
     300                                font-weight: bold;
     301                        }
     302                        p {
     303                                font-weight: normal;
     304                                margin: 0.6em 0;
     305                        }               
     306                }
     307        }
     308}
     309
     310.about-description {
     311        .about-font;
     312        margin-top: 1.4em;
     313}
     314
     315.about-text {
     316        .about-font(24px);
     317        margin: 1em 200px 1.4em 0;
     318        min-height: 60px;
     319}
     320
     321@media only screen and (max-width: 900px) {
     322        .about-wrap .feature-section {
     323                .images-stagger-left img,
     324                .images-stagger-right img,
     325                .images-stagger-right .video {
     326                        clear: both;
     327                }
     328
     329                .video.image-66 {
     330                        float: none;
     331                        width: 98%;
     332                        max-width: 98%;
     333                }
     334
     335                &.images-stagger-right .video.image-66 {
     336                        margin-left: 3px;
     337                }
     338        }
     339}
     340
     341@media only screen and (max-width: 768px) {
     342        .about-wrap .feature-section {
     343                .image-66 {
     344                        float: none;
     345                        width: 98%;
     346                        max-width: 98%;
     347                }
     348                &.images-stagger-right .image-66 {
     349                        margin-left: 3px;
     350                }
     351
     352                &.images-stagger-left .image-66 {
     353                        margin-right: 3px;
     354                }
     355        }
     356}
     357 No newline at end of file
  • new file wp-admin/css/less/modules/accordion.less

    diff --git a/wp-admin/css/less/modules/accordion.less b/wp-admin/css/less/modules/accordion.less
    new file mode 100644
    index 0000000..6625a64
    - +  
     1/* Accordion */
     2
     3.accordion-section {
     4        border-top: 1px solid #fff;
     5        border-bottom: 1px solid @border-color;
     6        margin: 0;
     7
     8        &:first-child {
     9                border-top: 1px solid @border-color;
     10        }
     11
     12        &:last-child {
     13                box-shadow: 0 1px 0 0px #fff;
     14        }       
     15
     16        &.open .accordion-section-content,
     17        .no-js & .accordion-section-content {
     18                display: block;
     19        }
     20
     21        &.open:hover {
     22                border-bottom-color: @border-color;
     23        }
     24}
     25
     26.accordion-section-content {
     27        display: none;
     28        padding: 10px 20px 15px;
     29        overflow: hidden;
     30        background: #fdfdfd;
     31        border-left: 1px solid @border-color;
     32        border-right: 1px solid @border-color;
     33}
     34
     35.accordion-section-title {
     36        margin: 0;
     37        padding: 15px 20px;
     38        position: relative;
     39        border-left: 1px solid @border-color;
     40        border-right: 1px solid @border-color;
     41
     42        .no-user-select();
     43
     44        .js & {
     45                cursor: pointer;
     46        }
     47
     48        .js &:after {
     49                content: '';
     50                width: 0;
     51                height: 0;
     52                border-color: #ccc transparent;
     53                border-style: solid;
     54                border-width: 6px 6px 0;
     55                position: absolute;
     56                top: 25px;
     57                right: 20px;
     58                z-index: 1;
     59        }
     60
     61        &:focus {
     62                outline: none;
     63        }
     64
     65        &:hover:after,
     66        &:focus:after {
     67                border-color: #aaa transparent;
     68        }
     69
     70        .cannot-expand & {
     71                cursor: auto;
     72        }
     73
     74        .cannot-expand &:after {
     75                display: none;
     76        }
     77
     78        .control-section & {
     79                padding: 10px 20px;
     80                color: #464646;
     81                .serif-font();
     82                .normal-font(15px);
     83                text-shadow: 0 1px 0 #fff;
     84                .linear-gradient(#eee, #f5f5f5);
     85        }
     86
     87        .control-section &:after {
     88                top: 15px;
     89        }
     90
     91        .js .control-section:hover &,
     92        .js .control-section &:hover,
     93        .js .control-section.open &,
     94        .js .control-section &:focus {
     95                color: black;
     96                .linear-gradient(#ececec, #f9f9f9);
     97        }
     98
     99        .control-section.open & {
     100                border-bottom: 1px solid @border-color;
     101        }
     102}
     103 No newline at end of file
  • new file wp-admin/css/less/modules/actions.less

    diff --git a/wp-admin/css/less/modules/actions.less b/wp-admin/css/less/modules/actions.less
    new file mode 100644
    index 0000000..4d8dfe1
    - +  
     1/*------------------------------------------------------------------------------
     2  3.0 - Actions
     3------------------------------------------------------------------------------*/
     4
     5#major-publishing-actions {
     6        padding: 10px 10px 8px;
     7        clear: both;
     8        border-top: 1px solid #f5f5f5;
     9        margin-top: -2px;
     10}
     11
     12#delete-action {
     13        line-height: 25px;
     14        vertical-align: middle;
     15        text-align: left;
     16        float: left;
     17}
     18
     19#publishing-action {
     20        text-align: right;
     21        float: right;
     22        line-height: 23px;
     23
     24        .spinner {
     25                float: left;
     26        }
     27}
     28
     29#misc-publishing-actions {
     30        padding: 6px 0 0;
     31}
     32
     33.misc-pub-section {
     34        padding: 6px 10px 8px;
     35        border-width: 1px 0;
     36        border-style: solid;
     37
     38        &:first-child {
     39                border-top-width: 0;
     40        }
     41}
     42
     43.misc-pub-section-last {
     44        border-bottom-width: 0;
     45}
     46
     47#minor-publishing-actions {
     48        padding: 10px 10px 2px 8px;
     49        text-align: right;
     50}
     51
     52#minor-publishing {
     53        border-bottom-width: 1px;
     54        border-bottom-style: solid;
     55        -webkit-box-shadow: 0 1px 0 #fff;
     56        box-shadow: 0 1px 0 #fff;
     57}
     58
     59#save-post {
     60        float: left;
     61}
     62
     63.preview {
     64        float: right;
     65}
     66
     67#sticky-span {
     68        margin-left: 18px;
     69}
     70
     71.side-info {
     72        margin: 0;
     73        padding: 4px;
     74        font-size: 11px;
     75
     76        h5 {
     77                padding-bottom: 7px;
     78                font-size: 14px;
     79                margin: 12px 2px 5px;
     80                border-bottom-width: 1px;
     81                border-bottom-style: solid;
     82        }
     83
     84        ul {
     85                margin: 0;
     86                padding-left: 18px;
     87                list-style: square;
     88        }
     89}
     90
     91.approve,
     92.unapproved .unapprove {
     93        display: none;
     94}
     95
     96.unapproved .approve,
     97.spam .approve,
     98.trash .approve {
     99        display: inline;
     100}
     101
     102td.action-links,
     103th.action-links {
     104        text-align: right;
     105}
     106 No newline at end of file
  • new file wp-admin/css/less/modules/categories.less

    diff --git a/wp-admin/css/less/modules/categories.less b/wp-admin/css/less/modules/categories.less
    new file mode 100644
    index 0000000..6bbfabb
    - +  
     1/*------------------------------------------------------------------------------
     2  12.0 - Categories
     3------------------------------------------------------------------------------*/
     4
     5.category-adder {
     6        margin-left: 120px;
     7        padding: 4px 0;
     8
     9        h4 {
     10                margin: 0 0 8px;
     11        }
     12
     13        #side-sortables & {
     14                margin: 0;
     15        }
     16}
     17
     18#post-body ul.add-menu-item-tabs {
     19        float: left;
     20        width: 120px;
     21        text-align: right;
     22        /* Negative margin for the sake of those without JS: all tabs display */
     23        margin: 0 -120px 0 5px;
     24        padding: 0;
     25
     26        li {
     27                padding: 8px;
     28
     29                &.tabs {
     30                        .rounded-left();
     31                }
     32        }
     33}
     34
     35.wp-tab-panel,
     36.categorydiv div.tabs-panel,
     37.customlinkdiv div.tabs-panel,
     38.posttypediv div.tabs-panel,
     39.taxonomydiv div.tabs-panel {
     40        min-height: 42px;
     41        max-height: 200px;
     42        overflow: auto;
     43        padding: 0 0.9em;
     44        border-style: solid;
     45        border-width: 1px;
     46}
     47
     48div.tabs-panel-active {
     49        display: block;
     50}
     51
     52div.tabs-panel-inactive {
     53        display: none;
     54}
     55
     56#front-page-warning,
     57#front-static-pages ul,
     58ul.export-filters,
     59.inline-editor ul.cat-checklist ul,
     60.categorydiv ul.categorychecklist ul,
     61.customlinkdiv ul.categorychecklist ul,
     62.posttypediv ul.categorychecklist ul,
     63.taxonomydiv ul.categorychecklist ul {
     64        margin-left: 18px;
     65}
     66
     67ul.categorychecklist li {
     68        margin: 0;
     69        padding: 0;
     70        line-height: 19px;
     71        word-wrap: break-word;
     72}
     73
     74.categorydiv .tabs-panel,
     75.customlinkdiv .tabs-panel,
     76.posttypediv .tabs-panel,
     77.taxonomydiv .tabs-panel {
     78        border-width: 3px;
     79        border-style: solid;
     80}
     81
     82.form-wrap {
     83        p,
     84        label {
     85                font-size: 11px;
     86        }
     87
     88        label {
     89                display: block;
     90                padding: 2px;
     91                font-size: 12px;
     92        }
     93
     94        .form-field {
     95                margin: 0 0 10px;
     96                padding: 8px 0;
     97
     98                #parent {
     99                        max-width: 100%;
     100                }       
     101        }
     102}
     103
     104.form-field input,
     105.form-field textarea {
     106        border-style: solid;
     107        border-width: 1px;
     108        width: 95%;
     109}
     110
     111p.description,
     112.form-wrap p {
     113        margin: 2px 0 5px;
     114}
     115
     116p.help,
     117p.description,
     118span.description,
     119.form-wrap p {
     120        font-size: 12px;
     121        font-style: italic;
     122        font-family: sans-serif;
     123}
     124
     125.col-wrap {
     126        h3 {
     127                margin: 12px 0;
     128                font-size: 1.1em;
     129        }
     130
     131        p.submit {
     132                margin-top: -10px;
     133        }
     134}
     135 No newline at end of file
  • new file wp-admin/css/less/modules/comments.less

    diff --git a/wp-admin/css/less/modules/comments.less b/wp-admin/css/less/modules/comments.less
    new file mode 100644
    index 0000000..260d5dc
    - +  
     1/*------------------------------------------------------------------------------
     2  15.0 - Comments Screen
     3------------------------------------------------------------------------------*/
     4
     5.form-table {
     6        border-collapse: collapse;
     7        margin-top: 0.5em;
     8        width: 100%;
     9        margin-bottom: -8px;
     10        clear: both;
     11
     12        td {
     13                margin-bottom: 9px;
     14                padding: 8px 10px;
     15                line-height: 20px;
     16                font-size: 12px;
     17
     18                p {
     19                        margin-top: 4px;
     20                }
     21
     22                .color-palette & {
     23                        border-width: 1px 1px 0;
     24                        border-style: solid solid none;
     25                        height: 10px;
     26                        line-height: 20px;
     27                        width: 10px;
     28                }
     29        }
     30
     31        th {
     32                vertical-align: top;
     33                text-align: left;
     34                padding: 10px;
     35                width: 200px;
     36
     37                &.th-full {
     38                        width: auto;
     39                }
     40        }
     41
     42        div.color-option {
     43                display: block;
     44                clear: both;
     45                margin-top: 12px;
     46        }
     47
     48        input.tog {
     49                margin-top: 2px;
     50                margin-right: 2px;
     51                float: left;
     52        }
     53
     54        table.color-palette {
     55                vertical-align: bottom;
     56                float: left;
     57                margin: -12px 3px 11px;
     58        }
     59}
     60
     61.form-table th,
     62.form-wrap label {
     63        font-weight: normal;
     64        text-shadow: #fff 0 1px 0;
     65}
     66
     67.commentlist {
     68        li {
     69                padding: 1em 1em .2em;
     70                margin: 0;
     71                border-bottom-width: 1px;
     72                border-bottom-style: solid;
     73       
     74                li {
     75                        border-bottom: 0;
     76                        padding: 0;
     77                }
     78        }
     79
     80        p {
     81                padding: 0;
     82                margin: 0 0 .8em;
     83        }
     84
     85        .avatar {
     86                vertical-align: text-top;
     87        }
     88}
     89
     90/* reply to comments */
     91#replyrow {
     92        input {
     93                border-width: 1px;
     94                border-style: solid;
     95        }
     96
     97        td {
     98                padding: 2px;
     99        }
     100
     101        h5 {
     102                margin: .2em 0 0;
     103                padding: 0 5px;
     104                line-height: 1.4em;
     105                font-size: 1em;
     106        }
     107}
     108
     109#replysubmit {
     110        margin: 0;
     111        padding: 0 5px 3px;
     112        text-align: center;
     113
     114        .spinner {
     115                padding: 2px 0 0;
     116                vertical-align: top;
     117                float: right;
     118        }
     119
     120        .button {
     121                margin-right: 5px;
     122        }
     123
     124        .error {
     125                color: red;
     126                line-height: 21px;
     127                text-align: center;
     128        }
     129}
     130
     131#edithead {
     132        .inside {
     133                float: left;
     134                padding: 3px 0 2px 5px;
     135                margin: 0;
     136                text-align: center;
     137
     138                input {
     139                        width: 180px;
     140                }
     141        }
     142
     143        label {
     144                padding: 2px 0;
     145        }
     146}
     147
     148#replycontainer {
     149        padding: 5px;
     150}
     151
     152#replycontent {
     153        height: 120px;
     154        .no-box-shadows();
     155}
     156
     157.comment-php .wp-editor-area {
     158        height: 200px;
     159}
     160
     161.comment-ays {
     162        margin-bottom: 0;
     163        border-style: solid;
     164        border-width: 1px;
     165
     166        th {
     167                border-right-style: solid;
     168                border-right-width: 1px;
     169        }
     170}
     171
     172.trash-undo-inside,
     173.spam-undo-inside {
     174        margin: 1px 8px 1px 0;
     175        line-height: 16px;
     176
     177        .avatar {
     178                height: 20px;
     179                width: 20px;
     180                margin-right: 8px;
     181                vertical-align: middle;
     182        }
     183}
     184
     185.stuffbox .editcomment {
     186        clear: none;
     187}
     188
     189#comment-status-radio {
     190        p {
     191                margin: 3px 0 5px;
     192        }
     193
     194        input {
     195                margin: 2px 3px 5px 0;
     196                vertical-align: middle;
     197        }
     198
     199        label {
     200                padding: 5px 0;
     201        }
     202}
     203 No newline at end of file
  • new file wp-admin/css/less/modules/customize.less

    diff --git a/wp-admin/css/less/modules/customize.less b/wp-admin/css/less/modules/customize.less
    new file mode 100644
    index 0000000..ec31a42
    - +  
     1/*------------------------------------------------------------------------------
     2  24.0 - Customize Loader
     3------------------------------------------------------------------------------*/
     4
     5.hide-if-customize {
     6        .customize-support &,
     7        .customize-support.wp-core-ui &,
     8        .customize-support .wp-core-ui & {
     9                display: none;
     10        }
     11}
     12
     13.hide-if-no-customize {
     14        .no-customize-support &,
     15        .no-customize-support.wp-core-ui &,
     16        .no-customize-support .wp-core-ui &{
     17                display: none;
     18        }
     19}
     20
     21#customize-container {
     22        display: none;
     23        background: #fff;
     24        z-index: 500000;
     25        position: fixed;
     26        overflow: visible;
     27        top: 0;
     28        bottom: 0;
     29        left: 0;
     30        right: 0;
     31        height: 100%;
     32
     33        .customize-active & {
     34                display: block;
     35        }
     36
     37        .customize-loading & {
     38                background: #fff url("../images/wpspin_light.gif") no-repeat fixed center center;
     39                background-size: 16px 16px;
     40        }
     41
     42        .customize-loading & iframe {
     43                opacity: 0;
     44        }
     45
     46        .collapse-sidebar {
     47                bottom: 16px;
     48        }
     49}
     50
     51#customize-container iframe,
     52#theme-installer iframe {
     53        height: 100%;
     54        width: 100%;
     55        z-index: 20;
     56
     57        -webkit-transition: opacity 0.3s;
     58        -moz-transition:    opacity 0.3s;
     59        -ms-transition:     opacity 0.3s;
     60        -o-transition:      opacity 0.3s;
     61        transition:         opacity 0.3s;
     62}
     63
     64#theme-installer {
     65        display: none;
     66
     67        &.single-theme {
     68                display: block;
     69        }
     70}
     71
     72.install-theme-info {
     73
     74        display: none;
     75        padding: 10px 20px 20px;
     76
     77        .single-theme & {
     78                padding-top: 15px;
     79        }
     80
     81        #theme-installer & {
     82                display: block;
     83        }
     84
     85        .theme-install {
     86                float: right;
     87                margin-top: 18px;
     88        }
     89
     90        .theme-name {
     91                font-size: 16px;
     92                line-height: 24px;
     93                margin-bottom: 0;
     94        }
     95
     96        .theme-screenshot {
     97                margin-top: 15px;
     98                width: 258px;
     99                border: 1px solid #ccc;
     100        }
     101
     102        .theme-details {
     103                overflow: hidden;
     104        }
     105}
     106
     107.theme-details {
     108        .theme-version {
     109                margin: 15px 0;
     110                float: left;
     111        }
     112
     113        .star-holder {
     114                margin: 14px 0;
     115                float: right;
     116        }
     117
     118        .theme-description {
     119                float: left;
     120                color: #777;
     121                line-height: 20px;
     122        }
     123}
     124 No newline at end of file
  • new file wp-admin/css/less/modules/dashboard.less

    diff --git a/wp-admin/css/less/modules/dashboard.less b/wp-admin/css/less/modules/dashboard.less
    new file mode 100644
    index 0000000..054f1ef
    - +  
     1/*------------------------------------------------------------------------------
     2  9.0 - Dashboard
     3------------------------------------------------------------------------------*/
     4
     5#dashboard-widgets-wrap {
     6        margin: 0 -8px;
     7}
     8
     9#wpbody-content .metabox-holder {
     10        padding-top: 10px;
     11}
     12
     13#dashboard-widgets .meta-box-sortables {
     14        margin: 0 8px;
     15}
     16
     17#dashboard_recent_comments div.undo {
     18        border-top-style: solid;
     19        border-top-width: 1px;
     20        margin: 0 -10px;
     21        padding: 3px 8px;
     22        font-size: 11px;
     23}
     24
     25/* Welcome Panel */
     26.welcome-panel {
     27        position: relative;
     28        overflow: auto;
     29        margin: 20px 0;
     30        padding: 23px 10px 12px;
     31        border-width: 1px;
     32        border-style: solid;
     33        .rounded(3px);
     34        font-size: 13px;
     35        line-height: 2.1em;
     36
     37        h3 {
     38                margin: 0;
     39                .sans-serif-font();
     40                .normal-font(21px, 1.2);
     41        }
     42        h4 {
     43                margin: 1.33em 0 0;
     44                font-size: 13px;
     45        }
     46
     47        .about-description {
     48                font-size: 16px;
     49                margin: 0;
     50        }
     51
     52        .welcome-panel-close {
     53                position: absolute;
     54                top: 5px;
     55                right: 10px;
     56                padding: 8px 3px;
     57                font-size: 13px;
     58                text-decoration: none;
     59                line-height: 1;
     60       
     61                &:before {
     62                        content: ' ';
     63                        position: absolute;
     64                        left: -12px;
     65                        width: 10px;
     66                        height: 100%;
     67                        background: url('../images/xit.gif') 0 17% no-repeat;
     68                }
     69       
     70                &:hover:before {
     71                        background-position: 100% 17%;
     72                }
     73        }
     74
     75        .wp-core-ui & .button.button-hero {
     76                margin: 15px 0 3px;
     77        }
     78
     79        .welcome-panel-column-container {
     80                clear: both;
     81                overflow: hidden;
     82                position: relative;
     83        }
     84
     85        .welcome-panel-column {
     86                width: 32%;
     87                min-width: 200px;
     88                float: left;
     89       
     90                &:first-child {
     91                        width: 36%;
     92                }
     93
     94                ul {
     95                        margin: 0.8em 1em 1em 0;
     96                }
     97
     98                li {
     99                        line-height: 16px;
     100                        list-style-type: none;
     101                }
     102        }
     103
     104        .ie8 & .welcome-panel-column {
     105                min-width: 230px;
     106        }
     107
     108        .welcome-icon {
     109                display: block;
     110                padding: 2px 0 8px 32px;
     111                background-image: url('../images/welcome-icons.png');
     112                background-repeat: no-repeat;
     113                background-size: 16px;
     114        }
     115
     116        .welcome-add-page {
     117                background-position: 0 2px;
     118        }
     119
     120        .welcome-edit-page {
     121                background-position: 0 -90px;
     122        }
     123
     124        .welcome-learn-more {
     125                background-position: 0 -136px;
     126        }
     127
     128        .welcome-comments {
     129                background-position: 0 -182px;
     130        }
     131
     132        .welcome-view-site {
     133                background-position: 0 -274px;
     134        }
     135
     136        .welcome-widgets-menus {
     137                background-position: 1px -229px;
     138                line-height: 14px;
     139        }
     140
     141        .welcome-write-blog {
     142                background-position: 0 -44px;
     143        }
     144}
     145
     146.welcome-panel-content {
     147        margin-left: 13px;
     148        max-width: 1500px;
     149
     150        p {
     151                margin-top: 7px;
     152        }
     153}
     154
     155@media screen and (max-width: 870px) {
     156        .welcome-panel {
     157                .welcome-panel-column,
     158                .welcome-panel-column:first-child {
     159                        display: block;
     160                        float: none;
     161                        width: 100%;
     162                }
     163
     164                .welcome-panel-column li {
     165                        display: inline-block;
     166                        margin-right: 13px;
     167                }
     168
     169                .welcome-panel-column ul {
     170                        margin: 0.4em 0 0;
     171                }
     172
     173                .welcome-icon {
     174                        padding-left: 25px;
     175                }
     176        }
     177}
     178
     179/* dashboard */
     180.edit-box {
     181        display: none;
     182
     183        h3:hover & {
     184                display: inline;
     185        }
     186}
     187
     188#dashboard-widgets {
     189        form .input-text-wrap input {
     190                width: 100%;
     191        }
     192
     193        form .textarea-wrap textarea {
     194                width: 100%;
     195        }
     196
     197        .postbox form .submit {
     198                float: none;
     199                margin: .5em 0 0;
     200                padding: 0;
     201                border: none;
     202        }
     203
     204        #dashboard-widgets-wrap & .postbox form .submit #publish {
     205                min-width: 0;
     206        }
     207
     208        a {
     209                text-decoration: none;
     210        }
     211
     212        h3 a {
     213                text-decoration: underline;
     214        }
     215
     216        h3 .postbox-title-action {
     217                position: absolute;
     218                right: 10px;
     219                padding: 0;
     220                top: 5px;
     221        }
     222
     223        .js & h3 .postbox-title-action {
     224                right: 30px;
     225        }
     226
     227        h4 {
     228                .normal-font(13px);
     229                margin: 0 0 .2em;
     230                padding: 0;
     231        }
     232}
     233
     234/* Right Now */
     235#dashboard_right_now {
     236        p.sub,
     237        .table, .versions {
     238                margin: -12px;
     239        }
     240
     241        .inside {
     242                font-size: 12px;
     243                padding-top: 20px;
     244        }
     245
     246        p.sub {
     247                padding: 5px 0 15px;
     248                color: #8f8f8f;
     249                font-size: 14px;
     250                position: absolute;
     251                top: -17px;
     252                left: 15px;
     253        }
     254
     255        .table {
     256                margin: 0;
     257                padding: 0;
     258                position: relative;
     259        }
     260
     261        .table_content {
     262                float: left;
     263                border-top-width: 1px;
     264                border-top-style: solid;
     265                width: 45%;
     266        }
     267
     268        .table_discussion {
     269                float: right;
     270                border-top-width: 1px;
     271                border-top-style: solid;
     272                width: 45%;
     273        }
     274
     275        table td {
     276                padding: 3px 0;
     277                white-space: nowrap;
     278        }
     279
     280        table tr.first td {
     281                border-top: none;
     282        }
     283
     284        td.b {
     285                padding-right: 6px;
     286                text-align: right;
     287                font-size: 14px;
     288                width: 1%;
     289        }
     290
     291        td.b a {
     292                font-size: 18px;
     293        }
     294
     295        td.b a:hover {
     296                color: #d54e21;
     297        }
     298
     299        .t {
     300                font-size: 12px;
     301                padding-right: 12px;
     302                padding-top: 6px;
     303                color: #777;
     304        }
     305
     306        .t a {
     307                white-space: nowrap;
     308        }
     309
     310        .spam {
     311                color: red;
     312        }
     313
     314        .waiting {
     315                color: #e66f00;
     316        }
     317
     318        .approved {
     319                color: green;
     320        }
     321
     322        .versions {
     323                padding: 6px 10px 12px;
     324                clear: both;
     325        }
     326
     327        a.button {
     328                float: right;
     329                clear: right;
     330                position: relative;
     331                top: -5px;
     332        }
     333}
     334
     335/* Recent Comments */
     336#dashboard_recent_comments {
     337        h3 {
     338                margin-bottom: 0;
     339        }
     340
     341        .inside {
     342                margin-top: 0;
     343        }
     344
     345        .comment-meta .approve {
     346                font-style: italic;
     347                font-family: sans-serif;
     348                font-size: 10px;
     349        }
     350
     351        .subsubsub {
     352                float: none;
     353                white-space: normal;
     354        }
     355}
     356
     357#the-comment-list {
     358        position: relative;
     359
     360        p.comment-author img {
     361                float: left;
     362                margin-right: 8px;
     363        }
     364
     365        p.comment-author strong a {
     366                border: none;
     367        }
     368
     369        td {
     370                vertical-align: top;
     371       
     372                &.comment {
     373                        word-wrap: break-word;
     374
     375                        p.comment-author {
     376                                margin-top: 0;
     377                                margin-left: 0;
     378                        }
     379                }
     380        }
     381
     382        .comment-item {
     383                padding: 1em 10px;
     384                border-top: 1px solid;
     385
     386                .avatar {
     387                        float: left;
     388                        margin: 0 10px 5px 0;
     389                }
     390
     391                h4 {
     392                        line-height: 1.7em;
     393                        margin-top: -0.4em;
     394                        color: #777;
     395
     396                        cite {
     397                                font-style: normal;
     398                                font-weight: normal;
     399                        }               
     400                }
     401
     402                &:first-child {
     403                        border-top: none;
     404                }
     405
     406                blockquote,
     407                blockquote p {
     408                        margin: 0;
     409                        padding: 0;
     410                        display: inline;
     411                }
     412
     413                p.row-actions {
     414                        margin: 3px 0 0;
     415                        padding: 0;
     416                        font-size: 12px;
     417                }
     418        }
     419
     420        .pingback {
     421                padding-left: 9px !important;
     422        }
     423
     424        .comment-item,
     425        #replyrow {
     426                margin: 0 -10px;
     427        }
     428
     429        #dashboard_recent_comments & .trackback blockquote,
     430        #dashboard_recent_comments & .pingback blockquote {
     431                display: block;
     432        }
     433}
     434
     435/* QuickPress */
     436#title-wrap label,
     437#tags-input-wrap label {
     438        cursor: text;
     439}
     440
     441#title-wrap {
     442        #title {
     443                padding: 2px 6px;
     444                font-size: 1.3em;
     445                line-height: 100%;
     446                outline: none;
     447        }
     448
     449        #title-prompt-text {
     450                font-size: 1.3em;
     451                padding: 5px 8px;
     452        }
     453}
     454
     455#tags-input-wrap {
     456        #tags-input {
     457                outline: none;
     458        }
     459
     460        #tags-input-prompt-text {
     461                font-size: 1em;
     462                padding: 4px 8px;
     463        }
     464}
     465
     466#dashboard_quick_press {
     467        .no-js & {
     468                display: none;
     469        }
     470
     471        .easy-blogging {
     472                padding: 0 8px;
     473                text-align: left;
     474        }
     475
     476        .input-text-wrap {
     477                position: relative;
     478        }
     479
     480        .prompt {
     481                color: #bbb;
     482                position: absolute;
     483        }
     484
     485        div.updated  {
     486                padding: 0 5px;
     487        }
     488
     489        .input-text-wrap,
     490        .textarea-wrap {
     491                margin: 0 0 1em 0;
     492        }
     493
     494        .wp-media-buttons {
     495                margin: 0 0 .2em 1px;
     496                padding: 0;
     497       
     498                a {
     499                        color: #777;
     500                }
     501        }
     502
     503        #dashboard-widgets & form p.submit {
     504                input {
     505                        float: left;
     506                }
     507
     508                #save-post {
     509                        margin: 0 0.7em 0 1px;
     510                }
     511
     512                #publish {
     513                        float: right;
     514                }
     515
     516                .spinner {
     517                        vertical-align: middle;
     518                        margin: 4px 6px 0 0;
     519                }
     520        }
     521}
     522
     523/* Recent Drafts */
     524#dashboard_recent_drafts {
     525        ul,
     526        p {
     527                margin: 0;
     528                padding: 0;
     529                word-wrap: break-word;
     530        }
     531
     532        ul {
     533                list-style: none;
     534                li {
     535                        margin-bottom: 1em;
     536                }
     537        }
     538
     539        h4 {
     540                line-height: 1.7em;
     541                word-wrap: break-word;
     542       
     543                abbr {
     544                        font-weight: normal;
     545                        font-family: sans-serif;
     546                        font-size: 12px;
     547                        color: #999;
     548                        margin-left: 3px;
     549                }
     550        }
     551}
     552
     553/* Feeds */
     554.rss-widget {
     555        ul {
     556                margin: 0;
     557                padding: 0;
     558                list-style: none;
     559       
     560                li {
     561                        line-height: 1.5em;
     562                        margin-bottom: 12px;
     563                }
     564        }
     565
     566        span.rss-date {
     567                color: #999;
     568                font-size: 12px;
     569                margin-left: 3px;
     570        }
     571
     572        cite {
     573                display: block;
     574                text-align: right;
     575                margin: 0 0 1em;
     576                padding: 0;
     577
     578                &:before {
     579                        content: '\2014';
     580                }
     581        }
     582}
     583
     584a.rsswidget {
     585        font-size: 13px;
     586        line-height: 1.7em;
     587}
     588
     589/* Plugins */
     590#dashboard_plugins {
     591        h4 {
     592                line-height: 1.7em;
     593        }
     594
     595        h5 {
     596                .normal-font(13px, 1.4em);
     597                margin: 0;
     598                display: inline;
     599       
     600                a {
     601                        line-height: 1.4em;
     602                }
     603        }
     604
     605        .inside span {
     606                font-size: 12px;
     607                padding-left: 5px;
     608        }
     609
     610        p {
     611                margin: 0.3em 0 1.4em;
     612                line-height: 1.4em;
     613        }
     614}
     615
     616.dashboard-comment-wrap {
     617        overflow: hidden;
     618        word-wrap: break-word;
     619}
     620
     621/* Browser Nag */
     622#dashboard_browser_nag {
     623        a {
     624                color: white;
     625                text-decoration: underline;
     626                &.update-browser-link {
     627                        .bold-font(1.2em);
     628                }
     629
     630                &.browse-happy-link,
     631                &.update-browser-link {
     632                        text-shadow: #d29a04 0 1px 0;
     633                }
     634        }
     635
     636        p.browser-update-nag.has-browser-icon {
     637                padding-right: 125px;
     638        }
     639
     640        .browser-icon {
     641                margin-top: -35px;
     642        }
     643
     644        &.postbox {
     645                background-color: #e29808;
     646                background-image: none;
     647                border-color: #edc048;
     648                color: white;
     649                .no-box-shadows();
     650       
     651                h3 {
     652                        border-bottom-color: #f6e2ac;
     653                        text-shadow: none;
     654                        background: transparent none;
     655                        color: white;
     656                        .no-box-shadows();
     657                }
     658
     659                &.browser-insecure {
     660                        background-color: #ac1b1b;
     661                        border-color: #ac1b1b;
     662               
     663                        h3 {
     664                                border-bottom-color: #cd5a5a;
     665                                color: white;
     666                        }
     667                }
     668        }
     669
     670        &.browser-insecure a.browse-happy-link,
     671        &.browser-insecure a.update-browser-link {
     672                text-shadow: #871b15 0 1px 0;
     673        }
     674}
     675 No newline at end of file
  • new file wp-admin/css/less/modules/edit-post.less

    diff --git a/wp-admin/css/less/modules/edit-post.less b/wp-admin/css/less/modules/edit-post.less
    new file mode 100644
    index 0000000..688d8c7
    - +  
     1/*------------------------------------------------------------------------------
     2  11.0 - Write/Edit Post Screen
     3------------------------------------------------------------------------------*/
     4
     5#show-comments {
     6        overflow: hidden;
     7}
     8
     9#save-action .spinner,
     10#show-comments a,
     11#show-comments .spinner {
     12        float: left;
     13}
     14
     15#lost-connection-notice .spinner {
     16        display: block;
     17        float: left;
     18        margin: 0 5px 0 0;
     19}
     20
     21.rtl #lost-connection-notice .spinner {
     22        float: right;
     23        margin: 0 0 0 5px;
     24}
     25
     26#titlediv {
     27        position: relative;
     28        margin-bottom: 5px;
     29
     30        label {
     31                cursor: text;
     32        }
     33
     34        div.inside {
     35                margin: 0;
     36        }
     37
     38        #title {
     39                padding: 3px 8px;
     40                font-size: 1.7em;
     41                line-height: 100%;
     42                height: 1.7em;
     43                width: 100%;
     44                outline: none;
     45                margin: 1px 0;
     46        }
     47}
     48
     49#poststuff #titlewrap {
     50        border: 0;
     51        padding: 0;
     52}
     53
     54#titlediv #title-prompt-text,
     55#wp-fullscreen-title-prompt-text {
     56        color: #bbb;
     57        position: absolute;
     58        font-size: 1.7em;
     59        padding: 11px 10px;
     60}
     61
     62#wp-fullscreen-save .fs-saved {
     63        color: #999;
     64        float: right;
     65        margin-top: 4px;
     66}
     67
     68#wp-fullscreen-title-prompt-text {
     69        padding: 11px;
     70}
     71
     72#poststuff .inside-submitbox,
     73#side-sortables .inside-submitbox {
     74        margin: 0 3px;
     75        font-size: 11px;
     76}
     77
     78input#link_description,
     79input#link_url {
     80        width: 98%;
     81}
     82
     83#pending {
     84        background: 0 none;
     85        border: 0 none;
     86        padding: 0;
     87        font-size: 11px;
     88        margin-top: -1px;
     89}
     90
     91#edit-slug-box {
     92        line-height: 24px;
     93        min-height: 25px; /* Yes, line-height + 1 */
     94        margin-top: 5px;
     95        padding-right: 6px;
     96
     97        .cancel {
     98                margin-right: 10px;
     99                font-size: 11px;
     100        }
     101}
     102
     103#editable-post-name-full {
     104        display: none;
     105}
     106
     107#editable-post-name input {
     108        width: 16em;
     109}
     110
     111.postarea h3 label {
     112        float: left;
     113}
     114
     115.submitbox {
     116        .submit {
     117                text-align: left;
     118                padding: 12px 10px 10px;
     119                font-size: 11px;
     120        }
     121
     122        .submitdelete {
     123                text-decoration: none;
     124                padding: 1px 2px;
     125        }
     126
     127        .submitdelete,
     128        .submit a:hover {
     129                border-bottom-width: 1px;
     130                border-bottom-style: solid;
     131        }
     132
     133        .submit input {
     134                margin-bottom: 8px;
     135                margin-right: 4px;
     136                padding: 6px;
     137        }
     138}
     139
     140.inside-submitbox #post_status {
     141        margin: 2px 0 2px -2px;
     142}
     143
     144#post-status-select {
     145        line-height: 2.5em;
     146        margin-top: 3px;
     147}
     148
     149/* Post Screen */
     150#post-body #normal-sortables {
     151        min-height: 50px;
     152}
     153
     154.postbox {
     155        position: relative;
     156        min-width: 255px;
     157}
     158
     159#trackback_url {
     160        width: 99%;
     161}
     162
     163#normal-sortables .postbox .submit {
     164        background: transparent none;
     165        border: 0 none;
     166        float: right;
     167        padding: 0 12px;
     168        margin:0;
     169}
     170
     171.category-add input[type="text"],
     172.category-add select {
     173        width: 100%;
     174        max-width: 260px;
     175}
     176
     177.press-this #side-sortables .category-tabs li,
     178ul.category-tabs li,
     179#side-sortables .add-menu-item-tabs li,
     180.wp-tab-bar li {
     181        display: inline;
     182        line-height: 1.35em;
     183}
     184
     185.no-js .category-tabs li.hide-if-no-js {
     186        display: none;
     187}
     188
     189.category-tabs a,
     190#side-sortables .add-menu-item-tabs a,
     191.wp-tab-bar a {
     192        text-decoration: none;
     193}
     194
     195.category-tabs {
     196        margin: 8px 0 3px;
     197}
     198
     199#category-adder h4 {
     200        margin: 10px 0;
     201}
     202
     203#side-sortables .add-menu-item-tabs,
     204.wp-tab-bar {
     205        margin-bottom: 3px;
     206}
     207
     208#normal-sortables .postbox #replyrow .submit {
     209        float: none;
     210        margin: 0;
     211        padding: 0 7px 5px;
     212}
     213
     214#side-sortables .submitbox .submit input,
     215#side-sortables .submitbox .submit .preview,
     216#side-sortables .submitbox .submit a.preview:hover {
     217        border: 0 none;
     218}
     219
     220#side-sortables .inside-submitbox .insidebox,
     221.stuffbox .insidebox {
     222        margin: 11px 0;
     223}
     224
     225ul.category-tabs,
     226ul.add-menu-item-tabs,
     227ul.wp-tab-bar {
     228        margin-top: 12px;
     229}
     230
     231ul.category-tabs li {
     232        border-style: solid;
     233        border-width: 1px;
     234        position: relative;
     235}
     236
     237ul.add-menu-item-tabs li.tabs,
     238.wp-tab-active {
     239        border-style: solid solid none;
     240        border-width: 1px 1px 0;
     241}
     242
     243#post-body .add-menu-item-tabs li.tabs {
     244        border-style: solid none solid solid;
     245        border-width: 1px 0 1px 1px;
     246        margin-right: -1px;
     247}
     248
     249ul.category-tabs li,
     250ul.add-menu-item-tabs li,
     251ul.wp-tab-bar li {
     252        padding: 3px 5px 5px;
     253        .rounded-top(3px);
     254}
     255
     256/* positioning etc. */
     257form#tags-filter {
     258        position: relative;
     259}
     260
     261/* Edit posts */
     262td.post-title strong,
     263td.plugin-title strong {
     264        display: block;
     265        margin-bottom: .2em;
     266}
     267
     268td.post-title p,
     269td.plugin-title p {
     270        margin: 6px 0;
     271}
     272
     273/* Global classes */
     274.wp-hidden-children .wp-hidden-child,
     275.ui-tabs-hide {
     276        display: none;
     277}
     278
     279.commentlist .avatar {
     280        vertical-align: text-top;
     281}
     282
     283#post-body .tagsdiv #newtag {
     284        margin-right: 5px;
     285        width: 16em;
     286}
     287
     288#side-sortables input#post_password {
     289        width: 94%;
     290}
     291
     292#side-sortables .tagsdiv #newtag {
     293        width: 68%;
     294}
     295
     296#post-status-info {
     297        border-width: 0 1px 1px;
     298        border-style: none solid solid;
     299        width: 100%;
     300        .rounded-bottom(3px);
     301}
     302
     303#post-status-info td {
     304        font-size: 12px;
     305}
     306
     307.autosave-info {
     308        padding: 2px 15px;
     309        text-align: right;
     310}
     311
     312#editorcontent #post-status-info {
     313        border: none;
     314}
     315
     316#post-body .wp_themeSkin .mceStatusbar a.mceResize {
     317        display: block;
     318        background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
     319        width: 12px;
     320        cursor: se-resize;
     321        margin: 0 1px;
     322        position: relative;
     323        top: -2px;
     324}
     325
     326#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
     327        top: 20px;
     328}
     329
     330#content-resize-handle {
     331        background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
     332        width: 12px;
     333        cursor: se-resize;
     334        position: absolute;
     335        right: 2px;
     336        height: 19px;
     337
     338        .press-this & {
     339                bottom: 2px;
     340        }
     341
     342        .tmce-active & {
     343                display: none;
     344        }
     345}
     346
     347#wp-word-count {
     348        display: block;
     349        padding: 2px 10px;
     350}
     351
     352#timestampdiv select {
     353        height: 20px;
     354        line-height: 14px;
     355        padding: 0;
     356        vertical-align: top;
     357}
     358
     359#aa, #jj, #hh, #mn {
     360        padding: 1px;
     361        font-size: 12px;
     362}
     363
     364#jj, #hh, #mn {
     365        width: 2em;
     366}
     367
     368#aa {
     369        width: 3.4em;
     370}
     371
     372.curtime #timestamp {
     373        background-repeat: no-repeat;
     374        background-position: left center;
     375        padding: 2px 0 1px 20px;
     376}
     377
     378#timestampdiv {
     379        padding-top: 5px;
     380        line-height: 23px;
     381
     382        p {
     383                margin: 8px 0 6px;
     384        }
     385
     386        input {
     387                border-width: 1px;
     388                border-style: solid;
     389        }
     390}
     391
     392.notification-dialog {
     393        position: fixed;
     394        top: 30%;
     395        left: 50%;
     396        width: 450px;
     397        margin-left: -225px;
     398        background: #fff;
     399        line-height: 1.5;
     400        z-index: 1000005;
     401}
     402
     403.notification-dialog-background {
     404        position: fixed;
     405        top: 0;
     406        left: 0;
     407        right: 0;
     408        bottom: 0;
     409        background: #000;
     410        opacity: 0.5;
     411        filter: alpha(opacity=50);
     412        z-index: 1000000;
     413}
     414
     415#post-lock-dialog {
     416        .post-locked-message,
     417        .post-taken-over {
     418                margin: 25px;
     419        }
     420
     421        .post-locked-message a.button {
     422                margin-right: 10px;
     423        }
     424
     425        .post-locked-avatar {
     426                float: left;
     427                margin: 0 20px 20px 0;
     428        }
     429
     430        .wp-tab-first {
     431                outline: 0;
     432        }
     433
     434        .locked-saving img {
     435                float: left;
     436                margin-right: 3px;
     437        }
     438
     439        &.saving .locked-saving,
     440        &.saved .locked-saved {
     441                display: inline;
     442        }
     443}
     444
     445/*------------------------------------------------------------------------------
     446  11.1 - Custom Fields
     447------------------------------------------------------------------------------*/
     448
     449#postcustomstuff {
     450        thead th {
     451                padding: 5px 8px 8px;
     452        }
     453
     454        #postcustom & .submit {
     455                border: 0 none;
     456                float: none;
     457                padding: 0 8px 8px;
     458        }
     459
     460        #side-sortables #postcustom & {
     461                .submit {
     462                        margin: 0;
     463                        padding: 0;
     464                }
     465
     466                #the-list textarea {
     467                        height: 85px;
     468                }
     469
     470                td.left input,
     471                td.left select {
     472                        margin: 3px 3px 0;
     473                }
     474        }
     475
     476        #side-sortables & #newmetaleft a {
     477                margin: 3px 3px 0;
     478        }
     479
     480        table {
     481                margin: 0;
     482                width: 100%;
     483                border-width: 1px;
     484                border-style: solid;
     485                border-spacing: 0;
     486        }
     487
     488        tr {
     489                vertical-align: top;
     490        }
     491
     492        table input,
     493        table select,
     494        table textarea {
     495                width: 96%;
     496                margin: 8px;
     497        }
     498
     499        #side-sortables & table input,
     500        #side-sortables & table select,
     501        #side-sortables & table textarea {
     502                margin: 3px;
     503        }
     504
     505        th.left,
     506        td.left {
     507                width: 38%;
     508        }
     509
     510        .submit input {
     511                margin: 0;
     512                width: auto;
     513        }
     514
     515        #newmetaleft a {
     516                display: inline-block;
     517                margin: 0 8px 8px;
     518                text-decoration: none;
     519        }
     520
     521        .no-js & #enternew {
     522                display: none;
     523        }
     524}
     525
     526#post-body-content .compat-attachment-fields {
     527        margin-bottom: 20px;
     528}
     529
     530.compat-attachment-fields th {
     531        padding-top: 5px;
     532        padding-right: 10px;
     533}
     534
     535/*------------------------------------------------------------------------------
     536  11.2 - Post Revisions
     537------------------------------------------------------------------------------*/
     538.revisions-control-frame,
     539.revisions-diff-frame {
     540        position: relative;
     541}
     542
     543.revisions-controls {
     544        padding-top: 40px;
     545        height: 100px;
     546        z-index: 1;
     547
     548        input[type="checkbox"] {
     549                position: relative;
     550                top: -1px;
     551                vertical-align: text-bottom;
     552        }
     553
     554        .revisions.pinned & {
     555                position: fixed;
     556                top: 0;
     557                padding-bottom: 10px;
     558        }
     559
     560        .author-card {
     561                .date {
     562                        color: #777;
     563                }
     564
     565                .avatar,
     566                .author-info {
     567                        float: left;
     568                        margin-left: 6px;
     569                        margin-right: 6px;
     570                }
     571
     572                &.autosave {
     573                        color: #d54e21;
     574                }
     575
     576                .author-name {
     577                        font-weight: bold;
     578                }
     579
     580                .byline {
     581                        display: block;
     582                        font-size: 12px;
     583                }
     584
     585                .avatar {
     586                        vertical-align: middle;
     587                }
     588        }
     589
     590        .wp-slider {
     591                max-width: 70%;
     592                margin: 0 auto;
     593                top: -3px;
     594        }
     595
     596}
     597
     598.revisions-tickmarks {
     599        position: relative;
     600        margin: 0 auto;
     601        height: 0.8em;
     602        top: 7px;
     603        max-width: 70%;
     604        .border-box();
     605
     606        & > div {
     607                position: absolute;
     608                height: 100%;
     609                border-style: solid;
     610                border-width: 0 1px 0 0;
     611                .border-box();
     612
     613                &:first-child {
     614                        border-width: 0;
     615                }
     616        }
     617}
     618
     619.comparing-two-revisions .revisions-controls {
     620        height: 140px;
     621}
     622
     623.revisions .diff-error {
     624        position: absolute;
     625        text-align: center;
     626        margin: 0 auto;
     627        width: 100%;
     628        display: none;
     629}
     630
     631.revisions.diff-error .diff-error {
     632        display: block;
     633}
     634
     635.revisions {
     636
     637        .loading-indicator {
     638                position: fixed;
     639                vertical-align: middle;
     640                opacity: 0;
     641                width: 100%;
     642                top: 50%;
     643                margin-left: -90px;
     644                -webkit-transition: opacity 0.5s;
     645                -moz-transition:    opacity 0.5s;
     646                -ms-transition:     opacity 0.5s;
     647                -o-transition:      opacity 0.5s;
     648                transition:         opacity 0.5s;
     649                filter: alpha(opacity=0); /* ie8 and earlier */
     650        }
     651
     652        body.folded & .loading-indicator {
     653                margin-left: -32px;
     654        }
     655
     656        .loading-indicator span.spinner {
     657                display: block;
     658                margin: 0 auto;
     659                float: none;
     660        }
     661
     662        &.loading .loading-indicator {
     663                opacity: 1;
     664                filter: alpha(opacity=100); /* ie8 and earlier */
     665        }
     666
     667        .diff {
     668                -webkit-transition: opacity 0.5s;
     669                -moz-transition:    opacity 0.5s;
     670                -ms-transition:     opacity 0.5s;
     671                -o-transition:      opacity 0.5s;
     672                transition:         opacity 0.5s;
     673        }
     674
     675        &.loading .diff {
     676                opacity: 0.5;
     677                filter: alpha(opacity=50); /* ie8 and earlier */
     678        }
     679
     680        &.diff-error .diff {
     681                visibility: hidden;
     682        }
     683}
     684
     685.revisions-meta {
     686        margin-top: 15px;
     687}
     688
     689.revision-toggle-compare-mode {
     690        position: absolute;
     691        top: 0;
     692        right: 0;
     693}
     694
     695.comparing-two-revisions .revisions-previous,
     696.comparing-two-revisions .revisions-next,
     697.revisions-meta .diff-meta-to strong {
     698        display: none;
     699}
     700
     701.comparing-two-revisions .diff-meta-to strong {
     702        display: block;
     703}
     704
     705.revisions-previous,
     706.revisions-next {
     707        position: relative;
     708        z-index: 1;
     709}
     710
     711.revisions-previous {
     712        float: left;
     713}
     714
     715.revisions-next {
     716        float: right;
     717}
     718
     719/* Revision meta box */
     720.post-revisions li img,
     721#revisions-meta-restored img {
     722        vertical-align: middle;
     723}
     724
     725table.diff {
     726        table-layout: fixed;
     727        width: 100%;
     728        white-space: pre-wrap;
     729        word-wrap: break-word;
     730
     731        col.content {
     732                width: auto;
     733       
     734                &.diffsplit {
     735                        width: 48%;
     736                }
     737
     738                &.middle {
     739                        width: auto;
     740                }
     741        }
     742
     743        col.ltype {
     744                width: 30px;
     745        }
     746
     747        tr {
     748                background-color: transparent;
     749        }
     750
     751        td,
     752        th {
     753                padding: .5em;
     754                font-family: Consolas, Monaco, monospace;
     755        }
     756
     757        .diff-deletedline del,
     758        .diff-addedline ins {
     759                text-decoration: none;
     760        }
     761}
     762
     763.diff-meta {
     764        .rounded(3px);
     765        padding: 5px;
     766        clear: both;
     767        min-height: 32px;
     768
     769        input.restore-revision {
     770                float: right;
     771                margin-left: 6px;
     772                margin-right: 6px;
     773                margin-top: 4px;
     774        }
     775}
     776
     777.diff-title strong {
     778        line-height: 32px;
     779        min-width: 60px;
     780        text-align: right;
     781        float: left;
     782        margin-right: 5px;
     783}
     784
     785.diff-meta-from {
     786        display: none;
     787
     788        .comparing-two-revisions & {
     789                display: block;
     790        }
     791}
     792
     793.revisions-tooltip {
     794        position: absolute;
     795        bottom: 105px;
     796        margin-right: 0;
     797        margin-left: -69px;
     798        z-index: 0;
     799        max-width: 350px;
     800        min-width: 130px;
     801        padding: 8px 4px;
     802        display: none;
     803        opacity: 0;
     804
     805        &.flipped {
     806                margin-left: 0;
     807                margin-right: -70px;
     808
     809                .revisions-tooltip-arrow {
     810                        margin-left: 0;
     811                        margin-right: 35px;
     812                        left: auto;
     813                        right: 0;
     814                }
     815
     816                .ie8 & .revisions-tooltip-arrow > span {
     817                        right: 25px;
     818                }
     819        }
     820
     821        .revisions.pinned & {
     822                display: none !important;
     823        }
     824
     825        .comparing-two-revisions & {
     826                bottom: 145px;
     827        }
     828}
     829
     830.revisions-tooltip-arrow {
     831        width: 70px;
     832        height: 15px;
     833        overflow: hidden;
     834        position: absolute;
     835        left: 0;
     836        margin-left: 35px;
     837        bottom: -15px;
     838
     839        & > span {
     840                content: "";
     841                position: absolute;
     842                left: 20px;
     843                top: -20px;
     844                width: 25px;
     845                height: 25px;
     846                -webkit-transform: rotate(45deg);
     847                -moz-transform: rotate(45deg);
     848                -ms-transform: rotate(45deg);
     849                -o-transform: rotate(45deg);
     850                tranform: rotate(45deg);
     851
     852                .revisions-tooltip.flipped & {
     853                        left: auto;
     854                        right: 20px;
     855                }
     856        }
     857
     858        .ie8 & > span {
     859                left: 15px;
     860                top: -25px;
     861                -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
     862        }
     863}
     864
     865.revisions-tooltip,
     866.revisions-tooltip-arrow > span {
     867        border-width: 1px;
     868        border-style: solid;
     869}
     870
     871div.revisions-controls > .wp-slider > .ui-slider-handle {
     872        margin-left: -10px;
     873}
     874
     875 /* jQuery UI Slider */
     876.wp-slider {
     877        &.ui-slider {
     878                position: relative;
     879                border-width: 1px;
     880                border-style: solid;
     881                .rounded(3px);
     882                text-align: left;
     883                cursor: pointer;
     884        }
     885
     886        .ui-slider-handle {
     887                position: absolute;
     888                z-index: 2;
     889                margin-top: -3px;
     890                width: 19px;
     891                height: 19px;
     892                border-width: 1px;
     893                border-style: solid;
     894                .rounded(50%);
     895
     896                &:before {
     897                        content: "";
     898                        position: absolute;
     899                        top: 6px;
     900                        left: 3px;
     901                        height: 8px;
     902                        width: 13px;
     903                        background: url(../images/arrows-pr.png) no-repeat -2px -47px;
     904                }
     905
     906                &.from-handle:before,
     907                &.to-handle:before {
     908                        height: 8px;
     909                        width: 7px;
     910                }
     911
     912                &.from-handle:before {
     913                        background-position: -5px -84px;
     914                        left: 7px;
     915                }
     916
     917                &.to-handle:before {
     918                        background-position: -4px -65px;
     919                        left: 5px;
     920                }
     921        }
     922
     923        .ui-slider-range {
     924                position: absolute;
     925                font-size: .7em;
     926                display: block;
     927                border: 0;
     928                background-color: transparent;
     929                background-image: none;
     930        }
     931
     932        &.ui-slider-horizontal {
     933                height: .8em;
     934
     935                .ui-slider-handle {
     936                        top: -.25em;
     937                        margin-left: -.6em;
     938                }
     939
     940                .ui-slider-range {
     941                        top: 0;
     942                        height: 100%;
     943                }
     944
     945                .ui-slider-range-min {
     946                        left: 0;
     947                }
     948
     949                .ui-slider-range-max {
     950                        right: 0;
     951                }       
     952        }
     953}
     954
     955
     956/*------------------------------------------------------------------------------
     957  11.3 - Featured Images
     958------------------------------------------------------------------------------*/
     959
     960#select-featured-image {
     961        padding: 4px 0;
     962        overflow: hidden;
     963
     964        img {
     965                max-width: 100%;
     966                height: auto;
     967                margin-bottom: 10px;
     968        }
     969
     970        a {
     971                float: left;
     972                clear: both;
     973        }
     974
     975        .remove {
     976                display: none;
     977                margin-top: 10px;
     978        }
     979
     980        .js &.has-featured-image .remove {
     981                display: inline-block;
     982        }
     983
     984        .no-js & .choose {
     985                display: none;
     986        }
     987}
     988
     989/*------------------------------------------------------------------------------
     990  11.4 - Post formats
     991------------------------------------------------------------------------------*/
     992
     993a.post-state-format {
     994        overflow: hidden;
     995        display: inline-block;
     996        vertical-align: middle;
     997        height: 16px;
     998        width: 16px;
     999        margin-right: 5px;
     1000        background-repeat: no-repeat;
     1001        text-indent: -999em;
     1002}
     1003
     1004#post-formats-select {
     1005        line-height: 2em;
     1006}
     1007
     1008.post-format-icon {
     1009        margin-left: 5px;
     1010        padding: 2px 0 2px 21px;
     1011        line-height: 2em;
     1012
     1013        &.post-format-standard  {
     1014                background-position: 0 0;
     1015        }
     1016
     1017        &.post-format-image  {
     1018                background-position: 0 -32px;
     1019        }
     1020
     1021        &.post-format-gallery {
     1022                background-position: 0 -64px;
     1023        }
     1024
     1025        &.post-format-audio {
     1026                background-position: 0 -96px;
     1027        }
     1028
     1029        &.post-format-video {
     1030                background-position: 0 -128px;
     1031        }
     1032
     1033        &.post-format-chat {
     1034                background-position: 0 -160px;
     1035        }
     1036
     1037        &.post-format-status {
     1038                background-position: 0 -192px;
     1039        }
     1040
     1041        &.post-format-aside {
     1042                background-position: 0 -224px;
     1043        }
     1044
     1045        &.post-format-quote {
     1046                background-position: 0 -256px;
     1047        }
     1048
     1049        &.post-format-link {
     1050                background-position: 0 -288px;
     1051        }
     1052}
     1053 No newline at end of file
  • new file wp-admin/css/less/modules/footer.less

    diff --git a/wp-admin/css/less/modules/footer.less b/wp-admin/css/less/modules/footer.less
    new file mode 100644
    index 0000000..886238e
    - +  
     1/*------------------------------------------------------------------------------
     2  21.0 - Admin Footer
     3------------------------------------------------------------------------------*/
     4
     5#wpfooter {
     6        position: absolute;
     7        bottom: 0;
     8        left: 0;
     9        right: 0;
     10        padding: 10px 0;
     11        margin-right: 20px;
     12        border-top-width: 1px;
     13        border-top-style: solid;
     14
     15        p {
     16                margin: 0;
     17                line-height: 20px;
     18        }
     19
     20        a {
     21                text-decoration: none;
     22
     23                &:hover {
     24                        text-decoration: underline;
     25                }
     26        }
     27}
     28 No newline at end of file
  • new file wp-admin/css/less/modules/forms.less

    diff --git a/wp-admin/css/less/modules/forms.less b/wp-admin/css/less/modules/forms.less
    new file mode 100644
    index 0000000..a42d086
    - +  
     1/*------------------------------------------------------------------------------
     2  2.0 - Forms
     3------------------------------------------------------------------------------*/
     4
     5
     6.wp-admin select {
     7        padding: 2px;
     8        height: 2em;
     9
     10        &[multiple] {
     11                height: auto;
     12        }
     13}
     14
     15.submit {
     16        padding: 1.5em 0;
     17        margin: 5px 0;
     18        .rounded-bottom(3px);
     19}
     20
     21form p.submit a.cancel:hover {
     22        text-decoration: none;
     23}
     24
     25#minor-publishing-actions input,
     26#major-publishing-actions input,
     27#minor-publishing-actions .preview {
     28        text-align: center;
     29}
     30
     31textarea.all-options,
     32input.all-options {
     33        width: 250px;
     34}
     35
     36input.large-text,
     37textarea.large-text {
     38        width: 99%;
     39}
     40
     41input.regular-text,
     42#adduser .form-field input {
     43        width: 25em;
     44}
     45
     46input.small-text {
     47        width: 50px;
     48
     49        &[type="number"] {
     50                width: 60px;
     51        }
     52}
     53
     54#doaction,
     55#doaction2,
     56#post-query-submit {
     57        margin: 1px 8px 0 0;
     58}
     59
     60.tablenav {
     61        #changeit,
     62        #delete_all,
     63        #clear-recent-list {
     64                margin-top: 1px;
     65        }
     66
     67        .actions select {
     68                float: left;
     69                margin-right: 6px;
     70                max-width: 200px;
     71        }
     72
     73        .ie8 & .actions select {
     74                width: 155px;
     75       
     76                &#cat {
     77                        width: 200px;
     78                }
     79        }
     80}
     81
     82#timezone_string option {
     83        margin-left: 1em;
     84}
     85
     86label,
     87#your-profile label + a {
     88        vertical-align: middle;
     89}
     90
     91#misc-publishing-actions label {
     92        vertical-align: baseline;
     93}
     94
     95#pass-strength-result {
     96        border-style: solid;
     97        border-width: 1px;
     98        float: left;
     99        margin: 13px 5px 5px 1px;
     100        padding: 3px 5px;
     101        text-align: center;
     102        width: 200px;
     103        display: none;
     104}
     105.indicator-hint {
     106        padding-top: 8px;
     107}
     108
     109p.search-box {
     110        float: right;
     111        margin: 0;
     112}
     113
     114.search-box input[name="s"],
     115#search-plugins input[name="s"],
     116.tagsdiv .newtag {
     117        float: left;
     118        height: 2em;
     119        margin: 0 4px 0 0;
     120}
     121
     122input[type="text"].ui-autocomplete-loading {
     123        background: transparent url('../images/loading.gif') no-repeat right center;
     124        visibility: visible;
     125}
     126
     127ul#add-to-blog-users {
     128        margin: 0 0 0 14px;
     129}
     130
     131.ui-autocomplete-input.open {
     132        border-bottom-right-radius: 0;
     133        border-bottom-left-radius: 0;
     134}
     135
     136.ui-autocomplete {
     137        padding: 0;
     138        margin: 0;
     139        list-style: none;
     140        position: absolute;
     141        z-index: 10000;
     142        border-bottom-right-radius: 3px;
     143        border-bottom-left-radius: 3px;
     144        border-width: 1px;
     145        border-style: solid;
     146
     147        li {
     148                margin-bottom: 0;
     149                white-space: nowrap;
     150                text-align: left;
     151                a {
     152                        display: block;
     153                        height: 100%;
     154                        padding: 4px 10px;
     155               
     156                        &.ui-state-focus {
     157                                cursor: pointer;
     158                        }
     159                }       
     160        }
     161}
     162 No newline at end of file
  • new file wp-admin/css/less/modules/full-overlay.less

    diff --git a/wp-admin/css/less/modules/full-overlay.less b/wp-admin/css/less/modules/full-overlay.less
    new file mode 100644
    index 0000000..95b35b3
    - +  
     1/*------------------------------------------------------------------------------
     2  23.0 - Full Overlay w/ Sidebar
     3------------------------------------------------------------------------------*/
     4
     5body.full-overlay-active {
     6        overflow: hidden;
     7}
     8
     9.wp-full-overlay {
     10        background: #fff;
     11        z-index: 500000;
     12        position: fixed;
     13        overflow: visible;
     14        top: 0;
     15        bottom: 0;
     16        left: 0;
     17        right: 0;
     18        height: 100%;
     19        min-width: 0;
     20
     21        &.expanded {
     22                margin-left: 300px;
     23        }
     24
     25        /* Close Link */
     26        .close-full-overlay {
     27                text-decoration: none;
     28        }
     29
     30        /* Collapse Button */
     31        a.collapse-sidebar {
     32                position: absolute;
     33                bottom: 12px;
     34                left: 0;
     35                z-index: 50;
     36                display: block;
     37                width: 19px;
     38                height: 19px;
     39                margin-left: 15px;
     40                padding: 0;
     41                .rounded(50%);
     42                text-decoration: none;
     43        }
     44
     45        .collapse-sidebar-arrow {
     46                position: absolute;
     47                margin-top: 2px;
     48                margin-left: 2px;
     49                display: block;
     50                width: 15px;
     51                height: 15px;
     52                background: transparent url('../images/arrows.png') no-repeat -1px -73px;
     53        }
     54
     55        .collapse-sidebar-label {
     56                position: absolute;
     57                left: 100%;
     58                color: #808080;
     59                line-height: 20px;
     60                margin-left: 10px;
     61        }
     62
     63        &.collapsed {
     64                .collapse-sidebar {
     65                        position: absolute;
     66                        left: 100%;
     67                }
     68
     69                .collapse-sidebar-arrow {
     70                        background-position: -1px -109px;
     71                }
     72
     73                .collapse-sidebar-label {
     74                        display: none;
     75                }
     76        }
     77
     78        .collapse-sidebar:hover .collapse-sidebar-label {
     79                color: #666;
     80        }
     81}
     82
     83.wp-full-overlay-sidebar {
     84        .border-box();
     85        position: fixed;
     86        width: 300px;
     87        height: 100%;
     88        top: 0;
     89        bottom: 0;
     90        left: 0;
     91        padding: 0;
     92        margin: 0;
     93        z-index: 10;
     94        overflow: auto;
     95        background: #f5f5f5;
     96        border-right: 1px solid rgba( 0, 0, 0, 0.2 );
     97
     98        .wp-full-overlay.collapsed & {
     99                overflow: visible;
     100                margin-left: -300px;
     101        }
     102
     103        &:after {
     104                content: '';
     105                display: block;
     106                position: absolute;
     107                top: 0;
     108                bottom: 0;
     109                right: 0;
     110                width: 3px;
     111                box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset;
     112                z-index: 1000;
     113        }
     114
     115        .wp-full-overlay-header {
     116                position: absolute;
     117                left: 0;
     118                right: 0;
     119                height: 45px;
     120                padding: 0 20px;
     121                line-height: 45px;
     122                z-index: 10;
     123                margin: 0;
     124                border-top: 0;
     125                border-bottom: 1px solid #fff;
     126                box-shadow: inset 0 -1px 0 0px @border-color;
     127        }
     128
     129        .wp-full-overlay-footer {
     130                bottom: 0;
     131                border-bottom: 0;
     132                border-top: 1px solid @border-color;
     133                box-shadow: inset 0 1px 0 0px #fff;
     134        }
     135
     136        .wp-full-overlay-sidebar-content {
     137                position: absolute;
     138                top: 45px;
     139                bottom: 45px;
     140                left: 0;
     141                right: 0;
     142                overflow: auto;
     143
     144                .accordion-section:first-child {
     145                        border-top: 1px solid #fff;
     146                }
     147        }
     148}
     149
     150.wp-full-overlay.collapsed,
     151.wp-full-overlay.expanded .wp-full-overlay-sidebar {
     152        margin-left: 0 !important;
     153}
     154
     155.wp-full-overlay-main {
     156        position: absolute;
     157        left: 0;
     158        right: 0;
     159        top: 0;
     160        bottom: 0;
     161        height: 100%;
     162}
     163
     164/* Animations */
     165.wp-full-overlay,
     166.wp-full-overlay-sidebar,
     167.wp-full-overlay .collapse-sidebar,
     168.wp-full-overlay-main {
     169        .transitions();
     170}
     171 No newline at end of file
  • new file wp-admin/css/less/modules/global.less

    diff --git a/wp-admin/css/less/modules/global.less b/wp-admin/css/less/modules/global.less
    new file mode 100644
    index 0000000..f903535
    - +  
     1/* 2 column liquid layout */
     2#wpwrap {
     3        height: auto;
     4        min-height: 100%;
     5        width: 100%;
     6        position: relative;
     7}
     8
     9#wpcontent {
     10        height: 100%;
     11}
     12
     13#wpcontent,
     14#wpfooter {
     15        margin-left: 165px;
     16}
     17
     18.folded #wpcontent,
     19.folded #wpfooter {
     20        margin-left: 52px;
     21}
     22
     23#wpbody-content {
     24        padding-bottom: 65px;
     25        float: left;
     26        width: 100%;
     27}
     28
     29#adminmenuback,
     30#adminmenuwrap,
     31#adminmenu,
     32#adminmenu .wp-submenu {
     33        width: 145px;
     34}
     35
     36#adminmenuback {
     37        position: absolute;
     38        top: 0;
     39        bottom: 0;
     40        z-index: -1;
     41}
     42
     43#adminmenu {
     44        clear: left;
     45        margin: 0;
     46        padding: 0;
     47        list-style: none;
     48}
     49
     50.folded #adminmenuback,
     51.folded #adminmenuwrap,
     52.folded #adminmenu,
     53.folded #adminmenu li.menu-top {
     54        width: 32px;
     55}
     56
     57/* inner 2 column liquid layout */
     58
     59.inner-sidebar {
     60        float: right;
     61        clear: right;
     62        display: none;
     63        width: 281px;
     64        position: relative;
     65
     66        .columns-2 & {
     67                margin-right: auto;
     68                width: 286px;
     69                display: block;
     70        }
     71
     72        #side-sortables,
     73        .columns-2 & #side-sortables {
     74                min-height: 300px;
     75                width: 280px;
     76                padding: 0;
     77        }
     78
     79        .has-right-sidebar & {
     80                display: block;
     81        }
     82}
     83
     84.has-right-sidebar {
     85        #post-body {
     86                float: left;
     87                clear: left;
     88                width: 100%;
     89                margin-right: -2000px;
     90        }
     91
     92        #post-body-content {
     93                margin-right: 300px;
     94                float: none;
     95                width: auto;
     96        }
     97}
     98
     99/* 2 columns main area */
     100
     101#col-container,
     102#col-left,
     103#col-right {
     104        overflow: hidden;
     105        padding: 0;
     106        margin: 0;
     107}
     108
     109#col-left {
     110        width: 35%;
     111}
     112
     113#col-right {
     114        float: right;
     115        clear: right;
     116        width: 65%;
     117}
     118
     119.col-wrap {
     120        padding: 0 7px;
     121}
     122
     123/* utility classes */
     124.alignleft {
     125        float: left;
     126}
     127
     128.alignright {
     129        float: right;
     130}
     131
     132.textleft {
     133        text-align: left;
     134}
     135
     136.textright {
     137        text-align: right;
     138}
     139
     140.clear {
     141        clear: both;
     142}
     143
     144/* Hide visually but not from screen readers */
     145.screen-reader-text,
     146.screen-reader-text span,
     147.ui-helper-hidden-accessible {
     148        position: absolute;
     149        left: -1000em;
     150        top: -1000em;
     151        height: 1px;
     152        width: 1px;
     153        overflow: hidden;
     154}
     155
     156.screen-reader-shortcut {
     157        position: absolute;
     158        top: -1000em;
     159
     160        &:focus {
     161                left: 6px;
     162                top: -21px;
     163                height: auto;
     164                width: auto;
     165                display: block;
     166                .bold-font(14px);
     167                padding: 15px 23px 14px;
     168                background: #f1f1f1;
     169                color: #21759b;
     170                .rounded(3px);
     171                z-index: 100000;
     172                -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
     173                box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
     174                text-decoration: none;
     175        }
     176}
     177
     178.hidden,
     179.js .closed .inside,
     180.js .hide-if-js,
     181.no-js .hide-if-no-js,
     182.js.wp-core-ui .hide-if-js,
     183.js .wp-core-ui .hide-if-js,
     184.no-js.wp-core-ui .hide-if-no-js,
     185.no-js .wp-core-ui .hide-if-no-js {
     186        display: none;
     187}
     188
     189/* include margin and padding in the width calculation of input and textarea */
     190input[type="text"],
     191input[type="password"],
     192input[type="number"],
     193input[type="search"],
     194input[type="email"],
     195input[type="url"],
     196textarea {
     197        .border-box();
     198}
     199
     200input[type="checkbox"],
     201input[type="radio"] {
     202        vertical-align: text-top;
     203        padding: 0;
     204        margin: 1px 0 0;
     205}
     206
     207input[type="search"] {
     208        -webkit-appearance: textfield;
     209}
     210
     211input[type="search"]::-webkit-search-decoration {
     212        display: none;
     213}
     214
     215/* general */
     216html,
     217body {
     218        height: 100%;
     219        margin: 0;
     220        padding: 0;
     221}
     222
     223body {
     224        font-family: sans-serif;
     225        font-size: 12px;
     226        line-height: 1.4em;
     227        min-width: 600px;
     228
     229        &.iframe {
     230                min-width: 0;
     231                padding-top: 1px;
     232        }
     233
     234        &.login {
     235                background: #fbfbfb;
     236                min-width: 0;
     237        }
     238}
     239
     240iframe,
     241img {
     242        border: 0;
     243}
     244
     245td,
     246textarea,
     247input,
     248select,
     249button {
     250        font-family: inherit;
     251        font-size: inherit;
     252        font-weight: inherit;
     253}
     254
     255td,
     256textarea {
     257        line-height: inherit;
     258}
     259
     260input,
     261select {
     262        line-height: 15px;
     263}
     264
     265a,
     266input[type="text"],
     267input[type="password"],
     268input[type="number"],
     269input[type="search"],
     270input[type="email"],
     271input[type="url"],
     272select,
     273textarea,
     274div {
     275        outline: 0;
     276}
     277
     278a:focus,
     279a:active {
     280        outline: thin dotted;
     281}
     282
     283#adminmenu a:focus,
     284#adminmenu a:active,
     285.screen-reader-text:focus {
     286        outline: none;
     287}
     288
     289blockquote,
     290q {
     291        quotes: none;
     292}
     293
     294blockquote:before,
     295blockquote:after,
     296q:before,
     297q:after {
     298        content: '';
     299        content: none;
     300}
     301
     302p {
     303        margin: 1em 0;
     304}
     305
     306blockquote {
     307        margin: 1em;
     308}
     309
     310label {
     311        cursor: pointer;
     312}
     313
     314li,
     315dd {
     316        margin-bottom: 6px;
     317}
     318
     319textarea,
     320input,
     321select {
     322        margin: 1px;
     323        padding: 3px;
     324}
     325
     326h1,
     327h2,
     328h3,
     329h4,
     330h5,
     331h6 {
     332        display: block;
     333        font-weight: bold;
     334}
     335
     336h1 {
     337        font-size: 2em;
     338        margin: .67em 0;
     339}
     340
     341h2 {
     342        font-size: 1.5em;
     343        margin: .83em 0;
     344}
     345
     346h3 {
     347        font-size: 1.17em;
     348        margin: 1em 0;
     349}
     350
     351h4 {
     352        font-size: 1em;
     353        margin: 1.33em 0;
     354}
     355
     356h5 {
     357        font-size: 0.83em;
     358        margin: 1.67em 0;
     359}
     360
     361h6 {
     362        font-size: 0.67em;
     363        margin: 2.33em 0;
     364}
     365
     366ul,
     367ol {
     368        padding: 0;
     369}
     370
     371ul {
     372        list-style: none;
     373}
     374
     375ol {
     376        list-style-type: decimal;
     377        margin-left: 2em;
     378}
     379
     380ul.ul-disc {
     381        list-style: disc outside;
     382}
     383
     384ul.ul-square {
     385        list-style: square outside;
     386}
     387
     388ol.ol-decimal {
     389        list-style: decimal outside;
     390}
     391
     392ul.ul-disc,
     393ul.ul-square,
     394ol.ol-decimal {
     395        margin-left: 1.8em;
     396}
     397
     398ul.ul-disc > li,
     399ul.ul-square > li,
     400ol.ol-decimal > li {
     401        margin: 0 0 0.5em;
     402}
     403
     404.code,
     405code {
     406        font-family: Consolas, Monaco, monospace;
     407}
     408
     409kbd,
     410code {
     411        padding: 1px 3px;
     412        margin: 0 1px;
     413        font-size: 11px;
     414}
     415
     416.subsubsub {
     417        list-style: none;
     418        margin: 8px 0 5px;
     419        padding: 0;
     420        font-size: 12px;
     421        float: left;
     422
     423        a {
     424                line-height: 2;
     425                padding: .2em;
     426                text-decoration: none;
     427        }
     428
     429        a .count,
     430        a.current .count {
     431                color: #999;
     432                font-weight: normal;
     433        }
     434
     435        a.current {
     436                font-weight: bold;
     437                border: none;
     438        }
     439
     440        li {
     441                display: inline-block;
     442                margin: 0;
     443                padding: 0;
     444                white-space: nowrap;
     445        }
     446}
     447
     448.widefat,
     449div.updated,
     450div.error,
     451.wrap .add-new-h2,
     452textarea,
     453input[type="text"],
     454input[type="password"],
     455input[type="file"],
     456input[type="email"],
     457input[type="number"],
     458input[type="search"],
     459input[type="tel"],
     460input[type="url"],
     461select,
     462.tablenav .tablenav-pages a,
     463.tablenav-pages span.current,
     464#titlediv #title,
     465.postbox,
     466#postcustomstuff table,
     467#postcustomstuff input,
     468#postcustomstuff textarea,
     469.imgedit-menu div,
     470.plugin-update-tr .update-message,
     471#poststuff .inside .the-tagcloud,
     472.login form,
     473#login_error,
     474.login .message,
     475#menu-management .menu-edit,
     476.nav-menus-php .list-container,
     477.menu-item-handle,
     478.link-to-original,
     479.nav-menus-php .major-publishing-actions .form-invalid,
     480.press-this #message,
     481#TB_window,
     482.tbtitle,
     483.highlight,
     484.feature-filter,
     485#widget-list .widget-top,
     486.editwidget .widget-inside {
     487        .rounded(3px);
     488        border-width: 1px;
     489        border-style: solid;
     490}
     491
     492/* .widefat - main style for tables */
     493.widefat {
     494        border-spacing: 0;
     495        width: 100%;
     496        clear: both;
     497        margin: 0;
     498
     499        * {
     500                word-wrap: break-word;
     501        }
     502
     503        a {
     504                text-decoration: none;
     505        }
     506
     507        thead th:first-of-type {
     508                -moz-border-top-left-radius: 3px;
     509                -webkit-border-top-left-radius: 3px;
     510                border-top-left-radius: 3px;
     511        }
     512        thead th:last-of-type {
     513                -moz-border-top-right-radius: 3px;
     514                -webkit-border-top-right-radius: 3px;
     515                border-top-right-radius: 3px;
     516        }
     517        tfoot th:first-of-type {
     518                -moz-border-bottom-left-radius: 3px;
     519                -webkit-border-bottom-left-radius: 3px;
     520                border-bottom-left-radius: 3px;
     521        }
     522        tfoot th:last-of-type {
     523                -moz-border-bottom-right-radius: 3px;
     524                -webkit-border-bottom-right-radius: 3px;
     525                border-bottom-right-radius: 3px;
     526        }
     527
     528        td,
     529        th {
     530                border-width: 1px 0;
     531                border-style: solid;
     532        }
     533        tfoot th {
     534                border-bottom: none;
     535        }
     536
     537        .no-items td {
     538                border-bottom-width: 0;
     539        }
     540
     541        td {
     542                font-size: 12px;
     543                padding: 4px 7px 2px;
     544                vertical-align: top;
     545        }
     546
     547        td p,
     548        td ol,
     549        td ul {
     550                font-size: 12px;
     551        }
     552
     553        th {
     554                padding: 7px 7px 8px;
     555                text-align: left;
     556                line-height: 1.3em;
     557                font-size: 14px;
     558        }
     559
     560        th input {
     561                margin: 0 0 0 8px;
     562                padding: 0;
     563                vertical-align: text-top;
     564        }
     565
     566        .check-column {
     567                width: 2.2em;
     568                padding: 6px 0 25px;
     569                vertical-align: top;
     570        }
     571
     572        tbody th.check-column {
     573                padding: 9px 0 22px;
     574        }
     575
     576        &.media .check-column {
     577                padding-top: 8px;
     578        }
     579
     580        thead .check-column,
     581        tfoot .check-column {
     582                padding: 10px 0 0;
     583        }
     584
     585        .no-js & thead .check-column input,
     586        .no-js & tfoot .check-column input {
     587                display: none;
     588        }
     589}
     590
     591.widefat .num,
     592.column-comments,
     593.column-links,
     594.column-posts {
     595        text-align: center;
     596}
     597
     598.widefat th#comments {
     599        vertical-align: middle;
     600}
     601
     602.wrap {
     603        margin: 4px 15px 0 0;
     604}
     605
     606div.updated,
     607div.error {
     608        padding: 0 0.6em;
     609        margin: 5px 15px 2px;
     610}
     611
     612div.updated p,
     613div.error p {
     614        margin: 0.5em 0;
     615        padding: 2px;
     616}
     617
     618.wrap div.updated,
     619.wrap div.error,
     620.media-upload-form div.error {
     621        margin: 5px 0 15px;
     622}
     623
     624.wrap h2,
     625.subtitle {
     626        font-weight: normal;
     627        margin: 0;
     628        text-shadow: #fff 0 1px 0;
     629}
     630
     631.wrap h2 {
     632        font-size: 23px;
     633        padding: 9px 15px 4px 0;
     634        line-height: 29px;
     635}
     636
     637.subtitle {
     638        font-size: 14px;
     639        padding-left: 25px;
     640}
     641
     642.wrap .add-new-h2 {
     643        font-family: sans-serif;
     644        margin-left: 4px;
     645        padding: 3px 8px;
     646        position: relative;
     647        top: -3px;
     648        text-decoration: none;
     649        font-size: 12px;
     650        border: 0 none;
     651}
     652
     653.wrap h2.long-header {
     654        padding-right: 0;
     655}
     656
     657html,
     658.wp-dialog {
     659        background-color: white;
     660}
     661
     662textarea,
     663input[type="text"],
     664input[type="password"],
     665input[type="file"],
     666input[type="email"],
     667input[type="number"],
     668input[type="search"],
     669input[type="tel"],
     670input[type="url"],
     671select {
     672        background-color: white;
     673        color: #333;
     674}
     675
     676select {
     677        color: black;
     678}
     679
     680select[disabled] {
     681        color: #7f7f7f;
     682}
     683
     684select:focus {
     685        border-color: #aaa;
     686}
     687
     688textarea:focus,
     689input[type="text"]:focus,
     690input[type="password"]:focus,
     691input[type="file"]:focus,
     692input[type="email"]:focus,
     693input[type="number"]:focus,
     694input[type="search"]:focus,
     695input[type="tel"]:focus,
     696input[type="url"]:focus,
     697select:focus {
     698        -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
     699        box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
     700}
     701
     702input[readonly] {
     703        background-color: #eee;
     704}
     705
     706:-moz-placeholder,
     707.wp-core-ui :-moz-placeholder {
     708   color: #a9a9a9;
     709}
     710
     711.postbox .spinner {
     712        display: none;
     713        vertical-align: middle;
     714}
     715
     716.button-controls {
     717        clear:both;
     718        margin: 10px 0;
     719}
     720
     721.show-all,
     722.hide-all {
     723        cursor: pointer;
     724}
     725
     726.hide-all {
     727        display: none;
     728}
     729
     730img {
     731        border: none;
     732}
     733 No newline at end of file
  • new file wp-admin/css/less/modules/header.less

    diff --git a/wp-admin/css/less/modules/header.less b/wp-admin/css/less/modules/header.less
    new file mode 100644
    index 0000000..fd7b7e6
    - +  
     1/*------------------------------------------------------------------------------
     2  6.0 - Admin Header
     3------------------------------------------------------------------------------*/
     4#adminmenu a,
     5#sidemenu a,
     6#taglist a,
     7#catlist a {
     8        text-decoration: none;
     9}
     10
     11/*------------------------------------------------------------------------------
     12  6.1 - Screen Options Tabs
     13------------------------------------------------------------------------------*/
     14
     15#screen-options-wrap,
     16#contextual-help-wrap {
     17        margin: 0;
     18        padding: 8px 20px 12px;
     19        position: relative;
     20}
     21
     22#contextual-help-wrap {
     23        overflow: auto;
     24}
     25
     26#screen-meta-links {
     27        margin: 0 24px 0 0;
     28
     29        a:focus {
     30                -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
     31                box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
     32                outline: none;
     33        }
     34
     35        .screen-meta-toggle {
     36                position: relative;
     37                top: -1px;
     38        }
     39
     40        a.show-settings {
     41                text-decoration: none;
     42                z-index: 1;
     43                padding: 1px 16px 0 6px;
     44                height: 22px;
     45                line-height: 22px;
     46                font-size: 12px;
     47                display: block;
     48                text-shadow: rgba(255,255,255,0.7) 0 1px 0;
     49
     50                &:hover {
     51                        text-decoration: none;
     52                }
     53        }
     54}
     55
     56/* screen options and help tabs revert */
     57#screen-meta {
     58        display: none;
     59        position: relative;
     60        margin: 0 15px 0 5px;
     61        border-width: 0 1px 1px;
     62        border-style: none solid solid;
     63
     64        .screen-reader-text {
     65                visibility: hidden;
     66        }
     67}
     68
     69#screen-options-link-wrap,
     70#contextual-help-link-wrap {
     71        float: right;
     72        height: 23px;
     73        padding: 0;
     74        margin: 0 0 0 6px;
     75        font-family: sans-serif;
     76}
     77
     78#screen-options-link-wrap,
     79#contextual-help-link-wrap,
     80#screen-meta {
     81        .rounded-bottom();
     82}
     83
     84/* end screen options and help tabs */
     85
     86.toggle-arrow {
     87        background-repeat: no-repeat;
     88        background-position: top left;
     89        background-color: transparent;
     90        height: 22px;
     91        line-height: 22px;
     92        display: block;
     93}
     94
     95.toggle-arrow-active {
     96        background-position: bottom left;
     97}
     98
     99#screen-options-wrap h5,
     100#contextual-help-wrap h5 {
     101        margin: 8px 0;
     102        font-size: 13px;
     103}
     104
     105.metabox-prefs {
     106        label {
     107                display: inline-block;
     108                padding-right: 15px;
     109                white-space: nowrap;
     110                line-height: 30px;
     111
     112                input {
     113                        margin: 0 5px 0 2px;
     114                }
     115       
     116                a {
     117                        display: none;
     118                }       
     119        }
     120
     121        .columns-prefs label input {
     122                margin: 0 2px;
     123        }
     124}
     125
     126
     127
     128/*------------------------------------------------------------------------------
     129  6.2 - Help Menu
     130------------------------------------------------------------------------------*/
     131
     132#contextual-help-wrap {
     133        padding: 0;
     134        margin-left: -4px;
     135}
     136
     137#contextual-help-columns {
     138        position: relative;
     139}
     140
     141#contextual-help-back {
     142        position: absolute;
     143        top: 0;
     144        bottom: 0;
     145        left: 150px;
     146        right: 170px;
     147        border-width: 0 1px;
     148        border-style: solid;
     149
     150        #contextual-help-wrap.no-sidebar & {
     151                right: 0;
     152
     153                border-right-width: 0;
     154                -moz-border-bottom-right-radius: 2px;
     155                -webkit-border-bottom-right-radius: 2px;
     156                border-bottom-right-radius: 2px;
     157        }
     158}
     159
     160.contextual-help-tabs {
     161        float: left;
     162        width: 150px;
     163        margin: 0;
     164
     165        ul {
     166                margin: 1em 0;
     167        }
     168
     169        li {
     170                margin-bottom: 0;
     171                list-style-type: none;
     172                border-style: solid;
     173                border-width: 1px 0;
     174                border-color: transparent;
     175        }
     176
     177        a {
     178                display: block;
     179                padding: 5px 5px 5px 12px;
     180                line-height: 18px;
     181                text-decoration: none;
     182        }
     183
     184        .active {
     185                padding: 0;
     186                margin: 0 -1px 0 0;
     187                border-width: 1px 0 1px 1px;
     188                border-style: solid;
     189        }
     190}
     191
     192.contextual-help-tabs-wrap {
     193        padding: 0 20px;
     194        overflow: auto;
     195}
     196
     197.help-tab-content {
     198        display: none;
     199        margin: 0 22px 12px 0;
     200        line-height: 1.6em;
     201
     202        &.active {
     203                display: block;
     204        }
     205
     206        ul li {
     207                list-style-type: disc;
     208                margin-left: 18px;
     209        }
     210}
     211
     212.contextual-help-sidebar {
     213        width: 150px;
     214        float: right;
     215        padding: 0 8px 0 12px;
     216        overflow: auto;
     217}
     218 No newline at end of file
  • new file wp-admin/css/less/modules/hidpi.less

    diff --git a/wp-admin/css/less/modules/hidpi.less b/wp-admin/css/less/modules/hidpi.less
    new file mode 100644
    index 0000000..7d3e3ea
    - +  
     1/**
     2 * HiDPI Displays
     3 */
     4@media print,
     5  (-o-min-device-pixel-ratio: 5/4),
     6  (-webkit-min-device-pixel-ratio: 1.25),
     7  (min-resolution: 120dpi) {
     8
     9        .press-this .tagchecklist span a {
     10                background-image: url('../images/xit-2x.gif');
     11                background-size: 20px auto;
     12         }
     13
     14        .js .postbox:hover .handlediv,
     15        .js .stuffbox:hover .handlediv,
     16        .widget-top a.widget-action {
     17                background-image: url('../images/arrows-2x.png');
     18                background-size: 15px 123px;
     19         }
     20
     21        .widget-top a.widget-action:hover {
     22                background-image: url('../images/arrows-dark-2x.png');
     23                background-size: 15px 123px;
     24        }
     25
     26        .post-com-count {
     27                background-image: url('../images/bubble_bg-2x.gif');
     28                background-size: 18px 100px;
     29        }
     30
     31        tr.wp-locked .locked-indicator  {
     32                background-image: url('../images/lock-2x.png');
     33                background-size: 16px 16px;
     34        }
     35
     36        th .comment-grey-bubble {
     37                background-image: url('../images/comment-grey-bubble-2x.png');
     38                background-size: 12px 12px;
     39        }
     40
     41        .sorting-indicator {
     42                background-image: url('../images/sort-2x.gif?ver=20130102');
     43                background-size: 14px 4px;
     44        }
     45
     46        #content-resize-handle,
     47        #post-body .wp_themeSkin .mceStatusbar a.mceResize {
     48                background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;
     49                background-size: 11px 11px;
     50        }
     51
     52        div.star-holder {
     53                background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;
     54                background-size: 21px 37px;
     55        }
     56
     57        div.star-holder .star-rating {
     58                background: url('../images/stars-2x.png?ver=20121108') repeat-x top left;
     59                background-size: 21px 37px;
     60        }
     61
     62        .welcome-panel .welcome-panel-close:before {
     63                background-image: url('../images/xit-2x.gif');
     64                background-size: 20px auto;
     65        }
     66
     67        .welcome-panel .welcome-icon {
     68                background-image: url('../images/welcome-icons-2x.png');
     69        }
     70
     71        .login h1 a {
     72                background-image: url('../images/wordpress-logo-2x.png?ver=20120412');
     73                background-size: 274px 63px;
     74        }
     75
     76        .wp-badge {
     77                background-image: url('../images/wp-badge-2x.png?ver=20120516');
     78                background-size: 173px 194px;
     79        }
     80
     81        .wp-full-overlay .collapse-sidebar-arrow {
     82                background-image: url('../images/arrows-2x.png');
     83                background-size: 15px 123px;
     84         }
     85
     86        .pressthis a span {
     87                background-image: url(../images/press-this-2x.png?v=20121105);
     88        }
     89
     90        .imgedit-crop,
     91        .imgedit-rleft,
     92        .imgedit-rright,
     93        .imgedit-flipv,
     94        .imgedit-fliph,
     95        .imgedit-undo,
     96        .imgedit-redo {
     97                background-image: url('../images/imgedit-icons-2x.png');
     98                background-size: 260px 64px;
     99        }
     100
     101        .spinner,
     102        .imgedit-wait,
     103        .customize-loading #customize-container {
     104                background-image: url(../images/wpspin_light-2x.gif);
     105        }
     106
     107        .wp-slider .ui-slider-handle:before {
     108                background-image: url(../images/arrows-pr-2x.png);
     109                background-size: 16px 102px;
     110        }
     111
     112}
     113 No newline at end of file
  • new file wp-admin/css/less/modules/layout-blocks.less

    diff --git a/wp-admin/css/less/modules/layout-blocks.less b/wp-admin/css/less/modules/layout-blocks.less
    new file mode 100644
    index 0000000..65da352
    - +  
     1/*------------------------------------------------------------------------------
     2  8.0 - Layout Blocks
     3------------------------------------------------------------------------------*/
     4
     5html.wp-toolbar {
     6        padding-top: 28px;
     7        .border-box();
     8}
     9
     10.narrow {
     11        width: 70%;
     12        margin-bottom: 40px;
     13
     14        p {
     15                line-height: 150%;
     16        }
     17}
     18
     19.widefat {
     20        th,
     21        td {
     22                overflow: hidden;
     23        }
     24
     25        th {
     26                font-weight: normal;
     27        }
     28
     29        td p {
     30                margin: 2px 0 0.8em;
     31        }
     32
     33        .column-comment p {
     34                margin: 0.6em 0;
     35        }
     36}
     37
     38/* Screens with postboxes */
     39.postbox-container {
     40        float: left;
     41}
     42
     43#dashboard-widgets {
     44        &.columns-1 .postbox-container {
     45                width: 100%;
     46        }
     47
     48        &.columns-2 {
     49                .postbox-container {
     50                        width: 49.5%;
     51                }
     52
     53                #postbox-container-2,
     54                #postbox-container-3,
     55                #postbox-container-4 {
     56                        float: right;
     57                        width: 50.5%;
     58                }
     59        }
     60
     61        &.columns-3  {
     62                .postbox-container {
     63                        width: 33.5%;
     64                }
     65
     66                #postbox-container-1 {
     67                        width: 33%;
     68                }
     69
     70                #postbox-container-3,
     71                #postbox-container-4 {
     72                        float: right;
     73                }
     74        }
     75
     76        &.columns-4 .postbox-container {
     77                width: 25%;
     78        }
     79}
     80
     81.postbox-container .meta-box-sortables {
     82        .border-box();
     83}
     84
     85.metabox-holder .postbox-container .empty-container {
     86        border: 3px dashed #ccc;
     87        height: 250px;
     88}
     89
     90.metabox-holder.columns-1 .postbox-container .empty-container,
     91.columns-2 #postbox-container-3 .empty-container,
     92.columns-2 #postbox-container-4 .empty-container,
     93.columns-3 #postbox-container-4 .empty-container {
     94        border: 0 none;
     95        height: 0;
     96        min-height: 0;
     97}
     98
     99#poststuff {
     100        padding-top: 10px;
     101
     102        #post-body {
     103                padding: 0;
     104        }
     105
     106        .postbox-container {
     107                width: 100%;
     108        }
     109
     110        #post-body.columns-2 {
     111                margin-right: 300px;
     112        }
     113}
     114
     115#post-body-content {
     116        width: 100%;
     117        float: left;
     118}
     119
     120#post-body.columns-2 #postbox-container-1 {
     121        float: right;
     122        margin-right: -300px;
     123        width: 280px;
     124}
     125
     126#post-body.columns-2 #side-sortables {
     127        min-height: 250px;
     128}
     129
     130/* one column on the dash */
     131@media only screen and (max-width: 799px) {
     132        #wpbody-content #dashboard-widgets .postbox-container {
     133                width: 100%;
     134        }
     135
     136        #wpbody-content .metabox-holder .postbox-container .empty-container {
     137                border: 0 none;
     138                height: 0;
     139                min-height: 0;
     140        }
     141}
     142
     143/* two columns on the dash, but keep the setting if one is selected */
     144@media only screen and (min-width: 800px) and (max-width: 1200px) {
     145        #wpbody-content #dashboard-widgets .postbox-container {
     146                width: 49.5%;
     147        }
     148
     149        #wpbody-content #dashboard-widgets #postbox-container-2,
     150        #wpbody-content #dashboard-widgets #postbox-container-3,
     151        #wpbody-content #dashboard-widgets #postbox-container-4 {
     152                float: right;
     153                width: 50.5%;
     154        }
     155
     156        #dashboard-widgets #postbox-container-3 .empty-container,
     157        #dashboard-widgets #postbox-container-4 .empty-container {
     158                border: 0 none;
     159                height: 0;
     160                min-height: 0;
     161        }
     162
     163        #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
     164                width: 100%;
     165        }
     166
     167        #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container {
     168                border: 0 none;
     169                height: 0;
     170                min-height: 0;
     171        }
     172
     173        /* show the radio buttons for column prefs only for one or two columns */
     174        .index-php .screen-layout,
     175        .index-php .columns-prefs {
     176                display: block;
     177        }
     178
     179        .columns-prefs .columns-prefs-3,
     180        .columns-prefs .columns-prefs-4 {
     181                display: none;
     182        }
     183}
     184
     185/* one column on the post write/edit screen */
     186@media only screen and (max-width: 850px) {
     187        #wpbody-content #poststuff #post-body {
     188                margin: 0;
     189        }
     190
     191        #wpbody-content #post-body.columns-2 #postbox-container-1 {
     192                margin-right: 0;
     193                width: 100%;
     194        }
     195
     196        #poststuff #postbox-container-1 .empty-container,
     197        #poststuff #postbox-container-1 #side-sortables:empty {
     198                border: 0 none;
     199                height: 0;
     200                min-height: 0;
     201        }
     202
     203        #poststuff #post-body.columns-2 #side-sortables {
     204                min-height: 0;
     205        }
     206
     207        /* hide the radio buttons for column prefs */
     208        .screen-layout,
     209        .columns-prefs {
     210                display: none;
     211        }
     212}
     213
     214.postbox .hndle {
     215        .rounded-top();
     216}
     217
     218.js .postbox .hndle {
     219        cursor: move;
     220}
     221
     222.postbox.closed .hndle {
     223        .rounded(3px);
     224}
     225
     226.hndle a {
     227        font-size: 11px;
     228        font-weight: normal;
     229}
     230
     231.postbox .handlediv {
     232        float: right;
     233        width: 27px;
     234        height: 30px;
     235}
     236
     237.js .postbox .handlediv {
     238        cursor: pointer;
     239}
     240
     241.sortable-placeholder {
     242        border-width: 1px;
     243        border-style: dashed;
     244        margin-bottom: 20px;
     245}
     246
     247.widget,
     248.postbox,
     249.stuffbox {
     250        margin-bottom: 20px;
     251        padding: 0;
     252        border-width: 1px;
     253        border-style: solid;
     254        line-height: 1;
     255}
     256
     257.widget .widget-top,
     258.postbox h3,
     259.stuffbox h3 {
     260        margin-top: 1px;
     261        border-bottom-width: 1px;
     262        border-bottom-style: solid;
     263        .no-user-select();
     264}
     265
     266.js .widget .widget-top,
     267.js .postbox h3 {
     268        cursor: move;
     269}
     270
     271.postbox .inside,
     272.stuffbox .inside {
     273        padding: 0 12px 0 10px;
     274        line-height: 1.4em;
     275}
     276
     277.postbox .inside {
     278        margin: 10px 0;
     279        position: relative;
     280}
     281
     282.postbox.closed h3 {
     283        border: none;
     284        .no-box-shadows();
     285}
     286
     287.postbox table.form-table {
     288        margin-bottom: 0;
     289}
     290
     291.temp-border {
     292        border: 1px dotted #ccc;
     293}
     294
     295.columns-prefs label {
     296        padding: 0 5px;
     297}
     298 No newline at end of file
  • new file wp-admin/css/less/modules/list-posts.less

    diff --git a/wp-admin/css/less/modules/list-posts.less b/wp-admin/css/less/modules/list-posts.less
    new file mode 100644
    index 0000000..99a92d5
    - +  
     1/*------------------------------------------------------------------------------
     2  10.0 - List Posts (/Pages/etc)
     3------------------------------------------------------------------------------*/
     4
     5table.fixed {
     6        table-layout: fixed;
     7}
     8
     9.fixed {
     10        .column-rating,
     11        .column-visible {
     12                width: 8%;
     13        }
     14
     15        .column-posts,
     16        .column-date,
     17        .column-parent,
     18        .column-links,
     19        .column-author,
     20        .column-format {
     21                width: 10%;
     22        }
     23
     24        .column-response,
     25        .column-categories,
     26        .column-tags,
     27        .column-rel,
     28        .column-role {
     29                width: 15%;
     30        }
     31
     32        .column-slug {
     33                width: 25%;
     34        }
     35
     36        .column-locations {
     37                width: 35%;
     38        }
     39
     40        .column-comments {
     41                width: 4em;
     42                padding: 8px 0;
     43                text-align: left;
     44
     45                .vers {
     46                        padding-left: 3px;
     47                }
     48
     49                a {
     50                        float: left;
     51                }
     52        }
     53
     54        .column-icon {
     55                width: 80px;
     56        }
     57
     58        #comments-form & .column-author {
     59                width: 20%;
     60        }
     61}
     62
     63#commentsdiv {
     64        &.postbox .inside {
     65                margin: 0;
     66                padding: 0;
     67        }
     68
     69        .inside .row-actions {
     70                line-height:18px;
     71        }
     72
     73        .inside .column-author {
     74                width: 25%;
     75        }
     76
     77        .column-comment p {
     78                margin: 0.6em 0;
     79                padding: 0;
     80        }
     81
     82        #replyrow td {
     83                padding: 0;
     84        }
     85
     86        p {
     87                padding: 8px 10px;
     88                margin: 0;
     89        }
     90
     91        #add-new-comment {
     92                border-width: 0 0 1px;
     93                border-style: none none solid;
     94        }
     95
     96        .comments-box {
     97                border: 0 none;
     98
     99                thead th {
     100                        background: transparent;
     101                        padding: 0 7px 4px;
     102                        font-style: italic;
     103                }
     104
     105                tr:last-child td {
     106                        border-bottom: 0 none;
     107                }
     108        }
     109
     110        .spinner {
     111                padding-left: 5px;
     112        }
     113}
     114
     115.sorting-indicator {
     116        display: none;
     117        width: 7px;
     118        height: 4px;
     119        margin-top: 8px;
     120        margin-left: 7px;
     121        background-image: url('../images/sort.gif');
     122        background-repeat: no-repeat;
     123}
     124
     125tr.wp-locked .locked-indicator {
     126        background: url('../images/lock.png') no-repeat;
     127        margin: -2px 0 0 6px;
     128        height: 20px;
     129        width: 16px;
     130}
     131
     132tr.wp-locked .check-column label,
     133tr.wp-locked .check-column input[type="checkbox"],
     134tr.wp-locked .row-actions .inline,
     135tr.wp-locked .row-actions .trash {
     136        display: none;
     137}
     138
     139tr .locked-info {
     140        height: 0;
     141        opacity: 0;
     142}
     143
     144tr.wp-locked .locked-info {
     145        height: auto;
     146        opacity: 1;
     147}
     148
     149tr.locked-info, tr.wp-locked .locked-info {
     150        -webkit-transition: height 1s, opacity 500ms;
     151        -moz-transition:    height 1s, opacity 500ms;
     152        -ms-transition:     height 1s, opacity 500ms;
     153        -o-transition:      height 1s, opacity 500ms;
     154        transition:         height 1s, opacity 500ms;
     155}
     156
     157.fixed .column-comments .sorting-indicator {
     158        margin-top: 3px;
     159}
     160
     161#menu-locations-wrap .widefat {
     162        width: 60%;
     163}
     164
     165.widefat th.sortable,
     166.widefat th.sorted {
     167        padding: 0;
     168}
     169
     170th.sortable a,
     171th.sorted a {
     172        display: block;
     173        overflow: hidden;
     174        padding: 7px 7px 8px;
     175}
     176
     177.fixed .column-comments.sortable a,
     178.fixed .column-comments.sorted a {
     179        padding: 8px 0;
     180}
     181
     182th.sortable a span,
     183th.sorted a span {
     184        float: left;
     185        cursor: pointer;
     186}
     187
     188th.sorted.asc .sorting-indicator,
     189th.desc:hover span.sorting-indicator {
     190        display: block;
     191        background-position: 0 0;
     192}
     193
     194th.sorted.desc .sorting-indicator,
     195th.asc:hover span.sorting-indicator {
     196        display: block;
     197        background-position: -7px 0;
     198}
     199
     200/* Bulk Actions */
     201.tablenav-pages a {
     202        border-bottom-style: solid;
     203        border-bottom-width: 2px;
     204        font-weight: bold;
     205        margin-right: 1px;
     206        padding: 0 2px;
     207}
     208.tablenav-pages .current-page {
     209        text-align: center;
     210}
     211.tablenav-pages .next-page {
     212        margin-left: 2px;
     213}
     214
     215.tablenav {
     216        clear: both;
     217        height: 30px;
     218        margin: 6px 0 4px;
     219        vertical-align: middle;
     220
     221
     222        &.themes {
     223                max-width: 98%;
     224        }
     225
     226        a.button-secondary {
     227                display: block;
     228                margin: 3px 8px 0 0;
     229        }
     230
     231        .tablenav-pages {
     232                float: right;
     233                display: block;
     234                cursor: default;
     235                height: 30px;
     236                line-height: 30px;
     237                font-size: 12px;
     238
     239                a.disabled:hover ,
     240                a.disabled:active {
     241                        cursor: default;
     242                }
     243        }
     244
     245        .no-pages,
     246        .one-page .pagination-links {
     247                display: none;
     248        }
     249
     250        .displaying-num {
     251                margin-right: 10px;
     252                font-size: 12px;
     253                font-style: italic;
     254        }
     255
     256        .actions {
     257                overflow: hidden;
     258                padding: 2px 8px 0 0;
     259        }
     260
     261        .delete {
     262                margin-right: 20px;
     263        }
     264}
     265
     266.tablenav .tablenav-pages a,
     267.tablenav-pages span.current  {
     268        text-decoration: none;
     269        padding: 3px 6px;
     270}
     271
     272.view-switch {
     273        float: right;
     274        margin: 6px 8px 0;
     275
     276        a {
     277                text-decoration: none;
     278        }
     279}
     280
     281.filter {
     282        float: left;
     283        margin: -5px 0 0 10px;
     284
     285        .subsubsub {
     286                margin-left: -10px;
     287                margin-top: 13px;
     288        }
     289}
     290
     291.screen-per-page {
     292        width: 4em;
     293}
     294
     295#posts-filter fieldset {
     296        float: left;
     297        margin: 0 1.5ex 1em 0;
     298        padding: 0;
     299}
     300
     301#posts-filter fieldset legend {
     302        padding: 0 0 .2em 1px;
     303}
     304
     305
     306/*------------------------------------------------------------------------------
     307  10.1 - Inline Editing
     308------------------------------------------------------------------------------*/
     309
     310/*
     311.quick-edit* is for Quick Edit
     312.bulk-edit* is for Bulk Edit
     313.inline-edit* is for everything
     314*/
     315
     316/*      Layout */
     317
     318#wpbody-content {
     319        .inline-edit-row fieldset {
     320                font-size: 12px;
     321                float: left;
     322                margin: 0;
     323                padding: 0;
     324                width: 100%;
     325        }
     326
     327        .quick-edit-row-post {
     328                .inline-edit-col-left {
     329                        width: 40%;
     330                }
     331
     332                .inline-edit-col-right {
     333                        width: 39%;
     334                }
     335        }
     336
     337        .quick-edit-row-page {
     338                fieldset.inline-edit-col-right .inline-edit-col {
     339                        border-width: 0 0 0 1px;
     340                        border-style: none none none solid;
     341                }
     342
     343                .inline-edit-col-left {
     344                        width: 50%;
     345                }
     346        }
     347
     348        .inline-edit-row-post .inline-edit-col-center {
     349                width: 20%;
     350        }
     351
     352        .quick-edit-row-page .inline-edit-col-right,
     353        .bulk-edit-row-post .inline-edit-col-right {
     354                width: 49%;
     355        }
     356
     357        .bulk-edit-row .inline-edit-col-left {
     358                width: 30%;
     359        }
     360
     361        .bulk-edit-row-page .inline-edit-col-right {
     362                width: 69%;
     363        }
     364
     365        .bulk-edit-row .inline-edit-col-bottom {
     366                float: right;
     367                width: 69%;
     368        }
     369
     370        .inline-edit-row-page .inline-edit-col-right {
     371                margin-top: 27px;
     372        }
     373}
     374
     375tr.inline-edit-row td,
     376#wpbody-content .inline-edit-row fieldset .inline-edit-col {
     377        padding: 0 0.5em;
     378}
     379
     380.inline-edit-row {
     381        fieldset .inline-edit-group {
     382                clear: both;
     383
     384                &:after {
     385                        content: ".";
     386                        display: block;
     387                        height: 0;
     388                        clear: both;
     389                        visibility: hidden;
     390                }       
     391        }
     392
     393        p.submit {
     394                clear: both;
     395                padding: 0.5em;
     396                margin: 0.5em 0 0;
     397        }
     398
     399        span.error {
     400                line-height: 22px;
     401                margin: 0 15px;
     402                padding: 3px 5px;
     403        }
     404
     405        /*      Positioning */
     406        h4 {
     407                margin: .2em 0;
     408                padding: 0;
     409                line-height: 23px;
     410                text-transform: uppercase;
     411        }
     412
     413        fieldset {
     414                span.title,
     415                span.checkbox-title {
     416                        margin: 0;
     417                        padding: 0;
     418                        line-height: 27px;
     419                        font-style: italic;
     420                        line-height: 1.8em;
     421                }
     422
     423                label,
     424                span.inline-edit-categories-label {
     425                        display: block;
     426                        margin: .2em 0;
     427                }
     428
     429                label.inline-edit-tags {
     430                        margin-top: 0;
     431                }
     432
     433                label.inline-edit-tags span.title {
     434                        margin: .2em 0;
     435                        width: auto;
     436                }
     437
     438                label span.title {
     439                        display: block;
     440                        float: left;
     441                        width: 5em;
     442                }
     443
     444                label span.input-text-wrap {
     445                        display: block;
     446                        margin-left: 5em;
     447                }
     448
     449                label input[type=checkbox] {
     450                        vertical-align: text-bottom;
     451                }
     452
     453                label textarea {
     454                        width: 100%;
     455                        height: 4em;
     456                }
     457
     458                /*      Specific Elements */
     459                input[type="text"],
     460                textarea {
     461                        border-style: solid;
     462                        border-width: 1px;
     463                }
     464
     465                .inline-edit-date {
     466                        float: left;
     467                }
     468
     469                input[name=jj],
     470                input[name=hh],
     471                input[name=mn] {
     472                        font-size: 12px;
     473                        width: 2.1em;
     474                }
     475
     476                input[name=aa] {
     477                        font-size: 12px;
     478                        width: 3.5em;
     479                }
     480
     481                label input.inline-edit-password-input {
     482                        width: 8em;
     483                }
     484
     485                ul.cat-checklist li,
     486                ul.cat-checklist input {
     487                        margin: 0;
     488                }
     489       
     490                label input.inline-edit-menu-order-input {
     491                        width: 3em;
     492                }
     493
     494                label input.inline-edit-slug-input {
     495                        width: 75%;
     496                }
     497        }
     498
     499        .input-text-wrap input[type=text] {
     500                width: 100%;
     501        }
     502
     503        fieldset ul.cat-checklist label,
     504        #bulk-titles div {
     505                font-family: sans-serif;
     506                font-style: normal;
     507                font-size: 11px;
     508        }
     509}
     510
     511.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
     512        width: auto;
     513        padding-right: 0.5em;
     514}
     515
     516#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
     517        max-width: 50%;
     518}
     519
     520#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
     521        margin-right: 0.5em;
     522}
     523
     524.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
     525        width: 6em;
     526}
     527
     528.inline-edit-save .spinner {
     529        padding: 4px 10px 0;
     530        vertical-align: top;
     531        float: right;
     532}
     533
     534ul.cat-checklist {
     535        height: 12em;
     536        border-style: solid;
     537        border-width: 1px;
     538        overflow-y: scroll;
     539        padding: 0 5px;
     540        margin: 0;
     541}
     542
     543#bulk-titles {
     544        display: block;
     545        height: 12em;
     546        border-style: solid;
     547        border-width: 1px;
     548        overflow-y: scroll;
     549        padding: 0 5px;
     550        margin: 0 0 5px;
     551}
     552
     553.quick-edit-row-post fieldset label.inline-edit-status {
     554        float: left;
     555}
     556
     557#bulk-titles {
     558        line-height: 140%;
     559
     560        div {
     561                margin: 0.2em 0.3em;
     562
     563                a {
     564                        cursor: pointer;
     565                        display: block;
     566                        float: left;
     567                        height: 10px;
     568                        margin: 3px 3px 0 -2px;
     569                        overflow: hidden;
     570                        position: relative;
     571                        text-indent: -9999px;
     572                        width: 10px;
     573                }
     574        }
     575}
     576 No newline at end of file
  • new file wp-admin/css/less/modules/localized.less

    diff --git a/wp-admin/css/less/modules/localized.less b/wp-admin/css/less/modules/localized.less
    new file mode 100644
    index 0000000..d5abc10
    - +  
     1/* =Localized CSS
     2-------------------------------------------------------------- */
     3
     4/* zh_CN: Remove italic properties. */
     5.locale-zh-cn .howto,
     6.locale-zh-cn .tablenav .displaying-num,
     7.locale-zh-cn .js .input-with-default-title,
     8.locale-zh-cn .link-to-original,
     9.locale-zh-cn .inline-edit-row fieldset span.title,
     10.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,
     11.locale-zh-cn #utc-time,
     12.locale-zh-cn #local-time,
     13.locale-zh-cn p.install-help,
     14.locale-zh-cn p.help,
     15.locale-zh-cn p.description,
     16.locale-zh-cn span.description,
     17.locale-zh-cn .form-wrap p {
     18        font-style: normal;
     19}
     20
     21/* zh_CN: Enlarge dashboard widget 'Configure' link */
     22.locale-zh-cn .hdnle a { font-size: 12px; }
     23
     24/* zn_CH: Enlarge font size, set font-size: normal */
     25.locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; }
     26
     27/* Zn_CH: Distraction free writing.
     28 *  More beautiful font for "Just write."
     29 *  Larger text for HTML/Visual mode.
     30 */
     31.locale-zh-cn #wp-fullscreen-tagline { font-family: KaiTi, "楷体", sans-serif; }
     32.locale-zh-cn #wp-fullscreen-modes a { font-size: 12px; }
     33
     34/* zh_CN: Enlarge font-size. */
     35.locale-zh-cn #sort-buttons { font-size: 1em !important; }
     36
     37/* ru_RU: Text needs more room to breathe. */
     38.locale-ru-ru .inline-edit-row fieldset label span.title {
     39        width: auto; /* default 5em */
     40        min-width: 5em;
     41}
     42.locale-ru-ru.press-this .posting {
     43        margin-right: 257px; /* default 212px + 45px */
     44}
     45.locale-ru-ru.press-this #photo-add-url-div input[type="text"]  {
     46        width: 255px; /* default 300px - 45px */
     47}
     48.locale-ru-ru.press-this #side-sortables {
     49        width: 245px; /* default 200px + 45px */
     50}
     51.locale-ru-ru #customize-header-actions .button {
     52        padding: 0 8px 1px; /* default 0 10px 1px; */
     53}
     54
     55/* lt_LT: QuickEdit */
     56.locale-lt-lt .inline-edit-row fieldset label span.title {
     57        width: 8em;
     58}
     59.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap {
     60        margin-left: 8em;
     61}
     62 No newline at end of file
  • new file wp-admin/css/less/modules/login.less

    diff --git a/wp-admin/css/less/modules/login.less b/wp-admin/css/less/modules/login.less
    new file mode 100644
    index 0000000..2a772ac
    - +  
     1/* login */
     2
     3.login {
     4        * {
     5                margin: 0;
     6                padding: 0;
     7        }
     8
     9        h1 a {
     10                background-image: url('../images/wordpress-logo.png?ver=20120216');
     11                background-size: 274px 63px;
     12                background-position: top center;
     13                background-repeat: no-repeat;
     14                width: 326px;
     15                height: 67px;
     16                text-indent: -9999px;
     17                outline: none;
     18                overflow: hidden;
     19                padding-bottom: 15px;
     20                display: block;
     21        }
     22
     23        form {
     24                margin-left: 8px;
     25                padding: 26px 24px 46px;
     26                font-weight: normal;
     27                background: #fff;
     28                border: 1px solid #e5e5e5;
     29                -webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
     30                box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
     31
     32                .forgetmenot {
     33                        float: left;
     34                        margin-bottom: 0;
     35
     36                        label {
     37                                .normal-font(12px, 19px);
     38                        }
     39                }
     40        }
     41
     42        .button-primary {
     43                float: right;
     44        }
     45
     46        label {
     47                color: #777;
     48                font-size: 14px;
     49        }
     50
     51        #nav,
     52        #backtoblog {
     53                text-shadow: #fff 0 1px 0;
     54                margin: 0 0 0 16px;
     55                padding: 16px 16px 0;
     56        }
     57
     58        form .input,
     59        input[type="text"] {
     60                color: #555;
     61                font-weight: 200;
     62                font-size: 24px;
     63                line-height: 1;
     64                width: 100%;
     65                padding: 3px;
     66                margin-top: 2px;
     67                margin-right: 6px;
     68                margin-bottom: 16px;
     69                border: 1px solid #e5e5e5;
     70                background: #fbfbfb;
     71                outline: none;
     72                -webkit-box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
     73                box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
     74        }
     75
     76        #pass-strength-result {
     77                width: 250px;
     78                font-weight: bold;
     79                border-style: solid;
     80                border-width: 1px;
     81                margin: 12px 0 6px;
     82                padding: 6px 5px;
     83                text-align: center;
     84        }
     85}
     86
     87#login {
     88        width: 320px;
     89        padding: 114px 0 0;
     90        margin: auto;
     91
     92        form p {
     93                margin-bottom: 0;
     94
     95                &.submit {
     96                        padding: 0;
     97                }
     98        }
     99}
     100
     101#login_error,
     102.login .message {
     103        margin: 0 0 16px 8px;
     104        padding: 12px;
     105}
     106
     107#backtoblog {
     108        padding: 12px 16px 0;
     109}
     110
     111.mobile #login {
     112        padding: 20px 0;
     113
     114        #nav,
     115        #backtoblog {
     116                margin-left: 8px;
     117        }
     118
     119        h1 a {
     120                width: auto;
     121        }
     122}
     123
     124.mobile #login form,
     125.mobile #login .message,
     126.mobile #login_error {
     127        margin-left: 0;
     128}
     129
     130body.interim-login {
     131        height: auto;
     132}
     133
     134.interim-login {
     135        #login {
     136                padding: 0;
     137                margin: 5px auto 20px;
     138        }
     139
     140        &.login h1 a {
     141                width: auto;
     142        }
     143
     144        #login_error,
     145        &.login .message {
     146                margin: 0 0 16px;
     147        }
     148
     149        &.login form {
     150                margin: 0;
     151        }
     152}
     153 No newline at end of file
  • new file wp-admin/css/less/modules/media-queries.less

    diff --git a/wp-admin/css/less/modules/media-queries.less b/wp-admin/css/less/modules/media-queries.less
    new file mode 100644
    index 0000000..0b7eac2
    - +  
     1/* =Media Queries
     2-------------------------------------------------------------- */
     3
     4@media only screen and (max-width: 768px) {
     5        /* categories */
     6        #col-left {
     7                width: 100%;
     8        }
     9
     10        #col-right {
     11                width: 100%;
     12        }
     13}
     14
     15@media only screen and (min-width: 769px) {
     16        /* categories */
     17        #col-left {
     18                width: 35%;
     19        }
     20
     21        #col-right {
     22                width: 65%;
     23        }
     24}
     25
     26@media only screen and (max-width: 860px) {
     27
     28        /* categories */
     29        #col-left {
     30                width: 35%;
     31        }
     32
     33        #col-right {
     34                width: 65%;
     35        }
     36}
     37
     38@media only screen and (min-width: 980px) {
     39
     40        /* categories */
     41        #col-left {
     42                width: 35%;
     43        }
     44
     45        #col-right {
     46                width: 65%;
     47        }
     48}
     49
     50@media only screen and (max-width: 768px) {
     51        /* categories */
     52        #col-left {
     53                width: 100%;
     54        }
     55
     56        #col-right {
     57                width: 100%;
     58        }
     59
     60        .form-field input,
     61        .form-field textarea {
     62                width: 99%;
     63        }
     64
     65        .form-wrap .form-field {
     66                padding:0;
     67        }
     68
     69        /* users */
     70        #profile-page .form-table textarea {
     71                max-width: 400px;
     72                width: auto;
     73        }
     74}
     75 No newline at end of file
  • new file wp-admin/css/less/modules/media.less

    diff --git a/wp-admin/css/less/modules/media.less b/wp-admin/css/less/modules/media.less
    new file mode 100644
    index 0000000..092755c
    - +  
     1/*------------------------------------------------------------------------------
     2  14.0 - Media Screen
     3------------------------------------------------------------------------------*/
     4
     5.media-item {
     6        .describe {
     7                border-collapse: collapse;
     8                width: 100%;
     9                border-top-style: solid;
     10                border-top-width: 1px;
     11                clear: both;
     12                cursor: default;
     13
     14                td {
     15                        padding: 0 8px 8px 0;
     16                        vertical-align: top;
     17                }
     18
     19                th {
     20                        vertical-align: top;
     21                        text-align: left;
     22                        padding: 5px 10px 10px;
     23                        width: 140px;
     24
     25                        .align & {
     26                                padding-top: 0;
     27                        }
     28                }
     29       
     30                input[type="text"],
     31                textarea {
     32                        width: 460px;
     33                }
     34
     35                p.help {
     36                        margin: 0;
     37                        padding: 0 0 0 5px;
     38                }               
     39        }
     40
     41        &.media-blank .describe {
     42                border: 0;
     43        }
     44
     45        .media-item-info tr {
     46                background-color: transparent;
     47        }
     48
     49        thead.media-item-info td {
     50                padding: 4px 10px 0;
     51        }
     52
     53        .media-item-info .A1B1 {
     54                padding: 0 0 0 10px;
     55        }
     56
     57        td.savesend {
     58                padding-bottom: 15px;
     59        }
     60
     61        .thumbnail {
     62                max-height: 128px;
     63                max-width: 128px;
     64        }
     65
     66        .filename {
     67                line-height: 36px;
     68                overflow: hidden;
     69                padding: 0 10px;
     70        }
     71
     72        .error-div {
     73                padding-left: 10px;
     74        }
     75
     76        .pinkynail {
     77                float: left;
     78                margin: 2px 2px 0;
     79                max-width: 40px;
     80                max-height: 32px;
     81        }
     82
     83        .startopen,
     84        .startclosed {
     85                display: none;
     86        }
     87
     88        .original {
     89                position: relative;
     90                height: 34px;
     91        }
     92
     93        .progress {
     94                float: right;
     95                height: 22px;
     96                margin: 6px 10px 0 0;
     97                width: 200px;
     98                line-height: 2em;
     99                padding: 0;
     100                overflow: hidden;
     101                margin-bottom: 2px;
     102                border: 1px solid #d1d1d1;
     103                .linear-gradient(#fff, #f7f7f7);
     104                .rounded(3px);
     105                -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
     106                -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
     107                box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
     108        }
     109
     110        .bar {
     111                z-index: 9;
     112                width: 0;
     113                height: 100%;
     114                margin-top: -24px;
     115                .linear-gradient(#72a7cf, #8cc1e9);
     116                .rounded(3px);
     117                -moz-box-shadow: 0 0 3px rgba(0,0,0,0.3);
     118                -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
     119                box-shadow: 0 0 3px rgba(0,0,0,0.3);
     120        }
     121
     122        .progress .percent {
     123                z-index: 10;
     124                position: relative;
     125                width: 200px;
     126                padding: 0 8px;
     127                text-shadow: 0 1px 0 rgba(255,255,255,0.4);
     128                color: rgba(0,0,0,0.6);
     129        }
     130}
     131
     132#wpbody-content #async-upload-wrap a {
     133        display: none;
     134}
     135
     136.media-upload-form {
     137        margin-top: 20px;
     138
     139        td label {
     140                margin-right: 6px;
     141                margin-left: 2px;
     142        }
     143
     144        .align .field label {
     145                display: inline;
     146                padding: 0 0 0 23px;
     147                margin: 0 1em 0 3px;
     148                font-weight: bold;
     149        }
     150
     151        tr.image-size label {
     152                margin: 0 0 0 5px;
     153                font-weight: bold;
     154        }
     155
     156        th.label label {
     157                .bold-font(13px);
     158                margin: 0.5em;
     159       
     160                span {
     161                        padding: 0 5px;
     162                }
     163        }
     164}
     165
     166abbr.required {
     167        border: medium none;
     168        text-decoration: none;
     169}
     170
     171.media-item .edit-attachment,
     172.describe-toggle-on,
     173.describe-toggle-off {
     174        display: block;
     175        line-height: 36px;
     176        float: right;
     177        margin-right: 15px;
     178}
     179
     180.media-item .describe-toggle-off,
     181.media-item.open .describe-toggle-on {
     182        display: none;
     183}
     184
     185.media-item.open .describe-toggle-off {
     186        display: block;
     187}
     188
     189#media-items .media-item {
     190        border-style: solid;
     191        border-width: 1px;
     192        min-height: 36px;
     193        position: relative;
     194        margin-top: -1px;
     195        width: 100%;
     196}
     197
     198#media-items {
     199        width: 623px;
     200}
     201
     202.media-new-php #media-items {
     203        margin: 1em 0;
     204}
     205
     206#media-items:empty {
     207        border: 0 none;
     208}
     209
     210.upload-php .fixed .column-parent {
     211        width: 15%;
     212}
     213
     214.js .html-uploader #plupload-upload-ui {
     215        display: none;
     216}
     217
     218.js .html-uploader #html-upload-ui {
     219        display: block;
     220}
     221
     222.media-upload-form .media-item.error {
     223        margin: 0;
     224        padding: 0;
     225}
     226
     227.media-upload-form .media-item.error p,
     228.media-item .error-div {
     229        line-height: 16px;
     230        margin: 5px 10px;
     231        padding: 0;
     232}
     233
     234.media-item .error-div a.dismiss {
     235        display: block;
     236        float: right;
     237        margin: 5px 4px 0 15px;
     238}
     239
     240/*------------------------------------------------------------------------------
     241  14.1 - Media Library
     242------------------------------------------------------------------------------*/
     243
     244.find-box {
     245        width: 600px;
     246        height: 300px;
     247        overflow: hidden;
     248        padding: 33px 0 51px;
     249        position: absolute;
     250        z-index: 1000;
     251}
     252
     253.find-box-head {
     254        cursor: move;
     255        font-weight: bold;
     256        height: 2em;
     257        line-height: 2em;
     258        padding: 1px 12px;
     259        position: absolute;
     260        top: 5px;
     261        width: 100%;
     262}
     263
     264.find-box-inside {
     265        overflow: auto;
     266        padding: 6px;
     267        height: 100%;
     268}
     269
     270.find-box-search {
     271        overflow: hidden;
     272        padding: 9px;
     273        position: relative;
     274
     275        .spinner {
     276                float: none;
     277                left: 125px;
     278                position: absolute;
     279                top: 9px;
     280        }
     281}
     282
     283#find-posts-input {
     284        float: left;
     285        width: 140px;
     286        height: 24px;
     287}
     288
     289#find-posts-search {
     290        float: left;
     291        margin: 1px 4px 0 3px;
     292}
     293
     294#find-posts-response {
     295        margin: 8px 0;
     296        padding: 0 1px 6px;
     297}
     298
     299#find-posts-response table {
     300        width: 100%;
     301}
     302
     303#find-posts-response .found-radio {
     304        padding: 3px 0 0 8px;
     305        width: 15px;
     306}
     307
     308.find-box-buttons {
     309        padding: 8px;
     310        overflow: hidden;
     311}
     312
     313.find-box #resize-se {
     314        position: absolute;
     315        right: 1px;
     316        bottom: 1px;
     317}
     318
     319.ui-find-overlay {
     320        position: absolute;
     321        top: 0;
     322        left: 0;
     323        background-color: black;
     324        opacity: 0.6;
     325        filter: alpha(opacity=60);
     326}
     327
     328ul#dismissed-updates {
     329        display: none;
     330}
     331
     332form.upgrade {
     333        margin-top: 8px;
     334}
     335
     336form.upgrade .hint {
     337        font-style: italic;
     338        font-size: 85%;
     339        margin: -0.5em 0 2em 0;
     340}
     341
     342#poststuff .inside .the-tagcloud {
     343        margin: 5px 0 10px;
     344        padding: 8px;
     345        border-width: 1px;
     346        border-style: solid;
     347        line-height: 1.8em;
     348        word-spacing: 3px;
     349        .rounded(6px);
     350}
     351
     352.drag-drop #drag-drop-area {
     353        border: 4px dashed #DDDDDD;
     354        height: 200px;
     355}
     356
     357.drag-drop .drag-drop-inside {
     358        margin: 70px auto 0;
     359        width: 250px;
     360}
     361
     362.drag-drop-inside p {
     363        color: #aaa;
     364        font-size: 14px;
     365        margin: 5px 0;
     366        display: none;
     367}
     368
     369.drag-drop .drag-drop-inside p {
     370        text-align: center;
     371}
     372
     373.drag-drop-inside p.drag-drop-info {
     374        font-size: 20px;
     375}
     376
     377.drag-drop .drag-drop-inside p,
     378.drag-drop-inside p.drag-drop-buttons {
     379        display: block;
     380}
     381
     382/*
     383#drag-drop-area:-moz-drag-over {
     384        border-color: #83b4d8;
     385}
     386borger color while dragging a file over the uploader drop area */
     387.drag-drop.drag-over #drag-drop-area {
     388        border-color: #83b4d8;
     389}
     390
     391#plupload-upload-ui {
     392        position: relative;
     393}
     394
     395
     396/*------------------------------------------------------------------------------
     397  14.2 - Image Editor
     398------------------------------------------------------------------------------*/
     399
     400.describe .image-editor {
     401        vertical-align: top;
     402}
     403
     404.imgedit-wrap {
     405        position: relative;
     406}
     407
     408.imgedit-settings p {
     409        margin: 8px 0;
     410}
     411
     412.post-php .imgedit-wrap table {
     413        width: 100%;
     414}
     415
     416.describe .imgedit-wrap table td,
     417.wp_attachment_holder .imgedit-wrap table td {
     418        vertical-align: top;
     419        padding-top: 0;
     420}
     421
     422.describe .imgedit-wrap table td.imgedit-settings {
     423        padding: 0 5px;
     424}
     425
     426.wp_attachment_holder .imgedit-wrap table td.imgedit-settings {
     427        width: 250px;
     428}
     429
     430td.imgedit-settings input {
     431        margin-top: 0;
     432        vertical-align: middle;
     433}
     434
     435.imgedit-wait {
     436        position: absolute;
     437        top: 0;
     438        background: #fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;
     439        background-size: 16px 16px;
     440        opacity: 0.7;
     441        filter: alpha(opacity=70);
     442        width: 100%;
     443        height: 500px;
     444        display: none;
     445}
     446
     447.spinner {
     448        background: url(../images/wpspin_light.gif) no-repeat;
     449        background-size: 16px 16px;
     450        display: none;
     451        float: right;
     452        opacity: 0.7;
     453        filter: alpha(opacity=70);
     454        width: 16px;
     455        height: 16px;
     456        margin: 5px 5px 0;
     457}
     458
     459.no-float {
     460        float: none;
     461}
     462
     463.media-disabled,
     464.imgedit-settings .disabled  {
     465        color: grey;
     466}
     467
     468.wp_attachment_image,
     469.A1B1 {
     470        overflow: hidden;
     471}
     472
     473.wp_attachment_image .button,
     474.A1B1 .button {
     475        float: left;
     476}
     477
     478.no-js .wp_attachment_image .button {
     479        display: none;
     480}
     481
     482.wp_attachment_image .spinner,
     483.A1B1 .spinner {
     484        float: left;
     485        padding: 0 4px 4px;
     486        vertical-align: bottom;
     487}
     488
     489.imgedit-menu {
     490        margin: 0 0 12px;
     491        min-width: 300px;
     492
     493        div {
     494                float: left;
     495                width: 32px;
     496                height: 32px;
     497        }
     498}
     499
     500.imgedit-crop-wrap {
     501        position: relative;
     502}
     503
     504.imgedit-crop {
     505        background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;
     506        margin: 0 8px 0 0;
     507
     508        &.disabled:hover {
     509                background-position: -9px -31px;
     510        }
     511
     512        &:hover {
     513                background-position: -9px -1px;
     514        }
     515}
     516
     517.imgedit-rleft {
     518        background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;
     519        margin: 0 3px;
     520
     521        &.disabled:hover {
     522                background-position: -46px -31px;
     523        }
     524
     525        &:hover {
     526                background-position: -46px -1px;
     527        }
     528}
     529
     530.imgedit-rright {
     531        background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;
     532        margin: 0 8px 0 3px;
     533
     534        &.disabled:hover {
     535                background-position: -77px -31px;
     536        }
     537
     538        &:hover {
     539                background-position: -77px -1px;
     540        }
     541}
     542
     543.imgedit-flipv {
     544        background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;
     545        margin: 0 3px;
     546
     547        &.disabled:hover {
     548                background-position: -115px -31px;
     549        }
     550
     551        &:hover {
     552                background-position: -115px -1px;
     553        }
     554}
     555
     556.imgedit-fliph {
     557        background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;
     558        margin: 0 8px 0 3px;
     559
     560        &.disabled:hover {
     561                background-position: -147px -31px;
     562        }
     563
     564        &:hover {
     565                background-position: -147px -1px;
     566        }
     567}
     568
     569.imgedit-undo {
     570        background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;
     571        margin: 0 3px;
     572
     573        &.disabled:hover {
     574                background-position: -184px -31px;
     575        }
     576
     577        &:hover {
     578                background-position: -184px -1px;
     579        }
     580}
     581
     582.imgedit-redo {
     583        background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;
     584        margin: 0 8px 0 3px;
     585
     586        &.disabled:hover {
     587                background-position: -215px -31px;
     588        }
     589
     590        &:hover {
     591                background-position: -215px -1px;
     592        }
     593}
     594
     595.imgedit-applyto img {
     596        margin: 0 8px 0 0;
     597}
     598
     599.imgedit-group-top {
     600        margin: 5px 0;
     601}
     602
     603.imgedit-applyto .imgedit-label {
     604        padding: 2px 0 0;
     605        display: block;
     606}
     607
     608.imgedit-help {
     609        display: none;
     610        font-style: italic;
     611        margin-bottom: 8px;
     612}
     613
     614a.imgedit-help-toggle {
     615        text-decoration: none;
     616}
     617
     618.form-table td.imgedit-response {
     619        padding: 0;
     620}
     621
     622.imgedit-submit {
     623        margin: 8px 0;
     624}
     625
     626.imgedit-submit-btn {
     627        margin-left: 20px;
     628}
     629
     630.imgedit-wrap .nowrap {
     631        white-space: nowrap;
     632}
     633
     634span.imgedit-scale-warn {
     635        color: red;
     636        font-size: 20px;
     637        font-style: normal;
     638        visibility: hidden;
     639        vertical-align: middle;
     640}
     641
     642.imgedit-group {
     643        border-width: 1px;
     644        border-style: solid;
     645        .rounded(3px);
     646        margin-bottom: 8px;
     647        padding: 2px 10px;
     648}
     649 No newline at end of file
  • new file wp-admin/css/less/modules/misc.less

    diff --git a/wp-admin/css/less/modules/misc.less b/wp-admin/css/less/modules/misc.less
    new file mode 100644
    index 0000000..9798ccc
    - +  
     1/*------------------------------------------------------------------------------
     2  25.0 - Misc
     3------------------------------------------------------------------------------*/
     4
     5#excerpt,
     6.attachmentlinks {
     7        margin: 0;
     8        height: 4em;
     9        width: 98%;
     10}
     11
     12#template div {
     13        margin-right: 190px;
     14}
     15
     16p.pagenav {
     17        margin: 0;
     18        display: inline;
     19}
     20
     21.pagenav span {
     22        font-weight: bold;
     23        margin: 0 6px;
     24}
     25
     26.row-title {
     27        font-size: 13px !important;
     28        font-weight: bold;
     29}
     30
     31.column-author img, .column-username img {
     32        float: left;
     33        margin-right: 10px;
     34        margin-top: 1px;
     35}
     36
     37.row-actions {
     38        visibility: hidden;
     39        padding: 2px 0 0;
     40}
     41
     42.mobile .row-actions {
     43        visibility: visible;
     44}
     45
     46tr:hover .row-actions,
     47div.comment-item:hover .row-actions {
     48        visibility: visible;
     49}
     50
     51.row-actions-visible {
     52        padding: 2px 0 0;
     53}
     54
     55.form-table .pre {
     56        padding: 8px;
     57        margin: 0;
     58}
     59
     60table.form-table td .updated {
     61        font-size: 13px;
     62}
     63
     64.tagchecklist {
     65        margin-left: 14px;
     66        font-size: 12px;
     67        overflow: auto;
     68
     69        strong {
     70                margin-left: -8px;
     71                position: absolute;
     72        }
     73        span {
     74                margin-right: 25px;
     75                display: block;
     76                float: left;
     77                font-size: 11px;
     78                line-height: 1.8em;
     79                white-space: nowrap;
     80                cursor: default;
     81
     82                a {
     83                        margin: 6px 0pt 0pt -9px;
     84                        cursor: pointer;
     85                        width: 10px;
     86                        height: 10px;
     87                        display: block;
     88                        float: left;
     89                        text-indent: -9999px;
     90                        overflow: hidden;
     91                        position: absolute;
     92                }
     93        }
     94}
     95
     96#poststuff h2 {
     97        margin-top: 20px;
     98        font-size: 1.5em;
     99        margin-bottom: 15px;
     100        padding: 0 0 3px;
     101        clear: left;
     102}
     103
     104#poststuff h3,
     105.metabox-holder h3 {
     106        .normal-font(12px);
     107        padding: 7px 10px;
     108        margin: 0;
     109}
     110
     111#poststuff .inside {
     112        margin: 6px 0 8px;
     113}
     114
     115#poststuff .inside #parent_id,
     116#poststuff .inside #page_template {
     117        max-width: 100%;
     118}
     119
     120.inline-edit-row #post_parent,
     121.inline-edit-row select[name="page_template"] {
     122        max-width: 80%;
     123}
     124
     125.ie8 #poststuff .inside #parent_id,
     126.ie8 #poststuff .inside #page_template,
     127.ie8 .inline-edit-row #post_parent,
     128.ie8 .inline-edit-row select[name="page_template"] {
     129        width: 250px;
     130}
     131
     132#post-visibility-select {
     133        line-height: 1.5em;
     134        margin-top: 3px;
     135}
     136
     137#poststuff #submitdiv .inside {
     138        margin: 0;
     139        padding: 0;
     140}
     141
     142.edit-form-section {
     143        margin-bottom: 20px;
     144}
     145
     146#templateside ul li a {
     147        text-decoration: none;
     148}
     149
     150.tool-box .title {
     151        margin: 8px 0;
     152        .normal-font(18px, 24px);
     153}
     154
     155#sidemenu {
     156        margin: -30px 15px 0 315px;
     157        list-style: none;
     158        position: relative;
     159        float: right;
     160        padding-left: 10px;
     161        font-size: 12px;
     162
     163        a {
     164                padding: 0 7px;
     165                display: block;
     166                float: left;
     167                line-height: 28px;
     168                border-top-width: 1px;
     169                border-top-style: solid;
     170                border-bottom-width: 1px;
     171                border-bottom-style: solid;
     172
     173                &.current {
     174                        font-weight: normal;
     175                        padding-left: 6px;
     176                        padding-right: 6px;
     177                        .rounded-top(3px);
     178                        border-width: 1px;
     179                        border-style: solid;
     180                }       
     181        }
     182
     183        li {
     184                display: inline;
     185                line-height: 200%;
     186                list-style: none;
     187                text-align: center;
     188                white-space: nowrap;
     189                margin: 0;
     190                padding: 0;
     191
     192                a .count-0 {
     193                        display: none;
     194                }       
     195        }
     196}
     197
     198.plugin-install #description,
     199.plugin-install-network #description {
     200        width: 60%;
     201}
     202
     203table .vers,
     204table .column-visible,
     205table .column-rating {
     206        text-align: left;
     207}
     208
     209.error-message {
     210        color: red;
     211        font-weight: bold;
     212}
     213
     214/* Scrollbar fix for bulk upgrade iframe */
     215body.iframe {
     216        height: 98%;
     217}
     218
     219
     220/* - Only used once or twice in all of WP - deprecate for global style
     221------------------------------------------------------------------------------*/
     222td.media-icon {
     223        text-align: center;
     224        width: 80px;
     225        padding-top: 8px;
     226        padding-bottom: 8px;
     227
     228        img {
     229                max-width: 80px;
     230                max-height: 60px;
     231        }
     232}
     233
     234#howto {
     235        font-size: 11px;
     236        margin: 0 5px;
     237        display: block;
     238}
     239
     240.importers {
     241        font-size: 16px;
     242        width: auto;
     243        td {
     244                padding-right: 14px;
     245        }
     246}
     247
     248#namediv {
     249        table {
     250                width: 100%;
     251        }
     252
     253        td.first {
     254                width: 10px;
     255                white-space: nowrap;
     256        }
     257
     258        input {
     259                width: 98%;
     260        }
     261
     262        p {
     263                margin: 10px 0;
     264        }
     265}
     266
     267#submitdiv h3 {
     268        margin-bottom: 0 !important;
     269}
     270
     271/* - Used - but could/should be deprecated with a CSS reset
     272------------------------------------------------------------------------------*/
     273.zerosize {
     274        height: 0;
     275        width: 0;
     276        margin: 0;
     277        border: 0;
     278        padding: 0;
     279        overflow: hidden;
     280        position: absolute;
     281}
     282
     283br.clear {
     284        height: 2px;
     285        line-height: 2px;
     286}
     287
     288.checkbox {
     289        border: none;
     290        margin: 0;
     291        padding: 0;
     292}
     293
     294fieldset {
     295        border: 0;
     296        padding: 0;
     297        margin: 0;
     298}
     299
     300.post-categories {
     301        display: inline;
     302        margin: 0;
     303        padding: 0;
     304}
     305
     306.post-categories li {
     307        display: inline;
     308}
     309
     310
     311/*-----------------------------------------------------------------------------
     312 MERGED
     313-------------------------------------------------------------------------------*/
     314
     315
     316/* ms */
     317/* Dashboard: MS Specific Data */
     318
     319#dashboard_right_now {
     320        p.musub {
     321                margin-top: 12px;
     322                border-top: 1px solid #ececec;
     323                padding-left: 16px;
     324                position: static;
     325        }
     326
     327        .rtl & p.musub {
     328                padding-left: 0;
     329                padding-right: 16px;
     330        }
     331
     332        td.b a.musublink {
     333                font-size: 16px;
     334        }
     335
     336        div.musubtable {
     337                border-top: none;
     338        }
     339
     340        div.musubtable .t {
     341                white-space: normal;
     342        }
     343}
     344
     345/* Background Color for Site Status */
     346.wp-list-table .site-deleted {
     347        background: #ff8573;
     348}
     349.wp-list-table .site-spammed {
     350        background: #faafaa;
     351}
     352.wp-list-table .site-archived {
     353        background: #ffebe8;
     354}
     355.wp-list-table .site-mature {
     356        background: #fecac2;
     357}
     358
     359/* Star ratings */
     360div.star-holder {
     361        position: relative;
     362        height: 17px;
     363        width: 100px;
     364        background: url('../images/stars.png?ver=20121108') repeat-x bottom left;
     365
     366        .star-rating {
     367                background: url('../images/stars.png?ver=20121108') repeat-x top left;
     368                height: 17px;
     369                float: left;
     370        }
     371}
     372
     373div.action-links {
     374        font-weight: normal;
     375        margin: 6px 0 0;
     376}
     377
     378/* Header on thickbox */
     379#plugin-information-header {
     380        margin: 0;
     381        padding: 0 5px;
     382        font-weight: bold;
     383        position: relative;
     384        border-bottom-width: 1px;
     385        border-bottom-style: solid;
     386        height: 2.5em;
     387}
     388
     389#plugin-information {
     390        ul#sidemenu {
     391                font-weight: normal;
     392                margin: 0 5px;
     393                position: absolute;
     394                left: 0;
     395                bottom: -1px;
     396        }
     397
     398        /* Install sidemenu */
     399        p.action-button {
     400                width: 100%;
     401                padding-bottom: 0;
     402                margin-bottom: 0;
     403                margin-top: 10px;
     404                .rounded-left(3px);
     405        }
     406
     407        .action-button a {
     408                text-align: center;
     409                font-weight: bold;
     410                text-decoration: none;
     411                display: block;
     412                line-height: 2em;
     413        }
     414
     415        h2 {
     416                clear: none !important;
     417                margin-right: 200px;
     418        }
     419
     420        .fyi {
     421                margin: 0 10px 50px;
     422                width: 210px;
     423       
     424                h2 {
     425                        font-size: 0.9em;
     426                        margin-bottom: 0;
     427                        margin-right: 0;
     428                }
     429
     430                h2.mainheader {
     431                        padding: 5px;
     432                        -moz-border-top-left-radius: 3px;
     433                        -webkit-border-top-left-radius: 3px;
     434                        border-top-left-radius: 3px;
     435                }
     436
     437                ul {
     438                        padding: 10px 5px 10px 7px;
     439                        margin: 0;
     440                        list-style: none;
     441                        -moz-border-bottom-left-radius: 3px;
     442                        -webkit-border-bottom-left-radius: 3px;
     443                        border-bottom-left-radius: 3px;
     444                }
     445
     446                li {
     447                        margin-right: 0;
     448                }
     449        }
     450
     451        #section-holder {
     452                padding: 10px;
     453        }
     454
     455        .section ul,
     456        .section ol {
     457                margin-left: 16px;
     458                list-style-type: square;
     459                list-style-image: none;
     460        }
     461
     462        #section-screenshots ol {
     463                list-style: none;
     464                margin: 0;
     465        }
     466
     467        #section-screenshots li img {
     468                vertical-align: text-top;
     469                max-width: 100%;
     470                width: auto;
     471                height: auto;
     472        }
     473
     474        #section-screenshots li p {
     475                font-style: italic;
     476                padding-left: 20px;
     477                padding-bottom: 2em;
     478        }
     479
     480        #section-screenshots ol,
     481        .updated,
     482        pre {
     483                margin-right: 215px;
     484        }
     485
     486        pre {
     487                padding: 7px;
     488                overflow: auto;
     489        }
     490}
     491
     492#poststuff #editor-toolbar {
     493        height: 30px;
     494}
     495
     496div.zerosize {
     497        border: 0 none;
     498        height: 0;
     499        margin: 0;
     500        overflow: hidden;
     501        padding: 0;
     502        width: 0;
     503}
     504
     505.posting {
     506        margin-right: 212px;
     507        position: relative;
     508}
     509
     510
     511
     512h3.tb {
     513        text-shadow: 0 1px 0 #fff;
     514        .bold-font();
     515        margin-left: 5px;
     516}
     517
     518#TB_window {
     519        border: 1px solid #333;
     520}
     521
     522.js .postbox:hover .handlediv,
     523.js .stuffbox:hover .handlediv {
     524        background: transparent url(../images/arrows.png) no-repeat 6px 7px;
     525}
     526
     527.press-this #submitdiv:hover .handlediv {
     528        background: none;
     529}
     530
     531.tbtitle {
     532        font-size: 1.7em;
     533        outline: none;
     534        padding: 3px 4px;
     535        border-color: @border-color;
     536}
     537
     538#extra-fields .button {
     539        margin-right: 5px;
     540}
     541
     542/* Photo Styles */
     543#photo_saving {
     544        margin: 0 8px 8px;
     545        vertical-align: middle;
     546}
     547
     548#img_container_container {
     549        overflow: auto;
     550}
     551
     552#extra-fields {
     553        margin-top: 10px;
     554        position: relative;
     555
     556        h2 {
     557                margin: 12px;
     558        }
     559}
     560
     561#waiting {
     562        margin-top: 10px;
     563        overflow: hidden;
     564
     565        span {
     566                float: right;
     567                margin: 0 0 0 5px;
     568        }
     569
     570        .spinner {
     571                display: block;
     572        }
     573}
     574
     575#extra-fields .postbox {
     576        margin-bottom: 5px;
     577}
     578
     579#extra-fields .titlewrap {
     580        padding: 0;
     581        overflow: auto;
     582        height: 100px;
     583}
     584
     585#img_container {
     586        a {
     587                display: block;
     588                float: left;
     589                overflow: hidden;
     590        }
     591
     592        img,
     593        a {
     594                width: 68px;
     595                height: 68px;
     596        }
     597
     598        img {
     599                border: none;
     600                background-color: #f4f4f4;
     601                cursor: pointer;
     602        }
     603
     604        a,
     605        a:link,
     606        a:visited {
     607                border: 1px solid #ccc;
     608                display: block;
     609                position: relative;
     610        }
     611
     612        a:hover,
     613        a:active {
     614                border-color: black;
     615                z-index: 1000;
     616                border-width: 2px;
     617                margin: -1px;
     618        }
     619}
     620
     621
     622/* Video */
     623#embed-code {
     624        width: 100%;
     625        height: 98px;
     626}
     627
     628#TB_ajaxContent #options {
     629        position: absolute;
     630        top: 20px;
     631        right: 25px;
     632        padding: 5px;
     633}
     634
     635#TB_ajaxContent h3 {
     636        margin-bottom: .25em;
     637}
     638
     639.error a {
     640        text-decoration: underline;
     641}
     642
     643.updated a {
     644        text-decoration: none;
     645        padding-bottom: 2px;
     646}
     647
     648/* tag hints */
     649.taghint {
     650        color: #aaa;
     651        margin: -17px 0 0 7px;
     652        visibility: hidden;
     653}
     654
     655input.newtag ~ div.taghint {
     656        visibility: visible;
     657}
     658
     659input.newtag:focus ~ div.taghint {
     660        visibility: hidden;
     661}
     662
     663/* TinyMCE */
     664#mce_fullscreen_container {
     665        background: #fff;
     666}
     667
     668#photo-add-url-div input[type="text"] {
     669        width: 300px;
     670}
     671
     672/* theme-editor */
     673.alignleft h3 {
     674        margin: 0;
     675}
     676
     677h3 span {
     678        font-weight: normal;
     679}
     680
     681#template textarea {
     682        font-family: Consolas, Monaco, monospace;
     683        font-size: 12px;
     684        width: 97%;
     685        background: #f9f9f9;
     686        outline: none;
     687}
     688
     689#template p {
     690        width: 97%;
     691}
     692
     693#templateside {
     694        float: right;
     695        width: 190px;
     696        word-wrap: break-word;
     697}
     698
     699#templateside h3,
     700#postcustomstuff p.submit {
     701        margin: 0;
     702}
     703
     704#templateside h4 {
     705        margin: 1em 0 0;
     706}
     707
     708#templateside ol,
     709#templateside ul {
     710        margin: .5em;
     711        padding: 0;
     712}
     713
     714#templateside li {
     715        margin: 4px 0;
     716}
     717
     718#templateside ul li a span.highlight {
     719        display:block;
     720}
     721
     722.nonessential {
     723        font-size: 11px;
     724        font-style: italic;
     725        padding-left: 12px;
     726}
     727
     728.highlight {
     729        padding: 3px 3px 3px 12px;
     730        margin-left: -12px;
     731        font-weight: bold;
     732        border: 0 none;
     733}
     734
     735#documentation {
     736        margin-top: 10px;
     737}
     738#documentation label {
     739        line-height: 22px;
     740        vertical-align: top;
     741        font-weight: bold;
     742}
     743
     744.fileedit-sub {
     745        padding: 10px 0 8px;
     746        line-height: 180%;
     747}
     748
     749#filter-box {
     750        clear: both;
     751}
     752
     753.feature-filter {
     754        padding: 8px 12px 0;
     755}
     756
     757.feature-filter .feature-group {
     758        float: left;
     759        margin: 5px 10px 10px;
     760}
     761
     762.feature-filter .feature-group li {
     763        display: inline-block;
     764        vertical-align: top;
     765        list-style-type: none;
     766        padding-right: 25px;
     767        width: 150px;
     768}
     769
     770.feature-container {
     771        width: 100%;
     772        overflow: auto;
     773        margin-bottom: 10px;
     774}
     775
     776/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
     777.ui-sortable,
     778.ui-draggable {
     779        -ms-touch-action: none;
     780}
  • new file wp-admin/css/less/modules/nav-menus.less

    diff --git a/wp-admin/css/less/modules/nav-menus.less b/wp-admin/css/less/modules/nav-menus.less
    new file mode 100644
    index 0000000..e75ab6b
    - +  
     1/* nav-menu */
     2
     3.no-js #message {
     4        display: block;
     5}
     6
     7#nav-menu-meta ul.outer-border {
     8        .rounded(3px);
     9}
     10
     11.accordion-section ul.category-tabs,
     12.accordion-section ul.add-menu-item-tabs,
     13.accordion-section ul.wp-tab-bar {
     14        margin: 0;
     15}
     16
     17.accordion-section .categorychecklist {
     18        margin: 13px 0;
     19}
     20
     21#nav-menu-meta .accordion-section-content {
     22        padding: 18px 13px;
     23}
     24
     25#nav-menu-meta .button-controls {
     26        margin-bottom: 0;
     27}
     28
     29#nav-menus-frame {
     30        margin-left: 300px;
     31        margin-top: 23px;
     32}
     33
     34#wpbody-content #menu-settings-column {
     35        display: inline;
     36        width:281px;
     37        margin-left: -300px;
     38        clear: both;
     39        float: left;
     40        padding-top: 0;
     41}
     42
     43#menu-settings-column .inside {
     44        clear: both;
     45        margin: 10px 0 0;
     46}
     47
     48.metabox-holder-disabled .postbox,
     49.metabox-holder-disabled .accordion-section-content  {
     50        opacity: 0.5;
     51        filter: alpha(opacity=50);
     52}
     53
     54.metabox-holder-disabled .button-controls .select-all {
     55        display: none;
     56}
     57
     58#wpbody {
     59        position: relative;
     60}
     61
     62.blank-slate .menu-name {
     63        height: 2em;
     64}
     65
     66.blank-slate .menu-settings {
     67        border: none;
     68        margin-top: 0;
     69        padding-top: 0;
     70        overflow: hidden;
     71}
     72
     73.is-submenu {
     74        font-style: italic;
     75        font-weight: normal;
     76        margin-left: 4px;
     77}
     78
     79.manage-menus {
     80        margin-top: 23px;
     81        padding: 10px;
     82        overflow: hidden;
     83        .rounded(3px);
     84
     85        select {
     86                float: left;
     87                margin-right: 6px;
     88        }
     89
     90        .selected-menu {
     91                float: left;
     92                margin: 5px 6px 0 0;
     93        }
     94
     95        .submit-btn {
     96                float: left;
     97                margin-top: 1px;
     98        }
     99}
     100
     101.menu-edit {
     102        p {
     103                margin: .3em 0 .6em;
     104        }
     105
     106        #post-body-content h3 {
     107                margin: 0 0 10px;
     108        }
     109
     110        .checkbox-input {
     111                margin-top: 4px;
     112        }
     113}
     114
     115.menu-settings {
     116        margin-top: 2em;
     117        overflow: hidden;
     118
     119        dl {
     120                margin: 0 0 10px;
     121                overflow: hidden;
     122                position: relative;
     123        }
     124
     125        dd {
     126                float: left;
     127                margin: 0;
     128                width: 60%;
     129        }
     130}
     131
     132.theme-location-set {
     133        font-size: 11px;
     134}
     135
     136/* Menu Container */
     137#menu-management-liquid {
     138        float: left;
     139        min-width: 100%;
     140        margin-top: 3px;
     141}
     142
     143#menu-management {
     144        position: relative;
     145        margin-right: 20px;
     146        margin-top: -3px;
     147        width: 100%;
     148
     149        .menu-edit {
     150                margin-bottom: 20px;
     151        }
     152}
     153
     154.nav-menus-php #post-body {
     155        padding: 0 10px 10px;
     156        border-width: 1px 0;
     157        border-style: solid;
     158}
     159
     160#nav-menu-header,
     161#nav-menu-footer {
     162        padding: 0 10px;
     163}
     164
     165#nav-menu-header {
     166        border-bottom: 1px solid;
     167        margin-bottom: 13px;
     168        .menu-name-label {
     169                margin-top: 2px;
     170        }
     171}
     172
     173#nav-menu-footer {
     174        border-top: 1px solid;
     175}
     176
     177.nav-menus-php #post-body div.updated,
     178.nav-menus-php #post-body div.error {
     179        margin: 0;
     180}
     181
     182.nav-menus-php #post-body-content {
     183        position: relative;
     184        float: none;
     185}
     186
     187#menu-management .menu-add-new abbr {
     188        font-weight: bold;
     189}
     190
     191#select-nav-menu-container {
     192        text-align: right;
     193        padding: 0 10px 3px 10px;
     194        margin-bottom: 5px;
     195}
     196
     197#select-nav-menu {
     198        width: 100px;
     199        display: inline;
     200}
     201
     202#menu-name-label {
     203        margin-top: -2px;
     204}
     205
     206.widefat td.menu-location-menus {
     207        padding-bottom: 5px;
     208}
     209
     210.menu-location-menus select {
     211        float: left;
     212}
     213
     214#locations-nav-menu-wrapper {
     215        padding: 5px 0;
     216}
     217
     218.locations-nav-menu-select select {
     219        float: left;
     220        width: 160px;
     221        margin-right: 5px;
     222}
     223
     224.locations-row-links {
     225        float: left;
     226        margin: 6px 0 0 6px;
     227}
     228
     229.locations-edit-menu-link,
     230.locations-add-menu-link {
     231        margin: 0 3px;
     232}
     233
     234.locations-edit-menu-link {
     235        padding-right: 3px;
     236        border-right: 1px solid #ccc;
     237}
     238
     239#wpbody .open-label {
     240        display: block;
     241        float:left;
     242}
     243
     244#wpbody .open-label span {
     245        padding-right: 10px;
     246}
     247
     248.js .input-with-default-title {
     249        font-style: italic;
     250}
     251
     252#menu-management .inside {
     253        padding: 0 10px;
     254}
     255
     256/* Add Menu Item Boxes */
     257.postbox .howto input,
     258.accordion-container .howto input {
     259        width: 180px;
     260        float: right;
     261}
     262
     263.accordion-container .outer-border {
     264        margin: 0;
     265}
     266
     267#nav-menu-meta .accordion-container {
     268        .top {
     269                border-top: 1px solid @border-color;
     270        }
     271
     272        .accordion-section:first-child,
     273        .accordion-section:first-child h3,
     274        .top,
     275        .top h3 {
     276                .rounded-top();
     277        }
     278
     279        .accordion-section:last-child,
     280        .accordion-section:last-child .accordion-section-content,
     281        .bottom,
     282        .bottom:not(.open) h3 {
     283                .rounded-bottom();
     284        }
     285}
     286
     287.customlinkdiv .howto input {
     288        width: 180px;
     289}
     290
     291.customlinkdiv p {
     292        margin-top: 0;
     293}
     294
     295#nav-menu-theme-locations {
     296        .howto select {
     297                width: 100%;
     298        }
     299
     300        .button-controls {
     301                text-align: right;
     302        }
     303}
     304
     305.add-menu-item-view-all {
     306        height: 400px;
     307}
     308
     309/* Button Primary Actions */
     310#menu-container .submit {
     311        margin: 0 0 10px;
     312        padding: 0;
     313}
     314
     315.nav-menus-php {
     316        .add-new-menu-action {
     317                float: left;
     318                margin: 6px 0 0 6px;
     319                line-height: 15px;
     320        }
     321
     322        .meta-sep,
     323        .submitdelete,
     324        .submitcancel {
     325                display: block;
     326                float: left;
     327                margin: 4px 0;
     328                line-height: 15px;
     329        }
     330}
     331
     332.meta-sep {
     333        padding: 0 2px;
     334}
     335
     336#cancel-save {
     337        text-decoration: underline;
     338        font-size: 12px;
     339        margin-left: 20px;
     340        margin-top: 5px;
     341}
     342
     343.button.right, .button-secondary.right, .button-primary.right {
     344        float: right;
     345}
     346
     347/* Button Secondary Actions */
     348.list-controls {
     349        float: left;
     350        margin-top: 5px;
     351}
     352
     353.add-to-menu {
     354        float: right;
     355}
     356
     357/* Create Menu */
     358#menu-name {
     359        width: 270px;
     360}
     361
     362#manage-menu .inside {
     363        padding: 0px 0px;
     364}
     365
     366/* Custom Links */
     367#available-links dt {
     368        display: block;
     369}
     370
     371#add-custom-link .howto {
     372        font-size: 12px;
     373}
     374
     375#add-custom-link label span {
     376        display: block;
     377        float: left;
     378        margin-top: 5px;
     379        padding-right: 5px;
     380}
     381
     382.menu-item-textbox {
     383        width: 180px;
     384}
     385
     386.nav-menus-php .howto span {
     387        margin-top: 4px;
     388        display: block;
     389        float: left;
     390}
     391
     392/* Menu item types */
     393.quick-search {
     394        width: 190px;
     395}
     396
     397.nav-menus-php {
     398        .list-wrap {
     399                display: none;
     400                clear: both;
     401                margin-bottom: 10px;
     402        }
     403
     404        .list-container {
     405                max-height: 200px;
     406                overflow-y: auto;
     407                padding: 10px 10px 5px;
     408        }
     409
     410        .postbox p.submit {
     411                margin-bottom: 0;
     412        }
     413}
     414
     415/* Listings */
     416.nav-menus-php .list li {
     417        display: none;
     418        margin: 0;
     419        margin-bottom: 5px;
     420
     421        .menu-item-title {
     422                cursor: pointer;
     423                display: block;
     424        }
     425
     426        .menu-item-title input {
     427                margin-right: 3px;
     428                margin-top: -3px;
     429        }
     430}
     431
     432/* Nav Menu */
     433#menu-container .inside {
     434        padding-bottom: 10px;
     435}
     436
     437.menu {
     438        padding-top:1em;
     439
     440        ul {
     441                width: 100%;
     442        }
     443
     444        li {
     445                margin-bottom: 0;
     446                position: relative;
     447        }
     448}
     449
     450#menu-to-edit {
     451        margin: 0;
     452        padding: 0.1em 0;
     453}
     454
     455
     456.menu-item-bar {
     457        clear:both;
     458        line-height:1.5em;
     459        position:relative;
     460        margin: 9px 0 0;
     461}
     462
     463.menu-item-handle {
     464        border: 1px solid @border-color;
     465        position: relative;
     466        padding-left: 10px;
     467        height: auto;
     468        width: 400px;
     469        line-height: 35px;
     470        text-shadow: 0 1px 0 #FFFFFF;
     471        overflow: hidden;
     472        word-wrap: break-word;
     473}
     474
     475#menu-to-edit .menu-item-invalid .menu-item-handle {
     476        .linear-gradient(#f6c9cc, #fdf8ff);
     477}
     478
     479.menu-item-edit-active .menu-item-handle {
     480        .rounded-bottom(0);
     481}
     482
     483.no-js .menu-item-edit-active .item-edit {
     484        display: none;
     485}
     486
     487.js .menu-item-handle {
     488        cursor: move;
     489}
     490
     491.menu li.deleting .menu-item-handle {
     492        background-image: none;
     493        text-shadow: 0 0 0;
     494}
     495
     496.menu-item-handle .item-title {
     497        font-size: 12px;
     498        font-weight: bold;
     499        padding: 7px 0;
     500        line-height: 20px;
     501        display: block;
     502        margin-right:13em;
     503}
     504
     505/* Sortables */
     506li.menu-item.ui-sortable-helper dl {
     507        margin-top: 0;
     508}
     509
     510li.menu-item.ui-sortable-helper .menu-item-transport dl {
     511        margin-top: 13px;
     512}
     513
     514.menu .sortable-placeholder {
     515        height: 35px;
     516        width: 410px;
     517        margin-top: 13px;
     518}
     519
     520/* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
     521.menu-item-depth-0 { margin-left: 0px; }
     522.menu-item-depth-1 { margin-left: 30px; }
     523.menu-item-depth-2 { margin-left: 60px; }
     524.menu-item-depth-3 { margin-left: 90px; }
     525.menu-item-depth-4 { margin-left: 120px; }
     526.menu-item-depth-5 { margin-left: 150px; }
     527.menu-item-depth-6 { margin-left: 180px; }
     528.menu-item-depth-7 { margin-left: 210px; }
     529.menu-item-depth-8 { margin-left: 240px; }
     530.menu-item-depth-9 { margin-left: 270px; }
     531.menu-item-depth-10 { margin-left: 300px; }
     532.menu-item-depth-11 { margin-left: 330px; }
     533
     534.menu-item-depth-0 .menu-item-transport { margin-left: 0px; }
     535.menu-item-depth-1 .menu-item-transport { margin-left: -30px; }
     536.menu-item-depth-2 .menu-item-transport { margin-left: -60px; }
     537.menu-item-depth-3 .menu-item-transport { margin-left: -90px; }
     538.menu-item-depth-4 .menu-item-transport { margin-left: -120px; }
     539.menu-item-depth-5 .menu-item-transport { margin-left: -150px; }
     540.menu-item-depth-6 .menu-item-transport { margin-left: -180px; }
     541.menu-item-depth-7 .menu-item-transport { margin-left: -210px; }
     542.menu-item-depth-8 .menu-item-transport { margin-left: -240px; }
     543.menu-item-depth-9 .menu-item-transport { margin-left: -270px; }
     544.menu-item-depth-10 .menu-item-transport { margin-left: -300px; }
     545.menu-item-depth-11 .menu-item-transport { margin-left: -330px; }
     546
     547body.menu-max-depth-0 { min-width: 950px !important; }
     548body.menu-max-depth-1 { min-width: 980px !important; }
     549body.menu-max-depth-2 { min-width: 1010px !important; }
     550body.menu-max-depth-3 { min-width: 1040px !important; }
     551body.menu-max-depth-4 { min-width: 1070px !important; }
     552body.menu-max-depth-5 { min-width: 1100px !important; }
     553body.menu-max-depth-6 { min-width: 1130px !important; }
     554body.menu-max-depth-7 { min-width: 1160px !important; }
     555body.menu-max-depth-8 { min-width: 1190px !important; }
     556body.menu-max-depth-9 { min-width: 1220px !important; }
     557body.menu-max-depth-10 { min-width: 1250px !important; }
     558body.menu-max-depth-11 { min-width: 1280px !important; }
     559
     560/* Menu item controls */
     561.item-type {
     562        font-size: 12px;
     563        padding-right: 10px;
     564}
     565
     566.item-controls {
     567        font-size: 12px;
     568        position: absolute;
     569        right: 20px;
     570        top: -1px;
     571
     572        a {
     573                text-decoration: none;
     574                &:hover {
     575                        cursor: pointer;
     576                }
     577        }
     578
     579        .item-order {
     580                padding-right: 10px;
     581        }
     582}
     583
     584.nav-menus-php .item-edit {
     585        position: absolute;
     586        right: -20px;
     587        top: 0;
     588        display: block;
     589        width: 30px;
     590        height: 36px;
     591        overflow: hidden;
     592        text-indent:-999em;
     593        border-bottom: 1px solid;
     594        -moz-border-bottom-left-radius: 3px;
     595        -webkit-border-bottom-left-radius: 3px;
     596        border-bottom-left-radius: 3px;
     597}
     598
     599/* Menu editing */
     600.menu-instructions-inactive {
     601        display: none;
     602}
     603
     604.menu-item-settings {
     605        display: block;
     606        width: 400px;
     607        padding: 10px 0 10px 10px;
     608        border: solid;
     609        border-width: 0 1px 1px 1px;
     610        .rounded-bottom();
     611
     612        .field-move a {
     613                display: none;
     614                margin: 0 2px;
     615        }
     616
     617        .menu-item-edit-active & {
     618                display: block;
     619        }
     620
     621        .menu-item-edit-inactive & {
     622                display: none;
     623        }
     624
     625        .description-thin,
     626        .description-wide {
     627                margin-right: 10px;
     628                float: left;
     629        }
     630}
     631
     632.add-menu-item-pagelinks {
     633        margin: .5em auto;
     634        text-align: center;
     635}
     636
     637.link-to-original {
     638        display: block;
     639        margin: 0 0 10px;
     640        padding: 3px 5px 5px;
     641        font-size: 12px;
     642        font-style: italic;
     643
     644        a {
     645                padding-left: 4px;
     646                font-style: normal;
     647        }
     648}
     649
     650.hidden-field {
     651        display: none;
     652}
     653
     654.description-thin {
     655        width: 190px;
     656        height: 40px;
     657}
     658
     659.description-wide {
     660        width: 390px;
     661}
     662
     663.menu-item-actions {
     664        padding-top: 15px;
     665}
     666
     667#cancel-save {
     668        cursor: pointer;
     669}
     670
     671/* Major/minor publishing actions (classes) */
     672.nav-menus-php {
     673        .major-publishing-actions {
     674                clear: both;
     675                padding: 3px 0 5px;
     676
     677                .publishing-action {
     678                        text-align: right;
     679                        float: right;
     680                        line-height: 23px;
     681                        margin: 2px 0 1px;
     682                }       
     683
     684                .form-invalid {
     685                        padding-left: 4px;
     686                        margin-left: -4px;
     687                        border: 0 none;
     688                }
     689        }
     690
     691        .blank-slate .menu-settings {
     692                display: none;
     693        }
     694
     695        .delete-action {
     696                float: left;
     697                margin-top: 2px;
     698        }
     699
     700        .submitbox .submitcancel {
     701                border-bottom: 1px solid;
     702                padding: 1px 2px;
     703                text-decoration: none;
     704        }
     705}
     706
     707
     708/* Clearfix */
     709#menu-item-name-wrap:after,
     710#menu-item-url-wrap:after,
     711#menu-name-label:after,
     712#menu-settings-column .inside:after,
     713#nav-menus-frame:after,
     714.nav-menus-php #post-body-content:after,
     715.nav-menus-php .button-controls:after,
     716.nav-menus-php .major-publishing-actions:after,
     717.nav-menus-php .menu-item-settings:after {
     718        clear: both;
     719        content: ".";
     720        display: block;
     721        height: 0;
     722        visibility: hidden;
     723}
     724
     725#nav-menus-frame,
     726.button-controls,
     727#menu-item-url-wrap,
     728#menu-item-name-wrap {
     729        display: block;
     730}
     731 No newline at end of file
  • new file wp-admin/css/less/modules/navigation.less

    diff --git a/wp-admin/css/less/modules/navigation.less b/wp-admin/css/less/modules/navigation.less
    new file mode 100644
    index 0000000..00e4e10
    - +  
     1/*------------------------------------------------------------------------------
     2  7.0 - Main Navigation (Left Menu)
     3------------------------------------------------------------------------------*/
     4
     5#adminmenuback,
     6#adminmenuwrap {
     7        border-width: 0 1px 0 0;
     8        border-style: solid;
     9}
     10
     11#adminmenuwrap {
     12        position: relative;
     13        float: left;
     14}
     15
     16#adminmenushadow {
     17        position: absolute;
     18        top: 0;
     19        right: 0;
     20        bottom: 0;
     21        width: 6px;
     22        z-index: 20;
     23}
     24
     25/* side admin menu */
     26#adminmenu {
     27
     28        * {
     29                .no-user-select();
     30        }
     31
     32        li {
     33                margin: 0;
     34                padding: 0;
     35                cursor: pointer;
     36        }
     37
     38        a {
     39                display: block;
     40                line-height: 18px;
     41                padding: 2px 5px;
     42        }
     43
     44        li.menu-top {
     45                min-height: 28px;
     46                position: relative;
     47        }
     48
     49        .wp-submenu {
     50                list-style: none;
     51                padding: 4px 0;
     52                margin: 0;
     53                position: absolute;
     54                top: -1000em;
     55                left: 146px;
     56                z-index: 1000;
     57                overflow: visible;
     58                border-width: 1px;
     59                border-style: solid;
     60                .rounded-right();
     61        }
     62
     63        .js & .sub-open,
     64        .js & .opensub .wp-submenu,
     65        a.menu-top:focus + .wp-submenu,
     66        .no-js & li.wp-has-submenu:hover .wp-submenu {
     67                top: -1px;
     68        }
     69
     70        .wp-has-current-submenu .wp-submenu,
     71        .no-js & li.wp-has-current-submenu:hover .wp-submenu,
     72        a.wp-has-current-submenu:focus + .wp-submenu,
     73        .wp-has-current-submenu .wp-submenu.sub-open,
     74        .wp-has-current-submenu.opensub .wp-submenu {
     75                position: relative;
     76                z-index: 3;
     77                top: auto;
     78                left: auto;
     79                right: auto;
     80                bottom: auto;
     81                border: 0 none;
     82
     83                .no-box-shadows();
     84        }
     85
     86        .folded & .wp-submenu.sub-open,
     87        .folded & .opensub .wp-submenu,
     88        .folded & .wp-has-current-submenu .wp-submenu.sub-open,
     89        .folded & .wp-has-current-submenu.opensub .wp-submenu,
     90        .folded & a.menu-top:focus + .wp-submenu,
     91        .folded & .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
     92        .no-js.folded & .wp-has-submenu:hover .wp-submenu  {
     93                top: -1px;
     94                left: 32px;
     95        }
     96
     97        .folded & a.wp-has-current-submenu:focus + .wp-submenu,
     98        .folded & .wp-has-current-submenu .wp-submenu {
     99                border-width: 1px;
     100                border-style: solid;
     101                position: absolute;
     102                top: -1000em;
     103        }
     104
     105        .wp-submenu a {
     106                font-size: 12px;
     107                line-height: 18px;
     108                margin: 0;
     109                padding-left: 12px;
     110        }
     111
     112        .wp-not-current-submenu li > a {
     113                padding-left: 16px;
     114        }
     115
     116        .wp-has-current-submenu ul > li > a,
     117        .folded & li.menu-top .wp-submenu > li > a {
     118                padding-left: 12px;
     119        }
     120
     121        a.menu-top,
     122        .wp-submenu-head {
     123                .bold-font(13px, 18px);
     124                padding: 0;
     125        }
     126
     127        .wp-submenu-head,
     128        .folded & .wp-menu-name {
     129                display: none;
     130        }
     131
     132        .folded & .wp-submenu-head {
     133                display: block;
     134        }
     135
     136        .wp-submenu li {
     137                padding: 0;
     138                margin: 0;
     139                overflow: hidden;
     140        }
     141
     142        a.menu-top {
     143                border-width: 1px 0;
     144                border-style: solid none;
     145        }
     146
     147        .wp-menu-image img {
     148                padding: 7px 0 0 7px;
     149                opacity: 0.6;
     150                filter: alpha(opacity=60);
     151        }
     152
     153        div.wp-menu-name {
     154                padding: 5px;
     155        }
     156
     157        div.wp-menu-image {
     158                float: left;
     159                width: 28px;
     160                height: 28px;
     161        }
     162
     163        .folded & div.wp-menu-image {
     164                width: 32px;
     165                position: absolute;
     166                z-index: 25;
     167        }
     168
     169        .folded & a.menu-top {
     170                height: 28px;
     171        }
     172
     173        .wp-menu-arrow div {
     174                display: none;
     175                position: absolute;
     176                top: 7px;
     177                left: -1px;
     178                width: 14px;
     179                height: 15px;
     180
     181                -moz-transform:    matrix( -0.6, 1, 0.6, 1, 0, 0 );
     182                -webkit-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 );
     183                -o-transform:      matrix( -0.6, 1, 0.6, 1, 0, 0 );
     184                -ms-transform:     matrix( -0.6, 1, 0.6, 1, 0, 0 );
     185                transform:         matrix( -0.6, 1, 0.6, 1, 0, 0 );
     186        }
     187
     188        li.wp-not-current-submenu .wp-menu-arrow {
     189                -moz-transform:    translate( 145px );
     190                -webkit-transform: translate( 145px );
     191                -o-transform:      translate( 145px );
     192                -ms-transform:     translate( 145px );
     193                transform:         translate( 145px );
     194                height: 28px;
     195                border-width: 1px 0;
     196                border-style: solid;
     197                top: 0;
     198        }
     199
     200        .folded & li .wp-menu-arrow {
     201                -moz-transform:    translate( 32px );
     202                -webkit-transform: translate( 32px );
     203                -o-transform:      translate( 32px );
     204                -ms-transform:     translate( 32px );
     205                transform:         translate( 32px );
     206        }
     207
     208        li.current .wp-menu-arrow,
     209        li.wp-has-current-submenu .wp-menu-arrow,
     210        li.wp-has-current-submenu .wp-menu-arrow div,
     211        li.wp-has-submenu .wp-menu-arrow div,
     212        li.current .wp-menu-arrow div,
     213        .no-js & li.wp-has-submenu:hover .wp-menu-arrow,
     214        li.wp-has-submenu.opensub .wp-menu-arrow,
     215        a.wp-has-submenu:focus .wp-menu-arrow,
     216        a:hover .wp-menu-arrow {
     217                display: block;
     218        }
     219
     220        li.current .wp-menu-arrow,
     221        li.wp-menu-open .wp-menu-arrow {
     222                top: 0;
     223        }
     224
     225        .no-js & li.wp-has-submenu:hover .wp-menu-arrow,
     226        li.wp-has-submenu.opensub .wp-menu-arrow,
     227        a.wp-has-submenu:focus .wp-menu-arrow {
     228                z-index: 1001;
     229        }
     230
     231        .ie8 & li.menu-top:hover .wp-menu-arrow {
     232                display: none;
     233        }
     234
     235        .wp-not-current-submenu .wp-menu-arrow div {
     236                width: 15px;
     237                top: 6px;
     238                border-width: 0 0 1px 1px;
     239                border-style: solid;
     240        }
     241
     242        .wp-menu-arrow,
     243        .folded & li .wp-menu-arrow div,
     244        .no-js & li.wp-not-current-submenu:hover .wp-menu-arrow {
     245                display: none;
     246        }
     247
     248        .folded & li.current .wp-menu-arrow,
     249        .folded & li.current .wp-menu-arrow div,
     250        .folded & li.wp-has-current-submenu .wp-menu-arrow div,
     251        .folded & li.wp-menu-open .wp-menu-arrow,
     252        .folded & li a:focus .wp-menu-arrow {
     253                display: block;
     254        }
     255
     256        li.menu-top:hover .wp-menu-image img,
     257        li.wp-has-current-submenu .wp-menu-image img {
     258                opacity: 1;
     259                filter: alpha(opacity=100);
     260        }
     261
     262        li.wp-menu-separator {
     263                height: 3px;
     264                padding: 0;
     265                margin: 0;
     266                border-width: 1px 0;
     267                border-style: solid;
     268                cursor: inherit;
     269        }
     270
     271        div.separator {
     272                height: 1px;
     273                padding: 0;
     274                border-width: 1px 0 0 0;
     275                border-style: solid;
     276        }
     277
     278        .wp-submenu .wp-submenu-head {
     279                padding: 5px 4px 5px 10px;
     280                margin: -4px -1px 4px;
     281                border-width: 1px 0;
     282                border-style: solid;
     283                -moz-border-top-right-radius: 3px;
     284                -webkit-border-top-right-radius: 3px;
     285                border-top-right-radius: 3px;
     286        }
     287
     288        li.wp-menu-open {
     289                border-width: 0 0 1px;
     290                border-style: solid;
     291        }
     292
     293        li.current,
     294        .folded & li.wp-menu-open {
     295                border: 0 none;
     296        }
     297
     298        .folded & li.wp-has-current-submenu {
     299                margin-bottom: 1px;
     300        }
     301
     302        .folded & .wp-has-current-submenu.menu-top-last {
     303                margin-bottom: 0;
     304        }
     305}
     306
     307.wp-menu-arrow {
     308        z-index: 25;
     309        position: absolute;
     310        right: 100%;
     311        margin: 0;
     312        height: 30px;
     313        width: 6px;
     314
     315        -moz-transform:    translate( 146px );
     316        -webkit-transform: translate( 146px );
     317        -o-transform:      translate( 146px );
     318        -ms-transform:     translate( 146px );
     319        transform:         translate( 146px );
     320}
     321
     322#adminmenu .awaiting-mod,
     323#adminmenu span.update-plugins,
     324#sidemenu li a span.update-plugins {
     325        position: absolute;
     326        font-family: sans-serif;
     327        .bold-font(9px, 17px);
     328        margin-top: 1px;
     329        margin-left: 7px;
     330        .rounded(10px);
     331        z-index: 26;
     332}
     333
     334#adminmenu li .awaiting-mod span,
     335#adminmenu li span.update-plugins span,
     336#sidemenu li a span.update-plugins span {
     337        display: block;
     338        padding: 0 6px;
     339}
     340
     341#adminmenu li span.count-0,
     342#sidemenu li a .count-0 {
     343        display: none;
     344}
     345
     346#collapse-menu {
     347        font-size: 12px;
     348        line-height: 34px;
     349        border-width: 1px 0 0;
     350        border-style: solid;
     351}
     352
     353.folded #collapse-menu span {
     354        display: none;
     355}
     356
     357#collapse-button,
     358#collapse-button div {
     359        width: 15px;
     360        height: 15px;
     361}
     362
     363#collapse-button {
     364        float: left;
     365        margin: 8px 6px;
     366        border-width: 1px;
     367        border-style: solid;
     368        .rounded(10px);
     369}
     370
     371/* Auto-folding of the admin menu */
     372@media only screen and (max-width: 900px) {
     373        .auto-fold #wpcontent,
     374        .auto-fold #wpfooter {
     375                margin-left: 52px;
     376        }
     377
     378        .auto-fold #adminmenuback,
     379        .auto-fold #adminmenuwrap,
     380        .auto-fold #adminmenu,
     381        .auto-fold #adminmenu li.menu-top {
     382                width: 32px;
     383        }
     384
     385        .auto-fold #adminmenu .wp-submenu.sub-open,
     386        .auto-fold #adminmenu .opensub .wp-submenu,
     387        .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
     388        .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
     389        .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
     390        .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu  {
     391                top: -1px;
     392                left: 32px;
     393        }
     394
     395        .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
     396        .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
     397                border-width: 1px;
     398                border-style: solid;
     399                position: absolute;
     400                top: -1000em;
     401        }
     402
     403        .auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
     404                padding-left: 12px;
     405        }
     406
     407        .auto-fold #adminmenu .wp-menu-name {
     408                display: none;
     409        }
     410
     411        .auto-fold #adminmenu .wp-submenu-head {
     412                display: block;
     413        }
     414
     415        .auto-fold #adminmenu div.wp-menu-image {
     416                width: 32px;
     417                position: absolute;
     418                z-index: 25;
     419        }
     420
     421        .auto-fold #adminmenu a.menu-top {
     422                height: 28px;
     423        }
     424
     425        .auto-fold #adminmenu li .wp-menu-arrow {
     426                -moz-transform:    translate( 32px );
     427                -webkit-transform: translate( 32px );
     428                -o-transform:      translate( 32px );
     429                -ms-transform:     translate( 32px );
     430                transform:         translate( 32px );
     431        }
     432
     433        .auto-fold #adminmenu li .wp-menu-arrow div {
     434                display: none;
     435        }
     436
     437        .auto-fold #adminmenu li.current .wp-menu-arrow,
     438        .auto-fold #adminmenu li.current .wp-menu-arrow div,
     439        .auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
     440        .auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,
     441        .auto-fold #adminmenu li a:focus .wp-menu-arrow {
     442                display: block;
     443        }
     444
     445        .auto-fold #adminmenu li.wp-menu-open {
     446                border: 0 none;
     447        }
     448
     449        .auto-fold #adminmenu li.wp-has-current-submenu {
     450                margin-bottom: 1px;
     451        }
     452
     453        .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
     454                margin-bottom: 0;
     455        }
     456
     457        .auto-fold #collapse-menu span {
     458                display: none;
     459        }
     460
     461}
     462
     463/* List table styles */
     464.post-com-count-wrapper {
     465        min-width: 22px;
     466        font-family: sans-serif;
     467}
     468
     469.post-com-count {
     470        background-image: url('../images/bubble_bg.gif');
     471        height: 1.3em;
     472        line-height: 1.1em;
     473        display: block;
     474        text-decoration: none;
     475        padding: 0 0 6px;
     476        cursor: pointer;
     477        background-position: center -80px;
     478        background-repeat: no-repeat;
     479
     480        span {
     481                .bold-font(11px, 1.4em);
     482                height: 1.4em;
     483                min-width: 0.7em;
     484                padding: 0 6px;
     485                display: inline-block;
     486                .rounded(5px);
     487        }
     488
     489        strong & {
     490                background-position: center -55px;
     491        }
     492
     493        &:hover {
     494                background-position: center -3px;
     495        }
     496
     497        .column-response & {
     498                float: left;
     499                margin-right: 5px;
     500                text-align: center;
     501        }
     502}
     503
     504.response-links {
     505        float: left;
     506}
     507
     508#the-comment-list .attachment-80x60 {
     509        padding: 4px 8px;
     510}
     511
     512th .comment-grey-bubble {
     513        background-image: url('../images/comment-grey-bubble.png');
     514        background-repeat: no-repeat;
     515        height: 12px;
     516        width: 12px;
     517}
     518 No newline at end of file
  • new file wp-admin/css/less/modules/notifications.less

    diff --git a/wp-admin/css/less/modules/notifications.less b/wp-admin/css/less/modules/notifications.less
    new file mode 100644
    index 0000000..485a792
    - +  
     1/*------------------------------------------------------------------------------
     2  4.0 - Notifications
     3------------------------------------------------------------------------------*/
     4
     5#update-nag,
     6.update-nag {
     7        line-height: 19px;
     8        padding: 5px 0;
     9        font-size: 12px;
     10        text-align: center;
     11        margin: -1px 15px 0 5px;
     12        border-width: 1px;
     13        border-style: solid;
     14        .rounded-bottom();
     15}
     16
     17.plugins .plugin-update {
     18        padding: 0;
     19}
     20
     21.plugin-update .update-message {
     22        margin: 0 10px 8px 31px;
     23        font-weight: bold;
     24}
     25
     26ul#dismissed-updates {
     27        display: none;
     28}
     29
     30form.upgrade {
     31        margin-top: 8px;
     32}
     33
     34form.upgrade .hint {
     35        font-style: italic;
     36        font-size: 85%;
     37        margin: -0.5em 0 2em 0;
     38}
     39
     40.update-php .spinner {
     41        float: none;
     42        margin: -4px 0;
     43}
     44
     45#ajax-loading,
     46.ajax-loading,
     47.ajax-feedback,
     48.imgedit-wait-spin,
     49.list-ajax-loading { /* deprecated */
     50        visibility: hidden;
     51}
     52
     53#ajax-response.alignleft {
     54        margin-left: 2em;
     55}
     56 No newline at end of file
  • new file wp-admin/css/less/modules/plugins.less

    diff --git a/wp-admin/css/less/modules/plugins.less b/wp-admin/css/less/modules/plugins.less
    new file mode 100644
    index 0000000..e7b826d
    - +  
     1/*------------------------------------------------------------------------------
     2  17.0 - Plugins
     3------------------------------------------------------------------------------*/
     4
     5#dashboard_right_now .versions .b,
     6#post-status-display,
     7#post-visibility-display,
     8#adminmenu .wp-submenu li.current,
     9#adminmenu .wp-submenu li.current a,
     10#adminmenu .wp-submenu li.current a:hover,
     11.media-item .percent,
     12.plugins .name,
     13#pass-strength-result.strong,
     14#pass-strength-result.short,
     15#ed_reply_toolbar #ed_reply_strong,
     16.item-controls .item-order a,
     17.feature-filter .feature-name {
     18        font-weight: bold;
     19}
     20
     21.plugins {
     22        p {
     23                margin: 0 4px;
     24                padding: 0;
     25
     26                .desc & {
     27                        margin: 0 0 8px;
     28                }
     29        }
     30
     31        td.desc {
     32                line-height: 1.5em;
     33        }
     34
     35        .desc ul,
     36        .desc ol {
     37                margin: 0 0 0 2em;
     38        }
     39
     40        .desc ul {
     41                list-style-type: disc;
     42        }
     43
     44        .row-actions-visible {
     45                padding: 0;
     46        }
     47
     48        tbody th.check-column {
     49                padding: 7px 0;
     50        }
     51
     52        .inactive td,
     53        .inactive th,
     54        .active td,
     55        .active th {
     56                border-top-style: solid;
     57                border-top-width: 1px;
     58                padding: 5px 7px 0;
     59        }
     60
     61        .update th,
     62        .update td {
     63                border-bottom: 0;
     64        }
     65
     66        #wpbody-content & .plugin-title,
     67        #wpbody-content & .theme-title {
     68                padding-right: 12px;
     69                white-space: nowrap;
     70        }
     71
     72        .second,
     73        .row-actions-visible {
     74                padding: 0 0 5px;
     75        }
     76
     77        .update .second,
     78        .update .row-actions-visible {
     79                padding-bottom: 0;
     80        }
     81}
     82
     83.plugin-update-tr td {
     84        border-top: 0;
     85}
     86
     87.plugins-php .widefat tfoot th,
     88.plugins-php .widefat tfoot td {
     89        border-top-style: solid;
     90        border-top-width: 1px;
     91}
     92
     93.plugin-update-tr .update-message {
     94        margin: 5px;
     95        padding: 3px 5px;
     96}
     97
     98.plugin-install-php h4 {
     99        margin: 2.5em 0 8px;
     100}
     101 No newline at end of file
  • new file wp-admin/css/less/modules/press-this.less

    diff --git a/wp-admin/css/less/modules/press-this.less b/wp-admin/css/less/modules/press-this.less
    new file mode 100644
    index 0000000..b105735
    - +  
     1.pressthis {
     2        margin: 20px 0;
     3
     4        a,
     5        a:hover,
     6        a:focus,
     7        a:active {
     8                display: inline-block;
     9                position: relative;
     10                cursor: move;
     11                color: #333;
     12                .linear-gradient(#e6e6e6, 7%, #d8d8d8, 77%);
     13                .rounded(5px);
     14                border: 1px solid #b4b4b4;
     15                font-style: normal;
     16                line-height: 16px;
     17                font-size: 14px;
     18                text-decoration: none;
     19                text-shadow: 0 1px 0px #fff;
     20        }
     21
     22        a:active {
     23                outline: none;
     24        }
     25
     26        a:hover:after {
     27                -webkit-transform: skew(20deg) rotate(9deg);
     28                -moz-transform: skew(20deg) rotate(9deg);
     29                transform: skew(20deg) rotate(9deg);
     30                -moz-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
     31                -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
     32                box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
     33        }
     34
     35        a span {
     36                background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px;
     37                background-size: 24px 20px;
     38                padding: 8px 11px 8px 27px;
     39                margin: 0 5px;
     40                display: inline-block;
     41        }
     42
     43        a:after {
     44                content: '';
     45                width: 70%;
     46                height: 55%;
     47                z-index: -1;
     48                position: absolute;
     49                right: 10px;
     50                bottom: 9px;
     51                background: transparent;
     52
     53                -webkit-transform: skew(20deg) rotate(6deg);
     54                -moz-transform: skew(20deg) rotate(6deg);
     55                transform: skew(20deg) rotate(6deg);
     56                -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
     57                box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
     58        }
     59
     60        /* Header */
     61        #wphead {
     62                height: 32px;
     63                margin-left: 0;
     64                margin-right: 0;
     65                margin-bottom: 5px;
     66
     67                h1 {
     68                        .normal-font(16px, 32px);
     69                        margin: 0;
     70                        float: left;
     71               
     72                        a {
     73                                text-decoration: none;
     74
     75                                &:hover {
     76                                        text-decoration: underline;
     77                                }
     78                        }
     79                }
     80        }
     81
     82        #header-logo {
     83                float: left;
     84                margin: 7px 7px 0;
     85                .no-user-select();
     86        }
     87
     88        #message {
     89                margin: 10px 0;
     90        }
     91
     92        #title {
     93                margin-left: 0;
     94                margin-right: 0;
     95                .border-box();
     96        }
     97
     98        .tagchecklist span a {
     99                background: transparent url(../images/xit.gif) no-repeat 0 0;
     100        }
     101
     102        #titlediv {
     103                margin: 0;
     104        }
     105
     106        .wp-media-buttons {
     107                cursor: default;
     108                padding: 8px 8px 0;
     109        }
     110
     111        .howto {
     112                margin-top: 2px;
     113                margin-bottom: 3px;
     114                font-size: 12px;
     115                font-style: italic;
     116                display: block;
     117        }
     118
     119        /* Editor/Main Column */
     120        #poststuff {
     121                margin: 0 10px 10px;
     122                padding: 0;
     123        }
     124
     125        #photo-add-url-div input[type="text"] {
     126                width: 220px;
     127        }
     128
     129        .inner-sidebar {
     130                width: 200px;
     131       
     132                .sleeve {
     133                        padding-top: 5px;
     134                }
     135        }
     136
     137        #submitdiv p {
     138                margin: 0;
     139                padding: 6px;
     140        }
     141
     142        #submitdiv #publishing-actions {
     143                border-bottom: 1px solid @border-color;
     144        }
     145
     146        #publish {
     147                float: right;
     148        }
     149
     150        #poststuff h2,
     151        #poststuff h3 {
     152                font-size: 14px;
     153                line-height: 1;
     154        }
     155
     156        #tagsdiv-post_tag h3,
     157        #categorydiv h3 {
     158                cursor: pointer;
     159        }
     160
     161        #submitdiv h3 {
     162                cursor: default;
     163        }
     164
     165        .postbox,
     166        .stuffbox {
     167                margin-bottom: 10px;
     168                min-width: 0;
     169        }
     170
     171        .actions {
     172                float: right;
     173                margin: -19px 0 0;
     174       
     175                #extra-fields & {
     176                        margin: -32px -7px 0 0;
     177                }
     178       
     179                li {
     180                        float: left;
     181                        list-style: none;
     182                        margin-right: 10px;
     183                }
     184        }
     185
     186        /* Categories */
     187        .categorydiv div.tabs-panel {
     188                height: 100px;
     189        }
     190
     191        /* Tags */
     192        .tagsdiv .newtag {
     193                width: 120px;
     194        }
     195
     196        #content {
     197                margin: 5px 0;
     198                padding: 0 5px;
     199                border: 0 none;
     200                height: 345px;
     201                font-family: Consolas, Monaco, monospace;
     202                font-size: 13px;
     203                line-height: 19px;
     204                background: transparent;
     205        }
     206
     207        /* Submit */
     208        #publishing-actions .spinner {
     209                display: inline;
     210                vertical-align: middle;
     211        }
     212}
     213
     214/* press-this */
     215body.press-this {
     216        color: #333;
     217        margin: 0;
     218        padding: 0;
     219        min-width: 675px;
     220        min-height: 400px;
     221}
     222
     223.press-this-sidebar {
     224        float: right;
     225        width: 200px;
     226        padding-top: 10px;
     227}
     228 No newline at end of file
  • new file wp-admin/css/less/modules/settings.less

    diff --git a/wp-admin/css/less/modules/settings.less b/wp-admin/css/less/modules/settings.less
    new file mode 100644
    index 0000000..61893d7
    - +  
     1/*------------------------------------------------------------------------------
     2  20.0 - Settings
     3------------------------------------------------------------------------------*/
     4
     5#utc-time, #local-time {
     6        padding-left: 25px;
     7        font-style: italic;
     8        font-family: sans-serif;
     9}
     10
     11.defaultavatarpicker .avatar {
     12        margin: 2px 0;
     13        vertical-align: middle;
     14}
     15
     16.options-general-php .spinner {
     17        float: none;
     18        margin: -3px 3px;
     19}
     20 No newline at end of file
  • new file wp-admin/css/less/modules/tags.less

    diff --git a/wp-admin/css/less/modules/tags.less b/wp-admin/css/less/modules/tags.less
    new file mode 100644
    index 0000000..1f9407c
    - +  
     1/*------------------------------------------------------------------------------
     2  13.0 - Tags
     3------------------------------------------------------------------------------*/
     4
     5#poststuff .taghint {
     6        color: #aaa;
     7        margin: 15px 0 -24px 12px;
     8}
     9
     10
     11.ajaxtag .newtag {
     12        position: relative;
     13}
     14
     15.tagsdiv {
     16        .newtag {
     17                width: 180px;
     18        }
     19
     20        .the-tags {
     21                display: block;
     22                height: 60px;
     23                margin: 0 auto;
     24                overflow: auto;
     25                width: 260px;
     26
     27                #post-body-content & {
     28                        margin: 0 5px;
     29                }
     30        }
     31
     32        #poststuff & .howto {
     33                margin: 0 0 6px 8px;
     34        }
     35}
     36
     37p.popular-tags {
     38        .rounded(8px);
     39        border-width: 1px;
     40        border-style: solid;
     41        line-height: 2em;
     42        max-width: 1000px;
     43        padding: 8px 12px 12px;
     44        text-align: justify;
     45
     46        a {
     47                padding: 0 3px;
     48        }
     49}
     50
     51.tagcloud {
     52        width: 97%;
     53        margin: 0 0 40px;
     54        text-align: justify;
     55
     56        h3 {
     57                margin: 2px 0 12px;
     58        }
     59}
     60
     61.ac_results {
     62        padding: 0;
     63        margin: 0;
     64        list-style: none;
     65        position: absolute;
     66        z-index: 10000;
     67        display: none;
     68        border-width: 1px;
     69        border-style: solid;
     70
     71        li {
     72                padding: 2px 5px;
     73                white-space: nowrap;
     74                text-align: left;
     75        }
     76}
     77
     78.ac_over {
     79        cursor: pointer;
     80}
     81
     82.ac_match {
     83        text-decoration: underline;
     84}
     85
     86/* links tables */
     87table.links-table {
     88        width: 100%;
     89}
     90
     91.links-table {
     92        th {
     93                font-weight: normal;
     94                text-align: left;
     95                vertical-align: top;
     96                min-width: 80px;
     97                width: 20%;
     98                word-wrap: break-word;
     99        }
     100
     101        th,
     102        td {
     103                padding: 5px 0;
     104        }
     105
     106        td {
     107                label {
     108                        margin-right: 8px;
     109                }
     110
     111                input[type="text"],
     112                textarea {
     113                        width: 100%;
     114                }
     115        }
     116
     117        #link_rel {
     118                max-width: 280px;
     119        }
     120}
     121 No newline at end of file
  • new file wp-admin/css/less/modules/text.less

    diff --git a/wp-admin/css/less/modules/text.less b/wp-admin/css/less/modules/text.less
    new file mode 100644
    index 0000000..6182848
    - +  
     1div.sidebar-name h3,
     2#menu-management .nav-tab,
     3#dashboard_plugins h5,
     4a.rsswidget,
     5#dashboard_right_now td.b,
     6#dashboard-widgets h4,
     7.tool-box .title,
     8#poststuff h3,
     9.metabox-holder h3,
     10.pressthis a,
     11#your-profile legend,
     12.inline-edit-row fieldset span.title,
     13.inline-edit-row fieldset span.checkbox-title,
     14.tablenav .displaying-num,
     15.widefat th,
     16.quicktags,
     17.search {
     18        .serif-font();
     19}
     20
     21h2 .nav-tab,
     22.wrap h2,
     23.subtitle,
     24.login form .input {
     25        .sans-serif-font();
     26}
     27
     28.quicktags,
     29.search {
     30        font-size: 12px;
     31}
     32
     33.icon32 {
     34        float: left;
     35        height: 34px;
     36        margin: 7px 8px 0 0;
     37        width: 36px;
     38}
     39
     40.icon16 {
     41        height: 18px;
     42        width: 18px;
     43        padding: 6px 6px;
     44        margin: -6px 0 0 -8px;
     45        float: left;
     46}
     47
     48.key-labels label {
     49        line-height: 24px;
     50}
     51
     52.pre {
     53        /* https://developer.mozilla.org/en-US/docs/CSS/white-space */
     54        white-space: pre-wrap; /* css-3 */
     55        word-wrap: break-word; /* IE 5.5 - 7 */
     56}
     57
     58.howto {
     59        font-style: italic;
     60        display: block;
     61        font-family: sans-serif;
     62}
     63
     64p.install-help {
     65        margin: 8px 0;
     66        font-style: italic;
     67}
     68
     69.no-break {
     70        white-space: nowrap;
     71}
     72 No newline at end of file
  • new file wp-admin/css/less/modules/themes.less

    diff --git a/wp-admin/css/less/modules/themes.less b/wp-admin/css/less/modules/themes.less
    new file mode 100644
    index 0000000..5206de1
    - +  
     1/*------------------------------------------------------------------------------
     2  16.0 - Themes
     3------------------------------------------------------------------------------*/
     4
     5.theme-install-php {
     6        .tablenav {
     7                height: auto;
     8        }
     9
     10        .spinner {
     11                margin-top: 9px;
     12        }
     13}
     14
     15h3.available-themes {
     16        margin: 0.3em 0 1em;
     17        float: left;
     18}
     19
     20.available-theme {
     21        display: inline-block;
     22        margin-right: 10px;
     23        overflow: hidden;
     24        padding: 20px 20px 20px 0;
     25        vertical-align: top;
     26        width: 300px;
     27
     28        .screenshot {
     29                width: 300px;
     30                height: 225px;
     31                display: block;
     32                border-width: 1px;
     33                border-style: solid;
     34                margin-bottom: 10px;
     35                overflow: hidden;
     36        }
     37
     38        img {
     39                width: 300px;
     40        }
     41
     42        h3 {
     43                margin: 15px 0 0;
     44        }
     45
     46        .theme-author {
     47                line-height: 18px;
     48        }
     49
     50        .action-links {
     51                margin-top: 10px;
     52                overflow: hidden;
     53        }
     54
     55        a.screenshot:focus {
     56                border-color: #777;
     57        }
     58}
     59
     60#current-theme .theme-info li,
     61.theme-options li,
     62.available-theme .action-links li {
     63        float: left;
     64        padding-right: 10px;
     65        margin-right: 10px;
     66        border-right: 1px solid @border-color;
     67
     68        &:last-child {
     69                padding-right: 0;
     70                margin-right: 0;
     71                border-right: 0;
     72        }
     73}
     74
     75.available-theme .action-links {
     76        li {
     77                padding-right: 8px;
     78                margin-right: 8px;
     79
     80                .ie8 & {
     81                        padding-right: 7px;
     82                        margin-right: 7px;
     83                }
     84        }
     85
     86        .delete-theme {
     87                float: right;
     88                margin-left: 8px;
     89                margin-right: 0;
     90
     91                a {
     92                        color: red;
     93                        padding: 2px;
     94
     95                        &:hover {
     96                                background: red;
     97                                color: white;
     98                                text-decoration: none;
     99                        }
     100                }
     101        }
     102
     103        p {
     104                float: left;
     105        }
     106}
     107
     108#current-theme {
     109        margin: 20px 0 10px;
     110        padding: 0 0 20px;
     111        border-bottom-width: 1px;
     112        border-bottom-style: solid;
     113        overflow: hidden;
     114
     115        &.has-screenshot {
     116                padding-left: 330px;
     117        }
     118
     119        h3 {
     120                margin: 0;
     121                font-size: 12px;
     122                font-weight: normal;
     123                color: #999;
     124        }
     125
     126        h4 {
     127                margin: 3px 0 16px;
     128                font-size: 20px;
     129        }
     130
     131        h4 span {
     132                margin-left: 20px;
     133                font-size: 12px;
     134                font-weight: normal;
     135        }
     136
     137        a {
     138                border-bottom: none;
     139        }
     140
     141        .theme-info {
     142                margin: 1em 0;
     143                overflow: hidden;
     144        }
     145
     146        .theme-description {
     147                margin-top: 5px;
     148                max-width: 600px;
     149                line-height: 1.6em;
     150        }
     151
     152        img {
     153                float: left;
     154                width: 300px;
     155                margin-left: -330px;
     156
     157                border-width: 1px;
     158                border-style: solid;
     159        }
     160}
     161
     162.theme-options {
     163        overflow: hidden;
     164        font-size: 14px;
     165        padding-bottom: 10px;
     166
     167        .load-customize {
     168                margin-right: 30px;
     169                float: left;
     170        }
     171
     172        span {
     173                float: left;
     174                margin-right: 10px;
     175                text-transform: uppercase;
     176                font-size: 11px;
     177                line-height: 18px;
     178                color: #999;
     179        }
     180
     181        ul {
     182                float: left;
     183                margin: 0;
     184        }
     185}
     186
     187/* Allow for three-up in small windows when sidebar is collapsed */
     188@media only screen and (max-width: 1200px) {
     189        .folded {
     190                .available-theme,
     191                .available-theme .screenshot {
     192                        width: 300px;
     193                }
     194
     195                .available-theme .screenshot {
     196                        height: 225px;
     197                }
     198
     199                #current-theme {
     200                        img {
     201                                width: 300px;
     202                                margin-left: -330px;
     203                        }
     204
     205                        &.has-screenshot {
     206                                padding-left: 330px;
     207                        }
     208                }
     209        }
     210}
     211
     212/* Adjust three-up display in smaller windows when sidebar is collapsed */
     213@media only screen and (max-width: 1079px) {
     214        .folded {
     215                .available-theme,
     216                .available-theme .screenshot {
     217                        width: 270px;
     218                }
     219
     220                .available-theme .screenshot {
     221                        height: 203px;
     222                }
     223
     224                #current-theme {
     225                        img {
     226                                width: 270px;
     227                                margin-left: -300px;
     228                        }
     229
     230                        &.has-screenshot {
     231                                padding-left: 300px;
     232                        }
     233                }
     234        }
     235}
     236
     237/* Allow for three-up on 1024px wide screens, e.g. tablets */
     238@media only screen and (max-width: 1200px) {
     239        .available-theme,
     240        .available-theme .screenshot,
     241        #current-theme img {
     242                width: 240px;
     243        }
     244
     245        .available-theme {
     246                .screenshot {
     247                        height: 180px;
     248                }
     249
     250                img {
     251                        width: 100%;
     252                }
     253        }
     254
     255        #current-theme {
     256                &.has-screenshot {
     257                        padding-left: 270px;
     258                }
     259
     260                img {
     261                        margin-left: -270px;
     262                }
     263        }
     264}
     265
     266#post-body ul.add-menu-item-tabs li.tabs a,
     267#TB_window #TB_title a.tb-theme-preview-link,
     268#TB_window #TB_title a.tb-theme-preview-link:visited {
     269        font-weight: bold;
     270        text-decoration: none;
     271}
     272
     273#TB_window #TB_title {
     274        background-color: #222;
     275        color: #cfcfcf;
     276}
     277
     278#broken-themes {
     279        text-align: left;
     280        width: 50%;
     281        border-spacing: 3px;
     282        padding: 3px;
     283}
     284
     285.theme-install-php h4 {
     286        margin: 2.5em 0 8px;
     287}
     288
     289/*------------------------------------------------------------------------------
     290  16.1 - Custom Header Screen
     291------------------------------------------------------------------------------*/
     292
     293.appearance_page_custom-header {
     294        #headimg {
     295                border: 1px solid @border-color;
     296                overflow: hidden;
     297                width: 100%;
     298        }
     299
     300        #upload-form p label {
     301                font-size: 12px;
     302        }
     303
     304        .available-headers .default-header {
     305                float: left;
     306                margin: 0 20px 20px 0;
     307        }
     308
     309        .random-header {
     310                clear: both;
     311                margin: 0 20px 20px 0;
     312                vertical-align: middle;
     313        }
     314
     315        .available-headers label input,
     316        .random-header label input {
     317                margin-right: 10px;
     318        }
     319
     320        .available-headers label img {
     321                vertical-align: middle;
     322        }
     323}
     324
     325
     326/*------------------------------------------------------------------------------
     327  16.2 - Custom Background Screen
     328------------------------------------------------------------------------------*/
     329
     330div#custom-background-image {
     331        min-height: 100px;
     332        border: 1px solid @border-color;
     333
     334        img {
     335                max-width: 400px;
     336                max-height: 300px;
     337        }
     338}
     339
     340
     341/*------------------------------------------------------------------------------
     342  16.3 - Tabbed Admin Screen Interface (Experimental)
     343------------------------------------------------------------------------------*/
     344
     345.nav-tab {
     346        border-style: solid;
     347        border-width: 1px 1px 0;
     348        color: #aaa;
     349        text-shadow: #fff 0 1px 0;
     350        font-size: 12px;
     351        line-height: 16px;
     352        display: inline-block;
     353        padding: 4px 14px 6px;
     354        text-decoration: none;
     355        margin: 0 6px -1px 0;
     356        .rounded-top();
     357
     358        h2 & {
     359                padding: 4px 10px 6px;
     360                font-weight: 200;
     361                font-size: 20px;
     362                line-height: 24px;
     363        }
     364}
     365
     366.nav-tab-active {
     367        border-width: 1px;
     368        color: #464646;
     369}
     370
     371h2.nav-tab-wrapper, h3.nav-tab-wrapper {
     372        border-bottom-width: 1px;
     373        border-bottom-style: solid;
     374        padding-bottom: 0;
     375}
     376 No newline at end of file
  • new file wp-admin/css/less/modules/users.less

    diff --git a/wp-admin/css/less/modules/users.less b/wp-admin/css/less/modules/users.less
    new file mode 100644
    index 0000000..08a960d
    - +  
     1/*------------------------------------------------------------------------------
     2  18.0 - Users
     3------------------------------------------------------------------------------*/
     4
     5#profile-page {
     6        .form-table {
     7                textarea {
     8                        width: 500px;
     9                        margin-bottom: 6px;
     10                }
     11
     12                #rich_editing {
     13                        margin-right: 5px;
     14                }
     15        }
     16}
     17
     18#your-profile {
     19        legend {
     20                font-size: 22px;
     21        }
     22
     23        #rich_editing {
     24                border: none;
     25        }
     26}
     27
     28#display_name {
     29        width: 15em;
     30}
     31
     32#createuser .form-field input {
     33        width: 25em;
     34}
     35 No newline at end of file
  • new file wp-admin/css/less/modules/widgets.less

    diff --git a/wp-admin/css/less/modules/widgets.less b/wp-admin/css/less/modules/widgets.less
    new file mode 100644
    index 0000000..83cd534
    - +  
     1/* widgets */
     2
     3/* 2 column liquid layout */
     4div.widget-liquid-left {
     5        float: left;
     6        clear: left;
     7        width: 100%;
     8        margin-right: -325px;
     9}
     10
     11div#widgets-left {
     12        margin-left: 5px;
     13        margin-right: 325px;
     14}
     15
     16div#widgets-right {
     17        width: 285px;
     18        margin: 0 auto;
     19}
     20
     21div.widget-liquid-right {
     22        float: right;
     23        clear: right;
     24        width: 300px;
     25}
     26
     27.widget-liquid-right .widget,
     28.inactive-sidebar .widget,
     29.widget-liquid-right .sidebar-description {
     30        width: 250px;
     31        margin: 0 auto 20px;
     32        overflow: hidden;
     33}
     34
     35.widget-liquid-right .sidebar-description {
     36        margin-bottom: 10px;
     37}
     38
     39.inactive-sidebar .widget {
     40        margin: 0 10px 20px;
     41        display: inline-block;
     42}
     43
     44div.sidebar-name {
     45        font-size: 13px;
     46        border-width: 1px;
     47        border-style: solid;
     48        .rounded-top();
     49
     50        h3 {
     51                font-weight: normal;
     52                font-size: 15px;
     53                margin: 0;
     54                padding: 8px 10px;
     55                overflow: hidden;
     56                white-space: nowrap;
     57        }
     58}
     59
     60.js .sidebar-name {
     61        cursor: pointer;
     62}
     63
     64.js .closed .sidebar-name {
     65        .rounded-bottom();
     66}
     67
     68.widget-liquid-right .widgets-sortables,
     69#widgets-left .widget-holder {
     70        border-width: 0 1px 1px;
     71        border-style: none solid solid;
     72        .rounded-bottom();
     73}
     74
     75.js .closed .widgets-sortables,
     76.js .closed .widget-holder {
     77        display: none;
     78}
     79
     80.widget-liquid-right .widgets-sortables {
     81        padding: 15px 0 0;
     82}
     83
     84#available-widgets .widget-holder {
     85        padding: 7px 5px 0;
     86}
     87
     88#available-widgets .widget {
     89        .no-box-shadows();
     90}
     91
     92.inactive-sidebar {
     93        padding: 5px 5px 0;
     94}
     95
     96#widget-list .widget {
     97        width: 250px;
     98        margin: 0 10px 15px;
     99        border: 0 none;
     100        background: transparent;
     101        display: inline-block;
     102        vertical-align: top;
     103}
     104
     105#widget-list .widget-description {
     106        padding: 5px 8px;
     107}
     108
     109.widget-placeholder {
     110        border-width: 1px;
     111        border-style: dashed;
     112        margin: 0 auto 20px;
     113        height: 27px;
     114        width: 250px;
     115
     116        .inactive-sidebar & {
     117                margin: 0 10px 20px;
     118                float: left;
     119        }
     120}
     121
     122div.widgets-holder-wrap {
     123        padding: 0;
     124        margin: 10px 0 20px;
     125}
     126
     127#widgets-left #available-widgets {
     128        background-color: transparent;
     129        border: 0 none;
     130}
     131
     132ul#widget-list {
     133        list-style: none;
     134        margin: 0;
     135        padding: 0;
     136        min-height: 100px;
     137}
     138
     139.widget .widget-top {
     140        margin-bottom: -1px;
     141        .bold-font(12px, 26px);
     142        overflow: hidden;
     143}
     144
     145a.widget-action {
     146        display: block;
     147        width: 24px;
     148        height: 26px;
     149}
     150
     151#available-widgets a.widget-action {
     152        display: none;
     153}
     154
     155.widget-top {
     156        .widget-title {
     157                padding: 7px 9px;
     158        }
     159
     160        .widget-title-action {
     161                float: right;
     162        }
     163
     164        a.widget-action {
     165                background: transparent url(../images/arrows.png) no-repeat 4px 6px;
     166       
     167                &:hover {
     168                        background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px;
     169                }
     170        }
     171}
     172
     173.widget .widget-inside,
     174.widget .widget-description {
     175        padding: 12px 12px 10px;
     176        font-size: 12px;
     177        line-height: 16px;
     178}
     179
     180.widget-inside,
     181.widget-description {
     182        display: none;
     183}
     184
     185#available-widgets .widget-description {
     186        display: block;
     187}
     188
     189.widget .widget-inside p {
     190        margin: 0 0 1em;
     191        padding: 0;
     192}
     193
     194.widget-title h4 {
     195        margin: 0;
     196        padding-bottom: 0.2em;
     197        line-height: 1;
     198        overflow: hidden;
     199        white-space: nowrap;
     200}
     201
     202.widgets-sortables {
     203        min-height: 90px;
     204}
     205
     206.widget-control-actions {
     207        margin-top: 8px;
     208
     209        a {
     210                text-decoration: none;
     211        }
     212
     213        a:hover {
     214                text-decoration: underline;
     215        }
     216
     217        div.alignleft {
     218                margin-top: 6px;
     219        }
     220}
     221
     222div#sidebar-info {
     223        padding: 0 1em;
     224        margin-bottom: 1em;
     225        font-size: 12px;
     226}
     227
     228.widget-title a,
     229.widget-title a:hover {
     230        text-decoration: none;
     231        border-bottom: none;
     232}
     233
     234.widget-control-edit {
     235        display: block;
     236        .normal-font(12px, 26px);
     237        padding: 0 8px 0 0;
     238
     239        .add,
     240        .edit {
     241                display: none;
     242        }
     243}
     244
     245a.widget-control-edit {
     246        text-decoration: none;
     247}
     248
     249#available-widgets .widget-control-edit .add,
     250#widgets-right .widget-control-edit .edit,
     251.inactive-sidebar .widget-control-edit .edit {
     252        display: inline;
     253}
     254
     255.editwidget {
     256        margin: 0 auto 15px;
     257
     258        .widget-inside {
     259                display: block;
     260                padding: 10px;
     261        }
     262}
     263
     264.inactive p.description {
     265        margin: 5px 15px 10px;
     266}
     267
     268#available-widgets p.description {
     269        margin: 0 12px 12px;
     270}
     271
     272.widget-position {
     273        margin-top: 8px;
     274}
     275
     276.inactive {
     277        padding-top: 2px;
     278}
     279
     280.sidebar-name .spinner {
     281        float: none;
     282        margin: 0 3px -3px;
     283}
     284
     285.sidebar-name-arrow {
     286        float: right;
     287        height: 29px;
     288        width: 26px;
     289}
     290
     291.widget-title .in-widget-title {
     292        font-size: 12px;
     293        white-space: nowrap;
     294}
     295
     296#removing-widget {
     297        display: none;
     298        padding-left: 15px;
     299        .normal-font(12px);
     300}
     301
     302.widget-control-noform,
     303#access-off,
     304.widgets_access .widget-action,
     305.widgets_access .sidebar-name-arrow,
     306.widgets_access #access-on,
     307.widgets_access .widget-holder .description {
     308        display: none;
     309}
     310
     311.widgets_access {
     312        .widget-holder,
     313        #widget-list {
     314                padding-top: 10px;
     315        }
     316
     317        #access-off {
     318                display: inline;
     319        }
     320
     321        #wpbody-content .widget-title-action,
     322        #wpbody-content .widget-control-edit,
     323        .closed .widgets-sortables,
     324        .closed .widget-holder {
     325                display: block;
     326        }
     327
     328        .closed .sidebar-name {
     329                .rounded-bottom(0);
     330        }
     331
     332        .sidebar-name,
     333        .widget .widget-top {
     334                cursor: default;
     335        }
     336}
     337 No newline at end of file
  • new file wp-admin/css/less/variables.less

    diff --git a/wp-admin/css/less/variables.less b/wp-admin/css/less/variables.less
    new file mode 100644
    index 0000000..2e1ee5e
    - +  
     1@border-color: #dfdfdf;
  • new file wp-admin/css/less/wp-admin.less

    diff --git a/wp-admin/css/less/wp-admin.less b/wp-admin/css/less/wp-admin.less
    new file mode 100644
    index 0000000..78ce4f1
    - +  
     1@import "variables.less";
     2@import "mixins.less";
     3
     4/*
     5Hello, this is the main WordPress admin CSS file.
     6All the important stuff is in here.
     7
     8TABLE OF CONTENTS:
     9------------------
     10 1.0 - Text Elements
     11 2.0 - Forms
     12 3.0 - Actions
     13 4.0 - Notifications
     14 5.0 - TinyMCE
     15 6.0 - Admin Header
     16        6.1 - Screen Options Tabs
     17        6.2 - Help Menu
     18 7.0 - Main Navigation
     19 8.0 - Layout Blocks
     20 9.0 - Dashboard
     2110.0 - List Posts
     22        10.1 - Inline Editing
     2311.0 - Write/Edit Post Screen
     24        11.1 - Custom Fields
     25        11.2 - Post Revisions
     26        11.3 - Featured Images
     27        11.4 - Post Format Selection
     2812.0 - Categories
     2913.0 - Tags
     3014.0 - Media Screen
     31        14.1 - Media Library
     32        14.2 - Image Editor
     3315.0 - Comments Screen
     3416.0 - Themes
     35        16.1 - Custom Header
     36        16.2 - Custom Background
     37        16.3 - Tabbed Admin Screen Interface
     3817.0 - Plugins
     3918.0 - Users
     4019.0 - Tools (deprecated)
     4120.0 - Settings
     4221.0 - Admin Footer
     4322.0 - About Pages
     4423.0 - Full Overlay w/ Sidebar
     4524.0 - Customize Loader
     4625.0 - Misc
     47*/
     48
     49@import "modules/global.less";
     50@import "modules/text.less";
     51@import "modules/forms.less";
     52@import "modules/actions.less";
     53@import "modules/notifications.less";
     54@import "modules/header.less";
     55@import "modules/navigation.less";
     56@import "modules/layout-blocks.less";
     57@import "modules/dashboard.less";
     58@import "modules/list-posts.less";
     59@import "modules/edit-post.less";
     60@import "modules/categories.less";
     61@import "modules/tags.less";
     62@import "modules/media.less";
     63@import "modules/comments.less";
     64@import "modules/themes.less";
     65@import "modules/plugins.less";
     66@import "modules/users.less";
     67@import "modules/settings.less";
     68@import "modules/footer.less";
     69@import "modules/about.less";
     70@import "modules/full-overlay.less";
     71@import "modules/customize.less";
     72@import "modules/misc.less";
     73@import "modules/login.less";
     74@import "modules/press-this.less";
     75@import "modules/nav-menus.less";
     76@import "modules/widgets.less";
     77@import "modules/accordion.less";
     78@import "modules/media-queries.less";
     79@import "modules/hidpi.less";
     80@import "modules/localized.less";
     81 No newline at end of file
  • wp-admin/css/wp-admin.css

    diff --git a/wp-admin/css/wp-admin.css b/wp-admin/css/wp-admin.css
    index 95c0482..94bab99 100644
    a b  
    1 /*------------------------------------------------------------------------------
    2 
    3 
     1/*
    42Hello, this is the main WordPress admin CSS file.
    53All the important stuff is in here.
    64
    7 
    85TABLE OF CONTENTS:
    96------------------
    107 1.0 - Text Elements
    TABLE OF CONTENTS: 
    3734        16.3 - Tabbed Admin Screen Interface
    383517.0 - Plugins
    393618.0 - Users
    40 19.0 - Tools
     3719.0 - Tools (deprecated)
    413820.0 - Settings
    423921.0 - Admin Footer
    434022.0 - About Pages
    444123.0 - Full Overlay w/ Sidebar
    454224.0 - Customize Loader
    464325.0 - Misc
    47 
    48 ------------------------------------------------------------------------*/
    49 
     44*/
    5045/* 2 column liquid layout */
    5146#wpwrap {
    52         height: auto;
    53         min-height: 100%;
    54         width: 100%;
    55         position: relative;
     47  height: auto;
     48  min-height: 100%;
     49  width: 100%;
     50  position: relative;
    5651}
    57 
    5852#wpcontent {
    59         height: 100%;
     53  height: 100%;
    6054}
    61 
    6255#wpcontent,
    6356#wpfooter {
    64         margin-left: 165px;
     57  margin-left: 165px;
    6558}
    66 
    6759.folded #wpcontent,
    6860.folded #wpfooter {
    69         margin-left: 52px;
     61  margin-left: 52px;
    7062}
    71 
    7263#wpbody-content {
    73         padding-bottom: 65px;
    74         float: left;
    75         width: 100%;
     64  padding-bottom: 65px;
     65  float: left;
     66  width: 100%;
    7667}
    77 
    7868#adminmenuback,
    7969#adminmenuwrap,
    8070#adminmenu,
    8171#adminmenu .wp-submenu {
    82         width: 145px;
     72  width: 145px;
    8373}
    84 
    8574#adminmenuback {
    86         position: absolute;
    87         top: 0;
    88         bottom: 0;
    89         z-index: -1;
     75  position: absolute;
     76  top: 0;
     77  bottom: 0;
     78  z-index: -1;
    9079}
    91 
    9280#adminmenu {
    93         clear: left;
    94         margin: 0;
    95         padding: 0;
    96         list-style: none;
     81  clear: left;
     82  margin: 0;
     83  padding: 0;
     84  list-style: none;
    9785}
    98 
    9986.folded #adminmenuback,
    10087.folded #adminmenuwrap,
    10188.folded #adminmenu,
    10289.folded #adminmenu li.menu-top {
    103         width: 32px;
     90  width: 32px;
    10491}
    105 
    10692/* inner 2 column liquid layout */
    107 
    10893.inner-sidebar {
    109         float: right;
    110         clear: right;
    111         display: none;
    112         width: 281px;
    113         position: relative;
     94  float: right;
     95  clear: right;
     96  display: none;
     97  width: 281px;
     98  position: relative;
    11499}
    115 
    116100.columns-2 .inner-sidebar {
    117         margin-right: auto;
    118         width: 286px;
    119         display: block;
     101  margin-right: auto;
     102  width: 286px;
     103  display: block;
    120104}
    121 
    122105.inner-sidebar #side-sortables,
    123106.columns-2 .inner-sidebar #side-sortables {
    124         min-height: 300px;
    125         width: 280px;
    126         padding: 0;
     107  min-height: 300px;
     108  width: 280px;
     109  padding: 0;
    127110}
    128 
    129111.has-right-sidebar .inner-sidebar {
    130         display: block;
     112  display: block;
    131113}
    132 
    133114.has-right-sidebar #post-body {
    134         float: left;
    135         clear: left;
    136         width: 100%;
    137         margin-right: -2000px;
     115  float: left;
     116  clear: left;
     117  width: 100%;
     118  margin-right: -2000px;
    138119}
    139 
    140120.has-right-sidebar #post-body-content {
    141         margin-right: 300px;
    142         float: none;
    143         width: auto;
     121  margin-right: 300px;
     122  float: none;
     123  width: auto;
    144124}
    145 
    146125/* 2 columns main area */
    147 
    148126#col-container,
    149127#col-left,
    150128#col-right {
    151         overflow: hidden;
    152         padding: 0;
    153         margin: 0;
     129  overflow: hidden;
     130  padding: 0;
     131  margin: 0;
    154132}
    155 
    156133#col-left {
    157         width: 35%;
     134  width: 35%;
    158135}
    159 
    160136#col-right {
    161         float: right;
    162         clear: right;
    163         width: 65%;
     137  float: right;
     138  clear: right;
     139  width: 65%;
    164140}
    165 
    166141.col-wrap {
    167         padding: 0 7px;
     142  padding: 0 7px;
    168143}
    169 
    170144/* utility classes */
    171145.alignleft {
    172         float: left;
     146  float: left;
    173147}
    174 
    175148.alignright {
    176         float: right;
     149  float: right;
    177150}
    178 
    179151.textleft {
    180         text-align: left;
     152  text-align: left;
    181153}
    182 
    183154.textright {
    184         text-align: right;
     155  text-align: right;
    185156}
    186 
    187157.clear {
    188         clear: both;
     158  clear: both;
    189159}
    190 
    191160/* Hide visually but not from screen readers */
    192161.screen-reader-text,
    193162.screen-reader-text span,
    194163.ui-helper-hidden-accessible {
    195         position: absolute;
    196         left: -1000em;
    197         top: -1000em;
    198         height: 1px;
    199         width: 1px;
    200         overflow: hidden;
     164  position: absolute;
     165  left: -1000em;
     166  top: -1000em;
     167  height: 1px;
     168  width: 1px;
     169  overflow: hidden;
    201170}
    202 
    203171.screen-reader-shortcut {
    204         position: absolute;
    205         top: -1000em;
     172  position: absolute;
     173  top: -1000em;
    206174}
    207 
    208175.screen-reader-shortcut:focus {
    209         left: 6px;
    210         top: -21px;
    211         height: auto;
    212         width: auto;
    213         display: block;
    214         font-size: 14px;
    215         font-weight: bold;
    216         padding: 15px 23px 14px;
    217         background: #f1f1f1;
    218         color: #21759b;
    219         border-radius: 3px;
    220         z-index: 100000;
    221         line-height: normal;
    222         -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    223         box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    224         text-decoration: none;
     176  left: 6px;
     177  top: -21px;
     178  height: auto;
     179  width: auto;
     180  display: block;
     181  font-size: 14px;
     182  font-weight: bold;
     183  line-height: normal;
     184  padding: 15px 23px 14px;
     185  background: #f1f1f1;
     186  color: #21759b;
     187  border-radius: 3px;
     188  -moz-border-radius: 3px;
     189  -webkit-border-radius: 3px;
     190  z-index: 100000;
     191  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
     192  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
     193  text-decoration: none;
    225194}
    226 
    227195.hidden,
    228196.js .closed .inside,
    229197.js .hide-if-js,
    TABLE OF CONTENTS: 
    232200.js .wp-core-ui .hide-if-js,
    233201.no-js.wp-core-ui .hide-if-no-js,
    234202.no-js .wp-core-ui .hide-if-no-js {
    235         display: none;
     203  display: none;
    236204}
    237 
    238205/* include margin and padding in the width calculation of input and textarea */
    239206input[type="text"],
    240207input[type="password"],
    input[type="search"], 
    243210input[type="email"],
    244211input[type="url"],
    245212textarea {
    246         -moz-box-sizing: border-box;
    247         -webkit-box-sizing: border-box;
    248         -ms-box-sizing: border-box; /* ie8 only */
    249         box-sizing: border-box;
     213  -moz-box-sizing: border-box;
     214  -webkit-box-sizing: border-box;
     215  -ms-box-sizing: border-box;
     216  box-sizing: border-box;
    250217}
    251 
    252218input[type="checkbox"],
    253219input[type="radio"] {
    254         vertical-align: text-top;
    255         padding: 0;
    256         margin: 1px 0 0;
     220  vertical-align: text-top;
     221  padding: 0;
     222  margin: 1px 0 0;
    257223}
    258 
    259224input[type="search"] {
    260         -webkit-appearance: textfield;
     225  -webkit-appearance: textfield;
    261226}
    262 
    263227input[type="search"]::-webkit-search-decoration {
    264         display: none;
     228  display: none;
    265229}
    266 
    267230/* general */
    268231html,
    269232body {
    270         height: 100%;
    271         margin: 0;
    272         padding: 0;
     233  height: 100%;
     234  margin: 0;
     235  padding: 0;
    273236}
    274 
    275237body {
    276         font-family: sans-serif;
    277         font-size: 12px;
    278         line-height: 1.4em;
    279         min-width: 600px;
     238  font-family: sans-serif;
     239  font-size: 12px;
     240  line-height: 1.4em;
     241  min-width: 600px;
    280242}
    281 
    282243body.iframe {
    283         min-width: 0;
    284         padding-top: 1px;
     244  min-width: 0;
     245  padding-top: 1px;
    285246}
    286 
    287247body.login {
    288         background: #fbfbfb;
    289         min-width: 0;
     248  background: #fbfbfb;
     249  min-width: 0;
    290250}
    291 
    292251iframe,
    293252img {
    294         border: 0;
     253  border: 0;
    295254}
    296 
    297255td,
    298256textarea,
    299257input,
    300258select,
    301259button {
    302         font-family: inherit;
    303         font-size: inherit;
    304         font-weight: inherit;
     260  font-family: inherit;
     261  font-size: inherit;
     262  font-weight: inherit;
    305263}
    306 
    307264td,
    308265textarea {
    309         line-height: inherit;
     266  line-height: inherit;
    310267}
    311 
    312268input,
    313269select {
    314         line-height: 15px;
     270  line-height: 15px;
    315271}
    316 
    317272a,
    318273input[type="text"],
    319274input[type="password"],
    input[type="url"], 
    324279select,
    325280textarea,
    326281div {
    327         outline: 0;
     282  outline: 0;
    328283}
    329 
    330284a:focus,
    331285a:active {
    332         outline: thin dotted;
     286  outline: thin dotted;
    333287}
    334 
    335288#adminmenu a:focus,
    336289#adminmenu a:active,
    337290.screen-reader-text:focus {
    338         outline: none;
     291  outline: none;
    339292}
    340 
    341293blockquote,
    342294q {
    343         quotes: none;
     295  quotes: none;
    344296}
    345 
    346297blockquote:before,
    347298blockquote:after,
    348299q:before,
    349300q:after {
    350         content: '';
    351         content: none;
     301  content: '';
     302  content: none;
    352303}
    353 
    354304p {
    355         margin: 1em 0;
     305  margin: 1em 0;
    356306}
    357 
    358307blockquote {
    359         margin: 1em;
     308  margin: 1em;
    360309}
    361 
    362310label {
    363         cursor: pointer;
     311  cursor: pointer;
    364312}
    365 
    366313li,
    367314dd {
    368         margin-bottom: 6px;
     315  margin-bottom: 6px;
    369316}
    370 
    371317textarea,
    372318input,
    373319select {
    374         margin: 1px;
    375         padding: 3px;
     320  margin: 1px;
     321  padding: 3px;
    376322}
    377 
    378323h1,
    379324h2,
    380325h3,
    381326h4,
    382327h5,
    383328h6 {
    384         display: block;
    385         font-weight: bold;
     329  display: block;
     330  font-weight: bold;
    386331}
    387 
    388332h1 {
    389         font-size: 2em;
    390         margin: .67em 0;
     333  font-size: 2em;
     334  margin: .67em 0;
    391335}
    392 
    393336h2 {
    394         font-size: 1.5em;
    395         margin: .83em 0;
     337  font-size: 1.5em;
     338  margin: .83em 0;
    396339}
    397 
    398340h3 {
    399         font-size: 1.17em;
    400         margin: 1em 0;
     341  font-size: 1.17em;
     342  margin: 1em 0;
    401343}
    402 
    403344h4 {
    404         font-size: 1em;
    405         margin: 1.33em 0;
     345  font-size: 1em;
     346  margin: 1.33em 0;
    406347}
    407 
    408348h5 {
    409         font-size: 0.83em;
    410         margin: 1.67em 0;
     349  font-size: 0.83em;
     350  margin: 1.67em 0;
    411351}
    412 
    413352h6 {
    414         font-size: 0.67em;
    415         margin: 2.33em 0;
     353  font-size: 0.67em;
     354  margin: 2.33em 0;
    416355}
    417 
    418356ul,
    419357ol {
    420         padding: 0;
     358  padding: 0;
    421359}
    422 
    423360ul {
    424         list-style: none;
     361  list-style: none;
    425362}
    426 
    427363ol {
    428         list-style-type: decimal;
    429         margin-left: 2em;
     364  list-style-type: decimal;
     365  margin-left: 2em;
    430366}
    431 
    432367ul.ul-disc {
    433         list-style: disc outside;
     368  list-style: disc outside;
    434369}
    435 
    436370ul.ul-square {
    437         list-style: square outside;
     371  list-style: square outside;
    438372}
    439 
    440373ol.ol-decimal {
    441         list-style: decimal outside;
     374  list-style: decimal outside;
    442375}
    443 
    444376ul.ul-disc,
    445377ul.ul-square,
    446378ol.ol-decimal {
    447         margin-left: 1.8em;
     379  margin-left: 1.8em;
    448380}
    449 
    450381ul.ul-disc > li,
    451382ul.ul-square > li,
    452383ol.ol-decimal > li {
    453         margin: 0 0 0.5em;
     384  margin: 0 0 0.5em;
    454385}
    455 
    456386.code,
    457387code {
    458         font-family: Consolas, Monaco, monospace;
     388  font-family: Consolas, Monaco, monospace;
    459389}
    460 
    461390kbd,
    462391code {
    463         padding: 1px 3px;
    464         margin: 0 1px;
    465         font-size: 11px;
     392  padding: 1px 3px;
     393  margin: 0 1px;
     394  font-size: 11px;
    466395}
    467 
    468396.subsubsub {
    469         list-style: none;
    470         margin: 8px 0 5px;
    471         padding: 0;
    472         font-size: 12px;
    473         float: left;
     397  list-style: none;
     398  margin: 8px 0 5px;
     399  padding: 0;
     400  font-size: 12px;
     401  float: left;
    474402}
    475 
    476403.subsubsub a {
    477         line-height: 2;
    478         padding: .2em;
    479         text-decoration: none;
     404  line-height: 2;
     405  padding: .2em;
     406  text-decoration: none;
    480407}
    481 
    482408.subsubsub a .count,
    483409.subsubsub a.current .count {
    484         color: #999;
    485         font-weight: normal;
     410  color: #999;
     411  font-weight: normal;
    486412}
    487 
    488413.subsubsub a.current {
    489         font-weight: bold;
    490         border: none;
     414  font-weight: bold;
     415  border: none;
    491416}
    492 
    493417.subsubsub li {
    494         display: inline-block;
    495         margin: 0;
    496         padding: 0;
    497         white-space: nowrap;
     418  display: inline-block;
     419  margin: 0;
     420  padding: 0;
     421  white-space: nowrap;
    498422}
    499 
    500423.widefat,
    501424div.updated,
    502425div.error,
    select, 
    536459.feature-filter,
    537460#widget-list .widget-top,
    538461.editwidget .widget-inside {
    539         -webkit-border-radius: 3px;
    540         border-radius: 3px;
    541         border-width: 1px;
    542         border-style: solid;
     462  border-radius: 3px;
     463  -moz-border-radius: 3px;
     464  -webkit-border-radius: 3px;
     465  border-width: 1px;
     466  border-style: solid;
    543467}
    544 
    545468/* .widefat - main style for tables */
    546469.widefat {
    547         border-spacing: 0;
    548         width: 100%;
    549         clear: both;
    550         margin: 0;
     470  border-spacing: 0;
     471  width: 100%;
     472  clear: both;
     473  margin: 0;
    551474}
    552 
    553475.widefat * {
    554         word-wrap: break-word;
     476  word-wrap: break-word;
    555477}
    556 
    557478.widefat a {
    558         text-decoration: none;
     479  text-decoration: none;
    559480}
    560 
    561481.widefat thead th:first-of-type {
    562         -webkit-border-top-left-radius: 3px;
    563         border-top-left-radius: 3px;
     482  -moz-border-top-left-radius: 3px;
     483  -webkit-border-top-left-radius: 3px;
     484  border-top-left-radius: 3px;
    564485}
    565486.widefat thead th:last-of-type {
    566         -webkit-border-top-right-radius: 3px;
    567         border-top-right-radius: 3px;
     487  -moz-border-top-right-radius: 3px;
     488  -webkit-border-top-right-radius: 3px;
     489  border-top-right-radius: 3px;
    568490}
    569491.widefat tfoot th:first-of-type {
    570         -webkit-border-bottom-left-radius: 3px;
    571         border-bottom-left-radius: 3px;
     492  -moz-border-bottom-left-radius: 3px;
     493  -webkit-border-bottom-left-radius: 3px;
     494  border-bottom-left-radius: 3px;
    572495}
    573496.widefat tfoot th:last-of-type {
    574         -webkit-border-bottom-right-radius: 3px;
    575         border-bottom-right-radius: 3px;
     497  -moz-border-bottom-right-radius: 3px;
     498  -webkit-border-bottom-right-radius: 3px;
     499  border-bottom-right-radius: 3px;
    576500}
    577 
    578501.widefat td,
    579502.widefat th {
    580         border-width: 1px 0;
    581         border-style: solid;
     503  border-width: 1px 0;
     504  border-style: solid;
    582505}
    583506.widefat tfoot th {
    584         border-bottom: none;
     507  border-bottom: none;
    585508}
    586 
    587509.widefat .no-items td {
    588         border-bottom-width: 0;
     510  border-bottom-width: 0;
    589511}
    590 
    591512.widefat td {
    592         font-size: 12px;
    593         padding: 4px 7px 2px;
    594         vertical-align: top;
     513  font-size: 12px;
     514  padding: 4px 7px 2px;
     515  vertical-align: top;
    595516}
    596 
    597517.widefat td p,
    598518.widefat td ol,
    599519.widefat td ul {
    600         font-size: 12px;
     520  font-size: 12px;
    601521}
    602 
    603522.widefat th {
    604         padding: 7px 7px 8px;
    605         text-align: left;
    606         line-height: 1.3em;
    607         font-size: 14px;
     523  padding: 7px 7px 8px;
     524  text-align: left;
     525  line-height: 1.3em;
     526  font-size: 14px;
    608527}
    609 
    610528.widefat th input {
    611         margin: 0 0 0 8px;
    612         padding: 0;
    613         vertical-align: text-top;
     529  margin: 0 0 0 8px;
     530  padding: 0;
     531  vertical-align: text-top;
    614532}
    615 
    616533.widefat .check-column {
    617         width: 2.2em;
    618         padding: 6px 0 25px;
    619         vertical-align: top;
     534  width: 2.2em;
     535  padding: 6px 0 25px;
     536  vertical-align: top;
    620537}
    621 
    622538.widefat tbody th.check-column {
    623         padding: 9px 0 22px;
     539  padding: 9px 0 22px;
    624540}
    625 
    626541.widefat.media .check-column {
    627         padding-top: 8px;
     542  padding-top: 8px;
    628543}
    629 
    630544.widefat thead .check-column,
    631545.widefat tfoot .check-column {
    632         padding: 10px 0 0;
     546  padding: 10px 0 0;
    633547}
    634 
    635548.no-js .widefat thead .check-column input,
    636549.no-js .widefat tfoot .check-column input {
    637         display: none;
     550  display: none;
    638551}
    639 
    640552.widefat .num,
    641553.column-comments,
    642554.column-links,
    643555.column-posts {
    644         text-align: center;
     556  text-align: center;
    645557}
    646 
    647558.widefat th#comments {
    648         vertical-align: middle;
     559  vertical-align: middle;
    649560}
    650 
    651561.wrap {
    652         margin: 4px 15px 0 0;
     562  margin: 4px 15px 0 0;
    653563}
    654 
    655564div.updated,
    656565div.error {
    657         padding: 0 0.6em;
    658         margin: 5px 15px 2px;
     566  padding: 0 0.6em;
     567  margin: 5px 15px 2px;
    659568}
    660 
    661569div.updated p,
    662570div.error p {
    663         margin: 0.5em 0;
    664         padding: 2px;
     571  margin: 0.5em 0;
     572  padding: 2px;
    665573}
    666 
    667574.wrap div.updated,
    668575.wrap div.error,
    669576.media-upload-form div.error {
    670         margin: 5px 0 15px;
     577  margin: 5px 0 15px;
    671578}
    672 
    673579.wrap h2,
    674580.subtitle {
    675         font-weight: normal;
    676         margin: 0;
    677         text-shadow: #fff 0 1px 0;
     581  font-weight: normal;
     582  margin: 0;
     583  text-shadow: #fff 0 1px 0;
    678584}
    679 
    680585.wrap h2 {
    681         font-size: 23px;
    682         padding: 9px 15px 4px 0;
    683         line-height: 29px;
     586  font-size: 23px;
     587  padding: 9px 15px 4px 0;
     588  line-height: 29px;
    684589}
    685 
    686590.subtitle {
    687         font-size: 14px;
    688         padding-left: 25px;
     591  font-size: 14px;
     592  padding-left: 25px;
    689593}
    690 
    691594.wrap .add-new-h2 {
    692         font-family: sans-serif;
    693         margin-left: 4px;
    694         padding: 3px 8px;
    695         position: relative;
    696         top: -3px;
    697         text-decoration: none;
    698         font-size: 12px;
    699         border: 0 none;
     595  font-family: sans-serif;
     596  margin-left: 4px;
     597  padding: 3px 8px;
     598  position: relative;
     599  top: -3px;
     600  text-decoration: none;
     601  font-size: 12px;
     602  border: 0 none;
    700603}
    701 
    702604.wrap h2.long-header {
    703         padding-right: 0;
     605  padding-right: 0;
    704606}
    705 
    706607html,
    707608.wp-dialog {
    708         background-color: #fff;
     609  background-color: white;
    709610}
    710 
    711611textarea,
    712612input[type="text"],
    713613input[type="password"],
    input[type="search"], 
    718618input[type="tel"],
    719619input[type="url"],
    720620select {
    721         background-color: #fff;
    722         color: #333;
     621  background-color: white;
     622  color: #333;
    723623}
    724 
    725624select {
    726         color: #000;
     625  color: black;
    727626}
    728 
    729627select[disabled] {
    730         color: #7f7f7f;
     628  color: #7f7f7f;
    731629}
    732 
    733630select:focus {
    734         border-color: #aaa;
     631  border-color: #aaa;
    735632}
    736 
    737633textarea:focus,
    738634input[type="text"]:focus,
    739635input[type="password"]:focus,
    input[type="search"]:focus, 
    744640input[type="tel"]:focus,
    745641input[type="url"]:focus,
    746642select:focus {
    747         -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    748         box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
     643  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
     644  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    749645}
    750 
    751646input[readonly] {
    752         background-color: #eee;
     647  background-color: #eee;
    753648}
    754 
    755649:-moz-placeholder,
    756650.wp-core-ui :-moz-placeholder {
    757    color: #a9a9a9;
     651  color: #a9a9a9;
     652}
     653.postbox .spinner {
     654  display: none;
     655  vertical-align: middle;
     656}
     657.button-controls {
     658  clear: both;
     659  margin: 10px 0;
     660}
     661.show-all,
     662.hide-all {
     663  cursor: pointer;
     664}
     665.hide-all {
     666  display: none;
     667}
     668img {
     669  border: none;
    758670}
    759 
    760 /*------------------------------------------------------------------------------
    761   1.0 - Text Styles
    762 ------------------------------------------------------------------------------*/
    763 
    764671div.sidebar-name h3,
    765672#menu-management .nav-tab,
    766673#dashboard_plugins h5,
    a.rsswidget, 
    778685.widefat th,
    779686.quicktags,
    780687.search {
    781         font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
     688  font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
    782689}
    783 
    784690h2 .nav-tab,
    785691.wrap h2,
    786692.subtitle,
    787693.login form .input {
    788         font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
     694  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
    789695}
    790 
    791696.quicktags,
    792697.search {
    793         font-size: 12px;
     698  font-size: 12px;
    794699}
    795 
    796700.icon32 {
    797         float: left;
    798         height: 34px;
    799         margin: 7px 8px 0 0;
    800         width: 36px;
     701  float: left;
     702  height: 34px;
     703  margin: 7px 8px 0 0;
     704  width: 36px;
    801705}
    802 
    803706.icon16 {
    804         height: 18px;
    805         width: 18px;
    806         padding: 6px 6px;
    807         margin: -6px 0 0 -8px;
    808         float: left;
     707  height: 18px;
     708  width: 18px;
     709  padding: 6px 6px;
     710  margin: -6px 0 0 -8px;
     711  float: left;
    809712}
    810 
    811713.key-labels label {
    812         line-height: 24px;
     714  line-height: 24px;
    813715}
    814 
    815716.pre {
    816         /* https://developer.mozilla.org/en-US/docs/CSS/white-space */
    817         white-space: pre-wrap; /* css-3 */
    818         word-wrap: break-word; /* IE 5.5 - 7 */
    819 }
     717  /* https://developer.mozilla.org/en-US/docs/CSS/white-space */
     718
     719  white-space: pre-wrap;
     720  /* css-3 */
     721
     722  word-wrap: break-word;
     723  /* IE 5.5 - 7 */
    820724
     725}
    821726.howto {
    822         font-style: italic;
    823         display: block;
    824         font-family: sans-serif;
     727  font-style: italic;
     728  display: block;
     729  font-family: sans-serif;
    825730}
    826 
    827731p.install-help {
    828         margin: 8px 0;
    829         font-style: italic;
     732  margin: 8px 0;
     733  font-style: italic;
    830734}
    831 
    832735.no-break {
    833         white-space: nowrap;
     736  white-space: nowrap;
    834737}
    835 
    836738/*------------------------------------------------------------------------------
    837739  2.0 - Forms
    838740------------------------------------------------------------------------------*/
    839 
    840 
    841741.wp-admin select {
    842         padding: 2px;
    843         height: 2em;
     742  padding: 2px;
     743  height: 2em;
    844744}
    845 
    846745.wp-admin select[multiple] {
    847         height: auto;
     746  height: auto;
    848747}
    849 
    850748.submit {
    851         padding: 1.5em 0;
    852         margin: 5px 0;
    853         -webkit-border-bottom-left-radius: 3px;
    854         -webkit-border-bottom-right-radius: 3px;
    855         border-bottom-left-radius: 3px;
    856         border-bottom-right-radius: 3px;
     749  padding: 1.5em 0;
     750  margin: 5px 0;
     751  border-bottom-left-radius: 3px;
     752  border-bottom-right-radius: 3px;
     753  -moz-border-bottom-left-radius: 3px;
     754  -moz-border-bottom-right-radius: 3px;
     755  -webkit-border-bottom-left-radius: 3px;
     756  -webkit-border-bottom-right-radius: 3px;
    857757}
    858 
    859758form p.submit a.cancel:hover {
    860         text-decoration: none;
     759  text-decoration: none;
    861760}
    862 
    863761#minor-publishing-actions input,
    864762#major-publishing-actions input,
    865763#minor-publishing-actions .preview {
    866         text-align: center;
     764  text-align: center;
    867765}
    868 
    869766textarea.all-options,
    870767input.all-options {
    871         width: 250px;
     768  width: 250px;
    872769}
    873 
    874770input.large-text,
    875771textarea.large-text {
    876         width: 99%;
     772  width: 99%;
    877773}
    878 
    879774input.regular-text,
    880775#adduser .form-field input {
    881         width: 25em;
     776  width: 25em;
    882777}
    883 
    884778input.small-text {
    885         width: 50px;
     779  width: 50px;
    886780}
    887 
    888 input[type="number"].small-text {
    889         width: 60px;
     781input.small-text[type="number"] {
     782  width: 60px;
    890783}
    891 
    892784#doaction,
    893785#doaction2,
    894786#post-query-submit {
    895         margin: 1px 8px 0 0;
     787  margin: 1px 8px 0 0;
    896788}
    897 
    898789.tablenav #changeit,
    899790.tablenav #delete_all,
    900791.tablenav #clear-recent-list {
    901         margin-top: 1px;
     792  margin-top: 1px;
    902793}
    903 
    904794.tablenav .actions select {
    905         float: left;
    906         margin-right: 6px;
    907         max-width: 200px;
     795  float: left;
     796  margin-right: 6px;
     797  max-width: 200px;
    908798}
    909 
    910799.ie8 .tablenav .actions select {
    911         width: 155px;
     800  width: 155px;
    912801}
    913 
    914802.ie8 .tablenav .actions select#cat {
    915         width: 200px;
     803  width: 200px;
    916804}
    917 
    918805#timezone_string option {
    919         margin-left: 1em;
     806  margin-left: 1em;
    920807}
    921 
    922808label,
    923809#your-profile label + a {
    924         vertical-align: middle;
     810  vertical-align: middle;
    925811}
    926 
    927812#misc-publishing-actions label {
    928         vertical-align: baseline;
     813  vertical-align: baseline;
    929814}
    930 
    931815#pass-strength-result {
    932         border-style: solid;
    933         border-width: 1px;
    934         float: left;
    935         margin: 13px 5px 5px 1px;
    936         padding: 3px 5px;
    937         text-align: center;
    938         width: 200px;
    939         display: none;
     816  border-style: solid;
     817  border-width: 1px;
     818  float: left;
     819  margin: 13px 5px 5px 1px;
     820  padding: 3px 5px;
     821  text-align: center;
     822  width: 200px;
     823  display: none;
    940824}
    941825.indicator-hint {
    942         padding-top: 8px;
     826  padding-top: 8px;
    943827}
    944 
    945828p.search-box {
    946         float: right;
    947         margin: 0;
     829  float: right;
     830  margin: 0;
    948831}
    949 
    950832.search-box input[name="s"],
    951833#search-plugins input[name="s"],
    952834.tagsdiv .newtag {
    953         float: left;
    954         height: 2em;
    955         margin: 0 4px 0 0;
     835  float: left;
     836  height: 2em;
     837  margin: 0 4px 0 0;
    956838}
    957 
    958839input[type="text"].ui-autocomplete-loading {
    959         background: transparent url('../images/loading.gif') no-repeat right center;
    960         visibility: visible;
     840  background: transparent url('../images/loading.gif') no-repeat right center;
     841  visibility: visible;
    961842}
    962 
    963843ul#add-to-blog-users {
    964         margin: 0 0 0 14px;
     844  margin: 0 0 0 14px;
    965845}
    966 
    967846.ui-autocomplete-input.open {
    968         border-bottom-right-radius: 0;
    969         border-bottom-left-radius: 0;
     847  border-bottom-right-radius: 0;
     848  border-bottom-left-radius: 0;
    970849}
    971 
    972850.ui-autocomplete {
    973         padding: 0;
    974         margin: 0;
    975         list-style: none;
    976         position: absolute;
    977         z-index: 10000;
    978         border-bottom-right-radius: 3px;
    979         border-bottom-left-radius: 3px;
    980         border-width: 1px;
    981         border-style: solid;
     851  padding: 0;
     852  margin: 0;
     853  list-style: none;
     854  position: absolute;
     855  z-index: 10000;
     856  border-bottom-right-radius: 3px;
     857  border-bottom-left-radius: 3px;
     858  border-width: 1px;
     859  border-style: solid;
    982860}
    983 
    984861.ui-autocomplete li {
    985         margin-bottom: 0;
    986         white-space: nowrap;
    987         text-align: left;
     862  margin-bottom: 0;
     863  white-space: nowrap;
     864  text-align: left;
    988865}
    989 
    990866.ui-autocomplete li a {
    991         display: block;
    992         height: 100%;
    993         padding: 4px 10px;
     867  display: block;
     868  height: 100%;
     869  padding: 4px 10px;
    994870}
    995 
    996871.ui-autocomplete li a.ui-state-focus {
    997         cursor: pointer;
     872  cursor: pointer;
    998873}
    999 
    1000874/*------------------------------------------------------------------------------
    1001875  3.0 - Actions
    1002876------------------------------------------------------------------------------*/
    1003 
    1004877#major-publishing-actions {
    1005         padding: 10px 10px 8px;
    1006         clear: both;
    1007         border-top: 1px solid #f5f5f5;
    1008         margin-top: -2px;
     878  padding: 10px 10px 8px;
     879  clear: both;
     880  border-top: 1px solid #f5f5f5;
     881  margin-top: -2px;
    1009882}
    1010 
    1011883#delete-action {
    1012         line-height: 25px;
    1013         vertical-align: middle;
    1014         text-align: left;
    1015         float: left;
     884  line-height: 25px;
     885  vertical-align: middle;
     886  text-align: left;
     887  float: left;
    1016888}
    1017 
    1018889#publishing-action {
    1019         text-align: right;
    1020         float: right;
    1021         line-height: 23px;
     890  text-align: right;
     891  float: right;
     892  line-height: 23px;
    1022893}
    1023 
    1024894#publishing-action .spinner {
    1025         float: left;
     895  float: left;
    1026896}
    1027 
    1028897#misc-publishing-actions {
    1029         padding: 6px 0 0;
     898  padding: 6px 0 0;
    1030899}
    1031 
    1032900.misc-pub-section {
    1033         padding: 6px 10px 8px;
    1034         border-width: 1px 0;
    1035         border-style: solid;
     901  padding: 6px 10px 8px;
     902  border-width: 1px 0;
     903  border-style: solid;
    1036904}
    1037 
    1038905.misc-pub-section:first-child {
    1039         border-top-width: 0;
     906  border-top-width: 0;
    1040907}
    1041 
    1042908.misc-pub-section-last {
    1043         border-bottom-width: 0;
     909  border-bottom-width: 0;
    1044910}
    1045 
    1046911#minor-publishing-actions {
    1047         padding: 10px 10px 2px 8px;
    1048         text-align: right;
     912  padding: 10px 10px 2px 8px;
     913  text-align: right;
    1049914}
    1050 
    1051915#minor-publishing {
    1052         border-bottom-width: 1px;
    1053         border-bottom-style: solid;
    1054         -webkit-box-shadow: 0 1px 0 #fff;
    1055         box-shadow: 0 1px 0 #fff;
     916  border-bottom-width: 1px;
     917  border-bottom-style: solid;
     918  -webkit-box-shadow: 0 1px 0 #fff;
     919  box-shadow: 0 1px 0 #fff;
    1056920}
    1057 
    1058921#save-post {
    1059         float: left;
     922  float: left;
    1060923}
    1061 
    1062924.preview {
    1063         float: right;
     925  float: right;
    1064926}
    1065 
    1066927#sticky-span {
    1067         margin-left: 18px;
     928  margin-left: 18px;
    1068929}
    1069 
    1070930.side-info {
    1071         margin: 0;
    1072         padding: 4px;
    1073         font-size: 11px;
     931  margin: 0;
     932  padding: 4px;
     933  font-size: 11px;
    1074934}
    1075 
    1076935.side-info h5 {
    1077         padding-bottom: 7px;
    1078         font-size: 14px;
    1079         margin: 12px 2px 5px;
    1080         border-bottom-width: 1px;
    1081         border-bottom-style: solid;
     936  padding-bottom: 7px;
     937  font-size: 14px;
     938  margin: 12px 2px 5px;
     939  border-bottom-width: 1px;
     940  border-bottom-style: solid;
    1082941}
    1083 
    1084942.side-info ul {
    1085         margin: 0;
    1086         padding-left: 18px;
    1087         list-style: square;
     943  margin: 0;
     944  padding-left: 18px;
     945  list-style: square;
    1088946}
    1089 
    1090947.approve,
    1091948.unapproved .unapprove {
    1092         display: none;
     949  display: none;
    1093950}
    1094 
    1095951.unapproved .approve,
    1096952.spam .approve,
    1097953.trash .approve {
    1098         display: inline;
     954  display: inline;
    1099955}
    1100 
    1101956td.action-links,
    1102957th.action-links {
    1103         text-align: right;
     958  text-align: right;
    1104959}
    1105 
    1106 
    1107960/*------------------------------------------------------------------------------
    1108961  4.0 - Notifications
    1109962------------------------------------------------------------------------------*/
    1110 
    1111963#update-nag,
    1112964.update-nag {
    1113         line-height: 19px;
    1114         padding: 5px 0;
    1115         font-size: 12px;
    1116         text-align: center;
    1117         margin: -1px 15px 0 5px;
    1118         border-width: 1px;
    1119         border-style: solid;
    1120         -webkit-border-bottom-right-radius: 3px;
    1121         -webkit-border-bottom-left-radius: 3px;
    1122         border-bottom-right-radius: 3px;
    1123         border-bottom-left-radius: 3px;
     965  line-height: 19px;
     966  padding: 5px 0;
     967  font-size: 12px;
     968  text-align: center;
     969  margin: -1px 15px 0 5px;
     970  border-width: 1px;
     971  border-style: solid;
     972  border-bottom-left-radius: 3px;
     973  border-bottom-right-radius: 3px;
     974  -moz-border-bottom-left-radius: 3px;
     975  -moz-border-bottom-right-radius: 3px;
     976  -webkit-border-bottom-left-radius: 3px;
     977  -webkit-border-bottom-right-radius: 3px;
    1124978}
    1125 
    1126979.plugins .plugin-update {
    1127         padding: 0;
     980  padding: 0;
    1128981}
    1129 
    1130982.plugin-update .update-message {
    1131         margin: 0 10px 8px 31px;
    1132         font-weight: bold;
     983  margin: 0 10px 8px 31px;
     984  font-weight: bold;
    1133985}
    1134 
    1135986ul#dismissed-updates {
    1136         display: none;
     987  display: none;
    1137988}
    1138 
    1139989form.upgrade {
    1140         margin-top: 8px;
     990  margin-top: 8px;
    1141991}
    1142 
    1143992form.upgrade .hint {
    1144         font-style: italic;
    1145         font-size: 85%;
    1146         margin: -0.5em 0 2em 0;
     993  font-style: italic;
     994  font-size: 85%;
     995  margin: -0.5em 0 2em 0;
    1147996}
    1148 
    1149997.update-php .spinner {
    1150         float: none;
    1151         margin: -4px 0;
     998  float: none;
     999  margin: -4px 0;
    11521000}
    1153 
    11541001#ajax-loading,
    11551002.ajax-loading,
    11561003.ajax-feedback,
    11571004.imgedit-wait-spin,
    1158 .list-ajax-loading { /* deprecated */
    1159         visibility: hidden;
    1160 }
     1005.list-ajax-loading {
     1006  /* deprecated */
    11611007
     1008  visibility: hidden;
     1009}
    11621010#ajax-response.alignleft {
    1163         margin-left: 2em;
     1011  margin-left: 2em;
    11641012}
    1165 
    1166 
    11671013/*------------------------------------------------------------------------------
    11681014  6.0 - Admin Header
    11691015------------------------------------------------------------------------------*/
    form.upgrade .hint { 
    11711017#sidemenu a,
    11721018#taglist a,
    11731019#catlist a {
    1174         text-decoration: none;
     1020  text-decoration: none;
    11751021}
    1176 
    11771022/*------------------------------------------------------------------------------
    11781023  6.1 - Screen Options Tabs
    11791024------------------------------------------------------------------------------*/
    1180 
    11811025#screen-options-wrap,
    11821026#contextual-help-wrap {
    1183         margin: 0;
    1184         padding: 8px 20px 12px;
    1185         position: relative;
     1027  margin: 0;
     1028  padding: 8px 20px 12px;
     1029  position: relative;
    11861030}
    1187 
    11881031#contextual-help-wrap {
    1189         overflow: auto;
    1190 }
    1191 
    1192 #screen-meta .screen-reader-text {
    1193         visibility: hidden;
     1032  overflow: auto;
    11941033}
    1195 
    11961034#screen-meta-links {
    1197         margin: 0 24px 0 0;
     1035  margin: 0 24px 0 0;
    11981036}
    1199 
    12001037#screen-meta-links a:focus {
    1201         -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    1202         box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    1203         outline: none;
     1038  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
     1039  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
     1040  outline: none;
     1041}
     1042#screen-meta-links .screen-meta-toggle {
     1043  position: relative;
     1044  top: -1px;
     1045}
     1046#screen-meta-links a.show-settings {
     1047  text-decoration: none;
     1048  z-index: 1;
     1049  padding: 1px 16px 0 6px;
     1050  height: 22px;
     1051  line-height: 22px;
     1052  font-size: 12px;
     1053  display: block;
     1054  text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0;
     1055}
     1056#screen-meta-links a.show-settings:hover {
     1057  text-decoration: none;
    12041058}
    1205 
    12061059/* screen options and help tabs revert */
    12071060#screen-meta {
    1208         display: none;
    1209         position: relative;
    1210         margin: 0 15px 0 5px;
    1211         border-width: 0 1px 1px;
    1212         border-style: none solid solid;
     1061  display: none;
     1062  position: relative;
     1063  margin: 0 15px 0 5px;
     1064  border-width: 0 1px 1px;
     1065  border-style: none solid solid;
     1066}
     1067#screen-meta .screen-reader-text {
     1068  visibility: hidden;
    12131069}
    1214 
    12151070#screen-options-link-wrap,
    12161071#contextual-help-link-wrap {
    1217         float: right;
    1218         height: 23px;
    1219         padding: 0;
    1220         margin: 0 0 0 6px;
    1221         font-family: sans-serif;
     1072  float: right;
     1073  height: 23px;
     1074  padding: 0;
     1075  margin: 0 0 0 6px;
     1076  font-family: sans-serif;
    12221077}
    1223 
    12241078#screen-options-link-wrap,
    12251079#contextual-help-link-wrap,
    12261080#screen-meta {
    1227         -webkit-border-bottom-left-radius: 3px;
    1228         -webkit-border-bottom-right-radius: 3px;
    1229         border-bottom-left-radius: 3px;
    1230         border-bottom-right-radius: 3px;
    1231 }
    1232 
    1233 #screen-meta-links .screen-meta-toggle {
    1234         position: relative;
    1235         top: -1px;
    1236 }
    1237 
    1238 #screen-meta-links a.show-settings {
    1239         text-decoration: none;
    1240         z-index: 1;
    1241         padding: 1px 16px 0 6px;
    1242         height: 22px;
    1243         line-height: 22px;
    1244         font-size: 12px;
    1245         display: block;
    1246         text-shadow: rgba(255,255,255,0.7) 0 1px 0;
    1247 }
    1248 
    1249 #screen-meta-links a.show-settings:hover {
    1250         text-decoration: none;
     1081  border-bottom-left-radius: 3px;
     1082  border-bottom-right-radius: 3px;
     1083  -moz-border-bottom-left-radius: 3px;
     1084  -moz-border-bottom-right-radius: 3px;
     1085  -webkit-border-bottom-left-radius: 3px;
     1086  -webkit-border-bottom-right-radius: 3px;
    12511087}
    12521088/* end screen options and help tabs */
    1253 
    12541089.toggle-arrow {
    1255         background-repeat: no-repeat;
    1256         background-position: top left;
    1257         background-color: transparent;
    1258         height: 22px;
    1259         line-height: 22px;
    1260         display: block;
     1090  background-repeat: no-repeat;
     1091  background-position: top left;
     1092  background-color: transparent;
     1093  height: 22px;
     1094  line-height: 22px;
     1095  display: block;
    12611096}
    1262 
    12631097.toggle-arrow-active {
    1264         background-position: bottom left;
     1098  background-position: bottom left;
    12651099}
    1266 
    12671100#screen-options-wrap h5,
    12681101#contextual-help-wrap h5 {
    1269         margin: 8px 0;
    1270         font-size: 13px;
     1102  margin: 8px 0;
     1103  font-size: 13px;
    12711104}
    1272 
    12731105.metabox-prefs label {
    1274         display: inline-block;
    1275         padding-right: 15px;
    1276         white-space: nowrap;
    1277         line-height: 30px;
     1106  display: inline-block;
     1107  padding-right: 15px;
     1108  white-space: nowrap;
     1109  line-height: 30px;
    12781110}
    1279 
    12801111.metabox-prefs label input {
    1281         margin: 0 5px 0 2px;
     1112  margin: 0 5px 0 2px;
    12821113}
    1283 
    1284 .metabox-prefs .columns-prefs label input {
    1285         margin: 0 2px;
    1286 }
    1287 
    12881114.metabox-prefs label a {
    1289         display: none;
     1115  display: none;
     1116}
     1117.metabox-prefs .columns-prefs label input {
     1118  margin: 0 2px;
    12901119}
    1291 
    12921120/*------------------------------------------------------------------------------
    12931121  6.2 - Help Menu
    12941122------------------------------------------------------------------------------*/
    1295 
    12961123#contextual-help-wrap {
    1297         padding: 0;
    1298         margin-left: -4px;
     1124  padding: 0;
     1125  margin-left: -4px;
    12991126}
    1300 
    13011127#contextual-help-columns {
    1302         position: relative;
     1128  position: relative;
    13031129}
    1304 
    13051130#contextual-help-back {
    1306         position: absolute;
    1307         top: 0;
    1308         bottom: 0;
    1309         left: 150px;
    1310         right: 170px;
    1311         border-width: 0 1px;
    1312         border-style: solid;
     1131  position: absolute;
     1132  top: 0;
     1133  bottom: 0;
     1134  left: 150px;
     1135  right: 170px;
     1136  border-width: 0 1px;
     1137  border-style: solid;
    13131138}
    1314 
    13151139#contextual-help-wrap.no-sidebar #contextual-help-back {
    1316         right: 0;
    1317 
    1318         border-right-width: 0;
    1319         -webkit-border-bottom-right-radius: 2px;
    1320         border-bottom-right-radius: 2px;
     1140  right: 0;
     1141  border-right-width: 0;
     1142  -moz-border-bottom-right-radius: 2px;
     1143  -webkit-border-bottom-right-radius: 2px;
     1144  border-bottom-right-radius: 2px;
    13211145}
    1322 
    13231146.contextual-help-tabs {
    1324         float: left;
    1325         width: 150px;
    1326         margin: 0;
     1147  float: left;
     1148  width: 150px;
     1149  margin: 0;
    13271150}
    1328 
    13291151.contextual-help-tabs ul {
    1330         margin: 1em 0;
     1152  margin: 1em 0;
    13311153}
    1332 
    13331154.contextual-help-tabs li {
    1334         margin-bottom: 0;
    1335         list-style-type: none;
    1336         border-style: solid;
    1337         border-width: 1px 0;
    1338         border-color: transparent;
     1155  margin-bottom: 0;
     1156  list-style-type: none;
     1157  border-style: solid;
     1158  border-width: 1px 0;
     1159  border-color: transparent;
    13391160}
    1340 
    13411161.contextual-help-tabs a {
    1342         display: block;
    1343         padding: 5px 5px 5px 12px;
    1344         line-height: 18px;
    1345         text-decoration: none;
     1162  display: block;
     1163  padding: 5px 5px 5px 12px;
     1164  line-height: 18px;
     1165  text-decoration: none;
    13461166}
    1347 
    13481167.contextual-help-tabs .active {
    1349         padding: 0;
    1350         margin: 0 -1px 0 0;
    1351         border-width: 1px 0 1px 1px;
    1352         border-style: solid;
     1168  padding: 0;
     1169  margin: 0 -1px 0 0;
     1170  border-width: 1px 0 1px 1px;
     1171  border-style: solid;
    13531172}
    1354 
    13551173.contextual-help-tabs-wrap {
    1356         padding: 0 20px;
    1357         overflow: auto;
     1174  padding: 0 20px;
     1175  overflow: auto;
    13581176}
    1359 
    13601177.help-tab-content {
    1361         display: none;
    1362         margin: 0 22px 12px 0;
    1363         line-height: 1.6em;
     1178  display: none;
     1179  margin: 0 22px 12px 0;
     1180  line-height: 1.6em;
    13641181}
    1365 
    13661182.help-tab-content.active {
    1367         display: block;
     1183  display: block;
    13681184}
    1369 
    13701185.help-tab-content ul li {
    1371         list-style-type: disc;
    1372         margin-left: 18px;
     1186  list-style-type: disc;
     1187  margin-left: 18px;
    13731188}
    1374 
    13751189.contextual-help-sidebar {
    1376         width: 150px;
    1377         float: right;
    1378         padding: 0 8px 0 12px;
    1379         overflow: auto;
     1190  width: 150px;
     1191  float: right;
     1192  padding: 0 8px 0 12px;
     1193  overflow: auto;
    13801194}
    1381 
    1382 
    13831195/*------------------------------------------------------------------------------
    13841196  7.0 - Main Navigation (Left Menu)
    13851197------------------------------------------------------------------------------*/
    1386 
    13871198#adminmenuback,
    13881199#adminmenuwrap {
    1389         border-width: 0 1px 0 0;
    1390         border-style: solid;
     1200  border-width: 0 1px 0 0;
     1201  border-style: solid;
    13911202}
    1392 
    13931203#adminmenuwrap {
    1394         position: relative;
    1395         float: left;
     1204  position: relative;
     1205  float: left;
    13961206}
    1397 
    13981207#adminmenushadow {
    1399         position: absolute;
    1400         top: 0;
    1401         right: 0;
    1402         bottom: 0;
    1403         width: 6px;
    1404         z-index: 20;
     1208  position: absolute;
     1209  top: 0;
     1210  right: 0;
     1211  bottom: 0;
     1212  width: 6px;
     1213  z-index: 20;
    14051214}
    1406 
    14071215/* side admin menu */
    14081216#adminmenu * {
    1409         -webkit-user-select: none;
    1410         -moz-user-select: none;
    1411         user-select: none;
     1217  -webkit-user-select: none;
     1218  -moz-user-select: none;
     1219  user-select: none;
    14121220}
    1413 
    14141221#adminmenu li {
    1415         margin: 0;
    1416         padding: 0;
    1417         cursor: pointer;
     1222  margin: 0;
     1223  padding: 0;
     1224  cursor: pointer;
    14181225}
    1419 
    14201226#adminmenu a {
    1421         display: block;
    1422         line-height: 18px;
    1423         padding: 2px 5px;
     1227  display: block;
     1228  line-height: 18px;
     1229  padding: 2px 5px;
    14241230}
    1425 
    14261231#adminmenu li.menu-top {
    1427         min-height: 28px;
    1428         position: relative;
     1232  min-height: 28px;
     1233  position: relative;
    14291234}
    1430 
    14311235#adminmenu .wp-submenu {
    1432         list-style: none;
    1433         padding: 4px 0;
    1434         margin: 0;
    1435         position: absolute;
    1436         top: -1000em;
    1437         left: 146px;
    1438         z-index: 1000;
    1439         overflow: visible;
    1440         border-width: 1px;
    1441         border-style: solid;
    1442         -webkit-border-bottom-right-radius: 3px;
    1443         -webkit-border-top-right-radius: 3px;
    1444         border-bottom-right-radius: 3px;
    1445         border-top-right-radius: 3px;
     1236  list-style: none;
     1237  padding: 4px 0;
     1238  margin: 0;
     1239  position: absolute;
     1240  top: -1000em;
     1241  left: 146px;
     1242  z-index: 1000;
     1243  overflow: visible;
     1244  border-width: 1px;
     1245  border-style: solid;
     1246  border-top-right-radius: 3px;
     1247  border-bottom-right-radius: 3px;
     1248  -moz-border-top-right-radius: 3px;
     1249  -moz-border-bottom-right-radius: 3px;
     1250  -webkit-border-top-right-radius: 3px;
     1251  -webkit-border-bottom-right-radius: 3px;
    14461252}
    1447 
    14481253.js #adminmenu .sub-open,
    14491254.js #adminmenu .opensub .wp-submenu,
    14501255#adminmenu a.menu-top:focus + .wp-submenu,
    1451 .no-js li.wp-has-submenu:hover .wp-submenu {
    1452         top: -1px;
     1256.no-js #adminmenu li.wp-has-submenu:hover .wp-submenu {
     1257  top: -1px;
    14531258}
    1454 
    14551259#adminmenu .wp-has-current-submenu .wp-submenu,
    1456 .no-js li.wp-has-current-submenu:hover .wp-submenu,
     1260.no-js #adminmenu li.wp-has-current-submenu:hover .wp-submenu,
    14571261#adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
    14581262#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
    14591263#adminmenu .wp-has-current-submenu.opensub .wp-submenu {
    1460         position: relative;
    1461         z-index: 3;
    1462         top: auto;
    1463         left: auto;
    1464         right: auto;
    1465         bottom: auto;
    1466         border: 0 none;
    1467 
    1468         -webkit-box-shadow: none;
    1469         box-shadow: none;
     1264  position: relative;
     1265  z-index: 3;
     1266  top: auto;
     1267  left: auto;
     1268  right: auto;
     1269  bottom: auto;
     1270  border: 0 none;
     1271  -moz-box-shadow: none;
     1272  -webkit-box-shadow: none;
     1273  box-shadow: none;
    14701274}
    1471 
    14721275.folded #adminmenu .wp-submenu.sub-open,
    14731276.folded #adminmenu .opensub .wp-submenu,
    14741277.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
    14751278.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
    14761279.folded #adminmenu a.menu-top:focus + .wp-submenu,
    14771280.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
    1478 .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu  {
    1479         top: -1px;
    1480         left: 32px;
     1281.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
     1282  top: -1px;
     1283  left: 32px;
    14811284}
    1482 
    14831285.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
    14841286.folded #adminmenu .wp-has-current-submenu .wp-submenu {
    1485         border-width: 1px;
    1486         border-style: solid;
    1487         position: absolute;
    1488         top: -1000em;
     1287  border-width: 1px;
     1288  border-style: solid;
     1289  position: absolute;
     1290  top: -1000em;
    14891291}
    1490 
    14911292#adminmenu .wp-submenu a {
    1492         font-size: 12px;
    1493         line-height: 18px;
    1494         margin: 0;
    1495         padding-left: 12px;
     1293  font-size: 12px;
     1294  line-height: 18px;
     1295  margin: 0;
     1296  padding-left: 12px;
    14961297}
    1497 
    14981298#adminmenu .wp-not-current-submenu li > a {
    1499         padding-left: 16px;
     1299  padding-left: 16px;
    15001300}
    1501 
    15021301#adminmenu .wp-has-current-submenu ul > li > a,
    15031302.folded #adminmenu li.menu-top .wp-submenu > li > a {
    1504         padding-left: 12px;
     1303  padding-left: 12px;
    15051304}
    1506 
    15071305#adminmenu a.menu-top,
    15081306#adminmenu .wp-submenu-head {
    1509         font-size: 13px;
    1510         font-weight: bold;
    1511         line-height: 18px;
    1512         padding: 0;
     1307  font-size: 13px;
     1308  font-weight: bold;
     1309  line-height: 18px;
     1310  padding: 0;
    15131311}
    1514 
    15151312#adminmenu .wp-submenu-head,
    15161313.folded #adminmenu .wp-menu-name {
    1517         display: none;
     1314  display: none;
    15181315}
    1519 
    15201316.folded #adminmenu .wp-submenu-head {
    1521         display: block;
     1317  display: block;
    15221318}
    1523 
    15241319#adminmenu .wp-submenu li {
    1525         padding: 0;
    1526         margin: 0;
    1527         overflow: hidden;
     1320  padding: 0;
     1321  margin: 0;
     1322  overflow: hidden;
    15281323}
    1529 
    15301324#adminmenu a.menu-top {
    1531         border-width: 1px 0;
    1532         border-style: solid none;
     1325  border-width: 1px 0;
     1326  border-style: solid none;
    15331327}
    1534 
    15351328#adminmenu .wp-menu-image img {
    1536         padding: 7px 0 0 7px;
    1537         opacity: 0.6;
    1538         filter: alpha(opacity=60);
     1329  padding: 7px 0 0 7px;
     1330  opacity: 0.6;
     1331  filter: alpha(opacity=60);
    15391332}
    1540 
    15411333#adminmenu div.wp-menu-name {
    1542         padding: 5px;
     1334  padding: 5px;
    15431335}
    1544 
    15451336#adminmenu div.wp-menu-image {
    1546         float: left;
    1547         width: 28px;
    1548         height: 28px;
     1337  float: left;
     1338  width: 28px;
     1339  height: 28px;
    15491340}
    1550 
    15511341.folded #adminmenu div.wp-menu-image {
    1552         width: 32px;
    1553         position: absolute;
    1554         z-index: 25;
     1342  width: 32px;
     1343  position: absolute;
     1344  z-index: 25;
    15551345}
    1556 
    15571346.folded #adminmenu a.menu-top {
    1558         height: 28px;
    1559 }
    1560 
    1561 .wp-menu-arrow {
    1562         z-index: 25;
    1563         position: absolute;
    1564         right: 100%;
    1565         margin: 0;
    1566         height: 30px;
    1567         width: 6px;
    1568 
    1569         -moz-transform:    translate( 146px );
    1570         -webkit-transform: translate( 146px );
    1571         -o-transform:      translate( 146px );
    1572         -ms-transform:     translate( 146px );
    1573         transform:         translate( 146px );
     1347  height: 28px;
    15741348}
    1575 
    15761349#adminmenu .wp-menu-arrow div {
    1577         display: none;
    1578         position: absolute;
    1579         top: 7px;
    1580         left: -1px;
    1581         width: 14px;
    1582         height: 15px;
    1583 
    1584         -moz-transform:    matrix( -0.6, 1, 0.6, 1, 0, 0 );
    1585         -webkit-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 );
    1586         -o-transform:      matrix( -0.6, 1, 0.6, 1, 0, 0 );
    1587         -ms-transform:     matrix( -0.6, 1, 0.6, 1, 0, 0 );
    1588         transform:         matrix( -0.6, 1, 0.6, 1, 0, 0 );
     1350  display: none;
     1351  position: absolute;
     1352  top: 7px;
     1353  left: -1px;
     1354  width: 14px;
     1355  height: 15px;
     1356  -moz-transform: matrix(-0.6, 1, 0.6, 1, 0, 0);
     1357  -webkit-transform: matrix(-0.6, 1, 0.6, 1, 0, 0);
     1358  -o-transform: matrix(-0.6, 1, 0.6, 1, 0, 0);
     1359  -ms-transform: matrix(-0.6, 1, 0.6, 1, 0, 0);
     1360  transform: matrix(-0.6, 1, 0.6, 1, 0, 0);
    15891361}
    1590 
    15911362#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
    1592         -moz-transform:    translate( 145px );
    1593         -webkit-transform: translate( 145px );
    1594         -o-transform:      translate( 145px );
    1595         -ms-transform:     translate( 145px );
    1596         transform:         translate( 145px );
    1597         height: 28px;
    1598         border-width: 1px 0;
    1599         border-style: solid;
    1600         top: 0;
     1363  -moz-transform: translate(145px);
     1364  -webkit-transform: translate(145px);
     1365  -o-transform: translate(145px);
     1366  -ms-transform: translate(145px);
     1367  transform: translate(145px);
     1368  height: 28px;
     1369  border-width: 1px 0;
     1370  border-style: solid;
     1371  top: 0;
    16011372}
    1602 
    16031373.folded #adminmenu li .wp-menu-arrow {
    1604         -moz-transform:    translate( 32px );
    1605         -webkit-transform: translate( 32px );
    1606         -o-transform:      translate( 32px );
    1607         -ms-transform:     translate( 32px );
    1608         transform:         translate( 32px );
     1374  -moz-transform: translate(32px);
     1375  -webkit-transform: translate(32px);
     1376  -o-transform: translate(32px);
     1377  -ms-transform: translate(32px);
     1378  transform: translate(32px);
    16091379}
    1610 
    16111380#adminmenu li.current .wp-menu-arrow,
    16121381#adminmenu li.wp-has-current-submenu .wp-menu-arrow,
    16131382#adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
    form.upgrade .hint { 
    16171386#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,
    16181387#adminmenu a.wp-has-submenu:focus .wp-menu-arrow,
    16191388#adminmenu a:hover .wp-menu-arrow {
    1620         display: block;
     1389  display: block;
    16211390}
    1622 
    16231391#adminmenu li.current .wp-menu-arrow,
    16241392#adminmenu li.wp-menu-open .wp-menu-arrow {
    1625         top: 0;
     1393  top: 0;
    16261394}
    1627 
    16281395.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,
    16291396#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,
    16301397#adminmenu a.wp-has-submenu:focus .wp-menu-arrow {
    1631         z-index: 1001;
     1398  z-index: 1001;
    16321399}
    1633 
    16341400.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow {
    1635         display: none;
     1401  display: none;
    16361402}
    1637 
    16381403#adminmenu .wp-not-current-submenu .wp-menu-arrow div {
    1639         width: 15px;
    1640         top: 6px;
    1641         border-width: 0 0 1px 1px;
    1642         border-style: solid;
     1404  width: 15px;
     1405  top: 6px;
     1406  border-width: 0 0 1px 1px;
     1407  border-style: solid;
    16431408}
    1644 
    1645 .wp-menu-arrow,
     1409#adminmenu .wp-menu-arrow,
    16461410.folded #adminmenu li .wp-menu-arrow div,
    16471411.no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow {
    1648         display: none;
     1412  display: none;
    16491413}
    1650 
    16511414.folded #adminmenu li.current .wp-menu-arrow,
    16521415.folded #adminmenu li.current .wp-menu-arrow div,
    16531416.folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
    16541417.folded #adminmenu li.wp-menu-open .wp-menu-arrow,
    16551418.folded #adminmenu li a:focus .wp-menu-arrow {
    1656         display: block;
     1419  display: block;
    16571420}
    1658 
    16591421#adminmenu li.menu-top:hover .wp-menu-image img,
    16601422#adminmenu li.wp-has-current-submenu .wp-menu-image img {
    1661         opacity: 1;
    1662         filter: alpha(opacity=100);
     1423  opacity: 1;
     1424  filter: alpha(opacity=100);
    16631425}
    1664 
    16651426#adminmenu li.wp-menu-separator {
    1666         height: 3px;
    1667         padding: 0;
    1668         margin: 0;
    1669         border-width: 1px 0;
    1670         border-style: solid;
    1671         cursor: inherit;
     1427  height: 3px;
     1428  padding: 0;
     1429  margin: 0;
     1430  border-width: 1px 0;
     1431  border-style: solid;
     1432  cursor: inherit;
    16721433}
    1673 
    16741434#adminmenu div.separator {
    1675         height: 1px;
    1676         padding: 0;
    1677         border-width: 1px 0 0 0;
    1678         border-style: solid;
     1435  height: 1px;
     1436  padding: 0;
     1437  border-width: 1px 0 0 0;
     1438  border-style: solid;
    16791439}
    1680 
    16811440#adminmenu .wp-submenu .wp-submenu-head {
    1682         padding: 5px 4px 5px 10px;
    1683         margin: -4px -1px 4px;
    1684         border-width: 1px 0;
    1685         border-style: solid;
    1686         -webkit-border-top-right-radius: 3px;
    1687         border-top-right-radius: 3px;
     1441  padding: 5px 4px 5px 10px;
     1442  margin: -4px -1px 4px;
     1443  border-width: 1px 0;
     1444  border-style: solid;
     1445  -moz-border-top-right-radius: 3px;
     1446  -webkit-border-top-right-radius: 3px;
     1447  border-top-right-radius: 3px;
    16881448}
    1689 
    16901449#adminmenu li.wp-menu-open {
    1691         border-width: 0 0 1px;
    1692         border-style: solid;
     1450  border-width: 0 0 1px;
     1451  border-style: solid;
    16931452}
    1694 
    16951453#adminmenu li.current,
    16961454.folded #adminmenu li.wp-menu-open {
    1697         border: 0 none;
     1455  border: 0 none;
    16981456}
    1699 
    17001457.folded #adminmenu li.wp-has-current-submenu {
    1701         margin-bottom: 1px;
     1458  margin-bottom: 1px;
    17021459}
    1703 
    17041460.folded #adminmenu .wp-has-current-submenu.menu-top-last {
    1705         margin-bottom: 0;
     1461  margin-bottom: 0;
     1462}
     1463.wp-menu-arrow {
     1464  z-index: 25;
     1465  position: absolute;
     1466  right: 100%;
     1467  margin: 0;
     1468  height: 30px;
     1469  width: 6px;
     1470  -moz-transform: translate(146px);
     1471  -webkit-transform: translate(146px);
     1472  -o-transform: translate(146px);
     1473  -ms-transform: translate(146px);
     1474  transform: translate(146px);
    17061475}
    1707 
    17081476#adminmenu .awaiting-mod,
    17091477#adminmenu span.update-plugins,
    17101478#sidemenu li a span.update-plugins {
    1711         position: absolute;
    1712         font-family: sans-serif;
    1713         font-size: 9px;
    1714         line-height: 17px;
    1715         font-weight: bold;
    1716         margin-top: 1px;
    1717         margin-left: 7px;
    1718         -webkit-border-radius: 10px;
    1719         border-radius: 10px;
    1720         z-index: 26;
     1479  position: absolute;
     1480  font-family: sans-serif;
     1481  font-size: 9px;
     1482  font-weight: bold;
     1483  line-height: 17px;
     1484  margin-top: 1px;
     1485  margin-left: 7px;
     1486  border-radius: 10px;
     1487  -moz-border-radius: 10px;
     1488  -webkit-border-radius: 10px;
     1489  z-index: 26;
    17211490}
    1722 
    17231491#adminmenu li .awaiting-mod span,
    17241492#adminmenu li span.update-plugins span,
    17251493#sidemenu li a span.update-plugins span {
    1726         display: block;
    1727         padding: 0 6px;
     1494  display: block;
     1495  padding: 0 6px;
    17281496}
    1729 
    17301497#adminmenu li span.count-0,
    17311498#sidemenu li a .count-0 {
    1732         display: none;
     1499  display: none;
    17331500}
    1734 
    17351501#collapse-menu {
    1736         font-size: 12px;
    1737         line-height: 34px;
    1738         border-width: 1px 0 0;
    1739         border-style: solid;
     1502  font-size: 12px;
     1503  line-height: 34px;
     1504  border-width: 1px 0 0;
     1505  border-style: solid;
    17401506}
    1741 
    17421507.folded #collapse-menu span {
    1743         display: none;
     1508  display: none;
    17441509}
    1745 
    17461510#collapse-button,
    17471511#collapse-button div {
    1748         width: 15px;
    1749         height: 15px;
     1512  width: 15px;
     1513  height: 15px;
    17501514}
    1751 
    17521515#collapse-button {
    1753         float: left;
    1754         margin: 8px 6px;
    1755         border-width: 1px;
    1756         border-style: solid;
    1757         -webkit-border-radius: 10px;
    1758         border-radius: 10px;
     1516  float: left;
     1517  margin: 8px 6px;
     1518  border-width: 1px;
     1519  border-style: solid;
     1520  border-radius: 10px;
     1521  -moz-border-radius: 10px;
     1522  -webkit-border-radius: 10px;
    17591523}
    1760 
    17611524/* Auto-folding of the admin menu */
    17621525@media only screen and (max-width: 900px) {
    1763         .auto-fold #wpcontent,
    1764         .auto-fold #wpfooter {
    1765                 margin-left: 52px;
    1766         }
    1767 
    1768         .auto-fold #adminmenuback,
    1769         .auto-fold #adminmenuwrap,
    1770         .auto-fold #adminmenu,
    1771         .auto-fold #adminmenu li.menu-top {
    1772                 width: 32px;
    1773         }
    1774 
    1775         .auto-fold #adminmenu .wp-submenu.sub-open,
    1776         .auto-fold #adminmenu .opensub .wp-submenu,
    1777         .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
    1778         .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
    1779         .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
    1780         .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu  {
    1781                 top: -1px;
    1782                 left: 32px;
    1783         }
    1784 
    1785         .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
    1786         .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
    1787                 border-width: 1px;
    1788                 border-style: solid;
    1789                 position: absolute;
    1790                 top: -1000em;
    1791         }
    1792 
    1793         .auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
    1794                 padding-left: 12px;
    1795         }
    1796 
    1797         .auto-fold #adminmenu .wp-menu-name {
    1798                 display: none;
    1799         }
    1800 
    1801         .auto-fold #adminmenu .wp-submenu-head {
    1802                 display: block;
    1803         }
    1804 
    1805         .auto-fold #adminmenu div.wp-menu-image {
    1806                 width: 32px;
    1807                 position: absolute;
    1808                 z-index: 25;
    1809         }
    1810 
    1811         .auto-fold #adminmenu a.menu-top {
    1812                 height: 28px;
    1813         }
    1814 
    1815         .auto-fold #adminmenu li .wp-menu-arrow {
    1816                 -moz-transform:    translate( 32px );
    1817                 -webkit-transform: translate( 32px );
    1818                 -o-transform:      translate( 32px );
    1819                 -ms-transform:     translate( 32px );
    1820                 transform:         translate( 32px );
    1821         }
    1822 
    1823         .auto-fold #adminmenu li .wp-menu-arrow div {
    1824                 display: none;
    1825         }
    1826 
    1827         .auto-fold #adminmenu li.current .wp-menu-arrow,
    1828         .auto-fold #adminmenu li.current .wp-menu-arrow div,
    1829         .auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
    1830         .auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,
    1831         .auto-fold #adminmenu li a:focus .wp-menu-arrow {
    1832                 display: block;
    1833         }
    1834 
    1835         .auto-fold #adminmenu li.wp-menu-open {
    1836                 border: 0 none;
    1837         }
    1838 
    1839         .auto-fold #adminmenu li.wp-has-current-submenu {
    1840                 margin-bottom: 1px;
    1841         }
    1842 
    1843         .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
    1844                 margin-bottom: 0;
    1845         }
    1846 
    1847         .auto-fold #collapse-menu span {
    1848                 display: none;
    1849         }
    1850 
     1526  .auto-fold #wpcontent,
     1527  .auto-fold #wpfooter {
     1528    margin-left: 52px;
     1529  }
     1530  .auto-fold #adminmenuback,
     1531  .auto-fold #adminmenuwrap,
     1532  .auto-fold #adminmenu,
     1533  .auto-fold #adminmenu li.menu-top {
     1534    width: 32px;
     1535  }
     1536  .auto-fold #adminmenu .wp-submenu.sub-open,
     1537  .auto-fold #adminmenu .opensub .wp-submenu,
     1538  .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
     1539  .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
     1540  .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
     1541  .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
     1542    top: -1px;
     1543    left: 32px;
     1544  }
     1545  .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
     1546  .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
     1547    border-width: 1px;
     1548    border-style: solid;
     1549    position: absolute;
     1550    top: -1000em;
     1551  }
     1552  .auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
     1553    padding-left: 12px;
     1554  }
     1555  .auto-fold #adminmenu .wp-menu-name {
     1556    display: none;
     1557  }
     1558  .auto-fold #adminmenu .wp-submenu-head {
     1559    display: block;
     1560  }
     1561  .auto-fold #adminmenu div.wp-menu-image {
     1562    width: 32px;
     1563    position: absolute;
     1564    z-index: 25;
     1565  }
     1566  .auto-fold #adminmenu a.menu-top {
     1567    height: 28px;
     1568  }
     1569  .auto-fold #adminmenu li .wp-menu-arrow {
     1570    -moz-transform: translate(32px);
     1571    -webkit-transform: translate(32px);
     1572    -o-transform: translate(32px);
     1573    -ms-transform: translate(32px);
     1574    transform: translate(32px);
     1575  }
     1576  .auto-fold #adminmenu li .wp-menu-arrow div {
     1577    display: none;
     1578  }
     1579  .auto-fold #adminmenu li.current .wp-menu-arrow,
     1580  .auto-fold #adminmenu li.current .wp-menu-arrow div,
     1581  .auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
     1582  .auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,
     1583  .auto-fold #adminmenu li a:focus .wp-menu-arrow {
     1584    display: block;
     1585  }
     1586  .auto-fold #adminmenu li.wp-menu-open {
     1587    border: 0 none;
     1588  }
     1589  .auto-fold #adminmenu li.wp-has-current-submenu {
     1590    margin-bottom: 1px;
     1591  }
     1592  .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
     1593    margin-bottom: 0;
     1594  }
     1595  .auto-fold #collapse-menu span {
     1596    display: none;
     1597  }
    18511598}
    1852 
    18531599/* List table styles */
    18541600.post-com-count-wrapper {
    1855         min-width: 22px;
    1856         font-family: sans-serif;
     1601  min-width: 22px;
     1602  font-family: sans-serif;
    18571603}
    1858 
    18591604.post-com-count {
    1860         background-image: url('../images/bubble_bg.gif');
    1861         height: 1.3em;
    1862         line-height: 1.1em;
    1863         display: block;
    1864         text-decoration: none;
    1865         padding: 0 0 6px;
    1866         cursor: pointer;
    1867         background-position: center -80px;
    1868         background-repeat: no-repeat;
     1605  background-image: url('../images/bubble_bg.gif');
     1606  height: 1.3em;
     1607  line-height: 1.1em;
     1608  display: block;
     1609  text-decoration: none;
     1610  padding: 0 0 6px;
     1611  cursor: pointer;
     1612  background-position: center -80px;
     1613  background-repeat: no-repeat;
    18691614}
    1870 
    18711615.post-com-count span {
    1872         font-size: 11px;
    1873         font-weight: bold;
    1874         height: 1.4em;
    1875         line-height: 1.4em;
    1876         min-width: 0.7em;
    1877         padding: 0 6px;
    1878         display: inline-block;
    1879         -webkit-border-radius: 5px;
    1880         border-radius: 5px;
     1616  font-size: 11px;
     1617  font-weight: bold;
     1618  line-height: 1.4em;
     1619  height: 1.4em;
     1620  min-width: 0.7em;
     1621  padding: 0 6px;
     1622  display: inline-block;
     1623  border-radius: 5px;
     1624  -moz-border-radius: 5px;
     1625  -webkit-border-radius: 5px;
    18811626}
    1882 
    18831627strong .post-com-count {
    1884         background-position: center -55px;
     1628  background-position: center -55px;
    18851629}
    1886 
    18871630.post-com-count:hover {
    1888         background-position: center -3px;
     1631  background-position: center -3px;
    18891632}
    1890 
    18911633.column-response .post-com-count {
    1892         float: left;
    1893         margin-right: 5px;
    1894         text-align: center;
     1634  float: left;
     1635  margin-right: 5px;
     1636  text-align: center;
    18951637}
    1896 
    18971638.response-links {
    1898         float: left;
     1639  float: left;
    18991640}
    1900 
    19011641#the-comment-list .attachment-80x60 {
    1902         padding: 4px 8px;
     1642  padding: 4px 8px;
    19031643}
    1904 
    19051644th .comment-grey-bubble {
    1906         background-image: url('../images/comment-grey-bubble.png');
    1907         background-repeat: no-repeat;
    1908         height: 12px;
    1909         width: 12px;
     1645  background-image: url('../images/comment-grey-bubble.png');
     1646  background-repeat: no-repeat;
     1647  height: 12px;
     1648  width: 12px;
    19101649}
    1911 
    19121650/*------------------------------------------------------------------------------
    19131651  8.0 - Layout Blocks
    19141652------------------------------------------------------------------------------*/
    1915 
    19161653html.wp-toolbar {
    1917         padding-top: 28px;
    1918         -webkit-box-sizing: border-box;
    1919         -moz-box-sizing: border-box;
    1920         box-sizing: border-box;
     1654  padding-top: 28px;
     1655  -moz-box-sizing: border-box;
     1656  -webkit-box-sizing: border-box;
     1657  -ms-box-sizing: border-box;
     1658  box-sizing: border-box;
    19211659}
    1922 
    19231660.narrow {
    1924         width: 70%;
    1925         margin-bottom: 40px;
     1661  width: 70%;
     1662  margin-bottom: 40px;
    19261663}
    1927 
    19281664.narrow p {
    1929         line-height: 150%;
     1665  line-height: 150%;
    19301666}
    1931 
    19321667.widefat th,
    19331668.widefat td {
    1934         overflow: hidden;
     1669  overflow: hidden;
    19351670}
    1936 
    19371671.widefat th {
    1938         font-weight: normal;
     1672  font-weight: normal;
    19391673}
    1940 
    19411674.widefat td p {
    1942         margin: 2px 0 0.8em;
     1675  margin: 2px 0 0.8em;
    19431676}
    1944 
    19451677.widefat .column-comment p {
    1946         margin: 0.6em 0;
     1678  margin: 0.6em 0;
    19471679}
    1948 
    19491680/* Screens with postboxes */
    19501681.postbox-container {
    1951         float: left;
     1682  float: left;
    19521683}
    1953 
    19541684#dashboard-widgets.columns-1 .postbox-container {
    1955         width: 100%;
     1685  width: 100%;
    19561686}
    1957 
    19581687#dashboard-widgets.columns-2 .postbox-container {
    1959         width: 49.5%;
     1688  width: 49.5%;
    19601689}
    1961 
    19621690#dashboard-widgets.columns-2 #postbox-container-2,
    19631691#dashboard-widgets.columns-2 #postbox-container-3,
    19641692#dashboard-widgets.columns-2 #postbox-container-4 {
    1965         float: right;
    1966         width: 50.5%;
     1693  float: right;
     1694  width: 50.5%;
    19671695}
    1968 
    19691696#dashboard-widgets.columns-3 .postbox-container {
    1970         width: 33.5%;
     1697  width: 33.5%;
    19711698}
    1972 
    19731699#dashboard-widgets.columns-3 #postbox-container-1 {
    1974         width: 33%;
     1700  width: 33%;
    19751701}
    1976 
    19771702#dashboard-widgets.columns-3 #postbox-container-3,
    19781703#dashboard-widgets.columns-3 #postbox-container-4 {
    1979         float: right;
     1704  float: right;
    19801705}
    1981 
    19821706#dashboard-widgets.columns-4 .postbox-container {
    1983         width: 25%;
     1707  width: 25%;
    19841708}
    1985 
    19861709.postbox-container .meta-box-sortables {
    1987         -moz-box-sizing: border-box;
    1988         -webkit-box-sizing: border-box;
    1989         -ms-box-sizing: border-box;
    1990         box-sizing: border-box;
     1710  -moz-box-sizing: border-box;
     1711  -webkit-box-sizing: border-box;
     1712  -ms-box-sizing: border-box;
     1713  box-sizing: border-box;
    19911714}
    1992 
    19931715.metabox-holder .postbox-container .empty-container {
    1994         border: 3px dashed #CCCCCC;
    1995         height: 250px;
     1716  border: 3px dashed #ccc;
     1717  height: 250px;
    19961718}
    1997 
    19981719.metabox-holder.columns-1 .postbox-container .empty-container,
    19991720.columns-2 #postbox-container-3 .empty-container,
    20001721.columns-2 #postbox-container-4 .empty-container,
    20011722.columns-3 #postbox-container-4 .empty-container {
    2002         border: 0 none;
    2003         height: 0;
    2004         min-height: 0;
     1723  border: 0 none;
     1724  height: 0;
     1725  min-height: 0;
    20051726}
    2006 
    20071727#poststuff {
    2008         padding-top: 10px;
     1728  padding-top: 10px;
    20091729}
    2010 
    20111730#poststuff #post-body {
    2012         padding: 0;
    2013 }
    2014 
    2015 #post-body-content {
    2016         width: 100%;
    2017         float: left;
     1731  padding: 0;
    20181732}
    2019 
    20201733#poststuff .postbox-container {
    2021         width: 100%;
     1734  width: 100%;
    20221735}
    2023 
    20241736#poststuff #post-body.columns-2 {
    2025         margin-right: 300px;
     1737  margin-right: 300px;
     1738}
     1739#post-body-content {
     1740  width: 100%;
     1741  float: left;
    20261742}
    2027 
    20281743#post-body.columns-2 #postbox-container-1 {
    2029         float: right;
    2030         margin-right: -300px;
    2031         width: 280px;
     1744  float: right;
     1745  margin-right: -300px;
     1746  width: 280px;
    20321747}
    2033 
    20341748#post-body.columns-2 #side-sortables {
    2035         min-height: 250px;
     1749  min-height: 250px;
    20361750}
    2037 
    20381751/* one column on the dash */
    20391752@media only screen and (max-width: 799px) {
    2040         #wpbody-content #dashboard-widgets .postbox-container {
    2041                 width: 100%;
    2042         }
    2043 
    2044         #wpbody-content .metabox-holder .postbox-container .empty-container {
    2045                 border: 0 none;
    2046                 height: 0;
    2047                 min-height: 0;
    2048         }
     1753  #wpbody-content #dashboard-widgets .postbox-container {
     1754    width: 100%;
     1755  }
     1756  #wpbody-content .metabox-holder .postbox-container .empty-container {
     1757    border: 0 none;
     1758    height: 0;
     1759    min-height: 0;
     1760  }
    20491761}
    2050 
    20511762/* two columns on the dash, but keep the setting if one is selected */
    20521763@media only screen and (min-width: 800px) and (max-width: 1200px) {
    2053         #wpbody-content #dashboard-widgets .postbox-container {
    2054                 width: 49.5%;
    2055         }
    2056 
    2057         #wpbody-content #dashboard-widgets #postbox-container-2,
    2058         #wpbody-content #dashboard-widgets #postbox-container-3,
    2059         #wpbody-content #dashboard-widgets #postbox-container-4 {
    2060                 float: right;
    2061                 width: 50.5%;
    2062         }
    2063 
    2064         #dashboard-widgets #postbox-container-3 .empty-container,
    2065         #dashboard-widgets #postbox-container-4 .empty-container {
    2066                 border: 0 none;
    2067                 height: 0;
    2068                 min-height: 0;
    2069         }
    2070 
    2071         #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
    2072                 width: 100%;
    2073         }
    2074 
    2075         #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container {
    2076                 border: 0 none;
    2077                 height: 0;
    2078                 min-height: 0;
    2079         }
    2080 
    2081         /* show the radio buttons for column prefs only for one or two columns */
    2082         .index-php .screen-layout,
    2083         .index-php .columns-prefs {
    2084                 display: block;
    2085         }
    2086 
    2087         .columns-prefs .columns-prefs-3,
    2088         .columns-prefs .columns-prefs-4 {
    2089                 display: none;
    2090         }
     1764  #wpbody-content #dashboard-widgets .postbox-container {
     1765    width: 49.5%;
     1766  }
     1767  #wpbody-content #dashboard-widgets #postbox-container-2,
     1768  #wpbody-content #dashboard-widgets #postbox-container-3,
     1769  #wpbody-content #dashboard-widgets #postbox-container-4 {
     1770    float: right;
     1771    width: 50.5%;
     1772  }
     1773  #dashboard-widgets #postbox-container-3 .empty-container,
     1774  #dashboard-widgets #postbox-container-4 .empty-container {
     1775    border: 0 none;
     1776    height: 0;
     1777    min-height: 0;
     1778  }
     1779  #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
     1780    width: 100%;
     1781  }
     1782  #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container {
     1783    border: 0 none;
     1784    height: 0;
     1785    min-height: 0;
     1786  }
     1787  /* show the radio buttons for column prefs only for one or two columns */
     1788  .index-php .screen-layout,
     1789  .index-php .columns-prefs {
     1790    display: block;
     1791  }
     1792  .columns-prefs .columns-prefs-3,
     1793  .columns-prefs .columns-prefs-4 {
     1794    display: none;
     1795  }
    20911796}
    2092 
    20931797/* one column on the post write/edit screen */
    20941798@media only screen and (max-width: 850px) {
    2095         #wpbody-content #poststuff #post-body {
    2096                 margin: 0;
    2097         }
    2098 
    2099         #wpbody-content #post-body.columns-2 #postbox-container-1 {
    2100                 margin-right: 0;
    2101                 width: 100%;
    2102         }
    2103 
    2104         #poststuff #postbox-container-1 .empty-container,
    2105         #poststuff #postbox-container-1 #side-sortables:empty {
    2106                 border: 0 none;
    2107                 height: 0;
    2108                 min-height: 0;
    2109         }
    2110 
    2111         #poststuff #post-body.columns-2 #side-sortables {
    2112                 min-height: 0;
    2113         }
    2114 
    2115         /* hide the radio buttons for column prefs */
    2116         .screen-layout,
    2117         .columns-prefs {
    2118                 display: none;
    2119         }
     1799  #wpbody-content #poststuff #post-body {
     1800    margin: 0;
     1801  }
     1802  #wpbody-content #post-body.columns-2 #postbox-container-1 {
     1803    margin-right: 0;
     1804    width: 100%;
     1805  }
     1806  #poststuff #postbox-container-1 .empty-container,
     1807  #poststuff #postbox-container-1 #side-sortables:empty {
     1808    border: 0 none;
     1809    height: 0;
     1810    min-height: 0;
     1811  }
     1812  #poststuff #post-body.columns-2 #side-sortables {
     1813    min-height: 0;
     1814  }
     1815  /* hide the radio buttons for column prefs */
     1816  .screen-layout,
     1817  .columns-prefs {
     1818    display: none;
     1819  }
    21201820}
    2121 
    21221821.postbox .hndle {
    2123         -webkit-border-top-left-radius: 3px;
    2124         -webkit-border-top-right-radius: 3px;
    2125         border-top-left-radius: 3px;
    2126         border-top-right-radius: 3px;
     1822  border-top-left-radius: 3px;
     1823  border-top-right-radius: 3px;
     1824  -moz-border-top-left-radius: 3px;
     1825  -moz-border-top-right-radius: 3px;
     1826  -webkit-border-top-left-radius: 3px;
     1827  -webkit-border-top-right-radius: 3px;
    21271828}
    2128 
    21291829.js .postbox .hndle {
    2130         cursor: move;
     1830  cursor: move;
    21311831}
    2132 
    21331832.postbox.closed .hndle {
    2134         -webkit-border-radius: 3px;
    2135         border-radius: 3px;
     1833  border-radius: 3px;
     1834  -moz-border-radius: 3px;
     1835  -webkit-border-radius: 3px;
    21361836}
    2137 
    21381837.hndle a {
    2139         font-size: 11px;
    2140         font-weight: normal;
     1838  font-size: 11px;
     1839  font-weight: normal;
    21411840}
    2142 
    21431841.postbox .handlediv {
    2144         float: right;
    2145         width: 27px;
    2146         height: 30px;
     1842  float: right;
     1843  width: 27px;
     1844  height: 30px;
    21471845}
    2148 
    21491846.js .postbox .handlediv {
    2150         cursor: pointer;
     1847  cursor: pointer;
    21511848}
    2152 
    21531849.sortable-placeholder {
    2154         border-width: 1px;
    2155         border-style: dashed;
    2156         margin-bottom: 20px;
     1850  border-width: 1px;
     1851  border-style: dashed;
     1852  margin-bottom: 20px;
    21571853}
    2158 
    21591854.widget,
    21601855.postbox,
    21611856.stuffbox {
    2162         margin-bottom: 20px;
    2163         padding: 0;
    2164         border-width: 1px;
    2165         border-style: solid;
    2166         line-height: 1;
     1857  margin-bottom: 20px;
     1858  padding: 0;
     1859  border-width: 1px;
     1860  border-style: solid;
     1861  line-height: 1;
    21671862}
    2168 
    21691863.widget .widget-top,
    21701864.postbox h3,
    21711865.stuffbox h3 {
    2172         margin-top: 1px;
    2173         border-bottom-width: 1px;
    2174         border-bottom-style: solid;
    2175         -webkit-user-select: none;
    2176         -moz-user-select: none;
    2177         user-select: none;
     1866  margin-top: 1px;
     1867  border-bottom-width: 1px;
     1868  border-bottom-style: solid;
     1869  -webkit-user-select: none;
     1870  -moz-user-select: none;
     1871  user-select: none;
    21781872}
    2179 
    21801873.js .widget .widget-top,
    21811874.js .postbox h3 {
    2182         cursor: move;
     1875  cursor: move;
    21831876}
    2184 
    21851877.postbox .inside,
    21861878.stuffbox .inside {
    2187         padding: 0 12px 0 10px;
    2188         line-height: 1.4em;
     1879  padding: 0 12px 0 10px;
     1880  line-height: 1.4em;
    21891881}
    2190 
    21911882.postbox .inside {
    2192         margin: 10px 0;
    2193         position: relative;
     1883  margin: 10px 0;
     1884  position: relative;
    21941885}
    2195 
    21961886.postbox.closed h3 {
    2197         border: none;
    2198         -webkit-box-shadow: none;
    2199         box-shadow: none;
     1887  border: none;
     1888  -moz-box-shadow: none;
     1889  -webkit-box-shadow: none;
     1890  box-shadow: none;
    22001891}
    2201 
    22021892.postbox table.form-table {
    2203         margin-bottom: 0;
     1893  margin-bottom: 0;
    22041894}
    2205 
    22061895.temp-border {
    2207         border: 1px dotted #ccc;
     1896  border: 1px dotted #ccc;
    22081897}
    2209 
    22101898.columns-prefs label {
    2211         padding: 0 5px;
     1899  padding: 0 5px;
    22121900}
    2213 
    2214 
    22151901/*------------------------------------------------------------------------------
    22161902  9.0 - Dashboard
    22171903------------------------------------------------------------------------------*/
    2218 
    22191904#dashboard-widgets-wrap {
    2220         margin: 0 -8px;
     1905  margin: 0 -8px;
    22211906}
    2222 
    22231907#wpbody-content .metabox-holder {
    2224         padding-top: 10px;
     1908  padding-top: 10px;
    22251909}
    2226 
    22271910#dashboard-widgets .meta-box-sortables {
    2228         margin: 0 8px;
     1911  margin: 0 8px;
    22291912}
    2230 
    22311913#dashboard_recent_comments div.undo {
    2232         border-top-style: solid;
    2233         border-top-width: 1px;
    2234         margin: 0 -10px;
    2235         padding: 3px 8px;
    2236         font-size: 11px;
    2237 }
    2238 
    2239 #the-comment-list td.comment p.comment-author {
    2240         margin-top: 0;
    2241         margin-left: 0;
    2242 }
    2243 
    2244 #the-comment-list p.comment-author img {
    2245         float: left;
    2246         margin-right: 8px;
    2247 }
    2248 
    2249 #the-comment-list p.comment-author strong a {
    2250         border: none;
    2251 }
    2252 
    2253 #the-comment-list td {
    2254         vertical-align: top;
    2255 }
    2256 
    2257 #the-comment-list td.comment {
    2258         word-wrap: break-word;
     1914  border-top-style: solid;
     1915  border-top-width: 1px;
     1916  margin: 0 -10px;
     1917  padding: 3px 8px;
     1918  font-size: 11px;
    22591919}
    2260 
    22611920/* Welcome Panel */
    22621921.welcome-panel {
    2263         position: relative;
    2264         overflow: auto;
    2265         margin: 20px 0;
    2266         padding: 23px 10px 12px;
    2267         border-width: 1px;
    2268         border-style: solid;
    2269         border-radius: 3px;
    2270         font-size: 13px;
    2271         line-height: 2.1em;
     1922  position: relative;
     1923  overflow: auto;
     1924  margin: 20px 0;
     1925  padding: 23px 10px 12px;
     1926  border-width: 1px;
     1927  border-style: solid;
     1928  border-radius: 3px;
     1929  -moz-border-radius: 3px;
     1930  -webkit-border-radius: 3px;
     1931  font-size: 13px;
     1932  line-height: 2.1em;
    22721933}
    2273 
    22741934.welcome-panel h3 {
    2275         margin: 0;
    2276         font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
    2277         font-size: 21px;
    2278         font-weight: normal;
    2279         line-height: 1.2;
     1935  margin: 0;
     1936  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
     1937  font-size: 21px;
     1938  font-weight: normal;
     1939  line-height: 1.2;
    22801940}
    22811941.welcome-panel h4 {
    2282         margin: 1.33em 0 0;
    2283         font-size: 13px;
     1942  margin: 1.33em 0 0;
     1943  font-size: 13px;
    22841944}
    2285 
    22861945.welcome-panel .about-description {
    2287         font-size: 16px;
    2288         margin: 0;
     1946  font-size: 16px;
     1947  margin: 0;
    22891948}
    2290 
    22911949.welcome-panel .welcome-panel-close {
    2292         position: absolute;
    2293         top: 5px;
    2294         right: 10px;
    2295         padding: 8px 3px;
    2296         font-size: 13px;
    2297         text-decoration: none;
    2298         line-height: 1;
     1950  position: absolute;
     1951  top: 5px;
     1952  right: 10px;
     1953  padding: 8px 3px;
     1954  font-size: 13px;
     1955  text-decoration: none;
     1956  line-height: 1;
    22991957}
    2300 
    23011958.welcome-panel .welcome-panel-close:before {
    2302         content: ' ';
    2303         position: absolute;
    2304         left: -12px;
    2305         width: 10px;
    2306         height: 100%;
    2307         background: url('../images/xit.gif') 0 17% no-repeat;
     1959  content: ' ';
     1960  position: absolute;
     1961  left: -12px;
     1962  width: 10px;
     1963  height: 100%;
     1964  background: url('../images/xit.gif') 0 17% no-repeat;
    23081965}
    2309 
    23101966.welcome-panel .welcome-panel-close:hover:before {
    2311         background-position: 100% 17%;
     1967  background-position: 100% 17%;
    23121968}
    2313 
    23141969.wp-core-ui .welcome-panel .button.button-hero {
    2315     margin: 15px 0 3px;
     1970  margin: 15px 0 3px;
    23161971}
    2317 
    2318 .welcome-panel-content {
    2319         margin-left: 13px;
    2320         max-width: 1500px;
    2321 }
    2322 
    23231972.welcome-panel .welcome-panel-column-container {
    2324         clear: both;
    2325         overflow: hidden;
    2326         position: relative;
     1973  clear: both;
     1974  overflow: hidden;
     1975  position: relative;
    23271976}
    2328 
    23291977.welcome-panel .welcome-panel-column {
    2330         width: 32%;
    2331         min-width: 200px;
    2332         float: left;
    2333 }
    2334 
    2335 .ie8 .welcome-panel .welcome-panel-column {
    2336         min-width: 230px;
     1978  width: 32%;
     1979  min-width: 200px;
     1980  float: left;
    23371981}
    2338 
    23391982.welcome-panel .welcome-panel-column:first-child {
    2340         width: 36%;
     1983  width: 36%;
    23411984}
    2342 
    2343 .welcome-panel-column p {
    2344         margin-top: 7px;
     1985.welcome-panel .welcome-panel-column ul {
     1986  margin: 0.8em 1em 1em 0;
     1987}
     1988.welcome-panel .welcome-panel-column li {
     1989  line-height: 16px;
     1990  list-style-type: none;
     1991}
     1992.ie8 .welcome-panel .welcome-panel-column {
     1993  min-width: 230px;
    23451994}
    2346 
    23471995.welcome-panel .welcome-icon {
    2348         display: block;
    2349         padding: 2px 0 8px 32px;
    2350         background-image: url('../images/welcome-icons.png');
    2351         background-repeat: no-repeat;
    2352         background-size: 16px;
     1996  display: block;
     1997  padding: 2px 0 8px 32px;
     1998  background-image: url('../images/welcome-icons.png');
     1999  background-repeat: no-repeat;
     2000  background-size: 16px;
    23532001}
    2354 
    23552002.welcome-panel .welcome-add-page {
    2356         background-position: 0 2px;
     2003  background-position: 0 2px;
    23572004}
    2358 
    23592005.welcome-panel .welcome-edit-page {
    2360         background-position: 0 -90px;
     2006  background-position: 0 -90px;
    23612007}
    2362 
    23632008.welcome-panel .welcome-learn-more {
    2364         background-position: 0 -136px;
     2009  background-position: 0 -136px;
    23652010}
    2366 
    23672011.welcome-panel .welcome-comments {
    2368         background-position: 0 -182px;
     2012  background-position: 0 -182px;
    23692013}
    2370 
    23712014.welcome-panel .welcome-view-site {
    2372         background-position: 0 -274px;
     2015  background-position: 0 -274px;
    23732016}
    2374 
    23752017.welcome-panel .welcome-widgets-menus {
    2376         background-position: 1px -229px;
    2377         line-height: 14px;
     2018  background-position: 1px -229px;
     2019  line-height: 14px;
    23782020}
    2379 
    23802021.welcome-panel .welcome-write-blog {
    2381         background-position: 0 -44px;
     2022  background-position: 0 -44px;
    23822023}
    2383 
    2384 .welcome-panel .welcome-panel-column ul {
    2385         margin: 0.8em 1em 1em 0;
     2024.welcome-panel-content {
     2025  margin-left: 13px;
     2026  max-width: 1500px;
    23862027}
    2387 
    2388 .welcome-panel .welcome-panel-column li {
    2389     line-height: 16px;
    2390     list-style-type: none;
     2028.welcome-panel-content p {
     2029  margin-top: 7px;
    23912030}
    2392 
    23932031@media screen and (max-width: 870px) {
    2394         .welcome-panel .welcome-panel-column,
    2395         .welcome-panel .welcome-panel-column:first-child {
    2396                 display: block;
    2397                 float: none;
    2398                 width: 100%;
    2399         }
    2400 
    2401         .welcome-panel .welcome-panel-column li {
    2402                 display: inline-block;
    2403                 margin-right: 13px;
    2404         }
    2405 
    2406         .welcome-panel .welcome-panel-column ul {
    2407                 margin: 0.4em 0 0;
    2408         }
    2409 
    2410         .welcome-panel .welcome-icon {
    2411                 padding-left: 25px;
    2412         }
     2032  .welcome-panel .welcome-panel-column,
     2033  .welcome-panel .welcome-panel-column:first-child {
     2034    display: block;
     2035    float: none;
     2036    width: 100%;
     2037  }
     2038  .welcome-panel .welcome-panel-column li {
     2039    display: inline-block;
     2040    margin-right: 13px;
     2041  }
     2042  .welcome-panel .welcome-panel-column ul {
     2043    margin: 0.4em 0 0;
     2044  }
     2045  .welcome-panel .welcome-icon {
     2046    padding-left: 25px;
     2047  }
    24132048}
    2414 
    2415 /*------------------------------------------------------------------------------
    2416   10.0 - List Posts (/Pages/etc)
    2417 ------------------------------------------------------------------------------*/
    2418 
    2419 table.fixed {
    2420         table-layout: fixed;
     2049/* dashboard */
     2050.edit-box {
     2051  display: none;
    24212052}
    2422 
    2423 .fixed .column-rating,
    2424 .fixed .column-visible {
    2425         width: 8%;
     2053h3:hover .edit-box {
     2054  display: inline;
    24262055}
    2427 
    2428 .fixed .column-posts,
    2429 .fixed .column-date,
    2430 .fixed .column-parent,
    2431 .fixed .column-links,
    2432 .fixed .column-author,
    2433 .fixed .column-format {
    2434         width: 10%;
     2056#dashboard-widgets form .input-text-wrap input {
     2057  width: 100%;
    24352058}
    2436 
    2437 .fixed .column-response,
    2438 .fixed .column-categories,
    2439 .fixed .column-tags,
    2440 .fixed .column-rel,
    2441 .fixed .column-role {
    2442         width: 15%;
     2059#dashboard-widgets form .textarea-wrap textarea {
     2060  width: 100%;
    24432061}
    2444 
    2445 .fixed .column-slug {
    2446         width: 25%;
     2062#dashboard-widgets .postbox form .submit {
     2063  float: none;
     2064  margin: .5em 0 0;
     2065  padding: 0;
     2066  border: none;
    24472067}
    2448 
    2449 .fixed .column-locations {
    2450         width: 35%;
     2068#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish {
     2069  min-width: 0;
    24512070}
    2452 
    2453 .fixed .column-comments {
    2454         width: 4em;
    2455         padding: 8px 0;
    2456         text-align: left;
     2071#dashboard-widgets a {
     2072  text-decoration: none;
    24572073}
    2458 
    2459 .fixed .column-comments .vers {
    2460         padding-left: 3px;
     2074#dashboard-widgets h3 a {
     2075  text-decoration: underline;
    24612076}
    2462 
    2463 .fixed .column-comments a {
    2464         float: left;
     2077#dashboard-widgets h3 .postbox-title-action {
     2078  position: absolute;
     2079  right: 10px;
     2080  padding: 0;
     2081  top: 5px;
    24652082}
    2466 
    2467 .fixed .column-icon {
    2468         width: 80px;
     2083.js #dashboard-widgets h3 .postbox-title-action {
     2084  right: 30px;
     2085}
     2086#dashboard-widgets h4 {
     2087  font-size: 13px;
     2088  font-weight: normal;
     2089  line-height: 1;
     2090  margin: 0 0 .2em;
     2091  padding: 0;
     2092}
     2093/* Right Now */
     2094#dashboard_right_now p.sub,
     2095#dashboard_right_now .table,
     2096#dashboard_right_now .versions {
     2097  margin: -12px;
     2098}
     2099#dashboard_right_now .inside {
     2100  font-size: 12px;
     2101  padding-top: 20px;
     2102}
     2103#dashboard_right_now p.sub {
     2104  padding: 5px 0 15px;
     2105  color: #8f8f8f;
     2106  font-size: 14px;
     2107  position: absolute;
     2108  top: -17px;
     2109  left: 15px;
     2110}
     2111#dashboard_right_now .table {
     2112  margin: 0;
     2113  padding: 0;
     2114  position: relative;
     2115}
     2116#dashboard_right_now .table_content {
     2117  float: left;
     2118  border-top-width: 1px;
     2119  border-top-style: solid;
     2120  width: 45%;
     2121}
     2122#dashboard_right_now .table_discussion {
     2123  float: right;
     2124  border-top-width: 1px;
     2125  border-top-style: solid;
     2126  width: 45%;
     2127}
     2128#dashboard_right_now table td {
     2129  padding: 3px 0;
     2130  white-space: nowrap;
     2131}
     2132#dashboard_right_now table tr.first td {
     2133  border-top: none;
     2134}
     2135#dashboard_right_now td.b {
     2136  padding-right: 6px;
     2137  text-align: right;
     2138  font-size: 14px;
     2139  width: 1%;
     2140}
     2141#dashboard_right_now td.b a {
     2142  font-size: 18px;
     2143}
     2144#dashboard_right_now td.b a:hover {
     2145  color: #d54e21;
     2146}
     2147#dashboard_right_now .t {
     2148  font-size: 12px;
     2149  padding-right: 12px;
     2150  padding-top: 6px;
     2151  color: #777;
     2152}
     2153#dashboard_right_now .t a {
     2154  white-space: nowrap;
     2155}
     2156#dashboard_right_now .spam {
     2157  color: red;
     2158}
     2159#dashboard_right_now .waiting {
     2160  color: #e66f00;
     2161}
     2162#dashboard_right_now .approved {
     2163  color: green;
     2164}
     2165#dashboard_right_now .versions {
     2166  padding: 6px 10px 12px;
     2167  clear: both;
     2168}
     2169#dashboard_right_now a.button {
     2170  float: right;
     2171  clear: right;
     2172  position: relative;
     2173  top: -5px;
     2174}
     2175/* Recent Comments */
     2176#dashboard_recent_comments h3 {
     2177  margin-bottom: 0;
     2178}
     2179#dashboard_recent_comments .inside {
     2180  margin-top: 0;
     2181}
     2182#dashboard_recent_comments .comment-meta .approve {
     2183  font-style: italic;
     2184  font-family: sans-serif;
     2185  font-size: 10px;
     2186}
     2187#dashboard_recent_comments .subsubsub {
     2188  float: none;
     2189  white-space: normal;
     2190}
     2191#the-comment-list {
     2192  position: relative;
     2193}
     2194#the-comment-list p.comment-author img {
     2195  float: left;
     2196  margin-right: 8px;
     2197}
     2198#the-comment-list p.comment-author strong a {
     2199  border: none;
     2200}
     2201#the-comment-list td {
     2202  vertical-align: top;
     2203}
     2204#the-comment-list td.comment {
     2205  word-wrap: break-word;
     2206}
     2207#the-comment-list td.comment p.comment-author {
     2208  margin-top: 0;
     2209  margin-left: 0;
     2210}
     2211#the-comment-list .comment-item {
     2212  padding: 1em 10px;
     2213  border-top: 1px solid;
     2214}
     2215#the-comment-list .comment-item .avatar {
     2216  float: left;
     2217  margin: 0 10px 5px 0;
     2218}
     2219#the-comment-list .comment-item h4 {
     2220  line-height: 1.7em;
     2221  margin-top: -0.4em;
     2222  color: #777;
     2223}
     2224#the-comment-list .comment-item h4 cite {
     2225  font-style: normal;
     2226  font-weight: normal;
     2227}
     2228#the-comment-list .comment-item:first-child {
     2229  border-top: none;
     2230}
     2231#the-comment-list .comment-item blockquote,
     2232#the-comment-list .comment-item blockquote p {
     2233  margin: 0;
     2234  padding: 0;
     2235  display: inline;
     2236}
     2237#the-comment-list .comment-item p.row-actions {
     2238  margin: 3px 0 0;
     2239  padding: 0;
     2240  font-size: 12px;
     2241}
     2242#the-comment-list .pingback {
     2243  padding-left: 9px !important;
     2244}
     2245#the-comment-list .comment-item,
     2246#the-comment-list #replyrow {
     2247  margin: 0 -10px;
     2248}
     2249#dashboard_recent_comments #the-comment-list .trackback blockquote,
     2250#dashboard_recent_comments #the-comment-list .pingback blockquote {
     2251  display: block;
     2252}
     2253/* QuickPress */
     2254#title-wrap label,
     2255#tags-input-wrap label {
     2256  cursor: text;
     2257}
     2258#title-wrap #title {
     2259  padding: 2px 6px;
     2260  font-size: 1.3em;
     2261  line-height: 100%;
     2262  outline: none;
     2263}
     2264#title-wrap #title-prompt-text {
     2265  font-size: 1.3em;
     2266  padding: 5px 8px;
     2267}
     2268#tags-input-wrap #tags-input {
     2269  outline: none;
     2270}
     2271#tags-input-wrap #tags-input-prompt-text {
     2272  font-size: 1em;
     2273  padding: 4px 8px;
     2274}
     2275.no-js #dashboard_quick_press {
     2276  display: none;
     2277}
     2278#dashboard_quick_press .easy-blogging {
     2279  padding: 0 8px;
     2280  text-align: left;
     2281}
     2282#dashboard_quick_press .input-text-wrap {
     2283  position: relative;
     2284}
     2285#dashboard_quick_press .prompt {
     2286  color: #bbb;
     2287  position: absolute;
     2288}
     2289#dashboard_quick_press div.updated {
     2290  padding: 0 5px;
     2291}
     2292#dashboard_quick_press .input-text-wrap,
     2293#dashboard_quick_press .textarea-wrap {
     2294  margin: 0 0 1em 0;
     2295}
     2296#dashboard_quick_press .wp-media-buttons {
     2297  margin: 0 0 .2em 1px;
     2298  padding: 0;
     2299}
     2300#dashboard_quick_press .wp-media-buttons a {
     2301  color: #777;
     2302}
     2303#dashboard-widgets #dashboard_quick_press form p.submit input {
     2304  float: left;
     2305}
     2306#dashboard-widgets #dashboard_quick_press form p.submit #save-post {
     2307  margin: 0 0.7em 0 1px;
     2308}
     2309#dashboard-widgets #dashboard_quick_press form p.submit #publish {
     2310  float: right;
     2311}
     2312#dashboard-widgets #dashboard_quick_press form p.submit .spinner {
     2313  vertical-align: middle;
     2314  margin: 4px 6px 0 0;
     2315}
     2316/* Recent Drafts */
     2317#dashboard_recent_drafts ul,
     2318#dashboard_recent_drafts p {
     2319  margin: 0;
     2320  padding: 0;
     2321  word-wrap: break-word;
     2322}
     2323#dashboard_recent_drafts ul {
     2324  list-style: none;
     2325}
     2326#dashboard_recent_drafts ul li {
     2327  margin-bottom: 1em;
     2328}
     2329#dashboard_recent_drafts h4 {
     2330  line-height: 1.7em;
     2331  word-wrap: break-word;
     2332}
     2333#dashboard_recent_drafts h4 abbr {
     2334  font-weight: normal;
     2335  font-family: sans-serif;
     2336  font-size: 12px;
     2337  color: #999;
     2338  margin-left: 3px;
     2339}
     2340/* Feeds */
     2341.rss-widget ul {
     2342  margin: 0;
     2343  padding: 0;
     2344  list-style: none;
     2345}
     2346.rss-widget ul li {
     2347  line-height: 1.5em;
     2348  margin-bottom: 12px;
     2349}
     2350.rss-widget span.rss-date {
     2351  color: #999;
     2352  font-size: 12px;
     2353  margin-left: 3px;
     2354}
     2355.rss-widget cite {
     2356  display: block;
     2357  text-align: right;
     2358  margin: 0 0 1em;
     2359  padding: 0;
     2360}
     2361.rss-widget cite:before {
     2362  content: '\2014';
     2363}
     2364a.rsswidget {
     2365  font-size: 13px;
     2366  line-height: 1.7em;
     2367}
     2368/* Plugins */
     2369#dashboard_plugins h4 {
     2370  line-height: 1.7em;
     2371}
     2372#dashboard_plugins h5 {
     2373  font-size: 13px;
     2374  font-weight: normal;
     2375  line-height: 1.4em;
     2376  margin: 0;
     2377  display: inline;
     2378}
     2379#dashboard_plugins h5 a {
     2380  line-height: 1.4em;
     2381}
     2382#dashboard_plugins .inside span {
     2383  font-size: 12px;
     2384  padding-left: 5px;
     2385}
     2386#dashboard_plugins p {
     2387  margin: 0.3em 0 1.4em;
     2388  line-height: 1.4em;
     2389}
     2390.dashboard-comment-wrap {
     2391  overflow: hidden;
     2392  word-wrap: break-word;
     2393}
     2394/* Browser Nag */
     2395#dashboard_browser_nag a {
     2396  color: white;
     2397  text-decoration: underline;
     2398}
     2399#dashboard_browser_nag a.update-browser-link {
     2400  font-size: 1.2em;
     2401  font-weight: bold;
     2402  line-height: normal;
     2403}
     2404#dashboard_browser_nag a.browse-happy-link,
     2405#dashboard_browser_nag a.update-browser-link {
     2406  text-shadow: #d29a04 0 1px 0;
     2407}
     2408#dashboard_browser_nag p.browser-update-nag.has-browser-icon {
     2409  padding-right: 125px;
     2410}
     2411#dashboard_browser_nag .browser-icon {
     2412  margin-top: -35px;
     2413}
     2414#dashboard_browser_nag.postbox {
     2415  background-color: #e29808;
     2416  background-image: none;
     2417  border-color: #edc048;
     2418  color: white;
     2419  -moz-box-shadow: none;
     2420  -webkit-box-shadow: none;
     2421  box-shadow: none;
     2422}
     2423#dashboard_browser_nag.postbox h3 {
     2424  border-bottom-color: #f6e2ac;
     2425  text-shadow: none;
     2426  background: transparent none;
     2427  color: white;
     2428  -moz-box-shadow: none;
     2429  -webkit-box-shadow: none;
     2430  box-shadow: none;
     2431}
     2432#dashboard_browser_nag.postbox.browser-insecure {
     2433  background-color: #ac1b1b;
     2434  border-color: #ac1b1b;
     2435}
     2436#dashboard_browser_nag.postbox.browser-insecure h3 {
     2437  border-bottom-color: #cd5a5a;
     2438  color: white;
     2439}
     2440#dashboard_browser_nag.browser-insecure a.browse-happy-link,
     2441#dashboard_browser_nag.browser-insecure a.update-browser-link {
     2442  text-shadow: #871b15 0 1px 0;
     2443}
     2444/*------------------------------------------------------------------------------
     2445  10.0 - List Posts (/Pages/etc)
     2446------------------------------------------------------------------------------*/
     2447table.fixed {
     2448  table-layout: fixed;
     2449}
     2450.fixed .column-rating,
     2451.fixed .column-visible {
     2452  width: 8%;
     2453}
     2454.fixed .column-posts,
     2455.fixed .column-date,
     2456.fixed .column-parent,
     2457.fixed .column-links,
     2458.fixed .column-author,
     2459.fixed .column-format {
     2460  width: 10%;
     2461}
     2462.fixed .column-response,
     2463.fixed .column-categories,
     2464.fixed .column-tags,
     2465.fixed .column-rel,
     2466.fixed .column-role {
     2467  width: 15%;
     2468}
     2469.fixed .column-slug {
     2470  width: 25%;
     2471}
     2472.fixed .column-locations {
     2473  width: 35%;
     2474}
     2475.fixed .column-comments {
     2476  width: 4em;
     2477  padding: 8px 0;
     2478  text-align: left;
     2479}
     2480.fixed .column-comments .vers {
     2481  padding-left: 3px;
     2482}
     2483.fixed .column-comments a {
     2484  float: left;
     2485}
     2486.fixed .column-icon {
     2487  width: 80px;
    24692488}
    2470 
    24712489#comments-form .fixed .column-author {
    2472         width: 20%;
     2490  width: 20%;
    24732491}
    2474 
    24752492#commentsdiv.postbox .inside {
    2476         margin: 0;
    2477         padding: 0;
     2493  margin: 0;
     2494  padding: 0;
    24782495}
    2479 
    24802496#commentsdiv .inside .row-actions {
    2481         line-height:18px;
     2497  line-height: 18px;
    24822498}
    2483 
    24842499#commentsdiv .inside .column-author {
    2485         width: 25%;
     2500  width: 25%;
    24862501}
    2487 
    24882502#commentsdiv .column-comment p {
    2489         margin: 0.6em 0;
    2490         padding: 0;
     2503  margin: 0.6em 0;
     2504  padding: 0;
    24912505}
    2492 
    24932506#commentsdiv #replyrow td {
    2494         padding: 0;
     2507  padding: 0;
    24952508}
    2496 
    24972509#commentsdiv p {
    2498         padding: 8px 10px;
    2499         margin: 0;
     2510  padding: 8px 10px;
     2511  margin: 0;
    25002512}
    2501 
    25022513#commentsdiv #add-new-comment {
    2503         border-width: 0 0 1px;
    2504         border-style: none none solid;
     2514  border-width: 0 0 1px;
     2515  border-style: none none solid;
    25052516}
    2506 
    25072517#commentsdiv .comments-box {
    2508         border: 0 none;
     2518  border: 0 none;
    25092519}
    2510 
    25112520#commentsdiv .comments-box thead th {
    2512         background: transparent;
    2513         padding: 0 7px 4px;
    2514         font-style: italic;
     2521  background: transparent;
     2522  padding: 0 7px 4px;
     2523  font-style: italic;
    25152524}
    2516 
    25172525#commentsdiv .comments-box tr:last-child td {
    2518         border-bottom: 0 none;
     2526  border-bottom: 0 none;
    25192527}
    2520 
    25212528#commentsdiv .spinner {
    2522         padding-left: 5px;
     2529  padding-left: 5px;
    25232530}
    2524 
    25252531.sorting-indicator {
    2526         display: none;
    2527         width: 7px;
    2528         height: 4px;
    2529         margin-top: 8px;
    2530         margin-left: 7px;
    2531         background-image: url('../images/sort.gif');
    2532         background-repeat: no-repeat;
     2532  display: none;
     2533  width: 7px;
     2534  height: 4px;
     2535  margin-top: 8px;
     2536  margin-left: 7px;
     2537  background-image: url('../images/sort.gif');
     2538  background-repeat: no-repeat;
    25332539}
    2534 
    25352540tr.wp-locked .locked-indicator {
    2536         background: url('../images/lock.png') no-repeat;
    2537         margin: -2px 0 0 6px;
    2538         height: 20px;
    2539         width: 16px;
     2541  background: url('../images/lock.png') no-repeat;
     2542  margin: -2px 0 0 6px;
     2543  height: 20px;
     2544  width: 16px;
    25402545}
    2541 
    25422546tr.wp-locked .check-column label,
    25432547tr.wp-locked .check-column input[type="checkbox"],
    25442548tr.wp-locked .row-actions .inline,
    25452549tr.wp-locked .row-actions .trash {
    2546         display: none;
     2550  display: none;
    25472551}
    2548 
    25492552tr .locked-info {
    2550         height: 0;
    2551         opacity: 0;
     2553  height: 0;
     2554  opacity: 0;
    25522555}
    2553 
    25542556tr.wp-locked .locked-info {
    2555         height: auto;
    2556         opacity: 1;
     2557  height: auto;
     2558  opacity: 1;
    25572559}
    2558 
    2559 tr.locked-info, tr.wp-locked .locked-info {
    2560         -webkit-transition: height 1s, opacity 500ms;
    2561         -moz-transition:    height 1s, opacity 500ms;
    2562         -ms-transition:    height 1s, opacity 500ms;
    2563         -o-transition:      height 1s, opacity 500ms;
    2564         transition:        height 1s, opacity 500ms;
     2560tr.locked-info,
     2561tr.wp-locked .locked-info {
     2562  -webkit-transition: height 1s, opacity 500ms;
     2563  -moz-transition: height 1s, opacity 500ms;
     2564  -ms-transition: height 1s, opacity 500ms;
     2565  -o-transition: height 1s, opacity 500ms;
     2566  transition: height 1s, opacity 500ms;
    25652567}
    2566 
    25672568.fixed .column-comments .sorting-indicator {
    2568         margin-top: 3px;
     2569  margin-top: 3px;
    25692570}
    2570 
    25712571#menu-locations-wrap .widefat {
    2572         width: 60%;
     2572  width: 60%;
    25732573}
    2574 
    25752574.widefat th.sortable,
    25762575.widefat th.sorted {
    2577         padding: 0;
     2576  padding: 0;
    25782577}
    2579 
    25802578th.sortable a,
    25812579th.sorted a {
    2582         display: block;
    2583         overflow: hidden;
    2584         padding: 7px 7px 8px;
     2580  display: block;
     2581  overflow: hidden;
     2582  padding: 7px 7px 8px;
    25852583}
    2586 
    25872584.fixed .column-comments.sortable a,
    25882585.fixed .column-comments.sorted a {
    2589         padding: 8px 0;
     2586  padding: 8px 0;
    25902587}
    2591 
    25922588th.sortable a span,
    25932589th.sorted a span {
    2594         float: left;
    2595         cursor: pointer;
     2590  float: left;
     2591  cursor: pointer;
    25962592}
    2597 
    25982593th.sorted.asc .sorting-indicator,
    25992594th.desc:hover span.sorting-indicator {
    2600         display: block;
    2601         background-position: 0 0;
     2595  display: block;
     2596  background-position: 0 0;
    26022597}
    2603 
    26042598th.sorted.desc .sorting-indicator,
    26052599th.asc:hover span.sorting-indicator {
    2606         display: block;
    2607         background-position: -7px 0;
     2600  display: block;
     2601  background-position: -7px 0;
    26082602}
    2609 
    26102603/* Bulk Actions */
    26112604.tablenav-pages a {
    2612         border-bottom-style: solid;
    2613         border-bottom-width: 2px;
    2614         font-weight: bold;
    2615         margin-right: 1px;
    2616         padding: 0 2px;
     2605  border-bottom-style: solid;
     2606  border-bottom-width: 2px;
     2607  font-weight: bold;
     2608  margin-right: 1px;
     2609  padding: 0 2px;
    26172610}
    26182611.tablenav-pages .current-page {
    2619         text-align: center;
     2612  text-align: center;
    26202613}
    26212614.tablenav-pages .next-page {
    2622         margin-left: 2px;
    2623 }
    2624 
    2625 .tablenav a.button-secondary {
    2626         display: block;
    2627         margin: 3px 8px 0 0;
     2615  margin-left: 2px;
    26282616}
    2629 
    26302617.tablenav {
    2631         clear: both;
    2632         height: 30px;
    2633         margin: 6px 0 4px;
    2634         vertical-align: middle;
     2618  clear: both;
     2619  height: 30px;
     2620  margin: 6px 0 4px;
     2621  vertical-align: middle;
    26352622}
    2636 
    26372623.tablenav.themes {
    2638         max-width: 98%;
     2624  max-width: 98%;
     2625}
     2626.tablenav a.button-secondary {
     2627  display: block;
     2628  margin: 3px 8px 0 0;
    26392629}
    2640 
    26412630.tablenav .tablenav-pages {
    2642         float: right;
    2643         display: block;
    2644         cursor: default;
    2645         height: 30px;
    2646         line-height: 30px;
    2647         font-size: 12px;
     2631  float: right;
     2632  display: block;
     2633  cursor: default;
     2634  height: 30px;
     2635  line-height: 30px;
     2636  font-size: 12px;
     2637}
     2638.tablenav .tablenav-pages a.disabled:hover,
     2639.tablenav .tablenav-pages a.disabled:active {
     2640  cursor: default;
    26482641}
    2649 
    26502642.tablenav .no-pages,
    26512643.tablenav .one-page .pagination-links {
    2652         display: none;
     2644  display: none;
    26532645}
    2654 
    2655 .tablenav .tablenav-pages a,
    2656 .tablenav-pages span.current  {
    2657         text-decoration: none;
    2658         padding: 3px 6px;
     2646.tablenav .displaying-num {
     2647  margin-right: 10px;
     2648  font-size: 12px;
     2649  font-style: italic;
    26592650}
    2660 
    2661 .tablenav .tablenav-pages a.disabled:hover ,
    2662 .tablenav .tablenav-pages a.disabled:active {
    2663         cursor: default;
    2664 }
    2665 
    2666 .tablenav .displaying-num {
    2667         margin-right: 10px;
    2668         font-size: 12px;
    2669         font-style: italic;
    2670 }
    2671 
    26722651.tablenav .actions {
    2673         overflow: hidden;
    2674         padding: 2px 8px 0 0;
     2652  overflow: hidden;
     2653  padding: 2px 8px 0 0;
    26752654}
    2676 
    26772655.tablenav .delete {
    2678         margin-right: 20px;
     2656  margin-right: 20px;
     2657}
     2658.tablenav .tablenav-pages a,
     2659.tablenav-pages span.current {
     2660  text-decoration: none;
     2661  padding: 3px 6px;
    26792662}
    2680 
    26812663.view-switch {
    2682         float: right;
    2683         margin: 6px 8px 0;
     2664  float: right;
     2665  margin: 6px 8px 0;
    26842666}
    2685 
    26862667.view-switch a {
    2687         text-decoration: none;
     2668  text-decoration: none;
    26882669}
    2689 
    26902670.filter {
    2691         float: left;
    2692         margin: -5px 0 0 10px;
     2671  float: left;
     2672  margin: -5px 0 0 10px;
    26932673}
    2694 
    26952674.filter .subsubsub {
    2696         margin-left: -10px;
    2697         margin-top: 13px;
     2675  margin-left: -10px;
     2676  margin-top: 13px;
    26982677}
    26992678.screen-per-page {
    2700         width: 4em;
     2679  width: 4em;
    27012680}
    2702 
    27032681#posts-filter fieldset {
    2704         float: left;
    2705         margin: 0 1.5ex 1em 0;
    2706         padding: 0;
     2682  float: left;
     2683  margin: 0 1.5ex 1em 0;
     2684  padding: 0;
    27072685}
    2708 
    27092686#posts-filter fieldset legend {
    2710         padding: 0 0 .2em 1px;
     2687  padding: 0 0 .2em 1px;
    27112688}
    2712 
    2713 
    27142689/*------------------------------------------------------------------------------
    27152690  10.1 - Inline Editing
    27162691------------------------------------------------------------------------------*/
    2717 
    27182692/*
    27192693.quick-edit* is for Quick Edit
    27202694.bulk-edit* is for Bulk Edit
    27212695.inline-edit* is for everything
    27222696*/
    2723 
    27242697/*      Layout */
    2725 
    27262698#wpbody-content .inline-edit-row fieldset {
    2727         font-size: 12px;
    2728         float: left;
    2729         margin: 0;
    2730         padding: 0;
    2731         width: 100%;
    2732 }
    2733 
    2734 tr.inline-edit-row td,
    2735 #wpbody-content .inline-edit-row fieldset .inline-edit-col {
    2736         padding: 0 0.5em;
    2737 }
    2738 
    2739 #wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
    2740         border-width: 0 0 0 1px;
    2741         border-style: none none none solid;
     2699  font-size: 12px;
     2700  float: left;
     2701  margin: 0;
     2702  padding: 0;
     2703  width: 100%;
    27422704}
    2743 
    27442705#wpbody-content .quick-edit-row-post .inline-edit-col-left {
    2745         width: 40%;
     2706  width: 40%;
    27462707}
    2747 
    27482708#wpbody-content .quick-edit-row-post .inline-edit-col-right {
    2749         width: 39%;
     2709  width: 39%;
    27502710}
    2751 
    2752 #wpbody-content .inline-edit-row-post .inline-edit-col-center {
    2753         width: 20%;
     2711#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
     2712  border-width: 0 0 0 1px;
     2713  border-style: none none none solid;
    27542714}
    2755 
    27562715#wpbody-content .quick-edit-row-page .inline-edit-col-left {
    2757         width: 50%;
     2716  width: 50%;
     2717}
     2718#wpbody-content .inline-edit-row-post .inline-edit-col-center {
     2719  width: 20%;
    27582720}
    2759 
    27602721#wpbody-content .quick-edit-row-page .inline-edit-col-right,
    27612722#wpbody-content .bulk-edit-row-post .inline-edit-col-right {
    2762         width: 49%;
     2723  width: 49%;
    27632724}
    2764 
    27652725#wpbody-content .bulk-edit-row .inline-edit-col-left {
    2766         width: 30%;
     2726  width: 30%;
    27672727}
    2768 
    27692728#wpbody-content .bulk-edit-row-page .inline-edit-col-right {
    2770         width: 69%;
     2729  width: 69%;
    27712730}
    2772 
    27732731#wpbody-content .bulk-edit-row .inline-edit-col-bottom {
    2774         float: right;
    2775         width: 69%;
     2732  float: right;
     2733  width: 69%;
    27762734}
    2777 
    27782735#wpbody-content .inline-edit-row-page .inline-edit-col-right {
    2779         margin-top: 27px;
     2736  margin-top: 27px;
     2737}
     2738tr.inline-edit-row td,
     2739#wpbody-content .inline-edit-row fieldset .inline-edit-col {
     2740  padding: 0 0.5em;
    27802741}
     2742.inline-edit-row {
     2743  /*    Positioning */
    27812744
     2745}
    27822746.inline-edit-row fieldset .inline-edit-group {
    2783         clear: both;
     2747  clear: both;
    27842748}
    2785 
    27862749.inline-edit-row fieldset .inline-edit-group:after {
    2787         content: ".";
    2788         display: block;
    2789         height: 0;
    2790         clear: both;
    2791         visibility: hidden;
     2750  content: ".";
     2751  display: block;
     2752  height: 0;
     2753  clear: both;
     2754  visibility: hidden;
    27922755}
    2793 
    27942756.inline-edit-row p.submit {
    2795         clear: both;
    2796         padding: 0.5em;
    2797         margin: 0.5em 0 0;
     2757  clear: both;
     2758  padding: 0.5em;
     2759  margin: 0.5em 0 0;
    27982760}
    2799 
    28002761.inline-edit-row span.error {
    2801         line-height: 22px;
    2802         margin: 0 15px;
    2803         padding: 3px 5px;
     2762  line-height: 22px;
     2763  margin: 0 15px;
     2764  padding: 3px 5px;
    28042765}
    2805 
    2806 /*      Positioning */
    28072766.inline-edit-row h4 {
    2808         margin: .2em 0;
    2809         padding: 0;
    2810         line-height: 23px;
     2767  margin: .2em 0;
     2768  padding: 0;
     2769  line-height: 23px;
     2770  text-transform: uppercase;
     2771}
     2772.inline-edit-row fieldset {
     2773  /*    Specific Elements */
     2774
    28112775}
    28122776.inline-edit-row fieldset span.title,
    28132777.inline-edit-row fieldset span.checkbox-title {
    2814         margin: 0;
    2815         padding: 0;
    2816         line-height: 27px;
     2778  margin: 0;
     2779  padding: 0;
     2780  line-height: 27px;
     2781  font-style: italic;
     2782  line-height: 1.8em;
    28172783}
    2818 
    28192784.inline-edit-row fieldset label,
    28202785.inline-edit-row fieldset span.inline-edit-categories-label {
    2821         display: block;
    2822         margin: .2em 0;
     2786  display: block;
     2787  margin: .2em 0;
    28232788}
    2824 
    28252789.inline-edit-row fieldset label.inline-edit-tags {
    2826         margin-top: 0;
     2790  margin-top: 0;
    28272791}
    2828 
    28292792.inline-edit-row fieldset label.inline-edit-tags span.title {
    2830         margin: .2em 0;
    2831         width: auto;
     2793  margin: .2em 0;
     2794  width: auto;
    28322795}
    2833 
    28342796.inline-edit-row fieldset label span.title {
    2835         display: block;
    2836         float: left;
    2837         width: 5em;
     2797  display: block;
     2798  float: left;
     2799  width: 5em;
    28382800}
    2839 
    28402801.inline-edit-row fieldset label span.input-text-wrap {
    2841         display: block;
    2842         margin-left: 5em;
     2802  display: block;
     2803  margin-left: 5em;
    28432804}
    2844 
    2845 .quick-edit-row-post fieldset.inline-edit-col-right label span.title {
    2846         width: auto;
    2847         padding-right: 0.5em;
    2848 }
    2849 
    2850 .inline-edit-row .input-text-wrap input[type=text] {
    2851         width: 100%;
    2852 }
    2853 
    28542805.inline-edit-row fieldset label input[type=checkbox] {
    2855         vertical-align: text-bottom;
     2806  vertical-align: text-bottom;
    28562807}
    2857 
    28582808.inline-edit-row fieldset label textarea {
    2859         width: 100%;
    2860         height: 4em;
     2809  width: 100%;
     2810  height: 4em;
    28612811}
    2862 
    2863 #wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
    2864         max-width: 50%;
    2865 }
    2866 
    2867 #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
    2868         margin-right: 0.5em
    2869 }
    2870 
    2871 .inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
    2872         width: 6em;
    2873 }
    2874 
    2875 .inline-edit-save .spinner {
    2876         padding: 4px 10px 0;
    2877         vertical-align: top;
    2878         float: right;
    2879 }
    2880 
    2881 /*      Styling */
    2882 .inline-edit-row h4 {
    2883         text-transform: uppercase;
    2884 }
    2885 
    2886 .inline-edit-row fieldset span.title,
    2887 .inline-edit-row fieldset span.checkbox-title {
    2888         font-style: italic;
    2889         line-height: 1.8em;
    2890 }
    2891 
    2892 /*      Specific Elements */
    28932812.inline-edit-row fieldset input[type="text"],
    28942813.inline-edit-row fieldset textarea {
    2895         border-style: solid;
    2896         border-width: 1px;
     2814  border-style: solid;
     2815  border-width: 1px;
    28972816}
    2898 
    28992817.inline-edit-row fieldset .inline-edit-date {
    2900         float: left;
     2818  float: left;
    29012819}
    2902 
    29032820.inline-edit-row fieldset input[name=jj],
    29042821.inline-edit-row fieldset input[name=hh],
    29052822.inline-edit-row fieldset input[name=mn] {
    2906         font-size: 12px;
    2907         width: 2.1em;
     2823  font-size: 12px;
     2824  width: 2.1em;
    29082825}
    2909 
    29102826.inline-edit-row fieldset input[name=aa] {
    2911         font-size: 12px;
    2912         width: 3.5em;
     2827  font-size: 12px;
     2828  width: 3.5em;
    29132829}
    2914 
    29152830.inline-edit-row fieldset label input.inline-edit-password-input {
    2916         width: 8em;
     2831  width: 8em;
    29172832}
    2918 
    2919 ul.cat-checklist {
    2920         height: 12em;
    2921         border-style: solid;
    2922         border-width: 1px;
    2923         overflow-y: scroll;
    2924         padding: 0 5px;
    2925         margin: 0;
    2926 }
    2927 
    2928 #bulk-titles {
    2929         display: block;
    2930         height: 12em;
    2931         border-style: solid;
    2932         border-width: 1px;
    2933         overflow-y: scroll;
    2934         padding: 0 5px;
    2935         margin: 0 0 5px;
    2936 }
    2937 
    29382833.inline-edit-row fieldset ul.cat-checklist li,
    29392834.inline-edit-row fieldset ul.cat-checklist input {
    2940         margin: 0;
     2835  margin: 0;
     2836}
     2837.inline-edit-row fieldset label input.inline-edit-menu-order-input {
     2838  width: 3em;
     2839}
     2840.inline-edit-row fieldset label input.inline-edit-slug-input {
     2841  width: 75%;
     2842}
     2843.inline-edit-row .input-text-wrap input[type=text] {
     2844  width: 100%;
    29412845}
    2942 
    29432846.inline-edit-row fieldset ul.cat-checklist label,
    29442847.inline-edit-row #bulk-titles div {
    2945         font-family: sans-serif;
    2946         font-style: normal;
    2947         font-size: 11px;
     2848  font-family: sans-serif;
     2849  font-style: normal;
     2850  font-size: 11px;
    29482851}
    2949 
    2950 .inline-edit-row fieldset label input.inline-edit-menu-order-input {
    2951         width: 3em;
     2852.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
     2853  width: auto;
     2854  padding-right: 0.5em;
    29522855}
    2953 
    2954 .inline-edit-row fieldset label input.inline-edit-slug-input {
    2955         width: 75%;
     2856#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
     2857  max-width: 50%;
     2858}
     2859#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
     2860  margin-right: 0.5em;
     2861}
     2862.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
     2863  width: 6em;
     2864}
     2865.inline-edit-save .spinner {
     2866  padding: 4px 10px 0;
     2867  vertical-align: top;
     2868  float: right;
     2869}
     2870ul.cat-checklist {
     2871  height: 12em;
     2872  border-style: solid;
     2873  border-width: 1px;
     2874  overflow-y: scroll;
     2875  padding: 0 5px;
     2876  margin: 0;
     2877}
     2878#bulk-titles {
     2879  display: block;
     2880  height: 12em;
     2881  border-style: solid;
     2882  border-width: 1px;
     2883  overflow-y: scroll;
     2884  padding: 0 5px;
     2885  margin: 0 0 5px;
    29562886}
    2957 
    29582887.quick-edit-row-post fieldset label.inline-edit-status {
    2959         float: left;
     2888  float: left;
    29602889}
    2961 
    29622890#bulk-titles {
    2963         line-height: 140%;
     2891  line-height: 140%;
    29642892}
    29652893#bulk-titles div {
    2966         margin: 0.2em 0.3em;
     2894  margin: 0.2em 0.3em;
    29672895}
    2968 
    29692896#bulk-titles div a {
    2970         cursor: pointer;
    2971         display: block;
    2972         float: left;
    2973         height: 10px;
    2974         margin: 3px 3px 0 -2px;
    2975         overflow: hidden;
    2976         position: relative;
    2977         text-indent: -9999px;
    2978         width: 10px;
     2897  cursor: pointer;
     2898  display: block;
     2899  float: left;
     2900  height: 10px;
     2901  margin: 3px 3px 0 -2px;
     2902  overflow: hidden;
     2903  position: relative;
     2904  text-indent: -9999px;
     2905  width: 10px;
    29792906}
    2980 
    2981 
    29822907/*------------------------------------------------------------------------------
    29832908  11.0 - Write/Edit Post Screen
    29842909------------------------------------------------------------------------------*/
    2985 
    29862910#show-comments {
    2987         overflow: hidden;
     2911  overflow: hidden;
    29882912}
    2989 
    29902913#save-action .spinner,
    29912914#show-comments a,
    29922915#show-comments .spinner {
    2993         float: left;
     2916  float: left;
    29942917}
    2995 
    29962918#lost-connection-notice .spinner {
    2997         display: block;
    2998         float: left;
    2999         margin: 0 5px 0 0;
     2919  display: block;
     2920  float: left;
     2921  margin: 0 5px 0 0;
    30002922}
    3001 
    30022923.rtl #lost-connection-notice .spinner {
    3003         float: right;
    3004         margin: 0 0 0 5px;
     2924  float: right;
     2925  margin: 0 0 0 5px;
    30052926}
    3006 
    30072927#titlediv {
    3008         position: relative;
    3009         margin-bottom: 5px;
     2928  position: relative;
     2929  margin-bottom: 5px;
    30102930}
    3011 
    30122931#titlediv label {
    3013         cursor: text;
     2932  cursor: text;
    30142933}
    3015 
    30162934#titlediv div.inside {
    3017         margin: 0;
    3018 }
    3019 
    3020 #poststuff #titlewrap {
    3021         border: 0;
    3022         padding: 0;
     2935  margin: 0;
    30232936}
    3024 
    30252937#titlediv #title {
    3026         padding: 3px 8px;
    3027         font-size: 1.7em;
    3028         line-height: 100%;
    3029         height: 1.7em;
    3030         width: 100%;
    3031         outline: none;
    3032         margin: 1px 0;
     2938  padding: 3px 8px;
     2939  font-size: 1.7em;
     2940  line-height: 100%;
     2941  height: 1.7em;
     2942  width: 100%;
     2943  outline: none;
     2944  margin: 1px 0;
     2945}
     2946#poststuff #titlewrap {
     2947  border: 0;
     2948  padding: 0;
    30332949}
    3034 
    30352950#titlediv #title-prompt-text,
    30362951#wp-fullscreen-title-prompt-text {
    3037         color: #bbb;
    3038         position: absolute;
    3039         font-size: 1.7em;
    3040         padding: 11px 10px;
     2952  color: #bbb;
     2953  position: absolute;
     2954  font-size: 1.7em;
     2955  padding: 11px 10px;
    30412956}
    3042 
    30432957#wp-fullscreen-save .fs-saved {
    3044         color: #999;
    3045         float: right;
    3046         margin-top: 4px;
     2958  color: #999;
     2959  float: right;
     2960  margin-top: 4px;
    30472961}
    3048 
    30492962#wp-fullscreen-title-prompt-text {
    3050         padding: 11px;
     2963  padding: 11px;
    30512964}
    3052 
    30532965#poststuff .inside-submitbox,
    30542966#side-sortables .inside-submitbox {
    3055         margin: 0 3px;
    3056         font-size: 11px;
     2967  margin: 0 3px;
     2968  font-size: 11px;
    30572969}
    3058 
    30592970input#link_description,
    30602971input#link_url {
    3061         width: 98%;
     2972  width: 98%;
    30622973}
    3063 
    30642974#pending {
    3065         background: 0 none;
    3066         border: 0 none;
    3067         padding: 0;
    3068         font-size: 11px;
    3069         margin-top: -1px;
     2975  background: 0 none;
     2976  border: 0 none;
     2977  padding: 0;
     2978  font-size: 11px;
     2979  margin-top: -1px;
    30702980}
    3071 
    30722981#edit-slug-box {
    3073         line-height: 24px;
    3074         min-height: 25px; /* Yes, line-height + 1 */
    3075         margin-top: 5px;
    3076         padding-right: 6px;
    3077 }
     2982  line-height: 24px;
     2983  min-height: 25px;
     2984  /* Yes, line-height + 1 */
    30782985
     2986  margin-top: 5px;
     2987  padding-right: 6px;
     2988}
    30792989#edit-slug-box .cancel {
    3080         margin-right: 10px;
    3081         font-size: 11px;
     2990  margin-right: 10px;
     2991  font-size: 11px;
    30822992}
    3083 
    30842993#editable-post-name-full {
    3085         display: none;
     2994  display: none;
    30862995}
    3087 
    30882996#editable-post-name input {
    3089         width: 16em;
     2997  width: 16em;
    30902998}
    3091 
    30922999.postarea h3 label {
    3093         float: left;
     3000  float: left;
    30943001}
    3095 
    30963002.submitbox .submit {
    3097         text-align: left;
    3098         padding: 12px 10px 10px;
    3099         font-size: 11px;
     3003  text-align: left;
     3004  padding: 12px 10px 10px;
     3005  font-size: 11px;
    31003006}
    3101 
    31023007.submitbox .submitdelete {
    3103         text-decoration: none;
    3104         padding: 1px 2px;
     3008  text-decoration: none;
     3009  padding: 1px 2px;
    31053010}
    3106 
    31073011.submitbox .submitdelete,
    31083012.submitbox .submit a:hover {
    3109         border-bottom-width: 1px;
    3110         border-bottom-style: solid;
     3013  border-bottom-width: 1px;
     3014  border-bottom-style: solid;
    31113015}
    3112 
    31133016.submitbox .submit input {
    3114         margin-bottom: 8px;
    3115         margin-right: 4px;
    3116         padding: 6px;
     3017  margin-bottom: 8px;
     3018  margin-right: 4px;
     3019  padding: 6px;
    31173020}
    3118 
    31193021.inside-submitbox #post_status {
    3120         margin: 2px 0 2px -2px;
     3022  margin: 2px 0 2px -2px;
    31213023}
    3122 
    31233024#post-status-select {
    3124         line-height: 2.5em;
    3125         margin-top: 3px;
     3025  line-height: 2.5em;
     3026  margin-top: 3px;
    31263027}
    3127 
    31283028/* Post Screen */
    31293029#post-body #normal-sortables {
    3130         min-height: 50px;
     3030  min-height: 50px;
    31313031}
    3132 
    31333032.postbox {
    3134         position: relative;
    3135         min-width: 255px;
     3033  position: relative;
     3034  min-width: 255px;
    31363035}
    3137 
    31383036#trackback_url {
    3139         width: 99%;
     3037  width: 99%;
    31403038}
    3141 
    31423039#normal-sortables .postbox .submit {
    3143         background: transparent none;
    3144         border: 0 none;
    3145         float: right;
    3146         padding: 0 12px;
    3147         margin:0;
     3040  background: transparent none;
     3041  border: 0 none;
     3042  float: right;
     3043  padding: 0 12px;
     3044  margin: 0;
    31483045}
    3149 
    31503046.category-add input[type="text"],
    31513047.category-add select {
    3152         width: 100%;
    3153         max-width: 260px;
     3048  width: 100%;
     3049  max-width: 260px;
    31543050}
    3155 
    31563051.press-this #side-sortables .category-tabs li,
    31573052ul.category-tabs li,
    31583053#side-sortables .add-menu-item-tabs li,
    31593054.wp-tab-bar li {
    3160         display: inline;
    3161         line-height: 1.35em;
     3055  display: inline;
     3056  line-height: 1.35em;
    31623057}
    3163 
    31643058.no-js .category-tabs li.hide-if-no-js {
    3165         display: none;
     3059  display: none;
    31663060}
    3167 
    31683061.category-tabs a,
    31693062#side-sortables .add-menu-item-tabs a,
    31703063.wp-tab-bar a {
    3171         text-decoration: none;
     3064  text-decoration: none;
    31723065}
    3173 
    31743066.category-tabs {
    3175         margin: 8px 0 3px;
     3067  margin: 8px 0 3px;
    31763068}
    3177 
    31783069#category-adder h4 {
    3179         margin: 10px 0;
     3070  margin: 10px 0;
    31803071}
    3181 
    31823072#side-sortables .add-menu-item-tabs,
    31833073.wp-tab-bar {
    3184         margin-bottom: 3px;
     3074  margin-bottom: 3px;
    31853075}
    3186 
    31873076#normal-sortables .postbox #replyrow .submit {
    3188         float: none;
    3189         margin: 0;
    3190         padding: 0 7px 5px;
     3077  float: none;
     3078  margin: 0;
     3079  padding: 0 7px 5px;
    31913080}
    3192 
    31933081#side-sortables .submitbox .submit input,
    31943082#side-sortables .submitbox .submit .preview,
    31953083#side-sortables .submitbox .submit a.preview:hover {
    3196         border: 0 none;
     3084  border: 0 none;
    31973085}
    3198 
    31993086#side-sortables .inside-submitbox .insidebox,
    32003087.stuffbox .insidebox {
    3201         margin: 11px 0;
     3088  margin: 11px 0;
    32023089}
    3203 
    32043090ul.category-tabs,
    32053091ul.add-menu-item-tabs,
    32063092ul.wp-tab-bar {
    3207         margin-top: 12px;
     3093  margin-top: 12px;
    32083094}
    3209 
    32103095ul.category-tabs li {
    3211         border-style: solid;
    3212         border-width: 1px;
    3213         position: relative;
     3096  border-style: solid;
     3097  border-width: 1px;
     3098  position: relative;
    32143099}
    3215 
    32163100ul.add-menu-item-tabs li.tabs,
    32173101.wp-tab-active {
    3218         border-style: solid solid none;
    3219         border-width: 1px 1px 0;
     3102  border-style: solid solid none;
     3103  border-width: 1px 1px 0;
    32203104}
    3221 
    32223105#post-body .add-menu-item-tabs li.tabs {
    3223         border-style: solid none solid solid;
    3224         border-width: 1px 0 1px 1px;
    3225         margin-right: -1px;
     3106  border-style: solid none solid solid;
     3107  border-width: 1px 0 1px 1px;
     3108  margin-right: -1px;
    32263109}
    3227 
    32283110ul.category-tabs li,
    32293111ul.add-menu-item-tabs li,
    32303112ul.wp-tab-bar li {
    3231         padding: 3px 5px 5px;
    3232         -webkit-border-top-left-radius: 3px;
    3233         -webkit-border-top-right-radius: 3px;
    3234         border-top-left-radius: 3px;
    3235         border-top-right-radius: 3px;
     3113  padding: 3px 5px 5px;
     3114  border-top-left-radius: 3px;
     3115  border-top-right-radius: 3px;
     3116  -moz-border-top-left-radius: 3px;
     3117  -moz-border-top-right-radius: 3px;
     3118  -webkit-border-top-left-radius: 3px;
     3119  -webkit-border-top-right-radius: 3px;
    32363120}
    3237 
    32383121/* positioning etc. */
    32393122form#tags-filter {
    3240         position: relative;
     3123  position: relative;
    32413124}
    3242 
    32433125/* Edit posts */
    32443126td.post-title strong,
    32453127td.plugin-title strong {
    3246         display: block;
    3247         margin-bottom: .2em;
     3128  display: block;
     3129  margin-bottom: .2em;
    32483130}
    3249 
    32503131td.post-title p,
    32513132td.plugin-title p {
    3252         margin: 6px 0;
     3133  margin: 6px 0;
    32533134}
    3254 
    32553135/* Global classes */
    32563136.wp-hidden-children .wp-hidden-child,
    32573137.ui-tabs-hide {
    3258         display: none;
     3138  display: none;
    32593139}
    3260 
    32613140.commentlist .avatar {
    3262         vertical-align: text-top;
     3141  vertical-align: text-top;
    32633142}
    3264 
    32653143#post-body .tagsdiv #newtag {
    3266         margin-right: 5px;
    3267         width: 16em;
     3144  margin-right: 5px;
     3145  width: 16em;
    32683146}
    3269 
    32703147#side-sortables input#post_password {
    3271         width: 94%
     3148  width: 94%;
    32723149}
    3273 
    32743150#side-sortables .tagsdiv #newtag {
    3275         width: 68%;
     3151  width: 68%;
    32763152}
    3277 
    32783153#post-status-info {
    3279         border-width: 0 1px 1px;
    3280         border-style: none solid solid;
    3281         width: 100%;
    3282         -webkit-border-bottom-left-radius: 3px;
    3283         -webkit-border-bottom-right-radius: 3px;
    3284         border-bottom-left-radius: 3px;
    3285         border-bottom-right-radius: 3px;
     3154  border-width: 0 1px 1px;
     3155  border-style: none solid solid;
     3156  width: 100%;
     3157  border-bottom-left-radius: 3px;
     3158  border-bottom-right-radius: 3px;
     3159  -moz-border-bottom-left-radius: 3px;
     3160  -moz-border-bottom-right-radius: 3px;
     3161  -webkit-border-bottom-left-radius: 3px;
     3162  -webkit-border-bottom-right-radius: 3px;
    32863163}
    3287 
    32883164#post-status-info td {
    3289         font-size: 12px;
     3165  font-size: 12px;
    32903166}
    3291 
    32923167.autosave-info {
    3293         padding: 2px 15px;
    3294         text-align: right;
     3168  padding: 2px 15px;
     3169  text-align: right;
    32953170}
    3296 
    32973171#editorcontent #post-status-info {
    3298         border: none;
     3172  border: none;
    32993173}
    3300 
    33013174#post-body .wp_themeSkin .mceStatusbar a.mceResize {
    3302         display: block;
    3303         background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
    3304         width: 12px;
    3305         cursor: se-resize;
    3306         margin: 0 1px;
    3307         position: relative;
    3308         top: -2px;
     3175  display: block;
     3176  background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
     3177  width: 12px;
     3178  cursor: se-resize;
     3179  margin: 0 1px;
     3180  position: relative;
     3181  top: -2px;
    33093182}
    3310 
    33113183#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
    3312         top: 20px;
     3184  top: 20px;
    33133185}
    3314 
    33153186#content-resize-handle {
    3316         background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
    3317         width: 12px;
    3318         cursor: se-resize;
    3319         position: absolute;
    3320         right: 2px;
    3321         height: 19px;
     3187  background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
     3188  width: 12px;
     3189  cursor: se-resize;
     3190  position: absolute;
     3191  right: 2px;
     3192  height: 19px;
    33223193}
    3323 
    33243194.press-this #content-resize-handle {
    3325         bottom: 2px;
     3195  bottom: 2px;
    33263196}
    3327 
    33283197.tmce-active #content-resize-handle {
    3329         display: none;
     3198  display: none;
    33303199}
    3331 
    33323200#wp-word-count {
    3333         display: block;
    3334         padding: 2px 10px;
     3201  display: block;
     3202  padding: 2px 10px;
    33353203}
    3336 
    33373204#timestampdiv select {
    3338         height: 20px;
    3339         line-height: 14px;
    3340         padding: 0;
    3341         vertical-align: top;
     3205  height: 20px;
     3206  line-height: 14px;
     3207  padding: 0;
     3208  vertical-align: top;
     3209}
     3210#aa,
     3211#jj,
     3212#hh,
     3213#mn {
     3214  padding: 1px;
     3215  font-size: 12px;
     3216}
     3217#jj,
     3218#hh,
     3219#mn {
     3220  width: 2em;
    33423221}
    3343 
    3344 #aa, #jj, #hh, #mn {
    3345         padding: 1px;
    3346         font-size: 12px;
    3347 }
    3348 
    3349 #jj, #hh, #mn {
    3350         width: 2em;
    3351 }
    3352 
    33533222#aa {
    3354         width: 3.4em;
     3223  width: 3.4em;
    33553224}
    3356 
    33573225.curtime #timestamp {
    3358         background-repeat: no-repeat;
    3359         background-position: left center;
    3360         padding: 2px 0 1px 20px;
     3226  background-repeat: no-repeat;
     3227  background-position: left center;
     3228  padding: 2px 0 1px 20px;
    33613229}
    3362 
    33633230#timestampdiv {
    3364         padding-top: 5px;
    3365         line-height: 23px;
     3231  padding-top: 5px;
     3232  line-height: 23px;
    33663233}
    3367 
    33683234#timestampdiv p {
    3369         margin: 8px 0 6px;
     3235  margin: 8px 0 6px;
    33703236}
    3371 
    33723237#timestampdiv input {
    3373         border-width: 1px;
    3374         border-style: solid;
     3238  border-width: 1px;
     3239  border-style: solid;
    33753240}
    3376 
    33773241.notification-dialog {
    3378         position: fixed;
    3379         top: 30%;
    3380         left: 50%;
    3381         width: 450px;
    3382         margin-left: -225px;
    3383         background: #fff;
    3384         line-height: 1.5;
    3385         z-index: 1000005;
     3242  position: fixed;
     3243  top: 30%;
     3244  left: 50%;
     3245  width: 450px;
     3246  margin-left: -225px;
     3247  background: #fff;
     3248  line-height: 1.5;
     3249  z-index: 1000005;
    33863250}
    3387 
    33883251.notification-dialog-background {
    3389         position: fixed;
    3390         top: 0;
    3391         left: 0;
    3392         right: 0;
    3393         bottom: 0;
    3394         background: #000;
    3395         opacity: 0.5;
    3396         filter: alpha(opacity=50);
    3397         z-index: 1000000;
     3252  position: fixed;
     3253  top: 0;
     3254  left: 0;
     3255  right: 0;
     3256  bottom: 0;
     3257  background: #000;
     3258  opacity: 0.5;
     3259  filter: alpha(opacity=50);
     3260  z-index: 1000000;
    33983261}
    3399 
    34003262#post-lock-dialog .post-locked-message,
    34013263#post-lock-dialog .post-taken-over {
    3402         margin: 25px;
     3264  margin: 25px;
    34033265}
    3404 
    34053266#post-lock-dialog .post-locked-message a.button {
    3406         margin-right: 10px;
     3267  margin-right: 10px;
    34073268}
    3408 
    34093269#post-lock-dialog .post-locked-avatar {
    3410         float: left;
    3411         margin: 0 20px 20px 0;
     3270  float: left;
     3271  margin: 0 20px 20px 0;
    34123272}
    3413 
    34143273#post-lock-dialog .wp-tab-first {
    3415         outline: 0;
     3274  outline: 0;
    34163275}
    3417 
    34183276#post-lock-dialog .locked-saving img {
    3419         float: left;
    3420         margin-right: 3px;
     3277  float: left;
     3278  margin-right: 3px;
    34213279}
    3422 
    34233280#post-lock-dialog.saving .locked-saving,
    34243281#post-lock-dialog.saved .locked-saved {
    3425         display: inline;
     3282  display: inline;
    34263283}
    3427 
    34283284/*------------------------------------------------------------------------------
    34293285  11.1 - Custom Fields
    34303286------------------------------------------------------------------------------*/
    3431 
    34323287#postcustomstuff thead th {
    3433         padding: 5px 8px 8px;
     3288  padding: 5px 8px 8px;
    34343289}
    3435 
    34363290#postcustom #postcustomstuff .submit {
    3437         border: 0 none;
    3438         float: none;
    3439         padding: 0 8px 8px;
     3291  border: 0 none;
     3292  float: none;
     3293  padding: 0 8px 8px;
    34403294}
    3441 
    34423295#side-sortables #postcustom #postcustomstuff .submit {
    3443         margin: 0;
    3444         padding: 0;
     3296  margin: 0;
     3297  padding: 0;
    34453298}
    3446 
    34473299#side-sortables #postcustom #postcustomstuff #the-list textarea {
    3448         height: 85px;
     3300  height: 85px;
    34493301}
    3450 
    34513302#side-sortables #postcustom #postcustomstuff td.left input,
    3452 #side-sortables #postcustom #postcustomstuff td.left select,
     3303#side-sortables #postcustom #postcustomstuff td.left select {
     3304  margin: 3px 3px 0;
     3305}
    34533306#side-sortables #postcustomstuff #newmetaleft a {
    3454         margin: 3px 3px 0;
     3307  margin: 3px 3px 0;
    34553308}
    3456 
    34573309#postcustomstuff table {
    3458         margin: 0;
    3459         width: 100%;
    3460         border-width: 1px;
    3461         border-style: solid;
    3462         border-spacing: 0;
     3310  margin: 0;
     3311  width: 100%;
     3312  border-width: 1px;
     3313  border-style: solid;
     3314  border-spacing: 0;
    34633315}
    3464 
    34653316#postcustomstuff tr {
    3466         vertical-align: top;
     3317  vertical-align: top;
    34673318}
    3468 
    34693319#postcustomstuff table input,
    34703320#postcustomstuff table select,
    34713321#postcustomstuff table textarea {
    3472         width: 96%;
    3473         margin: 8px;
     3322  width: 96%;
     3323  margin: 8px;
    34743324}
    3475 
    34763325#side-sortables #postcustomstuff table input,
    34773326#side-sortables #postcustomstuff table select,
    34783327#side-sortables #postcustomstuff table textarea {
    3479         margin: 3px;
     3328  margin: 3px;
    34803329}
    3481 
    34823330#postcustomstuff th.left,
    34833331#postcustomstuff td.left {
    3484         width: 38%;
     3332  width: 38%;
    34853333}
    3486 
    34873334#postcustomstuff .submit input {
    3488         margin: 0;
    3489         width: auto;
     3335  margin: 0;
     3336  width: auto;
    34903337}
    3491 
    34923338#postcustomstuff #newmetaleft a {
    3493         display: inline-block;
    3494         margin: 0 8px 8px;
    3495         text-decoration: none;
     3339  display: inline-block;
     3340  margin: 0 8px 8px;
     3341  text-decoration: none;
    34963342}
    3497 
    34983343.no-js #postcustomstuff #enternew {
    3499         display: none;
     3344  display: none;
    35003345}
    3501 
    35023346#post-body-content .compat-attachment-fields {
    3503         margin-bottom: 20px;
     3347  margin-bottom: 20px;
    35043348}
    3505 
    35063349.compat-attachment-fields th {
    3507         padding-top: 5px;
    3508         padding-right: 10px;
     3350  padding-top: 5px;
     3351  padding-right: 10px;
    35093352}
    3510 
    35113353/*------------------------------------------------------------------------------
    35123354  11.2 - Post Revisions
    35133355------------------------------------------------------------------------------*/
    35143356.revisions-control-frame,
    35153357.revisions-diff-frame {
    3516         position: relative;
     3358  position: relative;
    35173359}
    3518 
    35193360.revisions-controls {
    3520         padding-top: 40px;
    3521         height: 100px;
    3522         z-index: 1;
     3361  padding-top: 40px;
     3362  height: 100px;
     3363  z-index: 1;
    35233364}
    3524 
    35253365.revisions-controls input[type="checkbox"] {
    3526         position: relative;
    3527         top: -1px;
    3528         vertical-align: text-bottom;
     3366  position: relative;
     3367  top: -1px;
     3368  vertical-align: text-bottom;
    35293369}
    3530 
    35313370.revisions.pinned .revisions-controls {
    3532         position: fixed;
    3533         top: 0;
    3534         padding-bottom: 10px;
     3371  position: fixed;
     3372  top: 0;
     3373  padding-bottom: 10px;
     3374}
     3375.revisions-controls .author-card .date {
     3376  color: #777;
     3377}
     3378.revisions-controls .author-card .avatar,
     3379.revisions-controls .author-card .author-info {
     3380  float: left;
     3381  margin-left: 6px;
     3382  margin-right: 6px;
     3383}
     3384.revisions-controls .author-card.autosave {
     3385  color: #d54e21;
     3386}
     3387.revisions-controls .author-card .author-name {
     3388  font-weight: bold;
     3389}
     3390.revisions-controls .author-card .byline {
     3391  display: block;
     3392  font-size: 12px;
     3393}
     3394.revisions-controls .author-card .avatar {
     3395  vertical-align: middle;
     3396}
     3397.revisions-controls .wp-slider {
     3398  max-width: 70%;
     3399  margin: 0 auto;
     3400  top: -3px;
    35353401}
    3536 
    35373402.revisions-tickmarks {
    3538         position: relative;
    3539         margin: 0 auto;
    3540         height: 0.8em;
    3541         top: 7px;
    3542         max-width: 70%;
    3543         -moz-box-sizing: border-box;
    3544         -webkit-box-sizing: border-box;
    3545         box-sizing: border-box;
     3403  position: relative;
     3404  margin: 0 auto;
     3405  height: 0.8em;
     3406  top: 7px;
     3407  max-width: 70%;
     3408  -moz-box-sizing: border-box;
     3409  -webkit-box-sizing: border-box;
     3410  -ms-box-sizing: border-box;
     3411  box-sizing: border-box;
    35463412}
    3547 
    35483413.revisions-tickmarks > div {
    3549         position: absolute;
    3550         height: 100%;
    3551         border-style: solid;
    3552         border-width: 0 1px 0 0;
    3553         -moz-box-sizing: border-box;
    3554         -webkit-box-sizing: border-box;
    3555         box-sizing: border-box;
     3414  position: absolute;
     3415  height: 100%;
     3416  border-style: solid;
     3417  border-width: 0 1px 0 0;
     3418  -moz-box-sizing: border-box;
     3419  -webkit-box-sizing: border-box;
     3420  -ms-box-sizing: border-box;
     3421  box-sizing: border-box;
    35563422}
    3557 
    35583423.revisions-tickmarks > div:first-child {
    3559         border-width: 0;
     3424  border-width: 0;
    35603425}
    3561 
    35623426.comparing-two-revisions .revisions-controls {
    3563         height: 140px;
     3427  height: 140px;
    35643428}
    3565 
    35663429.revisions .diff-error {
    3567         position: absolute;
    3568         text-align: center;
    3569         margin: 0 auto;
    3570         width: 100%;
    3571         display: none;
     3430  position: absolute;
     3431  text-align: center;
     3432  margin: 0 auto;
     3433  width: 100%;
     3434  display: none;
    35723435}
    3573 
    35743436.revisions.diff-error .diff-error {
    3575         display: block;
     3437  display: block;
    35763438}
    3577 
    35783439.revisions .loading-indicator {
    3579         position: fixed;
    3580         vertical-align: middle;
    3581         opacity: 0;
    3582         width: 100%;
    3583         top: 50%;
    3584         margin-left: -90px;
    3585         -webkit-transition: opacity 0.5s;
    3586         -moz-transition:    opacity 0.5s;
    3587         -ms-transition:    opacity 0.5s;
    3588         -o-transition:      opacity 0.5s;
    3589         transition:        opacity 0.5s;
    3590         filter: alpha(opacity=0); /* ie8 and earlier */
    3591 }
     3440  position: fixed;
     3441  vertical-align: middle;
     3442  opacity: 0;
     3443  width: 100%;
     3444  top: 50%;
     3445  margin-left: -90px;
     3446  -webkit-transition: opacity 0.5s;
     3447  -moz-transition: opacity 0.5s;
     3448  -ms-transition: opacity 0.5s;
     3449  -o-transition: opacity 0.5s;
     3450  transition: opacity 0.5s;
     3451  filter: alpha(opacity=0);
     3452  /* ie8 and earlier */
    35923453
     3454}
    35933455body.folded .revisions .loading-indicator {
    3594         margin-left: -32px;
     3456  margin-left: -32px;
    35953457}
    3596 
    35973458.revisions .loading-indicator span.spinner {
    3598         display: block;
    3599         margin: 0 auto;
    3600         float: none;
     3459  display: block;
     3460  margin: 0 auto;
     3461  float: none;
    36013462}
    3602 
    36033463.revisions.loading .loading-indicator {
    3604         opacity: 1;
    3605         filter: alpha(opacity=100); /* ie8 and earlier */
    3606 }
     3464  opacity: 1;
     3465  filter: alpha(opacity=100);
     3466  /* ie8 and earlier */
    36073467
     3468}
    36083469.revisions .diff {
    3609         -webkit-transition: opacity 0.5s;
    3610         -moz-transition:    opacity 0.5s;
    3611         -ms-transition:    opacity 0.5s;
    3612         -o-transition:      opacity 0.5s;
    3613         transition:        opacity 0.5s;
     3470  -webkit-transition: opacity 0.5s;
     3471  -moz-transition: opacity 0.5s;
     3472  -ms-transition: opacity 0.5s;
     3473  -o-transition: opacity 0.5s;
     3474  transition: opacity 0.5s;
    36143475}
    3615 
    36163476.revisions.loading .diff {
    3617         opacity: 0.5;
    3618         filter: alpha(opacity=50); /* ie8 and earlier */
    3619 }
     3477  opacity: 0.5;
     3478  filter: alpha(opacity=50);
     3479  /* ie8 and earlier */
    36203480
     3481}
    36213482.revisions.diff-error .diff {
    3622         visibility: hidden;
     3483  visibility: hidden;
    36233484}
    3624 
    36253485.revisions-meta {
    3626         margin-top: 15px;
     3486  margin-top: 15px;
    36273487}
    3628 
    36293488.revision-toggle-compare-mode {
    3630         position: absolute;
    3631         top: 0;
    3632         right: 0;
     3489  position: absolute;
     3490  top: 0;
     3491  right: 0;
    36333492}
    3634 
    36353493.comparing-two-revisions .revisions-previous,
    36363494.comparing-two-revisions .revisions-next,
    36373495.revisions-meta .diff-meta-to strong {
    3638         display: none;
    3639 }
    3640 
    3641 .revisions-controls .author-card .date {
    3642         color: #777;
    3643 }
    3644 
    3645 .revisions-controls .author-card.autosave {
    3646         color: #d54e21;
    3647 }
    3648 
    3649 .revisions-controls .author-card .author-name {
    3650         font-weight: bold;
     3496  display: none;
    36513497}
    3652 
    36533498.comparing-two-revisions .diff-meta-to strong {
    3654         display: block;
     3499  display: block;
    36553500}
    3656 
    36573501.revisions-previous,
    36583502.revisions-next {
    3659         position: relative;
    3660         z-index: 1;
     3503  position: relative;
     3504  z-index: 1;
    36613505}
    3662 
    36633506.revisions-previous {
    3664         float: left;
     3507  float: left;
    36653508}
    3666 
    36673509.revisions-next {
    3668         float: right;
    3669 }
    3670 
    3671 .revisions-controls .wp-slider {
    3672         max-width: 70%;
    3673         margin: 0 auto;
    3674         top: -3px;
     3510  float: right;
    36753511}
    3676 
    36773512/* Revision meta box */
    36783513.post-revisions li img,
    36793514#revisions-meta-restored img {
    3680         vertical-align: middle;
     3515  vertical-align: middle;
    36813516}
    3682 
    36833517table.diff {
    3684         table-layout: fixed;
    3685         width: 100%;
    3686         white-space: pre-wrap;
    3687         word-wrap: break-word;
     3518  table-layout: fixed;
     3519  width: 100%;
     3520  white-space: pre-wrap;
     3521  word-wrap: break-word;
    36883522}
    3689 
    36903523table.diff col.content {
    3691         width: auto;
     3524  width: auto;
    36923525}
    3693 
    36943526table.diff col.content.diffsplit {
    3695         width: 48%;
     3527  width: 48%;
    36963528}
    3697 
    3698 table.diff col.diffsplit.middle {
    3699         width: auto;
     3529table.diff col.content.middle {
     3530  width: auto;
    37003531}
    3701 
    37023532table.diff col.ltype {
    3703         width: 30px;
     3533  width: 30px;
    37043534}
    3705 
    37063535table.diff tr {
    3707         background-color: transparent;
     3536  background-color: transparent;
    37083537}
    3709 
    37103538table.diff td,
    37113539table.diff th {
    3712         padding: .5em;
    3713         font-family: Consolas, Monaco, monospace;
     3540  padding: .5em;
     3541  font-family: Consolas, Monaco, monospace;
    37143542}
    3715 
    37163543table.diff .diff-deletedline del,
    37173544table.diff .diff-addedline ins {
    3718         text-decoration: none;
     3545  text-decoration: none;
    37193546}
    3720 
    37213547.diff-meta {
    3722         -webkit-border-radius: 3px;
    3723         border-radius: 3px;
    3724         padding: 5px;
    3725         clear: both;
    3726         min-height: 32px;
    3727 }
    3728 
    3729 .diff-title strong {
    3730         line-height: 32px;
    3731         min-width: 60px;
    3732         text-align: right;
    3733         float: left;
    3734         margin-right: 5px;
    3735 }
    3736 
    3737 .revisions-controls .author-card .avatar,
    3738 .revisions-controls .author-card .author-info {
    3739         float: left;
    3740         margin-left: 6px;
    3741         margin-right: 6px;
    3742 }
    3743 
    3744 .revisions-controls .author-card .byline {
    3745         display: block;
    3746         font-size: 12px;
     3548  border-radius: 3px;
     3549  -moz-border-radius: 3px;
     3550  -webkit-border-radius: 3px;
     3551  padding: 5px;
     3552  clear: both;
     3553  min-height: 32px;
    37473554}
    3748 
    3749 .revisions-controls .author-card .avatar {
    3750         vertical-align: middle;
    3751 }
    3752 
    37533555.diff-meta input.restore-revision {
    3754         float: right;
    3755         margin-left: 6px;
    3756         margin-right: 6px;
    3757         margin-top: 4px;
     3556  float: right;
     3557  margin-left: 6px;
     3558  margin-right: 6px;
     3559  margin-top: 4px;
     3560}
     3561.diff-title strong {
     3562  line-height: 32px;
     3563  min-width: 60px;
     3564  text-align: right;
     3565  float: left;
     3566  margin-right: 5px;
    37583567}
    3759 
    37603568.diff-meta-from {
    3761         display: none;
     3569  display: none;
    37623570}
    3763 
    37643571.comparing-two-revisions .diff-meta-from {
    3765         display: block;
     3572  display: block;
    37663573}
    3767 
    37683574.revisions-tooltip {
    3769         position: absolute;
    3770         bottom: 105px;
    3771         margin-right: 0;
    3772         margin-left: -69px;
    3773         z-index: 0;
    3774         max-width: 350px;
    3775         min-width: 130px;
    3776         padding: 8px 4px;
    3777         display: none;
    3778         opacity: 0;
     3575  position: absolute;
     3576  bottom: 105px;
     3577  margin-right: 0;
     3578  margin-left: -69px;
     3579  z-index: 0;
     3580  max-width: 350px;
     3581  min-width: 130px;
     3582  padding: 8px 4px;
     3583  display: none;
     3584  opacity: 0;
    37793585}
    3780 
    37813586.revisions-tooltip.flipped {
    3782         margin-left: 0;
    3783         margin-right: -70px;
     3587  margin-left: 0;
     3588  margin-right: -70px;
     3589}
     3590.revisions-tooltip.flipped .revisions-tooltip-arrow {
     3591  margin-left: 0;
     3592  margin-right: 35px;
     3593  left: auto;
     3594  right: 0;
     3595}
     3596.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span {
     3597  right: 25px;
    37843598}
    3785 
    37863599.revisions.pinned .revisions-tooltip {
    3787         display: none !important;
     3600  display: none !important;
    37883601}
    3789 
    37903602.comparing-two-revisions .revisions-tooltip {
    3791         bottom: 145px;
     3603  bottom: 145px;
    37923604}
    3793 
    37943605.revisions-tooltip-arrow {
    3795         width: 70px;
    3796         height: 15px;
    3797         overflow: hidden;
    3798         position: absolute;
    3799         left: 0;
    3800         margin-left: 35px;
    3801         bottom: -15px;
    3802 }
    3803 
    3804 .revisions-tooltip.flipped .revisions-tooltip-arrow {
    3805         margin-left: 0;
    3806         margin-right: 35px;
    3807         left: auto;
    3808         right: 0;
     3606  width: 70px;
     3607  height: 15px;
     3608  overflow: hidden;
     3609  position: absolute;
     3610  left: 0;
     3611  margin-left: 35px;
     3612  bottom: -15px;
    38093613}
    3810 
    38113614.revisions-tooltip-arrow > span {
    3812         content: "";
    3813         position: absolute;
    3814         left: 20px;
    3815         top: -20px;
    3816         width: 25px;
    3817         height: 25px;
    3818         -webkit-transform: rotate(45deg);
    3819         -moz-transform: rotate(45deg);
    3820         -ms-transform: rotate(45deg);
    3821         -o-transform: rotate(45deg);
    3822         tranform: rotate(45deg);
     3615  content: "";
     3616  position: absolute;
     3617  left: 20px;
     3618  top: -20px;
     3619  width: 25px;
     3620  height: 25px;
     3621  -webkit-transform: rotate(45deg);
     3622  -moz-transform: rotate(45deg);
     3623  -ms-transform: rotate(45deg);
     3624  -o-transform: rotate(45deg);
     3625  tranform: rotate(45deg);
    38233626}
    3824 
    38253627.revisions-tooltip.flipped .revisions-tooltip-arrow > span {
    3826         left: auto;
    3827         right: 20px;
     3628  left: auto;
     3629  right: 20px;
    38283630}
    3829 
    38303631.ie8 .revisions-tooltip-arrow > span {
    3831         left: 15px;
    3832         top: -25px;
    3833         -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
    3834 }
    3835 
    3836 .ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span {
    3837         right: 25px;
     3632  left: 15px;
     3633  top: -25px;
     3634  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
    38383635}
    3839 
    38403636.revisions-tooltip,
    38413637.revisions-tooltip-arrow > span {
    3842         border-width: 1px;
    3843         border-style: solid;
     3638  border-width: 1px;
     3639  border-style: solid;
    38443640}
    3845 
    38463641div.revisions-controls > .wp-slider > .ui-slider-handle {
    3847         margin-left: -10px;
     3642  margin-left: -10px;
    38483643}
    3849 
    3850  /* jQuery UI Slider */
     3644/* jQuery UI Slider */
    38513645.wp-slider.ui-slider {
    3852         position: relative;
    3853         border-width: 1px;
    3854         border-style: solid;
    3855         border-radius: 3px;
    3856         text-align: left;
    3857         cursor: pointer;
     3646  position: relative;
     3647  border-width: 1px;
     3648  border-style: solid;
     3649  border-radius: 3px;
     3650  -moz-border-radius: 3px;
     3651  -webkit-border-radius: 3px;
     3652  text-align: left;
     3653  cursor: pointer;
    38583654}
    3859 
    38603655.wp-slider .ui-slider-handle {
    3861         position: absolute;
    3862         z-index: 2;
    3863         margin-top: -3px;
    3864         width: 19px;
    3865         height: 19px;
    3866         border-width: 1px;
    3867         border-style: solid;
    3868         border-radius: 50%;
     3656  position: absolute;
     3657  z-index: 2;
     3658  margin-top: -3px;
     3659  width: 19px;
     3660  height: 19px;
     3661  border-width: 1px;
     3662  border-style: solid;
     3663  border-radius: 50%;
     3664  -moz-border-radius: 50%;
     3665  -webkit-border-radius: 50%;
    38693666}
    3870 
    38713667.wp-slider .ui-slider-handle:before {
    3872         content: "";
    3873         position: absolute;
    3874         top: 6px;
    3875         left: 3px;
    3876         height: 8px;
    3877         width: 13px;
    3878         background: url(../images/arrows-pr.png) no-repeat -2px -47px;
     3668  content: "";
     3669  position: absolute;
     3670  top: 6px;
     3671  left: 3px;
     3672  height: 8px;
     3673  width: 13px;
     3674  background: url(../images/arrows-pr.png) no-repeat -2px -47px;
    38793675}
    3880 
    38813676.wp-slider .ui-slider-handle.from-handle:before,
    38823677.wp-slider .ui-slider-handle.to-handle:before {
    3883         height: 8px;
    3884         width: 7px;
     3678  height: 8px;
     3679  width: 7px;
    38853680}
    3886 
    38873681.wp-slider .ui-slider-handle.from-handle:before {
    3888         background-position: -5px -84px;
    3889         left: 7px;
     3682  background-position: -5px -84px;
     3683  left: 7px;
    38903684}
    3891 
    38923685.wp-slider .ui-slider-handle.to-handle:before {
    3893         background-position: -4px -65px;
    3894         left: 5px;
     3686  background-position: -4px -65px;
     3687  left: 5px;
    38953688}
    3896 
    38973689.wp-slider .ui-slider-range {
    3898         position: absolute;
    3899         font-size: .7em;
    3900         display: block;
    3901         border: 0;
    3902         background-color: transparent;
    3903         background-image: none;
     3690  position: absolute;
     3691  font-size: .7em;
     3692  display: block;
     3693  border: 0;
     3694  background-color: transparent;
     3695  background-image: none;
    39043696}
    3905 
    39063697.wp-slider.ui-slider-horizontal {
    3907         height: .8em;
     3698  height: .8em;
    39083699}
    3909 
    39103700.wp-slider.ui-slider-horizontal .ui-slider-handle {
    3911         top: -.25em;
    3912         margin-left: -.6em;
     3701  top: -0.25em;
     3702  margin-left: -0.6em;
    39133703}
    3914 
    39153704.wp-slider.ui-slider-horizontal .ui-slider-range {
    3916         top: 0;
    3917         height: 100%;
     3705  top: 0;
     3706  height: 100%;
    39183707}
    3919 
    39203708.wp-slider.ui-slider-horizontal .ui-slider-range-min {
    3921         left: 0;
     3709  left: 0;
    39223710}
    3923 
    39243711.wp-slider.ui-slider-horizontal .ui-slider-range-max {
    3925         right: 0;
     3712  right: 0;
    39263713}
    3927 
    3928 
    39293714/*------------------------------------------------------------------------------
    39303715  11.3 - Featured Images
    39313716------------------------------------------------------------------------------*/
    3932 
    39333717#select-featured-image {
    3934         padding: 4px 0;
    3935         overflow: hidden;
     3718  padding: 4px 0;
     3719  overflow: hidden;
    39363720}
    3937 
    39383721#select-featured-image img {
    3939         max-width: 100%;
    3940         height: auto;
    3941         margin-bottom: 10px;
     3722  max-width: 100%;
     3723  height: auto;
     3724  margin-bottom: 10px;
    39423725}
    3943 
    39443726#select-featured-image a {
    3945         float: left;
    3946         clear: both;
     3727  float: left;
     3728  clear: both;
    39473729}
    3948 
    39493730#select-featured-image .remove {
    3950         display: none;
    3951         margin-top: 10px;
     3731  display: none;
     3732  margin-top: 10px;
    39523733}
    3953 
    39543734.js #select-featured-image.has-featured-image .remove {
    3955         display: inline-block;
     3735  display: inline-block;
    39563736}
    3957 
    39583737.no-js #select-featured-image .choose {
    3959         display: none;
     3738  display: none;
    39603739}
    3961 
    39623740/*------------------------------------------------------------------------------
    39633741  11.4 - Post formats
    39643742------------------------------------------------------------------------------*/
    3965 
    39663743a.post-state-format {
    3967         overflow: hidden;
    3968         display: inline-block;
    3969         vertical-align: middle;
    3970         height: 16px;
    3971         width: 16px;
    3972         margin-right: 5px;
    3973         background-repeat: no-repeat;
    3974         text-indent: -999em;
     3744  overflow: hidden;
     3745  display: inline-block;
     3746  vertical-align: middle;
     3747  height: 16px;
     3748  width: 16px;
     3749  margin-right: 5px;
     3750  background-repeat: no-repeat;
     3751  text-indent: -999em;
    39753752}
    3976 
    39773753#post-formats-select {
    3978         line-height: 2em;
     3754  line-height: 2em;
    39793755}
    3980 
    3981 label.post-format-icon {
    3982         margin-left: 5px;
    3983         padding: 2px 0 2px 21px;
     3756.post-format-icon {
     3757  margin-left: 5px;
     3758  padding: 2px 0 2px 21px;
     3759  line-height: 2em;
    39843760}
    3985 
    3986 .post-format-icon.post-format-standard  {
    3987         background-position: 0 0;
     3761.post-format-icon.post-format-standard {
     3762  background-position: 0 0;
    39883763}
    3989 
    3990 .post-format-icon.post-format-image  {
    3991         background-position: 0 -32px;
     3764.post-format-icon.post-format-image {
     3765  background-position: 0 -32px;
    39923766}
    3993 
    39943767.post-format-icon.post-format-gallery {
    3995         background-position: 0 -64px;
     3768  background-position: 0 -64px;
    39963769}
    3997 
    39983770.post-format-icon.post-format-audio {
    3999         background-position: 0 -96px;
     3771  background-position: 0 -96px;
    40003772}
    4001 
    40023773.post-format-icon.post-format-video {
    4003         background-position: 0 -128px;
     3774  background-position: 0 -128px;
    40043775}
    4005 
    40063776.post-format-icon.post-format-chat {
    4007         background-position: 0 -160px;
     3777  background-position: 0 -160px;
    40083778}
    4009 
    40103779.post-format-icon.post-format-status {
    4011         background-position: 0 -192px;
     3780  background-position: 0 -192px;
    40123781}
    4013 
    40143782.post-format-icon.post-format-aside {
    4015         background-position: 0 -224px;
     3783  background-position: 0 -224px;
    40163784}
    4017 
    40183785.post-format-icon.post-format-quote {
    4019         background-position: 0 -256px;
     3786  background-position: 0 -256px;
    40203787}
    4021 
    40223788.post-format-icon.post-format-link {
    4023         background-position: 0 -288px;
     3789  background-position: 0 -288px;
    40243790}
    4025 
    4026 
    40273791/*------------------------------------------------------------------------------
    40283792  12.0 - Categories
    40293793------------------------------------------------------------------------------*/
    4030 
    40313794.category-adder {
    4032         margin-left: 120px;
    4033         padding: 4px 0;
     3795  margin-left: 120px;
     3796  padding: 4px 0;
    40343797}
    4035 
    40363798.category-adder h4 {
    4037         margin: 0 0 8px;
     3799  margin: 0 0 8px;
    40383800}
    4039 
    40403801#side-sortables .category-adder {
    4041         margin: 0;
     3802  margin: 0;
    40423803}
    4043 
    40443804#post-body ul.add-menu-item-tabs {
    4045         float: left;
    4046         width: 120px;
    4047         text-align: right;
    4048         /* Negative margin for the sake of those without JS: all tabs display */
    4049         margin: 0 -120px 0 5px;
    4050         padding: 0;
    4051 }
     3805  float: left;
     3806  width: 120px;
     3807  text-align: right;
     3808  /* Negative margin for the sake of those without JS: all tabs display */
    40523809
     3810  margin: 0 -120px 0 5px;
     3811  padding: 0;
     3812}
    40533813#post-body ul.add-menu-item-tabs li {
    4054         padding: 8px;
     3814  padding: 8px;
    40553815}
    4056 
    40573816#post-body ul.add-menu-item-tabs li.tabs {
    4058         -webkit-border-top-left-radius: 3px;
    4059         -webkit-border-bottom-left-radius: 3px;
    4060         border-top-left-radius: 3px;
    4061         border-bottom-left-radius: 3px;
     3817  border-top-left-radius: 3px;
     3818  border-bottom-left-radius: 3px;
     3819  -moz-border-top-left-radius: 3px;
     3820  -moz-border-bottom-left-radius: 3px;
     3821  -webkit-border-top-left-radius: 3px;
     3822  -webkit-border-bottom-left-radius: 3px;
    40623823}
    4063 
    40643824.wp-tab-panel,
    40653825.categorydiv div.tabs-panel,
    40663826.customlinkdiv div.tabs-panel,
    40673827.posttypediv div.tabs-panel,
    40683828.taxonomydiv div.tabs-panel {
    4069         min-height: 42px;
    4070         max-height: 200px;
    4071         overflow: auto;
    4072         padding: 0 0.9em;
    4073         border-style: solid;
    4074         border-width: 1px;
     3829  min-height: 42px;
     3830  max-height: 200px;
     3831  overflow: auto;
     3832  padding: 0 0.9em;
     3833  border-style: solid;
     3834  border-width: 1px;
    40753835}
    4076 
    40773836div.tabs-panel-active {
    4078         display:block;
     3837  display: block;
    40793838}
    4080 
    40813839div.tabs-panel-inactive {
    4082         display:none;
     3840  display: none;
    40833841}
    4084 
    40853842#front-page-warning,
    40863843#front-static-pages ul,
    40873844ul.export-filters,
    ul.export-filters, 
    40903847.customlinkdiv ul.categorychecklist ul,
    40913848.posttypediv ul.categorychecklist ul,
    40923849.taxonomydiv ul.categorychecklist ul {
    4093         margin-left: 18px;
     3850  margin-left: 18px;
    40943851}
    4095 
    40963852ul.categorychecklist li {
    4097         margin: 0;
    4098         padding: 0;
    4099         line-height: 19px;
    4100         word-wrap: break-word;
     3853  margin: 0;
     3854  padding: 0;
     3855  line-height: 19px;
     3856  word-wrap: break-word;
    41013857}
    4102 
    41033858.categorydiv .tabs-panel,
    41043859.customlinkdiv .tabs-panel,
    41053860.posttypediv .tabs-panel,
    41063861.taxonomydiv .tabs-panel {
    4107         border-width: 3px;
    4108         border-style: solid;
     3862  border-width: 3px;
     3863  border-style: solid;
    41093864}
    4110 
    41113865.form-wrap p,
    41123866.form-wrap label {
    4113         font-size: 11px;
     3867  font-size: 11px;
    41143868}
    4115 
    41163869.form-wrap label {
    4117         display: block;
    4118         padding: 2px;
    4119         font-size: 12px;
     3870  display: block;
     3871  padding: 2px;
     3872  font-size: 12px;
     3873}
     3874.form-wrap .form-field {
     3875  margin: 0 0 10px;
     3876  padding: 8px 0;
     3877}
     3878.form-wrap .form-field #parent {
     3879  max-width: 100%;
    41203880}
    4121 
    41223881.form-field input,
    41233882.form-field textarea {
    4124         border-style: solid;
    4125         border-width: 1px;
    4126         width: 95%;
     3883  border-style: solid;
     3884  border-width: 1px;
     3885  width: 95%;
    41273886}
    4128 
    41293887p.description,
    41303888.form-wrap p {
    4131         margin: 2px 0 5px;
     3889  margin: 2px 0 5px;
    41323890}
    4133 
    41343891p.help,
    41353892p.description,
    41363893span.description,
    41373894.form-wrap p {
    4138         font-size: 12px;
    4139         font-style: italic;
    4140         font-family: sans-serif;
    4141 }
    4142 
    4143 .form-wrap .form-field {
    4144         margin: 0 0 10px;
    4145         padding: 8px 0;
    4146 }
    4147 
    4148 .form-wrap .form-field #parent {
    4149         max-width: 100%;
     3895  font-size: 12px;
     3896  font-style: italic;
     3897  font-family: sans-serif;
    41503898}
    4151 
    41523899.col-wrap h3 {
    4153         margin: 12px 0;
    4154         font-size: 1.1em;
     3900  margin: 12px 0;
     3901  font-size: 1.1em;
    41553902}
    4156 
    41573903.col-wrap p.submit {
    4158         margin-top: -10px;
     3904  margin-top: -10px;
    41593905}
    4160 
    4161 
    41623906/*------------------------------------------------------------------------------
    41633907  13.0 - Tags
    41643908------------------------------------------------------------------------------*/
    4165 
    41663909#poststuff .taghint {
    4167         color: #aaa;
    4168         margin: 15px 0 -24px 12px;
    4169 }
    4170 
    4171 #poststuff .tagsdiv .howto {
    4172         margin: 0 0 6px 8px;
     3910  color: #aaa;
     3911  margin: 15px 0 -24px 12px;
    41733912}
    4174 
    41753913.ajaxtag .newtag {
    4176         position: relative;
     3914  position: relative;
    41773915}
    4178 
    41793916.tagsdiv .newtag {
    4180         width: 180px;
     3917  width: 180px;
    41813918}
    4182 
    41833919.tagsdiv .the-tags {
    4184         display: block;
    4185         height: 60px;
    4186         margin: 0 auto;
    4187         overflow: auto;
    4188         width: 260px;
     3920  display: block;
     3921  height: 60px;
     3922  margin: 0 auto;
     3923  overflow: auto;
     3924  width: 260px;
    41893925}
    4190 
    41913926#post-body-content .tagsdiv .the-tags {
    4192         margin: 0 5px;
     3927  margin: 0 5px;
     3928}
     3929#poststuff .tagsdiv .howto {
     3930  margin: 0 0 6px 8px;
    41933931}
    4194 
    41953932p.popular-tags {
    4196         -webkit-border-radius: 8px;
    4197         border-radius: 8px;
    4198         border-width: 1px;
    4199         border-style: solid;
    4200         line-height: 2em;
    4201         max-width: 1000px;
    4202         padding: 8px 12px 12px;
    4203         text-align: justify;
     3933  border-radius: 8px;
     3934  -moz-border-radius: 8px;
     3935  -webkit-border-radius: 8px;
     3936  border-width: 1px;
     3937  border-style: solid;
     3938  line-height: 2em;
     3939  max-width: 1000px;
     3940  padding: 8px 12px 12px;
     3941  text-align: justify;
    42043942}
    4205 
    42063943p.popular-tags a {
    4207         padding: 0 3px;
     3944  padding: 0 3px;
    42083945}
    4209 
    42103946.tagcloud {
    4211         width: 97%;
    4212         margin: 0 0 40px;
    4213         text-align: justify;
     3947  width: 97%;
     3948  margin: 0 0 40px;
     3949  text-align: justify;
    42143950}
    4215 
    42163951.tagcloud h3 {
    4217         margin: 2px 0 12px;
     3952  margin: 2px 0 12px;
    42183953}
    4219 
    42203954.ac_results {
    4221         padding: 0;
    4222         margin: 0;
    4223         list-style: none;
    4224         position: absolute;
    4225         z-index: 10000;
    4226         display: none;
    4227         border-width: 1px;
    4228         border-style: solid;
     3955  padding: 0;
     3956  margin: 0;
     3957  list-style: none;
     3958  position: absolute;
     3959  z-index: 10000;
     3960  display: none;
     3961  border-width: 1px;
     3962  border-style: solid;
    42293963}
    4230 
    42313964.ac_results li {
    4232         padding: 2px 5px;
    4233         white-space: nowrap;
    4234         text-align: left;
     3965  padding: 2px 5px;
     3966  white-space: nowrap;
     3967  text-align: left;
    42353968}
    4236 
    42373969.ac_over {
    4238         cursor: pointer;
     3970  cursor: pointer;
    42393971}
    4240 
    42413972.ac_match {
    4242         text-decoration: underline;
     3973  text-decoration: underline;
    42433974}
    4244 
    42453975/* links tables */
    42463976table.links-table {
    4247         width: 100%;
     3977  width: 100%;
    42483978}
    4249 
    42503979.links-table th {
    4251         font-weight: normal;
    4252         text-align: left;
    4253         vertical-align: top;
    4254         min-width: 80px;
    4255         width: 20%;
    4256         word-wrap: break-word;
     3980  font-weight: normal;
     3981  text-align: left;
     3982  vertical-align: top;
     3983  min-width: 80px;
     3984  width: 20%;
     3985  word-wrap: break-word;
    42573986}
    4258 
    42593987.links-table th,
    42603988.links-table td {
    4261         padding: 5px 0;
     3989  padding: 5px 0;
    42623990}
    4263 
    42643991.links-table td label {
    4265         margin-right: 8px;
     3992  margin-right: 8px;
    42663993}
    4267 
    42683994.links-table td input[type="text"],
    42693995.links-table td textarea {
    4270         width: 100%;
     3996  width: 100%;
    42713997}
    4272 
    42733998.links-table #link_rel {
    4274         max-width: 280px;
     3999  max-width: 280px;
    42754000}
    4276 
    42774001/*------------------------------------------------------------------------------
    42784002  14.0 - Media Screen
    42794003------------------------------------------------------------------------------*/
    4280 
    42814004.media-item .describe {
    4282         border-collapse: collapse;
    4283         width: 100%;
    4284         border-top-style: solid;
    4285         border-top-width: 1px;
    4286         clear: both;
    4287         cursor: default;
     4005  border-collapse: collapse;
     4006  width: 100%;
     4007  border-top-style: solid;
     4008  border-top-width: 1px;
     4009  clear: both;
     4010  cursor: default;
    42884011}
    4289 
    4290 .media-item.media-blank .describe {
    4291         border: 0;
     4012.media-item .describe td {
     4013  padding: 0 8px 8px 0;
     4014  vertical-align: top;
    42924015}
    4293 
    42944016.media-item .describe th {
    4295         vertical-align: top;
    4296         text-align: left;
    4297         padding: 5px 10px 10px;
    4298         width: 140px;
     4017  vertical-align: top;
     4018  text-align: left;
     4019  padding: 5px 10px 10px;
     4020  width: 140px;
    42994021}
    4300 
    4301 .media-item .describe .align th {
    4302         padding-top: 0;
     4022.align .media-item .describe th {
     4023  padding-top: 0;
    43034024}
    4304 
    4305 .media-item .media-item-info tr {
    4306         background-color: transparent;
     4025.media-item .describe input[type="text"],
     4026.media-item .describe textarea {
     4027  width: 460px;
    43074028}
    4308 
    4309 .media-item .describe td {
    4310         padding: 0 8px 8px 0;
    4311         vertical-align: top;
     4029.media-item .describe p.help {
     4030  margin: 0;
     4031  padding: 0 0 0 5px;
     4032}
     4033.media-item.media-blank .describe {
     4034  border: 0;
     4035}
     4036.media-item .media-item-info tr {
     4037  background-color: transparent;
    43124038}
    4313 
    43144039.media-item thead.media-item-info td {
    4315         padding: 4px 10px 0;
     4040  padding: 4px 10px 0;
    43164041}
    4317 
    43184042.media-item .media-item-info .A1B1 {
    4319         padding: 0 0 0 10px;
     4043  padding: 0 0 0 10px;
    43204044}
    4321 
    43224045.media-item td.savesend {
    4323         padding-bottom: 15px;
     4046  padding-bottom: 15px;
    43244047}
    4325 
    43264048.media-item .thumbnail {
    4327         max-height: 128px;
    4328         max-width: 128px;
     4049  max-height: 128px;
     4050  max-width: 128px;
     4051}
     4052.media-item .filename {
     4053  line-height: 36px;
     4054  overflow: hidden;
     4055  padding: 0 10px;
     4056}
     4057.media-item .error-div {
     4058  padding-left: 10px;
     4059}
     4060.media-item .pinkynail {
     4061  float: left;
     4062  margin: 2px 2px 0;
     4063  max-width: 40px;
     4064  max-height: 32px;
     4065}
     4066.media-item .startopen,
     4067.media-item .startclosed {
     4068  display: none;
     4069}
     4070.media-item .original {
     4071  position: relative;
     4072  height: 34px;
     4073}
     4074.media-item .progress {
     4075  float: right;
     4076  height: 22px;
     4077  margin: 6px 10px 0 0;
     4078  width: 200px;
     4079  line-height: 2em;
     4080  padding: 0;
     4081  overflow: hidden;
     4082  margin-bottom: 2px;
     4083  border: 1px solid #d1d1d1;
     4084  background: #f7f7f7;
     4085  background-image: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#f7f7f7));
     4086  background-image: -webkit-linear-gradient(bottom, #ffffff, #f7f7f7);
     4087  background-image: -moz-linear-gradient(bottom, #ffffff, #f7f7f7);
     4088  background-image: -o-linear-gradient(bottom, #ffffff, #f7f7f7);
     4089  background-image: linear-gradient(to top, #ffffff, #f7f7f7);
     4090  border-radius: 3px;
     4091  -moz-border-radius: 3px;
     4092  -webkit-border-radius: 3px;
     4093  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
     4094  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
     4095  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
     4096}
     4097.media-item .bar {
     4098  z-index: 9;
     4099  width: 0;
     4100  height: 100%;
     4101  margin-top: -24px;
     4102  background: #8cc1e9;
     4103  background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
     4104  background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
     4105  background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
     4106  background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
     4107  background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
     4108  border-radius: 3px;
     4109  -moz-border-radius: 3px;
     4110  -webkit-border-radius: 3px;
     4111  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
     4112  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
     4113  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
     4114}
     4115.media-item .progress .percent {
     4116  z-index: 10;
     4117  position: relative;
     4118  width: 200px;
     4119  padding: 0 8px;
     4120  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
     4121  color: rgba(0, 0, 0, 0.6);
    43294122}
    4330 
    43314123#wpbody-content #async-upload-wrap a {
    4332         display: none;
     4124  display: none;
    43334125}
    4334 
    43354126.media-upload-form {
    4336         margin-top: 20px;
     4127  margin-top: 20px;
    43374128}
    4338 
    43394129.media-upload-form td label {
    4340         margin-right: 6px;
    4341         margin-left: 2px;
     4130  margin-right: 6px;
     4131  margin-left: 2px;
    43424132}
    4343 
    43444133.media-upload-form .align .field label {
    4345         display: inline;
    4346         padding: 0 0 0 23px;
    4347         margin: 0 1em 0 3px;
    4348         font-weight: bold;
     4134  display: inline;
     4135  padding: 0 0 0 23px;
     4136  margin: 0 1em 0 3px;
     4137  font-weight: bold;
    43494138}
    4350 
    43514139.media-upload-form tr.image-size label {
    4352         margin: 0 0 0 5px;
    4353         font-weight: bold;
     4140  margin: 0 0 0 5px;
     4141  font-weight: bold;
    43544142}
    4355 
    43564143.media-upload-form th.label label {
    4357         font-weight: bold;
    4358         margin: 0.5em;
    4359         font-size: 13px;
     4144  font-size: 13px;
     4145  font-weight: bold;
     4146  line-height: normal;
     4147  margin: 0.5em;
    43604148}
    4361 
    43624149.media-upload-form th.label label span {
    4363         padding: 0 5px;
     4150  padding: 0 5px;
    43644151}
    4365 
    43664152abbr.required {
    4367         border: medium none;
    4368         text-decoration: none;
    4369 }
    4370 
    4371 .media-item .describe input[type="text"],
    4372 .media-item .describe textarea {
    4373         width: 460px;
    4374 }
    4375 
    4376 .media-item .describe p.help {
    4377         margin: 0;
    4378         padding: 0 0 0 5px;
     4153  border: medium none;
     4154  text-decoration: none;
    43794155}
    4380 
    43814156.media-item .edit-attachment,
    43824157.describe-toggle-on,
    43834158.describe-toggle-off {
    4384         display: block;
    4385         line-height: 36px;
    4386         float: right;
    4387         margin-right: 15px;
     4159  display: block;
     4160  line-height: 36px;
     4161  float: right;
     4162  margin-right: 15px;
    43884163}
    4389 
    43904164.media-item .describe-toggle-off,
    43914165.media-item.open .describe-toggle-on {
    4392         display: none;
     4166  display: none;
    43934167}
    4394 
    43954168.media-item.open .describe-toggle-off {
    4396         display: block;
     4169  display: block;
    43974170}
    4398 
    43994171#media-items .media-item {
    4400         border-style: solid;
    4401         border-width: 1px;
    4402         min-height: 36px;
    4403         position: relative;
    4404         margin-top: -1px;
    4405         width: 100%;
     4172  border-style: solid;
     4173  border-width: 1px;
     4174  min-height: 36px;
     4175  position: relative;
     4176  margin-top: -1px;
     4177  width: 100%;
    44064178}
    4407 
    44084179#media-items {
    4409         width: 623px;
     4180  width: 623px;
    44104181}
    4411 
    44124182.media-new-php #media-items {
    4413         margin: 1em 0;
     4183  margin: 1em 0;
    44144184}
    4415 
    44164185#media-items:empty {
    4417         border: 0 none;
    4418 }
    4419 
    4420 .media-item .filename {
    4421         line-height: 36px;
    4422         overflow: hidden;
    4423         padding: 0 10px;
    4424 }
    4425 
    4426 .media-item .error-div {
    4427         padding-left: 10px;
    4428 }
    4429 
    4430 .media-item .pinkynail {
    4431         float: left;
    4432         margin: 2px 2px 0;
    4433         max-width: 40px;
    4434         max-height: 32px;
    4435 }
    4436 
    4437 .media-item .startopen,
    4438 .media-item .startclosed {
    4439         display: none;
    4440 }
    4441 
    4442 .media-item .original {
    4443         position: relative;
    4444         height: 34px;
    4445 }
    4446 
    4447 .media-item .progress {
    4448         float: right;
    4449         height: 22px;
    4450         margin: 6px 10px 0 0;
    4451         width: 200px;
    4452         line-height: 2em;
    4453         padding: 0;
    4454         overflow: hidden;
    4455         margin-bottom: 2px;
    4456         border: 1px solid #d1d1d1;
    4457         background: #f7f7f7;
    4458         background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));
    4459         background-image: -webkit-linear-gradient(bottom, #fff, #f7f7f7);
    4460         background-image:    -moz-linear-gradient(bottom, #fff, #f7f7f7);
    4461         background-image:      -o-linear-gradient(bottom, #fff, #f7f7f7);
    4462         background-image: linear-gradient(to top, #fff, #f7f7f7);
    4463         -webkit-border-radius: 3px;
    4464         border-radius: 3px;
    4465         -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
    4466         box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
    4467 }
    4468 
    4469 .media-item .bar {
    4470         z-index: 9;
    4471         width: 0;
    4472         height: 100%;
    4473         margin-top: -24px;
    4474         background-color: #8cc1e9;
    4475         background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
    4476         background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
    4477         background-image:    -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
    4478         background-image:      -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
    4479         background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
    4480         -webkit-border-radius: 3px;
    4481         border-radius: 3px;
    4482         -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
    4483         box-shadow: 0 0 3px rgba(0,0,0,0.3);
    4484 }
    4485 
    4486 .media-item .progress .percent {
    4487         z-index: 10;
    4488         position: relative;
    4489         width: 200px;
    4490         padding: 0 8px;
    4491         text-shadow: 0 1px 0 rgba(255,255,255,0.4);
    4492         color: rgba(0,0,0,0.6);
     4186  border: 0 none;
    44934187}
    4494 
    44954188.upload-php .fixed .column-parent {
    4496         width: 15%;
     4189  width: 15%;
    44974190}
    4498 
    44994191.js .html-uploader #plupload-upload-ui {
    4500         display: none;
     4192  display: none;
    45014193}
    4502 
    45034194.js .html-uploader #html-upload-ui {
    4504         display: block;
     4195  display: block;
    45054196}
    4506 
    45074197.media-upload-form .media-item.error {
    4508         margin: 0;
    4509         padding: 0;
     4198  margin: 0;
     4199  padding: 0;
    45104200}
    4511 
    45124201.media-upload-form .media-item.error p,
    45134202.media-item .error-div {
    4514         line-height: 16px;
    4515         margin: 5px 10px;
    4516         padding: 0;
     4203  line-height: 16px;
     4204  margin: 5px 10px;
     4205  padding: 0;
    45174206}
    4518 
    45194207.media-item .error-div a.dismiss {
    4520         display: block;
    4521         float: right;
    4522         margin: 5px 4px 0 15px;
     4208  display: block;
     4209  float: right;
     4210  margin: 5px 4px 0 15px;
    45234211}
    4524 
    45254212/*------------------------------------------------------------------------------
    45264213  14.1 - Media Library
    45274214------------------------------------------------------------------------------*/
    4528 
    45294215.find-box {
    4530         width: 600px;
    4531         height: 300px;
    4532         overflow: hidden;
    4533         padding: 33px 0 51px;
    4534         position: absolute;
    4535         z-index: 1000;
     4216  width: 600px;
     4217  height: 300px;
     4218  overflow: hidden;
     4219  padding: 33px 0 51px;
     4220  position: absolute;
     4221  z-index: 1000;
    45364222}
    4537 
    45384223.find-box-head {
    4539         cursor: move;
    4540         font-weight: bold;
    4541         height: 2em;
    4542         line-height: 2em;
    4543         padding: 1px 12px;
    4544         position: absolute;
    4545         top: 5px;
    4546         width: 100%;
     4224  cursor: move;
     4225  font-weight: bold;
     4226  height: 2em;
     4227  line-height: 2em;
     4228  padding: 1px 12px;
     4229  position: absolute;
     4230  top: 5px;
     4231  width: 100%;
    45474232}
    4548 
    45494233.find-box-inside {
    4550         overflow: auto;
    4551         padding: 6px;
    4552         height: 100%;
     4234  overflow: auto;
     4235  padding: 6px;
     4236  height: 100%;
    45534237}
    4554 
    45554238.find-box-search {
    4556         overflow: hidden;
    4557         padding: 9px;
    4558         position: relative;
     4239  overflow: hidden;
     4240  padding: 9px;
     4241  position: relative;
    45594242}
    4560 
    45614243.find-box-search .spinner {
    4562         float: none;
    4563         left: 125px;
    4564         position: absolute;
    4565         top: 9px;
     4244  float: none;
     4245  left: 125px;
     4246  position: absolute;
     4247  top: 9px;
    45664248}
    4567 
    45684249#find-posts-input {
    4569         float: left;
    4570         width: 140px;
    4571         height: 24px;
     4250  float: left;
     4251  width: 140px;
     4252  height: 24px;
    45724253}
    4573 
    45744254#find-posts-search {
    4575         float: left;
    4576         margin: 1px 4px 0 3px;
     4255  float: left;
     4256  margin: 1px 4px 0 3px;
    45774257}
    4578 
    45794258#find-posts-response {
    4580         margin: 8px 0;
    4581         padding: 0 1px 6px;
     4259  margin: 8px 0;
     4260  padding: 0 1px 6px;
    45824261}
    4583 
    45844262#find-posts-response table {
    4585         width: 100%;
     4263  width: 100%;
    45864264}
    4587 
    45884265#find-posts-response .found-radio {
    4589         padding: 3px 0 0 8px;
    4590         width: 15px;
     4266  padding: 3px 0 0 8px;
     4267  width: 15px;
    45914268}
    4592 
    45934269.find-box-buttons {
    4594         padding: 8px;
    4595         overflow: hidden;
     4270  padding: 8px;
     4271  overflow: hidden;
    45964272}
    4597 
    45984273.find-box #resize-se {
    4599         position: absolute;
    4600         right: 1px;
    4601         bottom: 1px;
     4274  position: absolute;
     4275  right: 1px;
     4276  bottom: 1px;
    46024277}
    4603 
    46044278.ui-find-overlay {
    4605         position: absolute;
    4606         top: 0;
    4607         left: 0;
    4608         background-color: #000;
    4609         opacity: 0.6;
    4610         filter: alpha(opacity=60);
     4279  position: absolute;
     4280  top: 0;
     4281  left: 0;
     4282  background-color: black;
     4283  opacity: 0.6;
     4284  filter: alpha(opacity=60);
    46114285}
    4612 
    46134286ul#dismissed-updates {
    4614         display: none;
     4287  display: none;
    46154288}
    4616 
    46174289form.upgrade {
    4618         margin-top: 8px;
     4290  margin-top: 8px;
    46194291}
    4620 
    46214292form.upgrade .hint {
    4622         font-style: italic;
    4623         font-size: 85%;
    4624         margin: -0.5em 0 2em 0;
     4293  font-style: italic;
     4294  font-size: 85%;
     4295  margin: -0.5em 0 2em 0;
    46254296}
    4626 
    46274297#poststuff .inside .the-tagcloud {
    4628         margin: 5px 0 10px;
    4629         padding: 8px;
    4630         border-width: 1px;
    4631         border-style: solid;
    4632         line-height: 1.8em;
    4633         word-spacing: 3px;
    4634         -webkit-border-radius: 6px;
    4635         border-radius: 6px;
     4298  margin: 5px 0 10px;
     4299  padding: 8px;
     4300  border-width: 1px;
     4301  border-style: solid;
     4302  line-height: 1.8em;
     4303  word-spacing: 3px;
     4304  border-radius: 6px;
     4305  -moz-border-radius: 6px;
     4306  -webkit-border-radius: 6px;
    46364307}
    4637 
    46384308.drag-drop #drag-drop-area {
    4639         border: 4px dashed #DDDDDD;
    4640         height: 200px;
     4309  border: 4px dashed #DDDDDD;
     4310  height: 200px;
    46414311}
    4642 
    46434312.drag-drop .drag-drop-inside {
    4644         margin: 70px auto 0;
    4645         width: 250px;
     4313  margin: 70px auto 0;
     4314  width: 250px;
    46464315}
    4647 
    46484316.drag-drop-inside p {
    4649         color: #aaa;
    4650         font-size: 14px;
    4651         margin: 5px 0;
    4652         display: none;
     4317  color: #aaa;
     4318  font-size: 14px;
     4319  margin: 5px 0;
     4320  display: none;
    46534321}
    4654 
    46554322.drag-drop .drag-drop-inside p {
    4656         text-align: center;
     4323  text-align: center;
    46574324}
    4658 
    46594325.drag-drop-inside p.drag-drop-info {
    4660         font-size: 20px;
     4326  font-size: 20px;
    46614327}
    4662 
    46634328.drag-drop .drag-drop-inside p,
    46644329.drag-drop-inside p.drag-drop-buttons {
    4665         display: block;
     4330  display: block;
    46664331}
    4667 
    46684332/*
    46694333#drag-drop-area:-moz-drag-over {
    46704334        border-color: #83b4d8;
    46714335}
    46724336borger color while dragging a file over the uploader drop area */
    46734337.drag-drop.drag-over #drag-drop-area {
    4674         border-color: #83b4d8;
     4338  border-color: #83b4d8;
    46754339}
    4676 
    46774340#plupload-upload-ui {
    4678         position: relative;
     4341  position: relative;
    46794342}
    4680 
    4681 
    46824343/*------------------------------------------------------------------------------
    46834344  14.2 - Image Editor
    46844345------------------------------------------------------------------------------*/
    4685 
    46864346.describe .image-editor {
    4687         vertical-align: top;
     4347  vertical-align: top;
    46884348}
    4689 
    46904349.imgedit-wrap {
    4691         position: relative;
     4350  position: relative;
    46924351}
    4693 
    46944352.imgedit-settings p {
    4695         margin: 8px 0;
     4353  margin: 8px 0;
    46964354}
    4697 
    46984355.post-php .imgedit-wrap table {
    4699         width: 100%;
     4356  width: 100%;
    47004357}
    4701 
    47024358.describe .imgedit-wrap table td,
    47034359.wp_attachment_holder .imgedit-wrap table td {
    4704         vertical-align: top;
    4705         padding-top: 0;
     4360  vertical-align: top;
     4361  padding-top: 0;
    47064362}
    4707 
    47084363.describe .imgedit-wrap table td.imgedit-settings {
    4709         padding: 0 5px;
     4364  padding: 0 5px;
    47104365}
    4711 
    47124366.wp_attachment_holder .imgedit-wrap table td.imgedit-settings {
    4713         width: 250px;
     4367  width: 250px;
    47144368}
    4715 
    47164369td.imgedit-settings input {
    4717         margin-top: 0;
    4718         vertical-align: middle;
     4370  margin-top: 0;
     4371  vertical-align: middle;
    47194372}
    4720 
    47214373.imgedit-wait {
    4722         position: absolute;
    4723         top: 0;
    4724         background: #fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;
    4725         background-size: 16px 16px;
    4726         opacity: 0.7;
    4727         filter: alpha(opacity=70);
    4728         width: 100%;
    4729         height: 500px;
    4730         display: none;
     4374  position: absolute;
     4375  top: 0;
     4376  background: #ffffff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;
     4377  background-size: 16px 16px;
     4378  opacity: 0.7;
     4379  filter: alpha(opacity=70);
     4380  width: 100%;
     4381  height: 500px;
     4382  display: none;
    47314383}
    4732 
    47334384.spinner {
    4734         background: url(../images/wpspin_light.gif) no-repeat;
    4735         background-size: 16px 16px;
    4736         display: none;
    4737         float: right;
    4738         opacity: 0.7;
    4739         filter: alpha(opacity=70);
    4740         width: 16px;
    4741         height: 16px;
    4742         margin: 5px 5px 0;
     4385  background: url(../images/wpspin_light.gif) no-repeat;
     4386  background-size: 16px 16px;
     4387  display: none;
     4388  float: right;
     4389  opacity: 0.7;
     4390  filter: alpha(opacity=70);
     4391  width: 16px;
     4392  height: 16px;
     4393  margin: 5px 5px 0;
    47434394}
    4744 
    47454395.no-float {
    4746         float: none;
     4396  float: none;
    47474397}
    4748 
    47494398.media-disabled,
    4750 .imgedit-settings .disabled  {
    4751         color: grey;
     4399.imgedit-settings .disabled {
     4400  color: grey;
    47524401}
    4753 
    47544402.wp_attachment_image,
    47554403.A1B1 {
    4756         overflow: hidden;
     4404  overflow: hidden;
    47574405}
    4758 
    47594406.wp_attachment_image .button,
    47604407.A1B1 .button {
    4761         float: left;
     4408  float: left;
    47624409}
    4763 
    47644410.no-js .wp_attachment_image .button {
    4765         display: none;
     4411  display: none;
    47664412}
    4767 
    47684413.wp_attachment_image .spinner,
    47694414.A1B1 .spinner {
    4770         float: left;
    4771         padding: 0 4px 4px;
    4772         vertical-align: bottom;
     4415  float: left;
     4416  padding: 0 4px 4px;
     4417  vertical-align: bottom;
    47734418}
    4774 
    47754419.imgedit-menu {
    4776         margin: 0 0 12px;
    4777         min-width: 300px;
     4420  margin: 0 0 12px;
     4421  min-width: 300px;
    47784422}
    4779 
    47804423.imgedit-menu div {
    4781         float: left;
    4782         width: 32px;
    4783         height: 32px;
     4424  float: left;
     4425  width: 32px;
     4426  height: 32px;
    47844427}
    4785 
    47864428.imgedit-crop-wrap {
    4787         position: relative;
     4429  position: relative;
    47884430}
    4789 
    47904431.imgedit-crop {
    4791         background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;
    4792         margin: 0 8px 0 0;
     4432  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;
     4433  margin: 0 8px 0 0;
    47934434}
    4794 
    47954435.imgedit-crop.disabled:hover {
    4796         background-position: -9px -31px;
     4436  background-position: -9px -31px;
    47974437}
    4798 
    47994438.imgedit-crop:hover {
    4800         background-position: -9px -1px;
     4439  background-position: -9px -1px;
    48014440}
    4802 
    48034441.imgedit-rleft {
    4804         background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;
    4805         margin: 0 3px;
     4442  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;
     4443  margin: 0 3px;
    48064444}
    4807 
    48084445.imgedit-rleft.disabled:hover {
    4809         background-position: -46px -31px;
     4446  background-position: -46px -31px;
    48104447}
    4811 
    48124448.imgedit-rleft:hover {
    4813         background-position: -46px -1px;
     4449  background-position: -46px -1px;
    48144450}
    4815 
    48164451.imgedit-rright {
    4817         background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;
    4818         margin: 0 8px 0 3px;
     4452  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;
     4453  margin: 0 8px 0 3px;
    48194454}
    4820 
    48214455.imgedit-rright.disabled:hover {
    4822         background-position: -77px -31px;
     4456  background-position: -77px -31px;
    48234457}
    4824 
    48254458.imgedit-rright:hover {
    4826         background-position: -77px -1px;
     4459  background-position: -77px -1px;
    48274460}
    4828 
    48294461.imgedit-flipv {
    4830         background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;
    4831         margin: 0 3px;
     4462  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;
     4463  margin: 0 3px;
    48324464}
    4833 
    48344465.imgedit-flipv.disabled:hover {
    4835         background-position: -115px -31px;
     4466  background-position: -115px -31px;
    48364467}
    4837 
    48384468.imgedit-flipv:hover {
    4839         background-position: -115px -1px;
     4469  background-position: -115px -1px;
    48404470}
    4841 
    48424471.imgedit-fliph {
    4843         background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;
    4844         margin: 0 8px 0 3px;
     4472  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;
     4473  margin: 0 8px 0 3px;
    48454474}
    4846 
    48474475.imgedit-fliph.disabled:hover {
    4848         background-position: -147px -31px;
     4476  background-position: -147px -31px;
    48494477}
    4850 
    48514478.imgedit-fliph:hover {
    4852         background-position: -147px -1px;
     4479  background-position: -147px -1px;
    48534480}
    4854 
    48554481.imgedit-undo {
    4856         background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;
    4857         margin: 0 3px;
     4482  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;
     4483  margin: 0 3px;
    48584484}
    4859 
    48604485.imgedit-undo.disabled:hover {
    4861         background-position: -184px -31px;
     4486  background-position: -184px -31px;
    48624487}
    4863 
    48644488.imgedit-undo:hover {
    4865         background-position: -184px -1px;
     4489  background-position: -184px -1px;
    48664490}
    4867 
    48684491.imgedit-redo {
    4869         background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;
    4870         margin: 0 8px 0 3px;
     4492  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;
     4493  margin: 0 8px 0 3px;
    48714494}
    4872 
    48734495.imgedit-redo.disabled:hover {
    4874         background-position: -215px -31px;
     4496  background-position: -215px -31px;
    48754497}
    4876 
    48774498.imgedit-redo:hover {
    4878         background-position: -215px -1px;
     4499  background-position: -215px -1px;
    48794500}
    4880 
    48814501.imgedit-applyto img {
    4882         margin: 0 8px 0 0;
     4502  margin: 0 8px 0 0;
    48834503}
    4884 
    48854504.imgedit-group-top {
    4886         margin: 5px 0;
     4505  margin: 5px 0;
    48874506}
    4888 
    48894507.imgedit-applyto .imgedit-label {
    4890         padding: 2px 0 0;
    4891         display: block;
     4508  padding: 2px 0 0;
     4509  display: block;
    48924510}
    4893 
    48944511.imgedit-help {
    4895         display: none;
    4896         font-style: italic;
    4897         margin-bottom: 8px;
     4512  display: none;
     4513  font-style: italic;
     4514  margin-bottom: 8px;
    48984515}
    4899 
    49004516a.imgedit-help-toggle {
    4901         text-decoration: none;
     4517  text-decoration: none;
    49024518}
    4903 
    49044519.form-table td.imgedit-response {
    4905         padding: 0;
     4520  padding: 0;
    49064521}
    4907 
    49084522.imgedit-submit {
    4909         margin: 8px 0;
     4523  margin: 8px 0;
    49104524}
    4911 
    49124525.imgedit-submit-btn {
    4913         margin-left: 20px;
     4526  margin-left: 20px;
    49144527}
    4915 
    49164528.imgedit-wrap .nowrap {
    4917         white-space: nowrap;
     4529  white-space: nowrap;
    49184530}
    4919 
    49204531span.imgedit-scale-warn {
    4921         color: red;
    4922         font-size: 20px;
    4923         font-style: normal;
    4924         visibility: hidden;
    4925         vertical-align: middle;
     4532  color: red;
     4533  font-size: 20px;
     4534  font-style: normal;
     4535  visibility: hidden;
     4536  vertical-align: middle;
    49264537}
    4927 
    49284538.imgedit-group {
    4929         border-width: 1px;
    4930         border-style: solid;
    4931         -webkit-border-radius: 3px;
    4932         border-radius: 3px;
    4933         margin-bottom: 8px;
    4934         padding: 2px 10px;
     4539  border-width: 1px;
     4540  border-style: solid;
     4541  border-radius: 3px;
     4542  -moz-border-radius: 3px;
     4543  -webkit-border-radius: 3px;
     4544  margin-bottom: 8px;
     4545  padding: 2px 10px;
    49354546}
    4936 
    49374547/*------------------------------------------------------------------------------
    49384548  15.0 - Comments Screen
    49394549------------------------------------------------------------------------------*/
    4940 
    49414550.form-table {
    4942         border-collapse: collapse;
    4943         margin-top: 0.5em;
    4944         width: 100%;
    4945         margin-bottom: -8px;
    4946         clear: both;
     4551  border-collapse: collapse;
     4552  margin-top: 0.5em;
     4553  width: 100%;
     4554  margin-bottom: -8px;
     4555  clear: both;
    49474556}
    4948 
    49494557.form-table td {
    4950         margin-bottom: 9px;
    4951         padding: 8px 10px;
    4952         line-height: 20px;
    4953         font-size: 12px;
     4558  margin-bottom: 9px;
     4559  padding: 8px 10px;
     4560  line-height: 20px;
     4561  font-size: 12px;
    49544562}
    4955 
    4956 .form-table th,
    4957 .form-wrap label {
    4958         font-weight: normal;
    4959         text-shadow: #fff 0 1px 0;
     4563.form-table td p {
     4564  margin-top: 4px;
     4565}
     4566.color-palette .form-table td {
     4567  border-width: 1px 1px 0;
     4568  border-style: solid solid none;
     4569  height: 10px;
     4570  line-height: 20px;
     4571  width: 10px;
    49604572}
    4961 
    49624573.form-table th {
    4963         vertical-align: top;
    4964         text-align: left;
    4965         padding: 10px;
    4966         width: 200px;
     4574  vertical-align: top;
     4575  text-align: left;
     4576  padding: 10px;
     4577  width: 200px;
    49674578}
    4968 
    49694579.form-table th.th-full {
    4970         width: auto;
     4580  width: auto;
    49714581}
    4972 
    49734582.form-table div.color-option {
    4974         display: block;
    4975         clear: both;
    4976         margin-top: 12px;
     4583  display: block;
     4584  clear: both;
     4585  margin-top: 12px;
    49774586}
    4978 
    49794587.form-table input.tog {
    4980         margin-top: 2px;
    4981         margin-right: 2px;
    4982         float: left;
     4588  margin-top: 2px;
     4589  margin-right: 2px;
     4590  float: left;
    49834591}
    4984 
    4985 .form-table td p {
    4986         margin-top: 4px;
    4987 }
    4988 
    49894592.form-table table.color-palette {
    4990         vertical-align: bottom;
    4991         float: left;
    4992         margin: -12px 3px 11px;
     4593  vertical-align: bottom;
     4594  float: left;
     4595  margin: -12px 3px 11px;
    49934596}
    4994 
    4995 .form-table .color-palette td {
    4996         border-width: 1px 1px 0;
    4997         border-style: solid solid none;
    4998         height: 10px;
    4999         line-height: 20px;
    5000         width: 10px;
     4597.form-table th,
     4598.form-wrap label {
     4599  font-weight: normal;
     4600  text-shadow: #fff 0 1px 0;
    50014601}
    5002 
    50034602.commentlist li {
    5004         padding: 1em 1em .2em;
    5005         margin: 0;
    5006         border-bottom-width: 1px;
    5007         border-bottom-style: solid;
     4603  padding: 1em 1em .2em;
     4604  margin: 0;
     4605  border-bottom-width: 1px;
     4606  border-bottom-style: solid;
    50084607}
    5009 
    50104608.commentlist li li {
    5011         border-bottom: 0;
    5012         padding: 0;
     4609  border-bottom: 0;
     4610  padding: 0;
    50134611}
    5014 
    50154612.commentlist p {
    5016         padding: 0;
    5017         margin: 0 0 .8em;
     4613  padding: 0;
     4614  margin: 0 0 .8em;
     4615}
     4616.commentlist .avatar {
     4617  vertical-align: text-top;
    50184618}
    5019 
    50204619/* reply to comments */
    50214620#replyrow input {
    5022         border-width: 1px;
    5023         border-style: solid;
     4621  border-width: 1px;
     4622  border-style: solid;
    50244623}
    5025 
    50264624#replyrow td {
    5027         padding: 2px;
     4625  padding: 2px;
     4626}
     4627#replyrow h5 {
     4628  margin: .2em 0 0;
     4629  padding: 0 5px;
     4630  line-height: 1.4em;
     4631  font-size: 1em;
    50284632}
    5029 
    50304633#replysubmit {
    5031         margin: 0;
    5032         padding: 0 5px 3px;
    5033         text-align: center;
     4634  margin: 0;
     4635  padding: 0 5px 3px;
     4636  text-align: center;
    50344637}
    5035 
    50364638#replysubmit .spinner {
    5037         padding: 2px 0 0;
    5038         vertical-align: top;
    5039         float: right;
     4639  padding: 2px 0 0;
     4640  vertical-align: top;
     4641  float: right;
    50404642}
    5041 
    50424643#replysubmit .button {
    5043         margin-right: 5px;
     4644  margin-right: 5px;
    50444645}
    5045 
    50464646#replysubmit .error {
    5047         color: red;
    5048         line-height: 21px;
    5049         text-align: center;
     4647  color: red;
     4648  line-height: 21px;
     4649  text-align: center;
    50504650}
    5051 
    5052 #replyrow h5 {
    5053         margin: .2em 0 0;
    5054         padding: 0 5px;
    5055         line-height: 1.4em;
    5056         font-size: 1em;
    5057 }
    5058 
    50594651#edithead .inside {
    5060         float: left;
    5061         padding: 3px 0 2px 5px;
    5062         margin: 0;
    5063         text-align: center;
     4652  float: left;
     4653  padding: 3px 0 2px 5px;
     4654  margin: 0;
     4655  text-align: center;
    50644656}
    5065 
    50664657#edithead .inside input {
    5067         width: 180px;
     4658  width: 180px;
    50684659}
    5069 
    50704660#edithead label {
    5071         padding: 2px 0;
     4661  padding: 2px 0;
    50724662}
    5073 
    50744663#replycontainer {
    5075         padding: 5px;
     4664  padding: 5px;
    50764665}
    5077 
    50784666#replycontent {
    5079         height: 120px;
    5080         -webkit-box-shadow: none;
    5081         box-shadow: none;
     4667  height: 120px;
     4668  -moz-box-shadow: none;
     4669  -webkit-box-shadow: none;
     4670  box-shadow: none;
    50824671}
    5083 
    50844672.comment-php .wp-editor-area {
    5085         height: 200px;
     4673  height: 200px;
    50864674}
    5087 
    50884675.comment-ays {
    5089         margin-bottom: 0;
    5090         border-style: solid;
    5091         border-width: 1px;
     4676  margin-bottom: 0;
     4677  border-style: solid;
     4678  border-width: 1px;
    50924679}
    5093 
    50944680.comment-ays th {
    5095         border-right-style: solid;
    5096         border-right-width: 1px;
     4681  border-right-style: solid;
     4682  border-right-width: 1px;
    50974683}
    5098 
    50994684.trash-undo-inside,
    51004685.spam-undo-inside {
    5101         margin: 1px 8px 1px 0;
    5102         line-height: 16px;
     4686  margin: 1px 8px 1px 0;
     4687  line-height: 16px;
    51034688}
    5104 
    5105 .spam-undo-inside .avatar,
    5106 .trash-undo-inside .avatar {
    5107         height: 20px;
    5108         width: 20px;
    5109         margin-right: 8px;
    5110         vertical-align: middle;
     4689.trash-undo-inside .avatar,
     4690.spam-undo-inside .avatar {
     4691  height: 20px;
     4692  width: 20px;
     4693  margin-right: 8px;
     4694  vertical-align: middle;
    51114695}
    5112 
    51134696.stuffbox .editcomment {
    5114         clear: none;
     4697  clear: none;
    51154698}
    5116 
    51174699#comment-status-radio p {
    5118         margin: 3px 0 5px;
     4700  margin: 3px 0 5px;
    51194701}
    5120 
    51214702#comment-status-radio input {
    5122         margin: 2px 3px 5px 0;
    5123         vertical-align: middle;
     4703  margin: 2px 3px 5px 0;
     4704  vertical-align: middle;
    51244705}
    5125 
    51264706#comment-status-radio label {
    5127         padding: 5px 0;
    5128 }
    5129 
    5130 .commentlist .avatar {
    5131         vertical-align: text-top;
     4707  padding: 5px 0;
    51324708}
    5133 
    5134 
    51354709/*------------------------------------------------------------------------------
    51364710  16.0 - Themes
    51374711------------------------------------------------------------------------------*/
    5138 
    51394712.theme-install-php .tablenav {
    5140         height: auto;
     4713  height: auto;
    51414714}
    5142 
    51434715.theme-install-php .spinner {
    5144         margin-top: 9px;
     4716  margin-top: 9px;
    51454717}
    5146 
    51474718h3.available-themes {
    5148         margin: 0.3em 0 1em;
    5149         float: left;
     4719  margin: 0.3em 0 1em;
     4720  float: left;
    51504721}
    5151 
    51524722.available-theme {
    5153         display: inline-block;
    5154         margin-right: 10px;
    5155         overflow: hidden;
    5156         padding: 20px 20px 20px 0;
    5157         vertical-align: top;
    5158         width: 300px;
     4723  display: inline-block;
     4724  margin-right: 10px;
     4725  overflow: hidden;
     4726  padding: 20px 20px 20px 0;
     4727  vertical-align: top;
     4728  width: 300px;
    51594729}
    5160 
    51614730.available-theme .screenshot {
    5162         width: 300px;
    5163         height: 225px;
    5164         display: block;
    5165         border-width: 1px;
    5166         border-style: solid;
    5167         margin-bottom: 10px;
    5168         overflow: hidden;
     4731  width: 300px;
     4732  height: 225px;
     4733  display: block;
     4734  border-width: 1px;
     4735  border-style: solid;
     4736  margin-bottom: 10px;
     4737  overflow: hidden;
    51694738}
    5170 
    51714739.available-theme img {
    5172         width: 300px;
     4740  width: 300px;
    51734741}
    5174 
    51754742.available-theme h3 {
    5176         margin: 15px 0 0;
     4743  margin: 15px 0 0;
    51774744}
    5178 
    51794745.available-theme .theme-author {
    5180         line-height: 18px;
     4746  line-height: 18px;
    51814747}
    5182 
    51834748.available-theme .action-links {
    5184         margin-top: 10px;
    5185         overflow: hidden;
     4749  margin-top: 10px;
     4750  overflow: hidden;
    51864751}
    5187 
    51884752.available-theme a.screenshot:focus {
    5189         border-color: #777;
     4753  border-color: #777;
    51904754}
    5191 
    51924755#current-theme .theme-info li,
    51934756.theme-options li,
    51944757.available-theme .action-links li {
    5195         float: left;
    5196         padding-right: 10px;
    5197         margin-right: 10px;
    5198         border-right: 1px solid #dfdfdf;
    5199 }
    5200 
    5201 .available-theme .action-links li {
    5202         padding-right: 8px;
    5203         margin-right: 8px;
     4758  float: left;
     4759  padding-right: 10px;
     4760  margin-right: 10px;
     4761  border-right: 1px solid #dfdfdf;
    52044762}
    5205 
    5206 .ie8 .available-theme .action-links li {
    5207         padding-right: 7px;
    5208         margin-right: 7px;
    5209 }
    5210 
    52114763#current-theme .theme-info li:last-child,
    52124764.theme-options li:last-child,
    52134765.available-theme .action-links li:last-child {
    5214         padding-right: 0;
    5215         margin-right: 0;
    5216         border-right: 0;
     4766  padding-right: 0;
     4767  margin-right: 0;
     4768  border-right: 0;
     4769}
     4770.available-theme .action-links li {
     4771  padding-right: 8px;
     4772  margin-right: 8px;
     4773}
     4774.ie8 .available-theme .action-links li {
     4775  padding-right: 7px;
     4776  margin-right: 7px;
    52174777}
    5218 
    52194778.available-theme .action-links .delete-theme {
    5220         float: right;
    5221         margin-left: 8px;
    5222         margin-right: 0;
     4779  float: right;
     4780  margin-left: 8px;
     4781  margin-right: 0;
    52234782}
    5224 
    52254783.available-theme .action-links .delete-theme a {
    5226         color: red;
    5227         padding: 2px;
     4784  color: red;
     4785  padding: 2px;
    52284786}
    5229 
    52304787.available-theme .action-links .delete-theme a:hover {
    5231         background: red;
    5232         color: #fff;
    5233         text-decoration: none;
     4788  background: red;
     4789  color: white;
     4790  text-decoration: none;
    52344791}
    5235 
    52364792.available-theme .action-links p {
    5237         float: left;
     4793  float: left;
    52384794}
    5239 
    52404795#current-theme {
    5241         margin: 20px 0 10px;
    5242         padding: 0 0 20px;
    5243         border-bottom-width: 1px;
    5244         border-bottom-style: solid;
    5245         overflow: hidden;
     4796  margin: 20px 0 10px;
     4797  padding: 0 0 20px;
     4798  border-bottom-width: 1px;
     4799  border-bottom-style: solid;
     4800  overflow: hidden;
    52464801}
    5247 
    52484802#current-theme.has-screenshot {
    5249         padding-left: 330px;
     4803  padding-left: 330px;
    52504804}
    5251 
    52524805#current-theme h3 {
    5253         margin: 0;
    5254         font-size: 12px;
    5255         font-weight: normal;
    5256         color: #999;
     4806  margin: 0;
     4807  font-size: 12px;
     4808  font-weight: normal;
     4809  color: #999;
    52574810}
    5258 
    52594811#current-theme h4 {
    5260         margin: 3px 0 16px;
    5261         font-size: 20px;
     4812  margin: 3px 0 16px;
     4813  font-size: 20px;
    52624814}
    5263 
    52644815#current-theme h4 span {
    5265         margin-left: 20px;
    5266         font-size: 12px;
    5267         font-weight: normal;
     4816  margin-left: 20px;
     4817  font-size: 12px;
     4818  font-weight: normal;
    52684819}
    5269 
    52704820#current-theme a {
    5271         border-bottom: none;
     4821  border-bottom: none;
    52724822}
    5273 
    52744823#current-theme .theme-info {
    5275         margin: 1em 0;
    5276         overflow: hidden;
     4824  margin: 1em 0;
     4825  overflow: hidden;
    52774826}
    5278 
    52794827#current-theme .theme-description {
    5280         margin-top: 5px;
    5281         max-width: 600px;
    5282         line-height: 1.6em;
     4828  margin-top: 5px;
     4829  max-width: 600px;
     4830  line-height: 1.6em;
    52834831}
    5284 
    52854832#current-theme img {
    5286         float: left;
    5287         width: 300px;
    5288         margin-left: -330px;
    5289 
    5290         border-width: 1px;
    5291         border-style: solid;
     4833  float: left;
     4834  width: 300px;
     4835  margin-left: -330px;
     4836  border-width: 1px;
     4837  border-style: solid;
    52924838}
    5293 
    52944839.theme-options {
    5295         overflow: hidden;
    5296         font-size: 14px;
    5297         padding-bottom: 10px;
     4840  overflow: hidden;
     4841  font-size: 14px;
     4842  padding-bottom: 10px;
    52984843}
    5299 
    53004844.theme-options .load-customize {
    5301         margin-right: 30px;
    5302         float: left;
     4845  margin-right: 30px;
     4846  float: left;
    53034847}
    5304 
    53054848.theme-options span {
    5306         float: left;
    5307         margin-right: 10px;
    5308         text-transform: uppercase;
    5309         font-size: 11px;
    5310         line-height: 18px;
    5311         color: #999;
     4849  float: left;
     4850  margin-right: 10px;
     4851  text-transform: uppercase;
     4852  font-size: 11px;
     4853  line-height: 18px;
     4854  color: #999;
    53124855}
    5313 
    53144856.theme-options ul {
    5315         float: left;
    5316         margin: 0;
     4857  float: left;
     4858  margin: 0;
    53174859}
    5318 
    53194860/* Allow for three-up in small windows when sidebar is collapsed */
    53204861@media only screen and (max-width: 1200px) {
    5321         .folded .available-theme,
    5322         .folded .available-theme .screenshot {
    5323                 width: 300px;
    5324         }
    5325 
    5326         .folded .available-theme .screenshot {
    5327                 height: 225px;
    5328         }
    5329 
    5330         .folded #current-theme img {
    5331                 width: 300px;
    5332         }
    5333 
    5334         .folded #current-theme.has-screenshot {
    5335                 padding-left: 330px;
    5336         }
    5337 
    5338         .folded #current-theme img {
    5339                 margin-left: -330px;
    5340         }
     4862  .folded .available-theme,
     4863  .folded .available-theme .screenshot {
     4864    width: 300px;
     4865  }
     4866  .folded .available-theme .screenshot {
     4867    height: 225px;
     4868  }
     4869  .folded #current-theme img {
     4870    width: 300px;
     4871    margin-left: -330px;
     4872  }
     4873  .folded #current-theme.has-screenshot {
     4874    padding-left: 330px;
     4875  }
    53414876}
    5342 
    53434877/* Adjust three-up display in smaller windows when sidebar is collapsed */
    53444878@media only screen and (max-width: 1079px) {
    5345         .folded .available-theme,
    5346         .folded .available-theme .screenshot {
    5347                 width: 270px;
    5348         }
    5349 
    5350         .folded .available-theme .screenshot {
    5351                 height: 203px;
    5352         }
    5353 
    5354         .folded #current-theme img {
    5355                 width: 270px;
    5356         }
    5357 
    5358         .folded #current-theme.has-screenshot {
    5359                 padding-left: 300px;
    5360         }
    5361 
    5362         .folded #current-theme img {
    5363                 margin-left: -300px;
    5364         }
     4879  .folded .available-theme,
     4880  .folded .available-theme .screenshot {
     4881    width: 270px;
     4882  }
     4883  .folded .available-theme .screenshot {
     4884    height: 203px;
     4885  }
     4886  .folded #current-theme img {
     4887    width: 270px;
     4888    margin-left: -300px;
     4889  }
     4890  .folded #current-theme.has-screenshot {
     4891    padding-left: 300px;
     4892  }
    53654893}
    5366 
    53674894/* Allow for three-up on 1024px wide screens, e.g. tablets */
    53684895@media only screen and (max-width: 1200px) {
    5369         .available-theme,
    5370         .available-theme .screenshot,
    5371         #current-theme img {
    5372                 width: 240px;
    5373         }
    5374 
    5375         .available-theme .screenshot {
    5376                 height: 180px;
    5377         }
    5378 
    5379         .available-theme img {
    5380                 width: 100%;
    5381         }
    5382 
    5383         #current-theme.has-screenshot {
    5384                 padding-left: 270px;
    5385         }
    5386 
    5387         #current-theme img {
    5388                 margin-left: -270px;
    5389         }
     4896  .available-theme,
     4897  .available-theme .screenshot,
     4898  #current-theme img {
     4899    width: 240px;
     4900  }
     4901  .available-theme .screenshot {
     4902    height: 180px;
     4903  }
     4904  .available-theme img {
     4905    width: 100%;
     4906  }
     4907  #current-theme.has-screenshot {
     4908    padding-left: 270px;
     4909  }
     4910  #current-theme img {
     4911    margin-left: -270px;
     4912  }
    53904913}
    5391 
    53924914#post-body ul.add-menu-item-tabs li.tabs a,
    53934915#TB_window #TB_title a.tb-theme-preview-link,
    53944916#TB_window #TB_title a.tb-theme-preview-link:visited {
    5395         font-weight: bold;
    5396         text-decoration: none;
     4917  font-weight: bold;
     4918  text-decoration: none;
    53974919}
    5398 
    53994920#TB_window #TB_title {
    5400         background-color: #222;
    5401         color: #cfcfcf;
     4921  background-color: #222;
     4922  color: #cfcfcf;
    54024923}
    5403 
    54044924#broken-themes {
    5405         text-align: left;
    5406         width: 50%;
    5407         border-spacing: 3px;
    5408         padding: 3px;
     4925  text-align: left;
     4926  width: 50%;
     4927  border-spacing: 3px;
     4928  padding: 3px;
    54094929}
    5410 
    54114930.theme-install-php h4 {
    5412         margin: 2.5em 0 8px;
     4931  margin: 2.5em 0 8px;
    54134932}
    5414 
    5415 
    54164933/*------------------------------------------------------------------------------
    54174934  16.1 - Custom Header Screen
    54184935------------------------------------------------------------------------------*/
    5419 
    54204936.appearance_page_custom-header #headimg {
    5421         border: 1px solid #DFDFDF;
    5422         overflow: hidden;
    5423         width: 100%;
     4937  border: 1px solid #dfdfdf;
     4938  overflow: hidden;
     4939  width: 100%;
    54244940}
    5425 
    54264941.appearance_page_custom-header #upload-form p label {
    5427         font-size: 12px;
     4942  font-size: 12px;
    54284943}
    5429 
    54304944.appearance_page_custom-header .available-headers .default-header {
    5431         float: left;
    5432         margin: 0 20px 20px 0;
     4945  float: left;
     4946  margin: 0 20px 20px 0;
    54334947}
    5434 
    54354948.appearance_page_custom-header .random-header {
    5436         clear: both;
    5437         margin: 0 20px 20px 0;
    5438         vertical-align: middle;
     4949  clear: both;
     4950  margin: 0 20px 20px 0;
     4951  vertical-align: middle;
    54394952}
    5440 
    54414953.appearance_page_custom-header .available-headers label input,
    54424954.appearance_page_custom-header .random-header label input {
    5443         margin-right: 10px;
     4955  margin-right: 10px;
    54444956}
    5445 
    54464957.appearance_page_custom-header .available-headers label img {
    5447         vertical-align: middle;
     4958  vertical-align: middle;
    54484959}
    5449 
    5450 
    54514960/*------------------------------------------------------------------------------
    54524961  16.2 - Custom Background Screen
    54534962------------------------------------------------------------------------------*/
    5454 
    54554963div#custom-background-image {
    5456         min-height: 100px;
    5457         border: 1px solid #dfdfdf;
     4964  min-height: 100px;
     4965  border: 1px solid #dfdfdf;
    54584966}
    5459 
    54604967div#custom-background-image img {
    5461         max-width: 400px;
    5462         max-height: 300px;
     4968  max-width: 400px;
     4969  max-height: 300px;
    54634970}
    5464 
    5465 
    54664971/*------------------------------------------------------------------------------
    54674972  16.3 - Tabbed Admin Screen Interface (Experimental)
    54684973------------------------------------------------------------------------------*/
    5469 
    54704974.nav-tab {
    5471         border-style: solid;
    5472         border-width: 1px 1px 0;
    5473         color: #aaa;
    5474         text-shadow: #fff 0 1px 0;
    5475         font-size: 12px;
    5476         line-height: 16px;
    5477         display: inline-block;
    5478         padding: 4px 14px 6px;
    5479         text-decoration: none;
    5480         margin: 0 6px -1px 0;
    5481         -webkit-border-top-left-radius: 3px;
    5482         -webkit-border-top-right-radius: 3px;
    5483         border-top-left-radius: 3px;
    5484         border-top-right-radius: 3px;
     4975  border-style: solid;
     4976  border-width: 1px 1px 0;
     4977  color: #aaa;
     4978  text-shadow: #fff 0 1px 0;
     4979  font-size: 12px;
     4980  line-height: 16px;
     4981  display: inline-block;
     4982  padding: 4px 14px 6px;
     4983  text-decoration: none;
     4984  margin: 0 6px -1px 0;
     4985  border-top-left-radius: 3px;
     4986  border-top-right-radius: 3px;
     4987  -moz-border-top-left-radius: 3px;
     4988  -moz-border-top-right-radius: 3px;
     4989  -webkit-border-top-left-radius: 3px;
     4990  -webkit-border-top-right-radius: 3px;
    54854991}
    5486 
    5487 .nav-tab-active {
    5488         border-width: 1px;
    5489         color: #464646;
     4992h2 .nav-tab {
     4993  padding: 4px 10px 6px;
     4994  font-weight: 200;
     4995  font-size: 20px;
     4996  line-height: 24px;
    54904997}
    5491 
    5492 h2.nav-tab-wrapper, h3.nav-tab-wrapper {
    5493         border-bottom-width: 1px;
    5494         border-bottom-style: solid;
    5495         padding-bottom: 0;
     4998.nav-tab-active {
     4999  border-width: 1px;
     5000  color: #464646;
    54965001}
    5497 
    5498 h2 .nav-tab {
    5499         padding: 4px 10px 6px;
    5500         font-weight: 200;
    5501         font-size: 20px;
    5502         line-height: 24px;
    5503 
     5002h2.nav-tab-wrapper,
     5003h3.nav-tab-wrapper {
     5004  border-bottom-width: 1px;
     5005  border-bottom-style: solid;
     5006  padding-bottom: 0;
    55045007}
    5505 
    5506 
    55075008/*------------------------------------------------------------------------------
    55085009  17.0 - Plugins
    55095010------------------------------------------------------------------------------*/
    5510 
    55115011#dashboard_right_now .versions .b,
    55125012#post-status-display,
    55135013#post-visibility-display,
    h2 .nav-tab { 
    55215021#ed_reply_toolbar #ed_reply_strong,
    55225022.item-controls .item-order a,
    55235023.feature-filter .feature-name {
    5524         font-weight: bold;
     5024  font-weight: bold;
    55255025}
    5526 
    55275026.plugins p {
    5528         margin: 0 4px;
    5529         padding: 0;
     5027  margin: 0 4px;
     5028  padding: 0;
    55305029}
    5531 
    5532 .plugins .desc p {
    5533         margin: 0 0 8px;
     5030.desc .plugins p {
     5031  margin: 0 0 8px;
    55345032}
    5535 
    55365033.plugins td.desc {
    5537         line-height: 1.5em;
     5034  line-height: 1.5em;
    55385035}
    5539 
    55405036.plugins .desc ul,
    55415037.plugins .desc ol {
    5542         margin: 0 0 0 2em;
     5038  margin: 0 0 0 2em;
    55435039}
    5544 
    55455040.plugins .desc ul {
    5546         list-style-type: disc;
     5041  list-style-type: disc;
    55475042}
    5548 
    55495043.plugins .row-actions-visible {
    5550         padding: 0;
     5044  padding: 0;
    55515045}
    5552 
    55535046.plugins tbody th.check-column {
    5554         padding: 7px 0;
     5047  padding: 7px 0;
    55555048}
    5556 
    55575049.plugins .inactive td,
    55585050.plugins .inactive th,
    55595051.plugins .active td,
    55605052.plugins .active th {
    5561         border-top-style: solid;
    5562         border-top-width: 1px;
    5563         padding: 5px 7px 0;
     5053  border-top-style: solid;
     5054  border-top-width: 1px;
     5055  padding: 5px 7px 0;
    55645056}
    5565 
    55665057.plugins .update th,
    55675058.plugins .update td {
    5568         border-bottom: 0;
     5059  border-bottom: 0;
    55695060}
    5570 .plugin-update-tr td {
    5571         border-top: 0;
    5572 }
    5573 
    55745061#wpbody-content .plugins .plugin-title,
    55755062#wpbody-content .plugins .theme-title {
    5576         padding-right: 12px;
    5577         white-space:nowrap;
     5063  padding-right: 12px;
     5064  white-space: nowrap;
    55785065}
    5579 
    55805066.plugins .second,
    55815067.plugins .row-actions-visible {
    5582         padding: 0 0 5px;
     5068  padding: 0 0 5px;
    55835069}
    5584 
    55855070.plugins .update .second,
    55865071.plugins .update .row-actions-visible {
    5587         padding-bottom: 0;
     5072  padding-bottom: 0;
     5073}
     5074.plugin-update-tr td {
     5075  border-top: 0;
    55885076}
    5589 
    55905077.plugins-php .widefat tfoot th,
    55915078.plugins-php .widefat tfoot td {
    5592         border-top-style: solid;
    5593         border-top-width: 1px;
     5079  border-top-style: solid;
     5080  border-top-width: 1px;
    55945081}
    5595 
    55965082.plugin-update-tr .update-message {
    5597         margin: 5px;
    5598         padding: 3px 5px;
     5083  margin: 5px;
     5084  padding: 3px 5px;
    55995085}
    5600 
    56015086.plugin-install-php h4 {
    5602         margin: 2.5em 0 8px;
     5087  margin: 2.5em 0 8px;
    56035088}
    5604 
    5605 
    56065089/*------------------------------------------------------------------------------
    56075090  18.0 - Users
    56085091------------------------------------------------------------------------------*/
    5609 
    56105092#profile-page .form-table textarea {
    5611         width: 500px;
    5612         margin-bottom: 6px;
     5093  width: 500px;
     5094  margin-bottom: 6px;
    56135095}
    5614 
    56155096#profile-page .form-table #rich_editing {
    5616         margin-right: 5px
     5097  margin-right: 5px;
    56175098}
    5618 
    56195099#your-profile legend {
    5620         font-size: 22px;
     5100  font-size: 22px;
    56215101}
    5622 
    56235102#your-profile #rich_editing {
    5624         border: none;
     5103  border: none;
    56255104}
    5626 
    56275105#display_name {
    5628         width: 15em;
     5106  width: 15em;
    56295107}
    5630 
    56315108#createuser .form-field input {
    5632         width: 25em;
     5109  width: 25em;
    56335110}
    5634 
    56355111/*------------------------------------------------------------------------------
    5636   19.0 - Tools
     5112  20.0 - Settings
    56375113------------------------------------------------------------------------------*/
    5638 
    5639 .pressthis {
    5640         margin: 20px 0;
     5114#utc-time,
     5115#local-time {
     5116  padding-left: 25px;
     5117  font-style: italic;
     5118  font-family: sans-serif;
    56415119}
    5642 
    5643 .pressthis a,
    5644 .pressthis a:hover,
    5645 .pressthis a:focus,
    5646 .pressthis a:active {
    5647         display: inline-block;
    5648         position: relative;
    5649         cursor: move;
    5650         color: #333;
    5651         background: #e6e6e6;
    5652         background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #e6e6e6), color-stop(77%, #d8d8d8));
    5653         background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
    5654         background-image:    -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
    5655         background-image:      -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
    5656         background-image: linear-gradient(to top, #e6e6e6 7%, #d8d8d8 77%);
    5657         -webkit-border-radius: 5px;
    5658         border-radius: 5px;
    5659         border: 1px solid #b4b4b4;
    5660         font-style: normal;
    5661         line-height: 16px;
    5662         font-size: 14px;
    5663         text-decoration: none;
    5664         text-shadow: 0 1px 0px #fff;
     5120.defaultavatarpicker .avatar {
     5121  margin: 2px 0;
     5122  vertical-align: middle;
    56655123}
    5666 
    5667 .pressthis a:active {
    5668         outline: none;
    5669 }
    5670 
    5671 .pressthis a:hover:after {
    5672         -webkit-transform: skew(20deg) rotate(9deg);
    5673         -moz-transform: skew(20deg) rotate(9deg);
    5674         transform: skew(20deg) rotate(9deg);
    5675         -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
    5676         box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
    5677 }
    5678 
    5679 .pressthis a span {
    5680         background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px;
    5681         background-size: 24px 20px;
    5682         padding: 8px 11px 8px 27px;
    5683         margin: 0 5px;
    5684         display: inline-block;
    5685 }
    5686 
    5687 .pressthis a:after {
    5688         content: '';
    5689         width: 70%;
    5690         height: 55%;
    5691         z-index: -1;
    5692         position: absolute;
    5693         right: 10px;
    5694         bottom: 9px;
    5695         background: transparent;
    5696 
    5697         -webkit-transform: skew(20deg) rotate(6deg);
    5698         -moz-transform: skew(20deg) rotate(6deg);
    5699         transform: skew(20deg) rotate(6deg);
    5700         -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
    5701         box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
    5702 }
    5703 
    5704 /*------------------------------------------------------------------------------
    5705   20.0 - Settings
    5706 ------------------------------------------------------------------------------*/
    5707 
    5708 #utc-time, #local-time {
    5709         padding-left: 25px;
    5710         font-style: italic;
    5711         font-family: sans-serif;
    5712 }
    5713 
    5714 .defaultavatarpicker .avatar {
    5715         margin: 2px 0;
    5716         vertical-align: middle;
    5717 }
    5718 
    57195124.options-general-php .spinner {
    5720         float: none;
    5721         margin: -3px 3px;
     5125  float: none;
     5126  margin: -3px 3px;
    57225127}
    5723 
    57245128/*------------------------------------------------------------------------------
    57255129  21.0 - Admin Footer
    57265130------------------------------------------------------------------------------*/
    5727 
    57285131#wpfooter {
    5729         position: absolute;
    5730         bottom: 0;
    5731         left: 0;
    5732         right: 0;
    5733         padding: 10px 0;
    5734         margin-right: 20px;
    5735         border-top-width: 1px;
    5736         border-top-style: solid;
     5132  position: absolute;
     5133  bottom: 0;
     5134  left: 0;
     5135  right: 0;
     5136  padding: 10px 0;
     5137  margin-right: 20px;
     5138  border-top-width: 1px;
     5139  border-top-style: solid;
    57375140}
    5738 
    57395141#wpfooter p {
    5740         margin: 0;
    5741         line-height: 20px;
     5142  margin: 0;
     5143  line-height: 20px;
    57425144}
    5743 
    57445145#wpfooter a {
    5745         text-decoration: none;
     5146  text-decoration: none;
    57465147}
    5747 
    57485148#wpfooter a:hover {
    5749         text-decoration: underline;
     5149  text-decoration: underline;
    57505150}
    5751 
    57525151/*------------------------------------------------------------------------------
    57535152  22.0 - About Pages
    57545153------------------------------------------------------------------------------*/
    5755 
     5154/* WordPress Version Badge */
     5155.wp-badge {
     5156  padding-top: 142px;
     5157  height: 50px;
     5158  width: 173px;
     5159  font-size: 14px;
     5160  font-weight: bold;
     5161  line-height: normal;
     5162  text-align: center;
     5163  margin: 0 -5px;
     5164  background: url('../images/wp-badge.png?ver=20111120') no-repeat;
     5165}
    57565166.about-wrap {
    5757         position: relative;
    5758         margin: 25px 40px 0 20px;
    5759         max-width: 1050px; /* readability */
     5167  position: relative;
     5168  margin: 25px 40px 0 20px;
     5169  max-width: 1050px;
     5170  /* readability */
    57605171
    5761         font-size: 15px;
    5762 }
     5172  font-size: 15px;
     5173  /* Typography */
    57635174
    5764 .about-wrap div.updated,
    5765 .about-wrap div.error {
    5766         display: none !important;
    5767 }
     5175  /* Point Releases */
    57685176
    5769 /* Typography */
     5177  /* Tabs */
    57705178
    5771 .about-wrap p {
    5772         line-height: 1.6em;
    5773 }
     5179  /* Changelog / Update screen */
    57745180
    5775 .about-wrap h1 {
    5776         margin: 0.2em 200px 0 0;
    5777         line-height: 1.2em;
    5778         font-size: 2.8em;
    5779         font-weight: 200;
    5780 }
     5181  /* Return to Dashboard Home link */
    57815182
    5782 .about-text,
    5783 .about-description,
    5784 .about-wrap li.wp-person a.web {
    5785         font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
    5786         font-weight: normal;
    5787         line-height: 1.6em;
    5788         font-size: 20px;
    5789 }
     5183  /* Credits */
    57905184
    5791 .about-description {
    5792         margin-top: 1.4em;
    5793 }
     5185  /* Freedoms */
    57945186
    5795 .about-text {
    5796         margin: 1em 200px 1.4em 0;
    5797         min-height: 60px;
    5798         font-size: 24px;
    57995187}
    5800 
    5801 .about-wrap h3 {
    5802         font-size: 24px;
    5803         margin-bottom: 1em;
    5804         padding-top: 20px;
     5188.about-wrap div.updated,
     5189.about-wrap div.error {
     5190  display: none !important;
    58055191}
    5806 
    5807 .about-wrap .feature-section {
    5808         padding-bottom: 20px;
     5192.about-wrap p {
     5193  line-height: 1.6em;
    58095194}
    5810 
    5811 .about-wrap .feature-section h4 {
    5812         margin-bottom: 0.6em;
     5195.about-wrap h1 {
     5196  margin: 0.2em 200px 0 0;
     5197  line-height: 1.2em;
     5198  font-size: 2.8em;
     5199  font-weight: 200;
    58135200}
    5814 
    5815 .about-wrap .feature-section p {
    5816         margin-top: 0.6em;
     5201.about-wrap h3 {
     5202  font-size: 24px;
     5203  margin-bottom: 1em;
     5204  padding-top: 20px;
    58175205}
    5818 
    58195206.about-wrap code {
    5820         font-size: 14px;
     5207  font-size: 14px;
     5208}
     5209.about-wrap li.wp-person a.web {
     5210  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
     5211  font-size: 20px;
     5212  font-weight: normal;
     5213  line-height: 1.6em;
    58215214}
    5822 
    5823 /* Point Releases */
    5824 
    58255215.about-wrap .point-releases {
    5826         margin-top: 5px;
     5216  margin-top: 5px;
    58275217}
    5828 
    58295218.about-wrap .changelog.point-releases h3 {
    5830         padding-top: 35px;
     5219  padding-top: 35px;
    58315220}
    5832 
    58335221.about-wrap .changelog.point-releases h3:first-child {
    5834         padding-top: 7px;
    5835 }
    5836 
    5837 /* WordPress Version Badge */
    5838 
    5839 .wp-badge {
    5840         padding-top: 142px;
    5841         height: 50px;
    5842         width: 173px;
    5843         font-weight: bold;
    5844         font-size: 14px;
    5845         text-align: center;
    5846         margin: 0 -5px;
    5847         background: url('../images/wp-badge.png?ver=20111120') no-repeat;
     5222  padding-top: 7px;
    58485223}
    5849 
    58505224.about-wrap .wp-badge {
    5851         position: absolute;
    5852         top: 0;
    5853         right: 0;
     5225  position: absolute;
     5226  top: 0;
     5227  right: 0;
    58545228}
    5855 
    5856 /* Tabs */
    5857 
    58585229.about-wrap h2.nav-tab-wrapper {
    5859         padding-left: 6px;
     5230  padding-left: 6px;
    58605231}
    5861 
    58625232.about-wrap h2 .nav-tab {
    5863         padding: 4px 10px 6px;
    5864         margin: 0 3px -1px 0;
    5865         font-size: 18px;
    5866         vertical-align: top;
     5233  padding: 4px 10px 6px;
     5234  margin: 0 3px -1px 0;
     5235  font-size: 18px;
     5236  vertical-align: top;
    58675237}
    5868 
    58695238.about-wrap h2 .nav-tab-active {
    5870         font-weight: bold;
    5871         padding-top: 3px;
     5239  font-weight: bold;
     5240  padding-top: 3px;
     5241}
     5242.about-wrap .feature-section {
     5243  padding-bottom: 20px;
     5244}
     5245.about-wrap .feature-section h4 {
     5246  margin-bottom: 0.6em;
     5247}
     5248.about-wrap .feature-section p {
     5249  margin-top: 0.6em;
    58725250}
    5873 
    5874 /* Changelog / Update screen */
    5875 
    58765251.about-wrap .feature-section img,
    58775252.about-wrap .feature-section .video {
    5878         border: none;
    5879         margin: 0 1.94% 10px 0;
    5880         -webkit-border-radius: 3px;
    5881         border-radius: 3px;
     5253  border: none;
     5254  margin: 0 1.94% 10px 0;
     5255  border-radius: 3px;
     5256  -moz-border-radius: 3px;
     5257  -webkit-border-radius: 3px;
    58825258}
    5883 
    58845259.about-wrap .feature-section .video video {
    5885         max-width: 100%;
     5260  max-width: 100%;
    58865261}
    5887 
    58885262.about-wrap .feature-section.three-col img {
    5889         margin: 0.5em 0 0.5em 5px;
    5890         max-width: 100%;
    5891         float: none;
    5892 }
    5893 
    5894 .ie8 .about-wrap .feature-section.three-col img {
    5895         margin-left: 0;
     5263  margin: 0.5em 0 0.5em 5px;
     5264  max-width: 100%;
     5265  float: none;
    58965266}
    5897 
    58985267.about-wrap .feature-section.images-stagger-right img,
    58995268.about-wrap .feature-section.images-stagger-right .video {
    5900         float: right;
    5901         margin: 0 5px 12px 2em;
     5269  float: right;
     5270  margin: 0 5px 12px 2em;
    59025271}
    5903 
    59045272.about-wrap .feature-section.images-stagger-left img {
    5905         float: left;
    5906         margin: 0 2em 12px 5px;
     5273  float: left;
     5274  margin: 0 2em 12px 5px;
    59075275}
    5908 
    59095276.about-wrap .feature-section .image-100 {
    5910         margin: 0 0 2em 0;
    5911         width: 100%;
     5277  margin: 0 0 2em 0;
     5278  width: 100%;
    59125279}
    5913 
    59145280.about-wrap .feature-section .image-66 {
    5915         width: 65%;
     5281  width: 65%;
    59165282}
    5917 
    59185283.about-wrap .feature-section .image-66.video {
    5919         max-width: 600px;
     5284  max-width: 600px;
    59205285}
    5921 
    59225286.about-wrap .feature-section .image-50 {
    5923         max-width: 50%;
     5287  max-width: 50%;
    59245288}
    5925 
    59265289.about-wrap .feature-section img.image-30 {
    5927         max-width: 31.2381%;
     5290  max-width: 31.2381%;
    59285291}
    5929 
    5930 .ie8 .about-wrap .feature-section img {
    5931         border-width: 1px;
    5932         border-style: solid;
    5933 }
    5934 
    5935 .about-wrap .images-stagger-right img.image-30:nth-child(2) {
    5936         margin-left: 1em;
    5937 }
    5938 
    59395292.about-wrap .feature-section.col {
    5940         margin-bottom: 0;
     5293  margin-bottom: 0;
    59415294}
    5942 
    59435295.about-wrap .feature-section.col h4 {
    5944         margin: 0 0 0.6em 0;
     5296  margin: 0 0 0.6em 0;
    59455297}
    5946 
    59475298.about-wrap .feature-section.col .last-feature {
    5948         margin-right: 0;
     5299  margin-right: 0;
     5300}
     5301.about-wrap .feature-section.two-col div,
     5302.about-wrap .feature-section.three-col div {
     5303  margin-right: 4.999999999%;
     5304  float: left;
    59495305}
    5950 
    59515306.about-wrap .feature-section.two-col div {
    5952         width: 47%;
    5953         margin-right: 4.999999999%;
    5954         float: left;
     5307  width: 47%;
    59555308}
    5956 
    59575309.about-wrap .feature-section.three-col div {
    5958         width: 30%;
    5959         margin-right: 4.999999999%;
    5960         float: left;
     5310  width: 30%;
     5311}
     5312.ie8 .about-wrap .feature-section.three-col img {
     5313  margin-left: 0;
     5314}
     5315.ie8 .about-wrap .feature-section img {
     5316  border-width: 1px;
     5317  border-style: solid;
     5318}
     5319.about-wrap .images-stagger-right img.image-30:nth-child(2) {
     5320  margin-left: 1em;
    59615321}
    5962 
    59635322.about-wrap .three-col-images {
    5964         text-align: center;
     5323  text-align: center;
    59655324}
    5966 
    59675325.about-wrap .three-col-images img {
    5968         margin: 0 0 10px;
     5326  margin: 0 0 10px;
    59695327}
    5970 
    59715328.about-wrap .three-col-images .last-feature {
    5972         float: right;
     5329  float: right;
    59735330}
    5974 
    59755331.about-wrap .three-col-images .first-feature {
    5976         float: left;
     5332  float: left;
    59775333}
    5978 
    59795334.about-wrap .changelog .feature-section {
    5980         overflow: hidden;
     5335  overflow: hidden;
    59815336}
    5982 
    59835337.about-wrap .changelog li {
    5984         list-style-type: disc;
    5985         margin-left: 3em;
    5986 }
    5987 
    5988 @media only screen and (max-width: 900px) {
    5989         .about-wrap .feature-section.images-stagger-left img,
    5990         .about-wrap .feature-section.images-stagger-right img,
    5991         .about-wrap .feature-section.images-stagger-right .video {
    5992                 clear: both;
    5993         }
    5994 
    5995         .about-wrap .feature-section .video.image-66 {
    5996                 float: none;
    5997                 width: 98%;
    5998                 max-width: 98%;
    5999         }
    6000 
    6001         .about-wrap .feature-section.images-stagger-right .video.image-66 {
    6002                 margin-left: 3px;
    6003         }
    6004 }
    6005 
    6006 @media only screen and (max-width: 768px) {
    6007         .about-wrap .feature-section .image-66 {
    6008                 float: none;
    6009                 width: 98%;
    6010                 max-width: 98%;
    6011         }
    6012 
    6013         .about-wrap .feature-section.images-stagger-right .image-66 {
    6014                 margin-left: 3px;
    6015         }
    6016 
    6017         .about-wrap .feature-section.images-stagger-left .image-66 {
    6018                 margin-right: 3px;
    6019         }
     5338  list-style-type: disc;
     5339  margin-left: 3em;
    60205340}
    6021 
    6022 /* Return to Dashboard Home link */
    6023 
    60245341.about-wrap .return-to-dashboard {
    6025         margin: 30px 0 0 -5px;
    6026         font-size: 14px;
    6027         font-weight: bold;
     5342  margin: 30px 0 0 -5px;
     5343  font-size: 14px;
     5344  font-weight: bold;
     5345  line-height: normal;
    60285346}
    6029 
    60305347.about-wrap .return-to-dashboard a {
    6031         text-decoration: none;
    6032         padding: 0 5px;
     5348  text-decoration: none;
     5349  padding: 0 5px;
    60335350}
    6034 
    6035 /* Credits */
    6036 
    60375351.about-wrap h4.wp-people-group {
    6038         margin-top: 2.6em;
    6039         font-size: 16px;
     5352  margin-top: 2.6em;
     5353  font-size: 16px;
    60405354}
    6041 
    60425355.about-wrap ul.wp-people-group {
    6043         overflow: hidden;
    6044         padding: 0 5px;
    6045         margin: 0 -15px 0 -5px;
    6046 }
    6047 
    6048 .about-wrap ul.compact {
    6049         margin-bottom: 0
     5356  overflow: hidden;
     5357  padding: 0 5px;
     5358  margin: 0 -15px 0 -5px;
    60505359}
    6051 
    60525360.about-wrap li.wp-person {
    6053         float: left;
    6054         margin-right: 10px;
     5361  float: left;
     5362  margin-right: 10px;
    60555363}
    6056 
    60575364.about-wrap li.wp-person img.gravatar {
    6058         float: left;
    6059         margin: 0 10px 10px 0;
    6060         padding: 2px;
    6061         width: 60px;
    6062         height: 60px;
     5365  float: left;
     5366  margin: 0 10px 10px 0;
     5367  padding: 2px;
     5368  width: 60px;
     5369  height: 60px;
     5370}
     5371.about-wrap ul.compact {
     5372  margin-bottom: 0;
    60635373}
    6064 
    60655374.about-wrap ul.compact li.wp-person img.gravatar {
    6066         width: 30px;
    6067         height: 30px;
     5375  width: 30px;
     5376  height: 30px;
    60685377}
    6069 
    60705378.about-wrap li.wp-person {
    6071         height: 70px;
    6072         width: 280px;
    6073         padding-bottom: 15px;
    6074 }
    6075 
    6076 .about-wrap ul.compact li.wp-person {
    6077         height: auto;
    6078         width: 180px;
    6079         padding-bottom: 0;
    6080         margin-bottom: 0;
     5379  height: 70px;
     5380  width: 280px;
     5381  padding-bottom: 15px;
    60815382}
    6082 
    6083 .about-wrap #wp-people-group-validators + p.wp-credits-list {
    6084         margin-top: 0;
     5383ul.compact .about-wrap li.wp-person {
     5384  height: auto;
     5385  width: 180px;
     5386  padding-bottom: 0;
     5387  margin-bottom: 0;
    60855388}
    6086 
    60875389.about-wrap li.wp-person a.web {
    6088         display: block;
    6089         margin: 6px 0 2px;
    6090         font-size: 16px;
    6091         text-decoration: none;
     5390  display: block;
     5391  margin: 6px 0 2px;
     5392  font-size: 16px;
     5393  text-decoration: none;
     5394}
     5395.about-wrap #wp-people-group-validators + p.wp-credits-list {
     5396  margin-top: 0;
    60925397}
    6093 
    60945398.about-wrap p.wp-credits-list a {
    6095         white-space: nowrap;
     5399  white-space: nowrap;
    60965400}
    6097 
    6098 /* Freedoms */
    6099 
    61005401.freedoms-php .about-wrap ol {
    6101         margin: 40px 60px;
     5402  margin: 40px 60px;
    61025403}
    6103 
    61045404.freedoms-php .about-wrap ol li {
    6105         list-style-type: decimal;
    6106         font-weight: bold;
     5405  list-style-type: decimal;
     5406  font-weight: bold;
    61075407}
    6108 
    61095408.freedoms-php .about-wrap ol p {
    6110         font-weight: normal;
    6111         margin: 0.6em 0;
     5409  font-weight: normal;
     5410  margin: 0.6em 0;
     5411}
     5412.about-description {
     5413  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
     5414  font-size: 20px;
     5415  font-weight: normal;
     5416  line-height: 1.6em;
     5417  margin-top: 1.4em;
     5418}
     5419.about-text {
     5420  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
     5421  font-size: 24px;
     5422  font-weight: normal;
     5423  line-height: 1.6em;
     5424  margin: 1em 200px 1.4em 0;
     5425  min-height: 60px;
     5426}
     5427@media only screen and (max-width: 900px) {
     5428  .about-wrap .feature-section .images-stagger-left img,
     5429  .about-wrap .feature-section .images-stagger-right img,
     5430  .about-wrap .feature-section .images-stagger-right .video {
     5431    clear: both;
     5432  }
     5433  .about-wrap .feature-section .video.image-66 {
     5434    float: none;
     5435    width: 98%;
     5436    max-width: 98%;
     5437  }
     5438  .about-wrap .feature-section.images-stagger-right .video.image-66 {
     5439    margin-left: 3px;
     5440  }
     5441}
     5442@media only screen and (max-width: 768px) {
     5443  .about-wrap .feature-section .image-66 {
     5444    float: none;
     5445    width: 98%;
     5446    max-width: 98%;
     5447  }
     5448  .about-wrap .feature-section.images-stagger-right .image-66 {
     5449    margin-left: 3px;
     5450  }
     5451  .about-wrap .feature-section.images-stagger-left .image-66 {
     5452    margin-right: 3px;
     5453  }
    61125454}
    6113 
    61145455/*------------------------------------------------------------------------------
    61155456  23.0 - Full Overlay w/ Sidebar
    61165457------------------------------------------------------------------------------*/
    6117 
    61185458body.full-overlay-active {
    6119         overflow: hidden;
     5459  overflow: hidden;
    61205460}
    6121 
    61225461.wp-full-overlay {
    6123         background: #fff;
    6124         z-index: 500000;
    6125         position: fixed;
    6126         overflow: visible;
    6127         top: 0;
    6128         bottom: 0;
    6129         left: 0;
    6130         right: 0;
    6131         height: 100%;
    6132         min-width: 0;
    6133 }
    6134 
    6135 .wp-full-overlay-sidebar {
    6136         -webkit-box-sizing: border-box;
    6137         -moz-box-sizing:    border-box;
    6138         box-sizing:         border-box;
     5462  background: #fff;
     5463  z-index: 500000;
     5464  position: fixed;
     5465  overflow: visible;
     5466  top: 0;
     5467  bottom: 0;
     5468  left: 0;
     5469  right: 0;
     5470  height: 100%;
     5471  min-width: 0;
     5472  /* Close Link */
    61395473
    6140         position: fixed;
    6141         width: 300px;
    6142         height: 100%;
    6143         top: 0;
    6144         bottom: 0;
    6145         left: 0;
    6146         padding: 0;
    6147         margin: 0;
    6148         z-index: 10;
    6149         overflow: auto;
    6150         background: #f5f5f5;
    6151         border-right: 1px solid rgba( 0, 0, 0, 0.2 );
    6152 }
    6153 
    6154 .wp-full-overlay.collapsed .wp-full-overlay-sidebar {
    6155         overflow: visible;
    6156 }
     5474  /* Collapse Button */
    61575475
    6158 .wp-full-overlay.collapsed,
    6159 .wp-full-overlay.expanded .wp-full-overlay-sidebar {
    6160         margin-left: 0 !important;
    61615476}
    6162 
    61635477.wp-full-overlay.expanded {
    6164         margin-left: 300px;
     5478  margin-left: 300px;
    61655479}
    6166 
    6167 .wp-full-overlay.collapsed .wp-full-overlay-sidebar {
    6168         margin-left: -300px;
     5480.wp-full-overlay .close-full-overlay {
     5481  text-decoration: none;
    61695482}
    6170 
    6171 .wp-full-overlay-sidebar:after {
    6172         content: '';
    6173         display: block;
    6174         position: absolute;
    6175         top: 0;
    6176         bottom: 0;
    6177         right: 0;
    6178         width: 3px;
    6179         box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset;
    6180         z-index: 1000;
     5483.wp-full-overlay a.collapse-sidebar {
     5484  position: absolute;
     5485  bottom: 12px;
     5486  left: 0;
     5487  z-index: 50;
     5488  display: block;
     5489  width: 19px;
     5490  height: 19px;
     5491  margin-left: 15px;
     5492  padding: 0;
     5493  border-radius: 50%;
     5494  -moz-border-radius: 50%;
     5495  -webkit-border-radius: 50%;
     5496  text-decoration: none;
    61815497}
    6182 
    6183 .wp-full-overlay-main {
    6184         position: absolute;
    6185         left: 0;
    6186         right: 0;
    6187         top: 0;
    6188         bottom: 0;
    6189         height: 100%;
     5498.wp-full-overlay .collapse-sidebar-arrow {
     5499  position: absolute;
     5500  margin-top: 2px;
     5501  margin-left: 2px;
     5502  display: block;
     5503  width: 15px;
     5504  height: 15px;
     5505  background: transparent url('../images/arrows.png') no-repeat -1px -73px;
    61905506}
    6191 
    6192 .wp-full-overlay-sidebar .wp-full-overlay-header {
    6193         position: absolute;
    6194         left: 0;
    6195         right: 0;
    6196         height: 45px;
    6197         padding: 0 20px;
    6198         line-height: 45px;
    6199         z-index: 10;
    6200         margin: 0;
     5507.wp-full-overlay .collapse-sidebar-label {
     5508  position: absolute;
     5509  left: 100%;
     5510  color: #808080;
     5511  line-height: 20px;
     5512  margin-left: 10px;
    62015513}
    6202 
    6203 .wp-full-overlay-sidebar .wp-full-overlay-header {
    6204         border-top: 0;
    6205         border-bottom: 1px solid #fff;
    6206         box-shadow: inset 0 -1px 0 0px #dfdfdf;
     5514.wp-full-overlay.collapsed .collapse-sidebar {
     5515  position: absolute;
     5516  left: 100%;
    62075517}
    6208 
    6209 .wp-full-overlay-sidebar .wp-full-overlay-footer {
    6210         bottom: 0;
    6211         border-bottom: 0;
    6212         border-top: 1px solid #dfdfdf;
    6213         box-shadow: inset 0 1px 0 0px #fff;
     5518.wp-full-overlay.collapsed .collapse-sidebar-arrow {
     5519  background-position: -1px -109px;
    62145520}
    6215 
    6216 .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content {
    6217         position: absolute;
    6218         top: 45px;
    6219         bottom: 45px;
    6220         left: 0;
    6221         right: 0;
    6222         overflow: auto;
     5521.wp-full-overlay.collapsed .collapse-sidebar-label {
     5522  display: none;
    62235523}
    6224 
    6225 .wp-full-overlay-sidebar-content .accordion-section:first-child {
    6226         border-top: 1px solid #fff;
     5524.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label {
     5525  color: #666;
    62275526}
    6228 
    6229 /* Close Link */
    6230 .wp-full-overlay .close-full-overlay {
    6231         text-decoration: none;
     5527.wp-full-overlay-sidebar {
     5528  -moz-box-sizing: border-box;
     5529  -webkit-box-sizing: border-box;
     5530  -ms-box-sizing: border-box;
     5531  box-sizing: border-box;
     5532  position: fixed;
     5533  width: 300px;
     5534  height: 100%;
     5535  top: 0;
     5536  bottom: 0;
     5537  left: 0;
     5538  padding: 0;
     5539  margin: 0;
     5540  z-index: 10;
     5541  overflow: auto;
     5542  background: #f5f5f5;
     5543  border-right: 1px solid rgba(0, 0, 0, 0.2);
    62325544}
    6233 
    6234 /* Collapse Button */
    6235 .wp-full-overlay a.collapse-sidebar {
    6236         position: absolute;
    6237         bottom: 12px;
    6238         left: 0;
    6239         z-index: 50;
    6240         display: block;
    6241         width: 19px;
    6242         height: 19px;
    6243         margin-left: 15px;
    6244         padding: 0;
    6245         border-radius: 50%;
    6246         text-decoration: none;
     5545.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
     5546  overflow: visible;
     5547  margin-left: -300px;
    62475548}
    6248 
    6249 .wp-full-overlay.collapsed .collapse-sidebar {
    6250         position: absolute;
    6251         left: 100%;
     5549.wp-full-overlay-sidebar:after {
     5550  content: '';
     5551  display: block;
     5552  position: absolute;
     5553  top: 0;
     5554  bottom: 0;
     5555  right: 0;
     5556  width: 3px;
     5557  box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset;
     5558  z-index: 1000;
    62525559}
    6253 
    6254 .wp-full-overlay .collapse-sidebar-arrow {
    6255         position: absolute;
    6256         margin-top: 2px;
    6257         margin-left: 2px;
    6258         display: block;
    6259         width: 15px;
    6260         height: 15px;
    6261         background: transparent url('../images/arrows.png') no-repeat -1px -73px;
     5560.wp-full-overlay-sidebar .wp-full-overlay-header {
     5561  position: absolute;
     5562  left: 0;
     5563  right: 0;
     5564  height: 45px;
     5565  padding: 0 20px;
     5566  line-height: 45px;
     5567  z-index: 10;
     5568  margin: 0;
     5569  border-top: 0;
     5570  border-bottom: 1px solid #fff;
     5571  box-shadow: inset 0 -1px 0 0px #dfdfdf;
    62625572}
    6263 
    6264 .wp-full-overlay.collapsed .collapse-sidebar-arrow {
    6265         background-position: -1px -109px;
     5573.wp-full-overlay-sidebar .wp-full-overlay-footer {
     5574  bottom: 0;
     5575  border-bottom: 0;
     5576  border-top: 1px solid #dfdfdf;
     5577  box-shadow: inset 0 1px 0 0px #fff;
    62665578}
    6267 
    6268 .wp-full-overlay .collapse-sidebar-label {
    6269         position: absolute;
    6270         left: 100%;
    6271         color: #808080;
    6272         line-height: 20px;
    6273         margin-left: 10px;
     5579.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content {
     5580  position: absolute;
     5581  top: 45px;
     5582  bottom: 45px;
     5583  left: 0;
     5584  right: 0;
     5585  overflow: auto;
    62745586}
    6275 
    6276 .wp-full-overlay.collapsed .collapse-sidebar-label {
    6277         display: none;
     5587.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content .accordion-section:first-child {
     5588  border-top: 1px solid #fff;
    62785589}
    6279 
    6280 .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label {
    6281         color: #666;
     5590.wp-full-overlay.collapsed,
     5591.wp-full-overlay.expanded .wp-full-overlay-sidebar {
     5592  margin-left: 0 !important;
     5593}
     5594.wp-full-overlay-main {
     5595  position: absolute;
     5596  left: 0;
     5597  right: 0;
     5598  top: 0;
     5599  bottom: 0;
     5600  height: 100%;
    62825601}
    6283 
    62845602/* Animations */
    62855603.wp-full-overlay,
    62865604.wp-full-overlay-sidebar,
    62875605.wp-full-overlay .collapse-sidebar,
    62885606.wp-full-overlay-main {
    6289         -webkit-transition-property: left, right, top, bottom, width, margin;
    6290         -moz-transition-property:    left, right, top, bottom, width, margin;
    6291         -ms-transition-property:     left, right, top, bottom, width, margin;
    6292         -o-transition-property:      left, right, top, bottom, width, margin;
    6293         transition-property:         left, right, top, bottom, width, margin;
    6294 
    6295         -webkit-transition-duration: 0.2s;
    6296         -moz-transition-duration:    0.2s;
    6297         -ms-transition-duration:     0.2s;
    6298         -o-transition-duration:      0.2s;
    6299         transition-duration:         0.2s;
     5607  -webkit-transition-property: left, right, top, bottom, width, margin;
     5608  -moz-transition-property: left, right, top, bottom, width, margin;
     5609  -ms-transition-property: left, right, top, bottom, width, margin;
     5610  -o-transition-property: left, right, top, bottom, width, margin;
     5611  transition-property: left, right, top, bottom, width, margin;
     5612  -webkit-transition-duration: 0.2s;
     5613  -moz-transition-duration: 0.2s;
     5614  -ms-transition-duration: 0.2s;
     5615  -o-transition-duration: 0.2s;
     5616  transition-duration: 0.2s;
    63005617}
    6301 
    6302 
    63035618/*------------------------------------------------------------------------------
    63045619  24.0 - Customize Loader
    63055620------------------------------------------------------------------------------*/
    6306 
    6307 .no-customize-support .hide-if-no-customize,
    63085621.customize-support .hide-if-customize,
    6309 .no-customize-support.wp-core-ui .hide-if-no-customize,
    6310 .no-customize-support .wp-core-ui .hide-if-no-customize,
    63115622.customize-support.wp-core-ui .hide-if-customize,
    63125623.customize-support .wp-core-ui .hide-if-customize {
    6313         display: none;
     5624  display: none;
     5625}
     5626.no-customize-support .hide-if-no-customize,
     5627.no-customize-support.wp-core-ui .hide-if-no-customize,
     5628.no-customize-support .wp-core-ui .hide-if-no-customize {
     5629  display: none;
    63145630}
    6315 
    63165631#customize-container {
    6317         display: none;
    6318         background: #fff;
    6319         z-index: 500000;
    6320         position: fixed;
    6321         overflow: visible;
    6322         top: 0;
    6323         bottom: 0;
    6324         left: 0;
    6325         right: 0;
    6326         height: 100%;
     5632  display: none;
     5633  background: #fff;
     5634  z-index: 500000;
     5635  position: fixed;
     5636  overflow: visible;
     5637  top: 0;
     5638  bottom: 0;
     5639  left: 0;
     5640  right: 0;
     5641  height: 100%;
    63275642}
    6328 
    63295643.customize-active #customize-container {
    6330         display: block;
     5644  display: block;
     5645}
     5646.customize-loading #customize-container {
     5647  background: #ffffff url("../images/wpspin_light.gif") no-repeat fixed center center;
     5648  background-size: 16px 16px;
    63315649}
    6332 
    63335650.customize-loading #customize-container iframe {
    6334         opacity: 0;
     5651  opacity: 0;
    63355652}
    6336 
    6337 .customize-loading #customize-container {
    6338         background: #fff url("../images/wpspin_light.gif") no-repeat fixed center center;
    6339         background-size: 16px 16px;
     5653#customize-container .collapse-sidebar {
     5654  bottom: 16px;
    63405655}
    6341 
    63425656#customize-container iframe,
    63435657#theme-installer iframe {
    6344         height: 100%;
    6345         width: 100%;
    6346         z-index: 20;
    6347 
    6348         -webkit-transition: opacity 0.3s;
    6349         -moz-transition:    opacity 0.3s;
    6350         -ms-transition:     opacity 0.3s;
    6351         -o-transition:      opacity 0.3s;
    6352         transition:         opacity 0.3s;
     5658  height: 100%;
     5659  width: 100%;
     5660  z-index: 20;
     5661  -webkit-transition: opacity 0.3s;
     5662  -moz-transition: opacity 0.3s;
     5663  -ms-transition: opacity 0.3s;
     5664  -o-transition: opacity 0.3s;
     5665  transition: opacity 0.3s;
    63535666}
    6354 
    6355 #customize-container .collapse-sidebar {
    6356         bottom: 16px;
    6357 }
    6358 
    63595667#theme-installer {
    6360         display: none;
     5668  display: none;
    63615669}
    6362 
    63635670#theme-installer.single-theme {
    6364         display: block;
     5671  display: block;
    63655672}
    6366 
    63675673.install-theme-info {
    6368         display: none;
    6369         padding: 10px 20px 20px;
     5674  display: none;
     5675  padding: 10px 20px 20px;
    63705676}
    6371 
    63725677.single-theme .install-theme-info {
    6373         padding-top: 15px;
     5678  padding-top: 15px;
    63745679}
    6375 
    63765680#theme-installer .install-theme-info {
    6377         display: block;
     5681  display: block;
    63785682}
    6379 
    63805683.install-theme-info .theme-install {
    6381         float: right;
    6382         margin-top: 18px;
     5684  float: right;
     5685  margin-top: 18px;
    63835686}
    6384 
    63855687.install-theme-info .theme-name {
    6386         font-size: 16px;
    6387         line-height: 24px;
    6388         margin-bottom: 0;
     5688  font-size: 16px;
     5689  line-height: 24px;
     5690  margin-bottom: 0;
    63895691}
    6390 
    63915692.install-theme-info .theme-screenshot {
    6392         margin-top: 15px;
    6393         width: 258px;
    6394         border: 1px solid #ccc;
     5693  margin-top: 15px;
     5694  width: 258px;
     5695  border: 1px solid #ccc;
    63955696}
    6396 
    63975697.install-theme-info .theme-details {
    6398         overflow: hidden;
     5698  overflow: hidden;
    63995699}
    6400 
    64015700.theme-details .theme-version {
    6402         margin: 15px 0;
    6403         float: left;
     5701  margin: 15px 0;
     5702  float: left;
    64045703}
    6405 
    64065704.theme-details .star-holder {
    6407         margin: 14px 0;
    6408         float: right;
     5705  margin: 14px 0;
     5706  float: right;
    64095707}
    6410 
    64115708.theme-details .theme-description {
    6412         float: left;
    6413         color: #777;
    6414         line-height: 20px;
     5709  float: left;
     5710  color: #777;
     5711  line-height: 20px;
    64155712}
    6416 
    64175713/*------------------------------------------------------------------------------
    64185714  25.0 - Misc
    64195715------------------------------------------------------------------------------*/
    6420 
    64215716#excerpt,
    64225717.attachmentlinks {
    6423         margin: 0;
    6424         height: 4em;
    6425         width: 98%;
     5718  margin: 0;
     5719  height: 4em;
     5720  width: 98%;
    64265721}
    6427 
    64285722#template div {
    6429         margin-right: 190px;
     5723  margin-right: 190px;
    64305724}
    6431 
    64325725p.pagenav {
    6433         margin: 0;
    6434         display: inline;
     5726  margin: 0;
     5727  display: inline;
    64355728}
    6436 
    64375729.pagenav span {
    6438         font-weight: bold;
    6439         margin: 0 6px;
     5730  font-weight: bold;
     5731  margin: 0 6px;
    64405732}
    6441 
    64425733.row-title {
    6443         font-size: 13px !important;
    6444         font-weight: bold;
     5734  font-size: 13px !important;
     5735  font-weight: bold;
    64455736}
    6446 
    6447 .column-author img, .column-username img {
    6448         float: left;
    6449         margin-right: 10px;
    6450         margin-top: 1px;
     5737.column-author img,
     5738.column-username img {
     5739  float: left;
     5740  margin-right: 10px;
     5741  margin-top: 1px;
    64515742}
    6452 
    64535743.row-actions {
    6454         visibility: hidden;
    6455         padding: 2px 0 0;
     5744  visibility: hidden;
     5745  padding: 2px 0 0;
    64565746}
    6457 
    64585747.mobile .row-actions {
    6459         visibility: visible;
     5748  visibility: visible;
    64605749}
    6461 
    64625750tr:hover .row-actions,
    64635751div.comment-item:hover .row-actions {
    6464         visibility: visible;
     5752  visibility: visible;
    64655753}
    6466 
    64675754.row-actions-visible {
    6468         padding: 2px 0 0;
     5755  padding: 2px 0 0;
    64695756}
    6470 
    64715757.form-table .pre {
    6472         padding: 8px;
    6473         margin: 0;
     5758  padding: 8px;
     5759  margin: 0;
    64745760}
    6475 
    64765761table.form-table td .updated {
    6477         font-size: 13px;
     5762  font-size: 13px;
    64785763}
    6479 
    64805764.tagchecklist {
    6481         margin-left: 14px;
    6482         font-size: 12px;
    6483         overflow: auto;
     5765  margin-left: 14px;
     5766  font-size: 12px;
     5767  overflow: auto;
    64845768}
    64855769.tagchecklist strong {
    6486         margin-left: -8px;
    6487         position: absolute;
     5770  margin-left: -8px;
     5771  position: absolute;
    64885772}
    64895773.tagchecklist span {
    6490         margin-right: 25px;
    6491         display: block;
    6492         float: left;
    6493         font-size: 11px;
    6494         line-height: 1.8em;
    6495         white-space: nowrap;
    6496         cursor: default;
     5774  margin-right: 25px;
     5775  display: block;
     5776  float: left;
     5777  font-size: 11px;
     5778  line-height: 1.8em;
     5779  white-space: nowrap;
     5780  cursor: default;
    64975781}
    64985782.tagchecklist span a {
    6499         margin: 6px 0pt 0pt -9px;
    6500         cursor: pointer;
    6501         width: 10px;
    6502         height: 10px;
    6503         display: block;
    6504         float: left;
    6505         text-indent: -9999px;
    6506         overflow: hidden;
    6507         position: absolute;
     5783  margin: 6px 0pt 0pt -9px;
     5784  cursor: pointer;
     5785  width: 10px;
     5786  height: 10px;
     5787  display: block;
     5788  float: left;
     5789  text-indent: -9999px;
     5790  overflow: hidden;
     5791  position: absolute;
    65085792}
    6509 
    65105793#poststuff h2 {
    6511         margin-top: 20px;
    6512         font-size: 1.5em;
    6513         margin-bottom: 15px;
    6514         padding: 0 0 3px;
    6515         clear: left;
     5794  margin-top: 20px;
     5795  font-size: 1.5em;
     5796  margin-bottom: 15px;
     5797  padding: 0 0 3px;
     5798  clear: left;
    65165799}
    6517 
    65185800#poststuff h3,
    65195801.metabox-holder h3 {
    6520         font-size: 15px;
    6521         font-weight: normal;
    6522         padding: 7px 10px;
    6523         margin: 0;
    6524         line-height: 1;
     5802  font-size: 12px;
     5803  font-weight: normal;
     5804  line-height: 1;
     5805  padding: 7px 10px;
     5806  margin: 0;
    65255807}
    6526 
    65275808#poststuff .inside {
    6528         margin: 6px 0 8px;
     5809  margin: 6px 0 8px;
    65295810}
    6530 
    65315811#poststuff .inside #parent_id,
    65325812#poststuff .inside #page_template {
    6533         max-width: 100%;
     5813  max-width: 100%;
    65345814}
    6535 
    65365815.inline-edit-row #post_parent,
    65375816.inline-edit-row select[name="page_template"] {
    6538         max-width: 80%;
     5817  max-width: 80%;
    65395818}
    6540 
    65415819.ie8 #poststuff .inside #parent_id,
    65425820.ie8 #poststuff .inside #page_template,
    65435821.ie8 .inline-edit-row #post_parent,
    65445822.ie8 .inline-edit-row select[name="page_template"] {
    6545         width: 250px;
     5823  width: 250px;
    65465824}
    6547 
    65485825#post-visibility-select {
    6549         line-height: 1.5em;
    6550         margin-top: 3px;
     5826  line-height: 1.5em;
     5827  margin-top: 3px;
    65515828}
    6552 
    65535829#poststuff #submitdiv .inside {
    6554         margin: 0;
    6555         padding: 0;
     5830  margin: 0;
     5831  padding: 0;
    65565832}
    6557 
    65585833.edit-form-section {
    6559         margin-bottom: 20px;
     5834  margin-bottom: 20px;
    65605835}
    6561 
    65625836#templateside ul li a {
    6563         text-decoration: none;
     5837  text-decoration: none;
    65645838}
    6565 
    65665839.tool-box .title {
    6567         margin: 8px 0;
    6568         font-size: 18px;
    6569         font-weight: normal;
    6570         line-height: 24px;
     5840  margin: 8px 0;
     5841  font-size: 18px;
     5842  font-weight: normal;
     5843  line-height: 24px;
    65715844}
    6572 
    65735845#sidemenu {
    6574         margin: -30px 15px 0 315px;
    6575         list-style: none;
    6576         position: relative;
    6577         float: right;
    6578         padding-left: 10px;
    6579         font-size: 12px;
     5846  margin: -30px 15px 0 315px;
     5847  list-style: none;
     5848  position: relative;
     5849  float: right;
     5850  padding-left: 10px;
     5851  font-size: 12px;
    65805852}
    6581 
    65825853#sidemenu a {
    6583         padding: 0 7px;
    6584         display: block;
    6585         float: left;
    6586         line-height: 28px;
    6587         border-top-width: 1px;
    6588         border-top-style: solid;
    6589         border-bottom-width: 1px;
    6590         border-bottom-style: solid;
    6591 }
    6592 
    6593 #sidemenu li {
    6594         display: inline;
    6595         line-height: 200%;
    6596         list-style: none;
    6597         text-align: center;
    6598         white-space: nowrap;
    6599         margin: 0;
    6600         padding: 0;
     5854  padding: 0 7px;
     5855  display: block;
     5856  float: left;
     5857  line-height: 28px;
     5858  border-top-width: 1px;
     5859  border-top-style: solid;
     5860  border-bottom-width: 1px;
     5861  border-bottom-style: solid;
    66015862}
    6602 
    66035863#sidemenu a.current {
    6604         font-weight: normal;
    6605         padding-left: 6px;
    6606         padding-right: 6px;
    6607         -webkit-border-top-left-radius: 3px;
    6608         -webkit-border-top-right-radius: 3px;
    6609         border-top-left-radius: 3px;
    6610         border-top-right-radius: 3px;
    6611         border-width: 1px;
    6612         border-style: solid;
     5864  font-weight: normal;
     5865  padding-left: 6px;
     5866  padding-right: 6px;
     5867  border-top-left-radius: 3px;
     5868  border-top-right-radius: 3px;
     5869  -moz-border-top-left-radius: 3px;
     5870  -moz-border-top-right-radius: 3px;
     5871  -webkit-border-top-left-radius: 3px;
     5872  -webkit-border-top-right-radius: 3px;
     5873  border-width: 1px;
     5874  border-style: solid;
     5875}
     5876#sidemenu li {
     5877  display: inline;
     5878  line-height: 200%;
     5879  list-style: none;
     5880  text-align: center;
     5881  white-space: nowrap;
     5882  margin: 0;
     5883  padding: 0;
    66135884}
    6614 
    66155885#sidemenu li a .count-0 {
    6616         display: none;
     5886  display: none;
    66175887}
    6618 
    66195888.plugin-install #description,
    66205889.plugin-install-network #description {
    6621         width: 60%;
     5890  width: 60%;
    66225891}
    6623 
    66245892table .vers,
    66255893table .column-visible,
    66265894table .column-rating {
    6627         text-align: left;
     5895  text-align: left;
    66285896}
    6629 
    66305897.error-message {
    6631         color: red;
    6632         font-weight: bold;
     5898  color: red;
     5899  font-weight: bold;
    66335900}
    6634 
    66355901/* Scrollbar fix for bulk upgrade iframe */
    66365902body.iframe {
    6637         height: 98%;
     5903  height: 98%;
    66385904}
    6639 
    6640 
    66415905/* - Only used once or twice in all of WP - deprecate for global style
    66425906------------------------------------------------------------------------------*/
    66435907td.media-icon {
    6644         text-align: center;
    6645         width: 80px;
    6646         padding-top: 8px;
    6647         padding-bottom: 8px;
     5908  text-align: center;
     5909  width: 80px;
     5910  padding-top: 8px;
     5911  padding-bottom: 8px;
    66485912}
    6649 
    66505913td.media-icon img {
    6651         max-width: 80px;
    6652         max-height: 60px;
     5914  max-width: 80px;
     5915  max-height: 60px;
    66535916}
    6654 
    66555917#howto {
    6656         font-size: 11px;
    6657         margin: 0 5px;
    6658         display: block;
    6659 }
    6660 
    6661 .importers td {
    6662         padding-right: 14px;
     5918  font-size: 11px;
     5919  margin: 0 5px;
     5920  display: block;
    66635921}
    6664 
    66655922.importers {
    6666         font-size: 16px;
    6667         width: auto;
     5923  font-size: 16px;
     5924  width: auto;
     5925}
     5926.importers td {
     5927  padding-right: 14px;
    66685928}
    6669 
    66705929#namediv table {
    6671         width: 100%;
     5930  width: 100%;
    66725931}
    6673 
    66745932#namediv td.first {
    6675         width: 10px;
    6676         white-space: nowrap;
     5933  width: 10px;
     5934  white-space: nowrap;
    66775935}
    6678 
    66795936#namediv input {
    6680         width: 98%;
     5937  width: 98%;
    66815938}
    6682 
    66835939#namediv p {
    6684         margin: 10px 0;
     5940  margin: 10px 0;
    66855941}
    6686 
    66875942#submitdiv h3 {
    6688         margin-bottom: 0 !important;
     5943  margin-bottom: 0 !important;
    66895944}
    6690 
    66915945/* - Used - but could/should be deprecated with a CSS reset
    66925946------------------------------------------------------------------------------*/
    66935947.zerosize {
    6694         height: 0;
    6695         width: 0;
    6696         margin: 0;
    6697         border: 0;
    6698         padding: 0;
    6699         overflow: hidden;
    6700         position: absolute;
     5948  height: 0;
     5949  width: 0;
     5950  margin: 0;
     5951  border: 0;
     5952  padding: 0;
     5953  overflow: hidden;
     5954  position: absolute;
    67015955}
    6702 
    67035956br.clear {
    6704         height: 2px;
    6705         line-height: 2px;
     5957  height: 2px;
     5958  line-height: 2px;
    67065959}
    6707 
    67085960.checkbox {
    6709         border: none;
    6710         margin: 0;
    6711         padding: 0;
     5961  border: none;
     5962  margin: 0;
     5963  padding: 0;
    67125964}
    6713 
    67145965fieldset {
    6715         border: 0;
    6716         padding: 0;
    6717         margin: 0;
     5966  border: 0;
     5967  padding: 0;
     5968  margin: 0;
    67185969}
    6719 
    67205970.post-categories {
    6721         display: inline;
    6722         margin: 0;
    6723         padding: 0;
     5971  display: inline;
     5972  margin: 0;
     5973  padding: 0;
    67245974}
    6725 
    67265975.post-categories li {
    6727         display: inline;
     5976  display: inline;
    67285977}
    6729 
    6730 
    67315978/*-----------------------------------------------------------------------------
    67325979 MERGED
    67335980-------------------------------------------------------------------------------*/
    6734 
    6735 /* dashboard */
    6736 .edit-box {
    6737         display: none;
     5981/* ms */
     5982/* Dashboard: MS Specific Data */
     5983#dashboard_right_now p.musub {
     5984  margin-top: 12px;
     5985  border-top: 1px solid #ececec;
     5986  padding-left: 16px;
     5987  position: static;
    67385988}
    6739 
    6740 h3:hover .edit-box {
    6741         display: inline;
     5989.rtl #dashboard_right_now p.musub {
     5990  padding-left: 0;
     5991  padding-right: 16px;
    67425992}
    6743 
    6744 #dashboard-widgets form .input-text-wrap input {
    6745         width: 100%;
     5993#dashboard_right_now td.b a.musublink {
     5994  font-size: 16px;
    67465995}
    6747 
    6748 #dashboard-widgets form .textarea-wrap textarea {
    6749         width: 100%;
     5996#dashboard_right_now div.musubtable {
     5997  border-top: none;
    67505998}
    6751 
    6752 #dashboard-widgets .postbox form .submit {
    6753         float: none;
    6754         margin: .5em 0 0;
    6755         padding: 0;
    6756         border: none;
     5999#dashboard_right_now div.musubtable .t {
     6000  white-space: normal;
    67576001}
    6758 
    6759 #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish {
    6760         min-width: 0;
     6002/* Background Color for Site Status */
     6003.wp-list-table .site-deleted {
     6004  background: #ff8573;
    67616005}
    6762 
    6763 #dashboard-widgets a {
    6764         text-decoration: none;
     6006.wp-list-table .site-spammed {
     6007  background: #faafaa;
    67656008}
    6766 
    6767 #dashboard-widgets h3 a {
    6768         text-decoration: underline;
     6009.wp-list-table .site-archived {
     6010  background: #ffebe8;
    67696011}
    6770 
    6771 #dashboard-widgets h3 .postbox-title-action {
    6772         position: absolute;
    6773         right: 10px;
    6774         padding: 0;
    6775         top: 5px;
     6012.wp-list-table .site-mature {
     6013  background: #fecac2;
    67766014}
    6777 
    6778 .js #dashboard-widgets h3 .postbox-title-action {
    6779         right: 30px;
     6015/* Star ratings */
     6016div.star-holder {
     6017  position: relative;
     6018  height: 17px;
     6019  width: 100px;
     6020  background: url('../images/stars.png?ver=20121108') repeat-x bottom left;
    67806021}
    6781 
    6782 #dashboard-widgets h4 {
    6783         font-weight: normal;
    6784         font-size: 13px;
    6785         margin: 0 0 .2em;
    6786         padding: 0;
     6022div.star-holder .star-rating {
     6023  background: url('../images/stars.png?ver=20121108') repeat-x top left;
     6024  height: 17px;
     6025  float: left;
    67876026}
    6788 
    6789 /* Right Now */
    6790 #dashboard_right_now p.sub,
    6791 #dashboard_right_now .table, #dashboard_right_now .versions {
    6792         margin: -12px;
     6027div.action-links {
     6028  font-weight: normal;
     6029  margin: 6px 0 0;
    67936030}
    6794 
    6795 #dashboard_right_now .inside {
    6796         font-size: 12px;
    6797         padding-top: 20px;
     6031/* Header on thickbox */
     6032#plugin-information-header {
     6033  margin: 0;
     6034  padding: 0 5px;
     6035  font-weight: bold;
     6036  position: relative;
     6037  border-bottom-width: 1px;
     6038  border-bottom-style: solid;
     6039  height: 2.5em;
    67986040}
     6041#plugin-information {
     6042  /* Install sidemenu */
    67996043
    6800 #dashboard_right_now p.sub {
    6801         padding: 5px 0 15px;
    6802         color: #8f8f8f;
    6803         font-size: 14px;
    6804         position: absolute;
    6805         top: -17px;
    6806         left: 15px;
    68076044}
    6808 
    6809 #dashboard_right_now .table {
    6810         margin: 0;
    6811         padding: 0;
    6812         position: relative;
     6045#plugin-information ul#sidemenu {
     6046  font-weight: normal;
     6047  margin: 0 5px;
     6048  position: absolute;
     6049  left: 0;
     6050  bottom: -1px;
    68136051}
    6814 
    6815 #dashboard_right_now .table_content {
    6816         float: left;
    6817         border-top-width: 1px;
    6818         border-top-style: solid;
    6819         width: 45%;
     6052#plugin-information p.action-button {
     6053  width: 100%;
     6054  padding-bottom: 0;
     6055  margin-bottom: 0;
     6056  margin-top: 10px;
     6057  border-top-left-radius: 3px;
     6058  border-bottom-left-radius: 3px;
     6059  -moz-border-top-left-radius: 3px;
     6060  -moz-border-bottom-left-radius: 3px;
     6061  -webkit-border-top-left-radius: 3px;
     6062  -webkit-border-bottom-left-radius: 3px;
    68206063}
    6821 
    6822 #dashboard_right_now .table_discussion {
    6823         float: right;
    6824         border-top-width: 1px;
    6825         border-top-style: solid;
    6826         width: 45%;
     6064#plugin-information .action-button a {
     6065  text-align: center;
     6066  font-weight: bold;
     6067  text-decoration: none;
     6068  display: block;
     6069  line-height: 2em;
    68276070}
    6828 
    6829 #dashboard_right_now table td {
    6830         padding: 3px 0;
    6831         white-space: nowrap;
     6071#plugin-information h2 {
     6072  clear: none !important;
     6073  margin-right: 200px;
    68326074}
    6833 
    6834 #dashboard_right_now table tr.first td {
    6835         border-top: none;
     6075#plugin-information .fyi {
     6076  margin: 0 10px 50px;
     6077  width: 210px;
    68366078}
    6837 
    6838 #dashboard_right_now td.b {
    6839         padding-right: 6px;
    6840         text-align: right;
    6841         font-size: 14px;
    6842         width: 1%;
     6079#plugin-information .fyi h2 {
     6080  font-size: 0.9em;
     6081  margin-bottom: 0;
     6082  margin-right: 0;
    68436083}
    6844 
    6845 #dashboard_right_now td.b a {
    6846         font-size: 18px;
     6084#plugin-information .fyi h2.mainheader {
     6085  padding: 5px;
     6086  -moz-border-top-left-radius: 3px;
     6087  -webkit-border-top-left-radius: 3px;
     6088  border-top-left-radius: 3px;
    68476089}
    6848 
    6849 #dashboard_right_now td.b a:hover {
    6850         color: #d54e21;
     6090#plugin-information .fyi ul {
     6091  padding: 10px 5px 10px 7px;
     6092  margin: 0;
     6093  list-style: none;
     6094  -moz-border-bottom-left-radius: 3px;
     6095  -webkit-border-bottom-left-radius: 3px;
     6096  border-bottom-left-radius: 3px;
    68516097}
    6852 
    6853 #dashboard_right_now .t {
    6854         font-size: 12px;
    6855         padding-right: 12px;
    6856         padding-top: 6px;
    6857         color: #777;
     6098#plugin-information .fyi li {
     6099  margin-right: 0;
    68586100}
    6859 
    6860 #dashboard_right_now .t a {
    6861         white-space: nowrap;
     6101#plugin-information #section-holder {
     6102  padding: 10px;
    68626103}
    6863 
    6864 #dashboard_right_now .spam {
    6865         color: red;
     6104#plugin-information .section ul,
     6105#plugin-information .section ol {
     6106  margin-left: 16px;
     6107  list-style-type: square;
     6108  list-style-image: none;
    68666109}
    6867 
    6868 #dashboard_right_now .waiting {
    6869         color: #e66f00;
     6110#plugin-information #section-screenshots ol {
     6111  list-style: none;
     6112  margin: 0;
    68706113}
    6871 
    6872 #dashboard_right_now .approved {
    6873         color: green;
     6114#plugin-information #section-screenshots li img {
     6115  vertical-align: text-top;
     6116  max-width: 100%;
     6117  width: auto;
     6118  height: auto;
    68746119}
    6875 
    6876 #dashboard_right_now .versions {
    6877         padding: 6px 10px 12px;
    6878         clear: both;
     6120#plugin-information #section-screenshots li p {
     6121  font-style: italic;
     6122  padding-left: 20px;
     6123  padding-bottom: 2em;
    68796124}
    6880 
    6881 #dashboard_right_now a.button {
    6882         float: right;
    6883         clear: right;
    6884         position: relative;
    6885         top: -5px;
     6125#plugin-information #section-screenshots ol,
     6126#plugin-information .updated,
     6127#plugin-information pre {
     6128  margin-right: 215px;
    68866129}
    6887 
    6888 /* Recent Comments */
    6889 #dashboard_recent_comments h3 {
    6890         margin-bottom: 0;
     6130#plugin-information pre {
     6131  padding: 7px;
     6132  overflow: auto;
    68916133}
    6892 
    6893 #dashboard_recent_comments .inside {
    6894         margin-top: 0;
     6134#poststuff #editor-toolbar {
     6135  height: 30px;
    68956136}
    6896 
    6897 #dashboard_recent_comments .comment-meta .approve {
    6898         font-style: italic;
    6899         font-family: sans-serif;
    6900         font-size: 10px;
     6137div.zerosize {
     6138  border: 0 none;
     6139  height: 0;
     6140  margin: 0;
     6141  overflow: hidden;
     6142  padding: 0;
     6143  width: 0;
    69016144}
    6902 
    6903 #dashboard_recent_comments .subsubsub {
    6904         float: none;
    6905         white-space: normal;
     6145.posting {
     6146  margin-right: 212px;
     6147  position: relative;
    69066148}
    6907 
    6908 #the-comment-list {
    6909         position: relative;
     6149h3.tb {
     6150  text-shadow: 0 1px 0 #fff;
     6151  font-size: 12px;
     6152  font-weight: bold;
     6153  line-height: normal;
     6154  margin-left: 5px;
    69106155}
    6911 
    6912 #the-comment-list .comment-item {
    6913         padding: 1em 10px;
    6914         border-top: 1px solid;
     6156#TB_window {
     6157  border: 1px solid #333;
    69156158}
    6916 
    6917 #the-comment-list .pingback {
    6918         padding-left: 9px !important;
     6159.js .postbox:hover .handlediv,
     6160.js .stuffbox:hover .handlediv {
     6161  background: transparent url(../images/arrows.png) no-repeat 6px 7px;
    69196162}
    6920 
    6921 #the-comment-list .comment-item,
    6922 #the-comment-list #replyrow {
    6923         margin: 0 -10px;
     6163.press-this #submitdiv:hover .handlediv {
     6164  background: none;
    69246165}
    6925 
    6926 #the-comment-list .comment-item:first-child {
    6927         border-top: none;
     6166.tbtitle {
     6167  font-size: 1.7em;
     6168  outline: none;
     6169  padding: 3px 4px;
     6170  border-color: #dfdfdf;
    69286171}
    6929 
    6930 #the-comment-list .comment-item .avatar {
    6931         float: left;
    6932         margin: 0 10px 5px 0;
     6172#extra-fields .button {
     6173  margin-right: 5px;
    69336174}
    6934 
    6935 #the-comment-list .comment-item h4 {
    6936         line-height: 1.7em;
    6937         margin-top: -0.4em;
    6938         color: #777;
     6175/* Photo Styles */
     6176#photo_saving {
     6177  margin: 0 8px 8px;
     6178  vertical-align: middle;
    69396179}
    6940 
    6941 #the-comment-list .comment-item h4 cite {
    6942         font-style: normal;
    6943         font-weight: normal;
     6180#img_container_container {
     6181  overflow: auto;
    69446182}
    6945 
    6946 #the-comment-list .comment-item blockquote,
    6947 #the-comment-list .comment-item blockquote p {
    6948         margin: 0;
    6949         padding: 0;
    6950         display: inline;
     6183#extra-fields {
     6184  margin-top: 10px;
     6185  position: relative;
    69516186}
    6952 
    6953 #dashboard_recent_comments #the-comment-list .trackback blockquote,
    6954 #dashboard_recent_comments #the-comment-list .pingback blockquote {
    6955         display: block;
     6187#extra-fields h2 {
     6188  margin: 12px;
    69566189}
    6957 
    6958 #the-comment-list .comment-item p.row-actions {
    6959         margin: 3px 0 0;
    6960         padding: 0;
    6961         font-size: 12px;
     6190#waiting {
     6191  margin-top: 10px;
     6192  overflow: hidden;
    69626193}
    6963 
    6964 /* QuickPress */
    6965 .no-js #dashboard_quick_press {
    6966         display: none;
     6194#waiting span {
     6195  float: right;
     6196  margin: 0 0 0 5px;
    69676197}
    6968 
    6969 #dashboard_quick_press .easy-blogging {
    6970         padding: 0 8px;
    6971         text-align: left;
     6198#waiting .spinner {
     6199  display: block;
    69726200}
    6973 
    6974 #dashboard_quick_press .input-text-wrap {
    6975         position: relative;
     6201#extra-fields .postbox {
     6202  margin-bottom: 5px;
    69766203}
    6977 
    6978 #dashboard_quick_press .prompt {
    6979         color: #bbb;
    6980         position: absolute;
     6204#extra-fields .titlewrap {
     6205  padding: 0;
     6206  overflow: auto;
     6207  height: 100px;
    69816208}
    6982 
    6983 #dashboard_quick_press div.updated  {
    6984         padding: 0 5px;
     6209#img_container a {
     6210  display: block;
     6211  float: left;
     6212  overflow: hidden;
    69856213}
    6986 
    6987 #title-wrap label,
    6988 #tags-input-wrap label {
    6989         cursor: text;
     6214#img_container img,
     6215#img_container a {
     6216  width: 68px;
     6217  height: 68px;
    69906218}
    6991 
    6992 #title-wrap #title {
    6993         padding: 2px 6px;
    6994         font-size: 1.3em;
    6995         line-height: 100%;
    6996         outline: none;
     6219#img_container img {
     6220  border: none;
     6221  background-color: #f4f4f4;
     6222  cursor: pointer;
    69976223}
    6998 
    6999 #tags-input-wrap #tags-input {
    7000         outline: none;
     6224#img_container a,
     6225#img_container a:link,
     6226#img_container a:visited {
     6227  border: 1px solid #ccc;
     6228  display: block;
     6229  position: relative;
    70016230}
    7002 
    7003 #title-wrap #title-prompt-text {
    7004         font-size: 1.3em;
    7005         padding: 5px 8px;
     6231#img_container a:hover,
     6232#img_container a:active {
     6233  border-color: black;
     6234  z-index: 1000;
     6235  border-width: 2px;
     6236  margin: -1px;
    70066237}
    7007 
    7008 #tags-input-wrap #tags-input-prompt-text {
    7009         font-size: 1em;
    7010         padding: 4px 8px;
     6238/* Video */
     6239#embed-code {
     6240  width: 100%;
     6241  height: 98px;
    70116242}
    7012 
    7013 #dashboard_quick_press .input-text-wrap,
    7014 #dashboard_quick_press .textarea-wrap {
    7015         margin: 0 0 1em 0;
     6243#TB_ajaxContent #options {
     6244  position: absolute;
     6245  top: 20px;
     6246  right: 25px;
     6247  padding: 5px;
    70166248}
    7017 
    7018 #dashboard_quick_press .wp-media-buttons {
    7019         margin: 0 0 .2em 1px;
    7020         padding: 0;
    7021 }
    7022 
    7023 #dashboard_quick_press .wp-media-buttons a {
    7024         color: #777;
    7025 }
    7026 
    7027 #dashboard-widgets #dashboard_quick_press form p.submit input {
    7028         float: left;
    7029 }
    7030 
    7031 #dashboard-widgets #dashboard_quick_press form p.submit #save-post {
    7032         margin: 0 0.7em 0 1px;
    7033 }
    7034 
    7035 #dashboard-widgets #dashboard_quick_press form p.submit #publish {
    7036         float: right;
    7037 }
    7038 
    7039 #dashboard-widgets #dashboard_quick_press form p.submit .spinner {
    7040         vertical-align: middle;
    7041         margin: 4px 6px 0 0;
     6249#TB_ajaxContent h3 {
     6250  margin-bottom: .25em;
    70426251}
    7043 
    7044 /* Recent Drafts */
    7045 #dashboard_recent_drafts ul,
    7046 #dashboard_recent_drafts p {
    7047         margin: 0;
    7048         padding: 0;
    7049         word-wrap: break-word;
     6252.error a {
     6253  text-decoration: underline;
    70506254}
    7051 
    7052 #dashboard_recent_drafts ul {
    7053         list-style: none;
     6255.updated a {
     6256  text-decoration: none;
     6257  padding-bottom: 2px;
    70546258}
    7055 
    7056 #dashboard_recent_drafts ul li {
    7057         margin-bottom: 1em;
     6259/* tag hints */
     6260.taghint {
     6261  color: #aaa;
     6262  margin: -17px 0 0 7px;
     6263  visibility: hidden;
    70586264}
    7059 
    7060 #dashboard_recent_drafts h4 {
    7061         line-height: 1.7em;
    7062         word-wrap: break-word;
     6265input.newtag ~ div.taghint {
     6266  visibility: visible;
    70636267}
    7064 
    7065 #dashboard_recent_drafts h4 abbr {
    7066         font-weight: normal;
    7067         font-family: sans-serif;
    7068         font-size: 12px;
    7069         color: #999;
    7070         margin-left: 3px;
     6268input.newtag:focus ~ div.taghint {
     6269  visibility: hidden;
    70716270}
    7072 
    7073 /* Feeds */
    7074 .rss-widget ul {
    7075         margin: 0;
    7076         padding: 0;
    7077         list-style: none;
     6271/* TinyMCE */
     6272#mce_fullscreen_container {
     6273  background: #fff;
    70786274}
    7079 
    7080 a.rsswidget {
    7081         font-size: 13px;
    7082         line-height: 1.7em;
     6275#photo-add-url-div input[type="text"] {
     6276  width: 300px;
    70836277}
    7084 
    7085 .rss-widget ul li {
    7086         line-height: 1.5em;
    7087         margin-bottom: 12px;
     6278/* theme-editor */
     6279.alignleft h3 {
     6280  margin: 0;
    70886281}
    7089 
    7090 .rss-widget span.rss-date {
    7091         color: #999;
    7092         font-size: 12px;
    7093         margin-left: 3px;
     6282h3 span {
     6283  font-weight: normal;
    70946284}
    7095 
    7096 .rss-widget cite {
    7097         display: block;
    7098         text-align: right;
    7099         margin: 0 0 1em;
    7100         padding: 0;
     6285#template textarea {
     6286  font-family: Consolas, Monaco, monospace;
     6287  font-size: 12px;
     6288  width: 97%;
     6289  background: #f9f9f9;
     6290  outline: none;
    71016291}
    7102 
    7103 .rss-widget cite:before {
    7104         content: '\2014';
     6292#template p {
     6293  width: 97%;
    71056294}
    7106 
    7107 /* Plugins */
    7108 #dashboard_plugins h4 {
    7109         line-height: 1.7em;
     6295#templateside {
     6296  float: right;
     6297  width: 190px;
     6298  word-wrap: break-word;
    71106299}
    7111 
    7112 #dashboard_plugins h5 {
    7113         font-weight: normal;
    7114         font-size: 13px;
    7115         margin: 0;
    7116         display: inline;
    7117         line-height: 1.4em;
     6300#templateside h3,
     6301#postcustomstuff p.submit {
     6302  margin: 0;
    71186303}
    7119 
    7120 #dashboard_plugins h5 a {
    7121         line-height: 1.4em;
     6304#templateside h4 {
     6305  margin: 1em 0 0;
    71226306}
    7123 
    7124 #dashboard_plugins .inside span {
    7125         font-size: 12px;
    7126         padding-left: 5px;
     6307#templateside ol,
     6308#templateside ul {
     6309  margin: .5em;
     6310  padding: 0;
    71276311}
    7128 
    7129 #dashboard_plugins p {
    7130         margin: 0.3em 0 1.4em;
    7131         line-height: 1.4em;
     6312#templateside li {
     6313  margin: 4px 0;
    71326314}
    7133 
    7134 .dashboard-comment-wrap {
    7135         overflow: hidden;
    7136         word-wrap: break-word;
     6315#templateside ul li a span.highlight {
     6316  display: block;
    71376317}
    7138 
    7139 /* Browser Nag */
    7140 #dashboard_browser_nag a.update-browser-link {
    7141         font-size: 1.2em;
    7142         font-weight: bold;
     6318.nonessential {
     6319  font-size: 11px;
     6320  font-style: italic;
     6321  padding-left: 12px;
    71436322}
    7144 
    7145 #dashboard_browser_nag a {
    7146         text-decoration: underline;
     6323.highlight {
     6324  padding: 3px 3px 3px 12px;
     6325  margin-left: -12px;
     6326  font-weight: bold;
     6327  border: 0 none;
    71476328}
    7148 
    7149 #dashboard_browser_nag p.browser-update-nag.has-browser-icon {
    7150         padding-right: 125px;
     6329#documentation {
     6330  margin-top: 10px;
    71516331}
    7152 
    7153 #dashboard_browser_nag .browser-icon {
    7154         margin-top: -35px;
     6332#documentation label {
     6333  line-height: 22px;
     6334  vertical-align: top;
     6335  font-weight: bold;
    71556336}
    7156 
    7157 #dashboard_browser_nag.postbox.browser-insecure {
    7158         background-color: #ac1b1b;
    7159         border-color: #ac1b1b;
     6337.fileedit-sub {
     6338  padding: 10px 0 8px;
     6339  line-height: 180%;
    71606340}
    7161 
    7162 #dashboard_browser_nag.postbox {
    7163         background-color: #e29808;
    7164         background-image: none;
    7165         border-color: #edc048;
    7166         color: #fff;
    7167         -webkit-box-shadow: none;
    7168         box-shadow: none;
     6341#filter-box {
     6342  clear: both;
    71696343}
    7170 
    7171 #dashboard_browser_nag.postbox.browser-insecure h3 {
    7172         border-bottom-color: #cd5a5a;
    7173         color: #fff;
     6344.feature-filter {
     6345  padding: 8px 12px 0;
    71746346}
    7175 
    7176 #dashboard_browser_nag.postbox h3 {
    7177         border-bottom-color: #f6e2ac;
    7178         text-shadow: none;
    7179         background: transparent none;
    7180         color: #fff;
    7181         -webkit-box-shadow: none;
    7182         box-shadow: none;
     6347.feature-filter .feature-group {
     6348  float: left;
     6349  margin: 5px 10px 10px;
    71836350}
    7184 
    7185 #dashboard_browser_nag a {
    7186         color: #fff;
     6351.feature-filter .feature-group li {
     6352  display: inline-block;
     6353  vertical-align: top;
     6354  list-style-type: none;
     6355  padding-right: 25px;
     6356  width: 150px;
    71876357}
    7188 
    7189 #dashboard_browser_nag.browser-insecure a.browse-happy-link,
    7190 #dashboard_browser_nag.browser-insecure a.update-browser-link {
    7191         text-shadow: #871b15 0 1px 0;
     6358.feature-container {
     6359  width: 100%;
     6360  overflow: auto;
     6361  margin-bottom: 10px;
    71926362}
    7193 
    7194 #dashboard_browser_nag a.browse-happy-link,
    7195 #dashboard_browser_nag a.update-browser-link {
    7196         text-shadow: #d29a04 0 1px 0;
     6363/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
     6364.ui-sortable,
     6365.ui-draggable {
     6366  -ms-touch-action: none;
    71976367}
    7198 
    7199 
    72006368/* login */
    7201 
    72026369.login * {
    7203         margin: 0;
    7204         padding: 0;
     6370  margin: 0;
     6371  padding: 0;
     6372}
     6373.login h1 a {
     6374  background-image: url('../images/wordpress-logo.png?ver=20120216');
     6375  background-size: 274px 63px;
     6376  background-position: top center;
     6377  background-repeat: no-repeat;
     6378  width: 326px;
     6379  height: 67px;
     6380  text-indent: -9999px;
     6381  outline: none;
     6382  overflow: hidden;
     6383  padding-bottom: 15px;
     6384  display: block;
    72056385}
    7206 
    72076386.login form {
    7208         margin-left: 8px;
    7209         padding: 26px 24px 46px;
    7210         font-weight: normal;
    7211         background: #fff;
    7212         border: 1px solid #e5e5e5;
    7213         -webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
    7214         box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
     6387  margin-left: 8px;
     6388  padding: 26px 24px 46px;
     6389  font-weight: normal;
     6390  background: #fff;
     6391  border: 1px solid #e5e5e5;
     6392  -webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
     6393  box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
    72156394}
    7216 
    72176395.login form .forgetmenot {
    7218         font-weight: normal;
    7219         float: left;
    7220         margin-bottom: 0;
    7221 }
    7222 
    7223 .login .button-primary {
    7224         float: right;
     6396  float: left;
     6397  margin-bottom: 0;
    72256398}
    7226 
    7227 #login form p {
    7228         margin-bottom: 0;
     6399.login form .forgetmenot label {
     6400  font-size: 12px;
     6401  font-weight: normal;
     6402  line-height: 19px;
    72296403}
    7230 
    7231 #login form p.submit {
    7232         padding: 0;
     6404.login .button-primary {
     6405  float: right;
    72336406}
    7234 
    72356407.login label {
    7236         color: #777;
    7237         font-size: 14px;
     6408  color: #777;
     6409  font-size: 14px;
    72386410}
    7239 
    7240 .login form .forgetmenot label {
    7241         font-size: 12px;
    7242         line-height: 19px;
     6411.login #nav,
     6412.login #backtoblog {
     6413  text-shadow: #fff 0 1px 0;
     6414  margin: 0 0 0 16px;
     6415  padding: 16px 16px 0;
    72436416}
    7244 
    7245 .login h1 a {
    7246         background-image: url('../images/wordpress-logo.png?ver=20120216');
    7247         background-size: 274px 63px;
    7248         background-position: top center;
    7249         background-repeat: no-repeat;
    7250         width: 326px;
    7251         height: 67px;
    7252         text-indent: -9999px;
    7253         outline: none;
    7254         overflow: hidden;
    7255         padding-bottom: 15px;
    7256         display: block;
     6417.login form .input,
     6418.login input[type="text"] {
     6419  color: #555;
     6420  font-weight: 200;
     6421  font-size: 24px;
     6422  line-height: 1;
     6423  width: 100%;
     6424  padding: 3px;
     6425  margin-top: 2px;
     6426  margin-right: 6px;
     6427  margin-bottom: 16px;
     6428  border: 1px solid #e5e5e5;
     6429  background: #fbfbfb;
     6430  outline: none;
     6431  -webkit-box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
     6432  box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
     6433}
     6434.login #pass-strength-result {
     6435  width: 250px;
     6436  font-weight: bold;
     6437  border-style: solid;
     6438  border-width: 1px;
     6439  margin: 12px 0 6px;
     6440  padding: 6px 5px;
     6441  text-align: center;
    72576442}
    7258 
    72596443#login {
    7260         width: 320px;
    7261         padding: 114px 0 0;
    7262         margin: auto;
     6444  width: 320px;
     6445  padding: 114px 0 0;
     6446  margin: auto;
     6447}
     6448#login form p {
     6449  margin-bottom: 0;
     6450}
     6451#login form p.submit {
     6452  padding: 0;
    72636453}
    7264 
    72656454#login_error,
    72666455.login .message {
    7267         margin: 0 0 16px 8px;
    7268         padding: 12px;
    7269 }
    7270 
    7271 .login #nav,
    7272 .login #backtoblog {
    7273         text-shadow: #fff 0 1px 0;
    7274         margin: 0 0 0 16px;
    7275         padding: 16px 16px 0;
     6456  margin: 0 0 16px 8px;
     6457  padding: 12px;
    72766458}
    7277 
    72786459#backtoblog {
    7279         padding: 12px 16px 0;
    7280 }
    7281 
    7282 .login form .input,
    7283 .login input[type="text"] {
    7284         color: #555;
    7285         font-weight: 200;
    7286         font-size: 24px;
    7287         line-height: 1;
    7288         width: 100%;
    7289         padding: 3px;
    7290         margin-top: 2px;
    7291         margin-right: 6px;
    7292         margin-bottom: 16px;
    7293         border: 1px solid #e5e5e5;
    7294         background: #fbfbfb;
    7295         outline: none;
    7296         -webkit-box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
    7297         box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
    7298 }
    7299 
    7300 .login #pass-strength-result {
    7301         width: 250px;
    7302         font-weight: bold;
    7303         border-style: solid;
    7304         border-width: 1px;
    7305         margin: 12px 0 6px;
    7306         padding: 6px 5px;
    7307         text-align: center;
     6460  padding: 12px 16px 0;
    73086461}
    7309 
    73106462.mobile #login {
    7311         padding: 20px 0;
    7312 }
    7313 
    7314 .mobile #login form,
    7315 .mobile #login .message,
    7316 .mobile #login_error {
    7317         margin-left: 0;
     6463  padding: 20px 0;
    73186464}
    7319 
    73206465.mobile #login #nav,
    73216466.mobile #login #backtoblog {
    7322         margin-left: 8px;
     6467  margin-left: 8px;
    73236468}
    7324 
    73256469.mobile #login h1 a {
    7326         width: auto;
     6470  width: auto;
     6471}
     6472.mobile #login form,
     6473.mobile #login .message,
     6474.mobile #login_error {
     6475  margin-left: 0;
    73276476}
    7328 
    73296477body.interim-login {
    7330         height: auto;
     6478  height: auto;
    73316479}
    7332 
    73336480.interim-login #login {
    7334         padding: 0;
    7335         margin: 5px auto 20px;
     6481  padding: 0;
     6482  margin: 5px auto 20px;
    73366483}
    7337 
    73386484.interim-login.login h1 a {
    7339         width: auto;
     6485  width: auto;
    73406486}
    7341 
    73426487.interim-login #login_error,
    73436488.interim-login.login .message {
    7344         margin: 0 0 16px;
     6489  margin: 0 0 16px;
    73456490}
    7346 
    73476491.interim-login.login form {
    7348         margin: 0;
     6492  margin: 0;
    73496493}
     6494.pressthis {
     6495  margin: 20px 0;
     6496  /* Header */
    73506497
    7351 /* ms */
    7352 /* Dashboard: MS Specific Data */
    7353 #dashboard_right_now p.musub {
    7354         margin-top: 12px;
    7355         border-top: 1px solid #ececec;
    7356         padding-left: 16px;
    7357         position: static;
    7358 }
     6498  /* Editor/Main Column */
    73596499
    7360 .rtl #dashboard_right_now p.musub {
    7361         padding-left: 0;
    7362         padding-right: 16px;
    7363 }
     6500  /* Categories */
    73646501
    7365 #dashboard_right_now td.b a.musublink {
    7366         font-size: 16px;
    7367 }
     6502  /* Tags */
    73686503
    7369 #dashboard_right_now div.musubtable {
    7370         border-top: none;
    7371 }
     6504  /* Submit */
    73726505
    7373 #dashboard_right_now div.musubtable .t {
    7374         white-space: normal;
    73756506}
    7376 
    7377 /* Background Color for Site Status */
    7378 .wp-list-table .site-deleted {
    7379         background: #ff8573;
     6507.pressthis a,
     6508.pressthis a:hover,
     6509.pressthis a:focus,
     6510.pressthis a:active {
     6511  display: inline-block;
     6512  position: relative;
     6513  cursor: move;
     6514  color: #333;
     6515  background: #d8d8d8;
     6516  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #e6e6e6), color-stop(77%, #d8d8d8));
     6517  background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
     6518  background-image: -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
     6519  background-image: -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
     6520  background-image: linear-gradient(to top, #e6e6e6 7%, #d8d8d8);
     6521  border-radius: 5px;
     6522  -moz-border-radius: 5px;
     6523  -webkit-border-radius: 5px;
     6524  border: 1px solid #b4b4b4;
     6525  font-style: normal;
     6526  line-height: 16px;
     6527  font-size: 14px;
     6528  text-decoration: none;
     6529  text-shadow: 0 1px 0px #fff;
    73806530}
    7381 .wp-list-table .site-spammed {
    7382         background: #faafaa;
     6531.pressthis a:active {
     6532  outline: none;
    73836533}
    7384 .wp-list-table .site-archived {
    7385         background: #ffebe8;
     6534.pressthis a:hover:after {
     6535  -webkit-transform: skew(20deg) rotate(9deg);
     6536  -moz-transform: skew(20deg) rotate(9deg);
     6537  transform: skew(20deg) rotate(9deg);
     6538  -moz-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
     6539  -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
     6540  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
    73866541}
    7387 .wp-list-table .site-mature {
    7388         background: #fecac2;
     6542.pressthis a span {
     6543  background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px;
     6544  background-size: 24px 20px;
     6545  padding: 8px 11px 8px 27px;
     6546  margin: 0 5px;
     6547  display: inline-block;
     6548}
     6549.pressthis a:after {
     6550  content: '';
     6551  width: 70%;
     6552  height: 55%;
     6553  z-index: -1;
     6554  position: absolute;
     6555  right: 10px;
     6556  bottom: 9px;
     6557  background: transparent;
     6558  -webkit-transform: skew(20deg) rotate(6deg);
     6559  -moz-transform: skew(20deg) rotate(6deg);
     6560  transform: skew(20deg) rotate(6deg);
     6561  -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
     6562  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
     6563}
     6564.pressthis #wphead {
     6565  height: 32px;
     6566  margin-left: 0;
     6567  margin-right: 0;
     6568  margin-bottom: 5px;
     6569}
     6570.pressthis #wphead h1 {
     6571  font-size: 16px;
     6572  font-weight: normal;
     6573  line-height: 32px;
     6574  margin: 0;
     6575  float: left;
     6576}
     6577.pressthis #wphead h1 a {
     6578  text-decoration: none;
     6579}
     6580.pressthis #wphead h1 a:hover {
     6581  text-decoration: underline;
     6582}
     6583.pressthis #header-logo {
     6584  float: left;
     6585  margin: 7px 7px 0;
     6586  -webkit-user-select: none;
     6587  -moz-user-select: none;
     6588  user-select: none;
     6589}
     6590.pressthis #message {
     6591  margin: 10px 0;
     6592}
     6593.pressthis #title {
     6594  margin-left: 0;
     6595  margin-right: 0;
     6596  -moz-box-sizing: border-box;
     6597  -webkit-box-sizing: border-box;
     6598  -ms-box-sizing: border-box;
     6599  box-sizing: border-box;
     6600}
     6601.pressthis .tagchecklist span a {
     6602  background: transparent url(../images/xit.gif) no-repeat 0 0;
     6603}
     6604.pressthis #titlediv {
     6605  margin: 0;
     6606}
     6607.pressthis .wp-media-buttons {
     6608  cursor: default;
     6609  padding: 8px 8px 0;
     6610}
     6611.pressthis .howto {
     6612  margin-top: 2px;
     6613  margin-bottom: 3px;
     6614  font-size: 12px;
     6615  font-style: italic;
     6616  display: block;
     6617}
     6618.pressthis #poststuff {
     6619  margin: 0 10px 10px;
     6620  padding: 0;
     6621}
     6622.pressthis #photo-add-url-div input[type="text"] {
     6623  width: 220px;
     6624}
     6625.pressthis .inner-sidebar {
     6626  width: 200px;
     6627}
     6628.pressthis .inner-sidebar .sleeve {
     6629  padding-top: 5px;
     6630}
     6631.pressthis #submitdiv p {
     6632  margin: 0;
     6633  padding: 6px;
     6634}
     6635.pressthis #submitdiv #publishing-actions {
     6636  border-bottom: 1px solid #dfdfdf;
     6637}
     6638.pressthis #publish {
     6639  float: right;
     6640}
     6641.pressthis #poststuff h2,
     6642.pressthis #poststuff h3 {
     6643  font-size: 14px;
     6644  line-height: 1;
     6645}
     6646.pressthis #tagsdiv-post_tag h3,
     6647.pressthis #categorydiv h3 {
     6648  cursor: pointer;
     6649}
     6650.pressthis #submitdiv h3 {
     6651  cursor: default;
     6652}
     6653.pressthis .postbox,
     6654.pressthis .stuffbox {
     6655  margin-bottom: 10px;
     6656  min-width: 0;
     6657}
     6658.pressthis .actions {
     6659  float: right;
     6660  margin: -19px 0 0;
     6661}
     6662#extra-fields .pressthis .actions {
     6663  margin: -32px -7px 0 0;
     6664}
     6665.pressthis .actions li {
     6666  float: left;
     6667  list-style: none;
     6668  margin-right: 10px;
     6669}
     6670.pressthis .categorydiv div.tabs-panel {
     6671  height: 100px;
     6672}
     6673.pressthis .tagsdiv .newtag {
     6674  width: 120px;
     6675}
     6676.pressthis #content {
     6677  margin: 5px 0;
     6678  padding: 0 5px;
     6679  border: 0 none;
     6680  height: 345px;
     6681  font-family: Consolas, Monaco, monospace;
     6682  font-size: 13px;
     6683  line-height: 19px;
     6684  background: transparent;
     6685}
     6686.pressthis #publishing-actions .spinner {
     6687  display: inline;
     6688  vertical-align: middle;
     6689}
     6690/* press-this */
     6691body.press-this {
     6692  color: #333;
     6693  margin: 0;
     6694  padding: 0;
     6695  min-width: 675px;
     6696  min-height: 400px;
     6697}
     6698.press-this-sidebar {
     6699  float: right;
     6700  width: 200px;
     6701  padding-top: 10px;
    73896702}
    7390 
    73916703/* nav-menu */
    7392 
    73936704.no-js #message {
    7394         display: block;
     6705  display: block;
    73956706}
    7396 
    73976707#nav-menu-meta ul.outer-border {
    7398         -webkit-border-radius: 3px;
    7399         border-radius: 3px;
     6708  border-radius: 3px;
     6709  -moz-border-radius: 3px;
     6710  -webkit-border-radius: 3px;
    74006711}
    7401 
    74026712.accordion-section ul.category-tabs,
    74036713.accordion-section ul.add-menu-item-tabs,
    74046714.accordion-section ul.wp-tab-bar {
    7405         margin: 0;
     6715  margin: 0;
    74066716}
    7407 
    74086717.accordion-section .categorychecklist {
    7409         margin: 13px 0;
     6718  margin: 13px 0;
    74106719}
    7411 
    74126720#nav-menu-meta .accordion-section-content {
    7413         padding: 18px 13px;
     6721  padding: 18px 13px;
    74146722}
    7415 
    74166723#nav-menu-meta .button-controls {
    7417         margin-bottom: 0;
     6724  margin-bottom: 0;
    74186725}
    7419 
    74206726#nav-menus-frame {
    7421         margin-left: 300px;
    7422         margin-top: 23px;
     6727  margin-left: 300px;
     6728  margin-top: 23px;
    74236729}
    7424 
    74256730#wpbody-content #menu-settings-column {
    7426         display:inline;
    7427         width:281px;
    7428         margin-left: -300px;
    7429         clear: both;
    7430         float: left;
    7431         padding-top: 0;
     6731  display: inline;
     6732  width: 281px;
     6733  margin-left: -300px;
     6734  clear: both;
     6735  float: left;
     6736  padding-top: 0;
    74326737}
    7433 
    74346738#menu-settings-column .inside {
    7435         clear: both;
    7436         margin: 10px 0 0;
     6739  clear: both;
     6740  margin: 10px 0 0;
    74376741}
    7438 
    74396742.metabox-holder-disabled .postbox,
    7440 .metabox-holder-disabled .accordion-section-content  {
    7441         opacity: 0.5;
    7442         filter: alpha(opacity=50);
     6743.metabox-holder-disabled .accordion-section-content {
     6744  opacity: 0.5;
     6745  filter: alpha(opacity=50);
    74436746}
    7444 
    74456747.metabox-holder-disabled .button-controls .select-all {
    7446         display: none;
     6748  display: none;
    74476749}
    7448 
    74496750#wpbody {
    7450         position: relative;
     6751  position: relative;
    74516752}
    7452 
    74536753.blank-slate .menu-name {
    7454         height: 2em;
     6754  height: 2em;
    74556755}
    7456 
    74576756.blank-slate .menu-settings {
    7458         border: none;
    7459         margin-top: 0;
    7460         padding-top: 0;
    7461         overflow: hidden;
     6757  border: none;
     6758  margin-top: 0;
     6759  padding-top: 0;
     6760  overflow: hidden;
    74626761}
    7463 
    74646762.is-submenu {
    7465         font-style: italic;
    7466         font-weight: normal;
    7467         margin-left: 4px;
     6763  font-style: italic;
     6764  font-weight: normal;
     6765  margin-left: 4px;
    74686766}
    7469 
    74706767.manage-menus {
    7471         margin-top: 23px;
    7472         padding: 10px;
    7473         overflow: hidden;
    7474         -webkit-border-radius: 3px;
    7475         border-radius: 3px;
     6768  margin-top: 23px;
     6769  padding: 10px;
     6770  overflow: hidden;
     6771  border-radius: 3px;
     6772  -moz-border-radius: 3px;
     6773  -webkit-border-radius: 3px;
    74766774}
    7477 
    74786775.manage-menus select {
    7479         float: left;
    7480         margin-right: 6px;
     6776  float: left;
     6777  margin-right: 6px;
    74816778}
    7482 
    74836779.manage-menus .selected-menu {
    7484         float: left;
    7485         margin: 5px 6px 0 0;
     6780  float: left;
     6781  margin: 5px 6px 0 0;
    74866782}
    7487 
    74886783.manage-menus .submit-btn {
    7489         float: left;
    7490         margin-top: 1px;
     6784  float: left;
     6785  margin-top: 1px;
    74916786}
    7492 
    74936787.menu-edit p {
    7494         margin: .3em 0 .6em;
     6788  margin: .3em 0 .6em;
    74956789}
    7496 
    74976790.menu-edit #post-body-content h3 {
    7498         margin: 0 0 10px;
     6791  margin: 0 0 10px;
     6792}
     6793.menu-edit .checkbox-input {
     6794  margin-top: 4px;
    74996795}
    7500 
    75016796.menu-settings {
    7502         margin-top: 2em;
    7503         overflow: hidden;
     6797  margin-top: 2em;
     6798  overflow: hidden;
    75046799}
    7505 
    75066800.menu-settings dl {
    7507         margin: 0 0 10px;
    7508         overflow: hidden;
    7509         position: relative;
     6801  margin: 0 0 10px;
     6802  overflow: hidden;
     6803  position: relative;
    75106804}
    7511 
    75126805.menu-settings dd {
    7513         float: left;
    7514         margin: 0;
    7515         width: 60%;
    7516 }
    7517 
    7518 .menu-edit .checkbox-input {
    7519         margin-top: 4px;
     6806  float: left;
     6807  margin: 0;
     6808  width: 60%;
    75206809}
    7521 
    75226810.theme-location-set {
    7523         font-size: 11px;
     6811  font-size: 11px;
    75246812}
    7525 
    75266813/* Menu Container */
    75276814#menu-management-liquid {
    7528         float: left;
    7529         min-width: 100%;
    7530         margin-top: 3px;
     6815  float: left;
     6816  min-width: 100%;
     6817  margin-top: 3px;
    75316818}
    7532 
    75336819#menu-management {
    7534         position: relative;
    7535         margin-right: 20px;
    7536         margin-top: -3px;
    7537         width: 100%;
     6820  position: relative;
     6821  margin-right: 20px;
     6822  margin-top: -3px;
     6823  width: 100%;
    75386824}
    7539 
    75406825#menu-management .menu-edit {
    7541         margin-bottom: 20px;
     6826  margin-bottom: 20px;
    75426827}
    7543 
    75446828.nav-menus-php #post-body {
    7545         padding: 0 10px 10px;
    7546         border-width: 1px 0;
    7547         border-style: solid;
     6829  padding: 0 10px 10px;
     6830  border-width: 1px 0;
     6831  border-style: solid;
    75486832}
    7549 
    75506833#nav-menu-header,
    75516834#nav-menu-footer {
    7552         padding: 0 10px;
     6835  padding: 0 10px;
    75536836}
    7554 
    75556837#nav-menu-header {
    7556         border-bottom: 1px solid;
    7557         margin-bottom: 13px;
     6838  border-bottom: 1px solid;
     6839  margin-bottom: 13px;
    75586840}
    7559 
    75606841#nav-menu-header .menu-name-label {
    7561         margin-top: 2px;
     6842  margin-top: 2px;
    75626843}
    7563 
    75646844#nav-menu-footer {
    7565         border-top: 1px solid;
     6845  border-top: 1px solid;
    75666846}
    7567 
    75686847.nav-menus-php #post-body div.updated,
    75696848.nav-menus-php #post-body div.error {
    7570         margin: 0;
     6849  margin: 0;
    75716850}
    7572 
    75736851.nav-menus-php #post-body-content {
    7574         position: relative;
    7575         float: none;
     6852  position: relative;
     6853  float: none;
    75766854}
    7577 
    75786855#menu-management .menu-add-new abbr {
    7579         font-weight:bold;
     6856  font-weight: bold;
    75806857}
    7581 
    75826858#select-nav-menu-container {
    7583         text-align: right;
    7584         padding: 0 10px 3px 10px;
    7585         margin-bottom: 5px;
     6859  text-align: right;
     6860  padding: 0 10px 3px 10px;
     6861  margin-bottom: 5px;
    75866862}
    7587 
    75886863#select-nav-menu {
    7589         width: 100px;
    7590         display: inline;
     6864  width: 100px;
     6865  display: inline;
    75916866}
    7592 
    75936867#menu-name-label {
    7594         margin-top: -2px;
     6868  margin-top: -2px;
    75956869}
    7596 
    75976870.widefat td.menu-location-menus {
    7598         padding-bottom: 5px;
     6871  padding-bottom: 5px;
    75996872}
    7600 
    76016873.menu-location-menus select {
    7602         float: left;
     6874  float: left;
    76036875}
    7604 
    76056876#locations-nav-menu-wrapper {
    7606         padding: 5px 0;
     6877  padding: 5px 0;
    76076878}
    7608 
    76096879.locations-nav-menu-select select {
    7610         float: left;
    7611         width: 160px;
    7612         margin-right: 5px;
    7613 }
    7614 
    7615 .locations-row-links {
    7616         float: left;
    7617         margin: 6px 0 0 6px;
    7618 }
    7619 
    7620 .locations-edit-menu-link,
    7621 .locations-add-menu-link {
    7622         margin: 0 3px;
    7623 }
    7624 
    7625 .locations-edit-menu-link {
    7626         padding-right: 3px;
    7627         border-right: 1px solid #ccc;
    7628 }
    7629 
    7630 #wpbody .open-label {
    7631         display: block;
    7632         float:left;
    7633 }
    7634 
    7635 #wpbody .open-label span {
    7636         padding-right: 10px;
    7637 }
    7638 
    7639 .js .input-with-default-title {
    7640         font-style: italic;
    7641 }
    7642 
    7643 #menu-management .inside {
    7644         padding: 0 10px;
    7645 }
    7646 
    7647 /* Add Menu Item Boxes */
    7648 .postbox .howto input,
    7649 .accordion-container .howto input {
    7650         width: 180px;
    7651         float: right;
    7652 }
    7653 
    7654 .accordion-container .outer-border {
    7655         margin: 0;
    7656 }
    7657 
    7658 #nav-menu-meta .accordion-container .top {
    7659         border-top: 1px solid #dfdfdf;
    7660 }
    7661 
    7662 #nav-menu-meta .accordion-container .accordion-section:first-child,
    7663 #nav-menu-meta .accordion-container .accordion-section:first-child h3,
    7664 #nav-menu-meta .accordion-container .top,
    7665 #nav-menu-meta .accordion-container .top h3 {
    7666         -webkit-border-top-right-radius: 3px;
    7667         -webkit-border-top-left-radius: 3px;
    7668         border-top-right-radius: 3px;
    7669         border-top-left-radius: 3px;
    7670 }
    7671 
    7672 #nav-menu-meta .accordion-container .accordion-section:last-child,
    7673 #nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,
    7674 #nav-menu-meta .accordion-container .bottom,
    7675 #nav-menu-meta .accordion-container .bottom:not(.open) h3 {
    7676         -webkit-border-bottom-right-radius: 3px;
    7677         -webkit-border-bottom-left-radius: 3px;
    7678         border-bottom-right-radius: 3px;
    7679         border-bottom-left-radius: 3px;
    7680 }
    7681 
    7682 .customlinkdiv .howto input {
    7683         width: 180px;
    7684 }
    7685 
    7686 .customlinkdiv p {
    7687         margin-top: 0
    7688 }
    7689 
    7690 #nav-menu-theme-locations .howto select {
    7691         width: 100%;
    7692 }
    7693 
    7694 #nav-menu-theme-locations .button-controls {
    7695         text-align: right;
    7696 }
    7697 
    7698 .add-menu-item-view-all {
    7699         height: 400px;
    7700 }
    7701 
    7702 /* Button Primary Actions */
    7703 #menu-container .submit {
    7704         margin: 0 0 10px;
    7705         padding: 0;
    7706 }
    7707 
    7708 .nav-menus-php .add-new-menu-action {
    7709         float: left;
    7710         margin: 6px 0 0 6px;
    7711         line-height: 15px;
    7712 }
    7713 
    7714 .nav-menus-php .meta-sep,
    7715 .nav-menus-php .submitdelete,
    7716 .nav-menus-php .submitcancel {
    7717         display: block;
    7718         float: left;
    7719         margin: 4px 0;
    7720         line-height: 15px;
    7721 }
    7722 
    7723 .meta-sep {
    7724         padding: 0 2px;
    7725 }
    7726 
    7727 #cancel-save {
    7728         text-decoration: underline;
    7729         font-size: 12px;
    7730         margin-left: 20px;
    7731         margin-top: 5px;
    7732 }
    7733 
    7734 .button.right, .button-secondary.right, .button-primary.right {
    7735         float: right;
    7736 }
    7737 
    7738 /* Button Secondary Actions */
    7739 .list-controls {
    7740         float: left;
    7741         margin-top: 5px;
    7742 }
    7743 
    7744 .add-to-menu {
    7745         float: right;
    7746 }
    7747 
    7748 .postbox .spinner {
    7749         display: none;
    7750         vertical-align: middle;
    7751 }
    7752 
    7753 .button-controls {
    7754         clear:both;
    7755         margin: 10px 0;
    7756 }
    7757 
    7758 .show-all,
    7759 .hide-all {
    7760         cursor: pointer;
    7761 }
    7762 
    7763 .hide-all {
    7764         display: none;
    7765 }
    7766 
    7767 /* Create Menu */
    7768 #menu-name {
    7769         width: 270px;
    7770 }
    7771 
    7772 #manage-menu .inside {
    7773         padding: 0px 0px;
    7774 }
    7775 
    7776 /* Custom Links */
    7777 #available-links dt {
    7778         display: block;
    7779 }
    7780 
    7781 #add-custom-link .howto {
    7782         font-size: 12px;
    7783 }
    7784 
    7785 #add-custom-link label span {
    7786         display: block;
    7787         float: left;
    7788         margin-top: 5px;
    7789         padding-right: 5px;
    7790 }
    7791 
    7792 .menu-item-textbox {
    7793         width: 180px;
    7794 }
    7795 
    7796 .nav-menus-php .howto span {
    7797         margin-top: 4px;
    7798         display: block;
    7799         float: left;
     6880  float: left;
     6881  width: 160px;
     6882  margin-right: 5px;
    78006883}
    7801 
    7802 /* Menu item types */
    7803 .quick-search {
    7804         width: 190px;
    7805 }
    7806 
    7807 .nav-menus-php .list-wrap {
    7808         display: none;
    7809         clear: both;
    7810         margin-bottom: 10px;
    7811 }
    7812 
    7813 .nav-menus-php .list-container {
    7814         max-height: 200px;
    7815         overflow-y: auto;
    7816         padding: 10px 10px 5px;
    7817 }
    7818 
    7819 .nav-menus-php .postbox p.submit {
    7820         margin-bottom: 0;
    7821 }
    7822 
    7823 /* Listings */
    7824 .nav-menus-php .list li {
    7825         display: none;
    7826         margin: 0;
    7827         margin-bottom: 5px;
    7828 }
    7829 
    7830 .nav-menus-php .list li .menu-item-title {
    7831         cursor: pointer;
    7832         display: block;
    7833 }
    7834 
    7835 .nav-menus-php .list li .menu-item-title input {
    7836         margin-right: 3px;
    7837         margin-top: -3px;
    7838 }
    7839 
    7840 /* Nav Menu */
    7841 #menu-container .inside {
    7842         padding-bottom: 10px;
    7843 }
    7844 
    7845 .menu {
    7846         padding-top:1em;
    7847 }
    7848 
    7849 #menu-to-edit {
    7850         margin: 0;
    7851         padding: 0.1em 0;
    7852 }
    7853 
    7854 .menu ul {
    7855         width: 100%;
    7856 }
    7857 
    7858 .menu li {
    7859         margin-bottom: 0;
    7860         position:relative;
    7861 }
    7862 
    7863 .menu-item-bar {
    7864         clear:both;
    7865         line-height:1.5em;
    7866         position:relative;
    7867         margin: 9px 0 0;
    7868 }
    7869 
    7870 .menu-item-handle {
    7871         border: 1px solid #dfdfdf;
    7872         position: relative;
    7873         padding-left: 10px;
    7874         height: auto;
    7875         width: 400px;
    7876         line-height: 35px;
    7877         text-shadow: 0 1px 0 #FFFFFF;
    7878         overflow: hidden;
    7879         word-wrap: break-word;
    7880 }
    7881 
    7882 #menu-to-edit .menu-item-invalid .menu-item-handle {
    7883         background: #f6c9cc;
    7884         background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff));
    7885         background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff);
    7886         background-image:    -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff);
    7887         background-image:      -o-linear-gradient(bottom, #f6c9cc, #fdf8ff);
    7888         background-image: linear-gradient(to top, #f6c9cc, #fdf8ff);
    7889 }
    7890 
    7891 .menu-item-edit-active .menu-item-handle {
    7892         -webkit-border-bottom-right-radius: 0;
    7893         -webkit-border-bottom-left-radius: 0;
    7894         border-bottom-right-radius: 0;
    7895         border-bottom-left-radius: 0;
    7896 }
    7897 
    7898 .no-js .menu-item-edit-active .item-edit {
    7899         display: none;
    7900 }
    7901 
    7902 .js .menu-item-handle {
    7903         cursor: move;
    7904 }
    7905 
    7906 .menu li.deleting .menu-item-handle {
    7907         background-image: none;
    7908         text-shadow: 0 0 0;
    7909 }
    7910 
    7911 .menu-item-handle .item-title {
    7912         font-size: 12px;
    7913         font-weight: bold;
    7914         padding: 7px 0;
    7915         line-height: 20px;
    7916         display:block;
    7917         margin-right:13em;
    7918 }
    7919 
    7920 /* Sortables */
    7921 li.menu-item.ui-sortable-helper dl {
    7922         margin-top: 0;
    7923 }
    7924 
    7925 li.menu-item.ui-sortable-helper .menu-item-transport dl {
    7926         margin-top: 13px;
    7927 }
    7928 
    7929 .menu .sortable-placeholder {
    7930         height: 35px;
    7931         width: 410px;
    7932         margin-top: 13px;
    7933 }
    7934 
    7935 /* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
    7936 .menu-item-depth-0 { margin-left: 0px; }
    7937 .menu-item-depth-1 { margin-left: 30px; }
    7938 .menu-item-depth-2 { margin-left: 60px; }
    7939 .menu-item-depth-3 { margin-left: 90px; }
    7940 .menu-item-depth-4 { margin-left: 120px; }
    7941 .menu-item-depth-5 { margin-left: 150px; }
    7942 .menu-item-depth-6 { margin-left: 180px; }
    7943 .menu-item-depth-7 { margin-left: 210px; }
    7944 .menu-item-depth-8 { margin-left: 240px; }
    7945 .menu-item-depth-9 { margin-left: 270px; }
    7946 .menu-item-depth-10 { margin-left: 300px; }
    7947 .menu-item-depth-11 { margin-left: 330px; }
    7948 
    7949 .menu-item-depth-0 .menu-item-transport { margin-left: 0px; }
    7950 .menu-item-depth-1 .menu-item-transport { margin-left: -30px; }
    7951 .menu-item-depth-2 .menu-item-transport { margin-left: -60px; }
    7952 .menu-item-depth-3 .menu-item-transport { margin-left: -90px; }
    7953 .menu-item-depth-4 .menu-item-transport { margin-left: -120px; }
    7954 .menu-item-depth-5 .menu-item-transport { margin-left: -150px; }
    7955 .menu-item-depth-6 .menu-item-transport { margin-left: -180px; }
    7956 .menu-item-depth-7 .menu-item-transport { margin-left: -210px; }
    7957 .menu-item-depth-8 .menu-item-transport { margin-left: -240px; }
    7958 .menu-item-depth-9 .menu-item-transport { margin-left: -270px; }
    7959 .menu-item-depth-10 .menu-item-transport { margin-left: -300px; }
    7960 .menu-item-depth-11 .menu-item-transport { margin-left: -330px; }
    7961 
    7962 body.menu-max-depth-0 { min-width: 950px !important; }
    7963 body.menu-max-depth-1 { min-width: 980px !important; }
    7964 body.menu-max-depth-2 { min-width: 1010px !important; }
    7965 body.menu-max-depth-3 { min-width: 1040px !important; }
    7966 body.menu-max-depth-4 { min-width: 1070px !important; }
    7967 body.menu-max-depth-5 { min-width: 1100px !important; }
    7968 body.menu-max-depth-6 { min-width: 1130px !important; }
    7969 body.menu-max-depth-7 { min-width: 1160px !important; }
    7970 body.menu-max-depth-8 { min-width: 1190px !important; }
    7971 body.menu-max-depth-9 { min-width: 1220px !important; }
    7972 body.menu-max-depth-10 { min-width: 1250px !important; }
    7973 body.menu-max-depth-11 { min-width: 1280px !important; }
    7974 
    7975 /* Menu item controls */
    7976 .item-type {
    7977         font-size: 12px;
    7978         padding-right: 10px;
    7979 }
    7980 
    7981 .item-controls {
    7982         font-size: 12px;
    7983         position: absolute;
    7984         right: 20px;
    7985         top: -1px;
    7986 }
    7987 
    7988 .item-controls a {
    7989         text-decoration: none;
    7990 }
    7991 
    7992 .item-controls a:hover {
    7993         cursor: pointer;
    7994 }
    7995 
    7996 .item-controls .item-order {
    7997         padding-right: 10px;
    7998 }
    7999 
    8000 .nav-menus-php .item-edit {
    8001         position: absolute;
    8002         right: -20px;
    8003         top: 0;
    8004         display: block;
    8005         width: 30px;
    8006         height: 36px;
    8007         overflow: hidden;
    8008         text-indent:-999em;
    8009         border-bottom: 1px solid;
    8010         -webkit-border-bottom-left-radius: 3px;
    8011         border-bottom-left-radius: 3px;
    8012 }
    8013 
    8014 /* Menu editing */
    8015 .menu-instructions-inactive {
    8016         display: none;
    8017 }
    8018 
    8019 .menu-item-settings {
    8020         display: block;
    8021         width: 400px;
    8022         padding: 10px 0 10px 10px;
    8023         border: solid;
    8024         border-width: 0 1px 1px 1px;
    8025         -webkit-border-bottom-right-radius: 3px;
    8026         -webkit-border-bottom-left-radius: 3px;
    8027         border-bottom-left-radius: 3px;
    8028         border-bottom-right-radius: 3px;
    8029 }
    8030 
    8031 .menu-item-settings .field-move a {
    8032         display: none;
    8033         margin: 0 2px;
    8034 }
    8035 
    8036 .menu-item-edit-active .menu-item-settings {
    8037         display: block;
    8038 }
    8039 
    8040 .menu-item-edit-inactive .menu-item-settings {
    8041         display: none;
    8042 }
    8043 
    8044 .add-menu-item-pagelinks {
    8045         margin: .5em auto;
    8046         text-align: center;
    8047 }
    8048 
    8049 .link-to-original {
    8050         display: block;
    8051         margin: 0 0 10px;
    8052         padding: 3px 5px 5px;
    8053         font-size: 12px;
    8054         font-style: italic;
    8055 }
    8056 
    8057 .link-to-original a {
    8058         padding-left: 4px;
    8059         font-style: normal;
    8060 }
    8061 
    8062 .hidden-field {
    8063         display: none;
    8064 }
    8065 
    8066 .menu-item-settings .description-thin,
    8067 .menu-item-settings .description-wide {
    8068         margin-right: 10px;
    8069         float: left;
     6884.locations-row-links {
     6885  float: left;
     6886  margin: 6px 0 0 6px;
    80706887}
    8071 
    8072 .description-thin {
    8073         width: 190px;
    8074         height: 40px;
     6888.locations-edit-menu-link,
     6889.locations-add-menu-link {
     6890  margin: 0 3px;
    80756891}
    8076 
    8077 .description-wide {
    8078         width: 390px;
     6892.locations-edit-menu-link {
     6893  padding-right: 3px;
     6894  border-right: 1px solid #ccc;
    80796895}
    8080 
    8081 .menu-item-actions {
    8082         padding-top: 15px;
     6896#wpbody .open-label {
     6897  display: block;
     6898  float: left;
    80836899}
    8084 
    8085 #cancel-save {
    8086         cursor: pointer;
     6900#wpbody .open-label span {
     6901  padding-right: 10px;
    80876902}
    8088 
    8089 /* Major/minor publishing actions (classes) */
    8090 .nav-menus-php .major-publishing-actions {
    8091         clear: both;
    8092         padding: 3px 0 5px;
     6903.js .input-with-default-title {
     6904  font-style: italic;
    80936905}
    8094 
    8095 .nav-menus-php .major-publishing-actions .publishing-action {
    8096         text-align: right;
    8097         float: right;
    8098         line-height: 23px;
    8099         margin: 2px 0 1px;
     6906#menu-management .inside {
     6907  padding: 0 10px;
    81006908}
    8101 
    8102 .nav-menus-php .blank-slate .menu-settings {
    8103         display: none;
     6909/* Add Menu Item Boxes */
     6910.postbox .howto input,
     6911.accordion-container .howto input {
     6912  width: 180px;
     6913  float: right;
    81046914}
    8105 
    8106 .nav-menus-php .delete-action {
    8107         float: left;
    8108         margin-top: 2px;
     6915.accordion-container .outer-border {
     6916  margin: 0;
    81096917}
    8110 
    8111 .nav-menus-php .submitbox .submitcancel {
    8112         border-bottom: 1px solid;
    8113         padding: 1px 2px;
    8114         text-decoration: none;
     6918#nav-menu-meta .accordion-container .top {
     6919  border-top: 1px solid #dfdfdf;
    81156920}
    8116 
    8117 .nav-menus-php .major-publishing-actions .form-invalid {
    8118         padding-left: 4px;
    8119         margin-left: -4px;
    8120         border: 0 none;
     6921#nav-menu-meta .accordion-container .accordion-section:first-child,
     6922#nav-menu-meta .accordion-container .accordion-section:first-child h3,
     6923#nav-menu-meta .accordion-container .top,
     6924#nav-menu-meta .accordion-container .top h3 {
     6925  border-top-left-radius: 3px;
     6926  border-top-right-radius: 3px;
     6927  -moz-border-top-left-radius: 3px;
     6928  -moz-border-top-right-radius: 3px;
     6929  -webkit-border-top-left-radius: 3px;
     6930  -webkit-border-top-right-radius: 3px;
    81216931}
    8122 
    8123 /* Clearfix */
    8124 #menu-item-name-wrap:after,
    8125 #menu-item-url-wrap:after,
    8126 #menu-name-label:after,
    8127 #menu-settings-column .inside:after,
    8128 #nav-menus-frame:after,
    8129 .nav-menus-php #post-body-content:after,
    8130 .nav-menus-php .button-controls:after,
    8131 .nav-menus-php .major-publishing-actions:after,
    8132 .nav-menus-php .menu-item-settings:after {
    8133         clear: both;
    8134         content: ".";
    8135         display: block;
    8136         height: 0;
    8137         visibility: hidden;
     6932#nav-menu-meta .accordion-container .accordion-section:last-child,
     6933#nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,
     6934#nav-menu-meta .accordion-container .bottom,
     6935#nav-menu-meta .accordion-container .bottom:not(.open) h3 {
     6936  border-bottom-left-radius: 3px;
     6937  border-bottom-right-radius: 3px;
     6938  -moz-border-bottom-left-radius: 3px;
     6939  -moz-border-bottom-right-radius: 3px;
     6940  -webkit-border-bottom-left-radius: 3px;
     6941  -webkit-border-bottom-right-radius: 3px;
    81386942}
    8139 
    8140 #nav-menus-frame,
    8141 .button-controls,
    8142 #menu-item-url-wrap,
    8143 #menu-item-name-wrap {
    8144         display: block;
     6943.customlinkdiv .howto input {
     6944  width: 180px;
    81456945}
    8146 
    8147 /* Star ratings */
    8148 div.star-holder {
    8149         position: relative;
    8150         height: 17px;
    8151         width: 100px;
    8152         background: url('../images/stars.png?ver=20121108') repeat-x bottom left;
     6946.customlinkdiv p {
     6947  margin-top: 0;
    81536948}
    8154 
    8155 div.star-holder .star-rating {
    8156         background: url('../images/stars.png?ver=20121108') repeat-x top left;
    8157         height: 17px;
    8158         float: left;
     6949#nav-menu-theme-locations .howto select {
     6950  width: 100%;
    81596951}
    8160 
    8161 div.action-links {
    8162         font-weight: normal;
    8163         margin: 6px 0 0;
     6952#nav-menu-theme-locations .button-controls {
     6953  text-align: right;
    81646954}
    8165 
    8166 /* Header on thickbox */
    8167 #plugin-information-header {
    8168         margin: 0;
    8169         padding: 0 5px;
    8170         font-weight: bold;
    8171         position: relative;
    8172         border-bottom-width: 1px;
    8173         border-bottom-style: solid;
    8174         height: 2.5em;
     6955.add-menu-item-view-all {
     6956  height: 400px;
    81756957}
    8176 #plugin-information ul#sidemenu {
    8177         font-weight: normal;
    8178         margin: 0 5px;
    8179         position: absolute;
    8180         left: 0;
    8181         bottom: -1px;
     6958/* Button Primary Actions */
     6959#menu-container .submit {
     6960  margin: 0 0 10px;
     6961  padding: 0;
    81826962}
    8183 
    8184 /* Install sidemenu */
    8185 #plugin-information p.action-button {
    8186         width: 100%;
    8187         padding-bottom: 0;
    8188         margin-bottom: 0;
    8189         margin-top: 10px;
    8190         -webkit-border-top-left-radius: 3px;
    8191         -webkit-border-bottom-left-radius: 3px;
    8192         border-top-left-radius: 3px;
    8193         border-bottom-left-radius: 3px;
     6963.nav-menus-php .add-new-menu-action {
     6964  float: left;
     6965  margin: 6px 0 0 6px;
     6966  line-height: 15px;
    81946967}
    8195 
    8196 #plugin-information .action-button a {
    8197         text-align: center;
    8198         font-weight: bold;
    8199         text-decoration: none;
    8200         display: block;
    8201         line-height: 2em;
     6968.nav-menus-php .meta-sep,
     6969.nav-menus-php .submitdelete,
     6970.nav-menus-php .submitcancel {
     6971  display: block;
     6972  float: left;
     6973  margin: 4px 0;
     6974  line-height: 15px;
    82026975}
    8203 
    8204 #plugin-information h2 {
    8205         clear: none !important;
    8206         margin-right: 200px;
     6976.meta-sep {
     6977  padding: 0 2px;
    82076978}
    8208 
    8209 #plugin-information .fyi {
    8210         margin: 0 10px 50px;
    8211         width: 210px;
     6979#cancel-save {
     6980  text-decoration: underline;
     6981  font-size: 12px;
     6982  margin-left: 20px;
     6983  margin-top: 5px;
    82126984}
    8213 
    8214 #plugin-information .fyi h2 {
    8215         font-size: 0.9em;
    8216         margin-bottom: 0;
    8217         margin-right: 0;
     6985.button.right,
     6986.button-secondary.right,
     6987.button-primary.right {
     6988  float: right;
    82186989}
    8219 
    8220 #plugin-information .fyi h2.mainheader {
    8221         padding: 5px;
    8222         -webkit-border-top-left-radius: 3px;
    8223         border-top-left-radius: 3px;
     6990/* Button Secondary Actions */
     6991.list-controls {
     6992  float: left;
     6993  margin-top: 5px;
    82246994}
    8225 
    8226 #plugin-information .fyi ul {
    8227         padding: 10px 5px 10px 7px;
    8228         margin: 0;
    8229         list-style: none;
    8230         -webkit-border-bottom-left-radius: 3px;
    8231         border-bottom-left-radius: 3px;
     6995.add-to-menu {
     6996  float: right;
    82326997}
    8233 
    8234 #plugin-information .fyi li {
    8235         margin-right: 0;
     6998/* Create Menu */
     6999#menu-name {
     7000  width: 270px;
    82367001}
    8237 
    8238 #plugin-information #section-holder {
    8239         padding: 10px;
     7002#manage-menu .inside {
     7003  padding: 0px 0px;
    82407004}
    8241 
    8242 #plugin-information .section ul,
    8243 #plugin-information .section ol {
    8244         margin-left: 16px;
    8245         list-style-type: square;
    8246         list-style-image: none;
     7005/* Custom Links */
     7006#available-links dt {
     7007  display: block;
    82477008}
    8248 
    8249 #plugin-information #section-screenshots ol {
    8250         list-style: none;
    8251         margin: 0;
     7009#add-custom-link .howto {
     7010  font-size: 12px;
    82527011}
    8253 
    8254 #plugin-information #section-screenshots li img {
    8255         vertical-align: text-top;
    8256         max-width: 100%;
    8257         width: auto;
    8258         height: auto;
     7012#add-custom-link label span {
     7013  display: block;
     7014  float: left;
     7015  margin-top: 5px;
     7016  padding-right: 5px;
    82597017}
    8260 
    8261 #plugin-information #section-screenshots li p {
    8262         font-style: italic;
    8263         padding-left: 20px;
    8264         padding-bottom: 2em;
     7018.menu-item-textbox {
     7019  width: 180px;
    82657020}
    8266 
    8267 #plugin-information #section-screenshots ol,
    8268 #plugin-information .updated,
    8269 #plugin-information pre {
    8270         margin-right: 215px;
     7021.nav-menus-php .howto span {
     7022  margin-top: 4px;
     7023  display: block;
     7024  float: left;
    82717025}
    8272 
    8273 #plugin-information pre {
    8274         padding: 7px;
    8275         overflow: auto;
     7026/* Menu item types */
     7027.quick-search {
     7028  width: 190px;
    82767029}
    8277 
    8278 /* press-this */
    8279 body.press-this {
    8280         color: #333;
    8281         margin: 0;
    8282         padding: 0;
    8283         min-width: 675px;
    8284         min-height: 400px;
     7030.nav-menus-php .list-wrap {
     7031  display: none;
     7032  clear: both;
     7033  margin-bottom: 10px;
    82857034}
    8286 
    8287 img {
    8288         border: none;
     7035.nav-menus-php .list-container {
     7036  max-height: 200px;
     7037  overflow-y: auto;
     7038  padding: 10px 10px 5px;
    82897039}
    8290 
    8291 /* Header */
    8292 .press-this #wphead {
    8293         height: 32px;
    8294         margin-left: 0;
    8295         margin-right: 0;
    8296         margin-bottom: 5px;
     7040.nav-menus-php .postbox p.submit {
     7041  margin-bottom: 0;
    82977042}
    8298 
    8299 .press-this #header-logo {
    8300         float: left;
    8301         margin: 7px 7px 0;
    8302         -webkit-user-select: none;
    8303         -moz-user-select: none;
    8304         user-select: none;
     7043/* Listings */
     7044.nav-menus-php .list li {
     7045  display: none;
     7046  margin: 0;
     7047  margin-bottom: 5px;
    83057048}
    8306 
    8307 .press-this #wphead h1 {
    8308         font-weight: normal;
    8309         font-size: 16px;
    8310         line-height: 32px;
    8311         margin: 0;
    8312         float: left;
     7049.nav-menus-php .list li .menu-item-title {
     7050  cursor: pointer;
     7051  display: block;
    83137052}
    8314 
    8315 .press-this #wphead h1 a {
    8316         text-decoration: none;
     7053.nav-menus-php .list li .menu-item-title input {
     7054  margin-right: 3px;
     7055  margin-top: -3px;
    83177056}
    8318 
    8319 .press-this #wphead h1 a:hover {
    8320         text-decoration: underline;
     7057/* Nav Menu */
     7058#menu-container .inside {
     7059  padding-bottom: 10px;
    83217060}
    8322 
    8323 .press-this #message {
    8324         margin: 10px 0;
     7061.menu {
     7062  padding-top: 1em;
    83257063}
    8326 
    8327 .press-this-sidebar {
    8328         float: right;
    8329         width: 200px;
    8330         padding-top: 10px;
     7064.menu ul {
     7065  width: 100%;
    83317066}
    8332 
    8333 .press-this #title {
    8334         margin-left: 0;
    8335         margin-right: 0;
    8336         -moz-box-sizing: border-box;
    8337         -webkit-box-sizing: border-box;
    8338         -ms-box-sizing: border-box;
    8339         box-sizing: border-box;
     7067.menu li {
     7068  margin-bottom: 0;
     7069  position: relative;
    83407070}
    8341 
    8342 .press-this .tagchecklist span a {
    8343         background: transparent url(../images/xit.gif) no-repeat 0 0;
     7071#menu-to-edit {
     7072  margin: 0;
     7073  padding: 0.1em 0;
    83447074}
    8345 
    8346 .press-this #titlediv {
    8347         margin: 0;
     7075.menu-item-bar {
     7076  clear: both;
     7077  line-height: 1.5em;
     7078  position: relative;
     7079  margin: 9px 0 0;
    83487080}
    8349 
    8350 .press-this .wp-media-buttons {
    8351         cursor: default;
    8352         padding: 8px 8px 0;
     7081.menu-item-handle {
     7082  border: 1px solid #dfdfdf;
     7083  position: relative;
     7084  padding-left: 10px;
     7085  height: auto;
     7086  width: 400px;
     7087  line-height: 35px;
     7088  text-shadow: 0 1px 0 #FFFFFF;
     7089  overflow: hidden;
     7090  word-wrap: break-word;
    83537091}
    8354 
    8355 .press-this .howto {
    8356         margin-top: 2px;
    8357         margin-bottom: 3px;
    8358         font-size: 12px;
    8359         font-style: italic;
    8360         display: block;
     7092#menu-to-edit .menu-item-invalid .menu-item-handle {
     7093  background: #fdf8ff;
     7094  background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff));
     7095  background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff);
     7096  background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff);
     7097  background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff);
     7098  background-image: linear-gradient(to top, #f6c9cc, #fdf8ff);
    83617099}
    8362 
    8363 /* Editor/Main Column */
    8364 .press-this #poststuff {
    8365         margin: 0 10px 10px;
    8366         padding: 0;
     7100.menu-item-edit-active .menu-item-handle {
     7101  border-bottom-left-radius: 0;
     7102  border-bottom-right-radius: 0;
     7103  -moz-border-bottom-left-radius: 0;
     7104  -moz-border-bottom-right-radius: 0;
     7105  -webkit-border-bottom-left-radius: 0;
     7106  -webkit-border-bottom-right-radius: 0;
    83677107}
    8368 
    8369 .press-this #photo-add-url-div input[type="text"] {
    8370         width: 220px;
     7108.no-js .menu-item-edit-active .item-edit {
     7109  display: none;
    83717110}
    8372 
    8373 #poststuff #editor-toolbar {
    8374         height: 30px;
     7111.js .menu-item-handle {
     7112  cursor: move;
    83757113}
    8376 
    8377 div.zerosize {
    8378         border: 0 none;
    8379         height: 0;
    8380         margin: 0;
    8381         overflow: hidden;
    8382         padding: 0;
    8383         width: 0;
     7114.menu li.deleting .menu-item-handle {
     7115  background-image: none;
     7116  text-shadow: 0 0 0;
    83847117}
    8385 
    8386 .posting {
    8387         margin-right: 212px;
    8388         position: relative;
     7118.menu-item-handle .item-title {
     7119  font-size: 12px;
     7120  font-weight: bold;
     7121  padding: 7px 0;
     7122  line-height: 20px;
     7123  display: block;
     7124  margin-right: 13em;
    83897125}
    8390 
    8391 .press-this .inner-sidebar {
    8392         width: 200px;
     7126/* Sortables */
     7127li.menu-item.ui-sortable-helper dl {
     7128  margin-top: 0;
    83937129}
    8394 
    8395 .press-this .inner-sidebar .sleeve {
    8396         padding-top: 5px;
     7130li.menu-item.ui-sortable-helper .menu-item-transport dl {
     7131  margin-top: 13px;
    83977132}
    8398 
    8399 .press-this #submitdiv p {
    8400         margin: 0;
    8401         padding: 6px;
     7133.menu .sortable-placeholder {
     7134  height: 35px;
     7135  width: 410px;
     7136  margin-top: 13px;
    84027137}
    8403 
    8404 .press-this #submitdiv #publishing-actions {
    8405         border-bottom: 1px solid #dfdfdf;
     7138/* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
     7139.menu-item-depth-0 {
     7140  margin-left: 0px;
    84067141}
    8407 
    8408 .press-this #publish {
    8409         float: right;
     7142.menu-item-depth-1 {
     7143  margin-left: 30px;
    84107144}
    8411 
    8412 .press-this #poststuff h2,
    8413 .press-this #poststuff h3 {
    8414         font-size: 14px;
    8415         line-height: 1;
     7145.menu-item-depth-2 {
     7146  margin-left: 60px;
    84167147}
    8417 
    8418 .press-this #tagsdiv-post_tag h3,
    8419 .press-this #categorydiv h3 {
    8420         cursor: pointer;
     7148.menu-item-depth-3 {
     7149  margin-left: 90px;
    84217150}
    8422 
    8423 .press-this #submitdiv h3 {
    8424         cursor: default;
     7151.menu-item-depth-4 {
     7152  margin-left: 120px;
    84257153}
    8426 
    8427 h3.tb {
    8428         text-shadow: 0 1px 0 #fff;
    8429         font-weight: bold;
    8430         font-size: 12px;
    8431         margin-left: 5px;
     7154.menu-item-depth-5 {
     7155  margin-left: 150px;
    84327156}
    8433 
    8434 #TB_window {
    8435         border: 1px solid #333;
     7157.menu-item-depth-6 {
     7158  margin-left: 180px;
    84367159}
    8437 
    8438 .press-this .postbox,
    8439 .press-this .stuffbox {
    8440         margin-bottom: 10px;
    8441         min-width: 0;
     7160.menu-item-depth-7 {
     7161  margin-left: 210px;
    84427162}
    8443 
    8444 .js .postbox:hover .handlediv,
    8445 .js .stuffbox:hover .handlediv {
    8446         background: transparent url(../images/arrows.png) no-repeat 6px 7px;
     7163.menu-item-depth-8 {
     7164  margin-left: 240px;
    84477165}
    8448 
    8449 .press-this #submitdiv:hover .handlediv {
    8450         background: none;
     7166.menu-item-depth-9 {
     7167  margin-left: 270px;
    84517168}
    8452 
    8453 .tbtitle {
    8454         font-size: 1.7em;
    8455         outline: none;
    8456         padding: 3px 4px;
    8457         border-color: #dfdfdf;
     7169.menu-item-depth-10 {
     7170  margin-left: 300px;
    84587171}
    8459 
    8460 .press-this .actions {
    8461         float: right;
    8462         margin: -19px 0 0;
     7172.menu-item-depth-11 {
     7173  margin-left: 330px;
    84637174}
    8464 
    8465 .press-this #extra-fields .actions {
    8466         margin: -32px -7px 0 0;
     7175.menu-item-depth-0 .menu-item-transport {
     7176  margin-left: 0px;
    84677177}
    8468 
    8469 .press-this .actions li {
    8470         float: left;
    8471         list-style: none;
    8472         margin-right: 10px;
     7178.menu-item-depth-1 .menu-item-transport {
     7179  margin-left: -30px;
    84737180}
    8474 
    8475 #extra-fields .button {
    8476         margin-right: 5px;
     7181.menu-item-depth-2 .menu-item-transport {
     7182  margin-left: -60px;
    84777183}
    8478 
    8479 /* Photo Styles */
    8480 #photo_saving {
    8481         margin: 0 8px 8px;
    8482         vertical-align: middle;
     7184.menu-item-depth-3 .menu-item-transport {
     7185  margin-left: -90px;
    84837186}
    8484 
    8485 #img_container_container {
    8486         overflow: auto;
     7187.menu-item-depth-4 .menu-item-transport {
     7188  margin-left: -120px;
    84877189}
    8488 
    8489 #extra-fields {
    8490         margin-top: 10px;
    8491         position: relative;
     7190.menu-item-depth-5 .menu-item-transport {
     7191  margin-left: -150px;
    84927192}
    8493 
    8494 #extra-fields h2 {
    8495         margin: 12px;
     7193.menu-item-depth-6 .menu-item-transport {
     7194  margin-left: -180px;
    84967195}
    8497 
    8498 #waiting {
    8499         margin-top: 10px;
    8500         overflow: hidden;
     7196.menu-item-depth-7 .menu-item-transport {
     7197  margin-left: -210px;
    85017198}
    8502 
    8503 #waiting span {
    8504         float: right;
    8505         margin: 0 0 0 5px;
     7199.menu-item-depth-8 .menu-item-transport {
     7200  margin-left: -240px;
    85067201}
    8507 
    8508 #waiting .spinner {
    8509         display: block;
     7202.menu-item-depth-9 .menu-item-transport {
     7203  margin-left: -270px;
    85107204}
    8511 
    8512 #extra-fields .postbox {
    8513         margin-bottom: 5px;
     7205.menu-item-depth-10 .menu-item-transport {
     7206  margin-left: -300px;
    85147207}
    8515 
    8516 #extra-fields .titlewrap {
    8517         padding: 0;
    8518         overflow: auto;
    8519         height: 100px;
     7208.menu-item-depth-11 .menu-item-transport {
     7209  margin-left: -330px;
    85207210}
    8521 
    8522 #img_container a {
    8523         display: block;
    8524         float: left;
    8525         overflow: hidden;
     7211body.menu-max-depth-0 {
     7212  min-width: 950px !important;
    85267213}
    8527 
    8528 #img_container img,
    8529 #img_container a {
    8530         width: 68px;
    8531         height: 68px;
     7214body.menu-max-depth-1 {
     7215  min-width: 980px !important;
    85327216}
    8533 
    8534 #img_container img {
    8535         border: none;
    8536         background-color: #f4f4f4;
    8537         cursor: pointer;
     7217body.menu-max-depth-2 {
     7218  min-width: 1010px !important;
    85387219}
    8539 
    8540 #img_container a,
    8541 #img_container a:link,
    8542 #img_container a:visited {
    8543         border: 1px solid #ccc;
    8544         display: block;
    8545         position: relative;
     7220body.menu-max-depth-3 {
     7221  min-width: 1040px !important;
    85467222}
    8547 
    8548 #img_container a:hover,
    8549 #img_container a:active {
    8550         border-color: #000;
    8551         z-index: 1000;
    8552         border-width: 2px;
    8553         margin: -1px;
     7223body.menu-max-depth-4 {
     7224  min-width: 1070px !important;
    85547225}
    8555 
    8556 /* Video */
    8557 #embed-code {
    8558         width: 100%;
    8559         height: 98px;
     7226body.menu-max-depth-5 {
     7227  min-width: 1100px !important;
    85607228}
    8561 
    8562 /* Categories */
    8563 .press-this .categorydiv div.tabs-panel {
    8564         height: 100px;
     7229body.menu-max-depth-6 {
     7230  min-width: 1130px !important;
    85657231}
    8566 
    8567 /* Tags */
    8568 .press-this .tagsdiv .newtag {
    8569         width: 120px;
     7232body.menu-max-depth-7 {
     7233  min-width: 1160px !important;
    85707234}
    8571 
    8572 .press-this #content {
    8573         margin: 5px 0;
    8574         padding: 0 5px;
    8575         border: 0 none;
    8576         height: 345px;
    8577         font-family: Consolas, Monaco, monospace;
    8578         font-size: 13px;
    8579         line-height: 19px;
    8580         background: transparent;
     7235body.menu-max-depth-8 {
     7236  min-width: 1190px !important;
    85817237}
    8582 
    8583 /* Submit */
    8584 .press-this #publishing-actions .spinner {
    8585         display: inline;
    8586         vertical-align: middle;
     7238body.menu-max-depth-9 {
     7239  min-width: 1220px !important;
    85877240}
    8588 
    8589 #TB_ajaxContent #options {
    8590         position: absolute;
    8591         top: 20px;
    8592         right: 25px;
    8593         padding: 5px;
     7241body.menu-max-depth-10 {
     7242  min-width: 1250px !important;
    85947243}
    8595 
    8596 #TB_ajaxContent h3 {
    8597         margin-bottom: .25em;
     7244body.menu-max-depth-11 {
     7245  min-width: 1280px !important;
    85987246}
    8599 
    8600 .error a {
    8601         text-decoration: underline;
     7247/* Menu item controls */
     7248.item-type {
     7249  font-size: 12px;
     7250  padding-right: 10px;
     7251}
     7252.item-controls {
     7253  font-size: 12px;
     7254  position: absolute;
     7255  right: 20px;
     7256  top: -1px;
    86027257}
    8603 
    8604 .updated a {
    8605         text-decoration: none;
    8606         padding-bottom: 2px;
     7258.item-controls a {
     7259  text-decoration: none;
    86077260}
    8608 
    8609 /* tag hints */
    8610 .taghint {
    8611         color: #aaa;
    8612         margin: -17px 0 0 7px;
    8613         visibility: hidden;
     7261.item-controls a:hover {
     7262  cursor: pointer;
    86147263}
    8615 
    8616 input.newtag ~ div.taghint {
    8617         visibility: visible;
     7264.item-controls .item-order {
     7265  padding-right: 10px;
    86187266}
    8619 
    8620 input.newtag:focus ~ div.taghint {
    8621         visibility: hidden;
     7267.nav-menus-php .item-edit {
     7268  position: absolute;
     7269  right: -20px;
     7270  top: 0;
     7271  display: block;
     7272  width: 30px;
     7273  height: 36px;
     7274  overflow: hidden;
     7275  text-indent: -999em;
     7276  border-bottom: 1px solid;
     7277  -moz-border-bottom-left-radius: 3px;
     7278  -webkit-border-bottom-left-radius: 3px;
     7279  border-bottom-left-radius: 3px;
    86227280}
    8623 
    8624 /* TinyMCE */
    8625 #mce_fullscreen_container {
    8626         background: #fff;
     7281/* Menu editing */
     7282.menu-instructions-inactive {
     7283  display: none;
    86277284}
    8628 
    8629 #photo-add-url-div input[type="text"] {
    8630         width: 300px;
     7285.menu-item-settings {
     7286  display: block;
     7287  width: 400px;
     7288  padding: 10px 0 10px 10px;
     7289  border: solid;
     7290  border-width: 0 1px 1px 1px;
     7291  border-bottom-left-radius: 3px;
     7292  border-bottom-right-radius: 3px;
     7293  -moz-border-bottom-left-radius: 3px;
     7294  -moz-border-bottom-right-radius: 3px;
     7295  -webkit-border-bottom-left-radius: 3px;
     7296  -webkit-border-bottom-right-radius: 3px;
    86317297}
    8632 
    8633 /* theme-editor */
    8634 .alignleft h3 {
    8635         margin: 0;
     7298.menu-item-settings .field-move a {
     7299  display: none;
     7300  margin: 0 2px;
    86367301}
    8637 
    8638 h3 span {
    8639         font-weight: normal;
     7302.menu-item-edit-active .menu-item-settings {
     7303  display: block;
    86407304}
    8641 
    8642 #template textarea {
    8643         font-family: Consolas, Monaco, monospace;
    8644         font-size: 12px;
    8645         width: 97%;
    8646         background: #f9f9f9;
    8647         outline: none;
     7305.menu-item-edit-inactive .menu-item-settings {
     7306  display: none;
    86487307}
    8649 
    8650 #template p {
    8651         width: 97%;
     7308.menu-item-settings .description-thin,
     7309.menu-item-settings .description-wide {
     7310  margin-right: 10px;
     7311  float: left;
    86527312}
    8653 
    8654 #templateside {
    8655         float: right;
    8656         width: 190px;
    8657         word-wrap: break-word;
     7313.add-menu-item-pagelinks {
     7314  margin: .5em auto;
     7315  text-align: center;
    86587316}
    8659 
    8660 #templateside h3,
    8661 #postcustomstuff p.submit {
    8662         margin: 0;
     7317.link-to-original {
     7318  display: block;
     7319  margin: 0 0 10px;
     7320  padding: 3px 5px 5px;
     7321  font-size: 12px;
     7322  font-style: italic;
    86637323}
    8664 
    8665 #templateside h4 {
    8666         margin: 1em 0 0;
     7324.link-to-original a {
     7325  padding-left: 4px;
     7326  font-style: normal;
    86677327}
    8668 
    8669 #templateside ol,
    8670 #templateside ul {
    8671         margin: .5em;
    8672         padding: 0;
     7328.hidden-field {
     7329  display: none;
    86737330}
    8674 
    8675 #templateside li {
    8676         margin: 4px 0;
     7331.description-thin {
     7332  width: 190px;
     7333  height: 40px;
    86777334}
    8678 
    8679 #templateside ul li a span.highlight {
    8680         display:block;
     7335.description-wide {
     7336  width: 390px;
    86817337}
    8682 
    8683 .nonessential {
    8684         font-size: 11px;
    8685         font-style: italic;
    8686         padding-left: 12px;
     7338.menu-item-actions {
     7339  padding-top: 15px;
    86877340}
    8688 
    8689 .highlight {
    8690         padding: 3px 3px 3px 12px;
    8691         margin-left: -12px;
    8692         font-weight: bold;
    8693         border: 0 none;
     7341#cancel-save {
     7342  cursor: pointer;
    86947343}
    8695 
    8696 #documentation {
    8697         margin-top: 10px;
     7344/* Major/minor publishing actions (classes) */
     7345.nav-menus-php .major-publishing-actions {
     7346  clear: both;
     7347  padding: 3px 0 5px;
    86987348}
    8699 #documentation label {
    8700         line-height: 22px;
    8701         vertical-align: top;
    8702         font-weight: bold;
     7349.nav-menus-php .major-publishing-actions .publishing-action {
     7350  text-align: right;
     7351  float: right;
     7352  line-height: 23px;
     7353  margin: 2px 0 1px;
    87037354}
    8704 
    8705 .fileedit-sub {
    8706         padding: 10px 0 8px;
    8707         line-height: 180%;
     7355.nav-menus-php .major-publishing-actions .form-invalid {
     7356  padding-left: 4px;
     7357  margin-left: -4px;
     7358  border: 0 none;
    87087359}
    8709 
    8710 #filter-box {
    8711         clear: both;
     7360.nav-menus-php .blank-slate .menu-settings {
     7361  display: none;
    87127362}
    8713 
    8714 .feature-filter {
    8715         padding: 8px 12px 0;
     7363.nav-menus-php .delete-action {
     7364  float: left;
     7365  margin-top: 2px;
    87167366}
    8717 
    8718 .feature-filter .feature-group {
    8719         float: left;
    8720         margin: 5px 10px 10px;
     7367.nav-menus-php .submitbox .submitcancel {
     7368  border-bottom: 1px solid;
     7369  padding: 1px 2px;
     7370  text-decoration: none;
    87217371}
    8722 
    8723 .feature-filter .feature-group li {
    8724         display: inline-block;
    8725         vertical-align: top;
    8726         list-style-type: none;
    8727         padding-right: 25px;
    8728         width: 150px;
     7372/* Clearfix */
     7373#menu-item-name-wrap:after,
     7374#menu-item-url-wrap:after,
     7375#menu-name-label:after,
     7376#menu-settings-column .inside:after,
     7377#nav-menus-frame:after,
     7378.nav-menus-php #post-body-content:after,
     7379.nav-menus-php .button-controls:after,
     7380.nav-menus-php .major-publishing-actions:after,
     7381.nav-menus-php .menu-item-settings:after {
     7382  clear: both;
     7383  content: ".";
     7384  display: block;
     7385  height: 0;
     7386  visibility: hidden;
    87297387}
    8730 
    8731 .feature-container {
    8732         width: 100%;
    8733         overflow: auto;
    8734         margin-bottom: 10px;
     7388#nav-menus-frame,
     7389.button-controls,
     7390#menu-item-url-wrap,
     7391#menu-item-name-wrap {
     7392  display: block;
    87357393}
    8736 
    87377394/* widgets */
    8738 
    87397395/* 2 column liquid layout */
    87407396div.widget-liquid-left {
    8741         float: left;
    8742         clear: left;
    8743         width: 100%;
    8744         margin-right: -325px;
     7397  float: left;
     7398  clear: left;
     7399  width: 100%;
     7400  margin-right: -325px;
    87457401}
    8746 
    87477402div#widgets-left {
    8748         margin-left: 5px;
    8749         margin-right: 325px;
     7403  margin-left: 5px;
     7404  margin-right: 325px;
    87507405}
    8751 
    87527406div#widgets-right {
    8753         width: 285px;
    8754         margin: 0 auto;
     7407  width: 285px;
     7408  margin: 0 auto;
    87557409}
    8756 
    87577410div.widget-liquid-right {
    8758         float: right;
    8759         clear: right;
    8760         width: 300px;
     7411  float: right;
     7412  clear: right;
     7413  width: 300px;
    87617414}
    8762 
    87637415.widget-liquid-right .widget,
    87647416.inactive-sidebar .widget,
    87657417.widget-liquid-right .sidebar-description {
    8766         width: 250px;
    8767         margin: 0 auto 20px;
    8768         overflow: hidden;
     7418  width: 250px;
     7419  margin: 0 auto 20px;
     7420  overflow: hidden;
    87697421}
    8770 
    87717422.widget-liquid-right .sidebar-description {
    8772         margin-bottom: 10px;
     7423  margin-bottom: 10px;
    87737424}
    8774 
    87757425.inactive-sidebar .widget {
    8776         margin: 0 10px 20px;
    8777         display: inline-block;
    8778 }
    8779 
    8780 div.sidebar-name h3 {
    8781         font-weight: normal;
    8782         font-size: 15px;
    8783         margin: 0;
    8784         padding: 8px 10px;
    8785         overflow: hidden;
    8786         white-space: nowrap;
     7426  margin: 0 10px 20px;
     7427  display: inline-block;
    87877428}
    8788 
    87897429div.sidebar-name {
    8790         font-size: 13px;
    8791         border-width: 1px;
    8792         border-style: solid;
    8793         -webkit-border-top-right-radius: 3px;
    8794         -webkit-border-top-left-radius: 3px;
    8795         border-top-right-radius: 3px;
    8796         border-top-left-radius: 3px;
     7430  font-size: 13px;
     7431  border-width: 1px;
     7432  border-style: solid;
     7433  border-top-left-radius: 3px;
     7434  border-top-right-radius: 3px;
     7435  -moz-border-top-left-radius: 3px;
     7436  -moz-border-top-right-radius: 3px;
     7437  -webkit-border-top-left-radius: 3px;
     7438  -webkit-border-top-right-radius: 3px;
     7439}
     7440div.sidebar-name h3 {
     7441  font-weight: normal;
     7442  font-size: 15px;
     7443  margin: 0;
     7444  padding: 8px 10px;
     7445  overflow: hidden;
     7446  white-space: nowrap;
    87977447}
    8798 
    87997448.js .sidebar-name {
    8800         cursor: pointer;
     7449  cursor: pointer;
    88017450}
    8802 
    88037451.js .closed .sidebar-name {
    8804         -webkit-border-bottom-right-radius: 3px;
    8805         -webkit-border-bottom-left-radius: 3px;
    8806         border-bottom-right-radius: 3px;
    8807         border-bottom-left-radius: 3px;
     7452  border-bottom-left-radius: 3px;
     7453  border-bottom-right-radius: 3px;
     7454  -moz-border-bottom-left-radius: 3px;
     7455  -moz-border-bottom-right-radius: 3px;
     7456  -webkit-border-bottom-left-radius: 3px;
     7457  -webkit-border-bottom-right-radius: 3px;
    88087458}
    8809 
    88107459.widget-liquid-right .widgets-sortables,
    88117460#widgets-left .widget-holder {
    8812         border-width: 0 1px 1px;
    8813         border-style: none solid solid;
    8814         -webkit-border-bottom-right-radius: 3px;
    8815         -webkit-border-bottom-left-radius: 3px;
    8816         border-bottom-right-radius: 3px;
    8817         border-bottom-left-radius: 3px;
     7461  border-width: 0 1px 1px;
     7462  border-style: none solid solid;
     7463  border-bottom-left-radius: 3px;
     7464  border-bottom-right-radius: 3px;
     7465  -moz-border-bottom-left-radius: 3px;
     7466  -moz-border-bottom-right-radius: 3px;
     7467  -webkit-border-bottom-left-radius: 3px;
     7468  -webkit-border-bottom-right-radius: 3px;
    88187469}
    8819 
    88207470.js .closed .widgets-sortables,
    88217471.js .closed .widget-holder {
    8822         display: none;
     7472  display: none;
    88237473}
    8824 
    88257474.widget-liquid-right .widgets-sortables {
    8826         padding: 15px 0 0;
     7475  padding: 15px 0 0;
    88277476}
    8828 
    88297477#available-widgets .widget-holder {
    8830         padding: 7px 5px 0;
     7478  padding: 7px 5px 0;
    88317479}
    8832 
    88337480#available-widgets .widget {
    8834         -webkit-box-shadow: none;
    8835         box-shadow: none;
     7481  -moz-box-shadow: none;
     7482  -webkit-box-shadow: none;
     7483  box-shadow: none;
    88367484}
    8837 
    88387485.inactive-sidebar {
    8839         padding: 5px 5px 0;
     7486  padding: 5px 5px 0;
    88407487}
    8841 
    88427488#widget-list .widget {
    8843         width: 250px;
    8844         margin: 0 10px 15px;
    8845         border: 0 none;
    8846         background: transparent;
    8847         display: inline-block;
    8848         vertical-align: top;
     7489  width: 250px;
     7490  margin: 0 10px 15px;
     7491  border: 0 none;
     7492  background: transparent;
     7493  display: inline-block;
     7494  vertical-align: top;
    88497495}
    8850 
    88517496#widget-list .widget-description {
    8852         padding: 5px 8px;
     7497  padding: 5px 8px;
    88537498}
    8854 
    88557499.widget-placeholder {
    8856         border-width: 1px;
    8857         border-style: dashed;
    8858         margin: 0 auto 20px;
    8859         height: 27px;
    8860         width: 250px;
     7500  border-width: 1px;
     7501  border-style: dashed;
     7502  margin: 0 auto 20px;
     7503  height: 27px;
     7504  width: 250px;
    88617505}
    8862 
    88637506.inactive-sidebar .widget-placeholder {
    8864         margin: 0 10px 20px;
    8865         float: left;
     7507  margin: 0 10px 20px;
     7508  float: left;
    88667509}
    8867 
    88687510div.widgets-holder-wrap {
    8869         padding: 0;
    8870         margin: 10px 0 20px;
     7511  padding: 0;
     7512  margin: 10px 0 20px;
    88717513}
    8872 
    88737514#widgets-left #available-widgets {
    8874         background-color: transparent;
    8875         border: 0 none;
     7515  background-color: transparent;
     7516  border: 0 none;
    88767517}
    8877 
    88787518ul#widget-list {
    8879         list-style: none;
    8880         margin: 0;
    8881         padding: 0;
    8882         min-height: 100px;
     7519  list-style: none;
     7520  margin: 0;
     7521  padding: 0;
     7522  min-height: 100px;
    88837523}
    8884 
    88857524.widget .widget-top {
    8886         margin-bottom: -1px;
    8887         font-size: 12px;
    8888         font-weight: bold;
    8889         height: 26px;
    8890         overflow: hidden;
    8891 }
    8892 
    8893 .widget-top .widget-title {
    8894         padding: 7px 9px;
    8895 }
    8896 
    8897 .widget-top .widget-title-action {
    8898         float: right;
     7525  margin-bottom: -1px;
     7526  font-size: 12px;
     7527  font-weight: bold;
     7528  line-height: 26px;
     7529  overflow: hidden;
    88997530}
    8900 
    89017531a.widget-action {
    8902         display: block;
    8903         width: 24px;
    8904         height: 26px;
     7532  display: block;
     7533  width: 24px;
     7534  height: 26px;
    89057535}
    8906 
    89077536#available-widgets a.widget-action {
    8908         display: none;
     7537  display: none;
     7538}
     7539.widget-top .widget-title {
     7540  padding: 7px 9px;
     7541}
     7542.widget-top .widget-title-action {
     7543  float: right;
    89097544}
    8910 
    89117545.widget-top a.widget-action {
    8912         background: transparent url(../images/arrows.png) no-repeat 4px 6px;
     7546  background: transparent url(../images/arrows.png) no-repeat 4px 6px;
    89137547}
    8914 
    89157548.widget-top a.widget-action:hover {
    8916         background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px;
     7549  background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px;
    89177550}
    8918 
    89197551.widget .widget-inside,
    89207552.widget .widget-description {
    8921         padding: 12px 12px 10px;
    8922         font-size: 12px;
    8923         line-height: 16px;
     7553  padding: 12px 12px 10px;
     7554  font-size: 12px;
     7555  line-height: 16px;
    89247556}
    8925 
    89267557.widget-inside,
    89277558.widget-description {
    8928         display: none;
     7559  display: none;
    89297560}
    8930 
    89317561#available-widgets .widget-description {
    8932         display: block;
     7562  display: block;
    89337563}
    8934 
    89357564.widget .widget-inside p {
    8936         margin: 0 0 1em;
    8937         padding: 0;
     7565  margin: 0 0 1em;
     7566  padding: 0;
    89387567}
    8939 
    89407568.widget-title h4 {
    8941         margin: 0;
    8942         padding-bottom: 0.2em;
    8943         line-height: 1;
    8944         overflow: hidden;
    8945         white-space: nowrap;
     7569  margin: 0;
     7570  padding-bottom: 0.2em;
     7571  line-height: 1;
     7572  overflow: hidden;
     7573  white-space: nowrap;
    89467574}
    8947 
    89487575.widgets-sortables {
    8949         min-height: 90px;
     7576  min-height: 90px;
    89507577}
    8951 
    89527578.widget-control-actions {
    8953         margin-top: 8px;
     7579  margin-top: 8px;
    89547580}
    8955 
    89567581.widget-control-actions a {
    8957         text-decoration: none;
     7582  text-decoration: none;
    89587583}
    8959 
    89607584.widget-control-actions a:hover {
    8961         text-decoration: underline;
     7585  text-decoration: underline;
    89627586}
    8963 
    89647587.widget-control-actions div.alignleft {
    8965         margin-top: 6px;
     7588  margin-top: 6px;
    89667589}
    8967 
    89687590div#sidebar-info {
    8969         padding: 0 1em;
    8970         margin-bottom: 1em;
    8971         font-size: 12px;
     7591  padding: 0 1em;
     7592  margin-bottom: 1em;
     7593  font-size: 12px;
    89727594}
    8973 
    89747595.widget-title a,
    89757596.widget-title a:hover {
    8976         text-decoration: none;
    8977         border-bottom: none;
     7597  text-decoration: none;
     7598  border-bottom: none;
    89787599}
    8979 
    89807600.widget-control-edit {
    8981         display: block;
    8982         font-size: 12px;
    8983         font-weight: normal;
    8984         line-height: 26px;
    8985         padding: 0 8px 0 0;
    8986 }
    8987 
    8988 a.widget-control-edit {
    8989         text-decoration: none;
     7601  display: block;
     7602  font-size: 12px;
     7603  font-weight: normal;
     7604  line-height: 26px;
     7605  padding: 0 8px 0 0;
    89907606}
    8991 
    89927607.widget-control-edit .add,
    89937608.widget-control-edit .edit {
    8994         display: none;
     7609  display: none;
     7610}
     7611a.widget-control-edit {
     7612  text-decoration: none;
    89957613}
    8996 
    89977614#available-widgets .widget-control-edit .add,
    89987615#widgets-right .widget-control-edit .edit,
    89997616.inactive-sidebar .widget-control-edit .edit {
    9000         display: inline;
     7617  display: inline;
    90017618}
    9002 
    90037619.editwidget {
    9004         margin: 0 auto 15px;
     7620  margin: 0 auto 15px;
    90057621}
    9006 
    90077622.editwidget .widget-inside {
    9008         display: block;
    9009         padding: 10px;
     7623  display: block;
     7624  padding: 10px;
    90107625}
    9011 
    90127626.inactive p.description {
    9013         margin: 5px 15px 10px;
     7627  margin: 5px 15px 10px;
    90147628}
    9015 
    90167629#available-widgets p.description {
    9017         margin: 0 12px 12px;
     7630  margin: 0 12px 12px;
    90187631}
    9019 
    90207632.widget-position {
    9021         margin-top: 8px;
     7633  margin-top: 8px;
    90227634}
    9023 
    90247635.inactive {
    9025         padding-top: 2px;
     7636  padding-top: 2px;
    90267637}
    9027 
    90287638.sidebar-name .spinner {
    9029         float: none;
    9030         margin: 0 3px -3px;
     7639  float: none;
     7640  margin: 0 3px -3px;
    90317641}
    9032 
    90337642.sidebar-name-arrow {
    9034         float: right;
    9035         height: 29px;
    9036         width: 26px;
     7643  float: right;
     7644  height: 29px;
     7645  width: 26px;
    90377646}
    9038 
    90397647.widget-title .in-widget-title {
    9040         font-size: 12px;
    9041         white-space: nowrap;
     7648  font-size: 12px;
     7649  white-space: nowrap;
    90427650}
    9043 
    90447651#removing-widget {
    9045         display: none;
    9046         font-weight: normal;
    9047         padding-left: 15px;
    9048         font-size: 12px;
    9049         line-height: 1;
     7652  display: none;
     7653  padding-left: 15px;
     7654  font-size: 12px;
     7655  font-weight: normal;
     7656  line-height: 1;
    90507657}
    9051 
    90527658.widget-control-noform,
    90537659#access-off,
    90547660.widgets_access .widget-action,
    90557661.widgets_access .sidebar-name-arrow,
    90567662.widgets_access #access-on,
    90577663.widgets_access .widget-holder .description {
    9058         display: none;
     7664  display: none;
    90597665}
    9060 
    90617666.widgets_access .widget-holder,
    90627667.widgets_access #widget-list {
    9063         padding-top: 10px;
     7668  padding-top: 10px;
    90647669}
    9065 
    90667670.widgets_access #access-off {
    9067         display: inline;
     7671  display: inline;
    90687672}
    9069 
    90707673.widgets_access #wpbody-content .widget-title-action,
    90717674.widgets_access #wpbody-content .widget-control-edit,
    90727675.widgets_access .closed .widgets-sortables,
    90737676.widgets_access .closed .widget-holder {
    9074         display: block;
     7677  display: block;
    90757678}
    9076 
    90777679.widgets_access .closed .sidebar-name {
    9078         -webkit-border-bottom-right-radius: 0;
    9079         -webkit-border-bottom-left-radius: 0;
    9080         border-bottom-right-radius: 0;
    9081         border-bottom-left-radius: 0;
     7680  border-bottom-left-radius: 0;
     7681  border-bottom-right-radius: 0;
     7682  -moz-border-bottom-left-radius: 0;
     7683  -moz-border-bottom-right-radius: 0;
     7684  -webkit-border-bottom-left-radius: 0;
     7685  -webkit-border-bottom-right-radius: 0;
    90827686}
    9083 
    90847687.widgets_access .sidebar-name,
    90857688.widgets_access .widget .widget-top {
    9086         cursor: default;
    9087 }
    9088 
    9089 /* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
    9090 .ui-sortable,
    9091 .ui-draggable {
    9092         -ms-touch-action: none;
     7689  cursor: default;
    90937690}
    9094 
    90957691/* Accordion */
    9096 
    90977692.accordion-section {
    9098         border-top: 1px solid #fff;
    9099         border-bottom: 1px solid #dfdfdf;
    9100         margin: 0;
     7693  border-top: 1px solid #fff;
     7694  border-bottom: 1px solid #dfdfdf;
     7695  margin: 0;
    91017696}
    9102 
    91037697.accordion-section:first-child {
    9104         border-top: 1px solid #dfdfdf;
     7698  border-top: 1px solid #dfdfdf;
    91057699}
    9106 
    91077700.accordion-section:last-child {
    9108         box-shadow: 0 1px 0 0px #fff;
     7701  box-shadow: 0 1px 0 0px #fff;
    91097702}
    9110 
    91117703.accordion-section.open .accordion-section-content,
    91127704.no-js .accordion-section .accordion-section-content {
    9113         display: block;
     7705  display: block;
    91147706}
    9115 
    91167707.accordion-section.open:hover {
    9117         border-bottom-color: #dfdfdf;
     7708  border-bottom-color: #dfdfdf;
    91187709}
    9119 
    91207710.accordion-section-content {
    9121         display: none;
    9122         padding: 10px 20px 15px;
    9123         overflow: hidden;
    9124         background: #fdfdfd;
    9125         border-left: 1px solid #dfdfdf;
    9126         border-right: 1px solid #dfdfdf;
     7711  display: none;
     7712  padding: 10px 20px 15px;
     7713  overflow: hidden;
     7714  background: #fdfdfd;
     7715  border-left: 1px solid #dfdfdf;
     7716  border-right: 1px solid #dfdfdf;
    91277717}
    9128 
    91297718.accordion-section-title {
    9130         margin: 0;
    9131         padding: 15px 20px;
    9132         position: relative;
    9133         border-left: 1px solid #dfdfdf;
    9134         border-right: 1px solid #dfdfdf;
    9135 
    9136         -webkit-user-select: none;
    9137         -moz-user-select: none;
    9138         user-select: none;
     7719  margin: 0;
     7720  padding: 15px 20px;
     7721  position: relative;
     7722  border-left: 1px solid #dfdfdf;
     7723  border-right: 1px solid #dfdfdf;
     7724  -webkit-user-select: none;
     7725  -moz-user-select: none;
     7726  user-select: none;
    91397727}
    9140 
    91417728.js .accordion-section-title {
    9142         cursor: pointer;
     7729  cursor: pointer;
    91437730}
    9144 
    91457731.js .accordion-section-title:after {
    9146         content: '';
    9147         width: 0;
    9148         height: 0;
    9149         border-color: #ccc transparent;
    9150         border-style: solid;
    9151         border-width: 6px 6px 0;
    9152         position: absolute;
    9153         top: 25px;
    9154         right: 20px;
    9155         z-index: 1;
     7732  content: '';
     7733  width: 0;
     7734  height: 0;
     7735  border-color: #ccc transparent;
     7736  border-style: solid;
     7737  border-width: 6px 6px 0;
     7738  position: absolute;
     7739  top: 25px;
     7740  right: 20px;
     7741  z-index: 1;
    91567742}
    9157 
    91587743.accordion-section-title:focus {
    9159         outline: none;
     7744  outline: none;
    91607745}
    9161 
    91627746.accordion-section-title:hover:after,
    91637747.accordion-section-title:focus:after {
    9164         border-color: #aaa transparent;
     7748  border-color: #aaa transparent;
    91657749}
    9166 
    91677750.cannot-expand .accordion-section-title {
    9168         cursor: auto;
     7751  cursor: auto;
    91697752}
    9170 
    91717753.cannot-expand .accordion-section-title:after {
    9172         display: none;
     7754  display: none;
    91737755}
    9174 
    91757756.control-section .accordion-section-title {
    9176         padding: 10px 20px;
    9177         color: #464646;
    9178         font-size: 15px;
    9179         font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
    9180         font-weight: normal;
    9181         text-shadow: 0 1px 0 #fff;
    9182         background: #f5f5f5;
    9183         background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#f5f5f5));
    9184         background-image: -webkit-linear-gradient(bottom, #eee, #f5f5f5);
    9185         background-image:    -moz-linear-gradient(bottom, #eee, #f5f5f5);
    9186         background-image:      -o-linear-gradient(bottom, #eee, #f5f5f5);
    9187         background-image: linear-gradient(to top, #eee, #f5f5f5);
     7757  padding: 10px 20px;
     7758  color: #464646;
     7759  font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
     7760  font-size: 15px;
     7761  font-weight: normal;
     7762  line-height: 1;
     7763  text-shadow: 0 1px 0 #fff;
     7764  background: #f5f5f5;
     7765  background-image: -webkit-gradient(linear, left bottom, left top, from(#eeeeee), to(#f5f5f5));
     7766  background-image: -webkit-linear-gradient(bottom, #eeeeee, #f5f5f5);
     7767  background-image: -moz-linear-gradient(bottom, #eeeeee, #f5f5f5);
     7768  background-image: -o-linear-gradient(bottom, #eeeeee, #f5f5f5);
     7769  background-image: linear-gradient(to top, #eeeeee, #f5f5f5);
    91887770}
    9189 
    91907771.control-section .accordion-section-title:after {
    9191         top: 15px;
     7772  top: 15px;
    91927773}
    9193 
    91947774.js .control-section:hover .accordion-section-title,
    91957775.js .control-section .accordion-section-title:hover,
    91967776.js .control-section.open .accordion-section-title,
    91977777.js .control-section .accordion-section-title:focus {
    9198         color: #000;
    9199         background: #f9f9f9;
    9200         background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
    9201         background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
    9202         background-image:    -moz-linear-gradient(bottom, #ececec, #f9f9f9);
    9203         background-image:      -o-linear-gradient(bottom, #ececec, #f9f9f9);
    9204         background-image: linear-gradient(to top, #ececec, #f9f9f9);
     7778  color: black;
     7779  background: #f9f9f9;
     7780  background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
     7781  background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
     7782  background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
     7783  background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
     7784  background-image: linear-gradient(to top, #ececec, #f9f9f9);
    92057785}
    9206 
    92077786.control-section.open .accordion-section-title {
    9208         border-bottom: 1px solid #dfdfdf;
     7787  border-bottom: 1px solid #dfdfdf;
    92097788}
    9210 
    92117789/* =Media Queries
    92127790-------------------------------------------------------------- */
    9213 
    92147791@media only screen and (max-width: 768px) {
    9215         /* categories */
    9216         #col-left {
    9217                 width: 100%;
    9218         }
    9219 
    9220         #col-right {
    9221                 width: 100%;
    9222         }
     7792  /* categories */
     7793  #col-left {
     7794    width: 100%;
     7795  }
     7796  #col-right {
     7797    width: 100%;
     7798  }
    92237799}
    9224 
    92257800@media only screen and (min-width: 769px) {
    9226         /* categories */
    9227         #col-left {
    9228                 width: 35%;
    9229         }
    9230 
    9231         #col-right {
    9232                 width: 65%;
    9233         }
     7801  /* categories */
     7802  #col-left {
     7803    width: 35%;
     7804  }
     7805  #col-right {
     7806    width: 65%;
     7807  }
    92347808}
    9235 
    92367809@media only screen and (max-width: 860px) {
    9237 
    9238         /* categories */
    9239         #col-left {
    9240                 width: 35%;
    9241         }
    9242 
    9243         #col-right {
    9244                 width: 65%;
    9245         }
     7810  /* categories */
     7811  #col-left {
     7812    width: 35%;
     7813  }
     7814  #col-right {
     7815    width: 65%;
     7816  }
    92467817}
    9247 
    92487818@media only screen and (min-width: 980px) {
    9249 
    9250         /* categories */
    9251         #col-left {
    9252                 width: 35%;
    9253         }
    9254 
    9255         #col-right {
    9256                 width: 65%;
    9257         }
     7819  /* categories */
     7820  #col-left {
     7821    width: 35%;
     7822  }
     7823  #col-right {
     7824    width: 65%;
     7825  }
    92587826}
    9259 
    92607827@media only screen and (max-width: 768px) {
    9261         /* categories */
    9262         #col-left {
    9263                 width: 100%;
    9264         }
    9265 
    9266         #col-right {
    9267                 width: 100%;
    9268         }
    9269 
    9270         .form-field input,
    9271         .form-field textarea {
    9272                 width: 99%;
    9273         }
    9274 
    9275         .form-wrap .form-field {
    9276                 padding:0;
    9277         }
    9278 
    9279         /* users */
    9280         #profile-page .form-table textarea {
    9281                 max-width: 400px;
    9282                 width: auto;
    9283         }
     7828  /* categories */
     7829  #col-left {
     7830    width: 100%;
     7831  }
     7832  #col-right {
     7833    width: 100%;
     7834  }
     7835  .form-field input,
     7836  .form-field textarea {
     7837    width: 99%;
     7838  }
     7839  .form-wrap .form-field {
     7840    padding: 0;
     7841  }
     7842  /* users */
     7843  #profile-page .form-table textarea {
     7844    max-width: 400px;
     7845    width: auto;
     7846  }
    92847847}
    9285 
    92867848/**
    92877849 * HiDPI Displays
    92887850 */
    9289 @media print,
    9290   (-o-min-device-pixel-ratio: 5/4),
    9291   (-webkit-min-device-pixel-ratio: 1.25),
    9292   (min-resolution: 120dpi) {
    9293 
    9294         .press-this .tagchecklist span a {
    9295                 background-image: url('../images/xit-2x.gif');
    9296                 background-size: 20px auto;
    9297          }
    9298 
    9299         .js .postbox:hover .handlediv,
    9300         .js .stuffbox:hover .handlediv,
    9301         .widget-top a.widget-action {
    9302                 background-image: url('../images/arrows-2x.png');
    9303                 background-size: 15px 123px;
    9304          }
    9305 
    9306         .widget-top a.widget-action:hover {
    9307                 background-image: url('../images/arrows-dark-2x.png');
    9308                 background-size: 15px 123px;
    9309         }
    9310 
    9311         .post-com-count {
    9312                 background-image: url('../images/bubble_bg-2x.gif');
    9313                 background-size: 18px 100px;
    9314         }
    9315 
    9316         tr.wp-locked .locked-indicator  {
    9317                 background-image: url('../images/lock-2x.png');
    9318                 background-size: 16px 16px;
    9319         }
    9320 
    9321         th .comment-grey-bubble {
    9322                 background-image: url('../images/comment-grey-bubble-2x.png');
    9323                 background-size: 12px 12px;
    9324         }
    9325 
    9326         .sorting-indicator {
    9327                 background-image: url('../images/sort-2x.gif?ver=20130102');
    9328                 background-size: 14px 4px;
    9329         }
    9330 
    9331         #content-resize-handle,
    9332         #post-body .wp_themeSkin .mceStatusbar a.mceResize {
    9333                 background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;
    9334                 background-size: 11px 11px;
    9335         }
    9336 
    9337         div.star-holder {
    9338                 background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;
    9339                 background-size: 21px 37px;
    9340         }
    9341 
    9342         div.star-holder .star-rating {
    9343                 background: url('../images/stars-2x.png?ver=20121108') repeat-x top left;
    9344                 background-size: 21px 37px;
    9345         }
    9346 
    9347         .welcome-panel .welcome-panel-close:before {
    9348                 background-image: url('../images/xit-2x.gif');
    9349                 background-size: 20px auto;
    9350         }
    9351 
    9352         .welcome-panel .welcome-icon {
    9353                 background-image: url('../images/welcome-icons-2x.png');
    9354         }
    9355 
    9356         .login h1 a {
    9357                 background-image: url('../images/wordpress-logo-2x.png?ver=20120412');
    9358                 background-size: 274px 63px;
    9359         }
    9360 
    9361         .wp-badge {
    9362                 background-image: url('../images/wp-badge-2x.png?ver=20120516');
    9363                 background-size: 173px 194px;
    9364         }
    9365 
    9366         .wp-full-overlay .collapse-sidebar-arrow {
    9367                 background-image: url('../images/arrows-2x.png');
    9368                 background-size: 15px 123px;
    9369          }
    9370 
    9371         .pressthis a span {
    9372                 background-image: url(../images/press-this-2x.png?v=20121105);
    9373         }
    9374 
    9375         .imgedit-crop,
    9376         .imgedit-rleft,
    9377         .imgedit-rright,
    9378         .imgedit-flipv,
    9379         .imgedit-fliph,
    9380         .imgedit-undo,
    9381         .imgedit-redo {
    9382                 background-image: url('../images/imgedit-icons-2x.png');
    9383                 background-size: 260px 64px;
    9384         }
    9385 
    9386         .spinner,
    9387         .imgedit-wait,
    9388         .customize-loading #customize-container {
    9389                 background-image: url(../images/wpspin_light-2x.gif);
    9390         }
    9391 
    9392         .wp-slider .ui-slider-handle:before {
    9393                 background-image: url(../images/arrows-pr-2x.png);
    9394                 background-size: 16px 102px;
    9395         }
    9396 
     7851@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
     7852  .press-this .tagchecklist span a {
     7853    background-image: url('../images/xit-2x.gif');
     7854    background-size: 20px auto;
     7855  }
     7856  .js .postbox:hover .handlediv,
     7857  .js .stuffbox:hover .handlediv,
     7858  .widget-top a.widget-action {
     7859    background-image: url('../images/arrows-2x.png');
     7860    background-size: 15px 123px;
     7861  }
     7862  .widget-top a.widget-action:hover {
     7863    background-image: url('../images/arrows-dark-2x.png');
     7864    background-size: 15px 123px;
     7865  }
     7866  .post-com-count {
     7867    background-image: url('../images/bubble_bg-2x.gif');
     7868    background-size: 18px 100px;
     7869  }
     7870  tr.wp-locked .locked-indicator {
     7871    background-image: url('../images/lock-2x.png');
     7872    background-size: 16px 16px;
     7873  }
     7874  th .comment-grey-bubble {
     7875    background-image: url('../images/comment-grey-bubble-2x.png');
     7876    background-size: 12px 12px;
     7877  }
     7878  .sorting-indicator {
     7879    background-image: url('../images/sort-2x.gif?ver=20130102');
     7880    background-size: 14px 4px;
     7881  }
     7882  #content-resize-handle,
     7883  #post-body .wp_themeSkin .mceStatusbar a.mceResize {
     7884    background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;
     7885    background-size: 11px 11px;
     7886  }
     7887  div.star-holder {
     7888    background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;
     7889    background-size: 21px 37px;
     7890  }
     7891  div.star-holder .star-rating {
     7892    background: url('../images/stars-2x.png?ver=20121108') repeat-x top left;
     7893    background-size: 21px 37px;
     7894  }
     7895  .welcome-panel .welcome-panel-close:before {
     7896    background-image: url('../images/xit-2x.gif');
     7897    background-size: 20px auto;
     7898  }
     7899  .welcome-panel .welcome-icon {
     7900    background-image: url('../images/welcome-icons-2x.png');
     7901  }
     7902  .login h1 a {
     7903    background-image: url('../images/wordpress-logo-2x.png?ver=20120412');
     7904    background-size: 274px 63px;
     7905  }
     7906  .wp-badge {
     7907    background-image: url('../images/wp-badge-2x.png?ver=20120516');
     7908    background-size: 173px 194px;
     7909  }
     7910  .wp-full-overlay .collapse-sidebar-arrow {
     7911    background-image: url('../images/arrows-2x.png');
     7912    background-size: 15px 123px;
     7913  }
     7914  .pressthis a span {
     7915    background-image: url(../images/press-this-2x.png?v=20121105);
     7916  }
     7917  .imgedit-crop,
     7918  .imgedit-rleft,
     7919  .imgedit-rright,
     7920  .imgedit-flipv,
     7921  .imgedit-fliph,
     7922  .imgedit-undo,
     7923  .imgedit-redo {
     7924    background-image: url('../images/imgedit-icons-2x.png');
     7925    background-size: 260px 64px;
     7926  }
     7927  .spinner,
     7928  .imgedit-wait,
     7929  .customize-loading #customize-container {
     7930    background-image: url(../images/wpspin_light-2x.gif);
     7931  }
     7932  .wp-slider .ui-slider-handle:before {
     7933    background-image: url(../images/arrows-pr-2x.png);
     7934    background-size: 16px 102px;
     7935  }
    93977936}
    9398 
    93997937/* =Localized CSS
    94007938-------------------------------------------------------------- */
    9401 
    94027939/* zh_CN: Remove italic properties. */
    94037940.locale-zh-cn .howto,
    94047941.locale-zh-cn .tablenav .displaying-num,
    a.widget-control-edit { 
    94137950.locale-zh-cn p.description,
    94147951.locale-zh-cn span.description,
    94157952.locale-zh-cn .form-wrap p {
    9416         font-style: normal;
     7953  font-style: normal;
    94177954}
    9418 
    94197955/* zh_CN: Enlarge dashboard widget 'Configure' link */
    9420 .locale-zh-cn .hdnle a { font-size: 12px; }
    9421 
     7956.locale-zh-cn .hdnle a {
     7957  font-size: 12px;
     7958}
    94227959/* zn_CH: Enlarge font size, set font-size: normal */
    9423 .locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; }
    9424 
     7960.locale-zh-cn form.upgrade .hint {
     7961  font-style: normal;
     7962  font-size: 100%;
     7963}
    94257964/* Zn_CH: Distraction free writing.
    94267965 *  More beautiful font for "Just write."
    94277966 *  Larger text for HTML/Visual mode.
    94287967 */
    9429 .locale-zh-cn #wp-fullscreen-tagline { font-family: KaiTi, "楷体", sans-serif; }
    9430 .locale-zh-cn #wp-fullscreen-modes a { font-size: 12px; }
    9431 
     7968.locale-zh-cn #wp-fullscreen-tagline {
     7969  font-family: KaiTi, "楷体", sans-serif;
     7970}
     7971.locale-zh-cn #wp-fullscreen-modes a {
     7972  font-size: 12px;
     7973}
    94327974/* zh_CN: Enlarge font-size. */
    9433 .locale-zh-cn #sort-buttons { font-size: 1em !important; }
    9434 
     7975.locale-zh-cn #sort-buttons {
     7976  font-size: 1em !important;
     7977}
    94357978/* ru_RU: Text needs more room to breathe. */
    94367979.locale-ru-ru .inline-edit-row fieldset label span.title {
    9437         width: auto; /* default 5em */
    9438         min-width: 5em;
     7980  width: auto;
     7981  /* default 5em */
     7982
     7983  min-width: 5em;
    94397984}
    94407985.locale-ru-ru.press-this .posting {
    9441         margin-right: 257px; /* default 212px + 45px */
     7986  margin-right: 257px;
     7987  /* default 212px + 45px */
     7988
    94427989}
    9443 .locale-ru-ru.press-this #photo-add-url-div input[type="text"]  {
    9444         width: 255px; /* default 300px - 45px */
     7990.locale-ru-ru.press-this #photo-add-url-div input[type="text"] {
     7991  width: 255px;
     7992  /* default 300px - 45px */
     7993
    94457994}
    94467995.locale-ru-ru.press-this #side-sortables {
    9447         width: 245px; /* default 200px + 45px */
     7996  width: 245px;
     7997  /* default 200px + 45px */
     7998
    94487999}
    94498000.locale-ru-ru #customize-header-actions .button {
    9450         padding: 0 8px 1px; /* default 0 10px 1px; */
    9451 }
     8001  padding: 0 8px 1px;
     8002  /* default 0 10px 1px; */
    94528003
     8004}
    94538005/* lt_LT: QuickEdit */
    94548006.locale-lt-lt .inline-edit-row fieldset label span.title {
    9455         width: 8em;
     8007  width: 8em;
    94568008}
    94578009.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap {
    9458         margin-left: 8em;
     8010  margin-left: 8em;
    94598011}
  • wp-admin/css/wp-admin.min.css

    diff --git a/wp-admin/css/wp-admin.min.css b/wp-admin/css/wp-admin.min.css
    index 81dcd97..da41cc2 100644
    a b  
    1 #wpwrap{height:auto;min-height:100%;width:100%;position:relative}#wpcontent{height:100%}#wpcontent,#wpfooter{margin-left:165px}.folded #wpcontent,.folded #wpfooter{margin-left:52px}#wpbody-content{padding-bottom:65px;float:left;width:100%}#adminmenuback,#adminmenuwrap,#adminmenu,#adminmenu .wp-submenu{width:145px}#adminmenuback{position:absolute;top:0;bottom:0;z-index:-1}#adminmenu{clear:left;margin:0;padding:0;list-style:none}.folded #adminmenuback,.folded #adminmenuwrap,.folded #adminmenu,.folded #adminmenu li.menu-top{width:32px}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.inner-sidebar #side-sortables,.columns-2 .inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-container,#col-left,#col-right{overflow:hidden;padding:0;margin:0}#col-left{width:35%}#col-right{float:right;clear:right;width:65%}.col-wrap{padding:0 7px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;left:-1000em;top:-1000em;height:1px;width:1px;overflow:hidden}.screen-reader-shortcut{position:absolute;top:-1000em}.screen-reader-shortcut:focus{left:6px;top:-21px;height:auto;width:auto;display:block;font-size:14px;font-weight:bold;padding:15px 23px 14px;background:#f1f1f1;color:#21759b;border-radius:3px;z-index:100000;line-height:normal;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);text-decoration:none}.hidden,.js .closed .inside,.js .hide-if-js,.no-js .hide-if-no-js,.js.wp-core-ui .hide-if-js,.js .wp-core-ui .hide-if-js,.no-js.wp-core-ui .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js{display:none}input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],textarea{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}input[type="checkbox"],input[type="radio"]{vertical-align:text-top;padding:0;margin:1px 0 0}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration{display:none}html,body{height:100%;margin:0;padding:0}body{font-family:sans-serif;font-size:12px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}body.login{background:#fbfbfb;min-width:0}iframe,img{border:0}td,textarea,input,select,button{font-family:inherit;font-size:inherit;font-weight:inherit}td,textarea{line-height:inherit}input,select{line-height:15px}a,input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],select,textarea,div{outline:0}a:focus,a:active{outline:thin dotted}#adminmenu a:focus,#adminmenu a:active,.screen-reader-text:focus{outline:0}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}p{margin:1em 0}blockquote{margin:1em}label{cursor:pointer}li,dd{margin-bottom:6px}textarea,input,select{margin:1px;padding:3px}h1,h2,h3,h4,h5,h6{display:block;font-weight:bold}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ul,ol{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ul.ul-disc,ul.ul-square,ol.ol-decimal{margin-left:1.8em}ul.ul-disc>li,ul.ul-square>li,ol.ol-decimal>li{margin:0 0 .5em}.code,code{font-family:Consolas,Monaco,monospace}kbd,code{padding:1px 3px;margin:0 1px;font-size:11px}.subsubsub{list-style:none;margin:8px 0 5px;padding:0;font-size:12px;float:left}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:normal}.subsubsub a.current{font-weight:bold;border:0}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat,div.updated,div.error,.wrap .add-new-h2,textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select,.tablenav .tablenav-pages a,.tablenav-pages span.current,#titlediv #title,.postbox,#postcustomstuff table,#postcustomstuff input,#postcustomstuff textarea,.imgedit-menu div,.plugin-update-tr .update-message,#poststuff .inside .the-tagcloud,.login form,#login_error,.login .message,#menu-management .menu-edit,.nav-menus-php .list-container,.menu-item-handle,.link-to-original,.nav-menus-php .major-publishing-actions .form-invalid,.press-this #message,#TB_window,.tbtitle,.highlight,.feature-filter,#widget-list .widget-top,.editwidget .widget-inside{-webkit-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a{text-decoration:none}.widefat thead th:first-of-type{-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.widefat thead th:last-of-type{-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.widefat tfoot th:first-of-type{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.widefat tfoot th:last-of-type{-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.widefat td,.widefat th{border-width:1px 0;border-style:solid}.widefat tfoot th{border-bottom:0}.widefat .no-items td{border-bottom-width:0}.widefat td{font-size:12px;padding:4px 7px 2px;vertical-align:top}.widefat td p,.widefat td ol,.widefat td ul{font-size:12px}.widefat th{padding:7px 7px 8px;text-align:left;line-height:1.3em;font-size:14px}.widefat th input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.widefat.media .check-column{padding-top:8px}.widefat thead .check-column,.widefat tfoot .check-column{padding:10px 0 0}.no-js .widefat thead .check-column input,.no-js .widefat tfoot .check-column input{display:none}.widefat .num,.column-comments,.column-links,.column-posts{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:4px 15px 0 0}div.updated,div.error{padding:0 .6em;margin:5px 15px 2px}div.updated p,div.error p{margin:.5em 0;padding:2px}.wrap div.updated,.wrap div.error,.media-upload-form div.error{margin:5px 0 15px}.wrap h2,.subtitle{font-weight:normal;margin:0;text-shadow:#fff 0 1px 0}.wrap h2{font-size:23px;padding:9px 15px 4px 0;line-height:29px}.subtitle{font-size:14px;padding-left:25px}.wrap .add-new-h2{font-family:sans-serif;margin-left:4px;padding:3px 8px;position:relative;top:-3px;text-decoration:none;font-size:12px;border:0 none}.wrap h2.long-header{padding-right:0}html,.wp-dialog{background-color:#fff}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{background-color:#fff;color:#333}select{color:#000}select[disabled]{color:#7f7f7f}select:focus{border-color:#aaa}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.1);box-shadow:1px 1px 2px rgba(0,0,0,0.1)}input[readonly]{background-color:#eee}:-moz-placeholder,.wp-core-ui :-moz-placeholder{color:#a9a9a9}div.sidebar-name h3,#menu-management .nav-tab,#dashboard_plugins h5,a.rsswidget,#dashboard_right_now td.b,#dashboard-widgets h4,.tool-box .title,#poststuff h3,.metabox-holder h3,.pressthis a,#your-profile legend,.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title,.tablenav .displaying-num,.widefat th,.quicktags,.search{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}h2 .nav-tab,.wrap h2,.subtitle,.login form .input{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif}.quicktags,.search{font-size:12px}.icon32{float:left;height:34px;margin:7px 8px 0 0;width:36px}.icon16{height:18px;width:18px;padding:6px 6px;margin:-6px 0 0 -8px;float:left}.key-labels label{line-height:24px}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{font-style:italic;display:block;font-family:sans-serif}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}.wp-admin select{padding:2px;height:2em}.wp-admin select[multiple]{height:auto}.submit{padding:1.5em 0;margin:5px 0;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}form p.submit a.cancel:hover{text-decoration:none}#minor-publishing-actions input,#major-publishing-actions input,#minor-publishing-actions .preview{text-align:center}textarea.all-options,input.all-options{width:250px}input.large-text,textarea.large-text{width:99%}input.regular-text,#adduser .form-field input{width:25em}input.small-text{width:50px}input[type="number"].small-text{width:60px}#doaction,#doaction2,#post-query-submit{margin:1px 8px 0 0}.tablenav #changeit,.tablenav #delete_all,.tablenav #clear-recent-list{margin-top:1px}.tablenav .actions select{float:left;margin-right:6px;max-width:200px}.ie8 .tablenav .actions select{width:155px}.ie8 .tablenav .actions select#cat{width:200px}#timezone_string option{margin-left:1em}label,#your-profile label+a{vertical-align:middle}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{border-style:solid;border-width:1px;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}.search-box input[name="s"],#search-plugins input[name="s"],.tagsdiv .newtag{float:left;height:2em;margin:0 4px 0 0}input[type="text"].ui-autocomplete-loading{background:transparent url('../images/loading.gif') no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{border-bottom-right-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-width:1px;border-style:solid}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px}.ui-autocomplete li a.ui-state-focus{cursor:pointer}#major-publishing-actions{padding:10px 10px 8px;clear:both;border-top:1px solid #f5f5f5;margin-top:-2px}#delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left}#publishing-action{text-align:right;float:right;line-height:23px}#publishing-action .spinner{float:left}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px;border-width:1px 0;border-style:solid}.misc-pub-section:first-child{border-top-width:0}.misc-pub-section-last{border-bottom-width:0}#minor-publishing-actions{padding:10px 10px 2px 8px;text-align:right}#minor-publishing{border-bottom-width:1px;border-bottom-style:solid;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}#save-post{float:left}.preview{float:right}#sticky-span{margin-left:18px}.side-info{margin:0;padding:4px;font-size:11px}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom-width:1px;border-bottom-style:solid}.side-info ul{margin:0;padding-left:18px;list-style:square}.approve,.unapproved .unapprove{display:none}.unapproved .approve,.spam .approve,.trash .approve{display:inline}td.action-links,th.action-links{text-align:right}#update-nag,.update-nag{line-height:19px;padding:5px 0;font-size:12px;text-align:center;margin:-1px 15px 0 5px;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.plugins .plugin-update{padding:0}.plugin-update .update-message{margin:0 10px 8px 31px;font-weight:bold}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}.update-php .spinner{float:none;margin:-4px 0}#ajax-loading,.ajax-loading,.ajax-feedback,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-left:2em}#adminmenu a,#sidemenu a,#taglist a,#catlist a{text-decoration:none}#screen-options-wrap,#contextual-help-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto}#screen-meta .screen-reader-text{visibility:hidden}#screen-meta-links{margin:0 24px 0 0}#screen-meta-links a:focus{-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.4);box-shadow:1px 1px 1px rgba(0,0,0,0.4);outline:0}#screen-meta{display:none;position:relative;margin:0 15px 0 5px;border-width:0 1px 1px;border-style:none solid solid}#screen-options-link-wrap,#contextual-help-link-wrap{float:right;height:23px;padding:0;margin:0 0 0 6px;font-family:sans-serif}#screen-options-link-wrap,#contextual-help-link-wrap,#screen-meta{-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#screen-meta-links .screen-meta-toggle{position:relative;top:-1px}#screen-meta-links a.show-settings{text-decoration:none;z-index:1;padding:1px 16px 0 6px;height:22px;line-height:22px;font-size:12px;display:block;text-shadow:rgba(255,255,255,0.7) 0 1px 0}#screen-meta-links a.show-settings:hover{text-decoration:none}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#screen-options-wrap h5,#contextual-help-wrap h5{margin:8px 0;font-size:13px}.metabox-prefs label{display:inline-block;padding-right:15px;white-space:nowrap;line-height:30px}.metabox-prefs label input{margin:0 5px 0 2px}.metabox-prefs .columns-prefs label input{margin:0 2px}.metabox-prefs label a{display:none}#contextual-help-wrap{padding:0;margin-left:-4px}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border-width:0 1px;border-style:solid}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;-webkit-border-bottom-right-radius:2px;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:1px 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:18px;text-decoration:none}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-width:1px 0 1px 1px;border-style:solid}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6em}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}#adminmenuback,#adminmenuwrap{border-width:0 1px 0 0;border-style:solid}#adminmenuwrap{position:relative;float:left}#adminmenushadow{position:absolute;top:0;right:0;bottom:0;width:6px;z-index:20}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0;cursor:pointer}#adminmenu a{display:block;line-height:18px;padding:2px 5px}#adminmenu li.menu-top{min-height:28px;position:relative}#adminmenu .wp-submenu{list-style:none;padding:4px 0;margin:0;position:absolute;top:-1000em;left:146px;z-index:1000;overflow:visible;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.js #adminmenu .sub-open,.js #adminmenu .opensub .wp-submenu,#adminmenu a.menu-top:focus+.wp-submenu,.no-js li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu .wp-has-current-submenu .wp-submenu,.no-js li.wp-has-current-submenu:hover .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu{position:relative;z-index:3;top:auto;left:auto;right:auto;bottom:auto;border:0 none;-webkit-box-shadow:none;box-shadow:none}.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:-1px;left:32px}.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}#adminmenu .wp-submenu a{font-size:12px;line-height:18px;margin:0;padding-left:12px}#adminmenu .wp-not-current-submenu li>a{padding-left:16px}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}#adminmenu a.menu-top,#adminmenu .wp-submenu-head{font-size:13px;font-weight:bold;line-height:18px;padding:0}#adminmenu .wp-submenu-head,.folded #adminmenu .wp-menu-name{display:none}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0;overflow:hidden}#adminmenu a.menu-top{border-width:1px 0;border-style:solid none}#adminmenu .wp-menu-image img{padding:7px 0 0 7px;opacity:.6;filter:alpha(opacity=60)}#adminmenu div.wp-menu-name{padding:5px}#adminmenu div.wp-menu-image{float:left;width:28px;height:28px}.folded #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:28px}.wp-menu-arrow{z-index:25;position:absolute;right:100%;margin:0;height:30px;width:6px;-moz-transform:translate(146px);-webkit-transform:translate(146px);-o-transform:translate(146px);-ms-transform:translate(146px);transform:translate(146px)}#adminmenu .wp-menu-arrow div{display:none;position:absolute;top:7px;left:-1px;width:14px;height:15px;-moz-transform:matrix(-0.6,1,0.6,1,0,0);-webkit-transform:matrix(-0.6,1,0.6,1,0,0);-o-transform:matrix(-0.6,1,0.6,1,0,0);-ms-transform:matrix(-0.6,1,0.6,1,0,0);transform:matrix(-0.6,1,0.6,1,0,0)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{-moz-transform:translate(145px);-webkit-transform:translate(145px);-o-transform:translate(145px);-ms-transform:translate(145px);transform:translate(145px);height:28px;border-width:1px 0;border-style:solid;top:0}.folded #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow div,#adminmenu li.wp-has-submenu .wp-menu-arrow div,#adminmenu li.current .wp-menu-arrow div,.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow,#adminmenu a:hover .wp-menu-arrow{display:block}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-menu-open .wp-menu-arrow{top:0}.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow{z-index:1001}.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow{display:none}#adminmenu .wp-not-current-submenu .wp-menu-arrow div{width:15px;top:6px;border-width:0 0 1px 1px;border-style:solid}.wp-menu-arrow,.folded #adminmenu li .wp-menu-arrow div,.no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow{display:none}.folded #adminmenu li.current .wp-menu-arrow,.folded #adminmenu li.current .wp-menu-arrow div,.folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.folded #adminmenu li.wp-menu-open .wp-menu-arrow,.folded #adminmenu li a:focus .wp-menu-arrow{display:block}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100)}#adminmenu li.wp-menu-separator{height:3px;padding:0;margin:0;border-width:1px 0;border-style:solid;cursor:inherit}#adminmenu div.separator{height:1px;padding:0;border-width:1px 0 0 0;border-style:solid}#adminmenu .wp-submenu .wp-submenu-head{padding:5px 4px 5px 10px;margin:-4px -1px 4px;border-width:1px 0;border-style:solid;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}#adminmenu li.wp-menu-open{border-width:0 0 1px;border-style:solid}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}.folded #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.folded #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}#adminmenu .awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{position:absolute;font-family:sans-serif;font-size:9px;line-height:17px;font-weight:bold;margin-top:1px;margin-left:7px;-webkit-border-radius:10px;border-radius:10px;z-index:26}#adminmenu li .awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{display:block;padding:0 6px}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none}#collapse-menu{font-size:12px;line-height:34px;border-width:1px 0 0;border-style:solid}.folded #collapse-menu span{display:none}#collapse-button,#collapse-button div{width:15px;height:15px}#collapse-button{float:left;margin:8px 6px;border-width:1px;border-style:solid;-webkit-border-radius:10px;border-radius:10px}@media only screen and (max-width:900px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-left:52px}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap,.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top{width:32px}.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu{top:-1px;left:32px}.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}.auto-fold #adminmenu .wp-menu-name{display:none}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{height:28px}.auto-fold #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}.auto-fold #adminmenu li .wp-menu-arrow div{display:none}.auto-fold #adminmenu li.current .wp-menu-arrow,.auto-fold #adminmenu li.current .wp-menu-arrow div,.auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,.auto-fold #adminmenu li a:focus .wp-menu-arrow{display:block}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold #collapse-menu span{display:none}}.post-com-count-wrapper{min-width:22px;font-family:sans-serif}.post-com-count{background-image:url('../images/bubble_bg.gif');height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat}.post-com-count span{font-size:11px;font-weight:bold;height:1.4em;line-height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;-webkit-border-radius:5px;border-radius:5px}strong .post-com-count{background-position:center -55px}.post-com-count:hover{background-position:center -3px}.column-response .post-com-count{float:left;margin-right:5px;text-align:center}.response-links{float:left}#the-comment-list .attachment-80x60{padding:4px 8px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble.png');background-repeat:no-repeat;height:12px;width:12px}html.wp-toolbar{padding-top:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.narrow{width:70%;margin-bottom:40px}.narrow p{line-height:150%}.widefat th,.widefat td{overflow:hidden}.widefat th{font-weight:normal}.widefat td p{margin:2px 0 .8em}.widefat .column-comment p{margin:.6em 0}.postbox-container{float:left}#dashboard-widgets.columns-1 .postbox-container{width:100%}#dashboard-widgets.columns-2 .postbox-container{width:49.5%}#dashboard-widgets.columns-2 #postbox-container-2,#dashboard-widgets.columns-2 #postbox-container-3,#dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#dashboard-widgets.columns-3 .postbox-container{width:33.5%}#dashboard-widgets.columns-3 #postbox-container-1{width:33%}#dashboard-widgets.columns-3 #postbox-container-3,#dashboard-widgets.columns-3 #postbox-container-4{float:right}#dashboard-widgets.columns-4 .postbox-container{width:25%}.postbox-container .meta-box-sortables{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.metabox-holder .postbox-container .empty-container{border:3px dashed #ccc;height:250px}.metabox-holder.columns-1 .postbox-container .empty-container,.columns-2 #postbox-container-3 .empty-container,.columns-2 #postbox-container-4 .empty-container,.columns-3 #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#poststuff{padding-top:10px}#poststuff #post-body{padding:0}#post-body-content{width:100%;float:left}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#wpbody-content .metabox-holder .postbox-container .empty-container{border:0 none;height:0;min-height:0}}@media only screen and (min-width:800px) and (max-width:1200px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}.index-php .screen-layout,.index-php .columns-prefs{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}}@media only screen and (max-width:850px){#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 .empty-container,#poststuff #postbox-container-1 #side-sortables:empty{border:0 none;height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0}.screen-layout,.columns-prefs{display:none}}.postbox .hndle{-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.js .postbox .hndle{cursor:move}.postbox.closed .hndle{-webkit-border-radius:3px;border-radius:3px}.hndle a{font-size:11px;font-weight:normal}.postbox .handlediv{float:right;width:27px;height:30px}.js .postbox .handlediv{cursor:pointer}.sortable-placeholder{border-width:1px;border-style:dashed;margin-bottom:20px}.widget,.postbox,.stuffbox{margin-bottom:20px;padding:0;border-width:1px;border-style:solid;line-height:1}.widget .widget-top,.postbox h3,.stuffbox h3{margin-top:1px;border-bottom-width:1px;border-bottom-style:solid;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .widget .widget-top,.js .postbox h3{cursor:move}.postbox .inside,.stuffbox .inside{padding:0 12px 0 10px;line-height:1.4em}.postbox .inside{margin:10px 0;position:relative}.postbox.closed h3{border:0;-webkit-box-shadow:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.temp-border{border:1px dotted #ccc}.columns-prefs label{padding:0 5px}#dashboard-widgets-wrap{margin:0 -8px}#wpbody-content .metabox-holder{padding-top:10px}#dashboard-widgets .meta-box-sortables{margin:0 8px}#dashboard_recent_comments div.undo{border-top-style:solid;border-top-width:1px;margin:0 -10px;padding:3px 8px;font-size:11px}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:0}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}.welcome-panel{position:relative;overflow:auto;margin:20px 0;padding:23px 10px 12px;border-width:1px;border-style:solid;border-radius:3px;font-size:13px;line-height:2.1em}.welcome-panel h3{margin:0;font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:normal;line-height:1.2}.welcome-panel h4{margin:1.33em 0 0;font-size:13px}.welcome-panel .about-description{font-size:16px;margin:0}.welcome-panel .welcome-panel-close{position:absolute;top:5px;right:10px;padding:8px 3px;font-size:13px;text-decoration:none;line-height:1}.welcome-panel .welcome-panel-close:before{content:' ';position:absolute;left:-12px;width:10px;height:100%;background:url('../images/xit.gif') 0 17% no-repeat}.welcome-panel .welcome-panel-close:hover:before{background-position:100% 17%}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 0 3px}.welcome-panel-content{margin-left:13px;max-width:1500px}.welcome-panel .welcome-panel-column-container{clear:both;overflow:hidden;position:relative}.welcome-panel .welcome-panel-column{width:32%;min-width:200px;float:left}.ie8 .welcome-panel .welcome-panel-column{min-width:230px}.welcome-panel .welcome-panel-column:first-child{width:36%}.welcome-panel-column p{margin-top:7px}.welcome-panel .welcome-icon{display:block;padding:2px 0 8px 32px;background-image:url('../images/welcome-icons.png');background-repeat:no-repeat;background-size:16px}.welcome-panel .welcome-add-page{background-position:0 2px}.welcome-panel .welcome-edit-page{background-position:0 -90px}.welcome-panel .welcome-learn-more{background-position:0 -136px}.welcome-panel .welcome-comments{background-position:0 -182px}.welcome-panel .welcome-view-site{background-position:0 -274px}.welcome-panel .welcome-widgets-menus{background-position:1px -229px;line-height:14px}.welcome-panel .welcome-write-blog{background-position:0 -44px}.welcome-panel .welcome-panel-column ul{margin:.8em 1em 1em 0}.welcome-panel .welcome-panel-column li{line-height:16px;list-style-type:none}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column,.welcome-panel .welcome-panel-column:first-child{display:block;float:none;width:100%}.welcome-panel .welcome-panel-column li{display:inline-block;margin-right:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}.welcome-panel .welcome-icon{padding-left:25px}}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-posts,.fixed .column-date,.fixed .column-parent,.fixed .column-links,.fixed .column-author,.fixed .column-format{width:10%}.fixed .column-response,.fixed .column-categories,.fixed .column-tags,.fixed .column-rel,.fixed .column-role{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:4em;padding:8px 0;text-align:left}.fixed .column-comments .vers{padding-left:3px}.fixed .column-comments a{float:left}.fixed .column-icon{width:80px}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:18px}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv #add-new-comment{border-width:0 0 1px;border-style:none none solid}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead th{background:transparent;padding:0 7px 4px;font-style:italic}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv .spinner{padding-left:5px}.sorting-indicator{display:none;width:7px;height:4px;margin-top:8px;margin-left:7px;background-image:url('../images/sort.gif');background-repeat:no-repeat}tr.wp-locked .locked-indicator{background:url('../images/lock.png') no-repeat;margin:-2px 0 0 6px;height:20px;width:16px}tr.wp-locked .check-column label,tr.wp-locked .check-column input[type="checkbox"],tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}tr .locked-info{height:0;opacity:0}tr.wp-locked .locked-info{height:auto;opacity:1}tr.locked-info,tr.wp-locked .locked-info{-webkit-transition:height 1s,opacity 500ms;-moz-transition:height 1s,opacity 500ms;-ms-transition:height 1s,opacity 500ms;-o-transition:height 1s,opacity 500ms;transition:height 1s,opacity 500ms}.fixed .column-comments .sorting-indicator{margin-top:3px}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:7px 7px 8px}.fixed .column-comments.sortable a,.fixed .column-comments.sorted a{padding:8px 0}th.sortable a span,th.sorted a span{float:left;cursor:pointer}th.sorted.asc .sorting-indicator,th.desc:hover span.sorting-indicator{display:block;background-position:0 0}th.sorted.desc .sorting-indicator,th.asc:hover span.sorting-indicator{display:block;background-position:-7px 0}.tablenav-pages a{border-bottom-style:solid;border-bottom-width:2px;font-weight:bold;margin-right:1px;padding:0 2px}.tablenav-pages .current-page{text-align:center}.tablenav-pages .next-page{margin-left:2px}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;line-height:30px;font-size:12px}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;padding:3px 6px}.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:active{cursor:default}.tablenav .displaying-num{margin-right:10px;font-size:12px;font-style:italic}.tablenav .actions{overflow:hidden;padding:2px 8px 0 0}.tablenav .delete{margin-right:20px}.view-switch{float:right;margin:6px 8px 0}.view-switch a{text-decoration:none}.filter{float:left;margin:-5px 0 0 10px}.filter .subsubsub{margin-left:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0}#posts-filter fieldset legend{padding:0 0 .2em 1px}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%}tr.inline-edit-row td,#wpbody-content .inline-edit-row fieldset .inline-edit-col{padding:0 .5em}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}.inline-edit-row fieldset .inline-edit-group{clear:both}.inline-edit-row fieldset .inline-edit-group:after{content:".";display:block;height:0;clear:both;visibility:hidden}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{margin:0;padding:0;line-height:27px}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom}.inline-edit-row fieldset label textarea{width:100%;height:4em}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-save .spinner{padding:4px 10px 0;vertical-align:top;float:right}.inline-edit-row h4{text-transform:uppercase}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{font-style:italic;line-height:1.8em}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea{border-style:solid;border-width:1px}.inline-edit-row fieldset .inline-edit-date{float:left}.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}ul.cat-checklist{height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0}#bulk-titles{display:block;height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0 0 5px}.inline-edit-row fieldset ul.cat-checklist li,.inline-edit-row fieldset ul.cat-checklist input{margin:0}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row #bulk-titles div{font-family:sans-serif;font-style:normal;font-size:11px}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.quick-edit-row-post fieldset label.inline-edit-status{float:left}#bulk-titles{line-height:140%}#bulk-titles div{margin:.2em .3em}#bulk-titles div a{cursor:pointer;display:block;float:left;height:10px;margin:3px 3px 0 -2px;overflow:hidden;position:relative;text-indent:-9999px;width:10px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments a,#show-comments .spinner{float:left}#lost-connection-notice .spinner{display:block;float:left;margin:0 5px 0 0}.rtl #lost-connection-notice .spinner{float:right;margin:0 0 0 5px}#titlediv{position:relative;margin-bottom:5px}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:1px 0}#titlediv #title-prompt-text,#wp-fullscreen-title-prompt-text{color:#bbb;position:absolute;font-size:1.7em;padding:11px 10px}#wp-fullscreen-save .fs-saved{color:#999;float:right;margin-top:4px}#wp-fullscreen-title-prompt-text{padding:11px}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px}input#link_description,input#link_url{width:98%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#edit-slug-box{line-height:24px;min-height:25px;margin-top:5px;padding-right:6px}#edit-slug-box .cancel{margin-right:10px;font-size:11px}#editable-post-name-full{display:none}#editable-post-name input{width:16em}.postarea h3 label{float:left}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px}.submitbox .submitdelete{text-decoration:none;padding:1px 2px}.submitbox .submitdelete,.submitbox .submit a:hover{border-bottom-width:1px;border-bottom-style:solid}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}.inside-submitbox #post_status{margin:2px 0 2px -2px}#post-status-select{line-height:2.5em;margin-top:3px}#post-body #normal-sortables{min-height:50px}.postbox{position:relative;min-width:255px}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type="text"],.category-add select{width:100%;max-width:260px}.press-this #side-sortables .category-tabs li,ul.category-tabs li,#side-sortables .add-menu-item-tabs li,.wp-tab-bar li{display:inline;line-height:1.35em}.no-js .category-tabs li.hide-if-no-js{display:none}.category-tabs a,#side-sortables .add-menu-item-tabs a,.wp-tab-bar a{text-decoration:none}.category-tabs{margin:8px 0 3px}#category-adder h4{margin:10px 0}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:0 7px 5px}#side-sortables .submitbox .submit input,#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover{border:0 none}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0}ul.category-tabs,ul.add-menu-item-tabs,ul.wp-tab-bar{margin-top:12px}ul.category-tabs li{border-style:solid;border-width:1px;position:relative}ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-style:solid solid none;border-width:1px 1px 0}#post-body .add-menu-item-tabs li.tabs{border-style:solid none solid solid;border-width:1px 0 1px 1px;margin-right:-1px}ul.category-tabs li,ul.add-menu-item-tabs li,ul.wp-tab-bar li{padding:3px 5px 5px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}form#tags-filter{position:relative}td.post-title strong,td.plugin-title strong{display:block;margin-bottom:.2em}td.post-title p,td.plugin-title p{margin:6px 0}.wp-hidden-children .wp-hidden-child,.ui-tabs-hide{display:none}.commentlist .avatar{vertical-align:text-top}#post-body .tagsdiv #newtag{margin-right:5px;width:16em}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{width:68%}#post-status-info{border-width:0 1px 1px;border-style:none solid solid;width:100%;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#post-status-info td{font-size:12px}.autosave-info{padding:2px 15px;text-align:right}#editorcontent #post-status-info{border:0}#post-body .wp_themeSkin .mceStatusbar a.mceResize{display:block;background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;margin:0 1px;position:relative;top:-2px}#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize{top:20px}#content-resize-handle{background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;position:absolute;right:2px;height:19px}.press-this #content-resize-handle{bottom:2px}.tmce-active #content-resize-handle{display:none}#wp-word-count{display:block;padding:2px 10px}#timestampdiv select{height:20px;line-height:14px;padding:0;vertical-align:top}#aa,#jj,#hh,#mn{padding:1px;font-size:12px}#jj,#hh,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{background-repeat:no-repeat;background-position:left center;padding:2px 0 1px 20px}#timestampdiv{padding-top:5px;line-height:23px}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{border-width:1px;border-style:solid}.notification-dialog{position:fixed;top:30%;left:50%;width:450px;margin-left:-225px;background:#fff;line-height:1.5;z-index:1000005}.notification-dialog-background{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.5;filter:alpha(opacity=50);z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#post-lock-dialog .post-locked-message a.button{margin-right:10px}#post-lock-dialog .post-locked-avatar{float:left;margin:0 20px 20px 0}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:left;margin-right:3px}#post-lock-dialog.saving .locked-saving,#post-lock-dialog.saved .locked-saved{display:inline}#postcustomstuff thead th{padding:5px 8px 8px}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select,#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border-width:1px;border-style:solid;border-spacing:0}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff th.left,#postcustomstuff td.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-right:10px}.revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-controls{padding-top:40px;height:100px;z-index:1}.revisions-controls input[type="checkbox"]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;padding-bottom:10px}.revisions-tickmarks{position:relative;margin:0 auto;height:.8em;top:7px;max-width:70%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div{position:absolute;height:100%;border-style:solid;border-width:0 1px 0 0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:fixed;vertical-align:middle;opacity:0;width:100%;top:50%;margin-left:-90px;-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s;filter:alpha(opacity=0)}body.folded .revisions .loading-indicator{margin-left:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1;filter:alpha(opacity=100)}.revisions .diff{-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s}.revisions.loading .diff{opacity:.5;filter:alpha(opacity=50)}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:15px}.revision-toggle-compare-mode{position:absolute;top:0;right:0}.comparing-two-revisions .revisions-previous,.comparing-two-revisions .revisions-next,.revisions-meta .diff-meta-to strong{display:none}.revisions-controls .author-card .date{color:#777}.revisions-controls .author-card.autosave{color:#d54e21}.revisions-controls .author-card .author-name{font-weight:bold}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions-previous,.revisions-next{position:relative;z-index:1}.revisions-previous{float:left}.revisions-next{float:right}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.post-revisions li img,#revisions-meta-restored img{vertical-align:middle}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap;word-wrap:break-word}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.diffsplit.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{padding:.5em;font-family:Consolas,Monaco,monospace}table.diff .diff-deletedline del,table.diff .diff-addedline ins{text-decoration:none}.diff-meta{-webkit-border-radius:3px;border-radius:3px;padding:5px;clear:both;min-height:32px}.diff-title strong{line-height:32px;min-width:60px;text-align:right;float:left;margin-right:5px}.revisions-controls .author-card .avatar,.revisions-controls .author-card .author-info{float:left;margin-left:6px;margin-right:6px}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.diff-meta input.restore-revision{float:right;margin-left:6px;margin-right:6px;margin-top:4px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-right:0;margin-left:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;display:none;opacity:0}.revisions-tooltip.flipped{margin-left:0;margin-right:-70px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;left:0;margin-left:35px;bottom:-15px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-left:0;margin-right:35px;left:auto;right:0}.revisions-tooltip-arrow>span{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);tranform:rotate(45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{left:auto;right:20px}.ie8 .revisions-tooltip-arrow>span{left:15px;top:-25px;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"}.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow>span{right:25px}.revisions-tooltip,.revisions-tooltip-arrow>span{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.wp-slider.ui-slider{position:relative;border-width:1px;border-style:solid;border-radius:3px;text-align:left;cursor:pointer}.wp-slider .ui-slider-handle{position:absolute;z-index:2;margin-top:-3px;width:19px;height:19px;border-width:1px;border-style:solid;border-radius:50%}.wp-slider .ui-slider-handle:before{content:"";position:absolute;top:6px;left:3px;height:8px;width:13px;background:url(../images/arrows-pr.png) no-repeat -2px -47px}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{height:8px;width:7px}.wp-slider .ui-slider-handle.from-handle:before{background-position:-5px -84px;left:7px}.wp-slider .ui-slider-handle.to-handle:before{background-position:-4px -65px;left:5px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.8em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-.25em;margin-left:-.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{left:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{right:0}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:left;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}a.post-state-format{overflow:hidden;display:inline-block;vertical-align:middle;height:16px;width:16px;margin-right:5px;background-repeat:no-repeat;text-indent:-999em}#post-formats-select{line-height:2em}label.post-format-icon{margin-left:5px;padding:2px 0 2px 21px}.post-format-icon.post-format-standard{background-position:0 0}.post-format-icon.post-format-image{background-position:0 -32px}.post-format-icon.post-format-gallery{background-position:0 -64px}.post-format-icon.post-format-audio{background-position:0 -96px}.post-format-icon.post-format-video{background-position:0 -128px}.post-format-icon.post-format-chat{background-position:0 -160px}.post-format-icon.post-format-status{background-position:0 -192px}.post-format-icon.post-format-aside{background-position:0 -224px}.post-format-icon.post-format-quote{background-position:0 -256px}.post-format-icon.post-format-link{background-position:0 -288px}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}#post-body ul.add-menu-item-tabs{float:left;width:120px;text-align:right;margin:0 -120px 0 5px;padding:0}#post-body ul.add-menu-item-tabs li{padding:8px}#post-body ul.add-menu-item-tabs li.tabs{-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}.wp-tab-panel,.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border-style:solid;border-width:1px}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}#front-page-warning,#front-static-pages ul,ul.export-filters,.inline-editor ul.cat-checklist ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:19px;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap p,.form-wrap label{font-size:11px}.form-wrap label{display:block;padding:2px;font-size:12px}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%}p.description,.form-wrap p{margin:2px 0 5px}p.help,p.description,span.description,.form-wrap p{font-size:12px;font-style:italic;font-family:sans-serif}.form-wrap .form-field{margin:0 0 10px;padding:8px 0}.form-wrap .form-field #parent{max-width:100%}.col-wrap h3{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}#poststuff .taghint{color:#aaa;margin:15px 0 -24px 12px}#poststuff .tagsdiv .howto{margin:0 0 6px 8px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{width:180px}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}p.popular-tags{-webkit-border-radius:8px;border-radius:8px;border-width:1px;border-style:solid;line-height:2em;max-width:1000px;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h3{margin:2px 0 12px}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left}.ac_over{cursor:pointer}.ac_match{text-decoration:underline}table.links-table{width:100%}.links-table th{font-weight:normal;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table th,.links-table td{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type="text"],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}.media-item .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:bold}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:bold}.media-upload-form th.label label{font-weight:bold;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}abbr.required{border:medium none;text-decoration:none}.media-item .describe input[type="text"],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.media-item .edit-attachment,.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:15px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-style:solid;border-width:1px;min-height:36px;position:relative;margin-top:-1px;width:100%}#media-items{width:623px}.media-new-php #media-items{margin:1em 0}#media-items:empty{border:0 none}.media-item .filename{line-height:36px;overflow:hidden;padding:0 10px}.media-item .error-div{padding-left:10px}.media-item .pinkynail{float:left;margin:2px 2px 0;max-width:40px;max-height:32px}.media-item .startopen,.media-item .startclosed{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:6px 10px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;border:1px solid #d1d1d1;background:#f7f7f7;background-image:-webkit-gradient(linear,left bottom,left top,from(#fff),to(#f7f7f7));background-image:-webkit-linear-gradient(bottom,#fff,#f7f7f7);background-image:-moz-linear-gradient(bottom,#fff,#f7f7f7);background-image:-o-linear-gradient(bottom,#fff,#f7f7f7);background-image:linear-gradient(to top,#fff,#f7f7f7);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);box-shadow:inset 0 0 3px rgba(0,0,0,0.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-24px;background-color:#8cc1e9;background-image:-webkit-gradient(linear,left bottom,left top,from(#72a7cf),to(#8cc1e9));background-image:-webkit-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-moz-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-o-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:linear-gradient(to top,#72a7cf,#8cc1e9);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.3);box-shadow:0 0 3px rgba(0,0,0,0.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0 8px;text-shadow:0 1px 0 rgba(255,255,255,0.4);color:rgba(0,0,0,0.6)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-upload-form .media-item.error p,.media-item .error-div{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{width:600px;height:300px;overflow:hidden;padding:33px 0 51px;position:absolute;z-index:1000}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%}.find-box-inside{overflow:auto;padding:6px;height:100%}.find-box-search{overflow:hidden;padding:9px;position:relative}.find-box-search .spinner{float:none;left:125px;position:absolute;top:9px}#find-posts-input{float:left;width:140px;height:24px}#find-posts-search{float:left;margin:1px 4px 0 3px}#find-posts-response{margin:8px 0;padding:0 1px 6px}#find-posts-response table{width:100%}#find-posts-response .found-radio{padding:3px 0 0 8px;width:15px}.find-box-buttons{padding:8px;overflow:hidden}.find-box #resize-se{position:absolute;right:1px;bottom:1px}.ui-find-overlay{position:absolute;top:0;left:0;background-color:#000;opacity:.6;filter:alpha(opacity=60)}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;-webkit-border-radius:6px;border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #ddd;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0}.post-php .imgedit-wrap table{width:100%}.describe .imgedit-wrap table td,.wp_attachment_holder .imgedit-wrap table td{vertical-align:top;padding-top:0}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px}.wp_attachment_holder .imgedit-wrap table td.imgedit-settings{width:250px}td.imgedit-settings input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;background-size:16px 16px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.spinner{background:url(../images/wpspin_light.gif) no-repeat;background-size:16px 16px;display:none;float:right;opacity:.7;filter:alpha(opacity=70);width:16px;height:16px;margin:5px 5px 0}.no-float{float:none}.media-disabled,.imgedit-settings .disabled{color:grey}.wp_attachment_image,.A1B1{overflow:hidden}.wp_attachment_image .button,.A1B1 .button{float:left}.no-js .wp_attachment_image .button{display:none}.wp_attachment_image .spinner,.A1B1 .spinner{float:left;padding:0 4px 4px;vertical-align:bottom}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;height:32px}.imgedit-crop-wrap{position:relative}.imgedit-crop{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;margin:0 8px 0 0}.imgedit-crop.disabled:hover{background-position:-9px -31px}.imgedit-crop:hover{background-position:-9px -1px}.imgedit-rleft{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;margin:0 3px}.imgedit-rleft.disabled:hover{background-position:-46px -31px}.imgedit-rleft:hover{background-position:-46px -1px}.imgedit-rright{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;margin:0 8px 0 3px}.imgedit-rright.disabled:hover{background-position:-77px -31px}.imgedit-rright:hover{background-position:-77px -1px}.imgedit-flipv{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;margin:0 3px}.imgedit-flipv.disabled:hover{background-position:-115px -31px}.imgedit-flipv:hover{background-position:-115px -1px}.imgedit-fliph{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;margin:0 8px 0 3px}.imgedit-fliph.disabled:hover{background-position:-147px -31px}.imgedit-fliph:hover{background-position:-147px -1px}.imgedit-undo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;margin:0 3px}.imgedit-undo.disabled:hover{background-position:-184px -31px}.imgedit-undo:hover{background-position:-184px -1px}.imgedit-redo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;margin:0 8px 0 3px}.imgedit-redo.disabled:hover{background-position:-215px -31px}.imgedit-redo:hover{background-position:-215px -1px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group-top{margin:5px 0}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic;margin-bottom:8px}a.imgedit-help-toggle{text-decoration:none}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-group{border-width:1px;border-style:solid;-webkit-border-radius:3px;border-radius:3px;margin-bottom:8px;padding:2px 10px}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;margin-bottom:-8px;clear:both}.form-table td{margin-bottom:9px;padding:8px 10px;line-height:20px;font-size:12px}.form-table th,.form-wrap label{font-weight:normal;text-shadow:#fff 0 1px 0}.form-table th{vertical-align:top;text-align:left;padding:10px;width:200px}.form-table th.th-full{width:auto}.form-table div.color-option{display:block;clear:both;margin-top:12px}.form-table input.tog{margin-top:2px;margin-right:2px;float:left}.form-table td p{margin-top:4px}.form-table table.color-palette{vertical-align:bottom;float:left;margin:-12px 3px 11px}.form-table .color-palette td{border-width:1px 1px 0;border-style:solid solid none;height:10px;line-height:20px;width:10px}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom-width:1px;border-bottom-style:solid}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}#replyrow input{border-width:1px;border-style:solid}#replyrow td{padding:2px}#replysubmit{margin:0;padding:0 5px 3px;text-align:center}#replysubmit .spinner{padding:2px 0 0;vertical-align:top;float:right}#replysubmit .button{margin-right:5px}#replysubmit .error{color:red;line-height:21px;text-align:center}#replyrow h5{margin:.2em 0 0;padding:0 5px;line-height:1.4em;font-size:1em}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;-webkit-box-shadow:none;box-shadow:none}.comment-php .wp-editor-area{height:200px}.comment-ays{margin-bottom:0;border-style:solid;border-width:1px}.comment-ays th{border-right-style:solid;border-right-width:1px}.trash-undo-inside,.spam-undo-inside{margin:1px 8px 1px 0;line-height:16px}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}.commentlist .avatar{vertical-align:text-top}.theme-install-php .tablenav{height:auto}.theme-install-php .spinner{margin-top:9px}h3.available-themes{margin:.3em 0 1em;float:left}.available-theme{display:inline-block;margin-right:10px;overflow:hidden;padding:20px 20px 20px 0;vertical-align:top;width:300px}.available-theme .screenshot{width:300px;height:225px;display:block;border-width:1px;border-style:solid;margin-bottom:10px;overflow:hidden}.available-theme img{width:300px}.available-theme h3{margin:15px 0 0}.available-theme .theme-author{line-height:18px}.available-theme .action-links{margin-top:10px;overflow:hidden}.available-theme a.screenshot:focus{border-color:#777}#current-theme .theme-info li,.theme-options li,.available-theme .action-links li{float:left;padding-right:10px;margin-right:10px;border-right:1px solid #dfdfdf}.available-theme .action-links li{padding-right:8px;margin-right:8px}.ie8 .available-theme .action-links li{padding-right:7px;margin-right:7px}#current-theme .theme-info li:last-child,.theme-options li:last-child,.available-theme .action-links li:last-child{padding-right:0;margin-right:0;border-right:0}.available-theme .action-links .delete-theme{float:right;margin-left:8px;margin-right:0}.available-theme .action-links .delete-theme a{color:red;padding:2px}.available-theme .action-links .delete-theme a:hover{background:red;color:#fff;text-decoration:none}.available-theme .action-links p{float:left}#current-theme{margin:20px 0 10px;padding:0 0 20px;border-bottom-width:1px;border-bottom-style:solid;overflow:hidden}#current-theme.has-screenshot{padding-left:330px}#current-theme h3{margin:0;font-size:12px;font-weight:normal;color:#999}#current-theme h4{margin:3px 0 16px;font-size:20px}#current-theme h4 span{margin-left:20px;font-size:12px;font-weight:normal}#current-theme a{border-bottom:0}#current-theme .theme-info{margin:1em 0;overflow:hidden}#current-theme .theme-description{margin-top:5px;max-width:600px;line-height:1.6em}#current-theme img{float:left;width:300px;margin-left:-330px;border-width:1px;border-style:solid}.theme-options{overflow:hidden;font-size:14px;padding-bottom:10px}.theme-options .load-customize{margin-right:30px;float:left}.theme-options span{float:left;margin-right:10px;text-transform:uppercase;font-size:11px;line-height:18px;color:#999}.theme-options ul{float:left;margin:0}@media only screen and (max-width:1200px){.folded .available-theme,.folded .available-theme .screenshot{width:300px}.folded .available-theme .screenshot{height:225px}.folded #current-theme img{width:300px}.folded #current-theme.has-screenshot{padding-left:330px}.folded #current-theme img{margin-left:-330px}}@media only screen and (max-width:1079px){.folded .available-theme,.folded .available-theme .screenshot{width:270px}.folded .available-theme .screenshot{height:203px}.folded #current-theme img{width:270px}.folded #current-theme.has-screenshot{padding-left:300px}.folded #current-theme img{margin-left:-300px}}@media only screen and (max-width:1200px){.available-theme,.available-theme .screenshot,#current-theme img{width:240px}.available-theme .screenshot{height:180px}.available-theme img{width:100%}#current-theme.has-screenshot{padding-left:270px}#current-theme img{margin-left:-270px}}#post-body ul.add-menu-item-tabs li.tabs a,#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{font-weight:bold;text-decoration:none}#TB_window #TB_title{background-color:#222;color:#cfcfcf}#broken-themes{text-align:left;width:50%;border-spacing:3px;padding:3px}.theme-install-php h4{margin:2.5em 0 8px}.appearance_page_custom-header #headimg{border:1px solid #dfdfdf;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:left;margin:0 20px 20px 0}.appearance_page_custom-header .random-header{clear:both;margin:0 20px 20px 0;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dfdfdf}div#custom-background-image img{max-width:400px;max-height:300px}.nav-tab{border-style:solid;border-width:1px 1px 0;color:#aaa;text-shadow:#fff 0 1px 0;font-size:12px;line-height:16px;display:inline-block;padding:4px 14px 6px;text-decoration:none;margin:0 6px -1px 0;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.nav-tab-active{border-width:1px;color:#464646}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom-width:1px;border-bottom-style:solid;padding-bottom:0}h2 .nav-tab{padding:4px 10px 6px;font-weight:200;font-size:20px;line-height:24px}#dashboard_right_now .versions .b,#post-status-display,#post-visibility-display,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,.media-item .percent,.plugins .name,#pass-strength-result.strong,#pass-strength-result.short,#ed_reply_toolbar #ed_reply_strong,.item-controls .item-order a,.feature-filter .feature-name{font-weight:bold}.plugins p{margin:0 4px;padding:0}.plugins .desc p{margin:0 0 8px}.plugins td.desc{line-height:1.5em}.plugins .desc ul,.plugins .desc ol{margin:0 0 0 2em}.plugins .desc ul{list-style-type:disc}.plugins .row-actions-visible{padding:0}.plugins tbody th.check-column{padding:7px 0}.plugins .inactive td,.plugins .inactive th,.plugins .active td,.plugins .active th{border-top-style:solid;border-top-width:1px;padding:5px 7px 0}.plugins .update th,.plugins .update td{border-bottom:0}.plugin-update-tr td{border-top:0}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-right:12px;white-space:nowrap}.plugins .second,.plugins .row-actions-visible{padding:0 0 5px}.plugins .update .second,.plugins .update .row-actions-visible{padding-bottom:0}.plugins-php .widefat tfoot th,.plugins-php .widefat tfoot td{border-top-style:solid;border-top-width:1px}.plugin-update-tr .update-message{margin:5px;padding:3px 5px}.plugin-install-php h4{margin:2.5em 0 8px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#your-profile #rich_editing{border:0}#display_name{width:15em}#createuser .form-field input{width:25em}.pressthis{margin:20px 0}.pressthis a,.pressthis a:hover,.pressthis a:focus,.pressthis a:active{display:inline-block;position:relative;cursor:move;color:#333;background:#e6e6e6;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(7%,#e6e6e6),color-stop(77%,#d8d8d8));background-image:-webkit-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-moz-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-o-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:linear-gradient(to top,#e6e6e6 7%,#d8d8d8 77%);-webkit-border-radius:5px;border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none;text-shadow:0 1px 0 #fff}.pressthis a:active{outline:0}.pressthis a:hover:after{-webkit-transform:skew(20deg) rotate(9deg);-moz-transform:skew(20deg) rotate(9deg);transform:skew(20deg) rotate(9deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.7);box-shadow:0 10px 8px rgba(0,0,0,0.7)}.pressthis a span{background:url(../images/press-this.png?v=20120502) no-repeat 0 5px;background-size:24px 20px;padding:8px 11px 8px 27px;margin:0 5px;display:inline-block}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:transparent;-webkit-transform:skew(20deg) rotate(6deg);-moz-transform:skew(20deg) rotate(6deg);transform:skew(20deg) rotate(6deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.6);box-shadow:0 10px 8px rgba(0,0,0,0.6)}#utc-time,#local-time{padding-left:25px;font-style:italic;font-family:sans-serif}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .spinner{float:none;margin:-3px 3px}#wpfooter{position:absolute;bottom:0;left:0;right:0;padding:10px 0;margin-right:20px;border-top-width:1px;border-top-style:solid}#wpfooter p{margin:0;line-height:20px}#wpfooter a{text-decoration:none}#wpfooter a:hover{text-decoration:underline}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap div.updated,.about-wrap div.error{display:none!important}.about-wrap p{line-height:1.6em}.about-wrap h1{margin:.2em 200px 0 0;line-height:1.2em;font-size:2.8em;font-weight:200}.about-text,.about-description,.about-wrap li.wp-person a.web{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-weight:normal;line-height:1.6em;font-size:20px}.about-description{margin-top:1.4em}.about-text{margin:1em 200px 1.4em 0;min-height:60px;font-size:24px}.about-wrap h3{font-size:24px;margin-bottom:1em;padding-top:20px}.about-wrap .feature-section{padding-bottom:20px}.about-wrap .feature-section h4{margin-bottom:.6em}.about-wrap .feature-section p{margin-top:.6em}.about-wrap code{font-size:14px}.about-wrap .point-releases{margin-top:5px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.wp-badge{padding-top:142px;height:50px;width:173px;font-weight:bold;font-size:14px;text-align:center;margin:0 -5px;background:url('../images/wp-badge.png?ver=20111120') no-repeat}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap h2.nav-tab-wrapper{padding-left:6px}.about-wrap h2 .nav-tab{padding:4px 10px 6px;margin:0 3px -1px 0;font-size:18px;vertical-align:top}.about-wrap h2 .nav-tab-active{font-weight:bold;padding-top:3px}.about-wrap .feature-section img,.about-wrap .feature-section .video{border:0;margin:0 1.94% 10px 0;-webkit-border-radius:3px;border-radius:3px}.about-wrap .feature-section .video video{max-width:100%}.about-wrap .feature-section.three-col img{margin:.5em 0 .5em 5px;max-width:100%;float:none}.ie8 .about-wrap .feature-section.three-col img{margin-left:0}.about-wrap .feature-section.images-stagger-right img,.about-wrap .feature-section.images-stagger-right .video{float:right;margin:0 5px 12px 2em}.about-wrap .feature-section.images-stagger-left img{float:left;margin:0 2em 12px 5px}.about-wrap .feature-section .image-100{margin:0 0 2em 0;width:100%}.about-wrap .feature-section .image-66{width:65%}.about-wrap .feature-section .image-66.video{max-width:600px}.about-wrap .feature-section .image-50{max-width:50%}.about-wrap .feature-section img.image-30{max-width:31.2381%}.ie8 .about-wrap .feature-section img{border-width:1px;border-style:solid}.about-wrap .images-stagger-right img.image-30:nth-child(2){margin-left:1em}.about-wrap .feature-section.col{margin-bottom:0}.about-wrap .feature-section.col h4{margin:0 0 .6em 0}.about-wrap .feature-section.col .last-feature{margin-right:0}.about-wrap .feature-section.two-col div{width:47%;margin-right:4.999999999%;float:left}.about-wrap .feature-section.three-col div{width:30%;margin-right:4.999999999%;float:left}.about-wrap .three-col-images{text-align:center}.about-wrap .three-col-images img{margin:0 0 10px}.about-wrap .three-col-images .last-feature{float:right}.about-wrap .three-col-images .first-feature{float:left}.about-wrap .changelog .feature-section{overflow:hidden}.about-wrap .changelog li{list-style-type:disc;margin-left:3em}@media only screen and (max-width:900px){.about-wrap .feature-section.images-stagger-left img,.about-wrap .feature-section.images-stagger-right img,.about-wrap .feature-section.images-stagger-right .video{clear:both}.about-wrap .feature-section .video.image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .video.image-66{margin-left:3px}}@media only screen and (max-width:768px){.about-wrap .feature-section .image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .image-66{margin-left:3px}.about-wrap .feature-section.images-stagger-left .image-66{margin-right:3px}}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:bold}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h4.wp-people-group{margin-top:2.6em;font-size:16px}.about-wrap ul.wp-people-group{overflow:hidden;padding:0 5px;margin:0 -15px 0 -5px}.about-wrap ul.compact{margin-bottom:0}.about-wrap li.wp-person{float:left;margin-right:10px}.about-wrap li.wp-person img.gravatar{float:left;margin:0 10px 10px 0;padding:2px;width:60px;height:60px}.about-wrap ul.compact li.wp-person img.gravatar{width:30px;height:30px}.about-wrap li.wp-person{height:70px;width:280px;padding-bottom:15px}.about-wrap ul.compact li.wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap li.wp-person a.web{display:block;margin:6px 0 2px;font-size:16px;text-decoration:none}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:bold}.freedoms-php .about-wrap ol p{font-weight:normal;margin:.6em 0}body.full-overlay-active{overflow:hidden}.wp-full-overlay{background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%;min-width:0}.wp-full-overlay-sidebar{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:fixed;width:300px;height:100%;top:0;bottom:0;left:0;padding:0;margin:0;z-index:10;overflow:auto;background:#f5f5f5;border-right:1px solid rgba(0,0,0,0.2)}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-left:0!important}.wp-full-overlay.expanded{margin-left:300px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-left:-300px}.wp-full-overlay-sidebar:after{content:'';display:block;position:absolute;top:0;bottom:0;right:0;width:3px;box-shadow:-5px 0 4px -4px rgba(0,0,0,0.1) inset;z-index:1000}.wp-full-overlay-main{position:absolute;left:0;right:0;top:0;bottom:0;height:100%}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;left:0;right:0;height:45px;padding:0 20px;line-height:45px;z-index:10;margin:0}.wp-full-overlay-sidebar .wp-full-overlay-header{border-top:0;border-bottom:1px solid #fff;box-shadow:inset 0 -1px 0 0 #dfdfdf}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:0;border-top:1px solid #dfdfdf;box-shadow:inset 0 1px 0 0 #fff}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;left:0;right:0;overflow:auto}.wp-full-overlay-sidebar-content .accordion-section:first-child{border-top:1px solid #fff}.wp-full-overlay .close-full-overlay{text-decoration:none}.wp-full-overlay a.collapse-sidebar{position:absolute;bottom:12px;left:0;z-index:50;display:block;width:19px;height:19px;margin-left:15px;padding:0;border-radius:50%;text-decoration:none}.wp-full-overlay.collapsed .collapse-sidebar{position:absolute;left:100%}.wp-full-overlay .collapse-sidebar-arrow{position:absolute;margin-top:2px;margin-left:2px;display:block;width:15px;height:15px;background:transparent url('../images/arrows.png') no-repeat -1px -73px}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:-1px -109px}.wp-full-overlay .collapse-sidebar-label{position:absolute;left:100%;color:#808080;line-height:20px;margin-left:10px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label{color:#666}.wp-full-overlay,.wp-full-overlay-sidebar,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main{-webkit-transition-property:left,right,top,bottom,width,margin;-moz-transition-property:left,right,top,bottom,width,margin;-ms-transition-property:left,right,top,bottom,width,margin;-o-transition-property:left,right,top,bottom,width,margin;transition-property:left,right,top,bottom,width,margin;-webkit-transition-duration:.2s;-moz-transition-duration:.2s;-ms-transition-duration:.2s;-o-transition-duration:.2s;transition-duration:.2s}.no-customize-support .hide-if-no-customize,.customize-support .hide-if-customize,.no-customize-support.wp-core-ui .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize,.customize-support.wp-core-ui .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize{display:none}#customize-container{display:none;background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%}.customize-active #customize-container{display:block}.customize-loading #customize-container iframe{opacity:0}.customize-loading #customize-container{background:#fff url("../images/wpspin_light.gif") no-repeat fixed center center;background-size:16px 16px}#customize-container iframe,#theme-installer iframe{height:100%;width:100%;z-index:20;-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-ms-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}#customize-container .collapse-sidebar{bottom:16px}#theme-installer{display:none}#theme-installer.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 20px}.single-theme .install-theme-info{padding-top:15px}#theme-installer .install-theme-info{display:block}.install-theme-info .theme-install{float:right;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:24px;margin-bottom:0}.install-theme-info .theme-screenshot{margin-top:15px;width:258px;border:1px solid #ccc}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0;float:left}.theme-details .star-holder{margin:14px 0;float:right}.theme-details .theme-description{float:left;color:#777;line-height:20px}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%}#template div{margin-right:190px}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:bold;margin:0 6px}.row-title{font-size:13px!important;font-weight:bold}.column-author img,.column-username img{float:left;margin-right:10px;margin-top:1px}.row-actions{visibility:hidden;padding:2px 0 0}.mobile .row-actions{visibility:visible}tr:hover .row-actions,div.comment-item:hover .row-actions{visibility:visible}.row-actions-visible{padding:2px 0 0}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default}.tagchecklist span a{margin:6px 0 0 -9px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left}#poststuff h3,.metabox-holder h3{font-size:15px;font-weight:normal;padding:7px 10px;margin:0;line-height:1}#poststuff .inside{margin:6px 0 8px}#poststuff .inside #parent_id,#poststuff .inside #page_template{max-width:100%}.inline-edit-row #post_parent,.inline-edit-row select[name="page_template"]{max-width:80%}.ie8 #poststuff .inside #parent_id,.ie8 #poststuff .inside #page_template,.ie8 .inline-edit-row #post_parent,.ie8 .inline-edit-row select[name="page_template"]{width:250px}#post-visibility-select{line-height:1.5em;margin-top:3px}#poststuff #submitdiv .inside{margin:0;padding:0}.edit-form-section{margin-bottom:20px}#templateside ul li a{text-decoration:none}.tool-box .title{margin:8px 0;font-size:18px;font-weight:normal;line-height:24px}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu a.current{font-weight:normal;padding-left:6px;padding-right:6px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px;border-width:1px;border-style:solid}#sidemenu li a .count-0{display:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .vers,table .column-visible,table .column-rating{text-align:left}.error-message{color:red;font-weight:bold}body.iframe{height:98%}td.media-icon{text-align:center;width:80px;padding-top:8px;padding-bottom:8px}td.media-icon img{max-width:80px;max-height:60px}#howto{font-size:11px;margin:0 5px;display:block}.importers td{padding-right:14px}.importers{font-size:16px;width:auto}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:98%}#namediv p{margin:10px 0}#submitdiv h3{margin-bottom:0!important}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:2px}.checkbox{border:0;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}.edit-box{display:none}h3:hover .edit-box{display:inline}#dashboard-widgets form .input-text-wrap input{width:100%}#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets a{text-decoration:none}#dashboard-widgets h3 a{text-decoration:underline}#dashboard-widgets h3 .postbox-title-action{position:absolute;right:10px;padding:0;top:5px}.js #dashboard-widgets h3 .postbox-title-action{right:30px}#dashboard-widgets h4{font-weight:normal;font-size:13px;margin:0 0 .2em;padding:0}#dashboard_right_now p.sub,#dashboard_right_now .table,#dashboard_right_now .versions{margin:-12px}#dashboard_right_now .inside{font-size:12px;padding-top:20px}#dashboard_right_now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}#dashboard_right_now .table{margin:0;padding:0;position:relative}#dashboard_right_now .table_content{float:left;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now .table_discussion{float:right;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now table td{padding:3px 0;white-space:nowrap}#dashboard_right_now table tr.first td{border-top:0}#dashboard_right_now td.b{padding-right:6px;text-align:right;font-size:14px;width:1%}#dashboard_right_now td.b a{font-size:18px}#dashboard_right_now td.b a:hover{color:#d54e21}#dashboard_right_now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}#dashboard_right_now .t a{white-space:nowrap}#dashboard_right_now .spam{color:red}#dashboard_right_now .waiting{color:#e66f00}#dashboard_right_now .approved{color:green}#dashboard_right_now .versions{padding:6px 10px 12px;clear:both}#dashboard_right_now a.button{float:right;clear:right;position:relative;top:-5px}#dashboard_recent_comments h3{margin-bottom:0}#dashboard_recent_comments .inside{margin-top:0}#dashboard_recent_comments .comment-meta .approve{font-style:italic;font-family:sans-serif;font-size:10px}#dashboard_recent_comments .subsubsub{float:none;white-space:normal}#the-comment-list{position:relative}#the-comment-list .comment-item{padding:1em 10px;border-top:1px solid}#the-comment-list .pingback{padding-left:9px!important}#the-comment-list .comment-item,#the-comment-list #replyrow{margin:0 -10px}#the-comment-list .comment-item:first-child{border-top:0}#the-comment-list .comment-item .avatar{float:left;margin:0 10px 5px 0}#the-comment-list .comment-item h4{line-height:1.7em;margin-top:-0.4em;color:#777}#the-comment-list .comment-item h4 cite{font-style:normal;font-weight:normal}#the-comment-list .comment-item blockquote,#the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#dashboard_recent_comments #the-comment-list .trackback blockquote,#dashboard_recent_comments #the-comment-list .pingback blockquote{display:block}#the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:12px}.no-js #dashboard_quick_press{display:none}#dashboard_quick_press .easy-blogging{padding:0 8px;text-align:left}#dashboard_quick_press .input-text-wrap{position:relative}#dashboard_quick_press .prompt{color:#bbb;position:absolute}#dashboard_quick_press div.updated{padding:0 5px}#title-wrap label,#tags-input-wrap label{cursor:text}#title-wrap #title{padding:2px 6px;font-size:1.3em;line-height:100%;outline:0}#tags-input-wrap #tags-input{outline:0}#title-wrap #title-prompt-text{font-size:1.3em;padding:5px 8px}#tags-input-wrap #tags-input-prompt-text{font-size:1em;padding:4px 8px}#dashboard_quick_press .input-text-wrap,#dashboard_quick_press .textarea-wrap{margin:0 0 1em 0}#dashboard_quick_press .wp-media-buttons{margin:0 0 .2em 1px;padding:0}#dashboard_quick_press .wp-media-buttons a{color:#777}#dashboard-widgets #dashboard_quick_press form p.submit input{float:left}#dashboard-widgets #dashboard_quick_press form p.submit #save-post{margin:0 .7em 0 1px}#dashboard-widgets #dashboard_quick_press form p.submit #publish{float:right}#dashboard-widgets #dashboard_quick_press form p.submit .spinner{vertical-align:middle;margin:4px 6px 0 0}#dashboard_recent_drafts ul,#dashboard_recent_drafts p{margin:0;padding:0;word-wrap:break-word}#dashboard_recent_drafts ul{list-style:none}#dashboard_recent_drafts ul li{margin-bottom:1em}#dashboard_recent_drafts h4{line-height:1.7em;word-wrap:break-word}#dashboard_recent_drafts h4 abbr{font-weight:normal;font-family:sans-serif;font-size:12px;color:#999;margin-left:3px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:13px;line-height:1.7em}.rss-widget ul li{line-height:1.5em;margin-bottom:12px}.rss-widget span.rss-date{color:#999;font-size:12px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:'\2014'}#dashboard_plugins h4{line-height:1.7em}#dashboard_plugins h5{font-weight:normal;font-size:13px;margin:0;display:inline;line-height:1.4em}#dashboard_plugins h5 a{line-height:1.4em}#dashboard_plugins .inside span{font-size:12px;padding-left:5px}#dashboard_plugins p{margin:.3em 0 1.4em;line-height:1.4em}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:bold}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:125px}#dashboard_browser_nag .browser-icon{margin-top:-35px}#dashboard_browser_nag.postbox.browser-insecure{background-color:#ac1b1b;border-color:#ac1b1b}#dashboard_browser_nag.postbox{background-color:#e29808;background-image:none;border-color:#edc048;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox.browser-insecure h3{border-bottom-color:#cd5a5a;color:#fff}#dashboard_browser_nag.postbox h3{border-bottom-color:#f6e2ac;text-shadow:none;background:transparent none;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag.browser-insecure a.browse-happy-link,#dashboard_browser_nag.browser-insecure a.update-browser-link{text-shadow:#871b15 0 1px 0}#dashboard_browser_nag a.browse-happy-link,#dashboard_browser_nag a.update-browser-link{text-shadow:#d29a04 0 1px 0}.login *{margin:0;padding:0}.login form{margin-left:8px;padding:26px 24px 46px;font-weight:normal;background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px;box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px}.login form .forgetmenot{font-weight:normal;float:left;margin-bottom:0}.login .button-primary{float:right}#login form p{margin-bottom:0}#login form p.submit{padding:0}.login label{color:#777;font-size:14px}.login form .forgetmenot label{font-size:12px;line-height:19px}.login h1 a{background-image:url('../images/wordpress-logo.png?ver=20120216');background-size:274px 63px;background-position:top center;background-repeat:no-repeat;width:326px;height:67px;text-indent:-9999px;outline:0;overflow:hidden;padding-bottom:15px;display:block}#login{width:320px;padding:114px 0 0;margin:auto}#login_error,.login .message{margin:0 0 16px 8px;padding:12px}.login #nav,.login #backtoblog{text-shadow:#fff 0 1px 0;margin:0 0 0 16px;padding:16px 16px 0}#backtoblog{padding:12px 16px 0}.login form .input,.login input[type="text"]{color:#555;font-weight:200;font-size:24px;line-height:1;width:100%;padding:3px;margin-top:2px;margin-right:6px;margin-bottom:16px;border:1px solid #e5e5e5;background:#fbfbfb;outline:0;-webkit-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2);box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2)}.login #pass-strength-result{width:250px;font-weight:bold;border-style:solid;border-width:1px;margin:12px 0 6px;padding:6px 5px;text-align:center}.mobile #login{padding:20px 0}.mobile #login form,.mobile #login .message,.mobile #login_error{margin-left:0}.mobile #login #nav,.mobile #login #backtoblog{margin-left:8px}.mobile #login h1 a{width:auto}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}#dashboard_right_now p.musub{margin-top:12px;border-top:1px solid #ececec;padding-left:16px;position:static}.rtl #dashboard_right_now p.musub{padding-left:0;padding-right:16px}#dashboard_right_now td.b a.musublink{font-size:16px}#dashboard_right_now div.musubtable{border-top:0}#dashboard_right_now div.musubtable .t{white-space:normal}.wp-list-table .site-deleted{background:#ff8573}.wp-list-table .site-spammed{background:#faafaa}.wp-list-table .site-archived{background:#ffebe8}.wp-list-table .site-mature{background:#fecac2}.no-js #message{display:block}#nav-menu-meta ul.outer-border{-webkit-border-radius:3px;border-radius:3px}.accordion-section ul.category-tabs,.accordion-section ul.add-menu-item-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px}#nav-menu-meta .button-controls{margin-bottom:0}#nav-menus-frame{margin-left:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0}.metabox-holder-disabled .postbox,.metabox-holder-disabled .accordion-section-content{opacity:.5;filter:alpha(opacity=50)}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.blank-slate .menu-name{height:2em}.blank-slate .menu-settings{border:0;margin-top:0;padding-top:0;overflow:hidden}.is-submenu{font-style:italic;font-weight:normal;margin-left:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;-webkit-border-radius:3px;border-radius:3px}.manage-menus select{float:left;margin-right:6px}.manage-menus .selected-menu{float:left;margin:5px 6px 0 0}.manage-menus .submit-btn{float:left;margin-top:1px}.menu-edit p{margin:.3em 0 .6em}.menu-edit #post-body-content h3{margin:0 0 10px}.menu-settings{margin-top:2em;overflow:hidden}.menu-settings dl{margin:0 0 10px;overflow:hidden;position:relative}.menu-settings dd{float:left;margin:0;width:60%}.menu-edit .checkbox-input{margin-top:4px}.theme-location-set{font-size:11px}#menu-management-liquid{float:left;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px 10px;border-width:1px 0;border-style:solid}#nav-menu-header,#nav-menu-footer{padding:0 10px}#nav-menu-header{border-bottom:1px solid;margin-bottom:13px}#nav-menu-header .menu-name-label{margin-top:2px}#nav-menu-footer{border-top:1px solid}.nav-menus-php #post-body div.updated,.nav-menus-php #post-body div.error{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}#menu-management .menu-add-new abbr{font-weight:bold}#select-nav-menu-container{text-align:right;padding:0 10px 3px 10px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat td.menu-location-menus{padding-bottom:5px}.menu-location-menus select{float:left}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:left;width:160px;margin-right:5px}.locations-row-links{float:left;margin:6px 0 0 6px}.locations-edit-menu-link,.locations-add-menu-link{margin:0 3px}.locations-edit-menu-link{padding-right:3px;border-right:1px solid #ccc}#wpbody .open-label{display:block;float:left}#wpbody .open-label span{padding-right:10px}.js .input-with-default-title{font-style:italic}#menu-management .inside{padding:0 10px}.postbox .howto input,.accordion-container .howto input{width:180px;float:right}.accordion-container .outer-border{margin:0}#nav-menu-meta .accordion-container .top{border-top:1px solid #dfdfdf}#nav-menu-meta .accordion-container .accordion-section:first-child,#nav-menu-meta .accordion-container .accordion-section:first-child h3,#nav-menu-meta .accordion-container .top,#nav-menu-meta .accordion-container .top h3{-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px}#nav-menu-meta .accordion-container .accordion-section:last-child,#nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,#nav-menu-meta .accordion-container .bottom,#nav-menu-meta .accordion-container .bottom:not(.open) h3{-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.customlinkdiv .howto input{width:180px}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}.nav-menus-php .add-new-menu-action{float:left;margin:6px 0 0 6px;line-height:15px}.nav-menus-php .meta-sep,.nav-menus-php .submitdelete,.nav-menus-php .submitcancel{display:block;float:left;margin:4px 0;line-height:15px}.meta-sep{padding:0 2px}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.button.right,.button-secondary.right,.button-primary.right{float:right}.list-controls{float:left;margin-top:5px}.add-to-menu{float:right}.postbox .spinner{display:none;vertical-align:middle}.button-controls{clear:both;margin:10px 0}.show-all,.hide-all{cursor:pointer}.hide-all{display:none}#menu-name{width:270px}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.nav-menus-php .howto span{margin-top:4px;display:block;float:left}.quick-search{width:190px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .list-container{max-height:200px;overflow-y:auto;padding:10px 10px 5px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0;margin-bottom:5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}#menu-to-edit{margin:0;padding:.1em 0}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}.menu-item-bar{clear:both;line-height:1.5em;position:relative;margin:9px 0 0}.menu-item-handle{border:1px solid #dfdfdf;position:relative;padding-left:10px;height:auto;width:400px;line-height:35px;text-shadow:0 1px 0 #fff;overflow:hidden;word-wrap:break-word}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#f6c9cc;background-image:-webkit-gradient(linear,left bottom,left top,from(#f6c9cc),to(#fdf8ff));background-image:-webkit-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-moz-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-o-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:linear-gradient(to top,#f6c9cc,#fdf8ff)}.menu-item-edit-active .menu-item-handle{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;text-shadow:0}.menu-item-handle .item-title{font-size:12px;font-weight:bold;padding:7px 0;line-height:20px;display:block;margin-right:13em}li.menu-item.ui-sortable-helper dl{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport dl{margin-top:13px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:13px}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{font-size:12px;padding-right:10px}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:36px;overflow:hidden;text-indent:-999em;border-bottom:1px solid;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;width:400px;padding:10px 0 10px 10px;border:solid;border-width:0 1px 1px 1px;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.menu-item-settings .field-move a{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.add-menu-item-pagelinks{margin:.5em auto;text-align:center}.link-to-original{display:block;margin:0 0 10px;padding:3px 5px 5px;font-size:12px;font-style:italic}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-right:10px;float:left}.description-thin{width:190px;height:40px}.description-wide{width:390px}.menu-item-actions{padding-top:15px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{clear:both;padding:3px 0 5px}.nav-menus-php .major-publishing-actions .publishing-action{text-align:right;float:right;line-height:23px;margin:2px 0 1px}.nav-menus-php .blank-slate .menu-settings{display:none}.nav-menus-php .delete-action{float:left;margin-top:2px}.nav-menus-php .submitbox .submitcancel{border-bottom:1px solid;padding:1px 2px;text-decoration:none}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px;border:0 none}#menu-item-name-wrap:after,#menu-item-url-wrap:after,#menu-name-label:after,#menu-settings-column .inside:after,#nav-menus-frame:after,.nav-menus-php #post-body-content:after,.nav-menus-php .button-controls:after,.nav-menus-php .major-publishing-actions:after,.nav-menus-php .menu-item-settings:after{clear:both;content:".";display:block;height:0;visibility:hidden}#nav-menus-frame,.button-controls,#menu-item-url-wrap,#menu-item-name-wrap{display:block}div.star-holder{position:relative;height:17px;width:100px;background:url('../images/stars.png?ver=20121108') repeat-x bottom left}div.star-holder .star-rating{background:url('../images/stars.png?ver=20121108') repeat-x top left;height:17px;float:left}div.action-links{font-weight:normal;margin:6px 0 0}#plugin-information-header{margin:0;padding:0 5px;font-weight:bold;position:relative;border-bottom-width:1px;border-bottom-style:solid;height:2.5em}#plugin-information ul#sidemenu{font-weight:normal;margin:0 5px;position:absolute;left:0;bottom:-1px}#plugin-information p.action-button{width:100%;padding-bottom:0;margin-bottom:0;margin-top:10px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .action-button a{text-align:center;font-weight:bold;text-decoration:none;display:block;line-height:2em}#plugin-information h2{clear:none!important;margin-right:200px}#plugin-information .fyi{margin:0 10px 50px;width:210px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi h2.mainheader{padding:5px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}#plugin-information .fyi ul{padding:10px 5px 10px 7px;margin:0;list-style:none;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .fyi li{margin-right:0}#plugin-information #section-holder{padding:10px}#plugin-information .section ul,#plugin-information .section ol{margin-left:16px;list-style-type:square;list-style-image:none}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;max-width:100%;width:auto;height:auto}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px;padding-bottom:2em}#plugin-information #section-screenshots ol,#plugin-information .updated,#plugin-information pre{margin-right:215px}#plugin-information pre{padding:7px;overflow:auto}body.press-this{color:#333;margin:0;padding:0;min-width:675px;min-height:400px}img{border:0}.press-this #wphead{height:32px;margin-left:0;margin-right:0;margin-bottom:5px}.press-this #header-logo{float:left;margin:7px 7px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.press-this #wphead h1{font-weight:normal;font-size:16px;line-height:32px;margin:0;float:left}.press-this #wphead h1 a{text-decoration:none}.press-this #wphead h1 a:hover{text-decoration:underline}.press-this #message{margin:10px 0}.press-this-sidebar{float:right;width:200px;padding-top:10px}.press-this #title{margin-left:0;margin-right:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.press-this .tagchecklist span a{background:transparent url(../images/xit.gif) no-repeat 0 0}.press-this #titlediv{margin:0}.press-this .wp-media-buttons{cursor:default;padding:8px 8px 0}.press-this .howto{margin-top:2px;margin-bottom:3px;font-size:12px;font-style:italic;display:block}.press-this #poststuff{margin:0 10px 10px;padding:0}.press-this #photo-add-url-div input[type="text"]{width:220px}#poststuff #editor-toolbar{height:30px}div.zerosize{border:0 none;height:0;margin:0;overflow:hidden;padding:0;width:0}.posting{margin-right:212px;position:relative}.press-this .inner-sidebar{width:200px}.press-this .inner-sidebar .sleeve{padding-top:5px}.press-this #submitdiv p{margin:0;padding:6px}.press-this #submitdiv #publishing-actions{border-bottom:1px solid #dfdfdf}.press-this #publish{float:right}.press-this #poststuff h2,.press-this #poststuff h3{font-size:14px;line-height:1}.press-this #tagsdiv-post_tag h3,.press-this #categorydiv h3{cursor:pointer}.press-this #submitdiv h3{cursor:default}h3.tb{text-shadow:0 1px 0 #fff;font-weight:bold;font-size:12px;margin-left:5px}#TB_window{border:1px solid #333}.press-this .postbox,.press-this .stuffbox{margin-bottom:10px;min-width:0}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv{background:transparent url(../images/arrows.png) no-repeat 6px 7px}.press-this #submitdiv:hover .handlediv{background:0}.tbtitle{font-size:1.7em;outline:0;padding:3px 4px;border-color:#dfdfdf}.press-this .actions{float:right;margin:-19px 0 0}.press-this #extra-fields .actions{margin:-32px -7px 0 0}.press-this .actions li{float:left;list-style:none;margin-right:10px}#extra-fields .button{margin-right:5px}#photo_saving{margin:0 8px 8px;vertical-align:middle}#img_container_container{overflow:auto}#extra-fields{margin-top:10px;position:relative}#extra-fields h2{margin:12px}#waiting{margin-top:10px;overflow:hidden}#waiting span{float:right;margin:0 0 0 5px}#waiting .spinner{display:block}#extra-fields .postbox{margin-bottom:5px}#extra-fields .titlewrap{padding:0;overflow:auto;height:100px}#img_container a{display:block;float:left;overflow:hidden}#img_container img,#img_container a{width:68px;height:68px}#img_container img{border:0;background-color:#f4f4f4;cursor:pointer}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative}#img_container a:hover,#img_container a:active{border-color:#000;z-index:1000;border-width:2px;margin:-1px}#embed-code{width:100%;height:98px}.press-this .categorydiv div.tabs-panel{height:100px}.press-this .tagsdiv .newtag{width:120px}.press-this #content{margin:5px 0;padding:0 5px;border:0 none;height:345px;font-family:Consolas,Monaco,monospace;font-size:13px;line-height:19px;background:transparent}.press-this #publishing-actions .spinner{display:inline;vertical-align:middle}#TB_ajaxContent #options{position:absolute;top:20px;right:25px;padding:5px}#TB_ajaxContent h3{margin-bottom:.25em}.error a{text-decoration:underline}.updated a{text-decoration:none;padding-bottom:2px}.taghint{color:#aaa;margin:-17px 0 0 7px;visibility:hidden}input.newtag ~ div.taghint{visibility:visible}input.newtag:focus ~ div.taghint{visibility:hidden}#mce_fullscreen_container{background:#fff}#photo-add-url-div input[type="text"]{width:300px}.alignleft h3{margin:0}h3 span{font-weight:normal}#template textarea{font-family:Consolas,Monaco,monospace;font-size:12px;width:97%;background:#f9f9f9;outline:0}#template p{width:97%}#templateside{float:right;width:190px;word-wrap:break-word}#templateside h3,#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside ol,#templateside ul{margin:.5em;padding:0}#templateside li{margin:4px 0}#templateside ul li a span.highlight{display:block}.nonessential{font-size:11px;font-style:italic;padding-left:12px}.highlight{padding:3px 3px 3px 12px;margin-left:-12px;font-weight:bold;border:0 none}#documentation{margin-top:10px}#documentation label{line-height:22px;vertical-align:top;font-weight:bold}.fileedit-sub{padding:10px 0 8px;line-height:180%}#filter-box{clear:both}.feature-filter{padding:8px 12px 0}.feature-filter .feature-group{float:left;margin:5px 10px 10px}.feature-filter .feature-group li{display:inline-block;vertical-align:top;list-style-type:none;padding-right:25px;width:150px}.feature-container{width:100%;overflow:auto;margin-bottom:10px}div.widget-liquid-left{float:left;clear:left;width:100%;margin-right:-325px}div#widgets-left{margin-left:5px;margin-right:325px}div#widgets-right{width:285px;margin:0 auto}div.widget-liquid-right{float:right;clear:right;width:300px}.widget-liquid-right .widget,.inactive-sidebar .widget,.widget-liquid-right .sidebar-description{width:250px;margin:0 auto 20px;overflow:hidden}.widget-liquid-right .sidebar-description{margin-bottom:10px}.inactive-sidebar .widget{margin:0 10px 20px;display:inline-block}div.sidebar-name h3{font-weight:normal;font-size:15px;margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap}div.sidebar-name{font-size:13px;border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px}.js .sidebar-name{cursor:pointer}.js .closed .sidebar-name{-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.widget-liquid-right .widgets-sortables,#widgets-left .widget-holder{border-width:0 1px 1px;border-style:none solid solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.js .closed .widgets-sortables,.js .closed .widget-holder{display:none}.widget-liquid-right .widgets-sortables{padding:15px 0 0}#available-widgets .widget-holder{padding:7px 5px 0}#available-widgets .widget{-webkit-box-shadow:none;box-shadow:none}.inactive-sidebar{padding:5px 5px 0}#widget-list .widget{width:250px;margin:0 10px 15px;border:0 none;background:transparent;display:inline-block;vertical-align:top}#widget-list .widget-description{padding:5px 8px}.widget-placeholder{border-width:1px;border-style:dashed;margin:0 auto 20px;height:27px;width:250px}.inactive-sidebar .widget-placeholder{margin:0 10px 20px;float:left}div.widgets-holder-wrap{padding:0;margin:10px 0 20px}#widgets-left #available-widgets{background-color:transparent;border:0 none}ul#widget-list{list-style:none;margin:0;padding:0;min-height:100px}.widget .widget-top{margin-bottom:-1px;font-size:12px;font-weight:bold;height:26px;overflow:hidden}.widget-top .widget-title{padding:7px 9px}.widget-top .widget-title-action{float:right}a.widget-action{display:block;width:24px;height:26px}#available-widgets a.widget-action{display:none}.widget-top a.widget-action{background:transparent url(../images/arrows.png) no-repeat 4px 6px}.widget-top a.widget-action:hover{background:transparent url(../images/arrows-dark.png) no-repeat 4px 6px}.widget .widget-inside,.widget .widget-description{padding:12px 12px 10px;font-size:12px;line-height:16px}.widget-inside,.widget-description{display:none}#available-widgets .widget-description{display:block}.widget .widget-inside p{margin:0 0 1em;padding:0}.widget-title h4{margin:0;padding-bottom:.2em;line-height:1;overflow:hidden;white-space:nowrap}.widgets-sortables{min-height:90px}.widget-control-actions{margin-top:8px}.widget-control-actions a{text-decoration:none}.widget-control-actions a:hover{text-decoration:underline}.widget-control-actions div.alignleft{margin-top:6px}div#sidebar-info{padding:0 1em;margin-bottom:1em;font-size:12px}.widget-title a,.widget-title a:hover{text-decoration:none;border-bottom:0}.widget-control-edit{display:block;font-size:12px;font-weight:normal;line-height:26px;padding:0 8px 0 0}a.widget-control-edit{text-decoration:none}.widget-control-edit .add,.widget-control-edit .edit{display:none}#available-widgets .widget-control-edit .add,#widgets-right .widget-control-edit .edit,.inactive-sidebar .widget-control-edit .edit{display:inline}.editwidget{margin:0 auto 15px}.editwidget .widget-inside{display:block;padding:10px}.inactive p.description{margin:5px 15px 10px}#available-widgets p.description{margin:0 12px 12px}.widget-position{margin-top:8px}.inactive{padding-top:2px}.sidebar-name .spinner{float:none;margin:0 3px -3px}.sidebar-name-arrow{float:right;height:29px;width:26px}.widget-title .in-widget-title{font-size:12px;white-space:nowrap}#removing-widget{display:none;font-weight:normal;padding-left:15px;font-size:12px;line-height:1}.widget-control-noform,#access-off,.widgets_access .widget-action,.widgets_access .sidebar-name-arrow,.widgets_access #access-on,.widgets_access .widget-holder .description{display:none}.widgets_access .widget-holder,.widgets_access #widget-list{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access #wpbody-content .widget-title-action,.widgets_access #wpbody-content .widget-control-edit,.widgets_access .closed .widgets-sortables,.widgets_access .closed .widget-holder{display:block}.widgets_access .closed .sidebar-name{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.ui-sortable,.ui-draggable{-ms-touch-action:none}.accordion-section{border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;margin:0}.accordion-section:first-child{border-top:1px solid #dfdfdf}.accordion-section:last-child{box-shadow:0 1px 0 0 #fff}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dfdfdf}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fdfdfd;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf}.accordion-section-title{margin:0;padding:15px 20px;position:relative;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{content:'';width:0;height:0;border-color:#ccc transparent;border-style:solid;border-width:6px 6px 0;position:absolute;top:25px;right:20px;z-index:1}.accordion-section-title:focus{outline:0}.accordion-section-title:hover:after,.accordion-section-title:focus:after{border-color:#aaa transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title{padding:10px 20px;color:#464646;font-size:15px;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-weight:normal;text-shadow:0 1px 0 #fff;background:#f5f5f5;background-image:-webkit-gradient(linear,left bottom,left top,from(#eee),to(#f5f5f5));background-image:-webkit-linear-gradient(bottom,#eee,#f5f5f5);background-image:-moz-linear-gradient(bottom,#eee,#f5f5f5);background-image:-o-linear-gradient(bottom,#eee,#f5f5f5);background-image:linear-gradient(to top,#eee,#f5f5f5)}.control-section .accordion-section-title:after{top:15px}.js .control-section:hover .accordion-section-title,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section .accordion-section-title:focus{color:#000;background:#f9f9f9;background-image:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-moz-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-o-linear-gradient(bottom,#ececec,#f9f9f9);background-image:linear-gradient(to top,#ececec,#f9f9f9)}.control-section.open .accordion-section-title{border-bottom:1px solid #dfdfdf}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}}@media only screen and (min-width:769px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:860px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (min-width:980px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.press-this .tagchecklist span a{background-image:url('../images/xit-2x.gif');background-size:20px auto}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv,.widget-top a.widget-action{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.widget-top a.widget-action:hover{background-image:url('../images/arrows-dark-2x.png');background-size:15px 123px}.post-com-count{background-image:url('../images/bubble_bg-2x.gif');background-size:18px 100px}tr.wp-locked .locked-indicator{background-image:url('../images/lock-2x.png');background-size:16px 16px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble-2x.png');background-size:12px 12px}.sorting-indicator{background-image:url('../images/sort-2x.gif?ver=20130102');background-size:14px 4px}#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;background-size:11px 11px}div.star-holder{background:url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;background-size:21px 37px}div.star-holder .star-rating{background:url('../images/stars-2x.png?ver=20121108') repeat-x top left;background-size:21px 37px}.welcome-panel .welcome-panel-close:before{background-image:url('../images/xit-2x.gif');background-size:20px auto}.welcome-panel .welcome-icon{background-image:url('../images/welcome-icons-2x.png')}.login h1 a{background-image:url('../images/wordpress-logo-2x.png?ver=20120412');background-size:274px 63px}.wp-badge{background-image:url('../images/wp-badge-2x.png?ver=20120516');background-size:173px 194px}.wp-full-overlay .collapse-sidebar-arrow{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.pressthis a span{background-image:url(../images/press-this-2x.png?v=20121105)}.imgedit-crop,.imgedit-rleft,.imgedit-rright,.imgedit-flipv,.imgedit-fliph,.imgedit-undo,.imgedit-redo{background-image:url('../images/imgedit-icons-2x.png');background-size:260px 64px}.spinner,.imgedit-wait,.customize-loading #customize-container{background-image:url(../images/wpspin_light-2x.gif)}.wp-slider .ui-slider-handle:before{background-image:url(../images/arrows-pr-2x.png);background-size:16px 102px}}.locale-zh-cn .howto,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn #utc-time,.locale-zh-cn #local-time,.locale-zh-cn p.install-help,.locale-zh-cn p.help,.locale-zh-cn p.description,.locale-zh-cn span.description,.locale-zh-cn .form-wrap p{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-ru-ru .inline-edit-row fieldset label span.title{width:auto;min-width:5em}.locale-ru-ru.press-this .posting{margin-right:257px}.locale-ru-ru.press-this #photo-add-url-div input[type="text"]{width:255px}.locale-ru-ru.press-this #side-sortables{width:245px}.locale-ru-ru #customize-header-actions .button{padding:0 8px 1px}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}
    2  No newline at end of file
     1#wpwrap{height:auto;min-height:100%;width:100%;position:relative}#wpcontent{height:100%}#wpcontent,#wpfooter{margin-left:165px}.folded #wpcontent,.folded #wpfooter{margin-left:52px}#wpbody-content{padding-bottom:65px;float:left;width:100%}#adminmenuback,#adminmenuwrap,#adminmenu,#adminmenu .wp-submenu{width:145px}#adminmenuback{position:absolute;top:0;bottom:0;z-index:-1}#adminmenu{clear:left;margin:0;padding:0;list-style:none}.folded #adminmenuback,.folded #adminmenuwrap,.folded #adminmenu,.folded #adminmenu li.menu-top{width:32px}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.inner-sidebar #side-sortables,.columns-2 .inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-container,#col-left,#col-right{overflow:hidden;padding:0;margin:0}#col-left{width:35%}#col-right{float:right;clear:right;width:65%}.col-wrap{padding:0 7px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;left:-1000em;top:-1000em;height:1px;width:1px;overflow:hidden}.screen-reader-shortcut{position:absolute;top:-1000em}.screen-reader-shortcut:focus{left:6px;top:-21px;height:auto;width:auto;display:block;font-size:14px;font-weight:bold;line-height:normal;padding:15px 23px 14px;background:#f1f1f1;color:#21759b;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;z-index:100000;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,0.6);box-shadow:0 0 2px 2px rgba(0,0,0,0.6);text-decoration:none}.hidden,.js .closed .inside,.js .hide-if-js,.no-js .hide-if-no-js,.js.wp-core-ui .hide-if-js,.js .wp-core-ui .hide-if-js,.no-js.wp-core-ui .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js{display:none}input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],textarea{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}input[type="checkbox"],input[type="radio"]{vertical-align:text-top;padding:0;margin:1px 0 0}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration{display:none}html,body{height:100%;margin:0;padding:0}body{font-family:sans-serif;font-size:12px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}body.login{background:#fbfbfb;min-width:0}iframe,img{border:0}td,textarea,input,select,button{font-family:inherit;font-size:inherit;font-weight:inherit}td,textarea{line-height:inherit}input,select{line-height:15px}a,input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],select,textarea,div{outline:0}a:focus,a:active{outline:thin dotted}#adminmenu a:focus,#adminmenu a:active,.screen-reader-text:focus{outline:0}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}p{margin:1em 0}blockquote{margin:1em}label{cursor:pointer}li,dd{margin-bottom:6px}textarea,input,select{margin:1px;padding:3px}h1,h2,h3,h4,h5,h6{display:block;font-weight:bold}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ul,ol{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ul.ul-disc,ul.ul-square,ol.ol-decimal{margin-left:1.8em}ul.ul-disc>li,ul.ul-square>li,ol.ol-decimal>li{margin:0 0 .5em}.code,code{font-family:Consolas,Monaco,monospace}kbd,code{padding:1px 3px;margin:0 1px;font-size:11px}.subsubsub{list-style:none;margin:8px 0 5px;padding:0;font-size:12px;float:left}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:normal}.subsubsub a.current{font-weight:bold;border:0}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat,div.updated,div.error,.wrap .add-new-h2,textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select,.tablenav .tablenav-pages a,.tablenav-pages span.current,#titlediv #title,.postbox,#postcustomstuff table,#postcustomstuff input,#postcustomstuff textarea,.imgedit-menu div,.plugin-update-tr .update-message,#poststuff .inside .the-tagcloud,.login form,#login_error,.login .message,#menu-management .menu-edit,.nav-menus-php .list-container,.menu-item-handle,.link-to-original,.nav-menus-php .major-publishing-actions .form-invalid,.press-this #message,#TB_window,.tbtitle,.highlight,.feature-filter,#widget-list .widget-top,.editwidget .widget-inside{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;border-width:1px;border-style:solid}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a{text-decoration:none}.widefat thead th:first-of-type{-moz-border-top-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.widefat thead th:last-of-type{-moz-border-top-right-radius:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.widefat tfoot th:first-of-type{-moz-border-bottom-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.widefat tfoot th:last-of-type{-moz-border-bottom-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.widefat td,.widefat th{border-width:1px 0;border-style:solid}.widefat tfoot th{border-bottom:0}.widefat .no-items td{border-bottom-width:0}.widefat td{font-size:12px;padding:4px 7px 2px;vertical-align:top}.widefat td p,.widefat td ol,.widefat td ul{font-size:12px}.widefat th{padding:7px 7px 8px;text-align:left;line-height:1.3em;font-size:14px}.widefat th input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.widefat.media .check-column{padding-top:8px}.widefat thead .check-column,.widefat tfoot .check-column{padding:10px 0 0}.no-js .widefat thead .check-column input,.no-js .widefat tfoot .check-column input{display:none}.widefat .num,.column-comments,.column-links,.column-posts{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:4px 15px 0 0}div.updated,div.error{padding:0 .6em;margin:5px 15px 2px}div.updated p,div.error p{margin:.5em 0;padding:2px}.wrap div.updated,.wrap div.error,.media-upload-form div.error{margin:5px 0 15px}.wrap h2,.subtitle{font-weight:normal;margin:0;text-shadow:#fff 0 1px 0}.wrap h2{font-size:23px;padding:9px 15px 4px 0;line-height:29px}.subtitle{font-size:14px;padding-left:25px}.wrap .add-new-h2{font-family:sans-serif;margin-left:4px;padding:3px 8px;position:relative;top:-3px;text-decoration:none;font-size:12px;border:0 none}.wrap h2.long-header{padding-right:0}html,.wp-dialog{background-color:white}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{background-color:white;color:#333}select{color:black}select[disabled]{color:#7f7f7f}select:focus{border-color:#aaa}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.1);box-shadow:1px 1px 2px rgba(0,0,0,0.1)}input[readonly]{background-color:#eee}:-moz-placeholder,.wp-core-ui :-moz-placeholder{color:#a9a9a9}.postbox .spinner{display:none;vertical-align:middle}.button-controls{clear:both;margin:10px 0}.show-all,.hide-all{cursor:pointer}.hide-all{display:none}img{border:0}div.sidebar-name h3,#menu-management .nav-tab,#dashboard_plugins h5,a.rsswidget,#dashboard_right_now td.b,#dashboard-widgets h4,.tool-box .title,#poststuff h3,.metabox-holder h3,.pressthis a,#your-profile legend,.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title,.tablenav .displaying-num,.widefat th,.quicktags,.search{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}h2 .nav-tab,.wrap h2,.subtitle,.login form .input{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif}.quicktags,.search{font-size:12px}.icon32{float:left;height:34px;margin:7px 8px 0 0;width:36px}.icon16{height:18px;width:18px;padding:6px 6px;margin:-6px 0 0 -8px;float:left}.key-labels label{line-height:24px}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{font-style:italic;display:block;font-family:sans-serif}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}.wp-admin select{padding:2px;height:2em}.wp-admin select[multiple]{height:auto}.submit{padding:1.5em 0;margin:5px 0;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}form p.submit a.cancel:hover{text-decoration:none}#minor-publishing-actions input,#major-publishing-actions input,#minor-publishing-actions .preview{text-align:center}textarea.all-options,input.all-options{width:250px}input.large-text,textarea.large-text{width:99%}input.regular-text,#adduser .form-field input{width:25em}input.small-text{width:50px}input.small-text[type="number"]{width:60px}#doaction,#doaction2,#post-query-submit{margin:1px 8px 0 0}.tablenav #changeit,.tablenav #delete_all,.tablenav #clear-recent-list{margin-top:1px}.tablenav .actions select{float:left;margin-right:6px;max-width:200px}.ie8 .tablenav .actions select{width:155px}.ie8 .tablenav .actions select#cat{width:200px}#timezone_string option{margin-left:1em}label,#your-profile label+a{vertical-align:middle}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{border-style:solid;border-width:1px;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}.search-box input[name="s"],#search-plugins input[name="s"],.tagsdiv .newtag{float:left;height:2em;margin:0 4px 0 0}input[type="text"].ui-autocomplete-loading{background:transparent url('../images/loading.gif') no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{border-bottom-right-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-width:1px;border-style:solid}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px}.ui-autocomplete li a.ui-state-focus{cursor:pointer}#major-publishing-actions{padding:10px 10px 8px;clear:both;border-top:1px solid #f5f5f5;margin-top:-2px}#delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left}#publishing-action{text-align:right;float:right;line-height:23px}#publishing-action .spinner{float:left}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px;border-width:1px 0;border-style:solid}.misc-pub-section:first-child{border-top-width:0}.misc-pub-section-last{border-bottom-width:0}#minor-publishing-actions{padding:10px 10px 2px 8px;text-align:right}#minor-publishing{border-bottom-width:1px;border-bottom-style:solid;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}#save-post{float:left}.preview{float:right}#sticky-span{margin-left:18px}.side-info{margin:0;padding:4px;font-size:11px}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom-width:1px;border-bottom-style:solid}.side-info ul{margin:0;padding-left:18px;list-style:square}.approve,.unapproved .unapprove{display:none}.unapproved .approve,.spam .approve,.trash .approve{display:inline}td.action-links,th.action-links{text-align:right}#update-nag,.update-nag{line-height:19px;padding:5px 0;font-size:12px;text-align:center;margin:-1px 15px 0 5px;border-width:1px;border-style:solid;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.plugins .plugin-update{padding:0}.plugin-update .update-message{margin:0 10px 8px 31px;font-weight:bold}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}.update-php .spinner{float:none;margin:-4px 0}#ajax-loading,.ajax-loading,.ajax-feedback,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-left:2em}#adminmenu a,#sidemenu a,#taglist a,#catlist a{text-decoration:none}#screen-options-wrap,#contextual-help-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto}#screen-meta-links{margin:0 24px 0 0}#screen-meta-links a:focus{-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.4);box-shadow:1px 1px 1px rgba(0,0,0,0.4);outline:0}#screen-meta-links .screen-meta-toggle{position:relative;top:-1px}#screen-meta-links a.show-settings{text-decoration:none;z-index:1;padding:1px 16px 0 6px;height:22px;line-height:22px;font-size:12px;display:block;text-shadow:rgba(255,255,255,0.7) 0 1px 0}#screen-meta-links a.show-settings:hover{text-decoration:none}#screen-meta{display:none;position:relative;margin:0 15px 0 5px;border-width:0 1px 1px;border-style:none solid solid}#screen-meta .screen-reader-text{visibility:hidden}#screen-options-link-wrap,#contextual-help-link-wrap{float:right;height:23px;padding:0;margin:0 0 0 6px;font-family:sans-serif}#screen-options-link-wrap,#contextual-help-link-wrap,#screen-meta{border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#screen-options-wrap h5,#contextual-help-wrap h5{margin:8px 0;font-size:13px}.metabox-prefs label{display:inline-block;padding-right:15px;white-space:nowrap;line-height:30px}.metabox-prefs label input{margin:0 5px 0 2px}.metabox-prefs label a{display:none}.metabox-prefs .columns-prefs label input{margin:0 2px}#contextual-help-wrap{padding:0;margin-left:-4px}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border-width:0 1px;border-style:solid}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;-moz-border-bottom-right-radius:2px;-webkit-border-bottom-right-radius:2px;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:1px 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:18px;text-decoration:none}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-width:1px 0 1px 1px;border-style:solid}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6em}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}#adminmenuback,#adminmenuwrap{border-width:0 1px 0 0;border-style:solid}#adminmenuwrap{position:relative;float:left}#adminmenushadow{position:absolute;top:0;right:0;bottom:0;width:6px;z-index:20}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0;cursor:pointer}#adminmenu a{display:block;line-height:18px;padding:2px 5px}#adminmenu li.menu-top{min-height:28px;position:relative}#adminmenu .wp-submenu{list-style:none;padding:4px 0;margin:0;position:absolute;top:-1000em;left:146px;z-index:1000;overflow:visible;border-width:1px;border-style:solid;border-top-right-radius:3px;border-bottom-right-radius:3px;-moz-border-top-right-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px}.js #adminmenu .sub-open,.js #adminmenu .opensub .wp-submenu,#adminmenu a.menu-top:focus+.wp-submenu,.no-js #adminmenu li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu .wp-has-current-submenu .wp-submenu,.no-js #adminmenu li.wp-has-current-submenu:hover .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu{position:relative;z-index:3;top:auto;left:auto;right:auto;bottom:auto;border:0 none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:-1px;left:32px}.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}#adminmenu .wp-submenu a{font-size:12px;line-height:18px;margin:0;padding-left:12px}#adminmenu .wp-not-current-submenu li>a{padding-left:16px}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}#adminmenu a.menu-top,#adminmenu .wp-submenu-head{font-size:13px;font-weight:bold;line-height:18px;padding:0}#adminmenu .wp-submenu-head,.folded #adminmenu .wp-menu-name{display:none}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0;overflow:hidden}#adminmenu a.menu-top{border-width:1px 0;border-style:solid none}#adminmenu .wp-menu-image img{padding:7px 0 0 7px;opacity:.6;filter:alpha(opacity=60)}#adminmenu div.wp-menu-name{padding:5px}#adminmenu div.wp-menu-image{float:left;width:28px;height:28px}.folded #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:28px}#adminmenu .wp-menu-arrow div{display:none;position:absolute;top:7px;left:-1px;width:14px;height:15px;-moz-transform:matrix(-0.6,1,0.6,1,0,0);-webkit-transform:matrix(-0.6,1,0.6,1,0,0);-o-transform:matrix(-0.6,1,0.6,1,0,0);-ms-transform:matrix(-0.6,1,0.6,1,0,0);transform:matrix(-0.6,1,0.6,1,0,0)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{-moz-transform:translate(145px);-webkit-transform:translate(145px);-o-transform:translate(145px);-ms-transform:translate(145px);transform:translate(145px);height:28px;border-width:1px 0;border-style:solid;top:0}.folded #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow div,#adminmenu li.wp-has-submenu .wp-menu-arrow div,#adminmenu li.current .wp-menu-arrow div,.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow,#adminmenu a:hover .wp-menu-arrow{display:block}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-menu-open .wp-menu-arrow{top:0}.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow{z-index:1001}.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow{display:none}#adminmenu .wp-not-current-submenu .wp-menu-arrow div{width:15px;top:6px;border-width:0 0 1px 1px;border-style:solid}#adminmenu .wp-menu-arrow,.folded #adminmenu li .wp-menu-arrow div,.no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow{display:none}.folded #adminmenu li.current .wp-menu-arrow,.folded #adminmenu li.current .wp-menu-arrow div,.folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.folded #adminmenu li.wp-menu-open .wp-menu-arrow,.folded #adminmenu li a:focus .wp-menu-arrow{display:block}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100)}#adminmenu li.wp-menu-separator{height:3px;padding:0;margin:0;border-width:1px 0;border-style:solid;cursor:inherit}#adminmenu div.separator{height:1px;padding:0;border-width:1px 0 0 0;border-style:solid}#adminmenu .wp-submenu .wp-submenu-head{padding:5px 4px 5px 10px;margin:-4px -1px 4px;border-width:1px 0;border-style:solid;-moz-border-top-right-radius:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}#adminmenu li.wp-menu-open{border-width:0 0 1px;border-style:solid}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}.folded #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.folded #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.wp-menu-arrow{z-index:25;position:absolute;right:100%;margin:0;height:30px;width:6px;-moz-transform:translate(146px);-webkit-transform:translate(146px);-o-transform:translate(146px);-ms-transform:translate(146px);transform:translate(146px)}#adminmenu .awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{position:absolute;font-family:sans-serif;font-size:9px;font-weight:bold;line-height:17px;margin-top:1px;margin-left:7px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;z-index:26}#adminmenu li .awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{display:block;padding:0 6px}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none}#collapse-menu{font-size:12px;line-height:34px;border-width:1px 0 0;border-style:solid}.folded #collapse-menu span{display:none}#collapse-button,#collapse-button div{width:15px;height:15px}#collapse-button{float:left;margin:8px 6px;border-width:1px;border-style:solid;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px}@media only screen and (max-width:900px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-left:52px}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap,.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top{width:32px}.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu{top:-1px;left:32px}.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}.auto-fold #adminmenu .wp-menu-name{display:none}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{height:28px}.auto-fold #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}.auto-fold #adminmenu li .wp-menu-arrow div{display:none}.auto-fold #adminmenu li.current .wp-menu-arrow,.auto-fold #adminmenu li.current .wp-menu-arrow div,.auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,.auto-fold #adminmenu li a:focus .wp-menu-arrow{display:block}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold #collapse-menu span{display:none}}.post-com-count-wrapper{min-width:22px;font-family:sans-serif}.post-com-count{background-image:url('../images/bubble_bg.gif');height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat}.post-com-count span{font-size:11px;font-weight:bold;line-height:1.4em;height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px}strong .post-com-count{background-position:center -55px}.post-com-count:hover{background-position:center -3px}.column-response .post-com-count{float:left;margin-right:5px;text-align:center}.response-links{float:left}#the-comment-list .attachment-80x60{padding:4px 8px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble.png');background-repeat:no-repeat;height:12px;width:12px}html.wp-toolbar{padding-top:28px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.narrow{width:70%;margin-bottom:40px}.narrow p{line-height:150%}.widefat th,.widefat td{overflow:hidden}.widefat th{font-weight:normal}.widefat td p{margin:2px 0 .8em}.widefat .column-comment p{margin:.6em 0}.postbox-container{float:left}#dashboard-widgets.columns-1 .postbox-container{width:100%}#dashboard-widgets.columns-2 .postbox-container{width:49.5%}#dashboard-widgets.columns-2 #postbox-container-2,#dashboard-widgets.columns-2 #postbox-container-3,#dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#dashboard-widgets.columns-3 .postbox-container{width:33.5%}#dashboard-widgets.columns-3 #postbox-container-1{width:33%}#dashboard-widgets.columns-3 #postbox-container-3,#dashboard-widgets.columns-3 #postbox-container-4{float:right}#dashboard-widgets.columns-4 .postbox-container{width:25%}.postbox-container .meta-box-sortables{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.metabox-holder .postbox-container .empty-container{border:3px dashed #ccc;height:250px}.metabox-holder.columns-1 .postbox-container .empty-container,.columns-2 #postbox-container-3 .empty-container,.columns-2 #postbox-container-4 .empty-container,.columns-3 #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#poststuff{padding-top:10px}#poststuff #post-body{padding:0}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#post-body-content{width:100%;float:left}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#wpbody-content .metabox-holder .postbox-container .empty-container{border:0 none;height:0;min-height:0}}@media only screen and (min-width:800px) and (max-width:1200px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}.index-php .screen-layout,.index-php .columns-prefs{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}}@media only screen and (max-width:850px){#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 .empty-container,#poststuff #postbox-container-1 #side-sortables:empty{border:0 none;height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0}.screen-layout,.columns-prefs{display:none}}.postbox .hndle{border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}.js .postbox .hndle{cursor:move}.postbox.closed .hndle{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.hndle a{font-size:11px;font-weight:normal}.postbox .handlediv{float:right;width:27px;height:30px}.js .postbox .handlediv{cursor:pointer}.sortable-placeholder{border-width:1px;border-style:dashed;margin-bottom:20px}.widget,.postbox,.stuffbox{margin-bottom:20px;padding:0;border-width:1px;border-style:solid;line-height:1}.widget .widget-top,.postbox h3,.stuffbox h3{margin-top:1px;border-bottom-width:1px;border-bottom-style:solid;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .widget .widget-top,.js .postbox h3{cursor:move}.postbox .inside,.stuffbox .inside{padding:0 12px 0 10px;line-height:1.4em}.postbox .inside{margin:10px 0;position:relative}.postbox.closed h3{border:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.temp-border{border:1px dotted #ccc}.columns-prefs label{padding:0 5px}#dashboard-widgets-wrap{margin:0 -8px}#wpbody-content .metabox-holder{padding-top:10px}#dashboard-widgets .meta-box-sortables{margin:0 8px}#dashboard_recent_comments div.undo{border-top-style:solid;border-top-width:1px;margin:0 -10px;padding:3px 8px;font-size:11px}.welcome-panel{position:relative;overflow:auto;margin:20px 0;padding:23px 10px 12px;border-width:1px;border-style:solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;font-size:13px;line-height:2.1em}.welcome-panel h3{margin:0;font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:normal;line-height:1.2}.welcome-panel h4{margin:1.33em 0 0;font-size:13px}.welcome-panel .about-description{font-size:16px;margin:0}.welcome-panel .welcome-panel-close{position:absolute;top:5px;right:10px;padding:8px 3px;font-size:13px;text-decoration:none;line-height:1}.welcome-panel .welcome-panel-close:before{content:' ';position:absolute;left:-12px;width:10px;height:100%;background:url('../images/xit.gif') 0 17% no-repeat}.welcome-panel .welcome-panel-close:hover:before{background-position:100% 17%}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 0 3px}.welcome-panel .welcome-panel-column-container{clear:both;overflow:hidden;position:relative}.welcome-panel .welcome-panel-column{width:32%;min-width:200px;float:left}.welcome-panel .welcome-panel-column:first-child{width:36%}.welcome-panel .welcome-panel-column ul{margin:.8em 1em 1em 0}.welcome-panel .welcome-panel-column li{line-height:16px;list-style-type:none}.ie8 .welcome-panel .welcome-panel-column{min-width:230px}.welcome-panel .welcome-icon{display:block;padding:2px 0 8px 32px;background-image:url('../images/welcome-icons.png');background-repeat:no-repeat;background-size:16px}.welcome-panel .welcome-add-page{background-position:0 2px}.welcome-panel .welcome-edit-page{background-position:0 -90px}.welcome-panel .welcome-learn-more{background-position:0 -136px}.welcome-panel .welcome-comments{background-position:0 -182px}.welcome-panel .welcome-view-site{background-position:0 -274px}.welcome-panel .welcome-widgets-menus{background-position:1px -229px;line-height:14px}.welcome-panel .welcome-write-blog{background-position:0 -44px}.welcome-panel-content{margin-left:13px;max-width:1500px}.welcome-panel-content p{margin-top:7px}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column,.welcome-panel .welcome-panel-column:first-child{display:block;float:none;width:100%}.welcome-panel .welcome-panel-column li{display:inline-block;margin-right:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}.welcome-panel .welcome-icon{padding-left:25px}}.edit-box{display:none}h3:hover .edit-box{display:inline}#dashboard-widgets form .input-text-wrap input{width:100%}#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets a{text-decoration:none}#dashboard-widgets h3 a{text-decoration:underline}#dashboard-widgets h3 .postbox-title-action{position:absolute;right:10px;padding:0;top:5px}.js #dashboard-widgets h3 .postbox-title-action{right:30px}#dashboard-widgets h4{font-size:13px;font-weight:normal;line-height:1;margin:0 0 .2em;padding:0}#dashboard_right_now p.sub,#dashboard_right_now .table,#dashboard_right_now .versions{margin:-12px}#dashboard_right_now .inside{font-size:12px;padding-top:20px}#dashboard_right_now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}#dashboard_right_now .table{margin:0;padding:0;position:relative}#dashboard_right_now .table_content{float:left;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now .table_discussion{float:right;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now table td{padding:3px 0;white-space:nowrap}#dashboard_right_now table tr.first td{border-top:0}#dashboard_right_now td.b{padding-right:6px;text-align:right;font-size:14px;width:1%}#dashboard_right_now td.b a{font-size:18px}#dashboard_right_now td.b a:hover{color:#d54e21}#dashboard_right_now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}#dashboard_right_now .t a{white-space:nowrap}#dashboard_right_now .spam{color:red}#dashboard_right_now .waiting{color:#e66f00}#dashboard_right_now .approved{color:green}#dashboard_right_now .versions{padding:6px 10px 12px;clear:both}#dashboard_right_now a.button{float:right;clear:right;position:relative;top:-5px}#dashboard_recent_comments h3{margin-bottom:0}#dashboard_recent_comments .inside{margin-top:0}#dashboard_recent_comments .comment-meta .approve{font-style:italic;font-family:sans-serif;font-size:10px}#dashboard_recent_comments .subsubsub{float:none;white-space:normal}#the-comment-list{position:relative}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:0}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list .comment-item{padding:1em 10px;border-top:1px solid}#the-comment-list .comment-item .avatar{float:left;margin:0 10px 5px 0}#the-comment-list .comment-item h4{line-height:1.7em;margin-top:-0.4em;color:#777}#the-comment-list .comment-item h4 cite{font-style:normal;font-weight:normal}#the-comment-list .comment-item:first-child{border-top:0}#the-comment-list .comment-item blockquote,#the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:12px}#the-comment-list .pingback{padding-left:9px!important}#the-comment-list .comment-item,#the-comment-list #replyrow{margin:0 -10px}#dashboard_recent_comments #the-comment-list .trackback blockquote,#dashboard_recent_comments #the-comment-list .pingback blockquote{display:block}#title-wrap label,#tags-input-wrap label{cursor:text}#title-wrap #title{padding:2px 6px;font-size:1.3em;line-height:100%;outline:0}#title-wrap #title-prompt-text{font-size:1.3em;padding:5px 8px}#tags-input-wrap #tags-input{outline:0}#tags-input-wrap #tags-input-prompt-text{font-size:1em;padding:4px 8px}.no-js #dashboard_quick_press{display:none}#dashboard_quick_press .easy-blogging{padding:0 8px;text-align:left}#dashboard_quick_press .input-text-wrap{position:relative}#dashboard_quick_press .prompt{color:#bbb;position:absolute}#dashboard_quick_press div.updated{padding:0 5px}#dashboard_quick_press .input-text-wrap,#dashboard_quick_press .textarea-wrap{margin:0 0 1em 0}#dashboard_quick_press .wp-media-buttons{margin:0 0 .2em 1px;padding:0}#dashboard_quick_press .wp-media-buttons a{color:#777}#dashboard-widgets #dashboard_quick_press form p.submit input{float:left}#dashboard-widgets #dashboard_quick_press form p.submit #save-post{margin:0 .7em 0 1px}#dashboard-widgets #dashboard_quick_press form p.submit #publish{float:right}#dashboard-widgets #dashboard_quick_press form p.submit .spinner{vertical-align:middle;margin:4px 6px 0 0}#dashboard_recent_drafts ul,#dashboard_recent_drafts p{margin:0;padding:0;word-wrap:break-word}#dashboard_recent_drafts ul{list-style:none}#dashboard_recent_drafts ul li{margin-bottom:1em}#dashboard_recent_drafts h4{line-height:1.7em;word-wrap:break-word}#dashboard_recent_drafts h4 abbr{font-weight:normal;font-family:sans-serif;font-size:12px;color:#999;margin-left:3px}.rss-widget ul{margin:0;padding:0;list-style:none}.rss-widget ul li{line-height:1.5em;margin-bottom:12px}.rss-widget span.rss-date{color:#999;font-size:12px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:'\2014'}a.rsswidget{font-size:13px;line-height:1.7em}#dashboard_plugins h4{line-height:1.7em}#dashboard_plugins h5{font-size:13px;font-weight:normal;line-height:1.4em;margin:0;display:inline}#dashboard_plugins h5 a{line-height:1.4em}#dashboard_plugins .inside span{font-size:12px;padding-left:5px}#dashboard_plugins p{margin:.3em 0 1.4em;line-height:1.4em}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word}#dashboard_browser_nag a{color:white;text-decoration:underline}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:bold;line-height:normal}#dashboard_browser_nag a.browse-happy-link,#dashboard_browser_nag a.update-browser-link{text-shadow:#d29a04 0 1px 0}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:125px}#dashboard_browser_nag .browser-icon{margin-top:-35px}#dashboard_browser_nag.postbox{background-color:#e29808;background-image:none;border-color:#edc048;color:white;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox h3{border-bottom-color:#f6e2ac;text-shadow:none;background:transparent none;color:white;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox.browser-insecure{background-color:#ac1b1b;border-color:#ac1b1b}#dashboard_browser_nag.postbox.browser-insecure h3{border-bottom-color:#cd5a5a;color:white}#dashboard_browser_nag.browser-insecure a.browse-happy-link,#dashboard_browser_nag.browser-insecure a.update-browser-link{text-shadow:#871b15 0 1px 0}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-posts,.fixed .column-date,.fixed .column-parent,.fixed .column-links,.fixed .column-author,.fixed .column-format{width:10%}.fixed .column-response,.fixed .column-categories,.fixed .column-tags,.fixed .column-rel,.fixed .column-role{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:4em;padding:8px 0;text-align:left}.fixed .column-comments .vers{padding-left:3px}.fixed .column-comments a{float:left}.fixed .column-icon{width:80px}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:18px}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv #add-new-comment{border-width:0 0 1px;border-style:none none solid}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead th{background:transparent;padding:0 7px 4px;font-style:italic}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv .spinner{padding-left:5px}.sorting-indicator{display:none;width:7px;height:4px;margin-top:8px;margin-left:7px;background-image:url('../images/sort.gif');background-repeat:no-repeat}tr.wp-locked .locked-indicator{background:url('../images/lock.png') no-repeat;margin:-2px 0 0 6px;height:20px;width:16px}tr.wp-locked .check-column label,tr.wp-locked .check-column input[type="checkbox"],tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}tr .locked-info{height:0;opacity:0}tr.wp-locked .locked-info{height:auto;opacity:1}tr.locked-info,tr.wp-locked .locked-info{-webkit-transition:height 1s,opacity 500ms;-moz-transition:height 1s,opacity 500ms;-ms-transition:height 1s,opacity 500ms;-o-transition:height 1s,opacity 500ms;transition:height 1s,opacity 500ms}.fixed .column-comments .sorting-indicator{margin-top:3px}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:7px 7px 8px}.fixed .column-comments.sortable a,.fixed .column-comments.sorted a{padding:8px 0}th.sortable a span,th.sorted a span{float:left;cursor:pointer}th.sorted.asc .sorting-indicator,th.desc:hover span.sorting-indicator{display:block;background-position:0 0}th.sorted.desc .sorting-indicator,th.asc:hover span.sorting-indicator{display:block;background-position:-7px 0}.tablenav-pages a{border-bottom-style:solid;border-bottom-width:2px;font-weight:bold;margin-right:1px;padding:0 2px}.tablenav-pages .current-page{text-align:center}.tablenav-pages .next-page{margin-left:2px}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;line-height:30px;font-size:12px}.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:active{cursor:default}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .displaying-num{margin-right:10px;font-size:12px;font-style:italic}.tablenav .actions{overflow:hidden;padding:2px 8px 0 0}.tablenav .delete{margin-right:20px}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;padding:3px 6px}.view-switch{float:right;margin:6px 8px 0}.view-switch a{text-decoration:none}.filter{float:left;margin:-5px 0 0 10px}.filter .subsubsub{margin-left:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0}#posts-filter fieldset legend{padding:0 0 .2em 1px}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}tr.inline-edit-row td,#wpbody-content .inline-edit-row fieldset .inline-edit-col{padding:0 .5em}.inline-edit-row fieldset .inline-edit-group{clear:both}.inline-edit-row fieldset .inline-edit-group:after{content:".";display:block;height:0;clear:both;visibility:hidden}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px;text-transform:uppercase}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{margin:0;padding:0;line-height:27px;font-style:italic;line-height:1.8em}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom}.inline-edit-row fieldset label textarea{width:100%;height:4em}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea{border-style:solid;border-width:1px}.inline-edit-row fieldset .inline-edit-date{float:left}.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}.inline-edit-row fieldset ul.cat-checklist li,.inline-edit-row fieldset ul.cat-checklist input{margin:0}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row #bulk-titles div{font-family:sans-serif;font-style:normal;font-size:11px}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-save .spinner{padding:4px 10px 0;vertical-align:top;float:right}ul.cat-checklist{height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0}#bulk-titles{display:block;height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0 0 5px}.quick-edit-row-post fieldset label.inline-edit-status{float:left}#bulk-titles{line-height:140%}#bulk-titles div{margin:.2em .3em}#bulk-titles div a{cursor:pointer;display:block;float:left;height:10px;margin:3px 3px 0 -2px;overflow:hidden;position:relative;text-indent:-9999px;width:10px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments a,#show-comments .spinner{float:left}#lost-connection-notice .spinner{display:block;float:left;margin:0 5px 0 0}.rtl #lost-connection-notice .spinner{float:right;margin:0 0 0 5px}#titlediv{position:relative;margin-bottom:5px}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:1px 0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title-prompt-text,#wp-fullscreen-title-prompt-text{color:#bbb;position:absolute;font-size:1.7em;padding:11px 10px}#wp-fullscreen-save .fs-saved{color:#999;float:right;margin-top:4px}#wp-fullscreen-title-prompt-text{padding:11px}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px}input#link_description,input#link_url{width:98%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#edit-slug-box{line-height:24px;min-height:25px;margin-top:5px;padding-right:6px}#edit-slug-box .cancel{margin-right:10px;font-size:11px}#editable-post-name-full{display:none}#editable-post-name input{width:16em}.postarea h3 label{float:left}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px}.submitbox .submitdelete{text-decoration:none;padding:1px 2px}.submitbox .submitdelete,.submitbox .submit a:hover{border-bottom-width:1px;border-bottom-style:solid}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}.inside-submitbox #post_status{margin:2px 0 2px -2px}#post-status-select{line-height:2.5em;margin-top:3px}#post-body #normal-sortables{min-height:50px}.postbox{position:relative;min-width:255px}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type="text"],.category-add select{width:100%;max-width:260px}.press-this #side-sortables .category-tabs li,ul.category-tabs li,#side-sortables .add-menu-item-tabs li,.wp-tab-bar li{display:inline;line-height:1.35em}.no-js .category-tabs li.hide-if-no-js{display:none}.category-tabs a,#side-sortables .add-menu-item-tabs a,.wp-tab-bar a{text-decoration:none}.category-tabs{margin:8px 0 3px}#category-adder h4{margin:10px 0}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:0 7px 5px}#side-sortables .submitbox .submit input,#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover{border:0 none}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0}ul.category-tabs,ul.add-menu-item-tabs,ul.wp-tab-bar{margin-top:12px}ul.category-tabs li{border-style:solid;border-width:1px;position:relative}ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-style:solid solid none;border-width:1px 1px 0}#post-body .add-menu-item-tabs li.tabs{border-style:solid none solid solid;border-width:1px 0 1px 1px;margin-right:-1px}ul.category-tabs li,ul.add-menu-item-tabs li,ul.wp-tab-bar li{padding:3px 5px 5px;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}form#tags-filter{position:relative}td.post-title strong,td.plugin-title strong{display:block;margin-bottom:.2em}td.post-title p,td.plugin-title p{margin:6px 0}.wp-hidden-children .wp-hidden-child,.ui-tabs-hide{display:none}.commentlist .avatar{vertical-align:text-top}#post-body .tagsdiv #newtag{margin-right:5px;width:16em}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{width:68%}#post-status-info{border-width:0 1px 1px;border-style:none solid solid;width:100%;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}#post-status-info td{font-size:12px}.autosave-info{padding:2px 15px;text-align:right}#editorcontent #post-status-info{border:0}#post-body .wp_themeSkin .mceStatusbar a.mceResize{display:block;background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;margin:0 1px;position:relative;top:-2px}#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize{top:20px}#content-resize-handle{background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;position:absolute;right:2px;height:19px}.press-this #content-resize-handle{bottom:2px}.tmce-active #content-resize-handle{display:none}#wp-word-count{display:block;padding:2px 10px}#timestampdiv select{height:20px;line-height:14px;padding:0;vertical-align:top}#aa,#jj,#hh,#mn{padding:1px;font-size:12px}#jj,#hh,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{background-repeat:no-repeat;background-position:left center;padding:2px 0 1px 20px}#timestampdiv{padding-top:5px;line-height:23px}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{border-width:1px;border-style:solid}.notification-dialog{position:fixed;top:30%;left:50%;width:450px;margin-left:-225px;background:#fff;line-height:1.5;z-index:1000005}.notification-dialog-background{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.5;filter:alpha(opacity=50);z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#post-lock-dialog .post-locked-message a.button{margin-right:10px}#post-lock-dialog .post-locked-avatar{float:left;margin:0 20px 20px 0}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:left;margin-right:3px}#post-lock-dialog.saving .locked-saving,#post-lock-dialog.saved .locked-saved{display:inline}#postcustomstuff thead th{padding:5px 8px 8px}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select{margin:3px 3px 0}#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border-width:1px;border-style:solid;border-spacing:0}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff th.left,#postcustomstuff td.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-right:10px}.revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-controls{padding-top:40px;height:100px;z-index:1}.revisions-controls input[type="checkbox"]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;padding-bottom:10px}.revisions-controls .author-card .date{color:#777}.revisions-controls .author-card .avatar,.revisions-controls .author-card .author-info{float:left;margin-left:6px;margin-right:6px}.revisions-controls .author-card.autosave{color:#d54e21}.revisions-controls .author-card .author-name{font-weight:bold}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.revisions-tickmarks{position:relative;margin:0 auto;height:.8em;top:7px;max-width:70%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div{position:absolute;height:100%;border-style:solid;border-width:0 1px 0 0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:fixed;vertical-align:middle;opacity:0;width:100%;top:50%;margin-left:-90px;-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s;filter:alpha(opacity=0)}body.folded .revisions .loading-indicator{margin-left:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1;filter:alpha(opacity=100)}.revisions .diff{-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s}.revisions.loading .diff{opacity:.5;filter:alpha(opacity=50)}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:15px}.revision-toggle-compare-mode{position:absolute;top:0;right:0}.comparing-two-revisions .revisions-previous,.comparing-two-revisions .revisions-next,.revisions-meta .diff-meta-to strong{display:none}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions-previous,.revisions-next{position:relative;z-index:1}.revisions-previous{float:left}.revisions-next{float:right}.post-revisions li img,#revisions-meta-restored img{vertical-align:middle}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap;word-wrap:break-word}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.content.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{padding:.5em;font-family:Consolas,Monaco,monospace}table.diff .diff-deletedline del,table.diff .diff-addedline ins{text-decoration:none}.diff-meta{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;padding:5px;clear:both;min-height:32px}.diff-meta input.restore-revision{float:right;margin-left:6px;margin-right:6px;margin-top:4px}.diff-title strong{line-height:32px;min-width:60px;text-align:right;float:left;margin-right:5px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-right:0;margin-left:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;display:none;opacity:0}.revisions-tooltip.flipped{margin-left:0;margin-right:-70px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-left:0;margin-right:35px;left:auto;right:0}.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow>span{right:25px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;left:0;margin-left:35px;bottom:-15px}.revisions-tooltip-arrow>span{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);tranform:rotate(45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{left:auto;right:20px}.ie8 .revisions-tooltip-arrow>span{left:15px;top:-25px;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"}.revisions-tooltip,.revisions-tooltip-arrow>span{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.wp-slider.ui-slider{position:relative;border-width:1px;border-style:solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;text-align:left;cursor:pointer}.wp-slider .ui-slider-handle{position:absolute;z-index:2;margin-top:-3px;width:19px;height:19px;border-width:1px;border-style:solid;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}.wp-slider .ui-slider-handle:before{content:"";position:absolute;top:6px;left:3px;height:8px;width:13px;background:url(../images/arrows-pr.png) no-repeat -2px -47px}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{height:8px;width:7px}.wp-slider .ui-slider-handle.from-handle:before{background-position:-5px -84px;left:7px}.wp-slider .ui-slider-handle.to-handle:before{background-position:-4px -65px;left:5px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.8em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-0.25em;margin-left:-0.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{left:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{right:0}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:left;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}a.post-state-format{overflow:hidden;display:inline-block;vertical-align:middle;height:16px;width:16px;margin-right:5px;background-repeat:no-repeat;text-indent:-999em}#post-formats-select{line-height:2em}.post-format-icon{margin-left:5px;padding:2px 0 2px 21px;line-height:2em}.post-format-icon.post-format-standard{background-position:0 0}.post-format-icon.post-format-image{background-position:0 -32px}.post-format-icon.post-format-gallery{background-position:0 -64px}.post-format-icon.post-format-audio{background-position:0 -96px}.post-format-icon.post-format-video{background-position:0 -128px}.post-format-icon.post-format-chat{background-position:0 -160px}.post-format-icon.post-format-status{background-position:0 -192px}.post-format-icon.post-format-aside{background-position:0 -224px}.post-format-icon.post-format-quote{background-position:0 -256px}.post-format-icon.post-format-link{background-position:0 -288px}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}#post-body ul.add-menu-item-tabs{float:left;width:120px;text-align:right;margin:0 -120px 0 5px;padding:0}#post-body ul.add-menu-item-tabs li{padding:8px}#post-body ul.add-menu-item-tabs li.tabs{border-top-left-radius:3px;border-bottom-left-radius:3px;-moz-border-top-left-radius:3px;-moz-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px}.wp-tab-panel,.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border-style:solid;border-width:1px}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}#front-page-warning,#front-static-pages ul,ul.export-filters,.inline-editor ul.cat-checklist ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:19px;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap p,.form-wrap label{font-size:11px}.form-wrap label{display:block;padding:2px;font-size:12px}.form-wrap .form-field{margin:0 0 10px;padding:8px 0}.form-wrap .form-field #parent{max-width:100%}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%}p.description,.form-wrap p{margin:2px 0 5px}p.help,p.description,span.description,.form-wrap p{font-size:12px;font-style:italic;font-family:sans-serif}.col-wrap h3{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}#poststuff .taghint{color:#aaa;margin:15px 0 -24px 12px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{width:180px}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}#poststuff .tagsdiv .howto{margin:0 0 6px 8px}p.popular-tags{border-radius:8px;-moz-border-radius:8px;-webkit-border-radius:8px;border-width:1px;border-style:solid;line-height:2em;max-width:1000px;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h3{margin:2px 0 12px}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left}.ac_over{cursor:pointer}.ac_match{text-decoration:underline}table.links-table{width:100%}.links-table th{font-weight:normal;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table th,.links-table td{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type="text"],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}.media-item .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.align .media-item .describe th{padding-top:0}.media-item .describe input[type="text"],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.media-item.media-blank .describe{border:0}.media-item .media-item-info tr{background-color:transparent}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}.media-item .filename{line-height:36px;overflow:hidden;padding:0 10px}.media-item .error-div{padding-left:10px}.media-item .pinkynail{float:left;margin:2px 2px 0;max-width:40px;max-height:32px}.media-item .startopen,.media-item .startclosed{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:6px 10px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;border:1px solid #d1d1d1;background:#f7f7f7;background-image:-webkit-gradient(linear,left bottom,left top,from(#fff),to(#f7f7f7));background-image:-webkit-linear-gradient(bottom,#fff,#f7f7f7);background-image:-moz-linear-gradient(bottom,#fff,#f7f7f7);background-image:-o-linear-gradient(bottom,#fff,#f7f7f7);background-image:linear-gradient(to top,#fff,#f7f7f7);border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;-moz-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);box-shadow:inset 0 0 3px rgba(0,0,0,0.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-24px;background:#8cc1e9;background-image:-webkit-gradient(linear,left bottom,left top,from(#72a7cf),to(#8cc1e9));background-image:-webkit-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-moz-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-o-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:linear-gradient(to top,#72a7cf,#8cc1e9);border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 3px rgba(0,0,0,0.3);box-shadow:0 0 3px rgba(0,0,0,0.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0 8px;text-shadow:0 1px 0 rgba(255,255,255,0.4);color:rgba(0,0,0,0.6)}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:bold}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:bold}.media-upload-form th.label label{font-size:13px;font-weight:bold;line-height:normal;margin:.5em}.media-upload-form th.label label span{padding:0 5px}abbr.required{border:medium none;text-decoration:none}.media-item .edit-attachment,.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:15px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-style:solid;border-width:1px;min-height:36px;position:relative;margin-top:-1px;width:100%}#media-items{width:623px}.media-new-php #media-items{margin:1em 0}#media-items:empty{border:0 none}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-upload-form .media-item.error p,.media-item .error-div{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{width:600px;height:300px;overflow:hidden;padding:33px 0 51px;position:absolute;z-index:1000}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%}.find-box-inside{overflow:auto;padding:6px;height:100%}.find-box-search{overflow:hidden;padding:9px;position:relative}.find-box-search .spinner{float:none;left:125px;position:absolute;top:9px}#find-posts-input{float:left;width:140px;height:24px}#find-posts-search{float:left;margin:1px 4px 0 3px}#find-posts-response{margin:8px 0;padding:0 1px 6px}#find-posts-response table{width:100%}#find-posts-response .found-radio{padding:3px 0 0 8px;width:15px}.find-box-buttons{padding:8px;overflow:hidden}.find-box #resize-se{position:absolute;right:1px;bottom:1px}.ui-find-overlay{position:absolute;top:0;left:0;background-color:black;opacity:.6;filter:alpha(opacity=60)}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;border-radius:6px;-moz-border-radius:6px;-webkit-border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #ddd;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0}.post-php .imgedit-wrap table{width:100%}.describe .imgedit-wrap table td,.wp_attachment_holder .imgedit-wrap table td{vertical-align:top;padding-top:0}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px}.wp_attachment_holder .imgedit-wrap table td.imgedit-settings{width:250px}td.imgedit-settings input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;background-size:16px 16px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.spinner{background:url(../images/wpspin_light.gif) no-repeat;background-size:16px 16px;display:none;float:right;opacity:.7;filter:alpha(opacity=70);width:16px;height:16px;margin:5px 5px 0}.no-float{float:none}.media-disabled,.imgedit-settings .disabled{color:grey}.wp_attachment_image,.A1B1{overflow:hidden}.wp_attachment_image .button,.A1B1 .button{float:left}.no-js .wp_attachment_image .button{display:none}.wp_attachment_image .spinner,.A1B1 .spinner{float:left;padding:0 4px 4px;vertical-align:bottom}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;height:32px}.imgedit-crop-wrap{position:relative}.imgedit-crop{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;margin:0 8px 0 0}.imgedit-crop.disabled:hover{background-position:-9px -31px}.imgedit-crop:hover{background-position:-9px -1px}.imgedit-rleft{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;margin:0 3px}.imgedit-rleft.disabled:hover{background-position:-46px -31px}.imgedit-rleft:hover{background-position:-46px -1px}.imgedit-rright{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;margin:0 8px 0 3px}.imgedit-rright.disabled:hover{background-position:-77px -31px}.imgedit-rright:hover{background-position:-77px -1px}.imgedit-flipv{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;margin:0 3px}.imgedit-flipv.disabled:hover{background-position:-115px -31px}.imgedit-flipv:hover{background-position:-115px -1px}.imgedit-fliph{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;margin:0 8px 0 3px}.imgedit-fliph.disabled:hover{background-position:-147px -31px}.imgedit-fliph:hover{background-position:-147px -1px}.imgedit-undo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;margin:0 3px}.imgedit-undo.disabled:hover{background-position:-184px -31px}.imgedit-undo:hover{background-position:-184px -1px}.imgedit-redo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;margin:0 8px 0 3px}.imgedit-redo.disabled:hover{background-position:-215px -31px}.imgedit-redo:hover{background-position:-215px -1px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group-top{margin:5px 0}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic;margin-bottom:8px}a.imgedit-help-toggle{text-decoration:none}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-group{border-width:1px;border-style:solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;margin-bottom:8px;padding:2px 10px}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;margin-bottom:-8px;clear:both}.form-table td{margin-bottom:9px;padding:8px 10px;line-height:20px;font-size:12px}.form-table td p{margin-top:4px}.color-palette .form-table td{border-width:1px 1px 0;border-style:solid solid none;height:10px;line-height:20px;width:10px}.form-table th{vertical-align:top;text-align:left;padding:10px;width:200px}.form-table th.th-full{width:auto}.form-table div.color-option{display:block;clear:both;margin-top:12px}.form-table input.tog{margin-top:2px;margin-right:2px;float:left}.form-table table.color-palette{vertical-align:bottom;float:left;margin:-12px 3px 11px}.form-table th,.form-wrap label{font-weight:normal;text-shadow:#fff 0 1px 0}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom-width:1px;border-bottom-style:solid}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}.commentlist .avatar{vertical-align:text-top}#replyrow input{border-width:1px;border-style:solid}#replyrow td{padding:2px}#replyrow h5{margin:.2em 0 0;padding:0 5px;line-height:1.4em;font-size:1em}#replysubmit{margin:0;padding:0 5px 3px;text-align:center}#replysubmit .spinner{padding:2px 0 0;vertical-align:top;float:right}#replysubmit .button{margin-right:5px}#replysubmit .error{color:red;line-height:21px;text-align:center}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.comment-php .wp-editor-area{height:200px}.comment-ays{margin-bottom:0;border-style:solid;border-width:1px}.comment-ays th{border-right-style:solid;border-right-width:1px}.trash-undo-inside,.spam-undo-inside{margin:1px 8px 1px 0;line-height:16px}.trash-undo-inside .avatar,.spam-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}.theme-install-php .tablenav{height:auto}.theme-install-php .spinner{margin-top:9px}h3.available-themes{margin:.3em 0 1em;float:left}.available-theme{display:inline-block;margin-right:10px;overflow:hidden;padding:20px 20px 20px 0;vertical-align:top;width:300px}.available-theme .screenshot{width:300px;height:225px;display:block;border-width:1px;border-style:solid;margin-bottom:10px;overflow:hidden}.available-theme img{width:300px}.available-theme h3{margin:15px 0 0}.available-theme .theme-author{line-height:18px}.available-theme .action-links{margin-top:10px;overflow:hidden}.available-theme a.screenshot:focus{border-color:#777}#current-theme .theme-info li,.theme-options li,.available-theme .action-links li{float:left;padding-right:10px;margin-right:10px;border-right:1px solid #dfdfdf}#current-theme .theme-info li:last-child,.theme-options li:last-child,.available-theme .action-links li:last-child{padding-right:0;margin-right:0;border-right:0}.available-theme .action-links li{padding-right:8px;margin-right:8px}.ie8 .available-theme .action-links li{padding-right:7px;margin-right:7px}.available-theme .action-links .delete-theme{float:right;margin-left:8px;margin-right:0}.available-theme .action-links .delete-theme a{color:red;padding:2px}.available-theme .action-links .delete-theme a:hover{background:red;color:white;text-decoration:none}.available-theme .action-links p{float:left}#current-theme{margin:20px 0 10px;padding:0 0 20px;border-bottom-width:1px;border-bottom-style:solid;overflow:hidden}#current-theme.has-screenshot{padding-left:330px}#current-theme h3{margin:0;font-size:12px;font-weight:normal;color:#999}#current-theme h4{margin:3px 0 16px;font-size:20px}#current-theme h4 span{margin-left:20px;font-size:12px;font-weight:normal}#current-theme a{border-bottom:0}#current-theme .theme-info{margin:1em 0;overflow:hidden}#current-theme .theme-description{margin-top:5px;max-width:600px;line-height:1.6em}#current-theme img{float:left;width:300px;margin-left:-330px;border-width:1px;border-style:solid}.theme-options{overflow:hidden;font-size:14px;padding-bottom:10px}.theme-options .load-customize{margin-right:30px;float:left}.theme-options span{float:left;margin-right:10px;text-transform:uppercase;font-size:11px;line-height:18px;color:#999}.theme-options ul{float:left;margin:0}@media only screen and (max-width:1200px){.folded .available-theme,.folded .available-theme .screenshot{width:300px}.folded .available-theme .screenshot{height:225px}.folded #current-theme img{width:300px;margin-left:-330px}.folded #current-theme.has-screenshot{padding-left:330px}}@media only screen and (max-width:1079px){.folded .available-theme,.folded .available-theme .screenshot{width:270px}.folded .available-theme .screenshot{height:203px}.folded #current-theme img{width:270px;margin-left:-300px}.folded #current-theme.has-screenshot{padding-left:300px}}@media only screen and (max-width:1200px){.available-theme,.available-theme .screenshot,#current-theme img{width:240px}.available-theme .screenshot{height:180px}.available-theme img{width:100%}#current-theme.has-screenshot{padding-left:270px}#current-theme img{margin-left:-270px}}#post-body ul.add-menu-item-tabs li.tabs a,#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{font-weight:bold;text-decoration:none}#TB_window #TB_title{background-color:#222;color:#cfcfcf}#broken-themes{text-align:left;width:50%;border-spacing:3px;padding:3px}.theme-install-php h4{margin:2.5em 0 8px}.appearance_page_custom-header #headimg{border:1px solid #dfdfdf;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:left;margin:0 20px 20px 0}.appearance_page_custom-header .random-header{clear:both;margin:0 20px 20px 0;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dfdfdf}div#custom-background-image img{max-width:400px;max-height:300px}.nav-tab{border-style:solid;border-width:1px 1px 0;color:#aaa;text-shadow:#fff 0 1px 0;font-size:12px;line-height:16px;display:inline-block;padding:4px 14px 6px;text-decoration:none;margin:0 6px -1px 0;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}h2 .nav-tab{padding:4px 10px 6px;font-weight:200;font-size:20px;line-height:24px}.nav-tab-active{border-width:1px;color:#464646}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom-width:1px;border-bottom-style:solid;padding-bottom:0}#dashboard_right_now .versions .b,#post-status-display,#post-visibility-display,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,.media-item .percent,.plugins .name,#pass-strength-result.strong,#pass-strength-result.short,#ed_reply_toolbar #ed_reply_strong,.item-controls .item-order a,.feature-filter .feature-name{font-weight:bold}.plugins p{margin:0 4px;padding:0}.desc .plugins p{margin:0 0 8px}.plugins td.desc{line-height:1.5em}.plugins .desc ul,.plugins .desc ol{margin:0 0 0 2em}.plugins .desc ul{list-style-type:disc}.plugins .row-actions-visible{padding:0}.plugins tbody th.check-column{padding:7px 0}.plugins .inactive td,.plugins .inactive th,.plugins .active td,.plugins .active th{border-top-style:solid;border-top-width:1px;padding:5px 7px 0}.plugins .update th,.plugins .update td{border-bottom:0}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-right:12px;white-space:nowrap}.plugins .second,.plugins .row-actions-visible{padding:0 0 5px}.plugins .update .second,.plugins .update .row-actions-visible{padding-bottom:0}.plugin-update-tr td{border-top:0}.plugins-php .widefat tfoot th,.plugins-php .widefat tfoot td{border-top-style:solid;border-top-width:1px}.plugin-update-tr .update-message{margin:5px;padding:3px 5px}.plugin-install-php h4{margin:2.5em 0 8px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#your-profile #rich_editing{border:0}#display_name{width:15em}#createuser .form-field input{width:25em}#utc-time,#local-time{padding-left:25px;font-style:italic;font-family:sans-serif}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .spinner{float:none;margin:-3px 3px}#wpfooter{position:absolute;bottom:0;left:0;right:0;padding:10px 0;margin-right:20px;border-top-width:1px;border-top-style:solid}#wpfooter p{margin:0;line-height:20px}#wpfooter a{text-decoration:none}#wpfooter a:hover{text-decoration:underline}.wp-badge{padding-top:142px;height:50px;width:173px;font-size:14px;font-weight:bold;line-height:normal;text-align:center;margin:0 -5px;background:url('../images/wp-badge.png?ver=20111120') no-repeat}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap div.updated,.about-wrap div.error{display:none!important}.about-wrap p{line-height:1.6em}.about-wrap h1{margin:.2em 200px 0 0;line-height:1.2em;font-size:2.8em;font-weight:200}.about-wrap h3{font-size:24px;margin-bottom:1em;padding-top:20px}.about-wrap code{font-size:14px}.about-wrap li.wp-person a.web{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:20px;font-weight:normal;line-height:1.6em}.about-wrap .point-releases{margin-top:5px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap h2.nav-tab-wrapper{padding-left:6px}.about-wrap h2 .nav-tab{padding:4px 10px 6px;margin:0 3px -1px 0;font-size:18px;vertical-align:top}.about-wrap h2 .nav-tab-active{font-weight:bold;padding-top:3px}.about-wrap .feature-section{padding-bottom:20px}.about-wrap .feature-section h4{margin-bottom:.6em}.about-wrap .feature-section p{margin-top:.6em}.about-wrap .feature-section img,.about-wrap .feature-section .video{border:0;margin:0 1.94% 10px 0;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.about-wrap .feature-section .video video{max-width:100%}.about-wrap .feature-section.three-col img{margin:.5em 0 .5em 5px;max-width:100%;float:none}.about-wrap .feature-section.images-stagger-right img,.about-wrap .feature-section.images-stagger-right .video{float:right;margin:0 5px 12px 2em}.about-wrap .feature-section.images-stagger-left img{float:left;margin:0 2em 12px 5px}.about-wrap .feature-section .image-100{margin:0 0 2em 0;width:100%}.about-wrap .feature-section .image-66{width:65%}.about-wrap .feature-section .image-66.video{max-width:600px}.about-wrap .feature-section .image-50{max-width:50%}.about-wrap .feature-section img.image-30{max-width:31.2381%}.about-wrap .feature-section.col{margin-bottom:0}.about-wrap .feature-section.col h4{margin:0 0 .6em 0}.about-wrap .feature-section.col .last-feature{margin-right:0}.about-wrap .feature-section.two-col div,.about-wrap .feature-section.three-col div{margin-right:4.999999999%;float:left}.about-wrap .feature-section.two-col div{width:47%}.about-wrap .feature-section.three-col div{width:30%}.ie8 .about-wrap .feature-section.three-col img{margin-left:0}.ie8 .about-wrap .feature-section img{border-width:1px;border-style:solid}.about-wrap .images-stagger-right img.image-30:nth-child(2){margin-left:1em}.about-wrap .three-col-images{text-align:center}.about-wrap .three-col-images img{margin:0 0 10px}.about-wrap .three-col-images .last-feature{float:right}.about-wrap .three-col-images .first-feature{float:left}.about-wrap .changelog .feature-section{overflow:hidden}.about-wrap .changelog li{list-style-type:disc;margin-left:3em}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:bold;line-height:normal}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h4.wp-people-group{margin-top:2.6em;font-size:16px}.about-wrap ul.wp-people-group{overflow:hidden;padding:0 5px;margin:0 -15px 0 -5px}.about-wrap li.wp-person{float:left;margin-right:10px}.about-wrap li.wp-person img.gravatar{float:left;margin:0 10px 10px 0;padding:2px;width:60px;height:60px}.about-wrap ul.compact{margin-bottom:0}.about-wrap ul.compact li.wp-person img.gravatar{width:30px;height:30px}.about-wrap li.wp-person{height:70px;width:280px;padding-bottom:15px}ul.compact .about-wrap li.wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap li.wp-person a.web{display:block;margin:6px 0 2px;font-size:16px;text-decoration:none}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:bold}.freedoms-php .about-wrap ol p{font-weight:normal;margin:.6em 0}.about-description{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:20px;font-weight:normal;line-height:1.6em;margin-top:1.4em}.about-text{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:24px;font-weight:normal;line-height:1.6em;margin:1em 200px 1.4em 0;min-height:60px}@media only screen and (max-width:900px){.about-wrap .feature-section .images-stagger-left img,.about-wrap .feature-section .images-stagger-right img,.about-wrap .feature-section .images-stagger-right .video{clear:both}.about-wrap .feature-section .video.image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .video.image-66{margin-left:3px}}@media only screen and (max-width:768px){.about-wrap .feature-section .image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .image-66{margin-left:3px}.about-wrap .feature-section.images-stagger-left .image-66{margin-right:3px}}body.full-overlay-active{overflow:hidden}.wp-full-overlay{background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%;min-width:0}.wp-full-overlay.expanded{margin-left:300px}.wp-full-overlay .close-full-overlay{text-decoration:none}.wp-full-overlay a.collapse-sidebar{position:absolute;bottom:12px;left:0;z-index:50;display:block;width:19px;height:19px;margin-left:15px;padding:0;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;text-decoration:none}.wp-full-overlay .collapse-sidebar-arrow{position:absolute;margin-top:2px;margin-left:2px;display:block;width:15px;height:15px;background:transparent url('../images/arrows.png') no-repeat -1px -73px}.wp-full-overlay .collapse-sidebar-label{position:absolute;left:100%;color:#808080;line-height:20px;margin-left:10px}.wp-full-overlay.collapsed .collapse-sidebar{position:absolute;left:100%}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:-1px -109px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label{color:#666}.wp-full-overlay-sidebar{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;position:fixed;width:300px;height:100%;top:0;bottom:0;left:0;padding:0;margin:0;z-index:10;overflow:auto;background:#f5f5f5;border-right:1px solid rgba(0,0,0,0.2)}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible;margin-left:-300px}.wp-full-overlay-sidebar:after{content:'';display:block;position:absolute;top:0;bottom:0;right:0;width:3px;box-shadow:-5px 0 4px -4px rgba(0,0,0,0.1) inset;z-index:1000}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;left:0;right:0;height:45px;padding:0 20px;line-height:45px;z-index:10;margin:0;border-top:0;border-bottom:1px solid #fff;box-shadow:inset 0 -1px 0 0 #dfdfdf}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:0;border-top:1px solid #dfdfdf;box-shadow:inset 0 1px 0 0 #fff}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;left:0;right:0;overflow:auto}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content .accordion-section:first-child{border-top:1px solid #fff}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-left:0!important}.wp-full-overlay-main{position:absolute;left:0;right:0;top:0;bottom:0;height:100%}.wp-full-overlay,.wp-full-overlay-sidebar,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main{-webkit-transition-property:left,right,top,bottom,width,margin;-moz-transition-property:left,right,top,bottom,width,margin;-ms-transition-property:left,right,top,bottom,width,margin;-o-transition-property:left,right,top,bottom,width,margin;transition-property:left,right,top,bottom,width,margin;-webkit-transition-duration:.2s;-moz-transition-duration:.2s;-ms-transition-duration:.2s;-o-transition-duration:.2s;transition-duration:.2s}.customize-support .hide-if-customize,.customize-support.wp-core-ui .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize{display:none}.no-customize-support .hide-if-no-customize,.no-customize-support.wp-core-ui .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize{display:none}#customize-container{display:none;background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%}.customize-active #customize-container{display:block}.customize-loading #customize-container{background:#fff url("../images/wpspin_light.gif") no-repeat fixed center center;background-size:16px 16px}.customize-loading #customize-container iframe{opacity:0}#customize-container .collapse-sidebar{bottom:16px}#customize-container iframe,#theme-installer iframe{height:100%;width:100%;z-index:20;-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-ms-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}#theme-installer{display:none}#theme-installer.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 20px}.single-theme .install-theme-info{padding-top:15px}#theme-installer .install-theme-info{display:block}.install-theme-info .theme-install{float:right;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:24px;margin-bottom:0}.install-theme-info .theme-screenshot{margin-top:15px;width:258px;border:1px solid #ccc}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0;float:left}.theme-details .star-holder{margin:14px 0;float:right}.theme-details .theme-description{float:left;color:#777;line-height:20px}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%}#template div{margin-right:190px}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:bold;margin:0 6px}.row-title{font-size:13px!important;font-weight:bold}.column-author img,.column-username img{float:left;margin-right:10px;margin-top:1px}.row-actions{visibility:hidden;padding:2px 0 0}.mobile .row-actions{visibility:visible}tr:hover .row-actions,div.comment-item:hover .row-actions{visibility:visible}.row-actions-visible{padding:2px 0 0}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default}.tagchecklist span a{margin:6px 0 0 -9px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left}#poststuff h3,.metabox-holder h3{font-size:12px;font-weight:normal;line-height:1;padding:7px 10px;margin:0}#poststuff .inside{margin:6px 0 8px}#poststuff .inside #parent_id,#poststuff .inside #page_template{max-width:100%}.inline-edit-row #post_parent,.inline-edit-row select[name="page_template"]{max-width:80%}.ie8 #poststuff .inside #parent_id,.ie8 #poststuff .inside #page_template,.ie8 .inline-edit-row #post_parent,.ie8 .inline-edit-row select[name="page_template"]{width:250px}#post-visibility-select{line-height:1.5em;margin-top:3px}#poststuff #submitdiv .inside{margin:0;padding:0}.edit-form-section{margin-bottom:20px}#templateside ul li a{text-decoration:none}.tool-box .title{margin:8px 0;font-size:18px;font-weight:normal;line-height:24px}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid}#sidemenu a.current{font-weight:normal;padding-left:6px;padding-right:6px;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-width:1px;border-style:solid}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu li a .count-0{display:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .vers,table .column-visible,table .column-rating{text-align:left}.error-message{color:red;font-weight:bold}body.iframe{height:98%}td.media-icon{text-align:center;width:80px;padding-top:8px;padding-bottom:8px}td.media-icon img{max-width:80px;max-height:60px}#howto{font-size:11px;margin:0 5px;display:block}.importers{font-size:16px;width:auto}.importers td{padding-right:14px}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:98%}#namediv p{margin:10px 0}#submitdiv h3{margin-bottom:0!important}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:2px}.checkbox{border:0;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}#dashboard_right_now p.musub{margin-top:12px;border-top:1px solid #ececec;padding-left:16px;position:static}.rtl #dashboard_right_now p.musub{padding-left:0;padding-right:16px}#dashboard_right_now td.b a.musublink{font-size:16px}#dashboard_right_now div.musubtable{border-top:0}#dashboard_right_now div.musubtable .t{white-space:normal}.wp-list-table .site-deleted{background:#ff8573}.wp-list-table .site-spammed{background:#faafaa}.wp-list-table .site-archived{background:#ffebe8}.wp-list-table .site-mature{background:#fecac2}div.star-holder{position:relative;height:17px;width:100px;background:url('../images/stars.png?ver=20121108') repeat-x bottom left}div.star-holder .star-rating{background:url('../images/stars.png?ver=20121108') repeat-x top left;height:17px;float:left}div.action-links{font-weight:normal;margin:6px 0 0}#plugin-information-header{margin:0;padding:0 5px;font-weight:bold;position:relative;border-bottom-width:1px;border-bottom-style:solid;height:2.5em}#plugin-information ul#sidemenu{font-weight:normal;margin:0 5px;position:absolute;left:0;bottom:-1px}#plugin-information p.action-button{width:100%;padding-bottom:0;margin-bottom:0;margin-top:10px;border-top-left-radius:3px;border-bottom-left-radius:3px;-moz-border-top-left-radius:3px;-moz-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px}#plugin-information .action-button a{text-align:center;font-weight:bold;text-decoration:none;display:block;line-height:2em}#plugin-information h2{clear:none!important;margin-right:200px}#plugin-information .fyi{margin:0 10px 50px;width:210px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi h2.mainheader{padding:5px;-moz-border-top-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}#plugin-information .fyi ul{padding:10px 5px 10px 7px;margin:0;list-style:none;-moz-border-bottom-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .fyi li{margin-right:0}#plugin-information #section-holder{padding:10px}#plugin-information .section ul,#plugin-information .section ol{margin-left:16px;list-style-type:square;list-style-image:none}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;max-width:100%;width:auto;height:auto}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px;padding-bottom:2em}#plugin-information #section-screenshots ol,#plugin-information .updated,#plugin-information pre{margin-right:215px}#plugin-information pre{padding:7px;overflow:auto}#poststuff #editor-toolbar{height:30px}div.zerosize{border:0 none;height:0;margin:0;overflow:hidden;padding:0;width:0}.posting{margin-right:212px;position:relative}h3.tb{text-shadow:0 1px 0 #fff;font-size:12px;font-weight:bold;line-height:normal;margin-left:5px}#TB_window{border:1px solid #333}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv{background:transparent url(../images/arrows.png) no-repeat 6px 7px}.press-this #submitdiv:hover .handlediv{background:0}.tbtitle{font-size:1.7em;outline:0;padding:3px 4px;border-color:#dfdfdf}#extra-fields .button{margin-right:5px}#photo_saving{margin:0 8px 8px;vertical-align:middle}#img_container_container{overflow:auto}#extra-fields{margin-top:10px;position:relative}#extra-fields h2{margin:12px}#waiting{margin-top:10px;overflow:hidden}#waiting span{float:right;margin:0 0 0 5px}#waiting .spinner{display:block}#extra-fields .postbox{margin-bottom:5px}#extra-fields .titlewrap{padding:0;overflow:auto;height:100px}#img_container a{display:block;float:left;overflow:hidden}#img_container img,#img_container a{width:68px;height:68px}#img_container img{border:0;background-color:#f4f4f4;cursor:pointer}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative}#img_container a:hover,#img_container a:active{border-color:black;z-index:1000;border-width:2px;margin:-1px}#embed-code{width:100%;height:98px}#TB_ajaxContent #options{position:absolute;top:20px;right:25px;padding:5px}#TB_ajaxContent h3{margin-bottom:.25em}.error a{text-decoration:underline}.updated a{text-decoration:none;padding-bottom:2px}.taghint{color:#aaa;margin:-17px 0 0 7px;visibility:hidden}input.newtag ~ div.taghint{visibility:visible}input.newtag:focus ~ div.taghint{visibility:hidden}#mce_fullscreen_container{background:#fff}#photo-add-url-div input[type="text"]{width:300px}.alignleft h3{margin:0}h3 span{font-weight:normal}#template textarea{font-family:Consolas,Monaco,monospace;font-size:12px;width:97%;background:#f9f9f9;outline:0}#template p{width:97%}#templateside{float:right;width:190px;word-wrap:break-word}#templateside h3,#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside ol,#templateside ul{margin:.5em;padding:0}#templateside li{margin:4px 0}#templateside ul li a span.highlight{display:block}.nonessential{font-size:11px;font-style:italic;padding-left:12px}.highlight{padding:3px 3px 3px 12px;margin-left:-12px;font-weight:bold;border:0 none}#documentation{margin-top:10px}#documentation label{line-height:22px;vertical-align:top;font-weight:bold}.fileedit-sub{padding:10px 0 8px;line-height:180%}#filter-box{clear:both}.feature-filter{padding:8px 12px 0}.feature-filter .feature-group{float:left;margin:5px 10px 10px}.feature-filter .feature-group li{display:inline-block;vertical-align:top;list-style-type:none;padding-right:25px;width:150px}.feature-container{width:100%;overflow:auto;margin-bottom:10px}.ui-sortable,.ui-draggable{-ms-touch-action:none}.login *{margin:0;padding:0}.login h1 a{background-image:url('../images/wordpress-logo.png?ver=20120216');background-size:274px 63px;background-position:top center;background-repeat:no-repeat;width:326px;height:67px;text-indent:-9999px;outline:0;overflow:hidden;padding-bottom:15px;display:block}.login form{margin-left:8px;padding:26px 24px 46px;font-weight:normal;background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px;box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px}.login form .forgetmenot{float:left;margin-bottom:0}.login form .forgetmenot label{font-size:12px;font-weight:normal;line-height:19px}.login .button-primary{float:right}.login label{color:#777;font-size:14px}.login #nav,.login #backtoblog{text-shadow:#fff 0 1px 0;margin:0 0 0 16px;padding:16px 16px 0}.login form .input,.login input[type="text"]{color:#555;font-weight:200;font-size:24px;line-height:1;width:100%;padding:3px;margin-top:2px;margin-right:6px;margin-bottom:16px;border:1px solid #e5e5e5;background:#fbfbfb;outline:0;-webkit-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2);box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2)}.login #pass-strength-result{width:250px;font-weight:bold;border-style:solid;border-width:1px;margin:12px 0 6px;padding:6px 5px;text-align:center}#login{width:320px;padding:114px 0 0;margin:auto}#login form p{margin-bottom:0}#login form p.submit{padding:0}#login_error,.login .message{margin:0 0 16px 8px;padding:12px}#backtoblog{padding:12px 16px 0}.mobile #login{padding:20px 0}.mobile #login #nav,.mobile #login #backtoblog{margin-left:8px}.mobile #login h1 a{width:auto}.mobile #login form,.mobile #login .message,.mobile #login_error{margin-left:0}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}.pressthis{margin:20px 0}.pressthis a,.pressthis a:hover,.pressthis a:focus,.pressthis a:active{display:inline-block;position:relative;cursor:move;color:#333;background:#d8d8d8;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(7%,#e6e6e6),color-stop(77%,#d8d8d8));background-image:-webkit-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-moz-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-o-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:linear-gradient(to top,#e6e6e6 7%,#d8d8d8);border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none;text-shadow:0 1px 0 #fff}.pressthis a:active{outline:0}.pressthis a:hover:after{-webkit-transform:skew(20deg) rotate(9deg);-moz-transform:skew(20deg) rotate(9deg);transform:skew(20deg) rotate(9deg);-moz-box-shadow:0 10px 8px rgba(0,0,0,0.7);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.7);box-shadow:0 10px 8px rgba(0,0,0,0.7)}.pressthis a span{background:url(../images/press-this.png?v=20120502) no-repeat 0 5px;background-size:24px 20px;padding:8px 11px 8px 27px;margin:0 5px;display:inline-block}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:transparent;-webkit-transform:skew(20deg) rotate(6deg);-moz-transform:skew(20deg) rotate(6deg);transform:skew(20deg) rotate(6deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.6);box-shadow:0 10px 8px rgba(0,0,0,0.6)}.pressthis #wphead{height:32px;margin-left:0;margin-right:0;margin-bottom:5px}.pressthis #wphead h1{font-size:16px;font-weight:normal;line-height:32px;margin:0;float:left}.pressthis #wphead h1 a{text-decoration:none}.pressthis #wphead h1 a:hover{text-decoration:underline}.pressthis #header-logo{float:left;margin:7px 7px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.pressthis #message{margin:10px 0}.pressthis #title{margin-left:0;margin-right:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.pressthis .tagchecklist span a{background:transparent url(../images/xit.gif) no-repeat 0 0}.pressthis #titlediv{margin:0}.pressthis .wp-media-buttons{cursor:default;padding:8px 8px 0}.pressthis .howto{margin-top:2px;margin-bottom:3px;font-size:12px;font-style:italic;display:block}.pressthis #poststuff{margin:0 10px 10px;padding:0}.pressthis #photo-add-url-div input[type="text"]{width:220px}.pressthis .inner-sidebar{width:200px}.pressthis .inner-sidebar .sleeve{padding-top:5px}.pressthis #submitdiv p{margin:0;padding:6px}.pressthis #submitdiv #publishing-actions{border-bottom:1px solid #dfdfdf}.pressthis #publish{float:right}.pressthis #poststuff h2,.pressthis #poststuff h3{font-size:14px;line-height:1}.pressthis #tagsdiv-post_tag h3,.pressthis #categorydiv h3{cursor:pointer}.pressthis #submitdiv h3{cursor:default}.pressthis .postbox,.pressthis .stuffbox{margin-bottom:10px;min-width:0}.pressthis .actions{float:right;margin:-19px 0 0}#extra-fields .pressthis .actions{margin:-32px -7px 0 0}.pressthis .actions li{float:left;list-style:none;margin-right:10px}.pressthis .categorydiv div.tabs-panel{height:100px}.pressthis .tagsdiv .newtag{width:120px}.pressthis #content{margin:5px 0;padding:0 5px;border:0 none;height:345px;font-family:Consolas,Monaco,monospace;font-size:13px;line-height:19px;background:transparent}.pressthis #publishing-actions .spinner{display:inline;vertical-align:middle}body.press-this{color:#333;margin:0;padding:0;min-width:675px;min-height:400px}.press-this-sidebar{float:right;width:200px;padding-top:10px}.no-js #message{display:block}#nav-menu-meta ul.outer-border{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.accordion-section ul.category-tabs,.accordion-section ul.add-menu-item-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px}#nav-menu-meta .button-controls{margin-bottom:0}#nav-menus-frame{margin-left:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0}.metabox-holder-disabled .postbox,.metabox-holder-disabled .accordion-section-content{opacity:.5;filter:alpha(opacity=50)}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.blank-slate .menu-name{height:2em}.blank-slate .menu-settings{border:0;margin-top:0;padding-top:0;overflow:hidden}.is-submenu{font-style:italic;font-weight:normal;margin-left:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.manage-menus select{float:left;margin-right:6px}.manage-menus .selected-menu{float:left;margin:5px 6px 0 0}.manage-menus .submit-btn{float:left;margin-top:1px}.menu-edit p{margin:.3em 0 .6em}.menu-edit #post-body-content h3{margin:0 0 10px}.menu-edit .checkbox-input{margin-top:4px}.menu-settings{margin-top:2em;overflow:hidden}.menu-settings dl{margin:0 0 10px;overflow:hidden;position:relative}.menu-settings dd{float:left;margin:0;width:60%}.theme-location-set{font-size:11px}#menu-management-liquid{float:left;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px 10px;border-width:1px 0;border-style:solid}#nav-menu-header,#nav-menu-footer{padding:0 10px}#nav-menu-header{border-bottom:1px solid;margin-bottom:13px}#nav-menu-header .menu-name-label{margin-top:2px}#nav-menu-footer{border-top:1px solid}.nav-menus-php #post-body div.updated,.nav-menus-php #post-body div.error{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}#menu-management .menu-add-new abbr{font-weight:bold}#select-nav-menu-container{text-align:right;padding:0 10px 3px 10px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat td.menu-location-menus{padding-bottom:5px}.menu-location-menus select{float:left}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:left;width:160px;margin-right:5px}.locations-row-links{float:left;margin:6px 0 0 6px}.locations-edit-menu-link,.locations-add-menu-link{margin:0 3px}.locations-edit-menu-link{padding-right:3px;border-right:1px solid #ccc}#wpbody .open-label{display:block;float:left}#wpbody .open-label span{padding-right:10px}.js .input-with-default-title{font-style:italic}#menu-management .inside{padding:0 10px}.postbox .howto input,.accordion-container .howto input{width:180px;float:right}.accordion-container .outer-border{margin:0}#nav-menu-meta .accordion-container .top{border-top:1px solid #dfdfdf}#nav-menu-meta .accordion-container .accordion-section:first-child,#nav-menu-meta .accordion-container .accordion-section:first-child h3,#nav-menu-meta .accordion-container .top,#nav-menu-meta .accordion-container .top h3{border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}#nav-menu-meta .accordion-container .accordion-section:last-child,#nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,#nav-menu-meta .accordion-container .bottom,#nav-menu-meta .accordion-container .bottom:not(.open) h3{border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.customlinkdiv .howto input{width:180px}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}.nav-menus-php .add-new-menu-action{float:left;margin:6px 0 0 6px;line-height:15px}.nav-menus-php .meta-sep,.nav-menus-php .submitdelete,.nav-menus-php .submitcancel{display:block;float:left;margin:4px 0;line-height:15px}.meta-sep{padding:0 2px}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.button.right,.button-secondary.right,.button-primary.right{float:right}.list-controls{float:left;margin-top:5px}.add-to-menu{float:right}#menu-name{width:270px}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.nav-menus-php .howto span{margin-top:4px;display:block;float:left}.quick-search{width:190px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .list-container{max-height:200px;overflow-y:auto;padding:10px 10px 5px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0;margin-bottom:5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}#menu-to-edit{margin:0;padding:.1em 0}.menu-item-bar{clear:both;line-height:1.5em;position:relative;margin:9px 0 0}.menu-item-handle{border:1px solid #dfdfdf;position:relative;padding-left:10px;height:auto;width:400px;line-height:35px;text-shadow:0 1px 0 #fff;overflow:hidden;word-wrap:break-word}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#fdf8ff;background-image:-webkit-gradient(linear,left bottom,left top,from(#f6c9cc),to(#fdf8ff));background-image:-webkit-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-moz-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-o-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:linear-gradient(to top,#f6c9cc,#fdf8ff)}.menu-item-edit-active .menu-item-handle{border-bottom-left-radius:0;border-bottom-right-radius:0;-moz-border-bottom-left-radius:0;-moz-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;text-shadow:0}.menu-item-handle .item-title{font-size:12px;font-weight:bold;padding:7px 0;line-height:20px;display:block;margin-right:13em}li.menu-item.ui-sortable-helper dl{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport dl{margin-top:13px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:13px}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{font-size:12px;padding-right:10px}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:36px;overflow:hidden;text-indent:-999em;border-bottom:1px solid;-moz-border-bottom-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;width:400px;padding:10px 0 10px 10px;border:solid;border-width:0 1px 1px 1px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.menu-item-settings .field-move a{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-right:10px;float:left}.add-menu-item-pagelinks{margin:.5em auto;text-align:center}.link-to-original{display:block;margin:0 0 10px;padding:3px 5px 5px;font-size:12px;font-style:italic}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.description-thin{width:190px;height:40px}.description-wide{width:390px}.menu-item-actions{padding-top:15px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{clear:both;padding:3px 0 5px}.nav-menus-php .major-publishing-actions .publishing-action{text-align:right;float:right;line-height:23px;margin:2px 0 1px}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px;border:0 none}.nav-menus-php .blank-slate .menu-settings{display:none}.nav-menus-php .delete-action{float:left;margin-top:2px}.nav-menus-php .submitbox .submitcancel{border-bottom:1px solid;padding:1px 2px;text-decoration:none}#menu-item-name-wrap:after,#menu-item-url-wrap:after,#menu-name-label:after,#menu-settings-column .inside:after,#nav-menus-frame:after,.nav-menus-php #post-body-content:after,.nav-menus-php .button-controls:after,.nav-menus-php .major-publishing-actions:after,.nav-menus-php .menu-item-settings:after{clear:both;content:".";display:block;height:0;visibility:hidden}#nav-menus-frame,.button-controls,#menu-item-url-wrap,#menu-item-name-wrap{display:block}div.widget-liquid-left{float:left;clear:left;width:100%;margin-right:-325px}div#widgets-left{margin-left:5px;margin-right:325px}div#widgets-right{width:285px;margin:0 auto}div.widget-liquid-right{float:right;clear:right;width:300px}.widget-liquid-right .widget,.inactive-sidebar .widget,.widget-liquid-right .sidebar-description{width:250px;margin:0 auto 20px;overflow:hidden}.widget-liquid-right .sidebar-description{margin-bottom:10px}.inactive-sidebar .widget{margin:0 10px 20px;display:inline-block}div.sidebar-name{font-size:13px;border-width:1px;border-style:solid;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}div.sidebar-name h3{font-weight:normal;font-size:15px;margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap}.js .sidebar-name{cursor:pointer}.js .closed .sidebar-name{border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.widget-liquid-right .widgets-sortables,#widgets-left .widget-holder{border-width:0 1px 1px;border-style:none solid solid;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.js .closed .widgets-sortables,.js .closed .widget-holder{display:none}.widget-liquid-right .widgets-sortables{padding:15px 0 0}#available-widgets .widget-holder{padding:7px 5px 0}#available-widgets .widget{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.inactive-sidebar{padding:5px 5px 0}#widget-list .widget{width:250px;margin:0 10px 15px;border:0 none;background:transparent;display:inline-block;vertical-align:top}#widget-list .widget-description{padding:5px 8px}.widget-placeholder{border-width:1px;border-style:dashed;margin:0 auto 20px;height:27px;width:250px}.inactive-sidebar .widget-placeholder{margin:0 10px 20px;float:left}div.widgets-holder-wrap{padding:0;margin:10px 0 20px}#widgets-left #available-widgets{background-color:transparent;border:0 none}ul#widget-list{list-style:none;margin:0;padding:0;min-height:100px}.widget .widget-top{margin-bottom:-1px;font-size:12px;font-weight:bold;line-height:26px;overflow:hidden}a.widget-action{display:block;width:24px;height:26px}#available-widgets a.widget-action{display:none}.widget-top .widget-title{padding:7px 9px}.widget-top .widget-title-action{float:right}.widget-top a.widget-action{background:transparent url(../images/arrows.png) no-repeat 4px 6px}.widget-top a.widget-action:hover{background:transparent url(../images/arrows-dark.png) no-repeat 4px 6px}.widget .widget-inside,.widget .widget-description{padding:12px 12px 10px;font-size:12px;line-height:16px}.widget-inside,.widget-description{display:none}#available-widgets .widget-description{display:block}.widget .widget-inside p{margin:0 0 1em;padding:0}.widget-title h4{margin:0;padding-bottom:.2em;line-height:1;overflow:hidden;white-space:nowrap}.widgets-sortables{min-height:90px}.widget-control-actions{margin-top:8px}.widget-control-actions a{text-decoration:none}.widget-control-actions a:hover{text-decoration:underline}.widget-control-actions div.alignleft{margin-top:6px}div#sidebar-info{padding:0 1em;margin-bottom:1em;font-size:12px}.widget-title a,.widget-title a:hover{text-decoration:none;border-bottom:0}.widget-control-edit{display:block;font-size:12px;font-weight:normal;line-height:26px;padding:0 8px 0 0}.widget-control-edit .add,.widget-control-edit .edit{display:none}a.widget-control-edit{text-decoration:none}#available-widgets .widget-control-edit .add,#widgets-right .widget-control-edit .edit,.inactive-sidebar .widget-control-edit .edit{display:inline}.editwidget{margin:0 auto 15px}.editwidget .widget-inside{display:block;padding:10px}.inactive p.description{margin:5px 15px 10px}#available-widgets p.description{margin:0 12px 12px}.widget-position{margin-top:8px}.inactive{padding-top:2px}.sidebar-name .spinner{float:none;margin:0 3px -3px}.sidebar-name-arrow{float:right;height:29px;width:26px}.widget-title .in-widget-title{font-size:12px;white-space:nowrap}#removing-widget{display:none;padding-left:15px;font-size:12px;font-weight:normal;line-height:1}.widget-control-noform,#access-off,.widgets_access .widget-action,.widgets_access .sidebar-name-arrow,.widgets_access #access-on,.widgets_access .widget-holder .description{display:none}.widgets_access .widget-holder,.widgets_access #widget-list{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access #wpbody-content .widget-title-action,.widgets_access #wpbody-content .widget-control-edit,.widgets_access .closed .widgets-sortables,.widgets_access .closed .widget-holder{display:block}.widgets_access .closed .sidebar-name{border-bottom-left-radius:0;border-bottom-right-radius:0;-moz-border-bottom-left-radius:0;-moz-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.accordion-section{border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;margin:0}.accordion-section:first-child{border-top:1px solid #dfdfdf}.accordion-section:last-child{box-shadow:0 1px 0 0 #fff}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dfdfdf}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fdfdfd;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf}.accordion-section-title{margin:0;padding:15px 20px;position:relative;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{content:'';width:0;height:0;border-color:#ccc transparent;border-style:solid;border-width:6px 6px 0;position:absolute;top:25px;right:20px;z-index:1}.accordion-section-title:focus{outline:0}.accordion-section-title:hover:after,.accordion-section-title:focus:after{border-color:#aaa transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title{padding:10px 20px;color:#464646;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:15px;font-weight:normal;line-height:1;text-shadow:0 1px 0 #fff;background:#f5f5f5;background-image:-webkit-gradient(linear,left bottom,left top,from(#eee),to(#f5f5f5));background-image:-webkit-linear-gradient(bottom,#eee,#f5f5f5);background-image:-moz-linear-gradient(bottom,#eee,#f5f5f5);background-image:-o-linear-gradient(bottom,#eee,#f5f5f5);background-image:linear-gradient(to top,#eee,#f5f5f5)}.control-section .accordion-section-title:after{top:15px}.js .control-section:hover .accordion-section-title,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section .accordion-section-title:focus{color:black;background:#f9f9f9;background-image:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-moz-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-o-linear-gradient(bottom,#ececec,#f9f9f9);background-image:linear-gradient(to top,#ececec,#f9f9f9)}.control-section.open .accordion-section-title{border-bottom:1px solid #dfdfdf}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}}@media only screen and (min-width:769px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:860px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (min-width:980px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.press-this .tagchecklist span a{background-image:url('../images/xit-2x.gif');background-size:20px auto}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv,.widget-top a.widget-action{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.widget-top a.widget-action:hover{background-image:url('../images/arrows-dark-2x.png');background-size:15px 123px}.post-com-count{background-image:url('../images/bubble_bg-2x.gif');background-size:18px 100px}tr.wp-locked .locked-indicator{background-image:url('../images/lock-2x.png');background-size:16px 16px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble-2x.png');background-size:12px 12px}.sorting-indicator{background-image:url('../images/sort-2x.gif?ver=20130102');background-size:14px 4px}#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;background-size:11px 11px}div.star-holder{background:url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;background-size:21px 37px}div.star-holder .star-rating{background:url('../images/stars-2x.png?ver=20121108') repeat-x top left;background-size:21px 37px}.welcome-panel .welcome-panel-close:before{background-image:url('../images/xit-2x.gif');background-size:20px auto}.welcome-panel .welcome-icon{background-image:url('../images/welcome-icons-2x.png')}.login h1 a{background-image:url('../images/wordpress-logo-2x.png?ver=20120412');background-size:274px 63px}.wp-badge{background-image:url('../images/wp-badge-2x.png?ver=20120516');background-size:173px 194px}.wp-full-overlay .collapse-sidebar-arrow{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.pressthis a span{background-image:url(../images/press-this-2x.png?v=20121105)}.imgedit-crop,.imgedit-rleft,.imgedit-rright,.imgedit-flipv,.imgedit-fliph,.imgedit-undo,.imgedit-redo{background-image:url('../images/imgedit-icons-2x.png');background-size:260px 64px}.spinner,.imgedit-wait,.customize-loading #customize-container{background-image:url(../images/wpspin_light-2x.gif)}.wp-slider .ui-slider-handle:before{background-image:url(../images/arrows-pr-2x.png);background-size:16px 102px}}.locale-zh-cn .howto,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn #utc-time,.locale-zh-cn #local-time,.locale-zh-cn p.install-help,.locale-zh-cn p.help,.locale-zh-cn p.description,.locale-zh-cn span.description,.locale-zh-cn .form-wrap p{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-ru-ru .inline-edit-row fieldset label span.title{width:auto;min-width:5em}.locale-ru-ru.press-this .posting{margin-right:257px}.locale-ru-ru.press-this #photo-add-url-div input[type="text"]{width:255px}.locale-ru-ru.press-this #side-sortables{width:245px}.locale-ru-ru #customize-header-actions .button{padding:0 8px 1px}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}
     2 No newline at end of file