
    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_cff7d817df84050972ba32da.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_fc45986af8325c99e8e9f517.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_c8e2eadc450c2114d806738b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_de5edcb2b3b7f08381d53734.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_16511edaf5a9a2f255a9b4a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_606f7b69206144211a9cc353.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_79648bffc893a63ee8f0f021.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a25c8cf62e7071f39a83eaf1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.666000px;}
.ls14{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.027360px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.027360px;}
.ls4{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.054720px;}
.lsb{letter-spacing:0.070560px;}
.ls1d{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.774000px;}
.ls22{letter-spacing:11.466720px;}
.ls16{letter-spacing:40.620000px;}
.ls21{letter-spacing:41.682720px;}
.ls1f{letter-spacing:41.706720px;}
.lsc{letter-spacing:43.842720px;}
.lsd{letter-spacing:43.866720px;}
.ls1b{letter-spacing:57.060000px;}
.ls1e{letter-spacing:93.180000px;}
.ls0{letter-spacing:100.260000px;}
.ls2{letter-spacing:634.476000px;}
.ls1a{letter-spacing:839.136000px;}
.ls19{letter-spacing:1014.096000px;}
.ls1c{letter-spacing:1019.136000px;}
.lse{letter-spacing:1392.096000px;}
.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;}
}
.ws0{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.120000px;}
.ws12{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.886720px;}
.ws2{word-spacing:-14.833200px;}
.ws3{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.274720px;}
.wsc{word-spacing:-14.247360px;}
.ws8{word-spacing:-14.220000px;}
.wse{word-spacing:-14.192640px;}
.ws9{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-0.059760px;}
.wsb{word-spacing:0.000000px;}
._3{margin-left:-1.243440px;}
._0{width:1.161840px;}
._1{width:2.669760px;}
._a{width:3.711600px;}
._4{width:5.139360px;}
._5{width:7.107120px;}
._12{width:8.134560px;}
._13{width:9.272880px;}
._18{width:10.597680px;}
._8{width:12.011760px;}
._7{width:13.147200px;}
._b{width:16.314480px;}
._c{width:17.792880px;}
._1a{width:19.362240px;}
._23{width:20.617200px;}
._19{width:21.666480px;}
._1e{width:23.127120px;}
._1b{width:24.475200px;}
._6{width:26.499360px;}
._2{width:28.019520px;}
._11{width:29.162880px;}
._14{width:30.289200px;}
._28{width:31.305120px;}
._e{width:32.399040px;}
._d{width:33.525360px;}
._9{width:35.172240px;}
._22{width:36.334080px;}
._26{width:37.562640px;}
._2c{width:38.580240px;}
._1d{width:39.766800px;}
._f{width:41.208000px;}
._1c{width:43.239840px;}
._1f{width:45.835920px;}
._20{width:47.544480px;}
._24{width:49.062960px;}
._16{width:52.071120px;}
._17{width:53.186400px;}
._10{width:55.815840px;}
._25{width:56.865120px;}
._2b{width:60.809280px;}
._21{width:62.389440px;}
._27{width:66.187680px;}
._31{width:68.432400px;}
._2a{width:69.560640px;}
._29{width:70.696080px;}
._2e{width:77.726400px;}
._15{width:84.679920px;}
._30{width:89.918160px;}
._2d{width:91.106640px;}
._2f{width:272.386080px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:2.880000px;}
.yb0{bottom:3.060000px;}
.y48{bottom:3.240000px;}
.yc7{bottom:4.500000px;}
.yf8{bottom:4.680000px;}
.yfa{bottom:5.940000px;}
.yf7{bottom:6.120000px;}
.yd0{bottom:10.080000px;}
.yae{bottom:10.260000px;}
.yd3{bottom:10.620000px;}
.yb1{bottom:10.800000px;}
.y47{bottom:11.700000px;}
.yf5{bottom:11.874000px;}
.y76{bottom:11.880000px;}
.y122{bottom:11.925000px;}
.yc8{bottom:12.240000px;}
.yd1{bottom:18.360000px;}
.yaf{bottom:18.540000px;}
.yc6{bottom:20.160000px;}
.y46{bottom:20.340000px;}
.yf4{bottom:20.514000px;}
.y77{bottom:20.520000px;}
.ye5{bottom:20.550000px;}
.y121{bottom:20.565000px;}
.y104{bottom:29.160000px;}
.yf1{bottom:37.800000px;}
.y109{bottom:55.080000px;}
.y103{bottom:55.125000px;}
.y2{bottom:79.416000px;}
.y1{bottom:100.116000px;}
.y79{bottom:118.476000px;}
.yf6{bottom:122.796000px;}
.y129{bottom:123.336000px;}
.yce{bottom:124.416000px;}
.y41{bottom:124.596000px;}
.y32{bottom:133.956000px;}
.y78{bottom:136.476000px;}
.ycd{bottom:139.176000px;}
.y128{bottom:140.616000px;}
.y40{bottom:141.876000px;}
.yac{bottom:142.596000px;}
.yf3{bottom:143.676000px;}
.y31{bottom:149.616000px;}
.y75{bottom:154.470000px;}
.ycc{bottom:157.170000px;}
.y127{bottom:157.890000px;}
.y3f{bottom:159.150000px;}
.yab{bottom:159.870000px;}
.y30{bottom:165.630000px;}
.ycb{bottom:175.170000px;}
.y3e{bottom:176.430000px;}
.yaa{bottom:177.150000px;}
.y2f{bottom:177.510000px;}
.yf2{bottom:178.950000px;}
.y126{bottom:192.450000px;}
.y74{bottom:192.990000px;}
.y3d{bottom:193.710000px;}
.ya9{bottom:194.430000px;}
.y125{bottom:209.550000px;}
.y73{bottom:210.090000px;}
.yca{bottom:210.450000px;}
.y3c{bottom:210.990000px;}
.ya8{bottom:211.710000px;}
.yf0{bottom:214.050000px;}
.y124{bottom:226.830000px;}
.y3b{bottom:228.090000px;}
.yc9{bottom:228.450000px;}
.ya7{bottom:228.990000px;}
.y123{bottom:241.590000px;}
.y72{bottom:244.650000px;}
.y3a{bottom:245.370000px;}
.ya6{bottom:246.090000px;}
.yc5{bottom:246.450000px;}
.y71{bottom:261.930000px;}
.y39{bottom:262.650000px;}
.ya5{bottom:263.370000px;}
.y2e{bottom:269.490000px;}
.yef{bottom:269.850000px;}
.y120{bottom:276.870000px;}
.ya4{bottom:278.130000px;}
.y70{bottom:279.210000px;}
.y38{bottom:279.930000px;}
.yc4{bottom:284.790000px;}
.y2d{bottom:286.410000px;}
.ya3{bottom:296.175000px;}
.y6f{bottom:296.535000px;}
.y37{bottom:297.255000px;}
.y2c{bottom:302.115000px;}
.yee{bottom:304.455000px;}
.y11f{bottom:312.195000px;}
.y6e{bottom:313.635000px;}
.ya2{bottom:314.175000px;}
.y36{bottom:314.535000px;}
.y2b{bottom:317.595000px;}
.yed{bottom:321.735000px;}
.y6d{bottom:330.915000px;}
.y35{bottom:331.635000px;}
.ya1{bottom:332.175000px;}
.y2a{bottom:333.075000px;}
.yc3{bottom:336.675000px;}
.yec{bottom:338.835000px;}
.y11e{bottom:347.475000px;}
.y6c{bottom:348.195000px;}
.y29{bottom:348.915000px;}
.ya0{bottom:350.175000px;}
.yc2{bottom:353.955000px;}
.yeb{bottom:356.115000px;}
.y6b{bottom:365.475000px;}
.y28{bottom:366.195000px;}
.y9f{bottom:368.175000px;}
.yc1{bottom:371.055000px;}
.yea{bottom:373.395000px;}
.y6a{bottom:382.755000px;}
.y27{bottom:383.475000px;}
.y9e{bottom:386.175000px;}
.ye9{bottom:388.155000px;}
.yc0{bottom:388.335000px;}
.y69{bottom:397.515000px;}
.y26{bottom:400.755000px;}
.y9d{bottom:404.175000px;}
.ybf{bottom:405.615000px;}
.y68{bottom:415.515000px;}
.y25{bottom:417.855000px;}
.ybe{bottom:422.895000px;}
.ye8{bottom:423.435000px;}
.y9c{bottom:425.415000px;}
.y67{bottom:433.515000px;}
.y24{bottom:435.135000px;}
.ybd{bottom:440.175000px;}
.y9b{bottom:442.695000px;}
.y66{bottom:451.515000px;}
.y23{bottom:452.415000px;}
.y11d{bottom:453.135000px;}
.ybc{bottom:457.455000px;}
.ye7{bottom:458.715000px;}
.y9a{bottom:459.975000px;}
.y65{bottom:469.515000px;}
.y22{bottom:469.695000px;}
.ybb{bottom:474.555000px;}
.y99{bottom:477.255000px;}
.y21{bottom:486.975000px;}
.y64{bottom:487.515000px;}
.y11c{bottom:488.415000px;}
.yba{bottom:491.835000px;}
.ye6{bottom:493.815000px;}
.y98{bottom:494.355000px;}
.y20{bottom:504.255000px;}
.y63{bottom:505.515000px;}
.yb9{bottom:509.115000px;}
.y97{bottom:511.635000px;}
.y1f{bottom:521.355000px;}
.y62{bottom:523.515000px;}
.yb8{bottom:526.395000px;}
.y11b{bottom:526.935000px;}
.y96{bottom:528.915000px;}
.ye4{bottom:529.095000px;}
.y1e{bottom:538.635000px;}
.yb7{bottom:541.155000px;}
.y61{bottom:541.515000px;}
.y95{bottom:546.195000px;}
.y1d{bottom:555.945000px;}
.yb6{bottom:559.185000px;}
.y11a{bottom:561.345000px;}
.y60{bottom:562.785000px;}
.y94{bottom:563.505000px;}
.ye3{bottom:564.405000px;}
.y1c{bottom:573.225000px;}
.y108{bottom:576.105000px;}
.yb5{bottom:577.185000px;}
.y5f{bottom:579.885000px;}
.y93{bottom:580.785000px;}
.y1b{bottom:590.505000px;}
.y5e{bottom:597.165000px;}
.y92{bottom:597.885000px;}
.ye2{bottom:599.685000px;}
.y119{bottom:601.125000px;}
.y1a{bottom:607.785000px;}
.yb4{bottom:612.465000px;}
.y5d{bottom:614.445000px;}
.y91{bottom:615.165000px;}
.y118{bottom:618.405000px;}
.y19{bottom:624.885000px;}
.y5c{bottom:631.725000px;}
.y90{bottom:632.445000px;}
.ye1{bottom:634.965000px;}
.y117{bottom:635.685000px;}
.y18{bottom:642.165000px;}
.y107{bottom:645.945000px;}
.yb3{bottom:647.745000px;}
.y5b{bottom:649.005000px;}
.y8f{bottom:649.725000px;}
.y116{bottom:652.965000px;}
.y17{bottom:659.445000px;}
.yb2{bottom:665.745000px;}
.y5a{bottom:666.285000px;}
.y8e{bottom:667.005000px;}
.y115{bottom:670.245000px;}
.ye0{bottom:673.485000px;}
.y16{bottom:676.725000px;}
.y59{bottom:683.385000px;}
.y8d{bottom:684.285000px;}
.y114{bottom:687.345000px;}
.y15{bottom:694.005000px;}
.y106{bottom:698.505000px;}
.y58{bottom:700.665000px;}
.yad{bottom:700.845000px;}
.y8c{bottom:701.385000px;}
.y113{bottom:704.625000px;}
.ydf{bottom:707.865000px;}
.y14{bottom:711.105000px;}
.y57{bottom:717.945000px;}
.y8b{bottom:718.665000px;}
.y112{bottom:721.905000px;}
.yde{bottom:725.145000px;}
.y13{bottom:728.385000px;}
.y105{bottom:733.605000px;}
.y56{bottom:735.225000px;}
.y8a{bottom:735.945000px;}
.y111{bottom:739.185000px;}
.ydd{bottom:742.425000px;}
.y12{bottom:745.665000px;}
.y55{bottom:752.505000px;}
.y89{bottom:753.225000px;}
.y110{bottom:756.465000px;}
.ydc{bottom:759.705000px;}
.y11{bottom:762.945000px;}
.y54{bottom:767.265000px;}
.y102{bottom:768.885000px;}
.y88{bottom:770.505000px;}
.y10f{bottom:773.745000px;}
.ydb{bottom:776.805000px;}
.y10{bottom:780.225000px;}
.y53{bottom:785.265000px;}
.y87{bottom:787.605000px;}
.y10e{bottom:790.845000px;}
.yda{bottom:791.565000px;}
.y34{bottom:797.505000px;}
.y52{bottom:803.265000px;}
.y86{bottom:804.885000px;}
.y10d{bottom:808.170000px;}
.yd9{bottom:809.610000px;}
.yf{bottom:814.650000px;}
.y85{bottom:819.690000px;}
.y51{bottom:821.310000px;}
.y10c{bottom:825.450000px;}
.ye{bottom:831.930000px;}
.y84{bottom:837.690000px;}
.y101{bottom:838.770000px;}
.y50{bottom:839.310000px;}
.y10b{bottom:842.730000px;}
.yd8{bottom:844.890000px;}
.yd{bottom:849.210000px;}
.y83{bottom:855.690000px;}
.y4f{bottom:857.310000px;}
.y100{bottom:860.010000px;}
.yd7{bottom:862.890000px;}
.yc{bottom:866.490000px;}
.y82{bottom:873.690000px;}
.y4e{bottom:875.310000px;}
.yff{bottom:877.110000px;}
.yb{bottom:883.770000px;}
.y81{bottom:891.690000px;}
.y4d{bottom:893.310000px;}
.y10a{bottom:894.390000px;}
.yd6{bottom:898.170000px;}
.ya{bottom:901.050000px;}
.y4c{bottom:911.310000px;}
.yfe{bottom:911.670000px;}
.y9{bottom:918.150000px;}
.yfd{bottom:926.430000px;}
.y80{bottom:926.970000px;}
.y4b{bottom:929.310000px;}
.yd5{bottom:933.450000px;}
.y8{bottom:935.430000px;}
.y7f{bottom:944.970000px;}
.y4a{bottom:947.310000px;}
.y7{bottom:952.710000px;}
.yfc{bottom:961.710000px;}
.y7e{bottom:962.970000px;}
.y49{bottom:965.310000px;}
.yd4{bottom:968.730000px;}
.y6{bottom:969.990000px;}
.y7d{bottom:980.970000px;}
.y45{bottom:983.310000px;}
.ycf{bottom:986.730000px;}
.y5{bottom:987.270000px;}
.yfb{bottom:996.990000px;}
.y7c{bottom:998.970000px;}
.y4{bottom:1004.550000px;}
.y7b{bottom:1016.970000px;}
.y33{bottom:1021.650000px;}
.yf9{bottom:1032.270000px;}
.y7a{bottom:1034.970000px;}
.y3{bottom:1038.930000px;}
.y44{bottom:1081.080000px;}
.y43{bottom:1100.880000px;}
.y42{bottom:1119.960000px;}
.hb{height:17.100000px;}
.hc{height:17.136000px;}
.hd{height:17.280000px;}
.hf{height:17.316000px;}
.h16{height:19.980000px;}
.h15{height:20.160000px;}
.h12{height:30.960000px;}
.h10{height:31.140000px;}
.ha{height:34.380000px;}
.he{height:34.560000px;}
.h13{height:34.596000px;}
.h7{height:51.519375px;}
.h18{height:51.660000px;}
.h14{height:51.840000px;}
.h5{height:52.998047px;}
.h11{height:54.421875px;}
.h8{height:55.824609px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.h1a{height:59.439023px;}
.h3{height:60.226875px;}
.h9{height:61.423863px;}
.h6{height:62.327813px;}
.h19{height:69.120000px;}
.h17{height:69.156000px;}
.h1{height:70.664062px;}
.h0{height:1188.000000px;}
.w36{width:30.960000px;}
.w2c{width:33.120000px;}
.w2b{width:43.560000px;}
.w2e{width:44.100000px;}
.w35{width:45.036000px;}
.w2a{width:45.540000px;}
.w17{width:45.936000px;}
.w31{width:46.620000px;}
.w1b{width:47.196000px;}
.w30{width:53.280000px;}
.w2f{width:57.276000px;}
.w33{width:61.200000px;}
.w27{width:61.956000px;}
.w2{width:62.460000px;}
.w34{width:64.080000px;}
.we{width:66.780000px;}
.w24{width:72.360000px;}
.wf{width:73.260000px;}
.w23{width:73.656000px;}
.w29{width:75.996000px;}
.w28{width:76.680000px;}
.w1a{width:79.200000px;}
.w1f{width:81.720000px;}
.w1d{width:89.136000px;}
.w26{width:89.820000px;}
.w11{width:94.140000px;}
.w10{width:94.176000px;}
.w12{width:94.320000px;}
.w21{width:94.896000px;}
.w22{width:95.040000px;}
.w19{width:97.236000px;}
.w4{width:98.640000px;}
.wa{width:101.376000px;}
.w7{width:112.176000px;}
.w5{width:113.436000px;}
.w2d{width:114.480000px;}
.w13{width:115.380000px;}
.w18{width:115.740000px;}
.w6{width:117.540000px;}
.w1e{width:119.340000px;}
.w1c{width:122.580000px;}
.wc{width:132.840000px;}
.wb{width:138.816000px;}
.w9{width:160.920000px;}
.w3{width:178.590000px;}
.w16{width:178.770000px;}
.w15{width:178.950000px;}
.wd{width:198.030000px;}
.w8{width:225.570000px;}
.w14{width:242.310000px;}
.w25{width:286.950000px;}
.w20{width:336.990000px;}
.w32{width:400.755000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x58{left:3.420000px;}
.x64{left:5.940000px;}
.x18{left:7.560000px;}
.x53{left:9.000000px;}
.x49{left:11.880000px;}
.x16{left:14.220000px;}
.x1b{left:16.020000px;}
.x1f{left:17.820000px;}
.x4b{left:18.930000px;}
.x24{left:19.980000px;}
.x1d{left:21.060000px;}
.x35{left:22.140000px;}
.x22{left:23.400000px;}
.x36{left:25.380000px;}
.x21{left:26.505000px;}
.x54{left:27.720000px;}
.x27{left:28.980000px;}
.x23{left:30.465000px;}
.x1a{left:33.120000px;}
.x34{left:35.460000px;}
.x2b{left:36.720000px;}
.x37{left:39.600000px;}
.x38{left:42.480000px;}
.x41{left:49.500000px;}
.x3c{left:54.045000px;}
.x4c{left:57.780000px;}
.x50{left:61.200000px;}
.x2d{left:72.714000px;}
.x45{left:74.370000px;}
.x3f{left:76.185000px;}
.x3e{left:78.150000px;}
.x3a{left:81.225000px;}
.x42{left:86.625000px;}
.x40{left:89.145000px;}
.x3d{left:93.645000px;}
.x15{left:98.676000px;}
.x2{left:106.415986px;}
.xe{left:108.755986px;}
.x43{left:111.645000px;}
.x3{left:116.135986px;}
.x44{left:121.185000px;}
.x4{left:128.555986px;}
.xb{left:131.075986px;}
.xf{left:133.415986px;}
.x10{left:160.409986px;}
.x17{left:162.030000px;}
.xd{left:168.689986px;}
.x5{left:193.169986px;}
.x39{left:214.770000px;}
.x9{left:222.149986px;}
.x8{left:237.989986px;}
.x5d{left:240.509986px;}
.x7{left:243.389986px;}
.x14{left:258.869986px;}
.x6{left:268.769986px;}
.x25{left:273.989986px;}
.x2e{left:297.435000px;}
.x5e{left:316.695000px;}
.xa{left:319.214986px;}
.x26{left:324.975000px;}
.x19{left:341.535000px;}
.x2f{left:364.935000px;}
.x5f{left:370.875000px;}
.x2c{left:381.314986px;}
.x59{left:386.355000px;}
.x55{left:436.395000px;}
.x30{left:438.915000px;}
.x1c{left:441.075000px;}
.x1{left:449.174986px;}
.x13{left:458.174986px;}
.x46{left:477.615000px;}
.xc{left:485.174986px;}
.x28{left:486.615000px;}
.x60{left:500.145000px;}
.x11{left:512.204986px;}
.x47{left:524.265000px;}
.x4e{left:525.525000px;}
.x56{left:532.005000px;}
.x31{left:533.805000px;}
.x12{left:539.204986px;}
.x1e{left:555.225000px;}
.x61{left:562.065000px;}
.x29{left:588.705000px;}
.x4d{left:616.784986px;}
.x62{left:626.865000px;}
.x32{left:628.665000px;}
.x3b{left:637.485000px;}
.x48{left:640.725000px;}
.x51{left:644.325000px;}
.x4f{left:648.825000px;}
.x20{left:673.485000px;}
.x63{left:688.785000px;}
.x5a{left:694.050000px;}
.x57{left:702.150000px;}
.x33{left:723.570000px;}
.x2a{left:728.250000px;}
.x52{left:734.190000px;}
.x4a{left:738.690000px;}
.x5b{left:740.490000px;}
.x5c{left:784.770000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.592000pt;}
.ls14{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.024320pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.024320pt;}
.ls4{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.048640pt;}
.lsb{letter-spacing:0.062720pt;}
.ls1d{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.688000pt;}
.ls22{letter-spacing:10.192640pt;}
.ls16{letter-spacing:36.106667pt;}
.ls21{letter-spacing:37.051307pt;}
.ls1f{letter-spacing:37.072640pt;}
.lsc{letter-spacing:38.971307pt;}
.lsd{letter-spacing:38.992640pt;}
.ls1b{letter-spacing:50.720000pt;}
.ls1e{letter-spacing:82.826667pt;}
.ls0{letter-spacing:89.120000pt;}
.ls2{letter-spacing:563.978667pt;}
.ls1a{letter-spacing:745.898667pt;}
.ls19{letter-spacing:901.418667pt;}
.ls1c{letter-spacing:905.898667pt;}
.lse{letter-spacing:1237.418667pt;}
.ws0{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.232640pt;}
.ws2{word-spacing:-13.185067pt;}
.ws3{word-spacing:-13.096533pt;}
.ws10{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.688640pt;}
.wsc{word-spacing:-12.664320pt;}
.ws8{word-spacing:-12.640000pt;}
.wse{word-spacing:-12.615680pt;}
.ws9{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-0.053120pt;}
.wsb{word-spacing:0.000000pt;}
._3{margin-left:-1.105280pt;}
._0{width:1.032747pt;}
._1{width:2.373120pt;}
._a{width:3.299200pt;}
._4{width:4.568320pt;}
._5{width:6.317440pt;}
._12{width:7.230720pt;}
._13{width:8.242560pt;}
._18{width:9.420160pt;}
._8{width:10.677120pt;}
._7{width:11.686400pt;}
._b{width:14.501760pt;}
._c{width:15.815893pt;}
._1a{width:17.210880pt;}
._23{width:18.326400pt;}
._19{width:19.259093pt;}
._1e{width:20.557440pt;}
._1b{width:21.755733pt;}
._6{width:23.554987pt;}
._2{width:24.906240pt;}
._11{width:25.922560pt;}
._14{width:26.923733pt;}
._28{width:27.826773pt;}
._e{width:28.799147pt;}
._d{width:29.800320pt;}
._9{width:31.264213pt;}
._22{width:32.296960pt;}
._26{width:33.389013pt;}
._2c{width:34.293547pt;}
._1d{width:35.348267pt;}
._f{width:36.629333pt;}
._1c{width:38.435413pt;}
._1f{width:40.743040pt;}
._20{width:42.261760pt;}
._24{width:43.611520pt;}
._16{width:46.285440pt;}
._17{width:47.276800pt;}
._10{width:49.614080pt;}
._25{width:50.546773pt;}
._2b{width:54.052693pt;}
._21{width:55.457280pt;}
._27{width:58.833493pt;}
._31{width:60.828800pt;}
._2a{width:61.831680pt;}
._29{width:62.840960pt;}
._2e{width:69.090133pt;}
._15{width:75.271040pt;}
._30{width:79.927253pt;}
._2d{width:80.983680pt;}
._2f{width:242.120960pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:2.560000pt;}
.yb0{bottom:2.720000pt;}
.y48{bottom:2.880000pt;}
.yc7{bottom:4.000000pt;}
.yf8{bottom:4.160000pt;}
.yfa{bottom:5.280000pt;}
.yf7{bottom:5.440000pt;}
.yd0{bottom:8.960000pt;}
.yae{bottom:9.120000pt;}
.yd3{bottom:9.440000pt;}
.yb1{bottom:9.600000pt;}
.y47{bottom:10.400000pt;}
.yf5{bottom:10.554667pt;}
.y76{bottom:10.560000pt;}
.y122{bottom:10.600000pt;}
.yc8{bottom:10.880000pt;}
.yd1{bottom:16.320000pt;}
.yaf{bottom:16.480000pt;}
.yc6{bottom:17.920000pt;}
.y46{bottom:18.080000pt;}
.yf4{bottom:18.234667pt;}
.y77{bottom:18.240000pt;}
.ye5{bottom:18.266667pt;}
.y121{bottom:18.280000pt;}
.y104{bottom:25.920000pt;}
.yf1{bottom:33.600000pt;}
.y109{bottom:48.960000pt;}
.y103{bottom:49.000000pt;}
.y2{bottom:70.592000pt;}
.y1{bottom:88.992000pt;}
.y79{bottom:105.312000pt;}
.yf6{bottom:109.152000pt;}
.y129{bottom:109.632000pt;}
.yce{bottom:110.592000pt;}
.y41{bottom:110.752000pt;}
.y32{bottom:119.072000pt;}
.y78{bottom:121.312000pt;}
.ycd{bottom:123.712000pt;}
.y128{bottom:124.992000pt;}
.y40{bottom:126.112000pt;}
.yac{bottom:126.752000pt;}
.yf3{bottom:127.712000pt;}
.y31{bottom:132.992000pt;}
.y75{bottom:137.306667pt;}
.ycc{bottom:139.706667pt;}
.y127{bottom:140.346667pt;}
.y3f{bottom:141.466667pt;}
.yab{bottom:142.106667pt;}
.y30{bottom:147.226667pt;}
.ycb{bottom:155.706667pt;}
.y3e{bottom:156.826667pt;}
.yaa{bottom:157.466667pt;}
.y2f{bottom:157.786667pt;}
.yf2{bottom:159.066667pt;}
.y126{bottom:171.066667pt;}
.y74{bottom:171.546667pt;}
.y3d{bottom:172.186667pt;}
.ya9{bottom:172.826667pt;}
.y125{bottom:186.266667pt;}
.y73{bottom:186.746667pt;}
.yca{bottom:187.066667pt;}
.y3c{bottom:187.546667pt;}
.ya8{bottom:188.186667pt;}
.yf0{bottom:190.266667pt;}
.y124{bottom:201.626667pt;}
.y3b{bottom:202.746667pt;}
.yc9{bottom:203.066667pt;}
.ya7{bottom:203.546667pt;}
.y123{bottom:214.746667pt;}
.y72{bottom:217.466667pt;}
.y3a{bottom:218.106667pt;}
.ya6{bottom:218.746667pt;}
.yc5{bottom:219.066667pt;}
.y71{bottom:232.826667pt;}
.y39{bottom:233.466667pt;}
.ya5{bottom:234.106667pt;}
.y2e{bottom:239.546667pt;}
.yef{bottom:239.866667pt;}
.y120{bottom:246.106667pt;}
.ya4{bottom:247.226667pt;}
.y70{bottom:248.186667pt;}
.y38{bottom:248.826667pt;}
.yc4{bottom:253.146667pt;}
.y2d{bottom:254.586667pt;}
.ya3{bottom:263.266667pt;}
.y6f{bottom:263.586667pt;}
.y37{bottom:264.226667pt;}
.y2c{bottom:268.546667pt;}
.yee{bottom:270.626667pt;}
.y11f{bottom:277.506667pt;}
.y6e{bottom:278.786667pt;}
.ya2{bottom:279.266667pt;}
.y36{bottom:279.586667pt;}
.y2b{bottom:282.306667pt;}
.yed{bottom:285.986667pt;}
.y6d{bottom:294.146667pt;}
.y35{bottom:294.786667pt;}
.ya1{bottom:295.266667pt;}
.y2a{bottom:296.066667pt;}
.yc3{bottom:299.266667pt;}
.yec{bottom:301.186667pt;}
.y11e{bottom:308.866667pt;}
.y6c{bottom:309.506667pt;}
.y29{bottom:310.146667pt;}
.ya0{bottom:311.266667pt;}
.yc2{bottom:314.626667pt;}
.yeb{bottom:316.546667pt;}
.y6b{bottom:324.866667pt;}
.y28{bottom:325.506667pt;}
.y9f{bottom:327.266667pt;}
.yc1{bottom:329.826667pt;}
.yea{bottom:331.906667pt;}
.y6a{bottom:340.226667pt;}
.y27{bottom:340.866667pt;}
.y9e{bottom:343.266667pt;}
.ye9{bottom:345.026667pt;}
.yc0{bottom:345.186667pt;}
.y69{bottom:353.346667pt;}
.y26{bottom:356.226667pt;}
.y9d{bottom:359.266667pt;}
.ybf{bottom:360.546667pt;}
.y68{bottom:369.346667pt;}
.y25{bottom:371.426667pt;}
.ybe{bottom:375.906667pt;}
.ye8{bottom:376.386667pt;}
.y9c{bottom:378.146667pt;}
.y67{bottom:385.346667pt;}
.y24{bottom:386.786667pt;}
.ybd{bottom:391.266667pt;}
.y9b{bottom:393.506667pt;}
.y66{bottom:401.346667pt;}
.y23{bottom:402.146667pt;}
.y11d{bottom:402.786667pt;}
.ybc{bottom:406.626667pt;}
.ye7{bottom:407.746667pt;}
.y9a{bottom:408.866667pt;}
.y65{bottom:417.346667pt;}
.y22{bottom:417.506667pt;}
.ybb{bottom:421.826667pt;}
.y99{bottom:424.226667pt;}
.y21{bottom:432.866667pt;}
.y64{bottom:433.346667pt;}
.y11c{bottom:434.146667pt;}
.yba{bottom:437.186667pt;}
.ye6{bottom:438.946667pt;}
.y98{bottom:439.426667pt;}
.y20{bottom:448.226667pt;}
.y63{bottom:449.346667pt;}
.yb9{bottom:452.546667pt;}
.y97{bottom:454.786667pt;}
.y1f{bottom:463.426667pt;}
.y62{bottom:465.346667pt;}
.yb8{bottom:467.906667pt;}
.y11b{bottom:468.386667pt;}
.y96{bottom:470.146667pt;}
.ye4{bottom:470.306667pt;}
.y1e{bottom:478.786667pt;}
.yb7{bottom:481.026667pt;}
.y61{bottom:481.346667pt;}
.y95{bottom:485.506667pt;}
.y1d{bottom:494.173333pt;}
.yb6{bottom:497.053333pt;}
.y11a{bottom:498.973333pt;}
.y60{bottom:500.253333pt;}
.y94{bottom:500.893333pt;}
.ye3{bottom:501.693333pt;}
.y1c{bottom:509.533333pt;}
.y108{bottom:512.093333pt;}
.yb5{bottom:513.053333pt;}
.y5f{bottom:515.453333pt;}
.y93{bottom:516.253333pt;}
.y1b{bottom:524.893333pt;}
.y5e{bottom:530.813333pt;}
.y92{bottom:531.453333pt;}
.ye2{bottom:533.053333pt;}
.y119{bottom:534.333333pt;}
.y1a{bottom:540.253333pt;}
.yb4{bottom:544.413333pt;}
.y5d{bottom:546.173333pt;}
.y91{bottom:546.813333pt;}
.y118{bottom:549.693333pt;}
.y19{bottom:555.453333pt;}
.y5c{bottom:561.533333pt;}
.y90{bottom:562.173333pt;}
.ye1{bottom:564.413333pt;}
.y117{bottom:565.053333pt;}
.y18{bottom:570.813333pt;}
.y107{bottom:574.173333pt;}
.yb3{bottom:575.773333pt;}
.y5b{bottom:576.893333pt;}
.y8f{bottom:577.533333pt;}
.y116{bottom:580.413333pt;}
.y17{bottom:586.173333pt;}
.yb2{bottom:591.773333pt;}
.y5a{bottom:592.253333pt;}
.y8e{bottom:592.893333pt;}
.y115{bottom:595.773333pt;}
.ye0{bottom:598.653333pt;}
.y16{bottom:601.533333pt;}
.y59{bottom:607.453333pt;}
.y8d{bottom:608.253333pt;}
.y114{bottom:610.973333pt;}
.y15{bottom:616.893333pt;}
.y106{bottom:620.893333pt;}
.y58{bottom:622.813333pt;}
.yad{bottom:622.973333pt;}
.y8c{bottom:623.453333pt;}
.y113{bottom:626.333333pt;}
.ydf{bottom:629.213333pt;}
.y14{bottom:632.093333pt;}
.y57{bottom:638.173333pt;}
.y8b{bottom:638.813333pt;}
.y112{bottom:641.693333pt;}
.yde{bottom:644.573333pt;}
.y13{bottom:647.453333pt;}
.y105{bottom:652.093333pt;}
.y56{bottom:653.533333pt;}
.y8a{bottom:654.173333pt;}
.y111{bottom:657.053333pt;}
.ydd{bottom:659.933333pt;}
.y12{bottom:662.813333pt;}
.y55{bottom:668.893333pt;}
.y89{bottom:669.533333pt;}
.y110{bottom:672.413333pt;}
.ydc{bottom:675.293333pt;}
.y11{bottom:678.173333pt;}
.y54{bottom:682.013333pt;}
.y102{bottom:683.453333pt;}
.y88{bottom:684.893333pt;}
.y10f{bottom:687.773333pt;}
.ydb{bottom:690.493333pt;}
.y10{bottom:693.533333pt;}
.y53{bottom:698.013333pt;}
.y87{bottom:700.093333pt;}
.y10e{bottom:702.973333pt;}
.yda{bottom:703.613333pt;}
.y34{bottom:708.893333pt;}
.y52{bottom:714.013333pt;}
.y86{bottom:715.453333pt;}
.y10d{bottom:718.373333pt;}
.yd9{bottom:719.653333pt;}
.yf{bottom:724.133333pt;}
.y85{bottom:728.613333pt;}
.y51{bottom:730.053333pt;}
.y10c{bottom:733.733333pt;}
.ye{bottom:739.493333pt;}
.y84{bottom:744.613333pt;}
.y101{bottom:745.573333pt;}
.y50{bottom:746.053333pt;}
.y10b{bottom:749.093333pt;}
.yd8{bottom:751.013333pt;}
.yd{bottom:754.853333pt;}
.y83{bottom:760.613333pt;}
.y4f{bottom:762.053333pt;}
.y100{bottom:764.453333pt;}
.yd7{bottom:767.013333pt;}
.yc{bottom:770.213333pt;}
.y82{bottom:776.613333pt;}
.y4e{bottom:778.053333pt;}
.yff{bottom:779.653333pt;}
.yb{bottom:785.573333pt;}
.y81{bottom:792.613333pt;}
.y4d{bottom:794.053333pt;}
.y10a{bottom:795.013333pt;}
.yd6{bottom:798.373333pt;}
.ya{bottom:800.933333pt;}
.y4c{bottom:810.053333pt;}
.yfe{bottom:810.373333pt;}
.y9{bottom:816.133333pt;}
.yfd{bottom:823.493333pt;}
.y80{bottom:823.973333pt;}
.y4b{bottom:826.053333pt;}
.yd5{bottom:829.733333pt;}
.y8{bottom:831.493333pt;}
.y7f{bottom:839.973333pt;}
.y4a{bottom:842.053333pt;}
.y7{bottom:846.853333pt;}
.yfc{bottom:854.853333pt;}
.y7e{bottom:855.973333pt;}
.y49{bottom:858.053333pt;}
.yd4{bottom:861.093333pt;}
.y6{bottom:862.213333pt;}
.y7d{bottom:871.973333pt;}
.y45{bottom:874.053333pt;}
.ycf{bottom:877.093333pt;}
.y5{bottom:877.573333pt;}
.yfb{bottom:886.213333pt;}
.y7c{bottom:887.973333pt;}
.y4{bottom:892.933333pt;}
.y7b{bottom:903.973333pt;}
.y33{bottom:908.133333pt;}
.yf9{bottom:917.573333pt;}
.y7a{bottom:919.973333pt;}
.y3{bottom:923.493333pt;}
.y44{bottom:960.960000pt;}
.y43{bottom:978.560000pt;}
.y42{bottom:995.520000pt;}
.hb{height:15.200000pt;}
.hc{height:15.232000pt;}
.hd{height:15.360000pt;}
.hf{height:15.392000pt;}
.h16{height:17.760000pt;}
.h15{height:17.920000pt;}
.h12{height:27.520000pt;}
.h10{height:27.680000pt;}
.ha{height:30.560000pt;}
.he{height:30.720000pt;}
.h13{height:30.752000pt;}
.h7{height:45.795000pt;}
.h18{height:45.920000pt;}
.h14{height:46.080000pt;}
.h5{height:47.109375pt;}
.h11{height:48.375000pt;}
.h8{height:49.621875pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.h1a{height:52.834688pt;}
.h3{height:53.535000pt;}
.h9{height:54.598989pt;}
.h6{height:55.402500pt;}
.h19{height:61.440000pt;}
.h17{height:61.472000pt;}
.h1{height:62.812500pt;}
.h0{height:1056.000000pt;}
.w36{width:27.520000pt;}
.w2c{width:29.440000pt;}
.w2b{width:38.720000pt;}
.w2e{width:39.200000pt;}
.w35{width:40.032000pt;}
.w2a{width:40.480000pt;}
.w17{width:40.832000pt;}
.w31{width:41.440000pt;}
.w1b{width:41.952000pt;}
.w30{width:47.360000pt;}
.w2f{width:50.912000pt;}
.w33{width:54.400000pt;}
.w27{width:55.072000pt;}
.w2{width:55.520000pt;}
.w34{width:56.960000pt;}
.we{width:59.360000pt;}
.w24{width:64.320000pt;}
.wf{width:65.120000pt;}
.w23{width:65.472000pt;}
.w29{width:67.552000pt;}
.w28{width:68.160000pt;}
.w1a{width:70.400000pt;}
.w1f{width:72.640000pt;}
.w1d{width:79.232000pt;}
.w26{width:79.840000pt;}
.w11{width:83.680000pt;}
.w10{width:83.712000pt;}
.w12{width:83.840000pt;}
.w21{width:84.352000pt;}
.w22{width:84.480000pt;}
.w19{width:86.432000pt;}
.w4{width:87.680000pt;}
.wa{width:90.112000pt;}
.w7{width:99.712000pt;}
.w5{width:100.832000pt;}
.w2d{width:101.760000pt;}
.w13{width:102.560000pt;}
.w18{width:102.880000pt;}
.w6{width:104.480000pt;}
.w1e{width:106.080000pt;}
.w1c{width:108.960000pt;}
.wc{width:118.080000pt;}
.wb{width:123.392000pt;}
.w9{width:143.040000pt;}
.w3{width:158.746667pt;}
.w16{width:158.906667pt;}
.w15{width:159.066667pt;}
.wd{width:176.026667pt;}
.w8{width:200.506667pt;}
.w14{width:215.386667pt;}
.w25{width:255.066667pt;}
.w20{width:299.546667pt;}
.w32{width:356.226667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x58{left:3.040000pt;}
.x64{left:5.280000pt;}
.x18{left:6.720000pt;}
.x53{left:8.000000pt;}
.x49{left:10.560000pt;}
.x16{left:12.640000pt;}
.x1b{left:14.240000pt;}
.x1f{left:15.840000pt;}
.x4b{left:16.826667pt;}
.x24{left:17.760000pt;}
.x1d{left:18.720000pt;}
.x35{left:19.680000pt;}
.x22{left:20.800000pt;}
.x36{left:22.560000pt;}
.x21{left:23.560000pt;}
.x54{left:24.640000pt;}
.x27{left:25.760000pt;}
.x23{left:27.080000pt;}
.x1a{left:29.440000pt;}
.x34{left:31.520000pt;}
.x2b{left:32.640000pt;}
.x37{left:35.200000pt;}
.x38{left:37.760000pt;}
.x41{left:44.000000pt;}
.x3c{left:48.040000pt;}
.x4c{left:51.360000pt;}
.x50{left:54.400000pt;}
.x2d{left:64.634667pt;}
.x45{left:66.106667pt;}
.x3f{left:67.720000pt;}
.x3e{left:69.466667pt;}
.x3a{left:72.200000pt;}
.x42{left:77.000000pt;}
.x40{left:79.240000pt;}
.x3d{left:83.240000pt;}
.x15{left:87.712000pt;}
.x2{left:94.591988pt;}
.xe{left:96.671988pt;}
.x43{left:99.240000pt;}
.x3{left:103.231988pt;}
.x44{left:107.720000pt;}
.x4{left:114.271988pt;}
.xb{left:116.511988pt;}
.xf{left:118.591988pt;}
.x10{left:142.586655pt;}
.x17{left:144.026667pt;}
.xd{left:149.946655pt;}
.x5{left:171.706655pt;}
.x39{left:190.906667pt;}
.x9{left:197.466655pt;}
.x8{left:211.546655pt;}
.x5d{left:213.786655pt;}
.x7{left:216.346655pt;}
.x14{left:230.106655pt;}
.x6{left:238.906655pt;}
.x25{left:243.546655pt;}
.x2e{left:264.386667pt;}
.x5e{left:281.506667pt;}
.xa{left:283.746655pt;}
.x26{left:288.866667pt;}
.x19{left:303.586667pt;}
.x2f{left:324.386667pt;}
.x5f{left:329.666667pt;}
.x2c{left:338.946655pt;}
.x59{left:343.426667pt;}
.x55{left:387.906667pt;}
.x30{left:390.146667pt;}
.x1c{left:392.066667pt;}
.x1{left:399.266655pt;}
.x13{left:407.266655pt;}
.x46{left:424.546667pt;}
.xc{left:431.266655pt;}
.x28{left:432.546667pt;}
.x60{left:444.573333pt;}
.x11{left:455.293321pt;}
.x47{left:466.013333pt;}
.x4e{left:467.133333pt;}
.x56{left:472.893333pt;}
.x31{left:474.493333pt;}
.x12{left:479.293321pt;}
.x1e{left:493.533333pt;}
.x61{left:499.613333pt;}
.x29{left:523.293333pt;}
.x4d{left:548.253321pt;}
.x62{left:557.213333pt;}
.x32{left:558.813333pt;}
.x3b{left:566.653333pt;}
.x48{left:569.533333pt;}
.x51{left:572.733333pt;}
.x4f{left:576.733333pt;}
.x20{left:598.653333pt;}
.x63{left:612.253333pt;}
.x5a{left:616.933333pt;}
.x57{left:624.133333pt;}
.x33{left:643.173333pt;}
.x2a{left:647.333333pt;}
.x52{left:652.613333pt;}
.x4a{left:656.613333pt;}
.x5b{left:658.213333pt;}
.x5c{left:697.573333pt;}
}




    .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; }
  