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