default.css revision 9d6461dfabc9c76aef7dde4f6cf7a16ac5457bfe
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.sidebox > *:last-child {
1901  margin-bottom:0;
1902}
1903
1904#tb ol,
1905#tb ul,
1906#qv ul {
1907  margin:0 15px 10px 35px;
1908}
1909
1910#qv ol {
1911  list-style:none;
1912  margin:0 15px 15px;
1913  font-size:inherit;
1914  line-height:inherit;
1915}
1916
1917#tb ol ol,
1918#tb ul ul,
1919#qv ol ol,
1920#qv ul ul,
1921.sidebox ol ol,
1922.sidebox ul ul {
1923  margin-bottom:0;
1924}
1925
1926#qv ol ol {
1927  margin:3px 0 3px 15px;
1928}
1929
1930.sidebox p,
1931#qv p,
1932#tb p {
1933  margin: 0 0 10px;
1934}
1935
1936/* related resources blocks in checklists */
1937
1938.rel-resources {
1939  margin:10px 0px;
1940  border:1px solid #ccc;
1941  background-color:rgba(0, 0, 0, 0.027451);
1942  border:1px solid #ccc;
1943  font-size:13px;
1944  color:#6f6f6f;
1945}
1946
1947.rel-resources ul {
1948padding: .5em 1em 0 1em;
1949}
1950
1951.rel-resources a {
1952font-weight:500;
1953}
1954
1955.rel-resources h3 {
1956  margin:4px 15px 0px 15px;
1957  font-size:13px;
1958  font-weight:600;
1959  text-transform:uppercase;
1960}
1961
1962/* --------------------------------------------------------------------------
1963Form
1964*/
1965.article form {
1966    margin: 0 0 20px;
1967}
1968.article form .form-required {
1969    color: #dd4b39;
1970}
1971.article form fieldset {
1972    margin: 0 0 20px;
1973    padding: 0;
1974}
1975.article form legend {
1976    display: block;
1977    line-height: 1.5;
1978    margin: 0;
1979    padding: 0;
1980}
1981/*
1982.article form ol, .article form ul {
1983    margin: 0 0 0 1em;
1984    padding: 0 0 0 1em;
1985}
1986[dir='rtl'] .article form ol, [dir='rtl'] .article form ul {
1987    margin: 0 1em 0 0;
1988    padding: 0 1em 0 0;
1989}
1990.article form ol ul, .article form ul ul, [dir='rtl'] .article form ol ul, [dir='rtl'] .article form
1991ul ul {
1992    list-style: none;
1993    margin: 0;
1994    padding: 0;
1995}
1996.article form li {
1997    margin: 0 0 20px;
1998}
1999.article form li li {
2000    margin: 0 0 5px;
2001}
2002*/
2003.article form label {
2004    display: block;
2005    margin: 0 0 5px;
2006    padding: 0;
2007}
2008.article form input[type='text'], .article form select, .article form textarea, .article form
2009.checkbox-group, .article form .radio-group {
2010    margin-bottom: 15px;
2011}
2012.checkbox-group input {
2013  width: 13px;
2014  height: 13px;
2015  background: #fff;
2016  border: solid 1px #c6c6c6;
2017  float: left;
2018}
2019.article form .checkbox-group, .article form .radio-group {
2020  display: block
2021}
2022.article form select {
2023    border: solid 1px #ebebeb;
2024    border-top-color: #ddd;
2025    -webkit-appearance: none;
2026    background: #f3f3f3 url(../images/arrows-up-down.png) right center no-repeat;
2027    height: 30px;
2028    color: #222;
2029    line-height: normal;
2030    padding: 5px;
2031    width: 130px;
2032}
2033
2034.article form .browse .browse-msg {
2035  font-size: 11.5px;
2036}
2037.article form .browse .button-secondary {
2038  height: auto;
2039  line-height: 25px;
2040  font-size: 11px;
2041  padding: 0 8px;
2042  margin: 0 10px 15px 0;
2043}
2044.article form input[type='text'], .article form textarea {
2045    border: 1px solid #ebebeb;
2046    border-top-color: #dcdcdc;
2047    color: #222;
2048    line-height: normal;
2049    padding: 6px 10px;
2050    width: 300px;
2051}
2052.article form textarea {
2053    height: 150px;
2054}
2055.article form input[type='text']:focus, .article form textarea:focus {
2056    border-color: #33B5E5;
2057    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2058    -o-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2059    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2060    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
2061    outline: 0;
2062}
2063.article form input[disabled], .article form textarea[disabled], .article form label.form-disabled {
2064    color: #999;
2065}
2066.article form input[type='text'][disabled], .article form textarea[disabled] {
2067    background-color: #ebebeb;
2068}
2069form .form-error input[type='text'], form .form-error textarea {
2070    border-color: #dd4b39;
2071  margin-right: 20px;
2072}
2073.aside {
2074    -moz-border-radius: 2px;
2075    -webkit-border-radius: 2px;
2076    border-radius: 2px;
2077    margin: 10px 0;
2078    padding: 20px;
2079  color: #666;
2080    position: relative;
2081  background: #f9f9f9;
2082}
2083/*
2084.aside, .notification, .promo {
2085    -moz-border-radius: 2px;
2086    -webkit-border-radius: 2px;
2087    border-radius: 2px;
2088    margin: 10px 0;
2089    padding: 10px;
2090    position: relative;
2091}
2092.aside>:first-child, .notification>:first-child, .promo>:first-child {
2093    margin-top: 0;
2094}
2095.aside>:last-child, .notification>:last-child, .promo>:last-child {
2096    margin-bottom: 0;
2097}
2098.aside {
2099    background: #f9f9f9;
2100}
2101.notification {
2102    background: #fffbe4;
2103    border-color: #f8f6e6;
2104}
2105.promo {
2106    background: #f6f9ff;
2107    border-color: #eff2f9;
2108}
2109*/
2110
2111/* SDK TOS styles */
2112
2113div.sdk-terms {
2114  white-space: pre-wrap;
2115  word-wrap: break-word;
2116  font-family: inherit;
2117  font-size: inherit;
2118  padding: 10px;
2119  height: 370px;
2120  width: 738px;
2121  border: 1px solid #444;
2122  background: transparent;
2123  overflow:auto;
2124  margin:0 0 10px;
2125}
2126
2127div.sdk-terms.fullsize {
2128  padding: 0;
2129  height: auto;
2130  width: auto;
2131  border:none;
2132}
2133
2134div.sdk-terms h3,
2135div.sdk-terms h2 {
2136  margin:0;
2137}
2138
2139div#sdk-terms-form {
2140  padding:0 0 0 10px;
2141}
2142
2143div#sdk-terms-form input {
2144  display:inline;
2145  margin:4px 4px 4px 0;
2146}
2147
2148
2149/* --------------------------------------------------------------------------
2150Code Style
2151*/
2152pre {
2153  margin:0 0 1em 0;
2154  padding: 1em;
2155  overflow: auto;
2156  border: solid 1px #ddd;
2157  background: #f7f7f7;
2158}
2159.str { color: #800; } /* Code string */
2160.kwd { color: #008; }
2161.typ { color: #606; }
2162.lit { color: #066; }
2163.pun { color: #660; }
2164.pln { color: #000; }
2165.tag { color: #008; }
2166.atn { color: #828; }
2167.atv { color: #800; } /* XML string */
2168.dec { color: #606; }
2169
2170/* --------------------------------------------------------------------------
2171Three-Pane
2172*/
2173/* Package Nav & Classes Nav */
2174.three-pane {
2175  position: relative;
2176  border-top: solid 1px #ebebeb;
2177}
2178#packages-nav .js-pane,
2179#classes-nav .js-pane {
2180  overflow:visible;
2181}
2182#packages-nav {
2183        height:270px;
2184  max-height: inherit;
2185  overflow: hidden;
2186  position: relative;
2187}
2188#classes-nav {
2189  overflow: hidden;
2190  position: relative;
2191}
2192#packages-nav ul, #classes-nav ul {
2193  list-style-type: none;
2194  margin: 10px 0 20px 0;
2195  padding: 0;
2196}
2197#classes-nav li {
2198  font-weight: bold;
2199  margin: 5px 0;
2200}
2201#packages-nav li,
2202#classes-nav li li {
2203  margin: 0;
2204}
2205#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2206#classes-nav li a, #classes-nav li a:active, #classes-nav li a:visited {
2207  padding: 0 0 0 4px;
2208}
2209#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2210#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited,
2211#nav-tree li a, #nav-tree li a:active, #nav-tree li a:visited {
2212  color: #222;
2213  font-weight: normal;
2214}
2215#packages-nav li a, #packages-nav li a:active, #packages-nav li a:visited,
2216#classes-nav li li a, #classes-nav li li a:active, #classes-nav li li a:visited {
2217  display: block;
2218}
2219#packages-nav li.selected a, #packages-nav li.selected a:active, #packages-nav li.selected
2220a:visited,
2221#classes-nav li li.selected a, #classes-nav li li.selected a:active, #classes-nav li li.selected
2222a:visited,
2223#nav-tree li div.selected {
2224    font-weight: 500;
2225    color: #0099cc;
2226    background-color:#fff; }
2227  #packages-nav li.selected ul li a,
2228  #classes-nav li.selected ul li a {
2229  /* don't highlight child items */
2230    color: #555555; }
2231#nav-tree li div.selected a {
2232    font-weight: 500;
2233    color: #0099cc;
2234}
2235#nav-swap {
2236  height:30px;
2237  border-top:1px solid #ccc;
2238}
2239#nav-swap a {
2240  display:inline-block;
2241  height:100%;
2242  color: #222;
2243  font-size: 12px;
2244  padding: 5px 0 5px 5px;
2245}
2246
2247#nav-swap .fullscreen {
2248  float: right;
2249  width: 24px;
2250  height: 24px;
2251  text-indent: -1000em;
2252  padding:0;
2253  margin:3px 5px 0;
2254  background: url(../images/fullscreen.png) no-repeat -24px 0;
2255}
2256#nav-swap .fullscreen.disabled {
2257  background-position: 0 0;
2258}
2259#nav-swap .fullscreen:hover,
2260#nav-swap .fullscreen:focus {
2261  cursor:pointer;
2262}
2263
2264
2265/* nav tree */
2266#side-nav, #devdoc-nav, #swapper,
2267#nav-tree, #tree-list {
2268  overflow:hidden;
2269  margin-left:0;
2270}
2271
2272#nav-tree ul {
2273  list-style:none;
2274  padding:0;
2275  margin:10px 0;
2276}
2277
2278#nav-tree ul li div {
2279  padding:0 0 0 4px;
2280}
2281
2282#side-nav #nav-tree ul li a,
2283#side-nav #nav-tree ul li span.no-children {
2284  padding: 0;
2285  margin: 0;
2286}
2287
2288#nav-tree .plus {
2289  margin: 0 3px 0 0;
2290}
2291
2292#nav-tree ul ul {
2293  list-style: none;
2294  margin: 0;
2295  padding: 0 0 0 0;
2296}
2297
2298#nav-tree ul li {
2299  margin: 0;
2300  padding: 0 0 0 0;
2301  white-space: nowrap;
2302}
2303
2304#nav-tree .children_ul {
2305  padding:0;
2306  margin:0;
2307}
2308#nav-tree .children_ul li div {
2309  padding:0 0 0 10px;
2310}
2311#nav-tree .children_ul .children_ul li div {
2312  padding:0 0 0 20px;
2313}
2314
2315#nav-tree a.nolink {
2316  color: #222;
2317  text-decoration: none;
2318}
2319
2320#nav-tree span.label {
2321  width: 100%;
2322}
2323
2324#nav-tree {
2325  overflow-x: auto;
2326  overflow-y: scroll;
2327  outline:0;
2328}
2329
2330
2331/* Content */
2332#doc-col {
2333  margin-right:0;
2334}
2335#doc-content-container {
2336  margin-left: 291px
2337}
2338#doc-header, #doc-content {
2339  padding: 1em 2em;
2340}
2341#doc-header {
2342  background: #f7f7f7;
2343}
2344#doc-header h1 {
2345  line-height: 0;
2346  margin-bottom: 15px;
2347}
2348#api-info-block {
2349  float: right;
2350  font-weight: bold;
2351}
2352#api-info-block a, #api-info-block a:active, #api-info-block a:visited {
2353  color: #222;
2354}
2355#api-info-block a:hover, #api-info-block a:focus {
2356  color: #33B5E5;
2357}
2358#api-nav-header {
2359  height:19px; /* plus 16px padding = 35; same as #nav li */
2360  font-size:14px;
2361  padding: 8px 0;
2362  margin: 0;
2363  border-bottom: 1px solid #CCC;
2364  background:#e9e9e9;
2365  background: rgba(0, 0, 0, 0.05); /* matches #nav li.expanded */
2366
2367}
2368#api-nav-title {
2369  padding:0 5px;
2370  white-space:nowrap;
2371}
2372
2373#api-level-toggle {
2374  float:right;
2375  padding:0 5px;
2376}
2377
2378#api-level-toggle label {
2379  margin:0;
2380  vertical-align:top;
2381  line-height: 19px;
2382  font-size:13px;
2383  height: 19px;
2384}
2385
2386#api-level-toggle .select-wrapper {
2387  width: 35px;
2388  display: inline-block;
2389  overflow: hidden;
2390}
2391#api-level-toggle select {
2392  border: 0;
2393  appearance:none;
2394  -moz-appearance:none;
2395  -webkit-appearance: none;
2396  background: transparent url(../images/arrows-up-down.png) 23px 5px no-repeat;
2397  color: #222;
2398  height: 19px;
2399  line-height: 19px;
2400  padding: 0;
2401  margin:1px 0 0 0;
2402  width:150%;
2403  font-size:13px;
2404  vertical-align:top;
2405  outline:0;
2406}
2407
2408
2409/* Toggle for revision notes and stuff */
2410div.toggle-content.closed .toggle-content-toggleme {
2411  display:none;
2412}
2413
2414#jd-content img.toggle-content-img {
2415  margin:0 5px 5px 0;
2416}
2417
2418div.toggle-content-toggleme {
2419  padding:0 0 0 15px;
2420}
2421
2422
2423/* API LEVEL FILTERED MEMBERS */
2424
2425.absent,
2426.absent a:link,
2427.absent a:visited,
2428.absent a:hover,
2429.absent * {
2430  color:#bbb !important;
2431  cursor:default !important;
2432  text-decoration:none !important;
2433}
2434#devdoc-nav li.absent.selected,
2435#devdoc-nav li.absent.selected *,
2436#devdoc-nav div.label.absent.selected,
2437#devdoc-nav div.label.absent.selected * {
2438  background-color:#eaeaea !important;
2439}
2440.absent h4.jd-details-title,
2441.absent h4.jd-details-title * {
2442  background-color:#f6f6f6 !important;
2443}
2444.absent img {
2445  opacity: .3;
2446  filter: alpha(opacity=30);
2447  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
2448}
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458/* JQUERY RESIZABLE STYLES */
2459.ui-resizable { position: relative; }
2460.ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; }
2461.ui-resizable .ui-resizable-handle { display: block; border-bottom: 1px solid #e4e4e4; }
2462/*body .ui-resizable-disabled .ui-resizable-handle { display: none; }
2463body .ui-resizable-autohide .ui-resizable-handle { display: none; }*/
2464.ui-resizable-s { cursor: s-resize; height: 10px; width: 100% !important; bottom: -11px; left: 0;
2465border-bottom: solid 1px #ededed;
2466  background: #f7f7f7 url("../images/resizable-s2.png") no-repeat scroll center center; }
2467/*
2468.ui-resizable-e {
2469cursor: e-resize; width: 10px; right: 0; top: 0; height: 100%; border-right: solid
24701px #ededed;background: #f7f7f7 url("../images/resizable-e2.png") no-repeat scroll center center; }
2471*/
2472
2473/* --------------------------------------------------------------------------
2474Lightbox
2475*/
2476.lightbox {
2477  width: 769px;
2478  padding: 1.5em;
2479  margin: 0 auto;
2480  border: solid 1px #dcdcdc;
2481  background: #fff;
2482  -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2483  -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
2484  box-shadow: 1px 1px 5px rgba(0,0,0,0.1)
2485}
2486.lightbox .header {
2487  float: left;
2488  width: 720px;
2489  margin: -10px 20px 10px 0;
2490}
2491.lightbox .close {
2492  float: right;
2493  width: 10px;
2494  height: 10px;
2495  margin: -10px -10px 10px 0;
2496  text-indent: -1000em;
2497  background: url(../images/close.png) no-repeat 0 0;
2498}
2499.lightbox .close:hover, .lightbox .close:focus {
2500  background-position: -10px 0;
2501}
2502
2503/* --------------------------------------------------------------------------
2504Styles for samples project trees and code browsing in resources tab
2505*/
2506
2507#codesample-wrapper {
2508  width:100000px; /* super wide to contain floats, but doesn't cause scroll */
2509  overflow:visible;
2510}
2511pre#codesample-block {
2512  float:left;
2513  overflow:visible;
2514  background:transparent;
2515  border:none;
2516}
2517pre#codesample-block a.number {
2518  display:none;
2519}
2520pre#codesample-block .code-line:hover {
2521  background:#e7e7e7;
2522}
2523pre#codesample-line-numbers {
2524  float:left;
2525  width:2em;
2526  background:transparent;
2527  border:none;
2528  border-right:1px solid #ccc;
2529  padding-left:0;
2530  font-family:monospace;
2531  text-align:right;
2532  -webkit-touch-callout: none;
2533  -webkit-user-select: none;
2534  -khtml-user-select: none;
2535  -moz-user-select: -moz-none;
2536  -ms-user-select: none;
2537  user-select: none;
2538}
2539pre#codesample-line-numbers a {
2540  color:#999;
2541}
2542pre#codesample-line-numbers.hidden {
2543  display:none;
2544}
2545pre#codesample-block span.code-line {
2546  width:100%;
2547  display:inline-block;
2548}
2549
2550.structure-dir {
2551background-image:url(../../assets/images/folder.png);
2552background-repeat:no-repeat;
2553background-position:16px 2px;
2554  margin:.25em 0 0 0;
2555  padding:0 0 0 0;
2556}
2557
2558.structure-toggleme {
2559  margin:0 0 0 3em;
2560  padding:0 0 0 0;
2561  text-decoration:none;
2562}
2563
2564.structure-java{
2565background-image:url(../../assets/images/file-java.png);
2566background-repeat:no-repeat;
2567background-position:0px 2px;
2568  margin:.3em 0 0 0;
2569  padding:.3em 0 .3em 22px;
2570}
2571
2572.structure-file {
2573background-image:url(../../assets/images/file-generic.png);
2574background-repeat:no-repeat;
2575background-position:0px 2px;
2576  margin:.3em 0 0 0;
2577  padding:.3em 0 .3em 22px;
2578}
2579
2580.structure-xml {
2581background-image:url(../../assets/images/file-xml.png);
2582background-repeat:no-repeat;
2583background-position:0px 2px;
2584  margin:.3em 0 0 0;
2585  padding:.3em 0 .25em 22px;
2586}
2587
2588.structure-img {
2589background-image:url(../../assets/images/file-image.png);
2590background-repeat:no-repeat;
2591background-position:0px 2px;
2592  margin:.3em 0 0 0;
2593  padding:.3em 0 .25em 22px;
2594}
2595
2596.structure-manifest {
2597background-image:url(../../assets/images/file-manifest.png);
2598background-repeat:no-repeat;
2599  margin:.0 0 0 1.25em;
2600  padding:0 0 0 22px;
2601  text-decoration:none;
2602}
2603
2604#jd-content .structure-toggle-img {
2605  margin:.5em 0 0 0;
2606padding-right:2.1em;
2607}
2608
2609.dirInfo {
2610  margin-left:2em;
2611}
2612
2613.structure-dir a {
2614  text-decoration:none;
2615}
2616
2617.structure-manifest a {
2618  text-decoration: none;
2619}
2620.structure-file a {
2621  text-decoration: none;
2622}
2623
2624.sampleEmbed {
2625  background-color:rgb(249, 249, 249);
2626}
2627
2628.sampleEmbed ol.lineNumbers {
2629  list-style-type: decimal;
2630  padding-left:1em;
2631}
2632
2633.sampleEmbed ol.lineNumbers li {
2634border-left:1px solid #ddd;
2635border-right:1px solid #ddd;
2636color:gray;
2637background-color:#f7f7f7;
2638margin:0 0 0 24px;
2639padding: 2px 2px 2px 6px;
2640}
2641
2642.sampleEmbed ol.lineNumbers li:hover {
2643background: #efefef;
2644}
2645
2646.samples-nav li a {
2647  overflow: hidden;
2648  text-overflow: ellipsis;
2649  white-space: nowrap;
2650}
2651
2652/* --------------------------------------------------------------------------
2653Styles for raw formatted line numbers (not used with listformatted version)
2654div.sampleLine div.lineNumber {
2655  display: inline;
2656}
2657div.sampleLine div.lineCode {
2658  display: inline;
2659  padding-left:6px;
2660}
2661div.sampleLine {
2662  padding:0;
2663  margin:0;
2664}*/
2665
2666/* --------------------------------------------------------------------------
2667Butterbar
2668*/
2669#butterbar-wrapper {
2670  position:absolute;
2671  top:0;
2672  left:0;
2673  width:100%;
2674}
2675#butterbar {
2676  width:940px;
2677  margin:0 auto;
2678}
2679#butterbar-message {
2680  background-color:#f80;
2681  float:right;
2682  font-size:12px;
2683  font-weight:bold;
2684  padding:0 10px;
2685  border-radius: 0 0 5px 5px;
2686}
2687#butterbar-message a {color:#fff !important}
2688#butterbar-message a:hover {text-decoration:underline;}
2689
2690/* --------------------------------------------------------------------------
2691Misc
2692*/
2693
2694
2695.clearfix:before, .clearfix:after {
2696  content: "";
2697  display: table
2698}
2699.clearfix:after {
2700  clear: both
2701}
2702.clearfix {
2703  *zoom: 1
2704}
2705table.blank th, table.blank td {
2706    border: 0;
2707  background: none
2708}
2709.caption {
2710  margin: 0.5em 0 2em 0;
2711  color: #000;
2712  font-size: 11.5px;
2713}
2714
2715.nolist, .nolist ul, .nolist ol {
2716  list-style:none;
2717  margin-left:0;
2718}
2719#tb .nolist {
2720  margin-left:15px;
2721}
2722
2723dl.xml>dt {
2724  text-transform:uppercase;
2725}
2726dl.xml dl.attr {
2727  margin-top:0;
2728}
2729
2730pre.classic {
2731  background-color:transparent;
2732  border:none;
2733  padding:0;
2734}
2735
2736p.img-caption {
2737  margin: -10px 0 20px;
2738  font-size:13px;
2739  color:#666;
2740}
2741
2742div.figure,
2743div.figure-right {
2744  float:right;
2745  clear:right;
2746  margin:10px 0 0 0;
2747  padding:0 0 0 20px;
2748  /* width must be defined w/ an inline style matching the image width */
2749}
2750
2751div.figure-left {
2752  float:left;
2753  clear:left;
2754  margin:10px 0 0 0;
2755  padding:0 20px 0 0;
2756  /* width must be defined w/ an inline style matching the image width */
2757}
2758
2759img.frame {
2760  border:1px solid #DDD;
2761  padding:4px;
2762}
2763
2764p.table-caption {
2765  margin: 0 0 4px 0;
2766  font-size:13px;
2767  color:#666;
2768}
2769
2770p.code-caption {
2771  margin-bottom: 4px;
2772  font: 12px/1.5 monospace;
2773  color:#666;
2774}
2775
2776div.note,
2777div.caution,
2778div.warning {
2779  margin: 0 0 15px;
2780}
2781
2782p.note, div.note,
2783p.caution, div.caution,
2784p.warning, div.warning {
2785  padding: 0 0 0 10px;
2786  border-left: 4px solid;
2787}
2788
2789p.note, div.note {
2790  border-color: #258AAF;
2791}
2792
2793p.caution, div.caution {
2794  border-color: #FF8800;
2795}
2796
2797p.warning, div.warning {
2798  border-color: #ff4443;
2799}
2800
2801div.note.design {
2802  border-left: 4px solid #33B5E5;
2803}
2804
2805div.note.develop {
2806  border-left: 4px solid #F80;
2807}
2808
2809div.note.distribute {
2810  border-left: 4px solid #9C0;
2811}
2812
2813.note p, .caution p, .warning p {
2814  margin:0 0 5px;
2815}
2816
2817.note p:last-child, .caution p:last-child, .warning p:last-child {
2818  margin-bottom:0;
2819}
2820
2821body.about blockquote {
2822  display:block;
2823  float:right;
2824  width:280px;
2825  font-size:20px;
2826  font-style:italic;
2827  line-height:24px;
2828  color:#33B5E5;
2829  margin:0 0 20px 30px;
2830}
2831
2832div.design-announce p {
2833  margin:0 0 10px;
2834}
2835
2836#devdoc-nav a.totop {
2837  display:block;
2838  top:0;
2839  width:inherit;
2840  background: transparent url(../images/styles/gototop.png) no-repeat scroll 50% 50%;
2841  text-indent:-9999em;
2842}
2843#devdoc-nav a.totop {
2844  position:fixed;
2845  display:none;
2846}
2847#devdoc-nav a.totop:hover {
2848  background-color:#33B5E5;
2849}
2850
2851.content-footer a.totop {
2852  text-transform:uppercase;
2853  line-height:30px;
2854}
2855
2856.expandable {
2857  height:34px;
2858  padding-left:20px;
2859  position:relative;
2860}
2861.expandable:before {
2862  content: '';
2863  background-image: url(../images/styles/disclosure_down.png);
2864  background-repeat:no-repeat;
2865  background-position: -12px -9px;
2866  width: 20px;
2867  height: 20px;
2868  display: inline-block;
2869  position: absolute;
2870  top: 0;
2871  left: 0; }
2872}
2873.expandable.expanded:before {
2874  background-image: url(../images/styles/disclosure_up.png);
2875}
2876
2877/* notice box for cross links between Design/Develop docs */
2878a.notice-developers-video,
2879a.notice-developers,
2880a.notice-designers-video,
2881a.notice-designers {
2882  float:right;
2883  clear:right;
2884  width:238px;
2885  min-height:50px;
2886  margin:0 0 20px 20px;
2887  border:1px solid #ddd;
2888}
2889a.notice-developers-video.wide,
2890a.notice-developers.wide,
2891a.notice-designers-video.wide,
2892a.notice-designers.wide {
2893  width:278px;
2894}
2895a.notice-developers-video div,
2896a.notice-developers div,
2897a.notice-designers-video div,
2898a.notice-designers div {
2899  min-height:40px;
2900  background:url('../images/styles/notice-developers@2x.png') no-repeat 10px 10px;
2901  background-size:40px 40px;
2902  padding:10px 10px 10px 60px;
2903}
2904a.notice-designers div {
2905  background:url('../images/styles/notice-designers@2x.png') no-repeat 10px 10px;
2906  background-size:40px 40px;
2907}
2908a.notice-designers-video div {
2909  background:url('../images/styles/notice-designers-video@2x.png') no-repeat 10px 10px;
2910  background-size:40px 40px;
2911}
2912a.notice-developers-video div {
2913  background:url('../images/styles/notice-developers-video@2x.png') no-repeat 10px 10px;
2914  background-size:40px 40px;
2915}
2916a.notice-developers-video:hover,
2917a.notice-developers:hover,
2918a.notice-designers-video:hover,
2919a.notice-designers:hover {
2920  background:#eee;
2921}
2922a.notice-developers-video h3,
2923a.notice-developers h3,
2924a.notice-designers-video h3,
2925a.notice-designers h3 {
2926  font-size:13px;
2927  line-height:18px;
2928  font-weight:bold;
2929  text-transform:uppercase;
2930  color:#000 !important;
2931  margin:0 0 1px;
2932}
2933a.notice-developers-video p,
2934a.notice-developers p,
2935a.notice-designers-video p,
2936a.notice-designers p {
2937  margin:0;
2938  line-height:14px;
2939}
2940a.notice-developers-video.left,
2941a.notice-developers.left,
2942a.notice-designers-video.left,
2943a.notice-designers.left {
2944  margin-left:0;
2945  float:left;
2946}
2947
2948
2949/* hide nested list items; companion to hideNestedLists() */
2950.hide-nested li ol,
2951.hide-nested li ul {
2952  display:none;
2953}
2954
2955a.header-toggle {
2956  display:block;
2957  float:right;
2958  text-transform:uppercase;
2959  font-size:.8em !important;
2960  font-weight:normal;
2961  margin-top:2px;
2962}
2963
2964
2965/* -----------------------------------------------
2966good/bad example containers
2967*/
2968
2969div.example-block {
2970  background-repeat: no-repeat;
2971  background-position:10px 8px;
2972  background-color:#ccc;
2973  padding:4px;
2974  margin:.8em auto 1.5em 2em;
2975  width:260px;
2976  float:right;
2977}
2978/* red container */
2979.example-block.bad {
2980  background-image: url(/images/example-bad.png);
2981  background-color:#f4cccc;
2982}
2983/* green container */
2984.example-block.good {
2985  background-image: url(/images/example-good.png);
2986  background-color:#d9ead3;
2987}
2988/* container heading div */
2989#jd-content .example-block .heading {
2990  font-weight:bold;
2991  margin:6px 0 9px 36px;
2992  padding:6px auto;
2993}
2994/* container image (if any) */
2995#jd-content .example-block img {
2996  margin:0;
2997  padding:0px;
2998}
2999
3000.example-block table {
3001  margin:0;
3002}
3003
3004/* -----------------------------------------------
3005Dialog box for popup messages
3006*/
3007
3008div.dialog {
3009  height:0;
3010  margin:0 auto;
3011}
3012
3013div.dialog>div {
3014  z-index:99;
3015  position:fixed;
3016  margin:70px 0;
3017  width: 391px;
3018  height: 200px;
3019  background: #F7F7F7;
3020-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
3021-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
3022box-shadow: 0 0 15px rgba(0,0,0,0.5);
3023}
3024/* IE6 can't position fixed */
3025* html div.dialog div { position:absolute; }
3026
3027
3028div#deprecatedSticker {
3029  display:none;
3030  z-index:99;
3031  position:fixed;
3032  right:15px;
3033  top:114px;
3034  margin:0;
3035  padding:1em;
3036  background:#FFF;
3037  border:1px solid #dddd00;
3038  box-shadow:-5px 5px 10px #ccc;
3039  -moz-box-shadow:-5px 5px 10px #ccc;
3040  -webkit-box-shadow:-5px 5px 10px #ccc;
3041}
3042
3043div#naMessage {
3044  display:none;
3045  width:555px;
3046  height:0;
3047  margin:0 auto;
3048}
3049
3050div#naMessage div {
3051  z-index:99;
3052  width:450px;
3053  position:fixed;
3054  margin:50px 0;
3055  padding:4em 4em 3em;
3056  background:#FFF;
3057  border:1px solid #999;
3058  box-shadow:-10px 10px 40px #888;
3059  -moz-box-shadow:-10px 10px 40px #888;
3060  -webkit-box-shadow:-10px 10px 40px #888;
3061}
3062/* IE6 can't position fixed */
3063* html div#naMessage div { position:absolute; }
3064
3065div#naMessage strong {
3066  font-size:1.1em;
3067}
3068
3069
3070/* --------------------------------------------------------------------------
3071Slideshow Controls & Next/Prev
3072*/
3073.slideshow-next, .slideshow-prev {
3074  width: 20px;
3075  height: 36px;
3076  text-indent: -1000em;
3077}
3078.slideshow-container {
3079  margin: 2em 0;
3080}
3081.slideshow-container:before, .slideshow-container:after {
3082  content: "";
3083  display: table;
3084  clear: both;
3085}
3086a.slideshow-next, a.slideshow-next:visited {
3087
3088  float: right;
3089
3090  background: url(../images/arrow-right.png) no-repeat 0 0
3091
3092}
3093
3094a.slideshow-prev, a.slideshow-prev:visited {
3095
3096  float: left;
3097
3098  background: url(../images/arrow-left.png) no-repeat 0 0
3099
3100}
3101
3102.slideshow-next:hover, .slideshow-prev:hover, .slideshow-next:focus, .slideshow-prev:focus {
3103
3104  background-position: 0 -36px
3105
3106}
3107
3108.slideshow-next:active, .slideshow-prev:active {
3109
3110  background-position: 0 -72px
3111
3112}
3113.slideshow-nav {
3114  width: 74px;
3115  margin: 0 auto;
3116}
3117.slideshow-nav a, .slideshow-nav a:visited {
3118  display: inline-block;
3119  width: 12px;
3120  height: 12px;
3121  margin: 0 2px 20px 2px;
3122  background: #ccc;
3123  -webkit-border-radius: 50%;
3124  -moz-border-radius: 50%;
3125  border-radius: 50%;
3126}
3127.slideshow-nav a:hover, .slideshow-nav a:focus {
3128
3129  background: #33B5E5
3130}
3131
3132.slideshow-nav a:active {
3133
3134  background: #1e799a;
3135  background: #ebebeb;
3136  -webkit-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3137  -moz-box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3138  box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, .05);
3139}
3140.slideshow-nav a.active, .slideshow-nav a.active:active, .slideshow-nav a.active:visited {
3141  background: #33B5E5
3142}
3143/* --------------------------------------------------------------------------
3144Tabs
3145*/
3146ul.tabs {
3147  padding: 0;
3148  margin: 2em 0 0 0;
3149}
3150ul.tabs:before, ul.tabs:after {
3151  content: "";
3152  display: table;
3153  clear: both;
3154}
3155ul.tabs li {
3156  list-style-type: none;
3157  float: left;
3158}
3159ul.tabs li a, ul.tabs li a:active, ul.tabs li a:visited {
3160  display: block;
3161  height: 36px;
3162  line-height: 36px;
3163  padding: 0 15px;
3164  margin-right: 2px;
3165  color: #222;
3166  -moz-border-radius-topleft: 2px;
3167  -moz-border-radius-topright: 2px;
3168  -moz-border-radius-bottomright: px;
3169  -moz-border-radius-bottomleft: px;
3170  -webkit-border-radius: 2px 2px px px;
3171  border-radius: 2px 2px px px;
3172  border-top: solid 1px #ebebeb;
3173  border-left: solid 1px #ebebeb;
3174  border-right: solid 1px #ebebeb;
3175  background-color: #fff;
3176    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fafafa));
3177    background-image: -webkit-linear-gradient(top, #ffffff, #fafafa);
3178    background-image: -moz-linear-gradient(top, #ffffff, #fafafa);
3179    background-image: -ms-linear-gradient(top, #ffffff, #fafafa);
3180    background-image: -o-linear-gradient(top, #ffffff, #fafafa);
3181    background-image: linear-gradient(top, #ffffff, #fafafa);
3182    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',
3183EndColorStr='#fafafa');
3184}
3185ul.tabs li a:hover {
3186  color: #33B5E5;
3187}
3188ul.tabs li a.selected {
3189  height: 37px;
3190  color: #33B5E5;
3191  background-color: #f7f7f7;
3192  background-image: none;
3193  border-color: #ddd;
3194}
3195.tab-content {
3196  padding: 1.2em;
3197  margin: -1px 0 2em 0;
3198  -webkit-border-radius: 2px;
3199    -moz-border-radius: 2px;
3200    border-radius: 2px;
3201  border: solid 1px #ddd;
3202  background: #f7f7f7;
3203}
3204/* --------------------------------------------------------------------------
3205Feature Boxes
3206*/
3207.feature-box {
3208  width: 291px;
3209  height: 200px;
3210  position: relative;
3211  background: #F7F7F7;
3212}
3213.box-border .top, .box-border .bottom, .box-border .left, .box-border .right {
3214  z-index: 100;
3215  position: absolute;
3216  background-color: #aaa;
3217}
3218.box-border .top, .box-border .bottom {
3219  width: 291px;
3220  height: 1px;
3221}
3222.dialog .box-border .top,
3223.dialog .box-border .bottom { width:391px; }
3224
3225.box-border .left, .box-border .right {
3226  width: 1px;
3227  height: 8px;
3228}
3229.box-border .top { top: 0; left: 0 }
3230.box-border .top .left { top: 1px; left: 0 }
3231.box-border .top .right { top: 1px; right: 0 }
3232.box-border .bottom .left { top: -8px; left: 0 }
3233.box-border .bottom { top: 200px; left: 0 }
3234.box-border .bottom .right { top: -8px; right: 0 }
3235
3236.feature-box h4,
3237.dialog h4 {
3238    margin: 15px 18px 10px;
3239    padding:0;
3240}
3241
3242.feature-box p,
3243.dialog p {
3244    margin: 10px 18px;
3245    padding:0;
3246}
3247.feature-box .link,
3248.dialog .link {
3249    border-top: 1px solid #dedede;
3250    bottom: 0;
3251    position: absolute;
3252    width: inherit;
3253}
3254.feature-box a, .feature-box h4,
3255.dialog a, .dialog h4 {
3256    -webkit-transition: color .4s ease;
3257    -moz-transition: color .4s ease;
3258    -o-transition: color .4s ease;
3259    transition: color .4s ease;
3260}
3261.feature-box:hover {
3262  cursor: pointer;
3263}
3264.feature-box:hover .box-border .top, .feature-box:hover .box-border .bottom, .feature-box:hover
3265.left, .feature-box:hover .right {
3266  background-color: #33B5E5;
3267}
3268.feature-box:hover h4, .feature-box:hover a {
3269  color: #33B5E5;
3270}
3271/* --------------------------------------------------------------------------
3272Page-Specific Styles
3273*/
3274.colors {
3275  position: relative;
3276  float: left;
3277  width: 92px;
3278  margin: 40px 0 20px;
3279}
3280.colors div {
3281  color: #fff;
3282  font-size: 11.5px;
3283  width: 82px;
3284  height: 82px;
3285  margin-top:-30px;
3286  line-height: 82px;
3287  text-align: center;
3288  border: solid 5px #fff;
3289  -webkit-border-radius: 50%;
3290  -moz-border-radius: 50%;
3291  border-radius: 50%;
3292}
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307/* ########### REFERENCE DOCS ################## */
3308
3309#packages-nav h2,
3310#classes-nav h2 {
3311  font-size:18px;
3312  margin:0;
3313  padding:0 0 0 4px;
3314}
3315
3316#jd-header {
3317  padding: 0 0 5px;
3318  margin: 20px 0 10px;
3319  font-size:13px;
3320  border-bottom:solid 1px #ccc;
3321}
3322
3323#jd-header h1 {
3324  margin:0;
3325  padding:0;
3326}
3327
3328/* page-top-right container for reference pages (holds
3329links to summary tables) */
3330#api-info-block {
3331  font-size:13px;
3332  margin:20px 0 0;
3333  padding:0 10px 6px;
3334  font-weight:normal;
3335  float:right;
3336  text-align:right;
3337  color:#999;
3338  max-width:70%;
3339}
3340
3341#api-info-block div.api-level {
3342  font-weight:bold;
3343  font-size:inherit;
3344  float:none;
3345  color:#222;
3346  padding:0;
3347  margin:0;
3348}
3349
3350/* inheritance table */
3351.jd-inheritance-table {
3352  border-spacing:0;
3353  margin:0;
3354  padding:0;
3355  font-size:13px;
3356  background-color:transparent;
3357}
3358.jd-inheritance-table tr td {
3359  border: none;
3360  margin: 0;
3361  padding: 0;
3362  background-color:transparent;
3363}
3364.jd-inheritance-table .jd-inheritance-space {
3365  font-weight:bold;
3366  width:1em;
3367}
3368.jd-inheritance-table .jd-inheritance-interface-cell {
3369  padding-left: 17px;
3370}
3371
3372
3373
3374.jd-sumtable a {
3375  text-decoration:none;
3376}
3377
3378.jd-sumtable a:hover {
3379  text-decoration:underline;
3380}
3381
3382/* the link inside a sumtable for "Show All/Hide All" */
3383.toggle-all {
3384  display:block;
3385  float:right;
3386  font-weight:normal;
3387  font-size:0.9em;
3388}
3389
3390/* adjustments for in/direct subclasses tables */
3391.jd-sumtable.jd-sumtable-subclasses {
3392  margin: 1em 0 0 0;
3393  max-width:968px;
3394  background-color:transparent;
3395  font-size:13px;
3396}
3397
3398/* extra space between end of method name and open-paren */
3399.sympad {
3400  margin-right: 2px;
3401}
3402
3403/* right alignment for the return type in sumtable */
3404.jd-sumtable .jd-typecol {
3405  text-align:right;
3406}
3407
3408/* adjustments for the expando table-in-table */
3409.jd-sumtable-expando {
3410  margin:.5em 0;
3411  padding:0;
3412}
3413
3414/* a div that holds a short description */
3415.jd-descrdiv {
3416  padding:3px 1em 0 1em;
3417  margin:0;
3418  border:0;
3419}
3420
3421#jd-content img.jd-expando-trigger-img {
3422  padding:0 4px 4px 0;
3423  margin:0;
3424}
3425
3426.jd-sumtable-subclasses div#subclasses-direct,
3427.jd-sumtable-subclasses div#subclasses-indirect {
3428  margin:0 0 0 13px;
3429}
3430
3431
3432
3433/********* MEMBER REF *************/
3434
3435
3436.jd-details {
3437/*  border:1px solid #669999;
3438  padding:4px; */
3439  margin:0 0 1em;
3440}
3441
3442/* API reference: a container for the
3443.tagdata blocks that make up the detailed
3444description */
3445.jd-details-descr {
3446  padding:0;
3447  margin:.5em .25em;
3448}
3449
3450/* API reference: a block containing
3451a detailed description, a params table,
3452seealso list, etc */
3453.jd-tagdata {
3454  margin:.5em 1em;
3455}
3456
3457.jd-tagdata p {
3458  margin:0 0 1em 1em;
3459}
3460
3461/* API reference: adjustments to
3462the detailed description block */
3463.jd-tagdescr {
3464  margin:.25em 0 .75em 0;
3465}
3466
3467.jd-tagdescr ol,
3468.jd-tagdescr ul {
3469  margin:0 2.5em;
3470  padding:0;
3471}
3472
3473.jd-tagdescr table,
3474.jd-tagdescr img {
3475  margin:.25em 1em;
3476}
3477
3478.jd-tagdescr li {
3479margin:0 0 .25em 0;
3480padding:0;
3481}
3482
3483/* API reference: heading marking
3484the details section for constants,
3485attrs, methods, etc. */
3486h4.jd-details-title {
3487  font-size:1.15em;
3488  background-color: #E2E2E2;
3489  margin:1.5em 0 .6em;
3490  padding:3px 95px 3px 3px; /* room for api-level */
3491}
3492body.google h4.jd-details-title {
3493  background-color: #FFF;
3494  padding-top:5px;
3495  border-top: 1px solid #ccc;
3496}
3497body.google table.jd-sumtable th {
3498  background-color: #FFF;
3499  color:#000;
3500}
3501
3502h4.jd-tagtitle {
3503  margin:0;
3504}
3505
3506h4 .normal {
3507  font-weight:normal;
3508}
3509
3510/* API reference: heading for "Parameters", "See Also", etc.,
3511in details sections */
3512h5.jd-tagtitle {
3513  margin:0 0 .25em 0;
3514  font-size:1em;
3515}
3516
3517.jd-tagtable {
3518  margin:0;
3519  background-color:transparent;
3520  width:auto;
3521}
3522
3523.jd-tagtable td,
3524.jd-tagtable th {
3525  border:none;
3526  background-color:#fff;
3527  vertical-align:top;
3528  font-weight:normal;
3529  padding:2px 10px;
3530}
3531
3532.jd-tagtable th {
3533  font-style:italic;
3534}
3535
3536/* Inline api level indicator for methods */
3537div.api-level {
3538  font-size:.8em;
3539  font-weight:normal;
3540  color:#999;
3541  float:right;
3542  padding:0 8px 0;
3543  margin-top:-30px;
3544}
3545
3546table.jd-tagtable td,
3547table.jd-tagtable th {
3548  background-color:transparent;
3549}
3550
3551table.jd-tagtable th {
3552  color:inherit;
3553}
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577/* SEARCH FILTER */
3578
3579.menu-container {
3580  position:relative;
3581}
3582#search_autocomplete {
3583  font-weight:normal;
3584}
3585
3586.search_filtered_wrapper.reference {
3587  width: 193px;
3588  float: right;
3589}
3590.search_filtered_wrapper.docs {
3591  width:875px;
3592  float: left;
3593  position:absolute;
3594  top:26px;
3595  right:66px;
3596}
3597.suggest-card {
3598  position:relative;
3599  width:170px;
3600  min-height:90px;
3601  padding:5px;
3602  border: solid 1px #C5C5C5;
3603  background: white;
3604  top: 15px;
3605  margin-right:-5px;
3606  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
3607  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3608  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3609}
3610.suggest-card.reference {
3611  position:absolute;
3612  z-index:999;
3613  min-width:171px; /* +padding and border makes this match input width */
3614  min-height:93px; /* add 3px because this has 1 not 4px top border */
3615  width:auto;
3616  top:41px;
3617  margin:0;
3618}
3619.suggest-card.develop {
3620  z-index:997;
3621  border-top: solid 4px #F80;
3622  float:right;
3623}
3624.suggest-card.design {
3625  z-index:996;
3626  border-top: solid 4px #33b5e5;
3627  float:right;
3628}
3629.suggest-card.distribute {
3630  z-index:995;
3631  border-top: solid 4px #9C0;
3632  float:right;
3633}
3634.child-card {
3635  width:100%;
3636}
3637.suggest-card.dummy {
3638  width:172px;
3639  float:right;
3640  border:0;
3641  background:transparent;
3642  -moz-box-shadow: none;
3643  -webkit-box-shadow: none;
3644  box-shadow: none;
3645}
3646
3647ul.search_filtered {
3648  min-width:100%;
3649  list-style: none;
3650  margin: 0 0 5px;
3651  padding: 0;
3652}
3653.search_filtered .jd-selected {
3654  background:#efefef;
3655  cursor:pointer;
3656}
3657.search_filtered .jd-selected,
3658.search_filtered .jd-selected a {
3659    color:#09C !important;
3660}
3661
3662.no-display {
3663  display: none;
3664}
3665
3666.search_filtered li.jd-autocomplete {
3667  font-size: 0.81em;
3668  border: none;
3669  margin: 0 0 2px;
3670  padding: 0;
3671  line-height:1.5em;
3672}
3673
3674.search_filtered li a {
3675  padding:0 5px;
3676  color:#222 !important;
3677  display:inline-block;
3678  line-height:12px;
3679}
3680
3681.search_filtered li.header {
3682  font-weight:bold;
3683  color:#444;
3684  border: none;
3685  margin: 8px 0 2px;
3686  padding:1px 5px;
3687  line-height:1.5em;
3688}
3689.search_filtered li.header.small {
3690  font-size:0.85em;
3691}
3692
3693.suggest-card.reference
3694.search_filtered li.header {
3695  color:#aaa;
3696  font-size: 0.81em;
3697}
3698
3699.search_filtered li.header:first-child {
3700  margin: 0 0 2px;
3701}
3702
3703.show-item {
3704  display: table-row;
3705}
3706.hide-item {
3707  display: hidden;
3708}
3709
3710
3711
3712
3713
3714/* SEARCH RESULTS */
3715
3716
3717#leftSearchControl .gsc-twiddle {
3718  background-image : none;
3719}
3720
3721#leftSearchControl td, #searchForm td {
3722  border: 0px solid #000;
3723  padding:0;
3724}
3725
3726#leftSearchControl .gsc-resultsHeader .gsc-title {
3727  padding-left : 0px;
3728  font-weight : bold;
3729  font-size : 13px;
3730  color:#006699;
3731  display : none;
3732}
3733
3734#leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
3735  display : none;
3736}
3737
3738#leftSearchControl .gsc-resultsRoot {
3739  padding-top : 6px;
3740}
3741
3742#leftSearchControl div.gs-visibleUrl-long {
3743  display : block;
3744  color:#006699;
3745}
3746
3747#leftSearchControl .gsc-webResult {
3748  padding:0 0 20px 0;
3749}
3750
3751.gsc-webResult div.gs-visibleUrl-short,
3752table.gsc-branding,
3753.gsc-clear-button {
3754  display : none;
3755}
3756
3757.gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
3758.gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
3759#leftSearchControl a,
3760#leftSearchControl a b {
3761  color:#006699;
3762}
3763
3764.gsc-resultsHeader {
3765  display: none;
3766}
3767
3768/* Disable built in search forms */
3769.gsc-control form.gsc-search-box {
3770  display : none;
3771}
3772table.gsc-search-box {
3773  margin:6px 0 0 0;
3774  border-collapse:collapse;
3775}
3776
3777td.gsc-input {
3778  padding:0 2px;
3779  width:100%;
3780  vertical-align:middle;
3781}
3782
3783input.gsc-input {
3784  border:1px solid #BCCDF0;
3785  width:99%;
3786  padding-left:2px;
3787  font-size:.95em;
3788}
3789
3790td.gsc-search-button {
3791  text-align: right;
3792  padding:0;
3793  vertical-align:top;
3794}
3795
3796
3797#searchResults {
3798  overflow:hidden; /* because the repositioned page links makes the section think it needs to scroll
3799(it doesn't) */
3800  height:auto;
3801}
3802
3803#searchResults .gsc-control {
3804  position:relative;
3805  width:auto;
3806  padding:0 0 10px;
3807}
3808
3809#searchResults .gsc-tabsArea {
3810  position:relative;
3811  white-space:nowrap;
3812  float:left;
3813  width:200px;
3814}
3815
3816#searchResults .gsc-above-wrapper-area {
3817  display:none;
3818}
3819
3820#searchResults .gsc-resultsbox-visible {
3821  float:left;
3822  width:720px;
3823  margin-left:20px;
3824}
3825
3826#searchResults .gsc-tabHeader {
3827  padding: 3px 6px;
3828  position:relative;
3829  width:auto;
3830  display:block;
3831}
3832
3833#searchResults h2#searchTitle {
3834  padding:0;
3835  margin:5px 0;
3836  border:none;
3837}
3838
3839#searchResults h2#searchTitle em {
3840  font-style:normal;
3841  color:#33B5E5;
3842}
3843
3844#searchResults .gsc-table-result {
3845  margin:5px 0 10px 0;
3846  background-color:transparent;
3847}
3848#searchResults .gs-web-image-box, .gs-promotion-image-box {
3849  width:120px;
3850}
3851#searchResults .gs-web-image-box img.gs-image, .gs-promotion-image-box img.gs-promotion-image {
3852  max-width:120px;
3853}
3854
3855#searchResults .gsc-table-result .gsc-thumbnail {
3856  padding:0 20px 0 0;
3857}
3858
3859#searchResults td {
3860  background-color:transparent;
3861}
3862
3863#searchResults .gsc-expansionArea {
3864  position:relative;
3865}
3866#searchResults .gsc-tabsArea .gsc-cursor-box {
3867  width:200px;
3868  padding:20px 0 0 1px;
3869}
3870#searchResults .gsc-cursor-page {
3871  display:inline-block;
3872  float:left;
3873  margin:-1px 0 0 -1px;
3874  padding:0;
3875  height:27px;
3876  width:27px;
3877  text-align:center;
3878  line-height:2;
3879}
3880
3881#searchResults .gsc-tabHeader.gsc-tabhInactive,
3882#searchResults .gsc-cursor-page {
3883  text-decoration:none;
3884  color:#258AAF;
3885  border: solid 1px #DADADA;
3886}
3887
3888#searchResults .gsc-tabHeader.gsc-tabhInactive:hover,
3889#searchResults .gsc-cursor-page:hover {
3890  border-color: #DBDBDB;
3891  background-color: #F3F3F3;
3892  background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#ECECEC));
3893  background-image: -webkit-linear-gradient(top, #F9F9F9, #ECECEC);
3894  background-image: -moz-linear-gradient(top, #F9F9F9, #ECECEC);
3895  background-image: -ms-linear-gradient(top, #F9F9F9, #ECECEC);
3896  background-image: -o-linear-gradient(top, #F9F9F9, #ECECEC);
3897  background-image: linear-gradient(top, #F9F9F9, #ECECEC);
3898  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9',
3899EndColorStr='#ececec');
3900  color: #33B5E5;
3901}
3902
3903#searchResults .gsc-tabHeader.gsc-tabhActive,
3904#searchResults .gsc-tabHeader.gsc-tabhActive:hover,
3905#searchResults .gsc-cursor-page.gsc-cursor-current-page,
3906#searchResults .gsc-cursor-page.gsc-cursor-current-page:hover {
3907  color:#fff;
3908  background-color: #09C;
3909  background-image: -webkit-gradient(linear, left top, left bottom, from(#2FADDB), to(#09C));
3910  background-image: -webkit-linear-gradient(top, #2FADDB, #09C);
3911  background-image: -moz-linear-gradient(top, #2FADDB, #09C);
3912  background-image: -ms-linear-gradient(top, #2FADDB, #09C);
3913  background-image: -o-linear-gradient(top, #2FADDB, #09C);
3914  background-image: linear-gradient(top, #2FADDB, #09C);
3915  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2faddb', EndColorStr='#09c');
3916  border: 1px solid #3990AB;
3917  z-index:100;
3918}
3919
3920}
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934/*********** PREVIOUSLY dac-styles.css ***************/
3935
3936
3937#header {
3938  border-bottom:0;
3939}
3940
3941#header .wrap {
3942  max-width:940px;
3943  height:41px;
3944  border-bottom:1px solid;
3945  border-color: #ccc;
3946  position:relative;
3947}
3948
3949.about #header .wrap {
3950  border-color: #9933CC;
3951}
3952
3953.design #header .wrap {
3954  border-color: #33b5e5;
3955}
3956
3957.develop #header .wrap {
3958  border-color: #F80;
3959}
3960
3961.distribute #header .wrap {
3962  border-color: #9C0;
3963}
3964
3965.logo a {
3966  width:123px;
3967  float:left;
3968}
3969
3970#header .logo {
3971  margin-top: -6px;
3972  margin-left: 0px;
3973  margin-bottom:0px;
3974  width: 160px;
3975  padding-right:10px;
3976}
3977
3978.search {
3979  height:25px;
3980  margin-top: -3px;
3981  margin-bottom: 0px;
3982}
3983
3984
3985
3986/* Quicknav */
3987.btn-quicknav {
3988  width:20px;
3989  height:28px;
3990  float:left;
3991  margin-left:6px;
3992  padding-right:10px;
3993  position:relative;
3994  cursor:pointer;
3995  border-right:1px solid #CCC;
3996}
3997
3998.btn-quicknav a {
3999  zoom:1;
4000  position:absolute;
4001  top:13px;
4002  left:5px;
4003  display:block;
4004  text-indent:-9999em;
4005  width:10px;
4006  height:5px;
4007  background:url(../images/quicknav_arrow.png) no-repeat;
4008}
4009
4010.btn-quicknav a.arrow-active {
4011  background-position: 0 -5px;
4012  display:none;
4013}
4014
4015#header-wrap.quicknav a.arrow-inactive {
4016  display:none;
4017}
4018
4019.btn-quicknav.active a.arrow-active {
4020  display:block;
4021}
4022
4023.nav-x li {
4024  display:block;
4025  float:left;
4026  margin-right:45px;
4027  -webkit-transition: all 0.25s linear;
4028      -moz-transition: all 0.25s linear;
4029       -ms-transition: all 0.25s linear;
4030        -o-transition: all 0.25s linear;
4031           transition: all 0.25s linear;
4032}
4033
4034#header-wrap.quicknav .nav-x li {
4035  min-width:160px;
4036  margin-right:20px;
4037}
4038
4039#header-wrap.quicknav li.last {
4040  margin-right:0px;
4041}
4042
4043#quicknav {
4044 float:none;
4045 clear:both;
4046 margin-left:180px;
4047 margin-top:-30px;
4048 display:none;
4049 overflow:hidden;
4050}
4051
4052#header-wrap.quicknav #quicknav {
4053
4054}
4055
4056#quicknav ul {
4057  margin:10px 0;
4058  padding:0;
4059}
4060
4061#quicknav ul li.design {
4062  border-top:1px solid #33b5e5;
4063}
4064
4065#quicknav ul li.develop {
4066  border-top:1px solid #FF8800;
4067}
4068
4069#quicknav ul li.distribute {
4070  border-top:1px solid #99cc00;
4071}
4072
4073#quicknav ul li {
4074  display:block;
4075  float:left;
4076  margin:0 20px 0 0;
4077  min-width:140px;
4078}
4079
4080#quicknav ul li.last {
4081  margin-right:0px;
4082}
4083
4084#quicknav ul li ul li {
4085  float:none;
4086}
4087
4088#quicknav ul li ul li a {
4089  color:#222;
4090}
4091
4092#quicknav ul li li ul,
4093#quicknav ul li li ul li {
4094  margin:0;
4095}
4096
4097#quicknav ul li li ul li:before {
4098  content:"\21B3";
4099}
4100
4101#header-wrap {
4102   -webkit-transition: all 0.25s ease-out;
4103      -moz-transition: all 0.25s ease-out;
4104       -ms-transition: all 0.25s ease-out;
4105        -o-transition: all 0.25s ease-out;
4106           transition: all 0.25s ease-out;
4107
4108}
4109
4110#header-wrap.quicknav {
4111  height:196px;
4112
4113}
4114
4115/* SEARCH AND MORE */
4116.search {
4117  position: absolute;
4118  width: 50px;
4119  height:28px;
4120  display: block;
4121  margin-top:-3px;
4122  margin-bottom:7px;
4123  overflow:hidden;
4124  z-index:100;
4125  right:54px;
4126  -webkit-transition: width 0.4s ease;
4127     -moz-transition: width 0.4s ease;
4128       -o-transition: width 0.4s ease;
4129          transition: width 0.4s ease;
4130}
4131
4132.search #search-btn {
4133  width:50px;
4134  height:28px;
4135  background:url(../images/icon_search.png) no-repeat;
4136  float:left;
4137}
4138
4139.search-inner {
4140  width:245px;
4141}
4142
4143.search:hover, .search.active {
4144  width:245px;
4145}
4146
4147.search .bottom, .search .left, .search .right {
4148  position: absolute;
4149  background-color: #a2a2a2
4150}
4151
4152.search .bottom {
4153  width: 214px;
4154  height: 1px;
4155  top: 24px;
4156  left: 0
4157}
4158
4159.search .left, .search .right {
4160  height: 5px;
4161  width: 1px
4162}
4163
4164.search .left {
4165  top: 22px;
4166  left: 56px;
4167  background-color:#CCC;
4168}
4169
4170.search .right {
4171  top: 22px;
4172  left: 238px;
4173  background-color:#CCC;
4174}
4175
4176.search form {
4177  margin-top: 2px;
4178  width: 162px;
4179  float:left;
4180}
4181
4182.search form input {
4183  color: #2f2f2f;
4184  font-size: 0.95em;
4185  width: 178px;
4186  border: none;
4187  margin-left: 6px;
4188  z-index: 1500;
4189  position: relative;
4190  background-color: transparent;
4191  border-bottom:1px solid #CCC;
4192  padding:0 0 0 4px;
4193  outline:none;
4194  height:24px;
4195}
4196
4197.search:hover form input {
4198  border-bottom:1px solid #33B5E5;
4199}
4200
4201.search:hover .bottom, .search:hover .left, .search:hover .right {
4202  background-color: #33b5e5;
4203}
4204
4205.search:hover #search-btn {
4206  background-position: 0 -28px
4207}
4208
4209.search form input:focus {
4210  color: #222;
4211  font-weight: bold
4212}
4213
4214.moremenu {
4215  float: right;
4216  position: relative;
4217  width: 50px;
4218  height:28px;
4219  display: block;
4220  margin-top:-3px;
4221  margin-bottom:7px;
4222  overflow:hidden;
4223  -webkit-transition: width 0.25s ease;
4224     -moz-transition: width 0.25s ease;
4225       -o-transition: width 0.25s ease;
4226          transition: width 0.25s ease;
4227}
4228
4229.moremenu #more-btn {
4230  width:40px;
4231  height:28px;
4232  background:url(../images/icon_more.png) no-repeat;
4233  border-left:1px solid #CCC;
4234  float:left;
4235  cursor:pointer;
4236}
4237
4238.moremenu:hover #more-btn {
4239  background-position:0 -28px;
4240}
4241
4242.morehover {
4243  position:absolute;
4244  right:6px;
4245  top:-9px;
4246  width:40px;
4247  height:35px;
4248  z-index:99;
4249  overflow:hidden;
4250
4251  -webkit-opacity:0;
4252     -moz-opacity:0;
4253       -o-opacity:0;
4254          opacity:0;
4255
4256  -webkit-transform-origin:100% 0%;
4257     -moz-transform-origin:100% 0%;
4258       -o-transform-origin:100% 0%;
4259          transform-origin:100% 0%;
4260
4261  -webkit-transition-property: -webkit-opacity;
4262  -webkit-transition-duration: .25s;
4263  -webkit-transition-timing-function:ease;
4264
4265  -moz-transition-property: -moz-opacity;
4266  -moz-transition-duration: .25s;
4267  -moz-transition-timing-function:ease;
4268
4269  -o-transition-property: -o-opacity;
4270  -o-transition-duration: .25s;
4271  -o-transition-timing-function:ease;
4272
4273  transition-property: opacity;
4274  transition-duration: .25s;
4275  transition-timing-function:ease;
4276}
4277
4278.morehover:hover,
4279.morehover.hover {
4280  opacity:1;
4281  height:385px;
4282  width:268px;
4283  -webkit-transition-property:height,  -webkit-opacity;
4284}
4285
4286.morehover .top {
4287  width:268px;
4288  height:39px;
4289  background:url(../images/more_top.png) no-repeat;
4290}
4291
4292.morehover .mid {
4293  width:228px;
4294  background:url(../images/more_mid.png) repeat-y;
4295  padding:10px 20px 0 20px;
4296}
4297
4298.morehover .mid .header {
4299  border-bottom:1px solid #ccc;
4300  font-weight:bold;
4301}
4302
4303.morehover .bottom {
4304  width:268px;
4305  height:6px;
4306  background:url(../images/more_bottom.png) no-repeat;
4307}
4308
4309.morehover ul {
4310  margin:10px 10px 20px 0;
4311}
4312
4313.morehover ul li {
4314  list-style:none;
4315}
4316
4317.morehover ul li.active a,
4318.morehover ul li.active a:hover {
4319  color:#222 !important;
4320}
4321
4322.morehover ul li.active img {
4323  margin-right:4px;
4324}
4325
4326
4327
4328
4329/* MARQUEE */
4330.slideshow-container {
4331  width:100%;
4332  overflow:hidden;
4333  position:relative;
4334}
4335.slideshow-container .slideshow-prev {
4336  position:absolute;
4337  top:50%;
4338  left:0px;
4339  margin-top:-36px;
4340  z-index:99;
4341}
4342.slideshow-container .slideshow-next {
4343  position:absolute;
4344  top:50%;
4345  margin-top:-36px;
4346  z-index:99;
4347  right:0px;
4348}
4349
4350.slideshow-container .pagination {
4351  position:absolute;
4352  bottom:20px;
4353  width:100%;
4354  text-align:center;
4355  z-index:99;
4356}
4357.slideshow-container .pagination ul {
4358  margin:0;
4359}
4360.slideshow-container .pagination ul li{
4361  display: inline-block;
4362  width:12px;
4363  height:12px;
4364  text-indent:-8000px;
4365  list-style:none;
4366  margin: 0 2px;
4367  border-radius:6px;
4368  background-color:#ccc;
4369  cursor:pointer;
4370        -webkit-transition:color .5s ease-in;
4371        -moz-transition:color .5s ease-in;
4372        -o-transition:color .5s ease-in;
4373        transition:color .5s ease-in;
4374}
4375.slideshow-container .pagination ul li:hover {
4376  background-color:#999;
4377}
4378.slideshow-container .pagination ul li.active {
4379  background-color:#33b5e5;
4380}
4381.slideshow-container .pagination ul li.active:hover {
4382  background-color:#33b5e5;
4383}
4384.slideshow-container ul li {
4385  display:inline;
4386  list-style:none;
4387}
4388
4389
4390
4391
4392a.download-sdk {
4393    float:right;
4394    margin:-10px 0;
4395    height:30px;
4396    padding-top:4px;
4397    padding-bottom:0px;
4398}
4399
4400#nav-x {
4401  padding-top: 14px;
4402}
4403
4404#nav-x .wrap {
4405  min-height:34px;
4406}
4407
4408#nav-x .wrap,
4409#searchResults.wrap {
4410    max-width:940px;
4411    border-bottom:1px solid #CCC;
4412}
4413
4414#searchResults.wrap #leftSearchControl {
4415  min-height:700px
4416}
4417.nav-x {
4418    margin-left:0;
4419    margin-bottom:0;
4420}
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431/*
4432 * CSS Styles that are needed by jScrollPane for it to operate correctly.
4433 */
4434
4435.jspContainer {
4436  overflow: hidden;
4437  position: relative;
4438}
4439
4440.jspPane {
4441  position: absolute;
4442  width:100% !important; /* to avoid cut-off api names in reference in horiz scroll */
4443}
4444
4445.jspVerticalBar {
4446  position: absolute;
4447  top: 0;
4448  right: 0;
4449  width: 4px;
4450  height: 100%;
4451  background: #f5f5f5;
4452}
4453
4454.jspHorizontalBar {
4455  position: absolute;
4456  bottom: 0;
4457  left: 0;
4458  width: 100%;
4459  height: 4px;
4460  background: #f5f5f5;
4461}
4462
4463.jspVerticalBar *,
4464.jspHorizontalBar * {
4465  margin: 0;
4466  padding: 0;
4467}
4468.jspCap {
4469  display: block;
4470}
4471
4472.jspVerticalBar .jspCap {
4473  height: 4px;
4474}
4475
4476.jspHorizontalBar .jspCap {
4477  width: 0;
4478  height: 100%;
4479}
4480
4481.jspHorizontalBar .jspCap {
4482  float: left;
4483}
4484
4485.jspTrack {
4486  position: relative;
4487}
4488
4489.jspDrag {
4490  background: #bbb;
4491  position: relative;
4492  top: 0;
4493  left: 0;
4494  cursor: pointer;
4495}
4496
4497.jspDrag:hover,
4498.jspDrag:active {
4499  border-color: #09c;
4500  background-color: #4cadcb;
4501  background-image: -webkit-gradient(linear, left top, right top, from(#5dbcd9), to(#4cadcb));
4502  background-image: -webkit-linear-gradient(left, #5dbcd9, #4cadcb);
4503  background-image: -moz-linear-gradient(left, #5dbcd9, #4cadcb);
4504  background-image: -ms-linear-gradient(left, #5dbcd9, #4cadcb);
4505  background-image: -o-linear-gradient(left, #5dbcd9, #4cadcb);
4506  background-image: linear-gradient(left, #5dbcd9, #4cadcb);
4507  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5dbcd9', EndColorStr='#4cadcb');
4508}
4509
4510.jspHorizontalBar .jspTrack,
4511.jspHorizontalBar .jspDrag {
4512  float: left;
4513  height: 100%;
4514}
4515
4516.jspArrow {
4517  background: #999;
4518  text-indent: -20000px;
4519  display: block;
4520  cursor: pointer;
4521}
4522
4523.jspArrow.jspDisabled {
4524  cursor: default;
4525  background: #ccc;
4526}
4527
4528.jspVerticalBar .jspArrow {
4529  height: 16px;
4530}
4531
4532.jspHorizontalBar .jspArrow {
4533  width: 16px;
4534  float: left;
4535  height: 100%;
4536}
4537
4538.jspVerticalBar .jspArrow:focus {
4539  outline: none;
4540}
4541
4542.jspCorner {
4543  float: left;
4544  height: 100%;
4545}
4546
4547/* Yuk! CSS Hack for IE6 3 pixel bug :( */
4548* html .jspCorner {
4549  margin: 0 -3px 0 0;
4550}
4551/******* end of jscrollpane *********/
4552
4553
4554
4555
4556
4557/************ DEVELOP HOMEPAGE ******************/
4558
4559/* Slideshow */
4560.slideshow-develop {
4561  height: 300px;
4562  width: 940px;
4563  position: relative;
4564  overflow:hidden;
4565}
4566.slideshow-develop .frame {
4567  width: 940px;
4568  height: 300px;
4569}
4570.slideshow-develop img.play {
4571  max-width:350px;
4572  max-height:240px;
4573  margin:20px 0 0 90px;
4574  -webkit-transform: perspective(800px ) rotateY( 35deg );
4575  box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4576  -moz-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4577  -webkit-box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.3);
4578}
4579.slideshow-develop img.play.no-shadow {
4580    box-shadow: none;
4581    -moz-box-shadow: none;
4582    -webkit-box-shadow: none;
4583}
4584.slideshow-develop img.play.no-transform {
4585  -webkit-transform: none;
4586}
4587.slideshow-develop a.slideshow-next {
4588  background: url(../images/arrow-right-develop.png);
4589}
4590.slideshow-develop a.slideshow-prev {
4591  background: url(../images/arrow-left-develop.png);
4592}
4593.slideshow-develop .content-right {
4594  float: left;
4595}
4596.slideshow-develop .content-right h2 {
4597  padding:0;
4598  margin-bottom:10px;
4599  border:none;
4600}
4601.slideshow-develop .item {
4602  height: 300px;
4603  width: 940px;
4604}
4605.slideshow-develop .pagination ul li.active {
4606  background-color: #F80;
4607}
4608.slideshow-develop .pagination ul li.active:hover {
4609  background-color: #F80;
4610}
4611.slideshow-develop .item hr {
4612  margin:5px 0 10px;
4613}
4614.slideshow-develop .item p {
4615  margin:10px 0;
4616}
4617.slideshow-develop .item p.title-intro {
4618  position:absolute;
4619  margin:0;
4620}
4621
4622/* Feeds */
4623.feed ul {
4624  margin: 0;
4625}
4626.feed .feed-nav {
4627  height: 25px;
4628  border-bottom: 1px solid #CCC;
4629}
4630.feed .feed-nav li {
4631  list-style: none;
4632  float: left;
4633  height: 21px; /* +4px bottom border = 25px; same as .feed-nav */
4634  margin-right: 25px;
4635  cursor: pointer;
4636}
4637.feed .feed-nav li.active {
4638  color: #000;
4639  border-bottom: 4px solid #F80;
4640}
4641.feed .feed-container {
4642  overflow: hidden;
4643  width: 460px;
4644}
4645.feed .feed-container .feed-frame {
4646  width: 1000px;
4647}
4648.feed .feed-container .feed-frame ul {
4649  float: left;
4650  width:460px;
4651}
4652.feed .feed-container .feed-frame ul ul {
4653  float: none;
4654  margin:10px 0 0 30px;
4655}
4656.feed .feed-container .feed-frame li {
4657  list-style: none;
4658  margin: 20px 0 20px 0;
4659  width: 460px;
4660  height:93px;
4661}
4662.feed .feed-container .feed-frame li.playlist {
4663  height:auto;
4664}
4665.feed .feed-container .feed-frame li.playlist a {
4666  height:93px;
4667  display:block;
4668}
4669.feed .feed-container .feed-frame li.more {
4670  height:20px;
4671  margin:10px 0 5px 5px;
4672}
4673.feed .feed-container .feed-frame li.more a {
4674  height:inherit;
4675}
4676.feed .feed-container .feed-frame li.playlist-video {
4677  list-style: none;
4678  margin: 0;
4679  width: 460px;
4680  height:55px;
4681  font-size:12px;
4682}
4683.feed .feed-container .feed-frame li.playlist-video a {
4684  height:45px;
4685  padding:5px;
4686}
4687.feed .feed-container .feed-frame li.playlist-video h5 {
4688  font-size:12px;
4689  line-height:13px;
4690  margin:0;
4691}
4692.feed .feed-container .feed-frame li.playlist-video p {
4693  margin:5px 0 0;
4694  line-height:15px;
4695}
4696.feed-container .feed-frame div.feed-image {
4697  float: left;
4698  border: 1px solid #999;
4699  margin:0 20px 0 0;
4700  width:122px;
4701  height:92px;
4702  background:url('../images/blog-default.png') no-repeat 0 0;
4703  background-size:180px;
4704}
4705#jd-content .feed .feed-container .feed-frame li img {
4706  float: left;
4707  border: 1px solid #999;
4708  margin:0 20px 0 0;
4709  width:122px;
4710  height:92px;
4711}
4712#jd-content .feed .feed-container .feed-frame li.playlist-video img {
4713  width:inherit;
4714  height:inherit;
4715}
4716
4717.feed .feed-container .feed-frame li a,
4718.feed .feed-container .feed-frame li a:active {
4719  color:#555 !important;
4720}
4721
4722.feed .feed-container .feed-frame li a:hover,
4723.feed .feed-container .feed-frame li a:hover * {
4724  color:#7AA1B0 !important;
4725}
4726
4727/* Video player */
4728#player-wrapper {
4729  display:none;
4730  margin: -1px auto 0;
4731  position: relative;
4732  width: 940px;
4733  height: 0px;
4734}
4735#player-frame {
4736  background: #EFEFEF;
4737  border: 1px solid #CCC;
4738  padding: 0px 207px;
4739  z-index: 10; /* stay above marque, but below search suggestions */
4740  width: 525px;
4741  height: 330px;
4742  position: relative;
4743}
4744
4745
4746
4747/************ DISTRIBUTE HOMEPAGE ***************/
4748
4749.marquee {
4750  width: 760px;
4751}
4752.marquee .main-img {
4753  float: left;
4754  margin-top: 20px;
4755  width: 490px;
4756}
4757.marquee .copy {
4758  width: 270px;
4759  float: left;
4760  margin-top: 30px;
4761}
4762.distribute-features {
4763  margin: 0;
4764}
4765.distribute-features ul {
4766  margin: 0;
4767}
4768.distribute-features ul li {
4769  list-style: none;
4770  float: left;
4771  border-top: 1px solid #9C0;
4772  width: 220px;
4773  margin-right: 50px;
4774}
4775.distribute-features ul li.last {
4776  margin-right: 0px;
4777}
4778
4779.distribute-features .distribute-link li a {
4780  color:red !important;
4781}
4782
4783.distribute-features .distribute-link li a,
4784.distribute-features .distribute-link li a:active {
4785  color:#555 !important;
4786}
4787
4788.distribute-features .distribute-link li a:hover,
4789.distribute-features .distribute-link li a:hover * {
4790  color:#7AA1B0 !important;
4791}
4792
4793
4794/************ DEVELOP TOPIC CONTAINERS ************/
4795
4796.landing-banner,
4797.landing-docs {
4798  margin:20px 0;
4799}
4800.landing-banner > div:first-child,
4801.landing-docs > div:first-child,
4802.landing-docs > .col-12 {
4803  margin-left:0;
4804  min-height:280px;
4805}
4806.landing-banner.short > div {
4807  min-height:50px;
4808}
4809.landing-banner > div:last-child,
4810.landing-docs > div:last-child,
4811.landing-docs > .col-12 {
4812  margin-right:0;
4813}
4814
4815.landing-banner > div > *:last-child {
4816  margin-bottom:0;
4817}
4818.landing-banner h1 {
4819  margin-top:0;
4820}
4821.landing-docs,
4822.landing-banner {
4823  clear:both;
4824  overflow:hidden;
4825}
4826.landing-docs h3 {
4827  font-size:14px;
4828  line-height:21px;
4829  color:#555;
4830  text-transform:uppercase;
4831  border-bottom:1px solid #CCC;
4832  margin:0 0 20px;
4833}
4834.landing-docs a {
4835  color:#333 !important;
4836}
4837
4838.landing-docs a:hover,
4839.landing-docs a:hover * {
4840  color:#7AA1B0 !important
4841}
4842
4843.landing-docs .normal-links a {
4844  color:#258aaf !important;
4845}
4846
4847.plusone {
4848  float:right;
4849}
4850
4851
4852
4853.next-docs {
4854  border-top:1px solid #ccc;
4855  margin:40px 0 0;
4856  padding:5px 0 0;
4857  clear:left;
4858  overflow:hidden;
4859}
4860.next-docs div:first-child {
4861  margin-left:0;
4862}
4863.next-docs div:last-child {
4864  margin-right:0;
4865}
4866
4867.next-docs h2 {
4868  font-size:14px;
4869  line-height:21px;
4870  color:#555;
4871  text-transform:uppercase;
4872  border-bottom:none;
4873  margin:0;
4874  padding:5px 0 0;
4875}
4876
4877
4878
4879/************* HOME/LANDING PAGE *****************/
4880
4881.slideshow-home {
4882  height: 500px;
4883  width: 940px;
4884  border-bottom: 1px solid #CCC;
4885  position: relative;
4886  margin: 0;
4887}
4888.slideshow-home .frame {
4889  width: 940px;
4890  height: 500px;
4891}
4892.slideshow-home .content-left {
4893  float: left;
4894  text-align: center;
4895  vertical-align: center;
4896  margin: 0 0 0 35px;
4897}
4898.slideshow-home .content-right {
4899  margin: 80px 0 0 0;
4900}
4901.slideshow-home .content-right p {
4902  margin-bottom: 10px;
4903}
4904.slideshow-home .content-right p:last-child {
4905  margin-top: 15px;
4906}
4907.slideshow-home .content-right h1 {
4908  padding:0;
4909}
4910.slideshow-home .item {
4911  height: 500px;
4912  width: 940px;
4913}
4914.home-sections {
4915  padding: 30px 20px 20px;
4916  margin: 20px 0;
4917  background: -webkit-linear-gradient(top, #F6F6F6,#F9F9F9);
4918}
4919.home-sections ul {
4920  margin: 0;
4921}
4922.home-sections ul li {
4923  float: left;
4924  display: block;
4925  list-style: none;
4926  width: 170px;
4927  height: 35px;
4928  border: 1px solid #ccc;
4929  background: white;
4930  margin-right: 10px;
4931  border-radius: 1px;
4932  -webkit-border-radius: 1px;
4933  -moz-border-radius: 1px;
4934  box-shadow: 1px 1px 5px #EEE;
4935  -webkit-box-shadow: 1px 1px 5px #EEE;
4936  -moz-box-shadow: 1px 1px 5px #EEE;
4937  background: white;
4938}
4939.home-sections ul li:hover {
4940  background: #F9F9F9;
4941  border: 1px solid #CCC;
4942}
4943.home-sections ul li a,
4944.home-sections ul li a:hover {
4945  font-weight: bold;
4946  margin-top: 8px;
4947  line-height: 18px;
4948  float: left;
4949  width: 100%;
4950  text-align: center;
4951  color: #09c !important;
4952}
4953.home-sections ul li a {
4954  font-weight: bold;
4955  margin-top: 8px;
4956  line-height: 18px;
4957  float: left;
4958  width:100%;
4959  text-align:center;
4960}
4961.home-sections ul li img {
4962  float: left;
4963  margin: -8px 0 0 10px;
4964}
4965.home-sections ul li.last {
4966  margin-right: 0px;
4967}
4968.fullpage #footer {
4969  margin-top: -40px;
4970}
4971