Home | History | Annotate | Download | only in css
      1 /* color definitions */
      2 /* 16 column layout */
      3 /* clearfix idiom */
      4 /* common mixins */
      5 /* page layout + top-level styles */
      6 ::selection {
      7   background-color: #0099cc;
      8   color: #fff; }
      9 ::-webkit-selection {
     10   background-color: #0099cc;
     11   color: #fff; }
     12 ::-moz-selection {
     13   background-color: #0099cc;
     14   color: #fff; }
     15 
     16 html, body {
     17   height: 100%;
     18   margin: 0;
     19   padding: 0;
     20   background-color:#F9F9F9;
     21   -webkit-font-smoothing: antialiased;
     22   /* prevent subpixel antialiasing, which thickens the text */
     23   /* text-rendering: optimizeLegibility; */
     24   /* turned off ligatures due to bug 5945455 */ }
     25 
     26 body {
     27   color: #222;
     28   font: 14px/19px Roboto, sans-serif;
     29   font-weight: 400;
     30   letter-spacing:.1;
     31   padding:0 10px; }
     32 
     33 #page-container {
     34   width: 940px;
     35   margin: 0 40px; }
     36 
     37 #page-header {
     38   height: 80px;
     39   margin-bottom: 20px;
     40   font-size: 48px;
     41   line-height: 48px;
     42   font-weight: 100;
     43   padding-left: 10px; }
     44   #page-header a {
     45     display: block;
     46     position: relative;
     47     top: 20px;
     48     text-decoration: none;
     49     color: #555555 !important; }
     50 
     51 #main-row {
     52   display: inline-block; }
     53   #main-row:after {
     54     content: ".";
     55     display: block;
     56     height: 0;
     57     clear: both;
     58     visibility: hidden; }
     59   * html #main-row {
     60     height: 1px; }
     61 
     62 #page-footer {
     63   margin-left: 190px;
     64   margin-top: 80px;
     65   color: #999999;
     66   padding-bottom: 40px;
     67   font-size: 12px;
     68   line-height: 15px; }
     69   #page-footer a {
     70     color: #777777; }
     71   #page-footer #copyright {
     72     margin-bottom: 10px; }
     73 
     74 #nav-container {
     75   width: 160px;
     76   min-height: 10px;
     77   margin-right: 20px;
     78   float: left; }
     79 
     80 #nav {
     81   margin:0;
     82   padding:0 0 30px;
     83 }
     84 
     85 #side-nav {
     86   min-height:5px; /* silly way to avoid doc floating left when nav goes fixed */
     87   margin-bottom:1px;
     88 }
     89 #devdoc-nav {
     90   outline:none;
     91   width:auto;
     92   margin: 20px 0 0; }
     93 
     94 #devdoc-nav h2 {
     95   border:0;
     96 }
     97 
     98 #devdoc-nav.fixed {
     99   position: fixed;
    100   margin:0;
    101   top: 20px; }
    102 
    103 #devdoc-nav span.small {
    104   font-size:12px;
    105   font-weight:normal;
    106 }
    107 
    108 #content {
    109   width: 760px;
    110   float: left; }
    111 
    112 a:hover,
    113 acronym:hover {
    114   color: #7aa1b0 !important; }
    115 
    116 a:focus,
    117 a:active {
    118   color: #33b5e5 !important; }
    119 
    120 a.external-link {
    121   background:url('../images/styles/open_new_page.png') no-repeat 100% 50%;
    122   padding-right:16px;
    123 }
    124 
    125 img {
    126   border: none; }
    127 #jd-content img {
    128   margin-bottom:15px;
    129 }
    130 
    131 ul {
    132   margin: 0;
    133   padding: 0; }
    134 
    135 strong {
    136   font-weight: 500; }
    137 
    138 em {
    139   font-style: italic; }
    140 
    141 acronym,
    142 .tooltip-link {
    143   border-bottom: 1px dotted #555555;
    144   cursor: help; }
    145 
    146 acronym:hover,
    147 .tooltip-link:hover {
    148   color: #7aa1b0;
    149   border-bottom-color: #7aa1b0; }
    150 
    151 img.with-shadow,
    152 video.with-shadow {
    153   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); }
    154 
    155 /* disclosures mixin */
    156 /* content layout */
    157 .layout-content-row {
    158   display: inline-block;
    159   margin-bottom: 10px; }
    160   .layout-content-row:after {
    161     content: ".";
    162     display: block;
    163     height: 0;
    164     clear: both;
    165     visibility: hidden; }
    166   * html .layout-content-row {
    167     height: 1px; }
    168 
    169 .layout-content-col {
    170   float: left;
    171   margin-left: 20px; }
    172   .layout-content-col:first-child {
    173     margin-left: 0; }
    174   .layout-content-col h3,
    175   .layout-content-col h4 {
    176     margin-top:0; }
    177 
    178 .layout-content-col.span-1 {
    179   width: 40px; }
    180 
    181 .layout-content-col.span-2 {
    182   width: 100px; }
    183 
    184 .layout-content-col.span-3 {
    185   width: 160px; }
    186 
    187 .layout-content-col.span-4 {
    188   width: 220px; }
    189 
    190 .layout-content-col.span-5 {
    191   width: 280px; }
    192 
    193 .layout-content-col.span-6 {
    194   width: 340px; }
    195 
    196 .layout-content-col.span-7 {
    197   width: 400px; }
    198 
    199 .layout-content-col.span-8 {
    200   width: 460px; }
    201 
    202 .layout-content-col.span-9 {
    203   width: 520px; }
    204 
    205 .layout-content-col.span-10 {
    206   width: 580px; }
    207 
    208 .layout-content-col.span-11 {
    209   width: 640px; }
    210 
    211 .layout-content-col.span-12 {
    212   width: 700px; }
    213 
    214 .layout-content-col.span-13 {
    215   width: 760px; }
    216 
    217 .vspace.size-1 {
    218   height: 10px; }
    219 
    220 .vspace.size-2 {
    221   height: 20px; }
    222 
    223 .vspace.size-3 {
    224   height: 30px; }
    225 
    226 .vspace.size-4 {
    227   height: 40px; }
    228 
    229 .vspace.size-5 {
    230   height: 50px; }
    231 
    232 .vspace.size-6 {
    233   height: 60px; }
    234 
    235 .vspace.size-7 {
    236   height: 70px; }
    237 
    238 .vspace.size-8 {
    239   height: 80px; }
    240 
    241 .vspace.size-9 {
    242   height: 90px; }
    243 
    244 .vspace.size-10 {
    245   height: 100px; }
    246 
    247 .vspace.size-11 {
    248   height: 110px; }
    249 
    250 .vspace.size-12 {
    251   height: 120px; }
    252 
    253 .vspace.size-13 {
    254   height: 130px; }
    255 
    256 .vspace.size-14 {
    257   height: 140px; }
    258 
    259 .vspace.size-15 {
    260   height: 150px; }
    261 
    262 .vspace.size-16 {
    263   height: 160px; }
    264 
    265 /* nav */
    266 #nav {
    267   /* section header divs */
    268   /* expanded section header divs */
    269   /* sublinks */ }
    270   #nav li {
    271     list-style-type: none;
    272     font-size: 14px;
    273     margin:0;
    274     padding:0;
    275     line-height: 15px; }
    276   #nav a {
    277     color: #555555;
    278     text-decoration: none;
    279     word-wrap:break-word; }
    280   #nav .nav-section-header {
    281     position: relative;
    282     margin-bottom: 1px;
    283     padding: 0 30px 0 0; }
    284   #nav li.selected a, #nav li.selected > .nav-section-header > a {
    285     color: #09C;
    286   }
    287   #nav li.selected ul li a {
    288   /* don't highlight child items */
    289     color: #555555; }
    290   #nav .nav-section .nav-section .nav-section-header {
    291     /* no white line between second level sections */
    292     margin-bottom: 0; }
    293     /* section header links */
    294     #nav > li > div > a {
    295       display: block;
    296       color: #333333;
    297       font-weight: 500;
    298       padding: 10px 0 10px 10px; }
    299     #nav .nav-section-header:after {
    300       content: '';
    301       background: transparent url(../images/styles/disclosure_down.png) no-repeat scroll 50% 50%;
    302       width: 34px;
    303       height: 34px;
    304       display: block;
    305       position: absolute;
    306       top: 0;
    307       right: 0; }
    308     #nav .nav-section-header.empty:after {
    309       display: none; }
    310     /* nested nav headers */
    311     #nav .nav-section .nav-section {
    312       position: relative;
    313       padding: 0;
    314       margin: 0; }
    315     #nav .nav-section li a {
    316     /* first gen child (2nd level li) */
    317       display:block;
    318       font-weight: normal;
    319       text-transform: none;
    320       padding: 7px 5px 7px 10px;
    321        }
    322     #nav .nav-section li li a {
    323     /* second gen child (3rd level li) */
    324       padding: 5px 5px 5px 10px;
    325        }
    326   #nav li.expanded .nav-section-header {
    327     background:#e9e9e9;
    328     background: rgba(0, 0, 0, 0.05); }
    329   #nav li.expanded li .nav-section-header {
    330     background: transparent; }
    331   #nav li.expanded li ul {
    332   /* 3rd level ul */
    333     padding:0 0 0 10px;
    334   }
    335     #nav li.expanded > .nav-section-header:after {
    336       content: '';
    337       background: transparent url(../images/styles/disclosure_up.png) no-repeat scroll 50% 50%;
    338       width: 34px;
    339       height: 34px; }
    340   #nav li.expanded li ul.tree-list-children {
    341     padding:0;
    342   }
    343   #nav li.expanded li ul.tree-list-children .tree-list-children {
    344     padding:0 0 0 10px;
    345   }
    346   #nav li span.tree-list-subtitle {
    347     display:inline-block;
    348     padding:5px 0 0 10px;
    349     color:#555;
    350     text-transform:uppercase;
    351     font-size:12px;
    352   }
    353   #nav li span.tree-list-subtitle:before {
    354     content: '';
    355   }
    356   #nav li span.tree-list-subtitle:after {
    357     content: '';
    358   }
    359   #nav li ul {
    360     display:none;
    361     overflow: hidden;
    362     margin: 0; }
    363     #nav li ul.animate-height-in {
    364       -webkit-transition: height 0.25s ease-in;
    365       -moz-transition: height 0.25s ease-in;
    366       transition: height 0.25s ease-in; }
    367     #nav li ul.animate-height-out {
    368       -webkit-transition: height 0.25s ease-out;
    369       -moz-transition: height 0.25s ease-out;
    370       transition: height 0.25s ease-out; }
    371     #nav li ul li {
    372       padding: 0; }
    373       #nav li li li {
    374         padding: 0; }
    375   #nav li.expanded ul {
    376     }
    377     #nav li ul > li {
    378       padding:0;
    379     }
    380     #nav li ul > li:last-child {
    381       padding-bottom:5px;
    382     }
    383     #nav li ul.tree-list-children > li:last-child {
    384       padding-bottom:0;
    385     }
    386     #nav li.expanded ul > li {
    387       background:#efefef;
    388       background: rgba(0, 0, 0, 0.03); }
    389     #nav li.expanded ul > li li {
    390       background:inherit; }
    391   #nav li ul.tree-list-children ul {
    392     display:block; }
    393 
    394 .new,
    395 .new-child {
    396   font-size: .78em;
    397   font-weight: bold;
    398   color: #ff3d3d;
    399   vertical-align:top;
    400   white-space:nowrap;
    401 }
    402 
    403 /* content header */
    404 .content-header {
    405   height: 30px;
    406   margin:20px 0 25px;
    407   padding:0 0 10px;}
    408 .content-header.just-links {
    409   margin-bottom:0;
    410   padding-bottom:0;}
    411 
    412 .content-header h1 {
    413   color:#000;
    414   margin:0;
    415   border-bottom:0;
    416   padding:0;
    417 }
    418 
    419 .content-footer {
    420   border-top: 1px solid #ccc;
    421   margin-top: 10px;
    422   padding-top:10px;
    423   height: 30px; }
    424 
    425 .content-footer .col-9 {
    426   margin-left:0;
    427 }
    428 .content-footer .col-4 {
    429   margin-right:0;
    430 }
    431 .content-footer.wrap {
    432   width:940px;
    433 }
    434 
    435 .paging-links {
    436   position: relative; }
    437   .paging-links a {
    438     position: absolute; }
    439   .paging-links a,
    440   .training-nav-top a {
    441     font-size: 14px;
    442     line-height: 30px;
    443     color: #555555;
    444     text-decoration: none;
    445     text-transform: uppercase; }
    446     .paging-links .prev-page-link:before,
    447     .training-nav-top .prev-page-link:before {
    448       content: '';
    449       background: transparent url(../images/styles/disclosure_left.png) no-repeat scroll 50% 50%;
    450       width: 10px;
    451       height: 10px;
    452       display: inline-block;
    453       margin-right: 5px; }
    454     .training-nav-top .next-page-link,
    455     .training-nav-top .start-class-link,
    456     .training-nav-top .start-course-link {
    457     right: 10px; }
    458     .paging-links .prev-page-link {
    459       left: -15px; }
    460     .paging-links .next-page-link {
    461       right: 0px; }
    462     .next-page-link:after,
    463     .start-class-link:after,
    464     .start-course-link:after,
    465     .next-class-link:after,
    466     .go-link:after {
    467       content: '';
    468       background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
    469       width: 10px;
    470       height: 10px;
    471       display: inline-block;
    472       margin-left: 5px; }
    473 
    474 
    475   .training-nav-top a {
    476     display:block;
    477     float:left;
    478     width:122px;
    479     height:28px;
    480     padding: 8px;
    481     line-height:28px;
    482     text-align:center;
    483     border:1px solid #DADADA;
    484     border-bottom:0;
    485   }
    486 
    487   .training-nav-top a.next-page-link {
    488     border-left:0;
    489     width:123px;
    490   }
    491 
    492   .paging-links a.disabled,
    493   .training-nav-top a.disabled,
    494   .content-footer a.disabled {
    495     color:#bbb;
    496   }
    497 
    498   .paging-links a.disabled:hover,
    499   .training-nav-top a.disabled:hover,
    500   .content-footer a.disabled:hover {
    501     cursor:default;
    502     color:#bbb !important;
    503   }
    504 
    505   .training-nav-top a.start-class-link,
    506   .training-nav-top a.start-course-link {
    507     width:262px;
    508   }
    509 
    510   /* list of classes on course landing page */
    511   ol.class-list {
    512     list-style:none;
    513     margin-left:0;
    514   }
    515   ol.class-list>li {
    516     margin:0 0 15px;
    517     padding:5px 0 0;
    518     overflow:hidden;
    519     border-top:1px solid #ccc;
    520   }
    521   ol.class-list li a.title {
    522     font-size:16px;
    523     margin:0;
    524     clear:left;
    525     display:block;
    526     height:32px;
    527     padding:0 4px;
    528   }
    529   ol.class-list li a.title h2 {
    530     color:inherit;
    531     margin:0 0 10px;
    532     display:block;
    533     float:left;
    534     width:675px;
    535   }
    536   ol.class-list li a.title span {
    537     display:none;
    538     float:left;
    539     font-size:18px;
    540     font-weight:bold;
    541     background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
    542     width: 10px;
    543     height: 32px;
    544   }
    545   ol.class-list li a.title:hover {
    546     background:#ddd;
    547     color:#258AAF !important;
    548   }
    549   ol.class-list li a.title:hover span {
    550     display:block;
    551   }
    552 
    553   #jd-content
    554   ol.class-list li img {
    555     float:left;
    556     clear:left;
    557     width:64px;
    558     margin:0 20px 0 0;
    559   }
    560   ol.class-list li p.description {
    561     float:left;
    562     display:block;
    563     width:250px;
    564     margin:0;
    565   }
    566   ol.class-list li p.description.article {
    567     width: 550px;
    568   }
    569   ol.class-list ol {
    570     float:left;
    571     width:320px;
    572     margin:0 0 0 30px;
    573     list-style:none;
    574     margin:0 0 0 20px;
    575   }
    576   ol.class-list div.lessons li {
    577     margin:0 0 6px;
    578     line-height:16px;
    579   }
    580 
    581 
    582   .hide {
    583     display:none !important;
    584   }
    585 
    586   .content-footer.next-class {
    587     display:block;
    588     border:0;
    589     margin-top:0;
    590     padding-top:0;
    591   }
    592 
    593   .content-footer.next-class a.next-class-link {
    594     display:block;
    595     float:right;
    596     text-transform:uppercase;
    597   }
    598 
    599 
    600 
    601   /* inner-doc tabs w/ title */
    602 
    603 div#title-tabs-wrapper {
    604   border-bottom:1px solid #ccc;
    605   margin:20px 0 30px;
    606 }
    607 h1.with-title-tabs {
    608   display:inline-block;
    609   margin:0 0 -1px 0;
    610   padding:0 60px 0 0;
    611   border-bottom:1px solid #F9F9F9;
    612 }
    613 ul#title-tabs {
    614   list-style:none;
    615   padding:0;
    616   height:29px;
    617   margin:0;
    618   font-size:16px;
    619   line-height:26px;
    620   display:inline-block;
    621   vertical-align:bottom;
    622 }
    623 ul#title-tabs li {
    624   display:block;
    625   float:left;
    626   margin-right:40px;
    627   border-bottom: 3px solid transparent;
    628 }
    629 ul#title-tabs li.selected {
    630   border-bottom: 3px solid #93C;
    631 }
    632 ul#title-tabs li a {
    633   color:#333;
    634 }
    635 ul#title-tabs li a:hover,
    636 ul#title-tabs li a:active {
    637   color:#93C !important;
    638 }
    639 
    640 
    641 
    642 /* content body */
    643 @-webkit-keyframes glowheader {
    644   from {
    645     background-color: #33b5e5;
    646     color: #000;
    647     border-bottom-color: #000; }
    648 
    649   to {
    650     background-color: transparent;
    651     color: #33b5e5;
    652     border-bottom-color: #33b5e5; } }
    653 
    654 @-moz-keyframes glowheader {
    655   from {
    656     background-color: #33b5e5;
    657     color: #000;
    658     border-bottom-color: #000; }
    659 
    660   to {
    661     background-color: transparent;
    662     color: #33b5e5;
    663     border-bottom-color: #33b5e5; } }
    664 
    665 @keyframes glowheader {
    666   from {
    667     background-color: #33b5e5;
    668     color: #000;
    669     border-bottom-color: #000; }
    670 
    671   to {
    672     background-color: transparent;
    673     color: #33b5e5;
    674     border-bottom-color: #33b5e5; } }
    675 
    676 h2:target,
    677 h3:target {
    678     -webkit-animation-name: glowheader;
    679     -moz-animation-name: glowheader;
    680     animation-name: glowheader;
    681     -webkit-animation-duration: 0.7s;
    682     -moz-animation-duration: 0.7s;
    683     animation-duration: 0.7s;
    684     -webkit-animation-timing-function: ease-out;
    685     -moz-animation-timing-function: ease-out;
    686     animation-timing-function: ease-out; }
    687 
    688 .design ol h4 {
    689   margin-bottom:0;
    690 }
    691 .design ol {
    692   counter-reset: item; }
    693   .design ol>li {
    694     font-size: 14px;
    695     line-height: 20px;
    696     list-style-type: none;
    697     position: relative; }
    698     .design ol>li:before {
    699       content: counter(item) ". ";
    700       counter-increment: item;
    701       position: absolute;
    702       left: -20px;
    703       top: 0; }
    704     .design ol li.value-1:before {
    705       content: "1. "; }
    706     .design ol li.value-2:before {
    707       content: "2. "; }
    708     .design ol li.value-3:before {
    709       content: "3. "; }
    710     .design ol li.value-4:before {
    711       content: "4. "; }
    712     .design ol li.value-5:before {
    713       content: "5. "; }
    714     .design ol li.value-6:before {
    715       content: "6. "; }
    716     .design ol li.value-7:before {
    717       content: "7. "; }
    718     .design ol li.value-8:before {
    719       content: "8. "; }
    720     .design ol li.value-9:before {
    721       content: "9. "; }
    722     .design ol li.value-10:before {
    723       content: "10. "; }
    724 .design .with-callouts ol>li {
    725   list-style-position: inside;
    726   margin-left: 0; }
    727   .design .with-callouts ol>li:before {
    728     display: inline;
    729     left: -20px;
    730     float: left;
    731     width: 17px;
    732     color: #33b5e5;
    733     font-weight: 500; }
    734 .design .with-callouts ul>li {
    735   list-style-position: outside; }
    736 
    737 /* special list items */
    738 li.no-bullet {
    739   list-style-type: none !important; }
    740 li.no-bullet *{
    741   margin:0; }
    742 
    743 .design li.with-icon {
    744   position: relative;
    745   margin-left: 20px;
    746   min-height: 30px; }
    747   .design li.with-icon p {
    748     margin-left: 0 !important; }
    749   .design li.with-icon:before {
    750     position: absolute;
    751     left: -40px;
    752     top: 0;
    753     content: '';
    754     width: 30px;
    755     height: 30px; }
    756   .design li.with-icon.tablet:before {
    757     background-image: url(../images/styles/ico_phone_tablet.png); }
    758   .design li.with-icon.web:before {
    759     background-image: url(../images/styles/ico_web.png); }
    760   .design li.with-icon.action:before {
    761     background-image: url(../images/styles/ico_action.png); }
    762   .design li.with-icon.use:before {
    763     background-image: url(../images/styles/ico_use.png); }
    764 
    765 /* figures and callouts */
    766 .figure {
    767   position: relative; }
    768   .figure.pad-below {
    769     margin-bottom: 20px; }
    770   .figure .figure-callout {
    771     position: absolute;
    772     color: #fff;
    773     font-weight: 500;
    774     font-size: 16px;
    775     line-height: 23px;
    776     text-align: center;
    777     background: transparent url(../images/styles/callout.png) no-repeat scroll 50% 50%;
    778     padding-right: 2px;
    779     width: 30px;
    780     height: 29px;
    781     z-index: 1000; }
    782     .figure .figure-callout.top {
    783       top: -9px; }
    784     .figure .figure-callout.right {
    785       right: -5px; }
    786 
    787 .figure-caption {
    788   margin: 0 10px 20px 0;
    789   font-size: 14px;
    790   line-height: 20px;
    791   font-style: italic; }
    792 
    793 /* rows of figures */
    794 .figure-row {
    795   font-size: 0;
    796   line-height: 0;
    797   /* to prevent space between figures */ }
    798   .figure-row .figure {
    799     display: inline-block;
    800     vertical-align: top; }
    801   .figure-row .figure + .figure {
    802     margin-left: 10px;
    803     /* reintroduce space between figures */ }
    804 
    805 /* video  containers */
    806 .framed-galaxynexus-land-span-13 {
    807   background: transparent url(../images/styles/device_galaxynexus_blank_land_span13.png) no-repeat
    808 scroll top left;
    809   padding: 42px 122px 62px 126px;
    810   overflow: hidden; }
    811   .framed-galaxynexus-land-span-13, .framed-galaxynexus-land-span-13 video,
    812 .framed-galaxynexus-land-span-13 img {
    813     width: 512px;
    814     height: 286px; }
    815 
    816 
    817 .framed-galaxynexus-land-span-8{
    818   background: transparent url(../images/styles/device_galaxynexus_blank_land_span8.png) no-repeat
    819 scroll top left;
    820   padding: 26px 68px 38px 72px;
    821   overflow: hidden; }
    822   .framed-galaxynexus-land-span-8, .framed-galaxynexus-land-span-8 video,
    823 .framed-galaxynexus-land-span-8 img {
    824     width: 320px;
    825     height: 180px; }
    826 
    827 .framed-galaxynexus-port-span-9 {
    828   background: transparent url(../images/styles/device_galaxynexus_blank_port_span9.png) no-repeat
    829 scroll top left;
    830   padding: 95px 122px 107px 124px;
    831   overflow: hidden; }
    832   .framed-galaxynexus-port-span-9, .framed-galaxynexus-port-span-9 video,
    833 .framed-galaxynexus-port-span-9 img {
    834     width: 274px;
    835     height: 488px; }
    836 
    837 .framed-galaxynexus-port-span-5 {
    838   background: transparent url(../images/styles/device_galaxynexus_blank_port_span5.png) no-repeat
    839 scroll top left;
    840   padding: 75px 31px 76px 33px;
    841   overflow: hidden; }
    842   .framed-galaxynexus-port-span-5, .framed-galaxynexus-port-span-5 video,
    843 .framed-galaxynexus-port-span-5 img {
    844     width: 216px;
    845     height: 384px; }
    846 
    847 /* landing page disclosures */
    848 .landing-page-link {
    849   text-decoration: none;
    850   font-weight: 500;
    851   color: #333333; }
    852   .landing-page-link:after {
    853     content: '';
    854     background: transparent url(../images/styles/disclosure_right.png) no-repeat scroll 50% 50%;
    855     width: 10px;
    856     height: 10px;
    857     display: inline-block;
    858     margin-left: 5px; }
    859 
    860 /* tooltips */
    861 .tooltip-box {
    862   position: absolute;
    863   background-color: rgba(0, 0, 0, 0.9);
    864   border-radius: 2px;
    865   font-size: 14px;
    866   line-height: 20px;
    867   color: #fff;
    868   padding: 6px 10px;
    869   max-width: 250px;
    870   z-index: 10000; }
    871   .tooltip-box.below:after {
    872     position: absolute;
    873     content: '';
    874     line-height: 0;
    875     display: block;
    876     top: -10px;
    877     left: 5px;
    878     border: 5px solid transparent;
    879     border-bottom-color: rgba(0, 0, 0, 0.9); }
    880 
    881 /* video note */
    882 .video-instructions {
    883   margin-top: 10px;
    884   margin-bottom: 10px; }
    885   .video-instructions:before {
    886     content: '';
    887     background: transparent url(../images/styles/ico_movie_inline.png) no-repeat scroll top left;
    888     display: inline-block;
    889     width: 12px;
    890     height: 12px;
    891     margin-right: 8px; }
    892   .video-instructions:after {
    893     content: 'Click device screen to replay movie.'; }
    894 
    895 /* download buttons */
    896 .download-button {
    897   display: block;
    898   margin-bottom: 5px;
    899   text-decoration: none;
    900   background-color: #33b5e5;
    901   color: #fff !important;
    902   font-weight: 500;
    903   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
    904   padding: 6px 12px;
    905   border-radius: 2px; }
    906   .download-button:hover, .download-button:focus {
    907     background-color: #0099cc;
    908     color: #fff !important; }
    909   .download-button:active {
    910     background-color: #006699; }
    911 
    912 /* UI tables and other things found in Writing style and Settings pattern */
    913 .ui-table {
    914   width: 100%;
    915   background-color: #282828;
    916   color: #fff;
    917   border-radius: 2px;
    918   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    919   border-collapse: separate; }
    920   .ui-table th,
    921   .ui-table td {
    922     padding: 5px 10px;
    923     background-color: inherit;
    924     border:0;}
    925   .ui-table thead th {
    926     font-weight: bold; }
    927   .ui-table tfoot td {
    928     border-top: 1px solid #494949;
    929     border-right: 1px solid #494949;
    930     text-align: center; }
    931     .ui-table tfoot td:last-child {
    932       border-right: 0; }
    933 
    934 .layout-with-list-item-margins {
    935   margin-left: 30px !important; }
    936 
    937 .emulate-content-left-padding {
    938   margin-left: 10px; }
    939 
    940 .do-dont-label {
    941   margin-bottom: 10px;
    942   padding-left: 20px;
    943   background: transparent none no-repeat scroll 0px 3px; }
    944   .do-dont-label.bad {
    945     background-image: url(../images/styles/ico_wrong.png); }
    946   .do-dont-label.good {
    947     background-image: url(../images/styles/ico_good.png); }
    948 
    949 
    950 
    951 
    952 
    953 
    954 
    955 
    956 
    957 
    958 
    959 
    960 
    961 
    962 
    963 
    964 
    965 
    966 
    967 /***** PREVIOUSLY style.css ******************/
    968 
    969 
    970 
    971 
    972 
    973 @media screen, projection, print {
    974 [dir='rtl'] {
    975     direction: rtl;
    976 }
    977 html {
    978     line-height: 20px;
    979 }
    980 pre, table, input, textarea, code {
    981     font-size: 1em;
    982 }
    983 address, abbr, cite {
    984     font-style: normal;
    985 }
    986 [dir='rtl'] th {
    987     text-align: right;
    988 }
    989 html[lang^=ja] blockquote, html[lang^=ja] q, html[lang^=ko] blockquote, html[lang^=ko] q,
    990 html[lang^=zh] blockquote, html[lang^=zh] q {
    991     font-style: normal;
    992 }
    993 q {
    994     font-style: italic;
    995 }
    996 fieldset, iframe, img {
    997     border: 0;
    998 }
    999 img {
   1000   -ms-interpolation-mode: bicubic;
   1001   vertical-align: middle;
   1002   max-width: 100%;
   1003 }
   1004 q {
   1005     quotes: none;
   1006 }
   1007 sup, sub {
   1008     font-size: 11px;
   1009     line-height: 0;
   1010 }
   1011 }
   1012 
   1013 @media screen, projection {
   1014 
   1015 table, fieldset {
   1016     margin: 0;
   1017 }
   1018 h1 {
   1019     color:#333;
   1020     font-size: 22px;
   1021     margin: 20px 0 20px;
   1022     padding:0 0 10px;
   1023 }
   1024 h1, h2 {
   1025     line-height: 32px;
   1026 }
   1027 h1.short {
   1028   margin-right:320px;
   1029 }
   1030 h1.short {
   1031   margin-right:320px;
   1032 }
   1033 h1.super {
   1034     font-size: 37px;
   1035 }
   1036 h2 {
   1037     color:#333;
   1038     font-size: 20px;
   1039     margin: 20px 0 20px;
   1040     padding:0;
   1041 }
   1042 h3 {
   1043     color:#333;
   1044     font-size: 18px;
   1045 }
   1046 h3, h4 {
   1047     color:#333;
   1048     line-height: 20px;
   1049     margin: 10px 0;
   1050 }
   1051 h4 {
   1052   font-size: 16px;
   1053 }
   1054 h5 {
   1055   font-size: 14px;
   1056 }
   1057 h5, h6 {
   1058   margin: 5px 0;
   1059 }
   1060 h6 {
   1061   font-size: 12px;
   1062 }
   1063 hr { /* applied to the bottom of h2 elements */
   1064   height: 1px;
   1065   margin: 5px 0 20px;
   1066   border: 0;
   1067   background: #ccc;
   1068 }
   1069 p, pre, table, form {
   1070     margin: 0 0 15px;
   1071 }
   1072 small {
   1073   font-size: 11.5px;
   1074   color: #000;
   1075 }
   1076 ul, ol {
   1077     margin: 0 0 15px 18px;
   1078     padding: 0;
   1079 }
   1080 [dir='rtl'] ul, [dir='rtl'] ol {
   1081     margin: 10px 30px 10px 10px;
   1082 }
   1083 ul ul, ul ol, ol ul, ol ol {
   1084     margin-bottom: 0;
   1085     margin-top: 0;
   1086 }
   1087 li {
   1088   margin:0 0 5px;
   1089 }
   1090 dd {
   1091   margin:0 0 10px 30px;
   1092 }
   1093 dd p,
   1094 dd pre,
   1095 dd ul,
   1096 dd ol,
   1097 dd dl {
   1098   margin-top:10px;
   1099 }
   1100 li p,
   1101 li pre,
   1102 li ul,
   1103 li ol,
   1104 li dl {
   1105   margin-top:5px;
   1106   margin-bottom:5px;
   1107 }
   1108 pre strong, pre b, a strong, a b, a code {
   1109     color: inherit;
   1110 }
   1111 pre, code {
   1112     color: #060;
   1113     font: 13px/1.5 monospace;
   1114 }
   1115 code {
   1116     font-weight:bold;
   1117     font: 13px/14px monospace;
   1118 }
   1119 
   1120 legend {
   1121     display: none;
   1122 }
   1123 a:link, a:visited {
   1124   color: #258aaf;
   1125   text-decoration: none;
   1126 }
   1127 a:focus, a:hover, a:active {
   1128   color: #33B5E5;
   1129   text-decoration: none;
   1130 }
   1131 strong, b {
   1132   font-weight:bold;
   1133   color: #222;
   1134 }
   1135 table {
   1136   border-collapse: collapse;
   1137   border-spacing: 0;
   1138   border:0;
   1139   margin: .5em 1em 1em 0;
   1140   width:100%; /* consistent table widths; within IE's quirks */
   1141   background-color:#f7f7f7;
   1142 }
   1143 th, td {
   1144   padding: 4px 12px;
   1145   vertical-align: top;
   1146   text-align: left;
   1147 }
   1148 td {
   1149   background-color:inherit;
   1150   border:solid 1px #DDD;
   1151 }
   1152 td *:last-child {
   1153   margin-bottom:0;
   1154 }
   1155 th {
   1156   background-color: #999;
   1157   color: #fff;
   1158   border:solid 1px #DDD;
   1159   font-weight: normal;
   1160 }
   1161 tr:first-of-type th:first-of-type:empty {
   1162     visibility: hidden;
   1163 }
   1164 /* --------------------------------------------------------------------------
   1165 Footer
   1166 */
   1167 .line {
   1168     clear: both;
   1169     background: #acbc00;
   1170     background: -moz-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
   1171     background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #acbc00),
   1172 color-stop(50%, #acbc00), color-stop(50%, #bdde00), color-stop(100%, #bdde00));
   1173     background: -webkit-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
   1174     background: -o-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
   1175     background: -ms-linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
   1176     background: linear-gradient(top, #acbc00 0, #acbc00 50%, #bdde00 50%, #bdde00 100%);
   1177     height: 2px;
   1178     margin-top: 150px;
   1179     position: relative;
   1180     z-index: 11;
   1181 }
   1182 #footer {
   1183     font-size:11px;
   1184     clear: both;
   1185     color: #999;
   1186     padding: 15px 0;
   1187     margin-top:10px;
   1188     width:auto;
   1189 }
   1190 #footer-local ul {
   1191   list-style: none;
   1192   margin: 5px 0 30px 0;
   1193 }
   1194 #footer-local li {
   1195     display: inline;
   1196 }
   1197 #footer-local li+li:before {
   1198     content: '|';
   1199     padding: 0 3px;
   1200   color: #e5e5e5;
   1201 }
   1202 #footer-global {
   1203     padding: 10px 15px;
   1204   background: #f5f5f5;
   1205 }
   1206 #footer-global {
   1207     border-top: 1px solid #ebebeb;
   1208     font-size: 11.5px;
   1209     line-height: 1.8;
   1210     list-style: none;
   1211 }
   1212 #footer-global ul {
   1213     margin: 0;
   1214 }
   1215 #footer-global li {
   1216     display: inline;
   1217     font-weight: bold;
   1218 }
   1219 #footer-global li+li:before {
   1220     content: '?';
   1221     padding: 0 3px;
   1222 }
   1223 * html #footer-global li {
   1224     margin: 0 13px 0 0;
   1225 }
   1226 * [dir='rtl'] #footer-global li {
   1227     margin: 0 0 0 13px;
   1228 }
   1229 *+html #footer-global li {
   1230     margin: 0 13px 0 0;
   1231 }
   1232 *+[dir='rtl'] #footer-global li {
   1233     margin: 0 0 0 13px;
   1234 }
   1235 #footer-global li a {
   1236     font-weight: normal;
   1237 }
   1238 .locales {
   1239   margin: 10px 0 0 0px;
   1240 }
   1241 [dir='rtl'] .locales {
   1242     background-position: right center;
   1243     float: left;
   1244     padding: 0 24px 0 0;
   1245 }
   1246 .locales form {
   1247     margin: 0;
   1248 }
   1249 .locales select, .sites select {
   1250   line-height: 3.08;
   1251   margin: 0px 0;
   1252   border: solid 1px #EBEBEB;
   1253   -webkit-appearance: none;
   1254   background: white url('../images/arrows-up-down.png') right center no-repeat;
   1255   height: 30px;
   1256   color: #222;
   1257   line-height: normal;
   1258   padding: 5px;
   1259   width: 230px;
   1260 }
   1261 }
   1262 
   1263 /* =============================================================================
   1264    Print Only
   1265    ========================================================================== */
   1266 @media print {
   1267   /* configure printed page */
   1268   @page {
   1269       margin: 0.75in 1in;
   1270       widows: 4;
   1271       orphans: 4;
   1272   }
   1273 
   1274   /* reset spacing metrics */
   1275   html, body, .wrap {
   1276       margin: 0 !important;
   1277       padding: 0 !important;
   1278       width: auto !important;
   1279   }
   1280 
   1281   /* leave enough space on the left for bullets */
   1282   body {
   1283       padding-left: 20px !important;
   1284   }
   1285   #doc-col {
   1286       margin-left: 0;
   1287   }
   1288 
   1289   /* hide a bunch of non-content elements */
   1290   #header, #footer, #nav-x, #side-nav,
   1291   .training-nav-top, .training-nav-bottom,
   1292   #doc-col .content-footer,
   1293   .nav-x, .nav-y,
   1294   .paging-links,
   1295   a.totop {
   1296       display: none !important;
   1297   }
   1298 
   1299   /* remove extra space above page titles */
   1300   #doc-col .content-header {
   1301       margin-top: 0;
   1302   }
   1303 
   1304   /* bump up spacing above subheadings */
   1305   h2 {
   1306       margin-top: 40px !important;
   1307   }
   1308 
   1309   /* print link URLs where possible and give links default text color */
   1310   p a:after {
   1311       content: " (" attr(href) ")";
   1312       font-size: 80%;
   1313   }
   1314   p a {
   1315       word-wrap: break-word;
   1316   }
   1317   a {
   1318       color: inherit;
   1319   }
   1320 
   1321   /* syntax highlighting rules */
   1322   .str { color: #060; }
   1323   .kwd { color: #006; font-weight: bold; }
   1324   .com { color: #600; font-style: italic; }
   1325   .typ { color: #404; font-weight: bold; }
   1326   .lit { color: #044; }
   1327   .pun { color: #440; }
   1328   .pln { color: #000; }
   1329   .tag { color: #006; font-weight: bold; }
   1330   .atn { color: #404; }
   1331   .atv { color: #060; }
   1332 }
   1333 
   1334 /* =============================================================================
   1335    Columns
   1336    ========================================================================== */
   1337 
   1338 @media screen, projection, print {
   1339 .full {
   1340   padding: 2.5em 0;
   1341   border-top: solid 1px #ddd;
   1342   border-bottom: solid 1px #ddd;
   1343   background: #f7f7f7;
   1344 }
   1345 .wrap {
   1346   margin: 0 auto;
   1347   width: 940px;
   1348   clear: both;
   1349 }
   1350 .cols {
   1351     height: 1%;
   1352     margin: 0 -1.533742331288343558282%;
   1353     width: 103.06748466257669%}
   1354 *+html .cols {
   1355     margin-bottom: 20px;
   1356 }
   1357 .cols:after {
   1358     clear: both;
   1359     content: ' ';
   1360     display: block;
   1361     height: 0;
   1362     visibility: hidden;
   1363 }
   1364 .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
   1365 .col-13, .col-14, .col-15, .col-16 {
   1366     display: inline;
   1367   float: left;
   1368   margin-left: 10px;
   1369   margin-right: 10px;
   1370 }
   1371 /*
   1372 * html .col-1, * html .col-2, * html .col-3, * html .col-4, * html .col-5, * html .col-6, * html
   1373 .col-7, * html .col-8, * html .col-9, * html .col-10, * html .col-11, * html .col-12  {
   1374     margin: 0;
   1375     padding: 0 1.4% 20px;
   1376 }
   1377 [dir='rtl'] .col-1, [dir='rtl'] .col-2, [dir='rtl'] .col-3, [dir='rtl'] .col-4, [dir='rtl'] .col-5,
   1378 [dir='rtl'] .col-6, [dir='rtl'] .col-7, [dir='rtl'] .col-8, [dir='rtl'] .col-9, [dir='rtl'] .col-10,
   1379 [dir='rtl'] .col-11, [dir='rtl'] .col-12 {
   1380     float: right;
   1381 }
   1382 */
   1383 .col-1 { width: 40px }
   1384 .col-2 { width: 100px }
   1385 .col-3 { width: 160px }
   1386 .col-4 { width: 220px }
   1387 .col-5 { width: 280px }
   1388 .col-6 { width: 340px }
   1389 .col-7 { width: 400px }
   1390 .col-8 { width: 460px }
   1391 .col-9 { width: 520px }
   1392 .col-10 { width: 580px }
   1393 .col-11 { width: 640px }
   1394 .col-12 { width: 700px }
   1395 .col-13 { width: 760px }
   1396 .col-14 { width: 820px }
   1397 .col-15 { width: 880px }
   1398 .col-16 { width: 940px }
   1399 }
   1400 
   1401 .col-right {
   1402   margin-right:0px;
   1403 }
   1404 
   1405 @media screen and (max-width:772px) {
   1406 .col-5, .col-6, .col-7 {
   1407     clear: both;
   1408     width: 97.0238096%}
   1409 }
   1410 
   1411 /* =============================================================================
   1412    Layout
   1413    ========================================================================== */
   1414 @media screen, projection, print {
   1415 
   1416 /* --------------------------------------------------------------------------
   1417 Header, Login, Nav-X, Search
   1418 */
   1419 #header {
   1420   padding: 2.2em 0 0.2em 0;
   1421 }
   1422 #header:before, #header:after {
   1423   content: "";
   1424   display: table;
   1425   clear: both
   1426 }
   1427 .logo, .nav-x {
   1428     float: left;
   1429 }
   1430 .nav-x {
   1431     margin-top: -2px;
   1432   list-style-type: none;
   1433 }
   1434 .nav-x a {
   1435     color: #333;
   1436     font-size: 16px;
   1437 }
   1438 .design a.selected {
   1439     color: #33b5e5;
   1440 }
   1441 .develop a.selected {
   1442     color: #F80;
   1443 }
   1444 .distribute a.selected {
   1445     color: #9C0;
   1446 }
   1447 
   1448 
   1449 
   1450 .nav-x li {
   1451     display: inline;
   1452     margin-right: 45px;
   1453 }
   1454 .search {
   1455   float: right;
   1456   position: relative;
   1457   width: 220px
   1458 }
   1459 .search .bottom, .search .left, .search .right {
   1460   position: absolute;
   1461   background-color: #a3a3a3;
   1462 }
   1463 .search .bottom {
   1464   width: 220px;
   1465   height: 1px;
   1466   top: 24px;
   1467   left: 0
   1468 }
   1469 .search .left, .search .right {
   1470   height: 5px;
   1471   width: 1px
   1472 }
   1473 .search .left { top: 19px; left: 0 }
   1474 .search .right { top: 19px; right: 0 }
   1475 .search form {
   1476   float: left;
   1477   margin-top: 2px;
   1478   width: inherit;
   1479 }
   1480 .search .close,
   1481 #player-frame .close {
   1482   position: absolute;
   1483   right: 8px;
   1484   bottom: 4px;
   1485   width: 16px;
   1486   height: 16px;
   1487   margin: 0;
   1488   text-indent: -1000em;
   1489   background: url(../images/close.png) no-repeat 0 0;
   1490   z-index:9999;
   1491 }
   1492 .search .close:hover, .search .close:focus,
   1493 #player-frame .close:hover, #player-frame .close:focus {
   1494   background-position: -16px 0;
   1495   cursor:pointer;
   1496 }
   1497 #player-frame .close {
   1498   top: 6px;
   1499 }
   1500 .search form input {
   1501   color: #999;
   1502   font-size: 1em;
   1503   width: inherit;
   1504   border: none;
   1505   margin: 0;
   1506   padding:0 0 0 6px;
   1507   z-index: 1500;
   1508   background-color: transparent
   1509 }
   1510 .search:hover .bottom, .search:hover .left, .search:hover .right {
   1511   background-color: #33b5e5;
   1512 }
   1513 .search:hover .icon {
   1514   background-position: -8px 0
   1515 }
   1516 .search form input:focus {
   1517   color: #222;
   1518   font-weight: bold;
   1519   outline:0;
   1520 }
   1521 /* Search Dropdown */
   1522 .search-dropdown {
   1523   padding: 15px;
   1524   width: 192px;
   1525   border: solid 1px #c5c5c5;
   1526   background: #fff;
   1527   position: absolute;
   1528   top: 35px;
   1529   left: 0;
   1530   -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
   1531   -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
   1532   box-shadow: 0  0 10px rgba(0,0,0,0.2)
   1533 }
   1534 .search-dropdown ul, .search-dropdown ul li {
   1535   list-style-type: none;
   1536   margin: 0;
   1537   padding: 0
   1538 }
   1539 .search-dropdown ul li {
   1540   clear: both
   1541 }
   1542 .search-dropdown img {
   1543   float: left;
   1544   margin: 0 10px 10px 0
   1545 }
   1546 .search-dropdown h6 {
   1547   color: #222;
   1548   margin: 0;
   1549   line-height: normal
   1550 }
   1551 .search-dropdown .desc {
   1552   color: #999;
   1553   font-size: 11.5px;
   1554   line-height: normal;
   1555   margin: 0;
   1556 }
   1557 .search-dropdown li a:hover h6, .search-dropdown li a:hover .desc {
   1558   color: #33b5e5
   1559 }
   1560 /* --------------------------------------------------------------------------
   1561 Buttons
   1562 */
   1563 .button, a.button, .button-secondary, a.button-secondary {
   1564   border-image: initial;
   1565     -webkit-border-radius: 2px;
   1566     -moz-border-radius: 2px;
   1567     border-radius: 2px;
   1568     cursor: pointer;
   1569 }
   1570 .button, a.button {
   1571     display:inline-block;
   1572     background-color: #09c;
   1573     background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
   1574     background-image: -webkit-linear-gradient(top, #2faddb, #09c);
   1575     background-image: -moz-linear-gradient(top, #2faddb, #09c);
   1576     background-image: -ms-linear-gradient(top, #2faddb, #09c);
   1577     background-image: -o-linear-gradient(top, #2faddb, #09c);
   1578     background-image: linear-gradient(top, #2faddb, #09c);
   1579     filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#0099cc',GradientType=0);
   1580     border: 1px solid #3990ab;
   1581     color: #fff;
   1582 }
   1583 .button-secondary, a.button-secondary {
   1584     background-color: #f3f3f3;
   1585     border: 1px solid #dcdcdc;
   1586     color: #444;
   1587 }
   1588 a.button, a.button:visited, a.button-secondary, a.button-secondary:visited {
   1589     margin-right: 16px;
   1590    font-weight: 400;
   1591     min-width: 54px;
   1592     outline: 0;
   1593     padding: 8px 15px;
   1594     text-align: center;
   1595 }
   1596 .button, .button-secondary {
   1597     margin-right: 16px;
   1598   font-weight: 400;
   1599     min-width: 54px;
   1600     outline: 0;
   1601     padding: 0 15px;
   1602     text-align: center;
   1603 }
   1604 .button:hover, a.button:hover {
   1605     border-color: #09c;
   1606     background-color: #4cadcb;
   1607     background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbcd9), to(#4cadcb));
   1608     background-image: -webkit-linear-gradient(top, #5dbcd9, #4cadcb);
   1609     background-image: -moz-linear-gradient(top, #5dbcd9, #4cadcb);
   1610     background-image: -ms-linear-gradient(top, #5dbcd9, #4cadcb);
   1611     background-image: -o-linear-gradient(top, #5dbcd9, #4cadcb);
   1612     background-image: linear-gradient(top, #5dbcd9, #4cadcb);
   1613     filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9',
   1614 EndColorStr='#4cadcb',GradientType=0);
   1615     color: #fff !important;
   1616 }
   1617 .button:active, a.button:active {
   1618     background-color: #1e799a;
   1619     background-image: none;
   1620     border-color: #30b7e6;
   1621 }
   1622 a.button.big.subtitle {
   1623   line-height:18px;
   1624 }
   1625 .button-secondary:hover, a.button-secondary:hover {
   1626     border-color: #dbdbdb;
   1627     background-color: #f3f3f3;
   1628     background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
   1629     background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
   1630     background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
   1631     background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
   1632     background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
   1633     background-image: linear-gradient(top, #f9f9f9, #ececec);
   1634     filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
   1635 EndColorStr='#ececec');
   1636     color: #33B5E5 !important;
   1637 }
   1638 .button-secondary:active, a.button-secondary:active {
   1639    border-color: #dadada;
   1640   background: #ebebeb; /* Old browsers */
   1641   /* IE9 SVG, needs conditional override of 'filter' to 'none' */
   1642   background:
   1643 url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/
   1644 Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0Jv
   1645 eD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+
   1646 CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIg
   1647 eDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ViZWJl
   1648 YiIgc3RvcC1vcGFjaXR5PSIxIi8+
   1649 CiAgICA8c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
   1650 CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+
   1651 CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+
   1652 CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFy
   1653 R3JhZGllbnQ+
   1654 CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIg
   1655 Lz4KPC9zdmc+);
   1656   background: -moz-linear-gradient(top,  #ebebeb 0%, #f9f9f9 5%, #fafafa 50%, #f9f9f9 90%,
   1657 #ffffff 100%); /* FF3.6+ */
   1658   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb),
   1659 color-stop(5%,#f9f9f9), color-stop(50%,#fafafa), color-stop(90%,#f9f9f9), color-stop(100%,#ffffff));
   1660 /* Chrome,Safari4+ */
   1661   background: -webkit-linear-gradient(top,  #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9
   1662 90%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
   1663   background: -o-linear-gradient(top,  #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
   1664 100%); /* Opera 11.10+ */
   1665   background: -ms-linear-gradient(top,  #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
   1666 100%); /* IE10+ */
   1667   background: linear-gradient(top,  #ebebeb 0%,#f9f9f9 5%,#fafafa 50%,#f9f9f9 90%,#ffffff
   1668 100%); /* W3C */
   1669   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb',
   1670 endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
   1671   -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
   1672   -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
   1673   box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
   1674   color: #258AAF !important;
   1675 }
   1676 .button.big {
   1677   font-size:20px;
   1678   display:inline-block;
   1679 }
   1680 .button.big span.small {
   1681   font-size:14px;
   1682 }
   1683 .button-caption {
   1684   margin-top:10px;
   1685   font-size:12px;
   1686   font-style:italic;
   1687 }
   1688 
   1689 .button.disabled,
   1690 .button.disabled:hover,
   1691 .button.disabled:active {
   1692   background:#ebebeb;
   1693   color:#999 !important;
   1694   border-color:#999;
   1695   cursor:default;
   1696 }
   1697 
   1698 .training-nav-top a.button-secondary,
   1699 .training-nav-bottom a.button-secondary {
   1700   display:block;
   1701   float:left;
   1702   margin:0;
   1703   width:130px;
   1704   text-transform:uppercase;
   1705   font-weight:bold;
   1706 
   1707     background-color: #f3f3f3;
   1708     background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
   1709     background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
   1710     background-image: -moz-linear-gradient(top, #f9f9f9, #ececec);
   1711     background-image: -ms-linear-gradient(top, #f9f9f9, #ececec);
   1712     background-image: -o-linear-gradient(top, #f9f9f9, #ececec);
   1713     background-image: linear-gradient(top, #f9f9f9, #ececec);
   1714     filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
   1715 EndColorStr='#ececec');
   1716     color: #33B5E5;
   1717 }
   1718 
   1719 .training-nav-top a.button-secondary:hover,
   1720 .training-nav-bottom a.button-secondary:hover {
   1721     background-color: #09c;
   1722     background-image: -webkit-gradient(linear, left top, left bottom, from(#2faddb), to(#09c));
   1723     background-image: -webkit-linear-gradient(top, #2faddb, #09c);
   1724     background-image: -moz-linear-gradient(top, #2faddb, #09c);
   1725     background-image: -ms-linear-gradient(top, #2faddb, #09c);
   1726     background-image: -o-linear-gradient(top, #2faddb, #09c);
   1727     background-image: linear-gradient(top, #2faddb, #09c);
   1728     filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
   1729     border: 1px solid #3990ab;
   1730     color: #fff !important;
   1731 }
   1732 
   1733 .training-nav-top a.button-secondary.last,
   1734 .training-nav-bottom a.button-secondary.last {
   1735   border-left:0;
   1736 }
   1737 
   1738 .training-nav-top a.button-secondary.double-size,
   1739 .training-nav-bottom a.button-secondary.double-size {
   1740   width:291px;
   1741 }
   1742 
   1743 .training-nav-top,
   1744 .training-nav-bottom {
   1745   float:right;
   1746   margin:0 0 0 20px;
   1747 }
   1748 
   1749 .training-nav-bottom {
   1750   padding:0 0 20px;
   1751 }
   1752 
   1753 #tb-wrapper,
   1754 #qv-wrapper {
   1755   float:right;
   1756   clear:right;
   1757   margin:0 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
   1758   padding:0 0 20px;
   1759 }
   1760 
   1761 #tb-wrapper {
   1762   margin:-27px 0 0 20px; /* negative top-margin to counter the content-header bottom margin */
   1763 }
   1764 
   1765 #tb,
   1766 #qv {
   1767   font-size:13px;
   1768   line-height:18px;
   1769   width:238px;
   1770   border:1px solid #ccc;
   1771   float:right;
   1772 }
   1773 
   1774 #tb {
   1775   width:278px;
   1776 }
   1777 
   1778 #tb h2,
   1779 #qv h2 {
   1780   margin:10px 15px;
   1781   padding:0;
   1782   text-transform:uppercase;
   1783   border-bottom:1px solid gainsboro;
   1784 }
   1785 
   1786 #tb *,
   1787 #qv * {
   1788   font-size:inherit;
   1789 }
   1790 
   1791 #tb .download-box,
   1792 #qv .download-box {
   1793   padding:0 0 0 15px;
   1794 }
   1795 
   1796 #tb .download-box .filename,
   1797 #qv .download-box .filename {
   1798   font-size:11px;
   1799   margin:4px 4px 10px;
   1800   color:#666;
   1801 }
   1802 
   1803 
   1804 /* Dev guide quicknav */
   1805 
   1806 .sidebox-wrapper {
   1807   float:right;
   1808   clear:right;
   1809   margin:0 0 0 20px;
   1810   padding:0 0 20px;
   1811 }
   1812 
   1813 .sidebox {
   1814   width:226px;
   1815   font-size:13px;
   1816   line-height:18px;
   1817   border-left:4px solid #99CC00;
   1818   float:right;
   1819   padding:0 0 0 10px;
   1820   margin:0 0 1em 20px;
   1821 }
   1822 
   1823 .sidebox h2,
   1824 .sidebox h3,
   1825 .sidebox h4,
   1826 .sidebox h5 {
   1827   font-weight:bold;
   1828   margin:0 0 10px;
   1829 }
   1830 
   1831 .sidebox * {
   1832   font-size:inherit;
   1833 }
   1834 
   1835 #tb ol,
   1836 #tb ul,
   1837 #qv ul {
   1838   margin:0 15px 10px 35px;
   1839 }
   1840 
   1841 #qv ol {
   1842   list-style:none;
   1843   margin:0 15px 15px;
   1844   font-size:inherit;
   1845   line-height:inherit;
   1846 }
   1847 
   1848 #tb ol ol,
   1849 #tb ul ul,
   1850 #qv ol ol,
   1851 #qv ul ul,
   1852 .sidebox ol ol,
   1853 .sidebox ul ul {
   1854   margin-bottom:0;
   1855 }
   1856 
   1857 #qv ol ol {
   1858   margin:3px 0 3px 15px;
   1859 }
   1860 
   1861 .sidebox p,
   1862 #qv p,
   1863 #tb p {
   1864   margin: 0 0 10px;
   1865 }
   1866 
   1867 /* related resources blocks in checklists */
   1868 
   1869 .rel-resources {
   1870   margin:10px 0px;
   1871   border:1px solid #ccc;
   1872   background-color:rgba(0, 0, 0, 0.027451);
   1873   border:1px solid #ccc;
   1874   font-size:13px;
   1875   color:#6f6f6f;
   1876 }
   1877 
   1878 .rel-resources ul {
   1879 padding: .5em 1em 0 1em;
   1880 }
   1881 
   1882 .rel-resources a {
   1883 font-weight:500;
   1884 }
   1885 
   1886 .rel-resources h3 {
   1887   margin:4px 15px 0px 15px;
   1888   font-size:13px;
   1889   font-weight:600;
   1890   text-transform:uppercase;
   1891 }
   1892 
   1893 /* --------------------------------------------------------------------------
   1894 Form
   1895 */
   1896 .article form {
   1897     margin: 0 0 20px;
   1898 }
   1899 .article form .form-required {
   1900     color: #dd4b39;
   1901 }
   1902 .article form fieldset {
   1903     margin: 0 0 20px;
   1904     padding: 0;
   1905 }
   1906 .article form legend {
   1907     display: block;
   1908     line-height: 1.5;
   1909     margin: 0;
   1910     padding: 0;
   1911 }
   1912 /*
   1913 .article form ol, .article form ul {
   1914     margin: 0 0 0 1em;
   1915     padding: 0 0 0 1em;
   1916 }
   1917 [dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
   1918     margin: 0 1em 0 0;
   1919     padding: 0 1em 0 0;
   1920 }
   1921 .article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
   1922 ul ul {
   1923     list-style: none;
   1924     margin: 0;
   1925     padding: 0;
   1926 }
   1927 .article form li {
   1928     margin: 0 0 20px;
   1929 }
   1930 .article form li li {
   1931     margin: 0 0 5px;
   1932 }
   1933 */
   1934 .article form label {
   1935     display: block;
   1936     margin: 0 0 5px;
   1937     padding: 0;
   1938 }
   1939 .article form input[type='text'], .article form select, .article form textarea, .article form
   1940 .checkbox-group, .article form .radio-group {
   1941     margin-bottom: 15px;
   1942 }
   1943 .checkbox-group input {
   1944   width: 13px;
   1945   height: 13px;
   1946   background: #fff;
   1947   border: solid 1px #c6c6c6;
   1948   float: left;
   1949 }
   1950 .article form .checkbox-group, .article form .radio-group {
   1951   display: block
   1952 }
   1953 .article form select {
   1954     border: solid 1px #ebebeb;
   1955     border-top-color: #ddd;
   1956     -webkit-appearance: none;
   1957     background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
   1958     height: 30px;
   1959     color: #222;
   1960     line-height: normal;
   1961     padding: 5px;
   1962     width: 130px;
   1963 }
   1964 
   1965 .article form .browse .browse-msg {
   1966   font-size: 11.5px;
   1967 }
   1968 .article form .browse .button-secondary {
   1969   height: auto;
   1970   line-height: 25px;
   1971   font-size: 11px;
   1972   padding: 0 8px;
   1973   margin: 0 10px 15px 0;
   1974 }
   1975 .article form input[type='text'], .article form textarea {
   1976     border: 1px solid #ebebeb;
   1977     border-top-color: #dcdcdc;
   1978     color: #222;
   1979     line-height: normal;
   1980     padding: 6px 10px;
   1981     width: 300px;
   1982 }
   1983 .article form textarea {
   1984     height: 150px;
   1985 }
   1986 .article form input[type='text']:focus, .article form textarea:focus {
   1987     border-color: #33B5E5;
   1988     -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
   1989     -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
   1990     -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
   1991     box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
   1992     outline: 0;
   1993 }
   1994 .article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
   1995     color: #999;
   1996 }
   1997 .article form input[type='text'][disabled], .article form textarea[disabled] {
   1998     background-color: #ebebeb;
   1999 }
   2000 form .form-error input[type='text'], form .form-error textarea {
   2001     border-color: #dd4b39;
   2002   margin-right: 20px;
   2003 }
   2004 .aside {
   2005     -moz-border-radius: 2px;
   2006     -webkit-border-radius: 2px;
   2007     border-radius: 2px;
   2008     margin: 10px 0;
   2009     padding: 20px;
   2010   color: #666;
   2011     position: relative;
   2012   background: #f9f9f9;
   2013 }
   2014 /*
   2015 .aside, .notification, .promo {
   2016     -moz-border-radius: 2px;
   2017     -webkit-border-radius: 2px;
   2018     border-radius: 2px;
   2019     margin: 10px 0;
   2020     padding: 10px;
   2021     position: relative;
   2022 }
   2023 .aside>:first-child, .notification>:first-child, .promo>:first-child {
   2024     margin-top: 0;
   2025 }
   2026 .aside>:last-child, .notification>:last-child, .promo>:last-child {
   2027     margin-bottom: 0;
   2028 }
   2029 .aside {
   2030     background: #f9f9f9;
   2031 }
   2032 .notification {
   2033     background: #fffbe4;
   2034     border-color: #f8f6e6;
   2035 }
   2036 .promo {
   2037     background: #f6f9ff;
   2038     border-color: #eff2f9;
   2039 }
   2040 */
   2041 
   2042 /* SDK TOS styles */
   2043 
   2044 div.sdk-terms {
   2045   white-space: pre-wrap;
   2046   word-wrap: break-word;
   2047   font-family: inherit;
   2048   font-size: inherit;
   2049   padding: 10px;
   2050   height: 370px;
   2051   width: 738px;
   2052   border: 1px solid #444;
   2053   background: transparent;
   2054   overflow:auto;
   2055   margin:0 0 10px;
   2056 }
   2057 
   2058 div.sdk-terms.fullsize {
   2059   padding: 0;
   2060   height: auto;
   2061   width: auto;
   2062   border:none;
   2063 }
   2064 
   2065 div.sdk-terms h3,
   2066 div.sdk-terms h2 {
   2067   margin:0;
   2068 }
   2069 
   2070 div#sdk-terms-form {
   2071   padding:0 0 0 10px;
   2072 }
   2073 
   2074 div#sdk-terms-form input {
   2075   display:inline;
   2076   margin:4px 4px 4px 0;
   2077 }
   2078 
   2079 
   2080 /* --------------------------------------------------------------------------
   2081 Code Style
   2082 */
   2083 pre {
   2084   margin:0 0 1em 0;
   2085   padding: 1em;
   2086   overflow: auto;
   2087   border: solid 1px #ddd;
   2088   background: #f7f7f7;
   2089 }
   2090 .str { color: #080; }
   2091 .kwd { color: #008; }
   2092 .com { color: #800; }
   2093 .typ { color: #606; }
   2094 .lit { color: #066; }
   2095 .pun { color: #660; }
   2096 .pln { color: #000; }
   2097 .tag { color: #008; }
   2098 .atn { color: #828; }
   2099 .atv { color: #080; }
   2100 .dec { color: #606; }
   2101 
   2102 /* --------------------------------------------------------------------------
   2103 Three-Pane
   2104 */
   2105 /* Package Nav & Classes Nav */
   2106 .three-pane {
   2107   position: relative;
   2108   border-top: solid 1px #ebebeb;
   2109 }
   2110 #packages-nav .js-pane,
   2111 #classes-nav .js-pane {
   2112   overflow:visible;
   2113 }
   2114 #packages-nav {
   2115         height:270px;
   2116   max-height: inherit;
   2117   overflow: hidden;
   2118   position: relative;
   2119 }
   2120 #classes-nav {
   2121   overflow: hidden;
   2122   position: relative;
   2123 }
   2124 #packages-nav ul, #classes-nav ul {
   2125   list-style-type: none;
   2126   margin: 10px 0 20px 0;
   2127   padding: 0;
   2128 }
   2129 #classes-nav li {
   2130   font-weight: bold;
   2131   margin: 5px 0;
   2132 }
   2133 #packages-nav li,
   2134 #classes-nav li li {
   2135   margin: 0;
   2136 }
   2137 #packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
   2138 #classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
   2139   padding: 0 0 0 4px;
   2140 }
   2141 #packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
   2142 #classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
   2143 #nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
   2144   color: #222;
   2145   font-weight: normal;
   2146 }
   2147 #packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
   2148 #classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
   2149   display: block;
   2150 }
   2151 #packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
   2152 a:visited,
   2153 #classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
   2154 a:visited,
   2155 #nav-tree li div.selected {
   2156     font-weight: 500;
   2157     color: #0099cc;
   2158     background-color:#fff; }
   2159   #packages-nav li.selected ul li a,
   2160   #classes-nav li.selected ul li a {
   2161   /* don't highlight child items */
   2162     color: #555555; }
   2163 #nav-tree li div.selected a {
   2164     font-weight: 500;
   2165     color: #0099cc;
   2166 }
   2167 #nav-swap {
   2168   height:30px;
   2169   border-top:1px solid #ccc;
   2170 }
   2171 #nav-swap a {
   2172   display:inline-block;
   2173   height:100%;
   2174   color: #222;
   2175   font-size: 12px;
   2176   padding: 5px 0 5px 5px;
   2177 }
   2178 
   2179 #nav-swap .fullscreen {
   2180   float: right;
   2181   width: 24px;
   2182   height: 24px;
   2183   text-indent: -1000em;
   2184   padding:0;
   2185   margin:3px 5px 0;
   2186   background: url(../images/fullscreen.png) no-repeat -24px 0;
   2187 }
   2188 #nav-swap .fullscreen.disabled {
   2189   background-position: 0 0;
   2190 }
   2191 #nav-swap .fullscreen:hover,
   2192 #nav-swap .fullscreen:focus {
   2193   cursor:pointer;
   2194 }
   2195 
   2196 
   2197 /* nav tree */
   2198 #side-nav, #devdoc-nav, #swapper,
   2199 #nav-tree, #tree-list {
   2200   overflow:hidden;
   2201   margin-left:0;
   2202 }
   2203 
   2204 #nav-tree ul {
   2205   list-style:none;
   2206   padding:0;
   2207   margin:10px 0;
   2208 }
   2209 
   2210 #nav-tree ul li div {
   2211   padding:0 0 0 4px;
   2212 }
   2213 
   2214 #side-nav #nav-tree ul li a,
   2215 #side-nav #nav-tree ul li span.no-children {
   2216   padding: 0;
   2217   margin: 0;
   2218 }
   2219 
   2220 #nav-tree .plus {
   2221   margin: 0 3px 0 0;
   2222 }
   2223 
   2224 #nav-tree ul ul {
   2225   list-style: none;
   2226   margin: 0;
   2227   padding: 0 0 0 0;
   2228 }
   2229 
   2230 #nav-tree ul li {
   2231   margin: 0;
   2232   padding: 0 0 0 0;
   2233   white-space: nowrap;
   2234 }
   2235 
   2236 #nav-tree .children_ul {
   2237   padding:0;
   2238   margin:0;
   2239 }
   2240 #nav-tree .children_ul li div {
   2241   padding:0 0 0 10px;
   2242 }
   2243 #nav-tree .children_ul .children_ul li div {
   2244   padding:0 0 0 20px;
   2245 }
   2246 
   2247 #nav-tree a.nolink {
   2248   color: #222;
   2249   text-decoration: none;
   2250 }
   2251 
   2252 #nav-tree span.label {
   2253   width: 100%;
   2254 }
   2255 
   2256 #nav-tree {
   2257   overflow-x: auto;
   2258   overflow-y: scroll;
   2259   outline:0;
   2260 }
   2261 
   2262 
   2263 /* Content */
   2264 #doc-col {
   2265   margin-right:0;
   2266 }
   2267 #doc-content-container {
   2268   margin-left: 291px
   2269 }
   2270 #doc-header, #doc-content {
   2271   padding: 1em 2em;
   2272 }
   2273 #doc-header {
   2274   background: #f7f7f7;
   2275 }
   2276 #doc-header h1 {
   2277   line-height: 0;
   2278   margin-bottom: 15px;
   2279 }
   2280 #api-info-block {
   2281   float: right;
   2282   font-weight: bold;
   2283 }
   2284 #api-info-block a, #api-info-block a:active, #api-info-block a:visited {
   2285   color: #222;
   2286 }
   2287 #api-info-block a:hover, #api-info-block a:focus {
   2288   color: #33B5E5;
   2289 }
   2290 #api-nav-header {
   2291   height:19px; /* plus 16px padding = 35; same as #nav li */
   2292   font-size:14px;
   2293   padding: 8px 0;
   2294   margin: 0;
   2295   border-bottom: 1px solid #CCC;
   2296   background:#e9e9e9;
   2297   background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
   2298 
   2299 }
   2300 #api-nav-title {
   2301   padding:0 5px;
   2302   white-space:nowrap;
   2303 }
   2304 
   2305 #api-level-toggle {
   2306   float:right;
   2307   padding:0 5px;
   2308 }
   2309 
   2310 #api-level-toggle label {
   2311   margin:0;
   2312   vertical-align:top;
   2313   line-height: 19px;
   2314   font-size:13px;
   2315   height: 19px;
   2316 }
   2317 
   2318 #api-level-toggle .select-wrapper {
   2319   width: 35px;
   2320   display: inline-block;
   2321   overflow: hidden;
   2322 }
   2323 #api-level-toggle select {
   2324   border: 0;
   2325   appearance:none;
   2326   -moz-appearance:none;
   2327   -webkit-appearance: none;
   2328   background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
   2329   color: #222;
   2330   height: 19px;
   2331   line-height: 19px;
   2332   padding: 0;
   2333   margin:1px 0 0 0;
   2334   width:150%;
   2335   font-size:13px;
   2336   vertical-align:top;
   2337   outline:0;
   2338 }
   2339 
   2340 
   2341 /* Toggle for revision notes and stuff */
   2342 div.toggle-content.closed .toggle-content-toggleme {
   2343   display:none;
   2344 }
   2345 
   2346 #jd-content img.toggle-content-img {
   2347   margin:0 5px 5px 0;
   2348 }
   2349 div.toggle-content p {
   2350   margin:10px 0 0;
   2351 }
   2352 div.toggle-content-toggleme {
   2353   padding:0 0 0 15px;
   2354 }
   2355 
   2356 
   2357 /* API LEVEL FILTERED MEMBERS */
   2358 
   2359 .absent,
   2360 .absent a:link,
   2361 .absent a:visited,
   2362 .absent a:hover,
   2363 .absent * {
   2364   color:#bbb !important;
   2365   cursor:default !important;
   2366   text-decoration:none !important;
   2367 }
   2368 #devdoc-nav li.absent.selected,
   2369 #devdoc-nav li.absent.selected *,
   2370 #devdoc-nav div.label.absent.selected,
   2371 #devdoc-nav div.label.absent.selected * {
   2372   background-color:#eaeaea !important;
   2373 }
   2374 .absent h4.jd-details-title,
   2375 .absent h4.jd-details-title * {
   2376   background-color:#f6f6f6 !important;
   2377 }
   2378 .absent img {
   2379   opacity: .3;
   2380   filter: alpha(opacity=30);
   2381   -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
   2382 }
   2383 
   2384 
   2385 
   2386 
   2387 
   2388 
   2389 
   2390 
   2391 
   2392 /* JQUERY RESIZABLE STYLES */
   2393 .ui-resizable { position: relative; }
   2394 .ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
   2395 .ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
   2396 /*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
   2397 body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
   2398 .ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
   2399 border-bottom: solid 1px #ededed;
   2400   background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
   2401 /*
   2402 .ui-resizable-e {
   2403 cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
   2404 1px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
   2405 */
   2406 
   2407 /* --------------------------------------------------------------------------
   2408 Lightbox
   2409 */
   2410 .lightbox {
   2411   width: 769px;
   2412   padding: 1.5em;
   2413   margin: 0 auto;
   2414   border: solid 1px #dcdcdc;
   2415   background: #fff;
   2416   -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
   2417   -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
   2418   box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
   2419 }
   2420 .lightbox .header {
   2421   float: left;
   2422   width: 720px;
   2423   margin: -10px 20px 10px 0;
   2424 }
   2425 .lightbox .close {
   2426   float: right;
   2427   width: 10px;
   2428   height: 10px;
   2429   margin: -10px -10px 10px 0;
   2430   text-indent: -1000em;
   2431   background: url(../images/close.png) no-repeat 0 0;
   2432 }
   2433 .lightbox .close:hover, .lightbox .close:focus {
   2434   background-position: -10px 0;
   2435 }
   2436 
   2437 /* --------------------------------------------------------------------------
   2438 Butterbar
   2439 */
   2440 #butterbar-wrapper {
   2441   position:absolute;
   2442   top:0;
   2443   left:0;
   2444   width:100%;
   2445 }
   2446 #butterbar {
   2447   width:940px;
   2448   margin:0 auto;
   2449 }
   2450 #butterbar-message {
   2451   background-color:#f80;
   2452   float:right;
   2453   font-size:12px;
   2454   font-weight:bold;
   2455   padding:0 10px;
   2456   border-radius: 0 0 5px 5px;
   2457 }
   2458 #butterbar-message a {color:#fff !important}
   2459 #butterbar-message a:hover {text-decoration:underline;}
   2460 
   2461 /* --------------------------------------------------------------------------
   2462 Misc
   2463 */
   2464 
   2465 
   2466 .clearfix:before, .clearfix:after {
   2467   content: "";
   2468   display: table
   2469 }
   2470 .clearfix:after {
   2471   clear: both
   2472 }
   2473 .clearfix {
   2474   *zoom: 1
   2475 }
   2476 table.blank th, table.blank td {
   2477     border: 0;
   2478   background: none
   2479 }
   2480 .caption {
   2481   margin: 0.5em 0 2em 0;
   2482   color: #000;
   2483   font-size: 11.5px;
   2484 }
   2485 
   2486 .nolist {
   2487   list-style:none;
   2488   margin-left:0;
   2489 }
   2490 #tb .nolist {
   2491   margin-left:15px;
   2492 }
   2493 
   2494 dl.xml>dt {
   2495   text-transform:uppercase;
   2496 }
   2497 dl.xml dl.attr {
   2498   margin-top:0;
   2499 }
   2500 
   2501 pre.classic {
   2502   background-color:transparent;
   2503   border:none;
   2504   padding:0;
   2505 }
   2506 
   2507 p.img-caption {
   2508   margin: -10px 0 20px;
   2509   font-size:13px;
   2510   color:#666;
   2511 }
   2512 
   2513 div.figure,
   2514 div.figure-right {
   2515   float:right;
   2516   clear:right;
   2517   margin:10px 0 0 0;
   2518   padding:0 0 0 20px;
   2519   /* width must be defined w/ an inline style matching the image width */
   2520 }
   2521 
   2522 div.figure-left {
   2523   float:left;
   2524   clear:left;
   2525   margin:10px 0 0 0;
   2526   padding:0 20px 0 0;
   2527   /* width must be defined w/ an inline style matching the image width */
   2528 }
   2529 
   2530 img.frame {
   2531   border:1px solid #DDD;
   2532   padding:4px;
   2533 }
   2534 
   2535 p.table-caption {
   2536   margin: 0 0 4px 0;
   2537   font-size:13px;
   2538   color:#666;
   2539 }
   2540 
   2541 p.code-caption {
   2542   margin: 0 0 4px 0;
   2543   font: 12px/1.5 monospace;
   2544   color:#666;
   2545 }
   2546 
   2547 div.note,
   2548 div.caution,
   2549 div.warning {
   2550   margin: 0 0 15px;
   2551 }
   2552 
   2553 p.note, div.note,
   2554 p.caution, div.caution,
   2555 p.warning, div.warning {
   2556   padding: 0 0 0 10px;
   2557   border-left: 4px solid;
   2558 }
   2559 
   2560 p.note, div.note {
   2561   border-color: #258AAF;
   2562 }
   2563 
   2564 p.caution, div.caution {
   2565   border-color: #FF8800;
   2566 }
   2567 
   2568 p.warning, div.warning {
   2569   border-color: #ff4443;
   2570 }
   2571 
   2572 div.note.design {
   2573   border-left: 4px solid #33B5E5;
   2574 }
   2575 
   2576 div.note.develop {
   2577   border-left: 4px solid #F80;
   2578 }
   2579 
   2580 div.note.distribute {
   2581   border-left: 4px solid #9C0;
   2582 }
   2583 
   2584 .note p, .caution p, .warning p {
   2585   margin:0 0 5px;
   2586 }
   2587 
   2588 .note p:last-child, .caution p:last-child, .warning p:last-child {
   2589   margin-bottom:0;
   2590 }
   2591 
   2592 body.about blockquote {
   2593   display:block;
   2594   float:right;
   2595   width:280px;
   2596   font-size:20px;
   2597   font-style:italic;
   2598   line-height:24px;
   2599   color:#33B5E5;
   2600   margin:0 0 20px 30px;
   2601 }
   2602 
   2603 div.design-announce p {
   2604   margin:0 0 10px;
   2605 }
   2606 
   2607 #devdoc-nav a.totop {
   2608   display:block;
   2609   top:0;
   2610   width:inherit;
   2611   background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
   2612   text-indent:-9999em;
   2613 }
   2614 #devdoc-nav a.totop {
   2615   position:fixed;
   2616   display:none;
   2617 }
   2618 #devdoc-nav a.totop:hover {
   2619   background-color:#33B5E5;
   2620 }
   2621 
   2622 .content-footer a.totop {
   2623   text-transform:uppercase;
   2624   line-height:30px;
   2625 }
   2626 
   2627 .expandable {
   2628   height:34px;
   2629   padding-left:20px;
   2630   position:relative;
   2631 }
   2632 .expandable:before {
   2633   content: '';
   2634   background-image: url(../images/styles/disclosure_down.png);
   2635   background-repeat:no-repeat;
   2636   background-position: -12px -9px;
   2637   width: 20px;
   2638   height: 20px;
   2639   display: inline-block;
   2640   position: absolute;
   2641   top: 0;
   2642   left: 0; }
   2643 }
   2644 .expandable.expanded:before {
   2645   background-image: url(../images/styles/disclosure_up.png);
   2646 }
   2647 
   2648 /* notice box for cross links between Design/Develop docs */
   2649 a.notice-developers,
   2650 a.notice-designers {
   2651   float:right;
   2652   width:238px;
   2653   min-height:50px;
   2654   margin:0 0 20px 20px;
   2655   border:1px solid #ddd;
   2656 }
   2657 a.notice-developers div,
   2658 a.notice-designers div {
   2659   min-height:40px;
   2660   background:url('../images/styles/notice-developers@2x.png') no-repeat 10px 10px;
   2661   background-size:40px 40px;
   2662   padding:10px 10px 10px 60px;
   2663 }
   2664 a.notice-designers div {
   2665   background:url('../images/styles/notice-designers@2x.png') no-repeat 10px 10px;
   2666   background-size:40px 40px;
   2667 }
   2668 a.notice-developers:hover,
   2669 a.notice-designers:hover {
   2670   background:#eee;
   2671 }
   2672 a.notice-developers h3,
   2673 a.notice-designers h3 {
   2674   font-size:14px;
   2675   font-weight:normal;
   2676   text-transform:uppercase;
   2677   color:#000 !important;
   2678   margin:0;
   2679 }
   2680 a.notice-developers p,
   2681 a.notice-designers p {
   2682   margin:0;
   2683   line-height:16px;
   2684 }
   2685 a.notice-developers.left,
   2686 a.notice-designers.left {
   2687   margin-left:0;
   2688   float:left;
   2689 }
   2690 
   2691 
   2692 /* hide nested list items; companion to hideNestedLists() */
   2693 .hide-nested li ol,
   2694 .hide-nested li ul {
   2695   display:none;
   2696 }
   2697 
   2698 a.header-toggle {
   2699   display:block;
   2700   float:right;
   2701   text-transform:uppercase;
   2702   font-size:.8em !important;
   2703   font-weight:normal;
   2704   margin-top:2px;
   2705 }
   2706 
   2707 
   2708 /* -----------------------------------------------
   2709 good/bad example containers
   2710 */
   2711 
   2712 div.example-block {
   2713   background-repeat: no-repeat;
   2714   background-position:10px 8px;
   2715   background-color:#ccc;
   2716   padding:4px;
   2717   margin:.8em auto 1.5em 2em;
   2718   width:260px;
   2719   float:right;
   2720 }
   2721 /* red container */
   2722 .example-block.bad {
   2723   background-image: url(/images/example-bad.png);
   2724   background-color:#f4cccc;
   2725 }
   2726 /* green container */
   2727 .example-block.good {
   2728   background-image: url(/images/example-good.png);
   2729   background-color:#d9ead3;
   2730 }
   2731 /* container heading div */
   2732 #jd-content .example-block .heading {
   2733   font-weight:bold;
   2734   margin:6px 0 9px 36px;
   2735   padding:6px auto;
   2736 }
   2737 /* container image (if any) */
   2738 #jd-content .example-block img {
   2739   margin:0;
   2740   padding:0px;
   2741 }
   2742 
   2743 .example-block table {
   2744   margin:0;
   2745 }
   2746 
   2747 /* -----------------------------------------------
   2748 Dialog box for popup messages
   2749 */
   2750 
   2751 div.dialog {
   2752   height:0;
   2753   margin:0 auto;
   2754 }
   2755 
   2756 div.dialog>div {
   2757   z-index:99;
   2758   position:fixed;
   2759   margin:70px 0;
   2760   width: 391px;
   2761   height: 200px;
   2762   background: #F7F7F7;
   2763 -moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
   2764 -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
   2765 box-shadow: 0 0 15px rgba(0,0,0,0.5);
   2766 }
   2767 /* IE6 can't position fixed */
   2768 * html div.dialog div { position:absolute; }
   2769 
   2770 
   2771 div#deprecatedSticker {
   2772   display:none;
   2773   z-index:99;
   2774   position:fixed;
   2775   right:15px;
   2776   top:114px;
   2777   margin:0;
   2778   padding:1em;
   2779   background:#FFF;
   2780   border:1px solid #dddd00;
   2781   box-shadow:-5px 5px 10px #ccc;
   2782   -moz-box-shadow:-5px 5px 10px #ccc;
   2783   -webkit-box-shadow:-5px 5px 10px #ccc;
   2784 }
   2785 
   2786 div#naMessage {
   2787   display:none;
   2788   width:555px;
   2789   height:0;
   2790   margin:0 auto;
   2791 }
   2792 
   2793 div#naMessage div {
   2794   z-index:99;
   2795   width:450px;
   2796   position:fixed;
   2797   margin:50px 0;
   2798   padding:4em 4em 3em;
   2799   background:#FFF;
   2800   border:1px solid #999;
   2801   box-shadow:-10px 10px 40px #888;
   2802   -moz-box-shadow:-10px 10px 40px #888;
   2803   -webkit-box-shadow:-10px 10px 40px #888;
   2804 }
   2805 /* IE6 can't position fixed */
   2806 * html div#naMessage div { position:absolute; }
   2807 
   2808 div#naMessage strong {
   2809   font-size:1.1em;
   2810 }
   2811 
   2812 
   2813 /* --------------------------------------------------------------------------
   2814 Slideshow Controls & Next/Prev
   2815 */
   2816 .slideshow-next, .slideshow-prev {
   2817   width: 20px;
   2818   height: 36px;
   2819   text-indent: -1000em;
   2820 }
   2821 .slideshow-container {
   2822   margin: 2em 0;
   2823 }
   2824 .slideshow-container:before, .slideshow-container:after {
   2825   content: "";
   2826   display: table;
   2827   clear: both;
   2828 }
   2829 a.slideshow-next, a.slideshow-next:visited {
   2830 
   2831   float: right;
   2832 
   2833   background: url(../images/arrow-right.png) no-repeat 0 0
   2834 
   2835 }
   2836 
   2837 a.slideshow-prev, a.slideshow-prev:visited {
   2838 
   2839   float: left;
   2840 
   2841   background: url(../images/arrow-left.png) no-repeat 0 0
   2842 
   2843 }
   2844 
   2845 .slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
   2846 
   2847   background-position: 0 -36px
   2848 
   2849 }
   2850 
   2851 .slideshow-next:active, .slideshow-prev:active {
   2852 
   2853   background-position: 0 -72px
   2854 
   2855 }
   2856 .slideshow-nav {
   2857   width: 74px;
   2858   margin: 0 auto;
   2859 }
   2860 .slideshow-nav a, .slideshow-nav a:visited {
   2861   display: inline-block;
   2862   width: 12px;
   2863   height: 12px;
   2864   margin: 0 2px 20px 2px;
   2865   background: #ccc;
   2866   -webkit-border-radius: 50%;
   2867   -moz-border-radius: 50%;
   2868   border-radius: 50%;
   2869 }
   2870 .slideshow-nav a:hover, .slideshow-nav a:focus {
   2871 
   2872   background: #33B5E5
   2873 }
   2874 
   2875 .slideshow-nav a:active {
   2876 
   2877   background: #1e799a;
   2878   background: #ebebeb;
   2879   -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
   2880   -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
   2881   box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
   2882 }
   2883 .slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
   2884   background: #33B5E5
   2885 }
   2886 /* --------------------------------------------------------------------------
   2887 Tabs
   2888 */
   2889 ul.tabs {
   2890   padding: 0;
   2891   margin: 2em 0 0 0;
   2892 }
   2893 ul.tabs:before, ul.tabs:after {
   2894   content: "";
   2895   display: table;
   2896   clear: both;
   2897 }
   2898 ul.tabs li {
   2899   list-style-type: none;
   2900   float: left;
   2901 }
   2902 ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
   2903   display: block;
   2904   height: 36px;
   2905   line-height: 36px;
   2906   padding: 0 15px;
   2907   margin-right: 2px;
   2908   color: #222;
   2909   -moz-border-radius-topleft: 2px;
   2910   -moz-border-radius-topright: 2px;
   2911   -moz-border-radius-bottomright: px;
   2912   -moz-border-radius-bottomleft: px;
   2913   -webkit-border-radius: 2px 2px px px;
   2914   border-radius: 2px 2px px px;
   2915   border-top: solid 1px #ebebeb;
   2916   border-left: solid 1px #ebebeb;
   2917   border-right: solid 1px #ebebeb;
   2918   background-color: #fff;
   2919     background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
   2920     background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
   2921     background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
   2922     background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
   2923     background-image: -o-linear-gradient(top, #ffffff, #fafafa);
   2924     background-image: linear-gradient(top, #ffffff, #fafafa);
   2925     filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
   2926 EndColorStr='#fafafa');
   2927 }
   2928 ul.tabs li a:hover {
   2929   color: #33B5E5;
   2930 }
   2931 ul.tabs li a.selected {
   2932   height: 37px;
   2933   color: #33B5E5;
   2934   background-color: #f7f7f7;
   2935   background-image: none;
   2936   border-color: #ddd;
   2937 }
   2938 .tab-content {
   2939   padding: 1.2em;
   2940   margin: -1px 0 2em 0;
   2941   -webkit-border-radius: 2px;
   2942     -moz-border-radius: 2px;
   2943     border-radius: 2px;
   2944   border: solid 1px #ddd;
   2945   background: #f7f7f7;
   2946 }
   2947 /* --------------------------------------------------------------------------
   2948 Feature Boxes
   2949 */
   2950 .feature-box {
   2951   width: 291px;
   2952   height: 200px;
   2953   position: relative;
   2954   background: #F7F7F7;
   2955 }
   2956 .box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
   2957   z-index: 100;
   2958   position: absolute;
   2959   background-color: #aaa;
   2960 }
   2961 .box-border .top, .box-border .bottom {
   2962   width: 291px;
   2963   height: 1px;
   2964 }
   2965 .dialog .box-border .top,
   2966 .dialog .box-border .bottom { width:391px; }
   2967 
   2968 .box-border .left, .box-border .right {
   2969   width: 1px;
   2970   height: 8px;
   2971 }
   2972 .box-border .top { top: 0; left: 0 }
   2973 .box-border .top .left { top: 1px; left: 0 }
   2974 .box-border .top .right { top: 1px; right: 0 }
   2975 .box-border .bottom .left { top: -8px; left: 0 }
   2976 .box-border .bottom { top: 200px; left: 0 }
   2977 .box-border .bottom .right { top: -8px; right: 0 }
   2978 
   2979 .feature-box h4,
   2980 .dialog h4 {
   2981     margin: 15px 18px 10px;
   2982     padding:0;
   2983 }
   2984 
   2985 .feature-box p,
   2986 .dialog p {
   2987     margin: 10px 18px;
   2988     padding:0;
   2989 }
   2990 .feature-box .link,
   2991 .dialog .link {
   2992     border-top: 1px solid #dedede;
   2993     bottom: 0;
   2994     position: absolute;
   2995     width: inherit;
   2996 }
   2997 .feature-box a, .feature-box h4,
   2998 .dialog a, .dialog h4 {
   2999     -webkit-transition: color .4s ease;
   3000     -moz-transition: color .4s ease;
   3001     -o-transition: color .4s ease;
   3002     transition: color .4s ease;
   3003 }
   3004 .feature-box:hover {
   3005   cursor: pointer;
   3006 }
   3007 .feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
   3008 .left, .feature-box:hover .right {
   3009   background-color: #33B5E5;
   3010 }
   3011 .feature-box:hover h4, .feature-box:hover a {
   3012   color: #33B5E5;
   3013 }
   3014 /* --------------------------------------------------------------------------
   3015 Page-Specific Styles
   3016 */
   3017 .colors {
   3018   position: relative;
   3019   float: left;
   3020   width: 92px;
   3021   margin: 40px 0 20px;
   3022 }
   3023 .colors div {
   3024   color: #fff;
   3025   font-size: 11.5px;
   3026   width: 82px;
   3027   height: 82px;
   3028   margin-top:-30px;
   3029   line-height: 82px;
   3030   text-align: center;
   3031   border: solid 5px #fff;
   3032   -webkit-border-radius: 50%;
   3033   -moz-border-radius: 50%;
   3034   border-radius: 50%;
   3035 }
   3036 
   3037 
   3038 
   3039 
   3040 
   3041 
   3042 
   3043 
   3044 
   3045 
   3046 
   3047 
   3048 
   3049 
   3050 /* ########### REFERENCE DOCS ################## */
   3051 
   3052 #packages-nav h2,
   3053 #classes-nav h2 {
   3054   font-size:18px;
   3055   margin:0;
   3056   padding:0 0 0 4px;
   3057 }
   3058 
   3059 #jd-header {
   3060   padding: 0 0 5px;
   3061   margin: 20px 0 10px;
   3062   font-size:13px;
   3063   border-bottom:solid 1px #ccc;
   3064 }
   3065 
   3066 #jd-header h1 {
   3067   margin:0;
   3068   padding:0;
   3069 }
   3070 
   3071 /* page-top-right container for reference pages (holds
   3072 links to summary tables) */
   3073 #api-info-block {
   3074   font-size:13px;
   3075   margin:20px 0 0;
   3076   padding:0 10px 6px;
   3077   font-weight:normal;
   3078   float:right;
   3079   text-align:right;
   3080   color:#999;
   3081   max-width:70%;
   3082 }
   3083 
   3084 #api-info-block div.api-level {
   3085   font-weight:bold;
   3086   font-size:inherit;
   3087   float:none;
   3088   color:#222;
   3089   padding:0;
   3090   margin:0;
   3091 }
   3092 
   3093 /* inheritance table */
   3094 .jd-inheritance-table {
   3095   border-spacing:0;
   3096   margin:0;
   3097   padding:0;
   3098   font-size:13px;
   3099   background-color:transparent;
   3100 }
   3101 .jd-inheritance-table tr td {
   3102   border: none;
   3103   margin: 0;
   3104   padding: 0;
   3105   background-color:transparent;
   3106 }
   3107 .jd-inheritance-table .jd-inheritance-space {
   3108   font-weight:bold;
   3109   width:1em;
   3110 }
   3111 .jd-inheritance-table .jd-inheritance-interface-cell {
   3112   padding-left: 17px;
   3113 }
   3114 
   3115 
   3116 
   3117 .jd-sumtable a {
   3118   text-decoration:none;
   3119 }
   3120 
   3121 .jd-sumtable a:hover {
   3122   text-decoration:underline;
   3123 }
   3124 
   3125 /* the link inside a sumtable for "Show All/Hide All" */
   3126 .toggle-all {
   3127   display:block;
   3128   float:right;
   3129   font-weight:normal;
   3130   font-size:0.9em;
   3131 }
   3132 
   3133 /* adjustments for in/direct subclasses tables */
   3134 .jd-sumtable.jd-sumtable-subclasses {
   3135   margin: 1em 0 0 0;
   3136   max-width:968px;
   3137   background-color:transparent;
   3138   font-size:13px;
   3139 }
   3140 
   3141 /* extra space between end of method name and open-paren */
   3142 .sympad {
   3143   margin-right: 2px;
   3144 }
   3145 
   3146 /* right alignment for the return type in sumtable */
   3147 .jd-sumtable .jd-typecol {
   3148   text-align:right;
   3149 }
   3150 
   3151 /* adjustments for the expando table-in-table */
   3152 .jd-sumtable-expando {
   3153   margin:.5em 0;
   3154   padding:0;
   3155 }
   3156 
   3157 /* a div that holds a short description */
   3158 .jd-descrdiv {
   3159   padding:3px 1em 0 1em;
   3160   margin:0;
   3161   border:0;
   3162 }
   3163 
   3164 #jd-content img.jd-expando-trigger-img {
   3165   padding:0 4px 4px 0;
   3166   margin:0;
   3167 }
   3168 
   3169 .jd-sumtable-subclasses div#subclasses-direct,
   3170 .jd-sumtable-subclasses div#subclasses-indirect {
   3171   margin:0 0 0 13px;
   3172 }
   3173 
   3174 
   3175 
   3176 /********* MEMBER REF *************/
   3177 
   3178 
   3179 .jd-details {
   3180 /*  border:1px solid #669999;
   3181   padding:4px; */
   3182   margin:0 0 1em;
   3183 }
   3184 
   3185 /* API reference: a container for the
   3186 .tagdata blocks that make up the detailed
   3187 description */
   3188 .jd-details-descr {
   3189   padding:0;
   3190   margin:.5em .25em;
   3191 }
   3192 
   3193 /* API reference: a block containing
   3194 a detailed description, a params table,
   3195 seealso list, etc */
   3196 .jd-tagdata {
   3197   margin:.5em 1em;
   3198 }
   3199 
   3200 .jd-tagdata p {
   3201   margin:0 0 1em 1em;
   3202 }
   3203 
   3204 /* API reference: adjustments to
   3205 the detailed description block */
   3206 .jd-tagdescr {
   3207   margin:.25em 0 .75em 0;
   3208 }
   3209 
   3210 .jd-tagdescr ol,
   3211 .jd-tagdescr ul {
   3212   margin:0 2.5em;
   3213   padding:0;
   3214 }
   3215 
   3216 .jd-tagdescr table,
   3217 .jd-tagdescr img {
   3218   margin:.25em 1em;
   3219 }
   3220 
   3221 .jd-tagdescr li {
   3222 margin:0 0 .25em 0;
   3223 padding:0;
   3224 }
   3225 
   3226 /* API reference: heading marking
   3227 the details section for constants,
   3228 attrs, methods, etc. */
   3229 h4.jd-details-title {
   3230   font-size:1.15em;
   3231   background-color: #E2E2E2;
   3232   margin:1.5em 0 .6em;
   3233   padding:3px 95px 3px 3px; /* room for api-level */
   3234 }
   3235 body.google h4.jd-details-title {
   3236   background-color: #FFF;
   3237   padding-top:5px;
   3238   border-top: 1px solid #ccc;
   3239 }
   3240 body.google table.jd-sumtable th {
   3241   background-color: #FFF;
   3242   color:#000;
   3243 }
   3244 
   3245 h4.jd-tagtitle {
   3246   margin:0;
   3247 }
   3248 
   3249 h4 .normal {
   3250   font-weight:normal;
   3251 }
   3252 
   3253 /* API reference: heading for "Parameters", "See Also", etc.,
   3254 in details sections */
   3255 h5.jd-tagtitle {
   3256   margin:0 0 .25em 0;
   3257   font-size:1em;
   3258 }
   3259 
   3260 .jd-tagtable {
   3261   margin:0;
   3262   background-color:transparent;
   3263   width:auto;
   3264 }
   3265 
   3266 .jd-tagtable td,
   3267 .jd-tagtable th {
   3268   border:none;
   3269   background-color:#fff;
   3270   vertical-align:top;
   3271   font-weight:normal;
   3272   padding:2px 10px;
   3273 }
   3274 
   3275 .jd-tagtable th {
   3276   font-style:italic;
   3277 }
   3278 
   3279 /* Inline api level indicator for methods */
   3280 div.api-level {
   3281   font-size:.8em;
   3282   font-weight:normal;
   3283   color:#999;
   3284   float:right;
   3285   padding:0 8px 0;
   3286   margin-top:-30px;
   3287 }
   3288 
   3289 table.jd-tagtable td,
   3290 table.jd-tagtable th {
   3291   background-color:transparent;
   3292 }
   3293 
   3294 table.jd-tagtable th {
   3295   color:inherit;
   3296 }
   3297 
   3298 
   3299 
   3300 
   3301 
   3302 
   3303 
   3304 
   3305 
   3306 
   3307 
   3308 
   3309 
   3310 
   3311 
   3312 
   3313 
   3314 
   3315 
   3316 
   3317 
   3318 
   3319 
   3320 /* SEARCH FILTER */
   3321 
   3322 .menu-container {
   3323   position:relative;
   3324 }
   3325 #search_autocomplete {
   3326   font-weight:normal;
   3327 }
   3328 
   3329 .search_filtered_wrapper.reference {
   3330   width: 193px;
   3331   float: right;
   3332 }
   3333 .search_filtered_wrapper.docs {
   3334   width:875px;
   3335   float: left;
   3336   position:absolute;
   3337   top:26px;
   3338   right:66px;
   3339 }
   3340 .suggest-card {
   3341   position:relative;
   3342   width:170px;
   3343   min-height:90px;
   3344   padding:5px;
   3345   border: solid 1px #C5C5C5;
   3346   background: white;
   3347   top: 15px;
   3348   margin-right:-5px;
   3349   -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
   3350   -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
   3351   box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
   3352 }
   3353 .suggest-card.reference {
   3354   position:absolute;
   3355   z-index:999;
   3356   min-width:171px; /* +padding and border makes this match input width */
   3357   min-height:93px; /* add 3px because this has 1 not 4px top border */
   3358   width:auto;
   3359   top:41px;
   3360   margin:0;
   3361 }
   3362 .suggest-card.develop {
   3363   z-index:997;
   3364   border-top: solid 4px #F80;
   3365   float:right;
   3366 }
   3367 .suggest-card.design {
   3368   z-index:996;
   3369   border-top: solid 4px #33b5e5;
   3370   float:right;
   3371 }
   3372 .suggest-card.distribute {
   3373   z-index:995;
   3374   border-top: solid 4px #9C0;
   3375   float:right;
   3376 }
   3377 .child-card {
   3378   width:100%;
   3379 }
   3380 .suggest-card.dummy {
   3381   width:172px;
   3382   float:right;
   3383   border:0;
   3384   background:transparent;
   3385   -moz-box-shadow: none;
   3386   -webkit-box-shadow: none;
   3387   box-shadow: none;
   3388 }
   3389 
   3390 ul.search_filtered {
   3391   min-width:100%;
   3392   list-style: none;
   3393   margin: 0 0 5px;
   3394   padding: 0;
   3395 }
   3396 .search_filtered .jd-selected {
   3397   background:#efefef;
   3398   cursor:pointer;
   3399 }
   3400 .search_filtered .jd-selected,
   3401 .search_filtered .jd-selected a {
   3402     color:#09C !important;
   3403 }
   3404 
   3405 .no-display {
   3406   display: none;
   3407 }
   3408 
   3409 .search_filtered li.jd-autocomplete {
   3410   font-size: 0.81em;
   3411   border: none;
   3412   margin: 0 0 2px;
   3413   padding: 0;
   3414   line-height:1.5em;
   3415 }
   3416 
   3417 .search_filtered li a {
   3418   padding:0 5px;
   3419   color:#222 !important;
   3420   display:inline-block;
   3421   line-height:12px;
   3422 }
   3423 
   3424 .search_filtered li.header {
   3425   font-weight:bold;
   3426   color:#444;
   3427   border: none;
   3428   margin: 8px 0 2px;
   3429   padding:1px 5px;
   3430   line-height:1.5em;
   3431 }
   3432 .search_filtered li.header.small {
   3433   font-size:0.85em;
   3434 }
   3435 
   3436 .suggest-card.reference
   3437 .search_filtered li.header {
   3438   color:#aaa;
   3439   font-size: 0.81em;
   3440 }
   3441 
   3442 .search_filtered li.header:first-child {
   3443   margin: 0 0 2px;
   3444 }
   3445 
   3446 .show-item {
   3447   display: table-row;
   3448 }
   3449 .hide-item {
   3450   display: hidden;
   3451 }
   3452 
   3453 
   3454 
   3455 
   3456 
   3457 /* SEARCH RESULTS */
   3458 
   3459 
   3460 #leftSearchControl .gsc-twiddle {
   3461   background-image : none;
   3462 }
   3463 
   3464 #leftSearchControl td, #searchForm td {
   3465   border: 0px solid #000;
   3466   padding:0;
   3467 }
   3468 
   3469 #leftSearchControl .gsc-resultsHeader .gsc-title {
   3470   padding-left : 0px;
   3471   font-weight : bold;
   3472   font-size : 13px;
   3473   color:#006699;
   3474   display : none;
   3475 }
   3476 
   3477 #leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
   3478   display : none;
   3479 }
   3480 
   3481 #leftSearchControl .gsc-resultsRoot {
   3482   padding-top : 6px;
   3483 }
   3484 
   3485 #leftSearchControl div.gs-visibleUrl-long {
   3486   display : block;
   3487   color:#006699;
   3488 }
   3489 
   3490 #leftSearchControl .gsc-webResult {
   3491   padding:0 0 20px 0;
   3492 }
   3493 
   3494 .gsc-webResult div.gs-visibleUrl-short,
   3495 table.gsc-branding,
   3496 .gsc-clear-button {
   3497   display : none;
   3498 }
   3499 
   3500 .gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
   3501 .gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
   3502 #leftSearchControl a,
   3503 #leftSearchControl a b {
   3504   color:#006699;
   3505 }
   3506 
   3507 .gsc-resultsHeader {
   3508   display: none;
   3509 }
   3510 
   3511 /* Disable built in search forms */
   3512 .gsc-control form.gsc-search-box {
   3513   display : none;
   3514 }
   3515 table.gsc-search-box {
   3516   margin:6px 0 0 0;
   3517   border-collapse:collapse;
   3518 }
   3519 
   3520 td.gsc-input {
   3521   padding:0 2px;
   3522   width:100%;
   3523   vertical-align:middle;
   3524 }
   3525 
   3526 input.gsc-input {
   3527   border:1px solid #BCCDF0;
   3528   width:99%;
   3529   padding-left:2px;
   3530   font-size:.95em;
   3531 }
   3532 
   3533 td.gsc-search-button {
   3534   text-align: right;
   3535   padding:0;
   3536   vertical-align:top;
   3537 }
   3538 
   3539 
   3540 #searchResults {
   3541   overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
   3542 (it doesn't) */
   3543   height:auto;
   3544 }
   3545 
   3546 #searchResults .gsc-control {
   3547   position:relative;
   3548   width:auto;
   3549   padding:0 0 10px;
   3550 }
   3551 
   3552 #searchResults .gsc-tabsArea {
   3553   position:relative;
   3554   white-space:nowrap;
   3555   float:left;
   3556   width:200px;
   3557 }
   3558 
   3559 #searchResults .gsc-above-wrapper-area {
   3560   display:none;
   3561 }
   3562 
   3563 #searchResults .gsc-resultsbox-visible {
   3564   float:left;
   3565   width:720px;
   3566   margin-left:20px;
   3567 }
   3568 
   3569 #searchResults .gsc-tabHeader {
   3570   padding: 3px 6px;
   3571   position:relative;
   3572   width:auto;
   3573   display:block;
   3574 }
   3575 
   3576 #searchResults h2#searchTitle {
   3577   padding:0;
   3578   margin:5px 0;
   3579   border:none;
   3580 }
   3581 
   3582 #searchResults h2#searchTitle em {
   3583   font-style:normal;
   3584   color:#33B5E5;
   3585 }
   3586 
   3587 #searchResults .gsc-table-result {
   3588   margin:5px 0 10px 0;
   3589   background-color:transparent;
   3590 }
   3591 #searchResults .gs-web-image-box, .gs-promotion-image-box {
   3592   width:120px;
   3593 }
   3594 #searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
   3595   max-width:120px;
   3596 }
   3597 
   3598 #searchResults .gsc-table-result .gsc-thumbnail {
   3599   padding:0 20px 0 0;
   3600 }
   3601 
   3602 #searchResults td {
   3603   background-color:transparent;
   3604 }
   3605 
   3606 #searchResults .gsc-expansionArea {
   3607   position:relative;
   3608 }
   3609 #searchResults .gsc-tabsArea .gsc-cursor-box {
   3610   width:200px;
   3611   padding:20px 0 0 1px;
   3612 }
   3613 #searchResults .gsc-cursor-page {
   3614   display:inline-block;
   3615   float:left;
   3616   margin:-1px 0 0 -1px;
   3617   padding:0;
   3618   height:27px;
   3619   width:27px;
   3620   text-align:center;
   3621   line-height:2;
   3622 }
   3623 
   3624 #searchResults .gsc-tabHeader.gsc-tabhInactive,
   3625 #searchResults .gsc-cursor-page {
   3626   text-decoration:none;
   3627   color:#258AAF;
   3628   border: solid 1px #DADADA;
   3629 }
   3630 
   3631 #searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
   3632 #searchResults .gsc-cursor-page:hover {
   3633   border-color: #DBDBDB;
   3634   background-color: #F3F3F3;
   3635   background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
   3636   background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
   3637   background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
   3638   background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
   3639   background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
   3640   background-image: linear-gradient(top, #F9F9F9, #ECECEC);
   3641   filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
   3642 EndColorStr='#ececec');
   3643   color: #33B5E5;
   3644 }
   3645 
   3646 #searchResults .gsc-tabHeader.gsc-tabhActive,
   3647 #searchResults .gsc-tabHeader.gsc-tabhActive:hover,
   3648 #searchResults .gsc-cursor-page.gsc-cursor-current-page,
   3649 #searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
   3650   color:#fff;
   3651   background-color: #09C;
   3652   background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
   3653   background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
   3654   background-image: -moz-linear-gradient(top, #2FADDB, #09C);
   3655   background-image: -ms-linear-gradient(top, #2FADDB, #09C);
   3656   background-image: -o-linear-gradient(top, #2FADDB, #09C);
   3657   background-image: linear-gradient(top, #2FADDB, #09C);
   3658   filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
   3659   border: 1px solid #3990AB;
   3660   z-index:100;
   3661 }
   3662 
   3663 }
   3664 
   3665 
   3666 
   3667 
   3668 
   3669 
   3670 
   3671 
   3672 
   3673 
   3674 
   3675 
   3676 
   3677 /*********** PREVIOUSLY dac-styles.css ***************/
   3678 
   3679 
   3680 #header {
   3681   border-bottom:0;
   3682 }
   3683 
   3684 #header .wrap {
   3685   max-width:940px;
   3686   height:41px;
   3687   border-bottom:1px solid;
   3688   border-color: #ccc;
   3689   position:relative;
   3690 }
   3691 
   3692 .about #header .wrap {
   3693   border-color: #9933CC;
   3694 }
   3695 
   3696 .design #header .wrap {
   3697   border-color: #33b5e5;
   3698 }
   3699 
   3700 .develop #header .wrap {
   3701   border-color: #F80;
   3702 }
   3703 
   3704 .distribute #header .wrap {
   3705   border-color: #9C0;
   3706 }
   3707 
   3708 .logo a {
   3709   width:123px;
   3710   float:left;
   3711 }
   3712 
   3713 #header .logo {
   3714   margin-top: -6px;
   3715   margin-left: 0px;
   3716   margin-bottom:0px;
   3717   width: 160px;
   3718   padding-right:10px;
   3719 }
   3720 
   3721 .search {
   3722   height:25px;
   3723   margin-top: -3px;
   3724   margin-bottom: 0px;
   3725 }
   3726 
   3727 
   3728 
   3729 /* Quicknav */
   3730 .btn-quicknav {
   3731   width:20px;
   3732   height:28px;
   3733   float:left;
   3734   margin-left:6px;
   3735   padding-right:10px;
   3736   position:relative;
   3737   cursor:pointer;
   3738   border-right:1px solid #CCC;
   3739 }
   3740 
   3741 .btn-quicknav a {
   3742   zoom:1;
   3743   position:absolute;
   3744   top:13px;
   3745   left:5px;
   3746   display:block;
   3747   text-indent:-9999em;
   3748   width:10px;
   3749   height:5px;
   3750   background:url(../images/quicknav_arrow.png) no-repeat;
   3751 }
   3752 
   3753 .btn-quicknav a.arrow-active {
   3754   background-position: 0 -5px;
   3755   display:none;
   3756 }
   3757 
   3758 #header-wrap.quicknav a.arrow-inactive {
   3759   display:none;
   3760 }
   3761 
   3762 .btn-quicknav.active a.arrow-active {
   3763   display:block;
   3764 }
   3765 
   3766 .nav-x li {
   3767   display:block;
   3768   float:left;
   3769   margin-right:45px;
   3770   -webkit-transition: all 0.25s linear;
   3771       -moz-transition: all 0.25s linear;
   3772        -ms-transition: all 0.25s linear;
   3773         -o-transition: all 0.25s linear;
   3774            transition: all 0.25s linear;
   3775 }
   3776 
   3777 #header-wrap.quicknav .nav-x li {
   3778   min-width:160px;
   3779   margin-right:20px;
   3780 }
   3781 
   3782 #header-wrap.quicknav li.last {
   3783   margin-right:0px;
   3784 }
   3785 
   3786 #quicknav {
   3787  float:none;
   3788  clear:both;
   3789  margin-left:180px;
   3790  margin-top:-30px;
   3791  display:none;
   3792  overflow:hidden;
   3793 }
   3794 
   3795 #header-wrap.quicknav #quicknav {
   3796 
   3797 }
   3798 
   3799 #quicknav ul {
   3800   margin:10px 0;
   3801   padding:0;
   3802 }
   3803 
   3804 #quicknav ul li.design {
   3805   border-top:1px solid #33b5e5;
   3806 }
   3807 
   3808 #quicknav ul li.develop {
   3809   border-top:1px solid #FF8800;
   3810 }
   3811 
   3812 #quicknav ul li.distribute {
   3813   border-top:1px solid #99cc00;
   3814 }
   3815 
   3816 #quicknav ul li {
   3817   display:block;
   3818   float:left;
   3819   margin:0 20px 0 0;
   3820   min-width:140px;
   3821 }
   3822 
   3823 #quicknav ul li.last {
   3824   margin-right:0px;
   3825 }
   3826 
   3827 #quicknav ul li ul li {
   3828   float:none;
   3829 }
   3830 
   3831 #quicknav ul li ul li a {
   3832   color:#222;
   3833 }
   3834 
   3835 #quicknav ul li li ul,
   3836 #quicknav ul li li ul li {
   3837   margin:0;
   3838 }
   3839 
   3840 #quicknav ul li li ul li:before {
   3841   content:"\21B3";
   3842 }
   3843 
   3844 #header-wrap {
   3845    -webkit-transition: all 0.25s ease-out;
   3846       -moz-transition: all 0.25s ease-out;
   3847        -ms-transition: all 0.25s ease-out;
   3848         -o-transition: all 0.25s ease-out;
   3849            transition: all 0.25s ease-out;
   3850 
   3851 }
   3852 
   3853 #header-wrap.quicknav {
   3854   height:196px;
   3855 
   3856 }
   3857 
   3858 /* SEARCH AND MORE */
   3859 .search {
   3860   position: absolute;
   3861   width: 50px;
   3862   height:28px;
   3863   display: block;
   3864   margin-top:-3px;
   3865   margin-bottom:7px;
   3866   overflow:hidden;
   3867   z-index:100;
   3868   right:54px;
   3869   -webkit-transition: width 0.4s ease;
   3870      -moz-transition: width 0.4s ease;
   3871        -o-transition: width 0.4s ease;
   3872           transition: width 0.4s ease;
   3873 }
   3874 
   3875 .search #search-btn {
   3876   width:50px;
   3877   height:28px;
   3878   background:url(../images/icon_search.png) no-repeat;
   3879   float:left;
   3880 }
   3881 
   3882 .search-inner {
   3883   width:245px;
   3884 }
   3885 
   3886 .search:hover, .search.active {
   3887   width:245px;
   3888 }
   3889 
   3890 .search .bottom, .search .left, .search .right {
   3891   position: absolute;
   3892   background-color: #a2a2a2
   3893 }
   3894 
   3895 .search .bottom {
   3896   width: 214px;
   3897   height: 1px;
   3898   top: 24px;
   3899   left: 0
   3900 }
   3901 
   3902 .search .left, .search .right {
   3903   height: 5px;
   3904   width: 1px
   3905 }
   3906 
   3907 .search .left {
   3908   top: 22px;
   3909   left: 56px;
   3910   background-color:#CCC;
   3911 }
   3912 
   3913 .search .right {
   3914   top: 22px;
   3915   left: 238px;
   3916   background-color:#CCC;
   3917 }
   3918 
   3919 .search form {
   3920   margin-top: 2px;
   3921   width: 162px;
   3922   float:left;
   3923 }
   3924 
   3925 .search form input {
   3926   color: #2f2f2f;
   3927   font-size: 0.95em;
   3928   width: 178px;
   3929   border: none;
   3930   margin-left: 6px;
   3931   z-index: 1500;
   3932   position: relative;
   3933   background-color: transparent;
   3934   border-bottom:1px solid #CCC;
   3935   padding:0 0 0 4px;
   3936   outline:none;
   3937   height:24px;
   3938 }
   3939 
   3940 .search:hover form input {
   3941   border-bottom:1px solid #33B5E5;
   3942 }
   3943 
   3944 .search:hover .bottom, .search:hover .left, .search:hover .right {
   3945   background-color: #33b5e5;
   3946 }
   3947 
   3948 .search:hover #search-btn {
   3949   background-position: 0 -28px
   3950 }
   3951 
   3952 .search form input:focus {
   3953   color: #222;
   3954   font-weight: bold
   3955 }
   3956 
   3957 .moremenu {
   3958   float: right;
   3959   position: relative;
   3960   width: 50px;
   3961   height:28px;
   3962   display: block;
   3963   margin-top:-3px;
   3964   margin-bottom:7px;
   3965   overflow:hidden;
   3966   -webkit-transition: width 0.25s ease;
   3967      -moz-transition: width 0.25s ease;
   3968        -o-transition: width 0.25s ease;
   3969           transition: width 0.25s ease;
   3970 }
   3971 
   3972 .moremenu #more-btn {
   3973   width:40px;
   3974   height:28px;
   3975   background:url(../images/icon_more.png) no-repeat;
   3976   border-left:1px solid #CCC;
   3977   float:left;
   3978   cursor:pointer;
   3979 }
   3980 
   3981 .moremenu:hover #more-btn {
   3982   background-position:0 -28px;
   3983 }
   3984 
   3985 .morehover {
   3986   position:absolute;
   3987   right:6px;
   3988   top:-9px;
   3989   width:40px;
   3990   height:35px;
   3991   z-index:99;
   3992   overflow:hidden;
   3993 
   3994   -webkit-opacity:0;
   3995      -moz-opacity:0;
   3996        -o-opacity:0;
   3997           opacity:0;
   3998 
   3999   -webkit-transform-origin:100% 0%;
   4000      -moz-transform-origin:100% 0%;
   4001        -o-transform-origin:100% 0%;
   4002           transform-origin:100% 0%;
   4003 
   4004   -webkit-transition-property: -webkit-opacity;
   4005   -webkit-transition-duration: .25s;
   4006   -webkit-transition-timing-function:ease;
   4007 
   4008   -moz-transition-property: -moz-opacity;
   4009   -moz-transition-duration: .25s;
   4010   -moz-transition-timing-function:ease;
   4011 
   4012   -o-transition-property: -o-opacity;
   4013   -o-transition-duration: .25s;
   4014   -o-transition-timing-function:ease;
   4015 
   4016   transition-property: opacity;
   4017   transition-duration: .25s;
   4018   transition-timing-function:ease;
   4019 }
   4020 
   4021 .morehover:hover,
   4022 .morehover.hover {
   4023   opacity:1;
   4024   height:385px;
   4025   width:268px;
   4026   -webkit-transition-property:height,  -webkit-opacity;
   4027 }
   4028 
   4029 .morehover .top {
   4030   width:268px;
   4031   height:39px;
   4032   background:url(../images/more_top.png) no-repeat;
   4033 }
   4034 
   4035 .morehover .mid {
   4036   width:228px;
   4037   background:url(../images/more_mid.png) repeat-y;
   4038   padding:10px 20px 0 20px;
   4039 }
   4040 
   4041 .morehover .mid .header {
   4042   border-bottom:1px solid #ccc;
   4043   font-weight:bold;
   4044 }
   4045 
   4046 .morehover .bottom {
   4047   width:268px;
   4048   height:6px;
   4049   background:url(../images/more_bottom.png) no-repeat;
   4050 }
   4051 
   4052 .morehover ul {
   4053   margin:10px 10px 20px 0;
   4054 }
   4055 
   4056 .morehover ul li {
   4057   list-style:none;
   4058 }
   4059 
   4060 .morehover ul li.active a,
   4061 .morehover ul li.active a:hover {
   4062   color:#222 !important;
   4063 }
   4064 
   4065 .morehover ul li.active img {
   4066   margin-right:4px;
   4067 }
   4068 
   4069 
   4070 
   4071 
   4072 /* MARQUEE */
   4073 .slideshow-container {
   4074   width:100%;
   4075   overflow:hidden;
   4076   position:relative;
   4077 }
   4078 .slideshow-container .slideshow-prev {
   4079   position:absolute;
   4080   top:50%;
   4081   left:0px;
   4082   margin-top:-36px;
   4083   z-index:99;
   4084 }
   4085 .slideshow-container .slideshow-next {
   4086   position:absolute;
   4087   top:50%;
   4088   margin-top:-36px;
   4089   z-index:99;
   4090   right:0px;
   4091 }
   4092 
   4093 .slideshow-container .pagination {
   4094   position:absolute;
   4095   bottom:20px;
   4096   width:100%;
   4097   text-align:center;
   4098   z-index:99;
   4099 }
   4100 .slideshow-container .pagination ul {
   4101   margin:0;
   4102 }
   4103 .slideshow-container .pagination ul li{
   4104   display: inline-block;
   4105   width:12px;
   4106   height:12px;
   4107   text-indent:-8000px;
   4108   list-style:none;
   4109   margin: 0 2px;
   4110   border-radius:6px;
   4111   background-color:#ccc;
   4112   cursor:pointer;
   4113         -webkit-transition:color .5s ease-in;
   4114         -moz-transition:color .5s ease-in;
   4115         -o-transition:color .5s ease-in;
   4116         transition:color .5s ease-in;
   4117 }
   4118 .slideshow-container .pagination ul li:hover {
   4119   background-color:#999;
   4120 }
   4121 .slideshow-container .pagination ul li.active {
   4122   background-color:#33b5e5;
   4123 }
   4124 .slideshow-container .pagination ul li.active:hover {
   4125   background-color:#33b5e5;
   4126 }
   4127 .slideshow-container ul li {
   4128   display:inline;
   4129   list-style:none;
   4130 }
   4131 
   4132 
   4133 
   4134 
   4135 a.download-sdk {
   4136     float:right;
   4137     margin:-10px 0;
   4138     height:30px;
   4139     padding-top:4px;
   4140     padding-bottom:0px;
   4141 }
   4142 
   4143 #nav-x {
   4144   padding-top: 14px;
   4145 }
   4146 
   4147 #nav-x .wrap {
   4148   min-height:34px;
   4149 }
   4150 
   4151 #nav-x .wrap,
   4152 #searchResults.wrap {
   4153     max-width:940px;
   4154     border-bottom:1px solid #CCC;
   4155 }
   4156 
   4157 #searchResults.wrap #leftSearchControl {
   4158   min-height:700px
   4159 }
   4160 .nav-x {
   4161     margin-left:0;
   4162     margin-bottom:0;
   4163 }
   4164 
   4165 
   4166 
   4167 
   4168 
   4169 
   4170 
   4171 
   4172 
   4173 
   4174 /*
   4175  * CSS Styles that are needed by jScrollPane for it to operate correctly.
   4176  */
   4177 
   4178 .jspContainer {
   4179   overflow: hidden;
   4180   position: relative;
   4181 }
   4182 
   4183 .jspPane {
   4184   position: absolute;
   4185   overflow: hidden;
   4186   width:100% !important; /* to avoid cut-off api names in reference in horiz scroll */
   4187 }
   4188 
   4189 .jspVerticalBar {
   4190   position: absolute;
   4191   top: 0;
   4192   right: 0;
   4193   width: 4px;
   4194   height: 100%;
   4195   background: #f5f5f5;
   4196 }
   4197 
   4198 .jspHorizontalBar {
   4199   position: absolute;
   4200   bottom: 0;
   4201   left: 0;
   4202   width: 100%;
   4203   height: 4px;
   4204   background: #f5f5f5;
   4205 }
   4206 
   4207 .jspVerticalBar *,
   4208 .jspHorizontalBar * {
   4209   margin: 0;
   4210   padding: 0;
   4211 }
   4212 .jspCap {
   4213   display: block;
   4214 }
   4215 
   4216 .jspVerticalBar .jspCap {
   4217   height: 4px;
   4218 }
   4219 
   4220 .jspHorizontalBar .jspCap {
   4221   width: 0;
   4222   height: 100%;
   4223 }
   4224 
   4225 .jspHorizontalBar .jspCap {
   4226   float: left;
   4227 }
   4228 
   4229 .jspTrack {
   4230   position: relative;
   4231 }
   4232 
   4233 .jspDrag {
   4234   background: #bbb;
   4235   position: relative;
   4236   top: 0;
   4237   left: 0;
   4238   cursor: pointer;
   4239 }
   4240 
   4241 .jspDrag:hover,
   4242 .jspDrag:active {
   4243   border-color: #09c;
   4244   background-color: #4cadcb;
   4245   background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
   4246   background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
   4247   background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
   4248   background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
   4249   background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
   4250   background-image: linear-gradient(left, #5dbcd9, #4cadcb);
   4251   filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
   4252 }
   4253 
   4254 .jspHorizontalBar .jspTrack,
   4255 .jspHorizontalBar .jspDrag {
   4256   float: left;
   4257   height: 100%;
   4258 }
   4259 
   4260 .jspArrow {
   4261   background: #999;
   4262   text-indent: -20000px;
   4263   display: block;
   4264   cursor: pointer;
   4265 }
   4266 
   4267 .jspArrow.jspDisabled {
   4268   cursor: default;
   4269   background: #ccc;
   4270 }
   4271 
   4272 .jspVerticalBar .jspArrow {
   4273   height: 16px;
   4274 }
   4275 
   4276 .jspHorizontalBar .jspArrow {
   4277   width: 16px;
   4278   float: left;
   4279   height: 100%;
   4280 }
   4281 
   4282 .jspVerticalBar .jspArrow:focus {
   4283   outline: none;
   4284 }
   4285 
   4286 .jspCorner {
   4287   float: left;
   4288   height: 100%;
   4289 }
   4290 
   4291 /* Yuk! CSS Hack for IE6 3 pixel bug :( */
   4292 * html .jspCorner {
   4293   margin: 0 -3px 0 0;
   4294 }
   4295 /******* end of jscrollpane *********/
   4296 
   4297 
   4298 
   4299 
   4300 
   4301 /************ DEVELOP HOMEPAGE ******************/
   4302 
   4303 /* Slideshow */
   4304 .slideshow-develop {
   4305   height: 300px;
   4306   width: 940px;
   4307   position: relative;
   4308   overflow:hidden;
   4309 }
   4310 .slideshow-develop .frame {
   4311   width: 940px;
   4312   height: 300px;
   4313 }
   4314 .slideshow-develop img.play {
   4315   max-width:350px;
   4316   max-height:240px;
   4317   margin:20px 0 0 90px;
   4318   -webkit-transform: perspective(800px ) rotateY( 35deg );
   4319   box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
   4320   -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
   4321   -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
   4322 }
   4323 .slideshow-develop img.play.no-shadow {
   4324     box-shadow: none;
   4325     -moz-box-shadow: none;
   4326     -webkit-box-shadow: none;
   4327 }
   4328 .slideshow-develop img.play.no-transform {
   4329   -webkit-transform: none;
   4330 }
   4331 .slideshow-develop a.slideshow-next {
   4332   background: url(../images/arrow-right-develop.png);
   4333 }
   4334 .slideshow-develop a.slideshow-prev {
   4335   background: url(../images/arrow-left-develop.png);
   4336 }
   4337 .slideshow-develop .content-right {
   4338   float: left;
   4339 }
   4340 .slideshow-develop .content-right h2 {
   4341   padding:0;
   4342   margin-bottom:10px;
   4343   border:none;
   4344 }
   4345 .slideshow-develop .item {
   4346   height: 300px;
   4347   width: 940px;
   4348 }
   4349 .slideshow-develop .pagination ul li.active {
   4350   background-color: #F80;
   4351 }
   4352 .slideshow-develop .pagination ul li.active:hover {
   4353   background-color: #F80;
   4354 }
   4355 .slideshow-develop .item hr {
   4356   margin:5px 0 10px;
   4357 }
   4358 .slideshow-develop .item p {
   4359   margin:10px 0;
   4360 }
   4361 .slideshow-develop .item p.title-intro {
   4362   position:absolute;
   4363   margin:0;
   4364 }
   4365 
   4366 /* Feeds */
   4367 .feed ul {
   4368   margin: 0;
   4369 }
   4370 .feed .feed-nav {
   4371   height: 25px;
   4372   border-bottom: 1px solid #CCC;
   4373 }
   4374 .feed .feed-nav li {
   4375   list-style: none;
   4376   float: left;
   4377   height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
   4378   margin-right: 25px;
   4379   cursor: pointer;
   4380 }
   4381 .feed .feed-nav li.active {
   4382   color: #000;
   4383   border-bottom: 4px solid #F80;
   4384 }
   4385 .feed .feed-container {
   4386   overflow: hidden;
   4387   width: 460px;
   4388 }
   4389 .feed .feed-container .feed-frame {
   4390   width: 1000px;
   4391 }
   4392 .feed .feed-container .feed-frame ul {
   4393   float: left;
   4394   width:460px;
   4395 }
   4396 .feed .feed-container .feed-frame ul ul {
   4397   float: none;
   4398   margin:10px 0 0 30px;
   4399 }
   4400 .feed .feed-container .feed-frame li {
   4401   list-style: none;
   4402   margin: 20px 0 20px 0;
   4403   width: 460px;
   4404   height:93px;
   4405 }
   4406 .feed .feed-container .feed-frame li.playlist {
   4407   height:auto;
   4408 }
   4409 .feed .feed-container .feed-frame li.playlist a {
   4410   height:93px;
   4411   display:block;
   4412 }
   4413 .feed .feed-container .feed-frame li.more {
   4414   height:20px;
   4415   margin:10px 0 5px 5px;
   4416 }
   4417 .feed .feed-container .feed-frame li.more a {
   4418   height:inherit;
   4419 }
   4420 .feed .feed-container .feed-frame li.playlist-video {
   4421   list-style: none;
   4422   margin: 0;
   4423   width: 460px;
   4424   height:55px;
   4425   font-size:12px;
   4426 }
   4427 .feed .feed-container .feed-frame li.playlist-video a {
   4428   height:45px;
   4429   padding:5px;
   4430 }
   4431 .feed .feed-container .feed-frame li.playlist-video h5 {
   4432   font-size:12px;
   4433   line-height:13px;
   4434   margin:0;
   4435 }
   4436 .feed .feed-container .feed-frame li.playlist-video p {
   4437   margin:5px 0 0;
   4438   line-height:15px;
   4439 }
   4440 .feed-container .feed-frame div.feed-image {
   4441   float: left;
   4442   border: 1px solid #999;
   4443   margin:0 20px 0 0;
   4444   width:122px;
   4445   height:92px;
   4446   background:url('../images/blog-default.png') no-repeat 0 0;
   4447   background-size:180px;
   4448 }
   4449 #jd-content .feed .feed-container .feed-frame li img {
   4450   float: left;
   4451   border: 1px solid #999;
   4452   margin:0 20px 0 0;
   4453   width:122px;
   4454   height:92px;
   4455 }
   4456 #jd-content .feed .feed-container .feed-frame li.playlist-video img {
   4457   width:inherit;
   4458   height:inherit;
   4459 }
   4460 
   4461 .feed .feed-container .feed-frame li a,
   4462 .feed .feed-container .feed-frame li a:active {
   4463   color:#555 !important;
   4464 }
   4465 
   4466 .feed .feed-container .feed-frame li a:hover,
   4467 .feed .feed-container .feed-frame li a:hover * {
   4468   color:#7AA1B0 !important;
   4469 }
   4470 
   4471 /* Video player */
   4472 #player-wrapper {
   4473   display:none;
   4474   margin: -1px auto 0;
   4475   position: relative;
   4476   width: 940px;
   4477   height: 0px;
   4478 }
   4479 #player-frame {
   4480   background: #EFEFEF;
   4481   border: 1px solid #CCC;
   4482   padding: 0px 207px;
   4483   z-index: 10; /* stay above marque, but below search suggestions */
   4484   width: 525px;
   4485   height: 330px;
   4486   position: relative;
   4487 }
   4488 
   4489 
   4490 
   4491 /************ DISTRIBUTE HOMEPAGE ***************/
   4492 
   4493 .marquee {
   4494   width: 760px;
   4495 }
   4496 .marquee .main-img {
   4497   float: left;
   4498   margin-top: 20px;
   4499   width: 490px;
   4500 }
   4501 .marquee .copy {
   4502   width: 270px;
   4503   float: left;
   4504   margin-top: 30px;
   4505 }
   4506 .distribute-features {
   4507   margin: 0;
   4508 }
   4509 .distribute-features ul {
   4510   margin: 0;
   4511 }
   4512 .distribute-features ul li {
   4513   list-style: none;
   4514   float: left;
   4515   border-top: 1px solid #9C0;
   4516   width: 220px;
   4517   margin-right: 50px;
   4518 }
   4519 .distribute-features ul li.last {
   4520   margin-right: 0px;
   4521 }
   4522 
   4523 .distribute-features .distribute-link li a {
   4524   color:red !important;
   4525 }
   4526 
   4527 .distribute-features .distribute-link li a,
   4528 .distribute-features .distribute-link li a:active {
   4529   color:#555 !important;
   4530 }
   4531 
   4532 .distribute-features .distribute-link li a:hover,
   4533 .distribute-features .distribute-link li a:hover * {
   4534   color:#7AA1B0 !important;
   4535 }
   4536 
   4537 
   4538 /************ DEVELOP TOPIC CONTAINERS ************/
   4539 
   4540 .landing-banner,
   4541 .landing-docs {
   4542   margin:20px 0 0;
   4543 }
   4544 .landing-banner div:first-child,
   4545 .landing-docs div:first-child,
   4546 .landing-docs .col-12 {
   4547   margin-left:0;
   4548   min-height:280px;
   4549 }
   4550 .landing-banner div:last-child,
   4551 .landing-docs div:last-child,
   4552 .landing-docs .col-12 {
   4553   margin-right:0;
   4554 }
   4555 
   4556 .landing-banner h1 {
   4557   margin-top:0;
   4558 }
   4559 .landing-docs {
   4560   clear:left;
   4561   overflow:hidden;
   4562 }
   4563 .landing-docs h3 {
   4564   font-size:14px;
   4565   line-height:21px;
   4566   color:#555;
   4567   text-transform:uppercase;
   4568   border-bottom:1px solid #CCC;
   4569   margin:0 0 20px;
   4570 }
   4571 .landing-docs a {
   4572   color:#333 !important;
   4573 }
   4574 
   4575 .landing-docs a:hover,
   4576 .landing-docs a:hover * {
   4577   color:#7AA1B0 !important
   4578 }
   4579 
   4580 .landing-docs .normal-links a {
   4581   color:#258aaf !important;
   4582 }
   4583 
   4584 .plusone {
   4585   float:right;
   4586 }
   4587 
   4588 
   4589 
   4590 /************* HOME/LANDING PAGE *****************/
   4591 
   4592 .slideshow-home {
   4593   height: 500px;
   4594   width: 940px;
   4595   border-bottom: 1px solid #CCC;
   4596   position: relative;
   4597   margin: 0;
   4598 }
   4599 .slideshow-home .frame {
   4600   width: 940px;
   4601   height: 500px;
   4602 }
   4603 .slideshow-home .content-left {
   4604   float: left;
   4605   text-align: center;
   4606   vertical-align: center;
   4607   margin: 0 0 0 35px;
   4608 }
   4609 .slideshow-home .content-right {
   4610   margin: 80px 0 0 0;
   4611 }
   4612 .slideshow-home .content-right p {
   4613   margin-bottom: 10px;
   4614 }
   4615 .slideshow-home .content-right p:last-child {
   4616   margin-top: 15px;
   4617 }
   4618 .slideshow-home .content-right h1 {
   4619   padding:0;
   4620 }
   4621 .slideshow-home .item {
   4622   height: 500px;
   4623   width: 940px;
   4624 }
   4625 .home-sections {
   4626   padding: 30px 20px 20px;
   4627   margin: 20px 0;
   4628   background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
   4629 }
   4630 .home-sections ul {
   4631   margin: 0;
   4632 }
   4633 .home-sections ul li {
   4634   float: left;
   4635   display: block;
   4636   list-style: none;
   4637   width: 170px;
   4638   height: 35px;
   4639   border: 1px solid #ccc;
   4640   background: white;
   4641   margin-right: 10px;
   4642   border-radius: 1px;
   4643   -webkit-border-radius: 1px;
   4644   -moz-border-radius: 1px;
   4645   box-shadow: 1px 1px 5px #EEE;
   4646   -webkit-box-shadow: 1px 1px 5px #EEE;
   4647   -moz-box-shadow: 1px 1px 5px #EEE;
   4648   background: white;
   4649 }
   4650 .home-sections ul li:hover {
   4651   background: #F9F9F9;
   4652   border: 1px solid #CCC;
   4653 }
   4654 .home-sections ul li a,
   4655 .home-sections ul li a:hover {
   4656   font-weight: bold;
   4657   margin-top: 8px;
   4658   line-height: 18px;
   4659   float: left;
   4660   width: 100%;
   4661   text-align: center;
   4662   color: #09c !important;
   4663 }
   4664 .home-sections ul li a {
   4665   font-weight: bold;
   4666   margin-top: 8px;
   4667   line-height: 18px;
   4668   float: left;
   4669   width:100%;
   4670   text-align:center;
   4671 }
   4672 .home-sections ul li img {
   4673   float: left;
   4674   margin: -8px 0 0 10px;
   4675 }
   4676 .home-sections ul li.last {
   4677   margin-right: 0px;
   4678 }
   4679 .fullpage #footer {
   4680   margin-top: -40px;
   4681 }
   4682