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