
    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_5e23d99f52f66d6e7b855156.woff')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_5f2a6ecc2d652c383d0e7bab.woff')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_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_f2bdcd5f9199f62d649599b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_413da3f1576c00efc9671945.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f8335cb1363def44e35aa69d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_6a7ae5128eb162248a2c697b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_0da66426d3039c35abeb2c9e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.908691;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v2{vertical-align:5.760000px;}
.v4{vertical-align:15.840000px;}
.v5{vertical-align:21.600000px;}
.v7{vertical-align:24.480000px;}
.v8{vertical-align:27.360000px;}
.ls22{letter-spacing:-1.368000px;}
.ls24{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-1.008000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.017280px;}
.lsa{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.025920px;}
.ls1c{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.144720px;}
.ls5{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.216000px;}
.lse{letter-spacing:0.269280px;}
.ls11{letter-spacing:0.269400px;}
.ls1a{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.513600px;}
.ls23{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.666000px;}
.ls26{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.936000px;}
.lsf{letter-spacing:1.080000px;}
.ls4{letter-spacing:12.240000px;}
.ls12{letter-spacing:20.160000px;}
.ls13{letter-spacing:97.968000px;}
.ls14{letter-spacing:97.992000px;}
.ls17{letter-spacing:98.172000px;}
.ls18{letter-spacing:98.688000px;}
.ls15{letter-spacing:98.712000px;}
.ls19{letter-spacing:98.892000px;}
.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;}
}
.ws9{word-spacing:-19.465920px;}
.ws3{word-spacing:-19.457280px;}
.ws7{word-spacing:-19.431360px;}
.ws4{word-spacing:-19.422720px;}
.wsa{word-spacing:-18.936000px;}
.ws18{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.640000px;}
.ws1{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.453600px;}
.ws6{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws16{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.700000px;}
.ws13{word-spacing:-11.246400px;}
.ws8{word-spacing:0.000000px;}
.ws14{word-spacing:45.555120px;}
.ws12{word-spacing:46.275120px;}
.ws15{word-spacing:46.455120px;}
.ws10{word-spacing:50.595120px;}
.wse{word-spacing:51.315120px;}
.wsf{word-spacing:51.495120px;}
._19{margin-left:-5.009040px;}
._12{margin-left:-3.936960px;}
._3{margin-left:-2.165760px;}
._6{margin-left:-1.082160px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._7{width:3.851280px;}
._5{width:5.174160px;}
._e{width:6.933600px;}
._14{width:8.051760px;}
._11{width:9.936000px;}
._a{width:11.520000px;}
._9{width:13.214160px;}
._8{width:14.472000px;}
._13{width:15.888000px;}
._17{width:16.981920px;}
._18{width:19.368000px;}
._b{width:20.880000px;}
._f{width:22.642560px;}
._1b{width:23.736000px;}
._10{width:25.488000px;}
._16{width:27.432000px;}
._26{width:28.584000px;}
._c{width:29.952000px;}
._15{width:30.960000px;}
._d{width:32.184000px;}
._27{width:33.240000px;}
._1a{width:35.280000px;}
._21{width:37.938960px;}
._20{width:39.450960px;}
._1f{width:41.880000px;}
._22{width:43.560000px;}
._1d{width:59.394960px;}
._1c{width:60.738960px;}
._1e{width:63.000000px;}
._25{width:68.682960px;}
._24{width:70.266960px;}
._23{width:72.192000px;}
._2{width:532.260000px;}
._4{width:1523.640000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:40.982709px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y144{bottom:4.485000px;}
.yfa{bottom:4.500000px;}
.y11b{bottom:5.940000px;}
.y13a{bottom:6.120000px;}
.yf7{bottom:9.000000px;}
.yf8{bottom:9.720000px;}
.y11d{bottom:9.900000px;}
.yf5{bottom:25.380000px;}
.y7{bottom:39.276000px;}
.y6{bottom:58.536000px;}
.y2e{bottom:131.076000px;}
.yca{bottom:132.516000px;}
.y2d{bottom:136.296000px;}
.y15f{bottom:136.476000px;}
.y5b{bottom:141.516000px;}
.y81{bottom:147.996000px;}
.y2c{bottom:149.256000px;}
.yb0{bottom:152.310000px;}
.yc9{bottom:153.210000px;}
.y15e{bottom:157.170000px;}
.y5a{bottom:162.210000px;}
.y135{bottom:163.110000px;}
.y10b{bottom:163.650000px;}
.y80{bottom:168.690000px;}
.y18e{bottom:171.210000px;}
.yaf{bottom:173.010000px;}
.yc8{bottom:173.910000px;}
.y2b{bottom:174.990000px;}
.y15d{bottom:177.870000px;}
.y59{bottom:182.910000px;}
.y134{bottom:183.810000px;}
.y10a{bottom:184.350000px;}
.y178{bottom:184.890000px;}
.ye9{bottom:188.310000px;}
.y19e{bottom:189.210000px;}
.y7f{bottom:189.390000px;}
.y18d{bottom:191.910000px;}
.yae{bottom:193.710000px;}
.yc7{bottom:194.610000px;}
.y2a{bottom:195.690000px;}
.y15c{bottom:198.570000px;}
.y58{bottom:203.610000px;}
.y133{bottom:204.510000px;}
.y109{bottom:205.050000px;}
.y177{bottom:205.590000px;}
.ye8{bottom:209.010000px;}
.y19d{bottom:209.910000px;}
.y7e{bottom:210.090000px;}
.yc6{bottom:215.310000px;}
.y29{bottom:216.390000px;}
.y15b{bottom:219.270000px;}
.y57{bottom:224.310000px;}
.y132{bottom:225.210000px;}
.y108{bottom:225.750000px;}
.ye7{bottom:229.710000px;}
.y18c{bottom:230.610000px;}
.y7d{bottom:230.790000px;}
.yad{bottom:232.410000px;}
.yc5{bottom:236.010000px;}
.y28{bottom:237.090000px;}
.y15a{bottom:239.970000px;}
.y176{bottom:244.290000px;}
.y56{bottom:245.010000px;}
.y107{bottom:246.450000px;}
.y18b{bottom:251.310000px;}
.y7c{bottom:251.490000px;}
.yc4{bottom:256.710000px;}
.y27{bottom:257.790000px;}
.y159{bottom:260.670000px;}
.y131{bottom:263.910000px;}
.ye6{bottom:264.450000px;}
.y175{bottom:264.990000px;}
.y19c{bottom:269.310000px;}
.ye4{bottom:269.850000px;}
.yac{bottom:271.110000px;}
.y9a{bottom:272.190000px;}
.ye5{bottom:278.895000px;}
.y55{bottom:283.755000px;}
.y130{bottom:284.655000px;}
.y106{bottom:284.835000px;}
.y174{bottom:285.735000px;}
.ye3{bottom:290.055000px;}
.y7b{bottom:290.235000px;}
.y99{bottom:292.935000px;}
.yc3{bottom:295.095000px;}
.ye2{bottom:295.455000px;}
.y26{bottom:296.355000px;}
.y158{bottom:299.235000px;}
.y54{bottom:304.455000px;}
.y12f{bottom:305.355000px;}
.yab{bottom:309.855000px;}
.y18a{bottom:310.755000px;}
.y7a{bottom:310.935000px;}
.y98{bottom:313.635000px;}
.y173{bottom:324.435000px;}
.y53{bottom:325.155000px;}
.y105{bottom:325.515000px;}
.y12e{bottom:326.055000px;}
.y19b{bottom:328.755000px;}
.yaa{bottom:330.555000px;}
.y79{bottom:331.635000px;}
.yc2{bottom:334.155000px;}
.y97{bottom:334.335000px;}
.y25{bottom:336.135000px;}
.ye1{bottom:337.575000px;}
.y157{bottom:339.915000px;}
.y172{bottom:345.135000px;}
.y52{bottom:345.855000px;}
.y104{bottom:346.215000px;}
.y12d{bottom:346.755000px;}
.y189{bottom:349.455000px;}
.ya9{bottom:351.255000px;}
.y78{bottom:352.335000px;}
.y24{bottom:353.415000px;}
.yc1{bottom:354.855000px;}
.ye0{bottom:358.275000px;}
.y156{bottom:360.615000px;}
.y171{bottom:365.835000px;}
.y51{bottom:366.555000px;}
.y103{bottom:366.915000px;}
.y12c{bottom:367.455000px;}
.y188{bottom:370.155000px;}
.y23{bottom:370.695000px;}
.ya8{bottom:371.955000px;}
.y77{bottom:373.035000px;}
.yc0{bottom:375.555000px;}
.y155{bottom:381.315000px;}
.y50{bottom:387.255000px;}
.y102{bottom:387.615000px;}
.y12b{bottom:388.155000px;}
.ya7{bottom:392.655000px;}
.y76{bottom:393.735000px;}
.ybf{bottom:396.255000px;}
.ydf{bottom:396.975000px;}
.y154{bottom:402.015000px;}
.y170{bottom:404.535000px;}
.y22{bottom:406.695000px;}
.y4f{bottom:407.955000px;}
.y12a{bottom:408.855000px;}
.ya6{bottom:413.355000px;}
.y75{bottom:414.435000px;}
.ybe{bottom:416.955000px;}
.yde{bottom:417.675000px;}
.y153{bottom:422.715000px;}
.y16f{bottom:425.235000px;}
.y101{bottom:426.315000px;}
.y21{bottom:427.395000px;}
.y4e{bottom:428.655000px;}
.y129{bottom:429.555000px;}
.ya5{bottom:434.055000px;}
.y74{bottom:435.135000px;}
.ybd{bottom:437.655000px;}
.ydd{bottom:438.375000px;}
.y100{bottom:443.235000px;}
.y152{bottom:443.415000px;}
.y16e{bottom:445.935000px;}
.y19a{bottom:447.555000px;}
.y4d{bottom:449.355000px;}
.y73{bottom:455.835000px;}
.ybc{bottom:458.355000px;}
.ydc{bottom:459.075000px;}
.y151{bottom:464.115000px;}
.y128{bottom:464.475000px;}
.yff{bottom:464.835000px;}
.y20{bottom:467.895000px;}
.y187{bottom:468.075000px;}
.y199{bottom:468.255000px;}
.y4c{bottom:470.055000px;}
.ya4{bottom:472.395000px;}
.y96{bottom:476.535000px;}
.ybb{bottom:479.055000px;}
.ydb{bottom:479.775000px;}
.y16d{bottom:484.635000px;}
.y150{bottom:484.815000px;}
.y127{bottom:485.895000px;}
.yfe{bottom:486.255000px;}
.y1f{bottom:488.595000px;}
.y186{bottom:488.955000px;}
.y4b{bottom:490.755000px;}
.y72{bottom:494.535000px;}
.y95{bottom:497.235000px;}
.y16c{bottom:505.335000px;}
.y14f{bottom:505.515000px;}
.y198{bottom:506.955000px;}
.y126{bottom:507.495000px;}
.yfd{bottom:507.675000px;}
.y1e{bottom:509.295000px;}
.y185{bottom:509.655000px;}
.y4a{bottom:511.455000px;}
.y71{bottom:515.235000px;}
.yba{bottom:517.395000px;}
.yda{bottom:518.475000px;}
.y197{bottom:527.655000px;}
.y125{bottom:528.915000px;}
.yfc{bottom:529.095000px;}
.y1d{bottom:529.995000px;}
.y49{bottom:532.155000px;}
.y94{bottom:535.575000px;}
.y70{bottom:535.935000px;}
.y16b{bottom:543.855000px;}
.y14e{bottom:544.215000px;}
.y184{bottom:548.175000px;}
.y124{bottom:550.335000px;}
.yfb{bottom:550.515000px;}
.y1c{bottom:550.695000px;}
.y48{bottom:552.855000px;}
.yb9{bottom:556.485000px;}
.y6f{bottom:556.665000px;}
.yd9{bottom:557.205000px;}
.y16a{bottom:564.585000px;}
.y14d{bottom:564.945000px;}
.y196{bottom:566.385000px;}
.y183{bottom:569.085000px;}
.y1b{bottom:571.425000px;}
.y123{bottom:571.785000px;}
.yf9{bottom:571.965000px;}
.ya3{bottom:573.585000px;}
.y93{bottom:576.285000px;}
.y6e{bottom:577.365000px;}
.y169{bottom:585.285000px;}
.y14c{bottom:585.645000px;}
.y195{bottom:587.085000px;}
.y47{bottom:591.585000px;}
.y1a{bottom:592.125000px;}
.y122{bottom:593.205000px;}
.yf4{bottom:593.565000px;}
.ya2{bottom:594.285000px;}
.yb8{bottom:595.185000px;}
.yd8{bottom:595.905000px;}
.y92{bottom:596.985000px;}
.y6d{bottom:597.885000px;}
.y14b{bottom:606.345000px;}
.y182{bottom:607.785000px;}
.y46{bottom:612.285000px;}
.y19{bottom:612.825000px;}
.y121{bottom:614.625000px;}
.ya1{bottom:614.985000px;}
.yd7{bottom:616.605000px;}
.y91{bottom:617.685000px;}
.y6c{bottom:618.585000px;}
.y168{bottom:623.985000px;}
.yf6{bottom:626.325000px;}
.y14a{bottom:627.045000px;}
.y181{bottom:628.485000px;}
.y45{bottom:632.985000px;}
.y18{bottom:633.525000px;}
.yb7{bottom:633.885000px;}
.ya0{bottom:635.685000px;}
.y120{bottom:636.225000px;}
.yd6{bottom:637.305000px;}
.y90{bottom:638.385000px;}
.y6b{bottom:639.285000px;}
.y167{bottom:644.685000px;}
.y194{bottom:646.485000px;}
.y149{bottom:647.745000px;}
.y180{bottom:649.185000px;}
.y44{bottom:653.685000px;}
.y17{bottom:654.225000px;}
.y9f{bottom:656.385000px;}
.y11f{bottom:657.645000px;}
.yd5{bottom:658.005000px;}
.y8f{bottom:659.085000px;}
.y193{bottom:667.185000px;}
.y148{bottom:668.445000px;}
.yb6{bottom:672.585000px;}
.y43{bottom:674.385000px;}
.y16{bottom:674.925000px;}
.yf3{bottom:676.905000px;}
.y9e{bottom:677.085000px;}
.y6a{bottom:677.985000px;}
.y11e{bottom:682.125000px;}
.y166{bottom:683.385000px;}
.y17f{bottom:687.885000px;}
.y147{bottom:689.145000px;}
.y42{bottom:695.085000px;}
.y15{bottom:695.625000px;}
.yd4{bottom:696.705000px;}
.y8e{bottom:697.785000px;}
.y69{bottom:698.685000px;}
.y165{bottom:704.085000px;}
.y192{bottom:705.885000px;}
.y11c{bottom:706.605000px;}
.y17e{bottom:708.585000px;}
.y146{bottom:709.845000px;}
.yb5{bottom:711.285000px;}
.y41{bottom:715.785000px;}
.y14{bottom:716.325000px;}
.yd3{bottom:717.405000px;}
.y8d{bottom:718.485000px;}
.y68{bottom:719.385000px;}
.y191{bottom:726.585000px;}
.y145{bottom:730.545000px;}
.y40{bottom:736.485000px;}
.y8c{bottom:739.185000px;}
.y11a{bottom:739.545000px;}
.y67{bottom:740.085000px;}
.y164{bottom:742.785000px;}
.y17d{bottom:747.285000px;}
.yb4{bottom:749.985000px;}
.yd2{bottom:752.505000px;}
.y13{bottom:754.665000px;}
.y3f{bottom:757.185000px;}
.yd0{bottom:757.905000px;}
.y8b{bottom:759.885000px;}
.y66{bottom:760.785000px;}
.y163{bottom:763.485000px;}
.y143{bottom:765.480000px;}
.yd1{bottom:766.905000px;}
.y17c{bottom:767.985000px;}
.ycf{bottom:776.265000px;}
.y3e{bottom:777.885000px;}
.y8a{bottom:780.585000px;}
.y65{bottom:781.485000px;}
.ycd{bottom:782.385000px;}
.y119{bottom:783.825000px;}
.y190{bottom:785.985000px;}
.y142{bottom:786.885000px;}
.yb3{bottom:788.685000px;}
.yce{bottom:790.665000px;}
.y12{bottom:795.165000px;}
.y3d{bottom:798.585000px;}
.y89{bottom:801.285000px;}
.y64{bottom:802.185000px;}
.ycc{bottom:803.985000px;}
.y17b{bottom:806.685000px;}
.y141{bottom:808.305000px;}
.y3c{bottom:819.285000px;}
.y88{bottom:821.985000px;}
.y118{bottom:822.705000px;}
.y63{bottom:822.885000px;}
.yb2{bottom:827.385000px;}
.y140{bottom:829.725000px;}
.y11{bottom:836.025000px;}
.y3b{bottom:840.030000px;}
.y87{bottom:842.730000px;}
.y117{bottom:843.450000px;}
.y62{bottom:843.630000px;}
.y18f{bottom:845.430000px;}
.y13f{bottom:851.190000px;}
.y10{bottom:858.750000px;}
.y9d{bottom:860.730000px;}
.y162{bottom:861.630000px;}
.y86{bottom:863.430000px;}
.y116{bottom:864.150000px;}
.yb1{bottom:866.130000px;}
.y13e{bottom:872.790000px;}
.y3a{bottom:878.730000px;}
.y9c{bottom:881.430000px;}
.y61{bottom:882.150000px;}
.y161{bottom:882.330000px;}
.yf{bottom:882.690000px;}
.y85{bottom:884.130000px;}
.y115{bottom:884.850000px;}
.y17a{bottom:886.830000px;}
.y13d{bottom:894.210000px;}
.yf2{bottom:899.070000px;}
.y39{bottom:899.430000px;}
.y9b{bottom:902.130000px;}
.y84{bottom:904.830000px;}
.y114{bottom:905.550000px;}
.ye{bottom:906.810000px;}
.y13c{bottom:915.630000px;}
.y38{bottom:920.130000px;}
.y160{bottom:920.850000px;}
.y60{bottom:922.830000px;}
.ycb{bottom:925.530000px;}
.y113{bottom:926.250000px;}
.yc{bottom:929.490000px;}
.yd{bottom:937.050000px;}
.yf1{bottom:939.750000px;}
.y37{bottom:940.830000px;}
.y5f{bottom:943.530000px;}
.y179{bottom:946.230000px;}
.y112{bottom:946.950000px;}
.yb{bottom:955.230000px;}
.y13b{bottom:958.470000px;}
.yf0{bottom:960.270000px;}
.y36{bottom:961.530000px;}
.y5e{bottom:964.230000px;}
.y111{bottom:967.650000px;}
.y139{bottom:979.890000px;}
.y35{bottom:982.230000px;}
.y5d{bottom:984.930000px;}
.y110{bottom:988.350000px;}
.yef{bottom:995.550000px;}
.yed{bottom:1001.670000px;}
.y34{bottom:1002.930000px;}
.y138{bottom:1004.550000px;}
.y5c{bottom:1005.630000px;}
.ya{bottom:1007.790000px;}
.y10f{bottom:1009.050000px;}
.yee{bottom:1009.950000px;}
.yec{bottom:1019.310000px;}
.y33{bottom:1023.630000px;}
.yea{bottom:1024.710000px;}
.y83{bottom:1026.330000px;}
.y137{bottom:1028.850000px;}
.yeb{bottom:1033.710000px;}
.y9{bottom:1042.170000px;}
.y10e{bottom:1043.970000px;}
.y32{bottom:1044.330000px;}
.y82{bottom:1047.030000px;}
.y136{bottom:1061.790000px;}
.y31{bottom:1065.030000px;}
.y10d{bottom:1065.390000px;}
.y30{bottom:1085.730000px;}
.y8{bottom:1094.730000px;}
.y10c{bottom:1106.250000px;}
.y2f{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h1c{height:20.685000px;}
.h1a{height:20.700000px;}
.h25{height:20.722500px;}
.h1b{height:20.730000px;}
.h23{height:23.565000px;}
.h1f{height:23.760000px;}
.h24{height:23.925000px;}
.h21{height:24.285000px;}
.h1d{height:24.300000px;}
.h10{height:28.455767px;}
.h18{height:30.420000px;}
.h19{height:32.040000px;}
.h22{height:32.205000px;}
.h1e{height:32.220000px;}
.h15{height:35.719102px;}
.ha{height:37.494141px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h12{height:50.027344px;}
.h14{height:50.308594px;}
.h5{height:53.640000px;}
.h11{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h17{height:63.180000px;}
.h13{height:70.628906px;}
.he{height:70.664062px;}
.hf{height:72.562500px;}
.h20{height:74.704922px;}
.h26{height:74.884922px;}
.hb{height:76.317188px;}
.hd{height:78.367500px;}
.h8{height:82.676953px;}
.hc{height:84.898125px;}
.h16{height:92.264062px;}
.h7{height:121.179375px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:65.016000px;}
.wc{width:72.900000px;}
.w4{width:82.425000px;}
.wd{width:86.580000px;}
.wb{width:93.621000px;}
.w9{width:106.905000px;}
.w7{width:111.261000px;}
.w2{width:125.460000px;}
.wa{width:133.941000px;}
.w8{width:139.176000px;}
.w12{width:153.390000px;}
.w13{width:163.995000px;}
.wf{width:167.415000px;}
.w16{width:171.555000px;}
.w11{width:187.035000px;}
.w15{width:187.215000px;}
.w6{width:241.575000px;}
.w5{width:251.160000px;}
.w10{width:506.070000px;}
.w14{width:513.630000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.725000px;}
.x51{left:9.165000px;}
.x2c{left:10.260000px;}
.x31{left:12.225000px;}
.x2f{left:14.205000px;}
.x36{left:16.725000px;}
.x35{left:18.705000px;}
.x32{left:21.225000px;}
.x30{left:23.760000px;}
.x34{left:25.725000px;}
.x33{left:28.260000px;}
.x37{left:32.205000px;}
.x2a{left:34.545000px;}
.x2d{left:35.985000px;}
.x3c{left:40.125000px;}
.x42{left:42.840000px;}
.x29{left:47.325000px;}
.x2{left:50.399998px;}
.x46{left:59.745000px;}
.x44{left:63.165000px;}
.x45{left:67.125000px;}
.x43{left:72.165000px;}
.x41{left:73.425000px;}
.x50{left:75.405000px;}
.x49{left:78.465000px;}
.x48{left:81.885000px;}
.x47{left:84.405000px;}
.x52{left:85.665000px;}
.x4e{left:86.925000px;}
.x4f{left:88.005000px;}
.x1{left:127.656000px;}
.xf{left:132.516000px;}
.x11{left:140.436000px;}
.xd{left:148.896000px;}
.x16{left:152.490000px;}
.x25{left:158.265000px;}
.xc{left:159.510000px;}
.x4{left:163.290000px;}
.x4b{left:167.430000px;}
.xb{left:180.750000px;}
.x4a{left:189.765000px;}
.x3e{left:193.545000px;}
.x9{left:201.270000px;}
.x38{left:202.365000px;}
.x3d{left:204.870000px;}
.x5{left:206.670000px;}
.x18{left:239.790000px;}
.x27{left:241.425000px;}
.x1e{left:249.510000px;}
.x22{left:255.450000px;}
.x10{left:260.850000px;}
.x12{left:267.870000px;}
.x1d{left:273.270000px;}
.x39{left:296.715000px;}
.x17{left:299.235000px;}
.xe{left:343.695000px;}
.xa{left:346.395000px;}
.x19{left:349.995000px;}
.x2b{left:353.415000px;}
.x6{left:357.015000px;}
.x24{left:366.195000px;}
.x3a{left:370.335000px;}
.x4c{left:377.715000px;}
.x1f{left:379.335000px;}
.x3f{left:381.495000px;}
.x13{left:395.175000px;}
.x23{left:402.015000px;}
.x1a{left:447.195000px;}
.x3{left:457.275000px;}
.x28{left:493.320000px;}
.x20{left:508.965000px;}
.x14{left:520.665000px;}
.x3b{left:523.380000px;}
.x4d{left:531.840000px;}
.x40{left:535.620000px;}
.x7{left:550.522500px;}
.x1b{left:555.225000px;}
.x8{left:557.385000px;}
.x2e{left:600.960000px;}
.x21{left:636.765000px;}
.x15{left:680.325000px;}
.x1c{left:692.430000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v2{vertical-align:5.120000pt;}
.v4{vertical-align:14.080000pt;}
.v5{vertical-align:19.200000pt;}
.v7{vertical-align:21.760000pt;}
.v8{vertical-align:24.320000pt;}
.ls22{letter-spacing:-1.216000pt;}
.ls24{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.896000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.015360pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.023040pt;}
.ls1c{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.128640pt;}
.ls5{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.239360pt;}
.ls11{letter-spacing:0.239467pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.456533pt;}
.ls23{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.592000pt;}
.ls26{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.832000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls4{letter-spacing:10.880000pt;}
.ls12{letter-spacing:17.920000pt;}
.ls13{letter-spacing:87.082667pt;}
.ls14{letter-spacing:87.104000pt;}
.ls17{letter-spacing:87.264000pt;}
.ls18{letter-spacing:87.722667pt;}
.ls15{letter-spacing:87.744000pt;}
.ls19{letter-spacing:87.904000pt;}
.ws9{word-spacing:-17.303040pt;}
.ws3{word-spacing:-17.295360pt;}
.ws7{word-spacing:-17.272320pt;}
.ws4{word-spacing:-17.264640pt;}
.wsa{word-spacing:-16.832000pt;}
.ws18{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.680000pt;}
.ws1{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.736533pt;}
.ws6{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws16{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.400000pt;}
.ws13{word-spacing:-9.996800pt;}
.ws8{word-spacing:0.000000pt;}
.ws14{word-spacing:40.493440pt;}
.ws12{word-spacing:41.133440pt;}
.ws15{word-spacing:41.293440pt;}
.ws10{word-spacing:44.973440pt;}
.wse{word-spacing:45.613440pt;}
.wsf{word-spacing:45.773440pt;}
._19{margin-left:-4.452480pt;}
._12{margin-left:-3.499520pt;}
._3{margin-left:-1.925120pt;}
._6{margin-left:-0.961920pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._7{width:3.423360pt;}
._5{width:4.599253pt;}
._e{width:6.163200pt;}
._14{width:7.157120pt;}
._11{width:8.832000pt;}
._a{width:10.240000pt;}
._9{width:11.745920pt;}
._8{width:12.864000pt;}
._13{width:14.122667pt;}
._17{width:15.095040pt;}
._18{width:17.216000pt;}
._b{width:18.560000pt;}
._f{width:20.126720pt;}
._1b{width:21.098667pt;}
._10{width:22.656000pt;}
._16{width:24.384000pt;}
._26{width:25.408000pt;}
._c{width:26.624000pt;}
._15{width:27.520000pt;}
._d{width:28.608000pt;}
._27{width:29.546667pt;}
._1a{width:31.360000pt;}
._21{width:33.723520pt;}
._20{width:35.067520pt;}
._1f{width:37.226667pt;}
._22{width:38.720000pt;}
._1d{width:52.795520pt;}
._1c{width:53.990187pt;}
._1e{width:56.000000pt;}
._25{width:61.051520pt;}
._24{width:62.459520pt;}
._23{width:64.170667pt;}
._2{width:473.120000pt;}
._4{width:1354.346667pt;}
.fs7{font-size:36.429074pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:3.986667pt;}
.yfa{bottom:4.000000pt;}
.y11b{bottom:5.280000pt;}
.y13a{bottom:5.440000pt;}
.yf7{bottom:8.000000pt;}
.yf8{bottom:8.640000pt;}
.y11d{bottom:8.800000pt;}
.yf5{bottom:22.560000pt;}
.y7{bottom:34.912000pt;}
.y6{bottom:52.032000pt;}
.y2e{bottom:116.512000pt;}
.yca{bottom:117.792000pt;}
.y2d{bottom:121.152000pt;}
.y15f{bottom:121.312000pt;}
.y5b{bottom:125.792000pt;}
.y81{bottom:131.552000pt;}
.y2c{bottom:132.672000pt;}
.yb0{bottom:135.386667pt;}
.yc9{bottom:136.186667pt;}
.y15e{bottom:139.706667pt;}
.y5a{bottom:144.186667pt;}
.y135{bottom:144.986667pt;}
.y10b{bottom:145.466667pt;}
.y80{bottom:149.946667pt;}
.y18e{bottom:152.186667pt;}
.yaf{bottom:153.786667pt;}
.yc8{bottom:154.586667pt;}
.y2b{bottom:155.546667pt;}
.y15d{bottom:158.106667pt;}
.y59{bottom:162.586667pt;}
.y134{bottom:163.386667pt;}
.y10a{bottom:163.866667pt;}
.y178{bottom:164.346667pt;}
.ye9{bottom:167.386667pt;}
.y19e{bottom:168.186667pt;}
.y7f{bottom:168.346667pt;}
.y18d{bottom:170.586667pt;}
.yae{bottom:172.186667pt;}
.yc7{bottom:172.986667pt;}
.y2a{bottom:173.946667pt;}
.y15c{bottom:176.506667pt;}
.y58{bottom:180.986667pt;}
.y133{bottom:181.786667pt;}
.y109{bottom:182.266667pt;}
.y177{bottom:182.746667pt;}
.ye8{bottom:185.786667pt;}
.y19d{bottom:186.586667pt;}
.y7e{bottom:186.746667pt;}
.yc6{bottom:191.386667pt;}
.y29{bottom:192.346667pt;}
.y15b{bottom:194.906667pt;}
.y57{bottom:199.386667pt;}
.y132{bottom:200.186667pt;}
.y108{bottom:200.666667pt;}
.ye7{bottom:204.186667pt;}
.y18c{bottom:204.986667pt;}
.y7d{bottom:205.146667pt;}
.yad{bottom:206.586667pt;}
.yc5{bottom:209.786667pt;}
.y28{bottom:210.746667pt;}
.y15a{bottom:213.306667pt;}
.y176{bottom:217.146667pt;}
.y56{bottom:217.786667pt;}
.y107{bottom:219.066667pt;}
.y18b{bottom:223.386667pt;}
.y7c{bottom:223.546667pt;}
.yc4{bottom:228.186667pt;}
.y27{bottom:229.146667pt;}
.y159{bottom:231.706667pt;}
.y131{bottom:234.586667pt;}
.ye6{bottom:235.066667pt;}
.y175{bottom:235.546667pt;}
.y19c{bottom:239.386667pt;}
.ye4{bottom:239.866667pt;}
.yac{bottom:240.986667pt;}
.y9a{bottom:241.946667pt;}
.ye5{bottom:247.906667pt;}
.y55{bottom:252.226667pt;}
.y130{bottom:253.026667pt;}
.y106{bottom:253.186667pt;}
.y174{bottom:253.986667pt;}
.ye3{bottom:257.826667pt;}
.y7b{bottom:257.986667pt;}
.y99{bottom:260.386667pt;}
.yc3{bottom:262.306667pt;}
.ye2{bottom:262.626667pt;}
.y26{bottom:263.426667pt;}
.y158{bottom:265.986667pt;}
.y54{bottom:270.626667pt;}
.y12f{bottom:271.426667pt;}
.yab{bottom:275.426667pt;}
.y18a{bottom:276.226667pt;}
.y7a{bottom:276.386667pt;}
.y98{bottom:278.786667pt;}
.y173{bottom:288.386667pt;}
.y53{bottom:289.026667pt;}
.y105{bottom:289.346667pt;}
.y12e{bottom:289.826667pt;}
.y19b{bottom:292.226667pt;}
.yaa{bottom:293.826667pt;}
.y79{bottom:294.786667pt;}
.yc2{bottom:297.026667pt;}
.y97{bottom:297.186667pt;}
.y25{bottom:298.786667pt;}
.ye1{bottom:300.066667pt;}
.y157{bottom:302.146667pt;}
.y172{bottom:306.786667pt;}
.y52{bottom:307.426667pt;}
.y104{bottom:307.746667pt;}
.y12d{bottom:308.226667pt;}
.y189{bottom:310.626667pt;}
.ya9{bottom:312.226667pt;}
.y78{bottom:313.186667pt;}
.y24{bottom:314.146667pt;}
.yc1{bottom:315.426667pt;}
.ye0{bottom:318.466667pt;}
.y156{bottom:320.546667pt;}
.y171{bottom:325.186667pt;}
.y51{bottom:325.826667pt;}
.y103{bottom:326.146667pt;}
.y12c{bottom:326.626667pt;}
.y188{bottom:329.026667pt;}
.y23{bottom:329.506667pt;}
.ya8{bottom:330.626667pt;}
.y77{bottom:331.586667pt;}
.yc0{bottom:333.826667pt;}
.y155{bottom:338.946667pt;}
.y50{bottom:344.226667pt;}
.y102{bottom:344.546667pt;}
.y12b{bottom:345.026667pt;}
.ya7{bottom:349.026667pt;}
.y76{bottom:349.986667pt;}
.ybf{bottom:352.226667pt;}
.ydf{bottom:352.866667pt;}
.y154{bottom:357.346667pt;}
.y170{bottom:359.586667pt;}
.y22{bottom:361.506667pt;}
.y4f{bottom:362.626667pt;}
.y12a{bottom:363.426667pt;}
.ya6{bottom:367.426667pt;}
.y75{bottom:368.386667pt;}
.ybe{bottom:370.626667pt;}
.yde{bottom:371.266667pt;}
.y153{bottom:375.746667pt;}
.y16f{bottom:377.986667pt;}
.y101{bottom:378.946667pt;}
.y21{bottom:379.906667pt;}
.y4e{bottom:381.026667pt;}
.y129{bottom:381.826667pt;}
.ya5{bottom:385.826667pt;}
.y74{bottom:386.786667pt;}
.ybd{bottom:389.026667pt;}
.ydd{bottom:389.666667pt;}
.y100{bottom:393.986667pt;}
.y152{bottom:394.146667pt;}
.y16e{bottom:396.386667pt;}
.y19a{bottom:397.826667pt;}
.y4d{bottom:399.426667pt;}
.y73{bottom:405.186667pt;}
.ybc{bottom:407.426667pt;}
.ydc{bottom:408.066667pt;}
.y151{bottom:412.546667pt;}
.y128{bottom:412.866667pt;}
.yff{bottom:413.186667pt;}
.y20{bottom:415.906667pt;}
.y187{bottom:416.066667pt;}
.y199{bottom:416.226667pt;}
.y4c{bottom:417.826667pt;}
.ya4{bottom:419.906667pt;}
.y96{bottom:423.586667pt;}
.ybb{bottom:425.826667pt;}
.ydb{bottom:426.466667pt;}
.y16d{bottom:430.786667pt;}
.y150{bottom:430.946667pt;}
.y127{bottom:431.906667pt;}
.yfe{bottom:432.226667pt;}
.y1f{bottom:434.306667pt;}
.y186{bottom:434.626667pt;}
.y4b{bottom:436.226667pt;}
.y72{bottom:439.586667pt;}
.y95{bottom:441.986667pt;}
.y16c{bottom:449.186667pt;}
.y14f{bottom:449.346667pt;}
.y198{bottom:450.626667pt;}
.y126{bottom:451.106667pt;}
.yfd{bottom:451.266667pt;}
.y1e{bottom:452.706667pt;}
.y185{bottom:453.026667pt;}
.y4a{bottom:454.626667pt;}
.y71{bottom:457.986667pt;}
.yba{bottom:459.906667pt;}
.yda{bottom:460.866667pt;}
.y197{bottom:469.026667pt;}
.y125{bottom:470.146667pt;}
.yfc{bottom:470.306667pt;}
.y1d{bottom:471.106667pt;}
.y49{bottom:473.026667pt;}
.y94{bottom:476.066667pt;}
.y70{bottom:476.386667pt;}
.y16b{bottom:483.426667pt;}
.y14e{bottom:483.746667pt;}
.y184{bottom:487.266667pt;}
.y124{bottom:489.186667pt;}
.yfb{bottom:489.346667pt;}
.y1c{bottom:489.506667pt;}
.y48{bottom:491.426667pt;}
.yb9{bottom:494.653333pt;}
.y6f{bottom:494.813333pt;}
.yd9{bottom:495.293333pt;}
.y16a{bottom:501.853333pt;}
.y14d{bottom:502.173333pt;}
.y196{bottom:503.453333pt;}
.y183{bottom:505.853333pt;}
.y1b{bottom:507.933333pt;}
.y123{bottom:508.253333pt;}
.yf9{bottom:508.413333pt;}
.ya3{bottom:509.853333pt;}
.y93{bottom:512.253333pt;}
.y6e{bottom:513.213333pt;}
.y169{bottom:520.253333pt;}
.y14c{bottom:520.573333pt;}
.y195{bottom:521.853333pt;}
.y47{bottom:525.853333pt;}
.y1a{bottom:526.333333pt;}
.y122{bottom:527.293333pt;}
.yf4{bottom:527.613333pt;}
.ya2{bottom:528.253333pt;}
.yb8{bottom:529.053333pt;}
.yd8{bottom:529.693333pt;}
.y92{bottom:530.653333pt;}
.y6d{bottom:531.453333pt;}
.y14b{bottom:538.973333pt;}
.y182{bottom:540.253333pt;}
.y46{bottom:544.253333pt;}
.y19{bottom:544.733333pt;}
.y121{bottom:546.333333pt;}
.ya1{bottom:546.653333pt;}
.yd7{bottom:548.093333pt;}
.y91{bottom:549.053333pt;}
.y6c{bottom:549.853333pt;}
.y168{bottom:554.653333pt;}
.yf6{bottom:556.733333pt;}
.y14a{bottom:557.373333pt;}
.y181{bottom:558.653333pt;}
.y45{bottom:562.653333pt;}
.y18{bottom:563.133333pt;}
.yb7{bottom:563.453333pt;}
.ya0{bottom:565.053333pt;}
.y120{bottom:565.533333pt;}
.yd6{bottom:566.493333pt;}
.y90{bottom:567.453333pt;}
.y6b{bottom:568.253333pt;}
.y167{bottom:573.053333pt;}
.y194{bottom:574.653333pt;}
.y149{bottom:575.773333pt;}
.y180{bottom:577.053333pt;}
.y44{bottom:581.053333pt;}
.y17{bottom:581.533333pt;}
.y9f{bottom:583.453333pt;}
.y11f{bottom:584.573333pt;}
.yd5{bottom:584.893333pt;}
.y8f{bottom:585.853333pt;}
.y193{bottom:593.053333pt;}
.y148{bottom:594.173333pt;}
.yb6{bottom:597.853333pt;}
.y43{bottom:599.453333pt;}
.y16{bottom:599.933333pt;}
.yf3{bottom:601.693333pt;}
.y9e{bottom:601.853333pt;}
.y6a{bottom:602.653333pt;}
.y11e{bottom:606.333333pt;}
.y166{bottom:607.453333pt;}
.y17f{bottom:611.453333pt;}
.y147{bottom:612.573333pt;}
.y42{bottom:617.853333pt;}
.y15{bottom:618.333333pt;}
.yd4{bottom:619.293333pt;}
.y8e{bottom:620.253333pt;}
.y69{bottom:621.053333pt;}
.y165{bottom:625.853333pt;}
.y192{bottom:627.453333pt;}
.y11c{bottom:628.093333pt;}
.y17e{bottom:629.853333pt;}
.y146{bottom:630.973333pt;}
.yb5{bottom:632.253333pt;}
.y41{bottom:636.253333pt;}
.y14{bottom:636.733333pt;}
.yd3{bottom:637.693333pt;}
.y8d{bottom:638.653333pt;}
.y68{bottom:639.453333pt;}
.y191{bottom:645.853333pt;}
.y145{bottom:649.373333pt;}
.y40{bottom:654.653333pt;}
.y8c{bottom:657.053333pt;}
.y11a{bottom:657.373333pt;}
.y67{bottom:657.853333pt;}
.y164{bottom:660.253333pt;}
.y17d{bottom:664.253333pt;}
.yb4{bottom:666.653333pt;}
.yd2{bottom:668.893333pt;}
.y13{bottom:670.813333pt;}
.y3f{bottom:673.053333pt;}
.yd0{bottom:673.693333pt;}
.y8b{bottom:675.453333pt;}
.y66{bottom:676.253333pt;}
.y163{bottom:678.653333pt;}
.y143{bottom:680.426667pt;}
.yd1{bottom:681.693333pt;}
.y17c{bottom:682.653333pt;}
.ycf{bottom:690.013333pt;}
.y3e{bottom:691.453333pt;}
.y8a{bottom:693.853333pt;}
.y65{bottom:694.653333pt;}
.ycd{bottom:695.453333pt;}
.y119{bottom:696.733333pt;}
.y190{bottom:698.653333pt;}
.y142{bottom:699.453333pt;}
.yb3{bottom:701.053333pt;}
.yce{bottom:702.813333pt;}
.y12{bottom:706.813333pt;}
.y3d{bottom:709.853333pt;}
.y89{bottom:712.253333pt;}
.y64{bottom:713.053333pt;}
.ycc{bottom:714.653333pt;}
.y17b{bottom:717.053333pt;}
.y141{bottom:718.493333pt;}
.y3c{bottom:728.253333pt;}
.y88{bottom:730.653333pt;}
.y118{bottom:731.293333pt;}
.y63{bottom:731.453333pt;}
.yb2{bottom:735.453333pt;}
.y140{bottom:737.533333pt;}
.y11{bottom:743.133333pt;}
.y3b{bottom:746.693333pt;}
.y87{bottom:749.093333pt;}
.y117{bottom:749.733333pt;}
.y62{bottom:749.893333pt;}
.y18f{bottom:751.493333pt;}
.y13f{bottom:756.613333pt;}
.y10{bottom:763.333333pt;}
.y9d{bottom:765.093333pt;}
.y162{bottom:765.893333pt;}
.y86{bottom:767.493333pt;}
.y116{bottom:768.133333pt;}
.yb1{bottom:769.893333pt;}
.y13e{bottom:775.813333pt;}
.y3a{bottom:781.093333pt;}
.y9c{bottom:783.493333pt;}
.y61{bottom:784.133333pt;}
.y161{bottom:784.293333pt;}
.yf{bottom:784.613333pt;}
.y85{bottom:785.893333pt;}
.y115{bottom:786.533333pt;}
.y17a{bottom:788.293333pt;}
.y13d{bottom:794.853333pt;}
.yf2{bottom:799.173333pt;}
.y39{bottom:799.493333pt;}
.y9b{bottom:801.893333pt;}
.y84{bottom:804.293333pt;}
.y114{bottom:804.933333pt;}
.ye{bottom:806.053333pt;}
.y13c{bottom:813.893333pt;}
.y38{bottom:817.893333pt;}
.y160{bottom:818.533333pt;}
.y60{bottom:820.293333pt;}
.ycb{bottom:822.693333pt;}
.y113{bottom:823.333333pt;}
.yc{bottom:826.213333pt;}
.yd{bottom:832.933333pt;}
.yf1{bottom:835.333333pt;}
.y37{bottom:836.293333pt;}
.y5f{bottom:838.693333pt;}
.y179{bottom:841.093333pt;}
.y112{bottom:841.733333pt;}
.yb{bottom:849.093333pt;}
.y13b{bottom:851.973333pt;}
.yf0{bottom:853.573333pt;}
.y36{bottom:854.693333pt;}
.y5e{bottom:857.093333pt;}
.y111{bottom:860.133333pt;}
.y139{bottom:871.013333pt;}
.y35{bottom:873.093333pt;}
.y5d{bottom:875.493333pt;}
.y110{bottom:878.533333pt;}
.yef{bottom:884.933333pt;}
.yed{bottom:890.373333pt;}
.y34{bottom:891.493333pt;}
.y138{bottom:892.933333pt;}
.y5c{bottom:893.893333pt;}
.ya{bottom:895.813333pt;}
.y10f{bottom:896.933333pt;}
.yee{bottom:897.733333pt;}
.yec{bottom:906.053333pt;}
.y33{bottom:909.893333pt;}
.yea{bottom:910.853333pt;}
.y83{bottom:912.293333pt;}
.y137{bottom:914.533333pt;}
.yeb{bottom:918.853333pt;}
.y9{bottom:926.373333pt;}
.y10e{bottom:927.973333pt;}
.y32{bottom:928.293333pt;}
.y82{bottom:930.693333pt;}
.y136{bottom:943.813333pt;}
.y31{bottom:946.693333pt;}
.y10d{bottom:947.013333pt;}
.y30{bottom:965.093333pt;}
.y8{bottom:973.093333pt;}
.y10c{bottom:983.333333pt;}
.y2f{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h1c{height:18.386667pt;}
.h1a{height:18.400000pt;}
.h25{height:18.420000pt;}
.h1b{height:18.426667pt;}
.h23{height:20.946667pt;}
.h1f{height:21.120000pt;}
.h24{height:21.266667pt;}
.h21{height:21.586667pt;}
.h1d{height:21.600000pt;}
.h10{height:25.294016pt;}
.h18{height:27.040000pt;}
.h19{height:28.480000pt;}
.h22{height:28.626667pt;}
.h1e{height:28.640000pt;}
.h15{height:31.750312pt;}
.ha{height:33.328125pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h12{height:44.468750pt;}
.h14{height:44.718750pt;}
.h5{height:47.680000pt;}
.h11{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h17{height:56.160000pt;}
.h13{height:62.781250pt;}
.he{height:62.812500pt;}
.hf{height:64.500000pt;}
.h20{height:66.404375pt;}
.h26{height:66.564375pt;}
.hb{height:67.837500pt;}
.hd{height:69.660000pt;}
.h8{height:73.490625pt;}
.hc{height:75.465000pt;}
.h16{height:82.012500pt;}
.h7{height:107.715000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:57.792000pt;}
.wc{width:64.800000pt;}
.w4{width:73.266667pt;}
.wd{width:76.960000pt;}
.wb{width:83.218667pt;}
.w9{width:95.026667pt;}
.w7{width:98.898667pt;}
.w2{width:111.520000pt;}
.wa{width:119.058667pt;}
.w8{width:123.712000pt;}
.w12{width:136.346667pt;}
.w13{width:145.773333pt;}
.wf{width:148.813333pt;}
.w16{width:152.493333pt;}
.w11{width:166.253333pt;}
.w15{width:166.413333pt;}
.w6{width:214.733333pt;}
.w5{width:223.253333pt;}
.w10{width:449.840000pt;}
.w14{width:456.560000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.866667pt;}
.x51{left:8.146667pt;}
.x2c{left:9.120000pt;}
.x31{left:10.866667pt;}
.x2f{left:12.626667pt;}
.x36{left:14.866667pt;}
.x35{left:16.626667pt;}
.x32{left:18.866667pt;}
.x30{left:21.120000pt;}
.x34{left:22.866667pt;}
.x33{left:25.120000pt;}
.x37{left:28.626667pt;}
.x2a{left:30.706667pt;}
.x2d{left:31.986667pt;}
.x3c{left:35.666667pt;}
.x42{left:38.080000pt;}
.x29{left:42.066667pt;}
.x2{left:44.799998pt;}
.x46{left:53.106667pt;}
.x44{left:56.146667pt;}
.x45{left:59.666667pt;}
.x43{left:64.146667pt;}
.x41{left:65.266667pt;}
.x50{left:67.026667pt;}
.x49{left:69.746667pt;}
.x48{left:72.786667pt;}
.x47{left:75.026667pt;}
.x52{left:76.146667pt;}
.x4e{left:77.266667pt;}
.x4f{left:78.226667pt;}
.x1{left:113.472000pt;}
.xf{left:117.792000pt;}
.x11{left:124.832000pt;}
.xd{left:132.352000pt;}
.x16{left:135.546667pt;}
.x25{left:140.680000pt;}
.xc{left:141.786667pt;}
.x4{left:145.146667pt;}
.x4b{left:148.826667pt;}
.xb{left:160.666667pt;}
.x4a{left:168.680000pt;}
.x3e{left:172.040000pt;}
.x9{left:178.906667pt;}
.x38{left:179.880000pt;}
.x3d{left:182.106667pt;}
.x5{left:183.706667pt;}
.x18{left:213.146667pt;}
.x27{left:214.600000pt;}
.x1e{left:221.786667pt;}
.x22{left:227.066667pt;}
.x10{left:231.866667pt;}
.x12{left:238.106667pt;}
.x1d{left:242.906667pt;}
.x39{left:263.746667pt;}
.x17{left:265.986667pt;}
.xe{left:305.506667pt;}
.xa{left:307.906667pt;}
.x19{left:311.106667pt;}
.x2b{left:314.146667pt;}
.x6{left:317.346667pt;}
.x24{left:325.506667pt;}
.x3a{left:329.186667pt;}
.x4c{left:335.746667pt;}
.x1f{left:337.186667pt;}
.x3f{left:339.106667pt;}
.x13{left:351.266667pt;}
.x23{left:357.346667pt;}
.x1a{left:397.506667pt;}
.x3{left:406.466667pt;}
.x28{left:438.506667pt;}
.x20{left:452.413333pt;}
.x14{left:462.813333pt;}
.x3b{left:465.226667pt;}
.x4d{left:472.746667pt;}
.x40{left:476.106667pt;}
.x7{left:489.353333pt;}
.x1b{left:493.533333pt;}
.x8{left:495.453333pt;}
.x2e{left:534.186667pt;}
.x21{left:566.013333pt;}
.x15{left:604.733333pt;}
.x1c{left:615.493333pt;}
}




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