
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_5f7c1ad91e5fe0f65c1f80b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f69fa80ca3a5980b3e3e8889.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_757871bf918436c8a2da66f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a3308c085f873ec6923baf0d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5aa22af548562a16688a410d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b3ce709934cadf3cb8d5849b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3d9281fd33199ddca5246a82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_552005de965d9ab94d2fe9d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls7{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.696000px;}
.ls12{letter-spacing:17.424000px;}
.ls6{letter-spacing:29.808000px;}
.ls5{letter-spacing:49.248000px;}
.ls9{letter-spacing:53.568000px;}
.ls8{letter-spacing:57.888000px;}
.ls3{letter-spacing:69.408000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-72.000000px;}
.wsb{word-spacing:-27.000000px;}
.ws0{word-spacing:-22.500000px;}
.ws1{word-spacing:-19.457280px;}
.ws3{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws4{word-spacing:-14.993280px;}
.ws9{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-4.392000px;}
._e{margin-left:-3.358080px;}
._16{margin-left:-2.072640px;}
._2{margin-left:-1.036320px;}
._0{width:1.054080px;}
._1{width:2.448960px;}
._3{width:4.175040px;}
._10{width:5.177760px;}
._f{width:6.192000px;}
._13{width:7.262400px;}
._17{width:8.280000px;}
._b{width:9.650400px;}
._a{width:10.828320px;}
._6{width:11.952000px;}
._7{width:13.936320px;}
._12{width:15.163200px;}
._c{width:16.660320px;}
._4{width:19.512000px;}
._5{width:20.557920px;}
._14{width:21.744000px;}
._15{width:22.968000px;}
._9{width:24.364320px;}
._8{width:25.416000px;}
._1b{width:64.152000px;}
._1a{width:65.576640px;}
._1c{width:68.472000px;}
._1d{width:69.768000px;}
._1e{width:2334.294240px;}
._11{width:2364.475920px;}
._19{width:2431.008000px;}
._1f{width:2721.459600px;}
._18{width:2751.699600px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,77,120);}
.fc1{color:rgb(46,116,181);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:90.000000px;}
.fs5{font-size:108.000000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y10a{bottom:5.925000px;}
.y114{bottom:5.940000px;}
.yb2{bottom:5.970000px;}
.y12b{bottom:5.976000px;}
.yc8{bottom:6.120000px;}
.y10c{bottom:6.291000px;}
.yb4{bottom:6.300000px;}
.y128{bottom:6.471000px;}
.ycd{bottom:6.480000px;}
.y12c{bottom:10.620000px;}
.yae{bottom:10.980000px;}
.y1bd{bottom:14.400000px;}
.yd1{bottom:17.460000px;}
.ycb{bottom:17.640000px;}
.y72{bottom:19.080000px;}
.y4e{bottom:22.500000px;}
.y173{bottom:27.540000px;}
.ycf{bottom:28.620000px;}
.ycc{bottom:28.800000px;}
.yad{bottom:31.500000px;}
.y1bc{bottom:35.100000px;}
.yc5{bottom:35.280000px;}
.y1d9{bottom:37.800000px;}
.y12a{bottom:39.240000px;}
.y71{bottom:39.780000px;}
.y189{bottom:41.400000px;}
.y4d{bottom:43.200000px;}
.y10f{bottom:45.765000px;}
.y172{bottom:48.276000px;}
.y208{bottom:49.716000px;}
.y1bb{bottom:55.836000px;}
.yc4{bottom:56.016000px;}
.y188{bottom:62.136000px;}
.y4c{bottom:63.936000px;}
.y1a5{bottom:67.176000px;}
.y207{bottom:70.416000px;}
.yac{bottom:73.836000px;}
.y10e{bottom:74.385000px;}
.y1ba{bottom:76.536000px;}
.yc3{bottom:76.716000px;}
.y1d8{bottom:79.416000px;}
.y70{bottom:81.576000px;}
.y4b{bottom:84.636000px;}
.y14f{bottom:85.356000px;}
.y1a4{bottom:87.876000px;}
.y171{bottom:90.576000px;}
.y206{bottom:91.116000px;}
.y129{bottom:92.016000px;}
.yed{bottom:93.096000px;}
.y1b9{bottom:97.236000px;}
.yab{bottom:99.396000px;}
.y1d7{bottom:100.116000px;}
.y6f{bottom:102.276000px;}
.y10d{bottom:103.185000px;}
.y187{bottom:103.716000px;}
.y4a{bottom:105.336000px;}
.y14e{bottom:106.056000px;}
.y1a3{bottom:108.576000px;}
.y205{bottom:111.816000px;}
.yec{bottom:113.796000px;}
.yc2{bottom:119.016000px;}
.y1d6{bottom:120.816000px;}
.y6e{bottom:122.976000px;}
.y186{bottom:124.416000px;}
.y49{bottom:126.036000px;}
.y14d{bottom:126.756000px;}
.y1a2{bottom:129.276000px;}
.y170{bottom:129.636000px;}
.y10b{bottom:131.805000px;}
.y204{bottom:132.516000px;}
.y127{bottom:132.885000px;}
.yeb{bottom:134.496000px;}
.y1b8{bottom:138.816000px;}
.y1d5{bottom:141.516000px;}
.y6d{bottom:143.676000px;}
.y185{bottom:145.116000px;}
.y48{bottom:146.736000px;}
.y14c{bottom:147.456000px;}
.y23{bottom:147.816000px;}
.yaa{bottom:149.436000px;}
.y1a1{bottom:149.976000px;}
.y16f{bottom:150.330000px;}
.y203{bottom:153.210000px;}
.yea{bottom:155.190000px;}
.yc1{bottom:158.070000px;}
.y1b7{bottom:159.510000px;}
.y126{bottom:160.245000px;}
.y109{bottom:160.605000px;}
.y1d4{bottom:162.210000px;}
.y6c{bottom:164.370000px;}
.y184{bottom:165.810000px;}
.y47{bottom:167.430000px;}
.y14b{bottom:168.150000px;}
.y22{bottom:168.510000px;}
.ya9{bottom:170.130000px;}
.y1a0{bottom:170.670000px;}
.y16e{bottom:171.030000px;}
.y202{bottom:173.910000px;}
.ye9{bottom:175.890000px;}
.yc0{bottom:178.770000px;}
.y1b6{bottom:180.210000px;}
.y1d3{bottom:182.910000px;}
.y6b{bottom:185.070000px;}
.y183{bottom:186.510000px;}
.y46{bottom:188.130000px;}
.y21{bottom:189.210000px;}
.ya8{bottom:190.830000px;}
.y19f{bottom:191.370000px;}
.y16d{bottom:191.730000px;}
.y201{bottom:194.610000px;}
.ye8{bottom:196.590000px;}
.ybf{bottom:199.470000px;}
.y1b5{bottom:200.910000px;}
.y1d2{bottom:203.610000px;}
.y6a{bottom:205.770000px;}
.y45{bottom:208.830000px;}
.y14a{bottom:209.550000px;}
.y20{bottom:209.910000px;}
.y125{bottom:211.350000px;}
.ya7{bottom:211.530000px;}
.y19e{bottom:212.070000px;}
.y16c{bottom:212.430000px;}
.y108{bottom:213.330000px;}
.y200{bottom:215.310000px;}
.ye7{bottom:217.290000px;}
.ybe{bottom:220.170000px;}
.y1b4{bottom:221.610000px;}
.y1d1{bottom:224.310000px;}
.y69{bottom:226.470000px;}
.y182{bottom:228.810000px;}
.y44{bottom:229.530000px;}
.y1f{bottom:230.610000px;}
.y16b{bottom:233.130000px;}
.y1ff{bottom:236.010000px;}
.ybd{bottom:240.870000px;}
.y1b3{bottom:242.310000px;}
.y1d0{bottom:245.010000px;}
.y68{bottom:247.170000px;}
.y149{bottom:251.490000px;}
.ya6{bottom:253.290000px;}
.y124{bottom:253.470000px;}
.y16a{bottom:253.830000px;}
.y107{bottom:255.270000px;}
.y1fe{bottom:256.710000px;}
.ye6{bottom:258.690000px;}
.ybc{bottom:261.570000px;}
.y1b2{bottom:263.010000px;}
.y1cf{bottom:265.710000px;}
.y181{bottom:267.870000px;}
.y8c{bottom:268.230000px;}
.y43{bottom:271.290000px;}
.y148{bottom:272.190000px;}
.ya5{bottom:273.990000px;}
.y123{bottom:274.170000px;}
.y1e{bottom:274.350000px;}
.y169{bottom:274.530000px;}
.y106{bottom:275.970000px;}
.y1fd{bottom:277.410000px;}
.y1ce{bottom:286.410000px;}
.y180{bottom:288.570000px;}
.y67{bottom:288.930000px;}
.y42{bottom:291.990000px;}
.y147{bottom:292.890000px;}
.ya4{bottom:294.690000px;}
.y122{bottom:294.870000px;}
.y19d{bottom:295.230000px;}
.y105{bottom:296.715000px;}
.y1fc{bottom:298.155000px;}
.ye5{bottom:300.675000px;}
.ybb{bottom:302.835000px;}
.y1b1{bottom:304.815000px;}
.y1cd{bottom:307.155000px;}
.y17f{bottom:309.315000px;}
.y66{bottom:309.675000px;}
.y41{bottom:312.735000px;}
.y146{bottom:313.635000px;}
.y121{bottom:315.615000px;}
.y19c{bottom:315.975000px;}
.y168{bottom:316.335000px;}
.y1d{bottom:317.595000px;}
.y1fb{bottom:318.855000px;}
.ye4{bottom:321.375000px;}
.y1b0{bottom:325.515000px;}
.y17e{bottom:330.015000px;}
.y65{bottom:330.375000px;}
.y40{bottom:333.255000px;}
.y145{bottom:334.335000px;}
.ya3{bottom:336.315000px;}
.y19b{bottom:336.675000px;}
.y167{bottom:337.035000px;}
.y104{bottom:338.115000px;}
.y1c{bottom:338.295000px;}
.y1fa{bottom:339.555000px;}
.ye3{bottom:342.075000px;}
.yba{bottom:345.315000px;}
.y1af{bottom:346.215000px;}
.y1cc{bottom:348.915000px;}
.y17d{bottom:350.715000px;}
.y64{bottom:351.075000px;}
.y120{bottom:356.835000px;}
.ya2{bottom:357.015000px;}
.y19a{bottom:357.375000px;}
.y166{bottom:357.735000px;}
.y1b{bottom:358.995000px;}
.y1f9{bottom:360.255000px;}
.ye2{bottom:362.775000px;}
.y1ae{bottom:366.915000px;}
.y1cb{bottom:369.615000px;}
.y17c{bottom:371.415000px;}
.y63{bottom:371.775000px;}
.yb9{bottom:374.115000px;}
.y3f{bottom:375.555000px;}
.y144{bottom:375.735000px;}
.ya1{bottom:377.715000px;}
.y199{bottom:378.075000px;}
.y165{bottom:378.435000px;}
.y1a{bottom:379.695000px;}
.y103{bottom:380.775000px;}
.y1f8{bottom:380.955000px;}
.ye1{bottom:383.475000px;}
.y1ad{bottom:387.615000px;}
.y1ca{bottom:390.315000px;}
.y17b{bottom:392.115000px;}
.y62{bottom:392.475000px;}
.y198{bottom:398.775000px;}
.y11f{bottom:398.955000px;}
.y164{bottom:399.135000px;}
.y19{bottom:400.395000px;}
.y3e{bottom:401.295000px;}
.y1f7{bottom:401.655000px;}
.yb8{bottom:402.735000px;}
.ye0{bottom:404.175000px;}
.y102{bottom:406.335000px;}
.y1ac{bottom:408.315000px;}
.y1c9{bottom:411.015000px;}
.y17a{bottom:412.455000px;}
.y61{bottom:413.175000px;}
.y143{bottom:417.855000px;}
.ya0{bottom:419.115000px;}
.y197{bottom:419.475000px;}
.y11e{bottom:419.655000px;}
.y163{bottom:419.835000px;}
.y18{bottom:421.095000px;}
.y1f6{bottom:422.355000px;}
.ydf{bottom:424.875000px;}
.yb7{bottom:431.535000px;}
.y1c8{bottom:431.715000px;}
.y3d{bottom:433.875000px;}
.y142{bottom:438.555000px;}
.y196{bottom:440.175000px;}
.y11d{bottom:440.355000px;}
.y17{bottom:441.795000px;}
.y1f5{bottom:443.055000px;}
.yde{bottom:445.575000px;}
.y1ab{bottom:450.435000px;}
.y1c7{bottom:452.415000px;}
.y60{bottom:454.395000px;}
.y179{bottom:454.575000px;}
.y8b{bottom:454.755000px;}
.y101{bottom:456.195000px;}
.y141{bottom:459.255000px;}
.yb6{bottom:460.155000px;}
.y195{bottom:460.875000px;}
.y11c{bottom:461.055000px;}
.y9f{bottom:461.235000px;}
.y16{bottom:462.495000px;}
.y1f4{bottom:463.755000px;}
.y3c{bottom:472.755000px;}
.y1c6{bottom:473.115000px;}
.y178{bottom:475.275000px;}
.y8a{bottom:475.455000px;}
.y100{bottom:476.895000px;}
.y1aa{bottom:479.055000px;}
.y140{bottom:479.955000px;}
.y11b{bottom:481.755000px;}
.y9e{bottom:481.935000px;}
.y162{bottom:482.835000px;}
.y15{bottom:483.195000px;}
.y1f3{bottom:484.455000px;}
.ydd{bottom:486.975000px;}
.yb5{bottom:488.955000px;}
.y3b{bottom:493.455000px;}
.y1c5{bottom:493.815000px;}
.y177{bottom:495.975000px;}
.y89{bottom:496.155000px;}
.y5f{bottom:496.875000px;}
.yff{bottom:497.595000px;}
.y13f{bottom:500.655000px;}
.y11a{bottom:502.455000px;}
.y9d{bottom:502.635000px;}
.y14{bottom:503.895000px;}
.y1f2{bottom:504.975000px;}
.y194{bottom:507.135000px;}
.y1a9{bottom:507.855000px;}
.y3a{bottom:514.155000px;}
.y176{bottom:516.675000px;}
.y88{bottom:516.855000px;}
.yb3{bottom:517.575000px;}
.yfe{bottom:518.295000px;}
.y13e{bottom:521.355000px;}
.y161{bottom:521.715000px;}
.y119{bottom:523.155000px;}
.y9c{bottom:523.335000px;}
.y13{bottom:524.595000px;}
.y1f1{bottom:525.675000px;}
.ydc{bottom:529.635000px;}
.y39{bottom:534.855000px;}
.y1c4{bottom:535.575000px;}
.y5e{bottom:535.755000px;}
.y1a8{bottom:536.475000px;}
.y175{bottom:537.375000px;}
.y87{bottom:537.555000px;}
.yfd{bottom:538.995000px;}
.y193{bottom:539.715000px;}
.y160{bottom:542.415000px;}
.y12{bottom:545.295000px;}
.yb1{bottom:546.375000px;}
.y1c3{bottom:556.305000px;}
.y5d{bottom:556.485000px;}
.y86{bottom:558.285000px;}
.yfc{bottom:559.725000px;}
.y13d{bottom:562.605000px;}
.y15f{bottom:563.145000px;}
.y9b{bottom:564.945000px;}
.y118{bottom:565.305000px;}
.y11{bottom:566.025000px;}
.y1f0{bottom:567.105000px;}
.ydb{bottom:568.725000px;}
.y38{bottom:576.645000px;}
.y1c2{bottom:577.005000px;}
.y5c{bottom:577.185000px;}
.y192{bottom:578.805000px;}
.y85{bottom:578.985000px;}
.y15e{bottom:583.845000px;}
.y9a{bottom:585.645000px;}
.y10{bottom:586.725000px;}
.y1ef{bottom:587.805000px;}
.yda{bottom:589.425000px;}
.y37{bottom:597.345000px;}
.y1c1{bottom:597.705000px;}
.y5b{bottom:597.885000px;}
.yb0{bottom:599.145000px;}
.y191{bottom:599.505000px;}
.y84{bottom:599.685000px;}
.yfb{bottom:601.485000px;}
.y117{bottom:603.285000px;}
.y15d{bottom:604.545000px;}
.y13c{bottom:604.725000px;}
.y99{bottom:606.345000px;}
.yf{bottom:607.425000px;}
.y1ee{bottom:608.505000px;}
.yd9{bottom:610.125000px;}
.y36{bottom:618.045000px;}
.y1c0{bottom:618.405000px;}
.y5a{bottom:618.585000px;}
.y190{bottom:620.025000px;}
.y83{bottom:620.385000px;}
.yfa{bottom:622.185000px;}
.y15c{bottom:625.245000px;}
.y13b{bottom:625.425000px;}
.ye{bottom:628.125000px;}
.y1ed{bottom:629.205000px;}
.yd8{bottom:630.825000px;}
.y116{bottom:632.085000px;}
.y35{bottom:638.745000px;}
.y1bf{bottom:639.105000px;}
.y59{bottom:639.285000px;}
.y18f{bottom:640.725000px;}
.y82{bottom:641.085000px;}
.yf9{bottom:642.885000px;}
.y15b{bottom:645.945000px;}
.yd{bottom:648.825000px;}
.y1ec{bottom:649.905000px;}
.y98{bottom:652.785000px;}
.y34{bottom:659.445000px;}
.y1be{bottom:659.805000px;}
.y58{bottom:659.985000px;}
.y115{bottom:660.705000px;}
.y18e{bottom:661.425000px;}
.y81{bottom:661.785000px;}
.yf8{bottom:663.585000px;}
.y15a{bottom:666.645000px;}
.y13a{bottom:667.725000px;}
.yc{bottom:669.525000px;}
.y1eb{bottom:670.605000px;}
.yd7{bottom:672.405000px;}
.y33{bottom:680.145000px;}
.y57{bottom:680.685000px;}
.y18d{bottom:682.125000px;}
.y80{bottom:682.485000px;}
.yf7{bottom:684.285000px;}
.y97{bottom:685.185000px;}
.y159{bottom:687.345000px;}
.y113{bottom:689.505000px;}
.y1ea{bottom:691.305000px;}
.yd6{bottom:693.105000px;}
.y56{bottom:701.385000px;}
.y18c{bottom:702.825000px;}
.y7f{bottom:703.185000px;}
.yf6{bottom:704.985000px;}
.y139{bottom:706.785000px;}
.y1e9{bottom:712.005000px;}
.yb{bottom:713.265000px;}
.yd5{bottom:713.805000px;}
.y32{bottom:721.545000px;}
.y55{bottom:722.085000px;}
.y174{bottom:723.525000px;}
.y7e{bottom:723.885000px;}
.y96{bottom:724.245000px;}
.y138{bottom:727.485000px;}
.y158{bottom:729.105000px;}
.y1e8{bottom:732.705000px;}
.yd4{bottom:734.505000px;}
.y112{bottom:742.245000px;}
.y54{bottom:742.785000px;}
.y1a7{bottom:743.145000px;}
.y7d{bottom:744.585000px;}
.y95{bottom:744.945000px;}
.yf5{bottom:747.285000px;}
.y137{bottom:748.185000px;}
.y157{bottom:749.805000px;}
.y1e7{bottom:753.405000px;}
.yd3{bottom:755.205000px;}
.ya{bottom:757.365000px;}
.y31{bottom:763.485000px;}
.y1a6{bottom:763.845000px;}
.y7c{bottom:765.285000px;}
.y94{bottom:765.645000px;}
.y18b{bottom:766.005000px;}
.yaf{bottom:766.185000px;}
.y156{bottom:770.505000px;}
.y1e6{bottom:774.105000px;}
.y9{bottom:783.285000px;}
.y30{bottom:784.185000px;}
.y53{bottom:784.545000px;}
.y7b{bottom:785.985000px;}
.y93{bottom:786.345000px;}
.y136{bottom:789.405000px;}
.y155{bottom:791.205000px;}
.y1e5{bottom:794.805000px;}
.yd2{bottom:797.505000px;}
.y2f{bottom:804.930000px;}
.y52{bottom:805.290000px;}
.y92{bottom:807.090000px;}
.y8{bottom:809.250000px;}
.y154{bottom:811.950000px;}
.y1e4{bottom:815.550000px;}
.yd0{bottom:818.970000px;}
.y2e{bottom:825.630000px;}
.y51{bottom:825.990000px;}
.y7a{bottom:827.790000px;}
.y135{bottom:831.570000px;}
.y153{bottom:832.650000px;}
.y7{bottom:834.630000px;}
.y1e3{bottom:836.250000px;}
.y2d{bottom:846.330000px;}
.y50{bottom:846.690000px;}
.y79{bottom:848.310000px;}
.y91{bottom:848.490000px;}
.y134{bottom:852.270000px;}
.y152{bottom:853.350000px;}
.y1e2{bottom:856.950000px;}
.y6{bottom:860.370000px;}
.y18a{bottom:867.030000px;}
.y4f{bottom:867.390000px;}
.y90{bottom:869.190000px;}
.yce{bottom:870.090000px;}
.y133{bottom:872.970000px;}
.y1e1{bottom:877.650000px;}
.y2c{bottom:888.090000px;}
.y111{bottom:888.270000px;}
.y8f{bottom:889.890000px;}
.y78{bottom:890.790000px;}
.y132{bottom:893.670000px;}
.y151{bottom:895.650000px;}
.y1e0{bottom:898.350000px;}
.y2b{bottom:908.790000px;}
.y110{bottom:908.970000px;}
.y8e{bottom:910.410000px;}
.yf4{bottom:910.770000px;}
.y5{bottom:912.750000px;}
.y131{bottom:914.370000px;}
.y1df{bottom:919.050000px;}
.yca{bottom:921.030000px;}
.y150{bottom:921.210000px;}
.y2a{bottom:929.490000px;}
.y77{bottom:929.670000px;}
.yf3{bottom:931.470000px;}
.y209{bottom:931.830000px;}
.y1de{bottom:939.750000px;}
.y29{bottom:950.190000px;}
.y76{bottom:950.370000px;}
.yf2{bottom:952.170000px;}
.y8d{bottom:952.890000px;}
.y4{bottom:953.610000px;}
.y130{bottom:956.490000px;}
.y1dd{bottom:960.450000px;}
.y28{bottom:970.890000px;}
.y75{bottom:971.070000px;}
.yc9{bottom:972.150000px;}
.yf1{bottom:972.870000px;}
.y1dc{bottom:981.150000px;}
.y12f{bottom:985.110000px;}
.y27{bottom:991.590000px;}
.y74{bottom:991.770000px;}
.yf0{bottom:993.570000px;}
.yc7{bottom:1000.770000px;}
.y1db{bottom:1001.850000px;}
.y73{bottom:1012.470000px;}
.y12e{bottom:1013.910000px;}
.yef{bottom:1014.270000px;}
.y26{bottom:1033.170000px;}
.y12d{bottom:1042.530000px;}
.y1da{bottom:1045.050000px;}
.y3{bottom:1048.830000px;}
.yc6{bottom:1053.540000px;}
.y25{bottom:1053.900000px;}
.yee{bottom:1056.600000px;}
.y2{bottom:1067.400000px;}
.y1{bottom:1086.120000px;}
.y24{bottom:1106.280000px;}
.he{height:22.665000px;}
.h13{height:22.671000px;}
.hf{height:22.680000px;}
.h16{height:22.710000px;}
.hd{height:22.716000px;}
.h10{height:22.845000px;}
.h15{height:22.851000px;}
.h14{height:32.040000px;}
.h12{height:44.985000px;}
.h11{height:45.165000px;}
.hb{height:58.621992px;}
.h1{height:58.651172px;}
.h7{height:59.439023px;}
.hc{height:64.546875px;}
.h6{height:70.664062px;}
.h8{height:72.562500px;}
.h9{height:74.004654px;}
.h5{height:76.317188px;}
.h4{height:88.330078px;}
.h3{height:90.703125px;}
.ha{height:105.996094px;}
.h17{height:108.843750px;}
.h2{height:132.789375px;}
.h0{height:1174.500000px;}
.w14{width:50.925000px;}
.w12{width:50.940000px;}
.w11{width:51.141000px;}
.w17{width:54.561000px;}
.w15{width:70.185000px;}
.w18{width:72.540000px;}
.w19{width:76.536000px;}
.wc{width:92.541000px;}
.w2{width:101.541000px;}
.w3{width:104.400000px;}
.w13{width:112.356000px;}
.w9{width:113.076000px;}
.wf{width:115.365000px;}
.wb{width:118.965000px;}
.w1{width:123.516000px;}
.w8{width:134.121000px;}
.wa{width:140.061000px;}
.w4{width:151.410000px;}
.wd{width:159.150000px;}
.w7{width:159.870000px;}
.w16{width:160.950000px;}
.we{width:168.135000px;}
.w10{width:168.150000px;}
.w1c{width:183.435000px;}
.w1a{width:206.535000px;}
.w1b{width:267.150000px;}
.w6{width:287.700000px;}
.w5{width:317.940000px;}
.w0{width:904.500000px;}
.x0{left:0.000000px;}
.x12{left:1.065000px;}
.xa{left:18.396000px;}
.x20{left:24.840000px;}
.x1e{left:27.570000px;}
.x23{left:28.605000px;}
.x2c{left:30.585000px;}
.x25{left:38.685000px;}
.xd{left:45.756000px;}
.x18{left:51.516000px;}
.x26{left:52.596000px;}
.x13{left:55.116000px;}
.x1{left:66.780000px;}
.x1c{left:68.940000px;}
.x9{left:70.200000px;}
.x29{left:73.296000px;}
.x2{left:82.800000px;}
.x7{left:84.060000px;}
.x8{left:98.676000px;}
.x11{left:103.710000px;}
.xf{left:128.910000px;}
.x3{left:177.330000px;}
.xb{left:197.505000px;}
.x6{left:203.610000px;}
.xe{left:225.405000px;}
.x14{left:233.865000px;}
.x27{left:234.945000px;}
.x1d{left:239.265000px;}
.x5{left:241.950000px;}
.x2a{left:280.335000px;}
.x1f{left:292.575000px;}
.xc{left:302.835000px;}
.x19{left:330.195000px;}
.x21{left:345.855000px;}
.x28{left:369.615000px;}
.x15{left:371.775000px;}
.x4{left:452.445000px;}
.x22{left:460.560000px;}
.x16{left:488.460000px;}
.x1a{left:492.960000px;}
.x24{left:513.840000px;}
.x10{left:546.960000px;}
.x2b{left:551.280000px;}
.x17{left:632.310000px;}
.x1b{left:664.890000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls7{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.618667pt;}
.ls12{letter-spacing:15.488000pt;}
.ls6{letter-spacing:26.496000pt;}
.ls5{letter-spacing:43.776000pt;}
.ls9{letter-spacing:47.616000pt;}
.ls8{letter-spacing:51.456000pt;}
.ls3{letter-spacing:61.696000pt;}
.ws6{word-spacing:-64.000000pt;}
.wsb{word-spacing:-24.000000pt;}
.ws0{word-spacing:-20.000000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws3{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws9{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-3.904000pt;}
._e{margin-left:-2.984960pt;}
._16{margin-left:-1.842347pt;}
._2{margin-left:-0.921173pt;}
._0{width:0.936960pt;}
._1{width:2.176853pt;}
._3{width:3.711147pt;}
._10{width:4.602453pt;}
._f{width:5.504000pt;}
._13{width:6.455467pt;}
._17{width:7.360000pt;}
._b{width:8.578133pt;}
._a{width:9.625173pt;}
._6{width:10.624000pt;}
._7{width:12.387840pt;}
._12{width:13.478400pt;}
._c{width:14.809173pt;}
._4{width:17.344000pt;}
._5{width:18.273707pt;}
._14{width:19.328000pt;}
._15{width:20.416000pt;}
._9{width:21.657173pt;}
._8{width:22.592000pt;}
._1b{width:57.024000pt;}
._1a{width:58.290347pt;}
._1c{width:60.864000pt;}
._1d{width:62.016000pt;}
._1e{width:2074.928213pt;}
._11{width:2101.756373pt;}
._19{width:2160.896000pt;}
._1f{width:2419.075200pt;}
._18{width:2445.955200pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:80.000000pt;}
.fs5{font-size:96.000000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y10a{bottom:5.266667pt;}
.y114{bottom:5.280000pt;}
.yb2{bottom:5.306667pt;}
.y12b{bottom:5.312000pt;}
.yc8{bottom:5.440000pt;}
.y10c{bottom:5.592000pt;}
.yb4{bottom:5.600000pt;}
.y128{bottom:5.752000pt;}
.ycd{bottom:5.760000pt;}
.y12c{bottom:9.440000pt;}
.yae{bottom:9.760000pt;}
.y1bd{bottom:12.800000pt;}
.yd1{bottom:15.520000pt;}
.ycb{bottom:15.680000pt;}
.y72{bottom:16.960000pt;}
.y4e{bottom:20.000000pt;}
.y173{bottom:24.480000pt;}
.ycf{bottom:25.440000pt;}
.ycc{bottom:25.600000pt;}
.yad{bottom:28.000000pt;}
.y1bc{bottom:31.200000pt;}
.yc5{bottom:31.360000pt;}
.y1d9{bottom:33.600000pt;}
.y12a{bottom:34.880000pt;}
.y71{bottom:35.360000pt;}
.y189{bottom:36.800000pt;}
.y4d{bottom:38.400000pt;}
.y10f{bottom:40.680000pt;}
.y172{bottom:42.912000pt;}
.y208{bottom:44.192000pt;}
.y1bb{bottom:49.632000pt;}
.yc4{bottom:49.792000pt;}
.y188{bottom:55.232000pt;}
.y4c{bottom:56.832000pt;}
.y1a5{bottom:59.712000pt;}
.y207{bottom:62.592000pt;}
.yac{bottom:65.632000pt;}
.y10e{bottom:66.120000pt;}
.y1ba{bottom:68.032000pt;}
.yc3{bottom:68.192000pt;}
.y1d8{bottom:70.592000pt;}
.y70{bottom:72.512000pt;}
.y4b{bottom:75.232000pt;}
.y14f{bottom:75.872000pt;}
.y1a4{bottom:78.112000pt;}
.y171{bottom:80.512000pt;}
.y206{bottom:80.992000pt;}
.y129{bottom:81.792000pt;}
.yed{bottom:82.752000pt;}
.y1b9{bottom:86.432000pt;}
.yab{bottom:88.352000pt;}
.y1d7{bottom:88.992000pt;}
.y6f{bottom:90.912000pt;}
.y10d{bottom:91.720000pt;}
.y187{bottom:92.192000pt;}
.y4a{bottom:93.632000pt;}
.y14e{bottom:94.272000pt;}
.y1a3{bottom:96.512000pt;}
.y205{bottom:99.392000pt;}
.yec{bottom:101.152000pt;}
.yc2{bottom:105.792000pt;}
.y1d6{bottom:107.392000pt;}
.y6e{bottom:109.312000pt;}
.y186{bottom:110.592000pt;}
.y49{bottom:112.032000pt;}
.y14d{bottom:112.672000pt;}
.y1a2{bottom:114.912000pt;}
.y170{bottom:115.232000pt;}
.y10b{bottom:117.160000pt;}
.y204{bottom:117.792000pt;}
.y127{bottom:118.120000pt;}
.yeb{bottom:119.552000pt;}
.y1b8{bottom:123.392000pt;}
.y1d5{bottom:125.792000pt;}
.y6d{bottom:127.712000pt;}
.y185{bottom:128.992000pt;}
.y48{bottom:130.432000pt;}
.y14c{bottom:131.072000pt;}
.y23{bottom:131.392000pt;}
.yaa{bottom:132.832000pt;}
.y1a1{bottom:133.312000pt;}
.y16f{bottom:133.626667pt;}
.y203{bottom:136.186667pt;}
.yea{bottom:137.946667pt;}
.yc1{bottom:140.506667pt;}
.y1b7{bottom:141.786667pt;}
.y126{bottom:142.440000pt;}
.y109{bottom:142.760000pt;}
.y1d4{bottom:144.186667pt;}
.y6c{bottom:146.106667pt;}
.y184{bottom:147.386667pt;}
.y47{bottom:148.826667pt;}
.y14b{bottom:149.466667pt;}
.y22{bottom:149.786667pt;}
.ya9{bottom:151.226667pt;}
.y1a0{bottom:151.706667pt;}
.y16e{bottom:152.026667pt;}
.y202{bottom:154.586667pt;}
.ye9{bottom:156.346667pt;}
.yc0{bottom:158.906667pt;}
.y1b6{bottom:160.186667pt;}
.y1d3{bottom:162.586667pt;}
.y6b{bottom:164.506667pt;}
.y183{bottom:165.786667pt;}
.y46{bottom:167.226667pt;}
.y21{bottom:168.186667pt;}
.ya8{bottom:169.626667pt;}
.y19f{bottom:170.106667pt;}
.y16d{bottom:170.426667pt;}
.y201{bottom:172.986667pt;}
.ye8{bottom:174.746667pt;}
.ybf{bottom:177.306667pt;}
.y1b5{bottom:178.586667pt;}
.y1d2{bottom:180.986667pt;}
.y6a{bottom:182.906667pt;}
.y45{bottom:185.626667pt;}
.y14a{bottom:186.266667pt;}
.y20{bottom:186.586667pt;}
.y125{bottom:187.866667pt;}
.ya7{bottom:188.026667pt;}
.y19e{bottom:188.506667pt;}
.y16c{bottom:188.826667pt;}
.y108{bottom:189.626667pt;}
.y200{bottom:191.386667pt;}
.ye7{bottom:193.146667pt;}
.ybe{bottom:195.706667pt;}
.y1b4{bottom:196.986667pt;}
.y1d1{bottom:199.386667pt;}
.y69{bottom:201.306667pt;}
.y182{bottom:203.386667pt;}
.y44{bottom:204.026667pt;}
.y1f{bottom:204.986667pt;}
.y16b{bottom:207.226667pt;}
.y1ff{bottom:209.786667pt;}
.ybd{bottom:214.106667pt;}
.y1b3{bottom:215.386667pt;}
.y1d0{bottom:217.786667pt;}
.y68{bottom:219.706667pt;}
.y149{bottom:223.546667pt;}
.ya6{bottom:225.146667pt;}
.y124{bottom:225.306667pt;}
.y16a{bottom:225.626667pt;}
.y107{bottom:226.906667pt;}
.y1fe{bottom:228.186667pt;}
.ye6{bottom:229.946667pt;}
.ybc{bottom:232.506667pt;}
.y1b2{bottom:233.786667pt;}
.y1cf{bottom:236.186667pt;}
.y181{bottom:238.106667pt;}
.y8c{bottom:238.426667pt;}
.y43{bottom:241.146667pt;}
.y148{bottom:241.946667pt;}
.ya5{bottom:243.546667pt;}
.y123{bottom:243.706667pt;}
.y1e{bottom:243.866667pt;}
.y169{bottom:244.026667pt;}
.y106{bottom:245.306667pt;}
.y1fd{bottom:246.586667pt;}
.y1ce{bottom:254.586667pt;}
.y180{bottom:256.506667pt;}
.y67{bottom:256.826667pt;}
.y42{bottom:259.546667pt;}
.y147{bottom:260.346667pt;}
.ya4{bottom:261.946667pt;}
.y122{bottom:262.106667pt;}
.y19d{bottom:262.426667pt;}
.y105{bottom:263.746667pt;}
.y1fc{bottom:265.026667pt;}
.ye5{bottom:267.266667pt;}
.ybb{bottom:269.186667pt;}
.y1b1{bottom:270.946667pt;}
.y1cd{bottom:273.026667pt;}
.y17f{bottom:274.946667pt;}
.y66{bottom:275.266667pt;}
.y41{bottom:277.986667pt;}
.y146{bottom:278.786667pt;}
.y121{bottom:280.546667pt;}
.y19c{bottom:280.866667pt;}
.y168{bottom:281.186667pt;}
.y1d{bottom:282.306667pt;}
.y1fb{bottom:283.426667pt;}
.ye4{bottom:285.666667pt;}
.y1b0{bottom:289.346667pt;}
.y17e{bottom:293.346667pt;}
.y65{bottom:293.666667pt;}
.y40{bottom:296.226667pt;}
.y145{bottom:297.186667pt;}
.ya3{bottom:298.946667pt;}
.y19b{bottom:299.266667pt;}
.y167{bottom:299.586667pt;}
.y104{bottom:300.546667pt;}
.y1c{bottom:300.706667pt;}
.y1fa{bottom:301.826667pt;}
.ye3{bottom:304.066667pt;}
.yba{bottom:306.946667pt;}
.y1af{bottom:307.746667pt;}
.y1cc{bottom:310.146667pt;}
.y17d{bottom:311.746667pt;}
.y64{bottom:312.066667pt;}
.y120{bottom:317.186667pt;}
.ya2{bottom:317.346667pt;}
.y19a{bottom:317.666667pt;}
.y166{bottom:317.986667pt;}
.y1b{bottom:319.106667pt;}
.y1f9{bottom:320.226667pt;}
.ye2{bottom:322.466667pt;}
.y1ae{bottom:326.146667pt;}
.y1cb{bottom:328.546667pt;}
.y17c{bottom:330.146667pt;}
.y63{bottom:330.466667pt;}
.yb9{bottom:332.546667pt;}
.y3f{bottom:333.826667pt;}
.y144{bottom:333.986667pt;}
.ya1{bottom:335.746667pt;}
.y199{bottom:336.066667pt;}
.y165{bottom:336.386667pt;}
.y1a{bottom:337.506667pt;}
.y103{bottom:338.466667pt;}
.y1f8{bottom:338.626667pt;}
.ye1{bottom:340.866667pt;}
.y1ad{bottom:344.546667pt;}
.y1ca{bottom:346.946667pt;}
.y17b{bottom:348.546667pt;}
.y62{bottom:348.866667pt;}
.y198{bottom:354.466667pt;}
.y11f{bottom:354.626667pt;}
.y164{bottom:354.786667pt;}
.y19{bottom:355.906667pt;}
.y3e{bottom:356.706667pt;}
.y1f7{bottom:357.026667pt;}
.yb8{bottom:357.986667pt;}
.ye0{bottom:359.266667pt;}
.y102{bottom:361.186667pt;}
.y1ac{bottom:362.946667pt;}
.y1c9{bottom:365.346667pt;}
.y17a{bottom:366.626667pt;}
.y61{bottom:367.266667pt;}
.y143{bottom:371.426667pt;}
.ya0{bottom:372.546667pt;}
.y197{bottom:372.866667pt;}
.y11e{bottom:373.026667pt;}
.y163{bottom:373.186667pt;}
.y18{bottom:374.306667pt;}
.y1f6{bottom:375.426667pt;}
.ydf{bottom:377.666667pt;}
.yb7{bottom:383.586667pt;}
.y1c8{bottom:383.746667pt;}
.y3d{bottom:385.666667pt;}
.y142{bottom:389.826667pt;}
.y196{bottom:391.266667pt;}
.y11d{bottom:391.426667pt;}
.y17{bottom:392.706667pt;}
.y1f5{bottom:393.826667pt;}
.yde{bottom:396.066667pt;}
.y1ab{bottom:400.386667pt;}
.y1c7{bottom:402.146667pt;}
.y60{bottom:403.906667pt;}
.y179{bottom:404.066667pt;}
.y8b{bottom:404.226667pt;}
.y101{bottom:405.506667pt;}
.y141{bottom:408.226667pt;}
.yb6{bottom:409.026667pt;}
.y195{bottom:409.666667pt;}
.y11c{bottom:409.826667pt;}
.y9f{bottom:409.986667pt;}
.y16{bottom:411.106667pt;}
.y1f4{bottom:412.226667pt;}
.y3c{bottom:420.226667pt;}
.y1c6{bottom:420.546667pt;}
.y178{bottom:422.466667pt;}
.y8a{bottom:422.626667pt;}
.y100{bottom:423.906667pt;}
.y1aa{bottom:425.826667pt;}
.y140{bottom:426.626667pt;}
.y11b{bottom:428.226667pt;}
.y9e{bottom:428.386667pt;}
.y162{bottom:429.186667pt;}
.y15{bottom:429.506667pt;}
.y1f3{bottom:430.626667pt;}
.ydd{bottom:432.866667pt;}
.yb5{bottom:434.626667pt;}
.y3b{bottom:438.626667pt;}
.y1c5{bottom:438.946667pt;}
.y177{bottom:440.866667pt;}
.y89{bottom:441.026667pt;}
.y5f{bottom:441.666667pt;}
.yff{bottom:442.306667pt;}
.y13f{bottom:445.026667pt;}
.y11a{bottom:446.626667pt;}
.y9d{bottom:446.786667pt;}
.y14{bottom:447.906667pt;}
.y1f2{bottom:448.866667pt;}
.y194{bottom:450.786667pt;}
.y1a9{bottom:451.426667pt;}
.y3a{bottom:457.026667pt;}
.y176{bottom:459.266667pt;}
.y88{bottom:459.426667pt;}
.yb3{bottom:460.066667pt;}
.yfe{bottom:460.706667pt;}
.y13e{bottom:463.426667pt;}
.y161{bottom:463.746667pt;}
.y119{bottom:465.026667pt;}
.y9c{bottom:465.186667pt;}
.y13{bottom:466.306667pt;}
.y1f1{bottom:467.266667pt;}
.ydc{bottom:470.786667pt;}
.y39{bottom:475.426667pt;}
.y1c4{bottom:476.066667pt;}
.y5e{bottom:476.226667pt;}
.y1a8{bottom:476.866667pt;}
.y175{bottom:477.666667pt;}
.y87{bottom:477.826667pt;}
.yfd{bottom:479.106667pt;}
.y193{bottom:479.746667pt;}
.y160{bottom:482.146667pt;}
.y12{bottom:484.706667pt;}
.yb1{bottom:485.666667pt;}
.y1c3{bottom:494.493333pt;}
.y5d{bottom:494.653333pt;}
.y86{bottom:496.253333pt;}
.yfc{bottom:497.533333pt;}
.y13d{bottom:500.093333pt;}
.y15f{bottom:500.573333pt;}
.y9b{bottom:502.173333pt;}
.y118{bottom:502.493333pt;}
.y11{bottom:503.133333pt;}
.y1f0{bottom:504.093333pt;}
.ydb{bottom:505.533333pt;}
.y38{bottom:512.573333pt;}
.y1c2{bottom:512.893333pt;}
.y5c{bottom:513.053333pt;}
.y192{bottom:514.493333pt;}
.y85{bottom:514.653333pt;}
.y15e{bottom:518.973333pt;}
.y9a{bottom:520.573333pt;}
.y10{bottom:521.533333pt;}
.y1ef{bottom:522.493333pt;}
.yda{bottom:523.933333pt;}
.y37{bottom:530.973333pt;}
.y1c1{bottom:531.293333pt;}
.y5b{bottom:531.453333pt;}
.yb0{bottom:532.573333pt;}
.y191{bottom:532.893333pt;}
.y84{bottom:533.053333pt;}
.yfb{bottom:534.653333pt;}
.y117{bottom:536.253333pt;}
.y15d{bottom:537.373333pt;}
.y13c{bottom:537.533333pt;}
.y99{bottom:538.973333pt;}
.yf{bottom:539.933333pt;}
.y1ee{bottom:540.893333pt;}
.yd9{bottom:542.333333pt;}
.y36{bottom:549.373333pt;}
.y1c0{bottom:549.693333pt;}
.y5a{bottom:549.853333pt;}
.y190{bottom:551.133333pt;}
.y83{bottom:551.453333pt;}
.yfa{bottom:553.053333pt;}
.y15c{bottom:555.773333pt;}
.y13b{bottom:555.933333pt;}
.ye{bottom:558.333333pt;}
.y1ed{bottom:559.293333pt;}
.yd8{bottom:560.733333pt;}
.y116{bottom:561.853333pt;}
.y35{bottom:567.773333pt;}
.y1bf{bottom:568.093333pt;}
.y59{bottom:568.253333pt;}
.y18f{bottom:569.533333pt;}
.y82{bottom:569.853333pt;}
.yf9{bottom:571.453333pt;}
.y15b{bottom:574.173333pt;}
.yd{bottom:576.733333pt;}
.y1ec{bottom:577.693333pt;}
.y98{bottom:580.253333pt;}
.y34{bottom:586.173333pt;}
.y1be{bottom:586.493333pt;}
.y58{bottom:586.653333pt;}
.y115{bottom:587.293333pt;}
.y18e{bottom:587.933333pt;}
.y81{bottom:588.253333pt;}
.yf8{bottom:589.853333pt;}
.y15a{bottom:592.573333pt;}
.y13a{bottom:593.533333pt;}
.yc{bottom:595.133333pt;}
.y1eb{bottom:596.093333pt;}
.yd7{bottom:597.693333pt;}
.y33{bottom:604.573333pt;}
.y57{bottom:605.053333pt;}
.y18d{bottom:606.333333pt;}
.y80{bottom:606.653333pt;}
.yf7{bottom:608.253333pt;}
.y97{bottom:609.053333pt;}
.y159{bottom:610.973333pt;}
.y113{bottom:612.893333pt;}
.y1ea{bottom:614.493333pt;}
.yd6{bottom:616.093333pt;}
.y56{bottom:623.453333pt;}
.y18c{bottom:624.733333pt;}
.y7f{bottom:625.053333pt;}
.yf6{bottom:626.653333pt;}
.y139{bottom:628.253333pt;}
.y1e9{bottom:632.893333pt;}
.yb{bottom:634.013333pt;}
.yd5{bottom:634.493333pt;}
.y32{bottom:641.373333pt;}
.y55{bottom:641.853333pt;}
.y174{bottom:643.133333pt;}
.y7e{bottom:643.453333pt;}
.y96{bottom:643.773333pt;}
.y138{bottom:646.653333pt;}
.y158{bottom:648.093333pt;}
.y1e8{bottom:651.293333pt;}
.yd4{bottom:652.893333pt;}
.y112{bottom:659.773333pt;}
.y54{bottom:660.253333pt;}
.y1a7{bottom:660.573333pt;}
.y7d{bottom:661.853333pt;}
.y95{bottom:662.173333pt;}
.yf5{bottom:664.253333pt;}
.y137{bottom:665.053333pt;}
.y157{bottom:666.493333pt;}
.y1e7{bottom:669.693333pt;}
.yd3{bottom:671.293333pt;}
.ya{bottom:673.213333pt;}
.y31{bottom:678.653333pt;}
.y1a6{bottom:678.973333pt;}
.y7c{bottom:680.253333pt;}
.y94{bottom:680.573333pt;}
.y18b{bottom:680.893333pt;}
.yaf{bottom:681.053333pt;}
.y156{bottom:684.893333pt;}
.y1e6{bottom:688.093333pt;}
.y9{bottom:696.253333pt;}
.y30{bottom:697.053333pt;}
.y53{bottom:697.373333pt;}
.y7b{bottom:698.653333pt;}
.y93{bottom:698.973333pt;}
.y136{bottom:701.693333pt;}
.y155{bottom:703.293333pt;}
.y1e5{bottom:706.493333pt;}
.yd2{bottom:708.893333pt;}
.y2f{bottom:715.493333pt;}
.y52{bottom:715.813333pt;}
.y92{bottom:717.413333pt;}
.y8{bottom:719.333333pt;}
.y154{bottom:721.733333pt;}
.y1e4{bottom:724.933333pt;}
.yd0{bottom:727.973333pt;}
.y2e{bottom:733.893333pt;}
.y51{bottom:734.213333pt;}
.y7a{bottom:735.813333pt;}
.y135{bottom:739.173333pt;}
.y153{bottom:740.133333pt;}
.y7{bottom:741.893333pt;}
.y1e3{bottom:743.333333pt;}
.y2d{bottom:752.293333pt;}
.y50{bottom:752.613333pt;}
.y79{bottom:754.053333pt;}
.y91{bottom:754.213333pt;}
.y134{bottom:757.573333pt;}
.y152{bottom:758.533333pt;}
.y1e2{bottom:761.733333pt;}
.y6{bottom:764.773333pt;}
.y18a{bottom:770.693333pt;}
.y4f{bottom:771.013333pt;}
.y90{bottom:772.613333pt;}
.yce{bottom:773.413333pt;}
.y133{bottom:775.973333pt;}
.y1e1{bottom:780.133333pt;}
.y2c{bottom:789.413333pt;}
.y111{bottom:789.573333pt;}
.y8f{bottom:791.013333pt;}
.y78{bottom:791.813333pt;}
.y132{bottom:794.373333pt;}
.y151{bottom:796.133333pt;}
.y1e0{bottom:798.533333pt;}
.y2b{bottom:807.813333pt;}
.y110{bottom:807.973333pt;}
.y8e{bottom:809.253333pt;}
.yf4{bottom:809.573333pt;}
.y5{bottom:811.333333pt;}
.y131{bottom:812.773333pt;}
.y1df{bottom:816.933333pt;}
.yca{bottom:818.693333pt;}
.y150{bottom:818.853333pt;}
.y2a{bottom:826.213333pt;}
.y77{bottom:826.373333pt;}
.yf3{bottom:827.973333pt;}
.y209{bottom:828.293333pt;}
.y1de{bottom:835.333333pt;}
.y29{bottom:844.613333pt;}
.y76{bottom:844.773333pt;}
.yf2{bottom:846.373333pt;}
.y8d{bottom:847.013333pt;}
.y4{bottom:847.653333pt;}
.y130{bottom:850.213333pt;}
.y1dd{bottom:853.733333pt;}
.y28{bottom:863.013333pt;}
.y75{bottom:863.173333pt;}
.yc9{bottom:864.133333pt;}
.yf1{bottom:864.773333pt;}
.y1dc{bottom:872.133333pt;}
.y12f{bottom:875.653333pt;}
.y27{bottom:881.413333pt;}
.y74{bottom:881.573333pt;}
.yf0{bottom:883.173333pt;}
.yc7{bottom:889.573333pt;}
.y1db{bottom:890.533333pt;}
.y73{bottom:899.973333pt;}
.y12e{bottom:901.253333pt;}
.yef{bottom:901.573333pt;}
.y26{bottom:918.373333pt;}
.y12d{bottom:926.693333pt;}
.y1da{bottom:928.933333pt;}
.y3{bottom:932.293333pt;}
.yc6{bottom:936.480000pt;}
.y25{bottom:936.800000pt;}
.yee{bottom:939.200000pt;}
.y2{bottom:948.800000pt;}
.y1{bottom:965.440000pt;}
.y24{bottom:983.360000pt;}
.he{height:20.146667pt;}
.h13{height:20.152000pt;}
.hf{height:20.160000pt;}
.h16{height:20.186667pt;}
.hd{height:20.192000pt;}
.h10{height:20.306667pt;}
.h15{height:20.312000pt;}
.h14{height:28.480000pt;}
.h12{height:39.986667pt;}
.h11{height:40.146667pt;}
.hb{height:52.108438pt;}
.h1{height:52.134375pt;}
.h7{height:52.834688pt;}
.hc{height:57.375000pt;}
.h6{height:62.812500pt;}
.h8{height:64.500000pt;}
.h9{height:65.781915pt;}
.h5{height:67.837500pt;}
.h4{height:78.515625pt;}
.h3{height:80.625000pt;}
.ha{height:94.218750pt;}
.h17{height:96.750000pt;}
.h2{height:118.035000pt;}
.h0{height:1044.000000pt;}
.w14{width:45.266667pt;}
.w12{width:45.280000pt;}
.w11{width:45.458667pt;}
.w17{width:48.498667pt;}
.w15{width:62.386667pt;}
.w18{width:64.480000pt;}
.w19{width:68.032000pt;}
.wc{width:82.258667pt;}
.w2{width:90.258667pt;}
.w3{width:92.800000pt;}
.w13{width:99.872000pt;}
.w9{width:100.512000pt;}
.wf{width:102.546667pt;}
.wb{width:105.746667pt;}
.w1{width:109.792000pt;}
.w8{width:119.218667pt;}
.wa{width:124.498667pt;}
.w4{width:134.586667pt;}
.wd{width:141.466667pt;}
.w7{width:142.106667pt;}
.w16{width:143.066667pt;}
.we{width:149.453333pt;}
.w10{width:149.466667pt;}
.w1c{width:163.053333pt;}
.w1a{width:183.586667pt;}
.w1b{width:237.466667pt;}
.w6{width:255.733333pt;}
.w5{width:282.613333pt;}
.w0{width:804.000000pt;}
.x0{left:0.000000pt;}
.x12{left:0.946667pt;}
.xa{left:16.352000pt;}
.x20{left:22.080000pt;}
.x1e{left:24.506667pt;}
.x23{left:25.426667pt;}
.x2c{left:27.186667pt;}
.x25{left:34.386667pt;}
.xd{left:40.672000pt;}
.x18{left:45.792000pt;}
.x26{left:46.752000pt;}
.x13{left:48.992000pt;}
.x1{left:59.360000pt;}
.x1c{left:61.280000pt;}
.x9{left:62.400000pt;}
.x29{left:65.152000pt;}
.x2{left:73.600000pt;}
.x7{left:74.720000pt;}
.x8{left:87.712000pt;}
.x11{left:92.186667pt;}
.xf{left:114.586667pt;}
.x3{left:157.626667pt;}
.xb{left:175.560000pt;}
.x6{left:180.986667pt;}
.xe{left:200.360000pt;}
.x14{left:207.880000pt;}
.x27{left:208.840000pt;}
.x1d{left:212.680000pt;}
.x5{left:215.066667pt;}
.x2a{left:249.186667pt;}
.x1f{left:260.066667pt;}
.xc{left:269.186667pt;}
.x19{left:293.506667pt;}
.x21{left:307.426667pt;}
.x28{left:328.546667pt;}
.x15{left:330.466667pt;}
.x4{left:402.173333pt;}
.x22{left:409.386667pt;}
.x16{left:434.186667pt;}
.x1a{left:438.186667pt;}
.x24{left:456.746667pt;}
.x10{left:486.186667pt;}
.x2b{left:490.026667pt;}
.x17{left:562.053333pt;}
.x1b{left:591.013333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  