
    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_f9304337fefad44777171a92.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_8ee24a51bc17614e8f2e4b10.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_446357507d50a5337d77d522.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_d278ecad9cb055f740119a5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.960000px;}
.ls9{letter-spacing:-0.948000px;}
.lsc{letter-spacing:-0.786000px;}
.lse{letter-spacing:-0.579600px;}
.ls1e{letter-spacing:-0.533400px;}
.ls5{letter-spacing:-0.463800px;}
.ls25{letter-spacing:-0.252000px;}
.ls16{letter-spacing:-0.240600px;}
.ls24{letter-spacing:-0.205800px;}
.ls11{letter-spacing:-0.186600px;}
.ls4{letter-spacing:-0.132600px;}
.ls8{letter-spacing:-0.058320px;}
.ls1d{letter-spacing:-0.032400px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.038880px;}
.ls7{letter-spacing:0.066000px;}
.lsf{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.150000px;}
.ls12{letter-spacing:0.174000px;}
.ls14{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.175200px;}
.ls18{letter-spacing:0.186600px;}
.ls6{letter-spacing:0.190200px;}
.ls15{letter-spacing:0.218400px;}
.ls10{letter-spacing:0.275040px;}
.lsa{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.393600px;}
.lsb{letter-spacing:0.393840px;}
.ls23{letter-spacing:0.433440px;}
.ls19{letter-spacing:0.816480px;}
.ls22{letter-spacing:12.186720px;}
.ls21{letter-spacing:42.570720px;}
.ls1{letter-spacing:45.306720px;}
.ls1c{letter-spacing:118.170720px;}
.ls1f{letter-spacing:118.890720px;}
.ls1b{letter-spacing:132.570720px;}
.ls20{letter-spacing:134.010720px;}
.ls1a{letter-spacing:147.690720px;}
.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:-19.077120px;}
.ws4{word-spacing:-16.272000px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsf{word-spacing:-13.899360px;}
.wsa{word-spacing:-13.811760px;}
.wsd{word-spacing:-13.724160px;}
.ws10{word-spacing:-13.692360px;}
.wsc{word-spacing:-13.680960px;}
.ws7{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.473360px;}
.ws8{word-spacing:-13.447440px;}
.wsb{word-spacing:-13.319160px;}
.ws12{word-spacing:-13.299960px;}
.wse{word-spacing:-13.265160px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.ws13{word-spacing:-8.534880px;}
.ws9{word-spacing:0.000000px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._22{margin-left:-214.738560px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-159.758400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-144.748560px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._23{margin-left:-109.765680px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._1a{margin-left:-31.530240px;}
._27{margin-left:-3.986880px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2a{width:1.053360px;}
._2b{width:2.058240px;}
._2c{width:3.361200px;}
._2e{width:4.670400px;}
._33{width:6.099600px;}
._32{width:7.589520px;}
._29{width:9.288720px;}
._28{width:10.533600px;}
._2f{width:12.310560px;}
._2d{width:15.136560px;}
._31{width:16.635600px;}
._30{width:18.226800px;}
._37{width:20.033280px;}
._34{width:21.155040px;}
._36{width:27.728640px;}
._35{width:32.748480px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y80{bottom:3.960000px;}
.y96{bottom:6.660000px;}
.y98{bottom:6.705000px;}
.y114{bottom:12.420000px;}
.y116{bottom:12.600000px;}
.y125{bottom:21.240000px;}
.y94{bottom:22.140000px;}
.yde{bottom:27.540000px;}
.yc3{bottom:27.585000px;}
.ybe{bottom:27.720000px;}
.ye3{bottom:27.750000px;}
.yda{bottom:27.765000px;}
.y8c{bottom:42.120000px;}
.ye0{bottom:48.774000px;}
.ybd{bottom:48.780000px;}
.ye2{bottom:48.810000px;}
.y6{bottom:60.480000px;}
.y87{bottom:61.020000px;}
.y82{bottom:61.200000px;}
.y90{bottom:79.374000px;}
.ybb{bottom:90.576000px;}
.y66{bottom:91.296000px;}
.y31{bottom:92.196000px;}
.y8f{bottom:101.376000px;}
.y10e{bottom:104.076000px;}
.y165{bottom:110.556000px;}
.yba{bottom:111.636000px;}
.y65{bottom:112.356000px;}
.y30{bottom:113.256000px;}
.ydf{bottom:115.416000px;}
.y93{bottom:120.456000px;}
.y10d{bottom:125.136000px;}
.yb9{bottom:132.696000px;}
.y64{bottom:133.416000px;}
.y2f{bottom:134.316000px;}
.y13c{bottom:138.636000px;}
.y10c{bottom:146.196000px;}
.yb8{bottom:153.750000px;}
.y63{bottom:154.470000px;}
.y2e{bottom:155.370000px;}
.y92{bottom:157.710000px;}
.y13b{bottom:159.690000px;}
.y10b{bottom:167.250000px;}
.yb7{bottom:174.810000px;}
.y62{bottom:175.530000px;}
.y2d{bottom:176.430000px;}
.y91{bottom:176.790000px;}
.ydd{bottom:179.490000px;}
.y13a{bottom:180.750000px;}
.y10a{bottom:188.310000px;}
.y164{bottom:193.530000px;}
.y8b{bottom:195.870000px;}
.y61{bottom:196.590000px;}
.y2c{bottom:197.490000px;}
.y139{bottom:201.810000px;}
.y109{bottom:209.370000px;}
.y163{bottom:214.590000px;}
.y8e{bottom:214.950000px;}
.yb6{bottom:216.930000px;}
.y60{bottom:217.650000px;}
.y2b{bottom:218.550000px;}
.ydc{bottom:222.330000px;}
.y138{bottom:222.870000px;}
.y108{bottom:230.430000px;}
.yb5{bottom:232.050000px;}
.y8d{bottom:234.030000px;}
.y162{bottom:235.650000px;}
.y5f{bottom:238.710000px;}
.y2a{bottom:239.610000px;}
.y137{bottom:243.930000px;}
.y107{bottom:251.490000px;}
.y86{bottom:253.110000px;}
.yb4{bottom:253.830000px;}
.y161{bottom:256.710000px;}
.y5e{bottom:259.770000px;}
.y29{bottom:260.670000px;}
.y136{bottom:264.990000px;}
.ydb{bottom:265.170000px;}
.y8a{bottom:272.190000px;}
.y106{bottom:272.550000px;}
.yb3{bottom:275.610000px;}
.y160{bottom:277.770000px;}
.y5d{bottom:280.830000px;}
.y28{bottom:281.730000px;}
.y135{bottom:286.050000px;}
.y89{bottom:291.090000px;}
.y105{bottom:293.610000px;}
.yb2{bottom:297.570000px;}
.y15f{bottom:298.830000px;}
.y5c{bottom:301.890000px;}
.y27{bottom:302.790000px;}
.y134{bottom:307.110000px;}
.yd9{bottom:308.010000px;}
.y88{bottom:310.170000px;}
.y104{bottom:314.670000px;}
.yb1{bottom:319.350000px;}
.y15e{bottom:319.890000px;}
.y5b{bottom:322.950000px;}
.y26{bottom:323.850000px;}
.y133{bottom:328.215000px;}
.y81{bottom:329.295000px;}
.y103{bottom:335.775000px;}
.y15d{bottom:340.995000px;}
.y5a{bottom:344.055000px;}
.y25{bottom:344.955000px;}
.yb0{bottom:347.835000px;}
.y85{bottom:348.375000px;}
.y132{bottom:349.275000px;}
.yd8{bottom:350.895000px;}
.y102{bottom:356.835000px;}
.y15c{bottom:362.055000px;}
.y59{bottom:365.115000px;}
.y24{bottom:366.015000px;}
.y84{bottom:367.455000px;}
.yaf{bottom:368.895000px;}
.y131{bottom:370.335000px;}
.y101{bottom:377.895000px;}
.y15b{bottom:383.115000px;}
.y58{bottom:386.175000px;}
.y83{bottom:386.535000px;}
.y23{bottom:387.075000px;}
.yae{bottom:389.955000px;}
.y130{bottom:391.395000px;}
.yd7{bottom:393.735000px;}
.y100{bottom:398.955000px;}
.y15a{bottom:404.175000px;}
.y7f{bottom:405.615000px;}
.y57{bottom:407.235000px;}
.y22{bottom:408.135000px;}
.yad{bottom:411.015000px;}
.y12f{bottom:412.455000px;}
.yff{bottom:420.015000px;}
.yd6{bottom:422.175000px;}
.y159{bottom:425.235000px;}
.y56{bottom:428.295000px;}
.y21{bottom:429.195000px;}
.y7e{bottom:431.355000px;}
.yac{bottom:432.075000px;}
.y12e{bottom:433.515000px;}
.yfe{bottom:435.135000px;}
.yd5{bottom:443.235000px;}
.y158{bottom:446.295000px;}
.y55{bottom:449.355000px;}
.y20{bottom:450.255000px;}
.y7d{bottom:452.415000px;}
.yab{bottom:453.135000px;}
.y12d{bottom:454.575000px;}
.yfd{bottom:456.915000px;}
.yd4{bottom:464.295000px;}
.y157{bottom:467.355000px;}
.y54{bottom:470.415000px;}
.y1f{bottom:471.315000px;}
.y7c{bottom:473.475000px;}
.yaa{bottom:474.195000px;}
.y12c{bottom:475.635000px;}
.yd3{bottom:485.355000px;}
.y156{bottom:488.415000px;}
.y53{bottom:491.475000px;}
.y1e{bottom:492.375000px;}
.y7b{bottom:494.535000px;}
.ya9{bottom:495.255000px;}
.y12b{bottom:496.695000px;}
.yfc{bottom:499.755000px;}
.yd2{bottom:506.415000px;}
.y155{bottom:509.475000px;}
.y52{bottom:512.535000px;}
.y1d{bottom:513.435000px;}
.y7a{bottom:515.595000px;}
.y12a{bottom:517.755000px;}
.ya8{bottom:525.315000px;}
.yd1{bottom:527.475000px;}
.y154{bottom:530.535000px;}
.y51{bottom:533.595000px;}
.y79{bottom:536.655000px;}
.y1c{bottom:536.835000px;}
.y129{bottom:538.815000px;}
.ya7{bottom:540.435000px;}
.yfb{bottom:542.595000px;}
.yd0{bottom:548.535000px;}
.y153{bottom:551.595000px;}
.y50{bottom:554.655000px;}
.y78{bottom:557.715000px;}
.y128{bottom:559.875000px;}
.ya6{bottom:562.215000px;}
.y1b{bottom:566.715000px;}
.ycf{bottom:569.595000px;}
.y152{bottom:572.655000px;}
.y4f{bottom:575.715000px;}
.y77{bottom:578.775000px;}
.y127{bottom:580.935000px;}
.ya5{bottom:583.995000px;}
.yfa{bottom:585.615000px;}
.y1a{bottom:587.775000px;}
.yce{bottom:590.655000px;}
.y151{bottom:593.715000px;}
.y126{bottom:596.085000px;}
.y4e{bottom:596.805000px;}
.y76{bottom:599.865000px;}
.ya4{bottom:605.805000px;}
.y19{bottom:608.865000px;}
.ycd{bottom:611.745000px;}
.y150{bottom:614.805000px;}
.y4d{bottom:617.865000px;}
.y75{bottom:620.925000px;}
.ya3{bottom:627.765000px;}
.yf9{bottom:628.485000px;}
.y18{bottom:629.925000px;}
.ycc{bottom:632.805000px;}
.y14f{bottom:635.865000px;}
.y4c{bottom:638.925000px;}
.y74{bottom:641.805000px;}
.y17{bottom:650.985000px;}
.ycb{bottom:653.865000px;}
.y124{bottom:654.225000px;}
.ya2{bottom:656.205000px;}
.y14e{bottom:656.925000px;}
.y4b{bottom:659.805000px;}
.y73{bottom:662.865000px;}
.yf8{bottom:671.325000px;}
.y16{bottom:672.045000px;}
.yca{bottom:674.925000px;}
.y123{bottom:676.185000px;}
.ya1{bottom:677.265000px;}
.y14d{bottom:677.985000px;}
.y4a{bottom:680.865000px;}
.y72{bottom:683.925000px;}
.y15{bottom:693.105000px;}
.yc9{bottom:695.985000px;}
.y122{bottom:697.965000px;}
.ya0{bottom:698.325000px;}
.y14c{bottom:699.045000px;}
.yf7{bottom:699.765000px;}
.y49{bottom:701.925000px;}
.y71{bottom:704.985000px;}
.y14{bottom:714.165000px;}
.yc8{bottom:717.045000px;}
.y9f{bottom:719.385000px;}
.y121{bottom:719.745000px;}
.y14b{bottom:720.105000px;}
.yf6{bottom:720.825000px;}
.y48{bottom:722.985000px;}
.y70{bottom:726.045000px;}
.y13{bottom:735.225000px;}
.yc7{bottom:738.105000px;}
.y9e{bottom:740.445000px;}
.y14a{bottom:741.165000px;}
.yf5{bottom:741.885000px;}
.y47{bottom:744.045000px;}
.y6f{bottom:756.105000px;}
.y12{bottom:756.285000px;}
.yc6{bottom:759.165000px;}
.y9d{bottom:761.505000px;}
.y149{bottom:762.225000px;}
.yf4{bottom:762.945000px;}
.y46{bottom:765.105000px;}
.y120{bottom:769.245000px;}
.yc5{bottom:774.285000px;}
.y6e{bottom:777.165000px;}
.y11{bottom:777.345000px;}
.y9c{bottom:782.565000px;}
.y148{bottom:783.285000px;}
.yf3{bottom:784.005000px;}
.y45{bottom:786.165000px;}
.y11f{bottom:790.305000px;}
.yc4{bottom:796.065000px;}
.y6d{bottom:798.225000px;}
.y10{bottom:798.405000px;}
.y9b{bottom:803.625000px;}
.y147{bottom:804.345000px;}
.yf2{bottom:805.065000px;}
.y44{bottom:807.225000px;}
.y11e{bottom:811.365000px;}
.y6c{bottom:819.285000px;}
.yf{bottom:819.465000px;}
.y9a{bottom:824.685000px;}
.y146{bottom:825.405000px;}
.yf1{bottom:826.125000px;}
.y43{bottom:828.285000px;}
.y11d{bottom:832.425000px;}
.yc2{bottom:839.085000px;}
.y99{bottom:839.805000px;}
.y6b{bottom:840.345000px;}
.ye{bottom:840.525000px;}
.y145{bottom:846.465000px;}
.yf0{bottom:847.185000px;}
.y42{bottom:849.345000px;}
.y11c{bottom:853.485000px;}
.y6a{bottom:861.405000px;}
.yd{bottom:861.585000px;}
.y144{bottom:867.570000px;}
.yef{bottom:868.290000px;}
.y41{bottom:870.450000px;}
.y11b{bottom:874.590000px;}
.yc1{bottom:881.970000px;}
.y69{bottom:882.510000px;}
.y97{bottom:883.410000px;}
.yc{bottom:884.850000px;}
.y143{bottom:888.630000px;}
.yee{bottom:889.350000px;}
.y40{bottom:891.510000px;}
.y11a{bottom:895.650000px;}
.y68{bottom:903.570000px;}
.y95{bottom:905.190000px;}
.y142{bottom:909.690000px;}
.yed{bottom:910.410000px;}
.yb{bottom:911.130000px;}
.y3f{bottom:912.570000px;}
.y119{bottom:916.710000px;}
.y67{bottom:924.630000px;}
.yc0{bottom:924.810000px;}
.ya{bottom:927.870000px;}
.y141{bottom:930.750000px;}
.yec{bottom:931.470000px;}
.y3e{bottom:933.630000px;}
.y118{bottom:937.770000px;}
.y9{bottom:950.190000px;}
.y140{bottom:951.810000px;}
.yeb{bottom:952.530000px;}
.y3d{bottom:954.690000px;}
.y117{bottom:958.830000px;}
.ybf{bottom:967.650000px;}
.y13f{bottom:972.870000px;}
.yea{bottom:973.590000px;}
.y115{bottom:973.950000px;}
.y8{bottom:975.390000px;}
.y3c{bottom:975.750000px;}
.y13e{bottom:993.930000px;}
.ye9{bottom:994.650000px;}
.y3b{bottom:996.810000px;}
.y113{bottom:1001.670000px;}
.y7{bottom:1009.050000px;}
.ybc{bottom:1010.490000px;}
.ye8{bottom:1015.710000px;}
.y3a{bottom:1017.870000px;}
.y13d{bottom:1027.050000px;}
.y112{bottom:1029.390000px;}
.ye7{bottom:1036.770000px;}
.y39{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.y111{bottom:1051.170000px;}
.ye6{bottom:1057.830000px;}
.y38{bottom:1059.990000px;}
.y110{bottom:1072.950000px;}
.ye5{bottom:1078.890000px;}
.y37{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.ye4{bottom:1094.010000px;}
.y10f{bottom:1094.730000px;}
.y36{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.ye1{bottom:1115.790000px;}
.y35{bottom:1123.170000px;}
.y34{bottom:1144.260000px;}
.y2{bottom:1145.700000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.hb{height:18.180000px;}
.hd{height:18.360000px;}
.hf{height:18.396000px;}
.h13{height:21.060000px;}
.h14{height:21.096000px;}
.h1b{height:26.820000px;}
.h1c{height:27.000000px;}
.h1d{height:35.640000px;}
.h12{height:36.540000px;}
.h8{height:38.671172px;}
.h19{height:41.940000px;}
.h17{height:41.976000px;}
.h16{height:42.120000px;}
.h18{height:42.156000px;}
.h10{height:56.340000px;}
.h9{height:59.439023px;}
.ha{height:59.551172px;}
.h6{height:61.189805px;}
.h15{height:63.180000px;}
.h1a{height:63.216000px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:71.613281px;}
.he{height:75.456000px;}
.hc{height:75.600000px;}
.h2{height:86.255508px;}
.h11{height:93.780000px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:46.080000px;}
.wd{width:52.740000px;}
.w14{width:59.400000px;}
.w9{width:66.240000px;}
.wf{width:73.476000px;}
.w1a{width:80.496000px;}
.w16{width:82.800000px;}
.w10{width:82.980000px;}
.w1c{width:91.620000px;}
.w17{width:92.880000px;}
.w12{width:93.240000px;}
.w1b{width:99.216000px;}
.w11{width:100.116000px;}
.w6{width:113.580000px;}
.w5{width:120.816000px;}
.wc{width:140.616000px;}
.wb{width:147.780000px;}
.w7{width:188.310000px;}
.w8{width:228.810000px;}
.w15{width:287.850000px;}
.w19{width:289.650000px;}
.we{width:294.330000px;}
.w21{width:323.850000px;}
.w1e{width:331.230000px;}
.wa{width:343.695000px;}
.w18{width:351.795000px;}
.w13{width:351.975000px;}
.w1d{width:356.655000px;}
.w1f{width:362.415000px;}
.w22{width:375.195000px;}
.w4{width:417.855000px;}
.w20{width:694.365000px;}
.w23{width:699.765000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:4.500000px;}
.x8{left:7.560000px;}
.x6{left:53.999987px;}
.x1f{left:80.999987px;}
.x7{left:96.336000px;}
.x1a{left:99.396000px;}
.x1e{left:108.035987px;}
.x9{left:143.136000px;}
.x10{left:149.796000px;}
.x15{left:156.450000px;}
.xd{left:163.290000px;}
.x5{left:173.189987px;}
.x3{left:286.814987px;}
.xc{left:332.175000px;}
.x2{left:350.714987px;}
.x4{left:419.294987px;}
.x1c{left:421.275000px;}
.x1b{left:431.355000px;}
.x16{left:440.175000px;}
.x11{left:444.855000px;}
.x1{left:479.444987px;}
.xe{left:507.705000px;}
.x12{left:519.045000px;}
.x17{left:521.565000px;}
.xa{left:561.705000px;}
.x13{left:602.745000px;}
.x18{left:605.265000px;}
.xf{left:656.205000px;}
.xb{left:683.250000px;}
.x14{left:703.590000px;}
.x19{left:705.210000px;}
.x20{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.853333pt;}
.ls9{letter-spacing:-0.842667pt;}
.lsc{letter-spacing:-0.698667pt;}
.lse{letter-spacing:-0.515200pt;}
.ls1e{letter-spacing:-0.474133pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls25{letter-spacing:-0.224000pt;}
.ls16{letter-spacing:-0.213867pt;}
.ls24{letter-spacing:-0.182933pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls1d{letter-spacing:-0.028800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.034560pt;}
.ls7{letter-spacing:0.058667pt;}
.lsf{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133333pt;}
.ls12{letter-spacing:0.154667pt;}
.ls14{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.155733pt;}
.ls18{letter-spacing:0.165867pt;}
.ls6{letter-spacing:0.169067pt;}
.ls15{letter-spacing:0.194133pt;}
.ls10{letter-spacing:0.244480pt;}
.lsa{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.349867pt;}
.lsb{letter-spacing:0.350080pt;}
.ls23{letter-spacing:0.385280pt;}
.ls19{letter-spacing:0.725760pt;}
.ls22{letter-spacing:10.832640pt;}
.ls21{letter-spacing:37.840640pt;}
.ls1{letter-spacing:40.272640pt;}
.ls1c{letter-spacing:105.040640pt;}
.ls1f{letter-spacing:105.680640pt;}
.ls1b{letter-spacing:117.840640pt;}
.ls20{letter-spacing:119.120640pt;}
.ls1a{letter-spacing:131.280640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws4{word-spacing:-14.464000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsf{word-spacing:-12.354987pt;}
.wsa{word-spacing:-12.277120pt;}
.wsd{word-spacing:-12.199253pt;}
.ws10{word-spacing:-12.170987pt;}
.wsc{word-spacing:-12.160853pt;}
.ws7{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.976320pt;}
.ws8{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.839253pt;}
.ws12{word-spacing:-11.822187pt;}
.wse{word-spacing:-11.791253pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.ws13{word-spacing:-7.586560pt;}
.ws9{word-spacing:0.000000pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._22{margin-left:-190.878720pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.007467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-128.665387pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._23{margin-left:-97.569493pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._1a{margin-left:-28.026880pt;}
._27{margin-left:-3.543893pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2a{width:0.936320pt;}
._2b{width:1.829547pt;}
._2c{width:2.987733pt;}
._2e{width:4.151467pt;}
._33{width:5.421867pt;}
._32{width:6.746240pt;}
._29{width:8.256640pt;}
._28{width:9.363200pt;}
._2f{width:10.942720pt;}
._2d{width:13.454720pt;}
._31{width:14.787200pt;}
._30{width:16.201600pt;}
._37{width:17.807360pt;}
._34{width:18.804480pt;}
._36{width:24.647680pt;}
._35{width:29.109760pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:3.520000pt;}
.y96{bottom:5.920000pt;}
.y98{bottom:5.960000pt;}
.y114{bottom:11.040000pt;}
.y116{bottom:11.200000pt;}
.y125{bottom:18.880000pt;}
.y94{bottom:19.680000pt;}
.yde{bottom:24.480000pt;}
.yc3{bottom:24.520000pt;}
.ybe{bottom:24.640000pt;}
.ye3{bottom:24.666667pt;}
.yda{bottom:24.680000pt;}
.y8c{bottom:37.440000pt;}
.ye0{bottom:43.354667pt;}
.ybd{bottom:43.360000pt;}
.ye2{bottom:43.386667pt;}
.y6{bottom:53.760000pt;}
.y87{bottom:54.240000pt;}
.y82{bottom:54.400000pt;}
.y90{bottom:70.554667pt;}
.ybb{bottom:80.512000pt;}
.y66{bottom:81.152000pt;}
.y31{bottom:81.952000pt;}
.y8f{bottom:90.112000pt;}
.y10e{bottom:92.512000pt;}
.y165{bottom:98.272000pt;}
.yba{bottom:99.232000pt;}
.y65{bottom:99.872000pt;}
.y30{bottom:100.672000pt;}
.ydf{bottom:102.592000pt;}
.y93{bottom:107.072000pt;}
.y10d{bottom:111.232000pt;}
.yb9{bottom:117.952000pt;}
.y64{bottom:118.592000pt;}
.y2f{bottom:119.392000pt;}
.y13c{bottom:123.232000pt;}
.y10c{bottom:129.952000pt;}
.yb8{bottom:136.666667pt;}
.y63{bottom:137.306667pt;}
.y2e{bottom:138.106667pt;}
.y92{bottom:140.186667pt;}
.y13b{bottom:141.946667pt;}
.y10b{bottom:148.666667pt;}
.yb7{bottom:155.386667pt;}
.y62{bottom:156.026667pt;}
.y2d{bottom:156.826667pt;}
.y91{bottom:157.146667pt;}
.ydd{bottom:159.546667pt;}
.y13a{bottom:160.666667pt;}
.y10a{bottom:167.386667pt;}
.y164{bottom:172.026667pt;}
.y8b{bottom:174.106667pt;}
.y61{bottom:174.746667pt;}
.y2c{bottom:175.546667pt;}
.y139{bottom:179.386667pt;}
.y109{bottom:186.106667pt;}
.y163{bottom:190.746667pt;}
.y8e{bottom:191.066667pt;}
.yb6{bottom:192.826667pt;}
.y60{bottom:193.466667pt;}
.y2b{bottom:194.266667pt;}
.ydc{bottom:197.626667pt;}
.y138{bottom:198.106667pt;}
.y108{bottom:204.826667pt;}
.yb5{bottom:206.266667pt;}
.y8d{bottom:208.026667pt;}
.y162{bottom:209.466667pt;}
.y5f{bottom:212.186667pt;}
.y2a{bottom:212.986667pt;}
.y137{bottom:216.826667pt;}
.y107{bottom:223.546667pt;}
.y86{bottom:224.986667pt;}
.yb4{bottom:225.626667pt;}
.y161{bottom:228.186667pt;}
.y5e{bottom:230.906667pt;}
.y29{bottom:231.706667pt;}
.y136{bottom:235.546667pt;}
.ydb{bottom:235.706667pt;}
.y8a{bottom:241.946667pt;}
.y106{bottom:242.266667pt;}
.yb3{bottom:244.986667pt;}
.y160{bottom:246.906667pt;}
.y5d{bottom:249.626667pt;}
.y28{bottom:250.426667pt;}
.y135{bottom:254.266667pt;}
.y89{bottom:258.746667pt;}
.y105{bottom:260.986667pt;}
.yb2{bottom:264.506667pt;}
.y15f{bottom:265.626667pt;}
.y5c{bottom:268.346667pt;}
.y27{bottom:269.146667pt;}
.y134{bottom:272.986667pt;}
.yd9{bottom:273.786667pt;}
.y88{bottom:275.706667pt;}
.y104{bottom:279.706667pt;}
.yb1{bottom:283.866667pt;}
.y15e{bottom:284.346667pt;}
.y5b{bottom:287.066667pt;}
.y26{bottom:287.866667pt;}
.y133{bottom:291.746667pt;}
.y81{bottom:292.706667pt;}
.y103{bottom:298.466667pt;}
.y15d{bottom:303.106667pt;}
.y5a{bottom:305.826667pt;}
.y25{bottom:306.626667pt;}
.yb0{bottom:309.186667pt;}
.y85{bottom:309.666667pt;}
.y132{bottom:310.466667pt;}
.yd8{bottom:311.906667pt;}
.y102{bottom:317.186667pt;}
.y15c{bottom:321.826667pt;}
.y59{bottom:324.546667pt;}
.y24{bottom:325.346667pt;}
.y84{bottom:326.626667pt;}
.yaf{bottom:327.906667pt;}
.y131{bottom:329.186667pt;}
.y101{bottom:335.906667pt;}
.y15b{bottom:340.546667pt;}
.y58{bottom:343.266667pt;}
.y83{bottom:343.586667pt;}
.y23{bottom:344.066667pt;}
.yae{bottom:346.626667pt;}
.y130{bottom:347.906667pt;}
.yd7{bottom:349.986667pt;}
.y100{bottom:354.626667pt;}
.y15a{bottom:359.266667pt;}
.y7f{bottom:360.546667pt;}
.y57{bottom:361.986667pt;}
.y22{bottom:362.786667pt;}
.yad{bottom:365.346667pt;}
.y12f{bottom:366.626667pt;}
.yff{bottom:373.346667pt;}
.yd6{bottom:375.266667pt;}
.y159{bottom:377.986667pt;}
.y56{bottom:380.706667pt;}
.y21{bottom:381.506667pt;}
.y7e{bottom:383.426667pt;}
.yac{bottom:384.066667pt;}
.y12e{bottom:385.346667pt;}
.yfe{bottom:386.786667pt;}
.yd5{bottom:393.986667pt;}
.y158{bottom:396.706667pt;}
.y55{bottom:399.426667pt;}
.y20{bottom:400.226667pt;}
.y7d{bottom:402.146667pt;}
.yab{bottom:402.786667pt;}
.y12d{bottom:404.066667pt;}
.yfd{bottom:406.146667pt;}
.yd4{bottom:412.706667pt;}
.y157{bottom:415.426667pt;}
.y54{bottom:418.146667pt;}
.y1f{bottom:418.946667pt;}
.y7c{bottom:420.866667pt;}
.yaa{bottom:421.506667pt;}
.y12c{bottom:422.786667pt;}
.yd3{bottom:431.426667pt;}
.y156{bottom:434.146667pt;}
.y53{bottom:436.866667pt;}
.y1e{bottom:437.666667pt;}
.y7b{bottom:439.586667pt;}
.ya9{bottom:440.226667pt;}
.y12b{bottom:441.506667pt;}
.yfc{bottom:444.226667pt;}
.yd2{bottom:450.146667pt;}
.y155{bottom:452.866667pt;}
.y52{bottom:455.586667pt;}
.y1d{bottom:456.386667pt;}
.y7a{bottom:458.306667pt;}
.y12a{bottom:460.226667pt;}
.ya8{bottom:466.946667pt;}
.yd1{bottom:468.866667pt;}
.y154{bottom:471.586667pt;}
.y51{bottom:474.306667pt;}
.y79{bottom:477.026667pt;}
.y1c{bottom:477.186667pt;}
.y129{bottom:478.946667pt;}
.ya7{bottom:480.386667pt;}
.yfb{bottom:482.306667pt;}
.yd0{bottom:487.586667pt;}
.y153{bottom:490.306667pt;}
.y50{bottom:493.026667pt;}
.y78{bottom:495.746667pt;}
.y128{bottom:497.666667pt;}
.ya6{bottom:499.746667pt;}
.y1b{bottom:503.746667pt;}
.ycf{bottom:506.306667pt;}
.y152{bottom:509.026667pt;}
.y4f{bottom:511.746667pt;}
.y77{bottom:514.466667pt;}
.y127{bottom:516.386667pt;}
.ya5{bottom:519.106667pt;}
.yfa{bottom:520.546667pt;}
.y1a{bottom:522.466667pt;}
.yce{bottom:525.026667pt;}
.y151{bottom:527.746667pt;}
.y126{bottom:529.853333pt;}
.y4e{bottom:530.493333pt;}
.y76{bottom:533.213333pt;}
.ya4{bottom:538.493333pt;}
.y19{bottom:541.213333pt;}
.ycd{bottom:543.773333pt;}
.y150{bottom:546.493333pt;}
.y4d{bottom:549.213333pt;}
.y75{bottom:551.933333pt;}
.ya3{bottom:558.013333pt;}
.yf9{bottom:558.653333pt;}
.y18{bottom:559.933333pt;}
.ycc{bottom:562.493333pt;}
.y14f{bottom:565.213333pt;}
.y4c{bottom:567.933333pt;}
.y74{bottom:570.493333pt;}
.y17{bottom:578.653333pt;}
.ycb{bottom:581.213333pt;}
.y124{bottom:581.533333pt;}
.ya2{bottom:583.293333pt;}
.y14e{bottom:583.933333pt;}
.y4b{bottom:586.493333pt;}
.y73{bottom:589.213333pt;}
.yf8{bottom:596.733333pt;}
.y16{bottom:597.373333pt;}
.yca{bottom:599.933333pt;}
.y123{bottom:601.053333pt;}
.ya1{bottom:602.013333pt;}
.y14d{bottom:602.653333pt;}
.y4a{bottom:605.213333pt;}
.y72{bottom:607.933333pt;}
.y15{bottom:616.093333pt;}
.yc9{bottom:618.653333pt;}
.y122{bottom:620.413333pt;}
.ya0{bottom:620.733333pt;}
.y14c{bottom:621.373333pt;}
.yf7{bottom:622.013333pt;}
.y49{bottom:623.933333pt;}
.y71{bottom:626.653333pt;}
.y14{bottom:634.813333pt;}
.yc8{bottom:637.373333pt;}
.y9f{bottom:639.453333pt;}
.y121{bottom:639.773333pt;}
.y14b{bottom:640.093333pt;}
.yf6{bottom:640.733333pt;}
.y48{bottom:642.653333pt;}
.y70{bottom:645.373333pt;}
.y13{bottom:653.533333pt;}
.yc7{bottom:656.093333pt;}
.y9e{bottom:658.173333pt;}
.y14a{bottom:658.813333pt;}
.yf5{bottom:659.453333pt;}
.y47{bottom:661.373333pt;}
.y6f{bottom:672.093333pt;}
.y12{bottom:672.253333pt;}
.yc6{bottom:674.813333pt;}
.y9d{bottom:676.893333pt;}
.y149{bottom:677.533333pt;}
.yf4{bottom:678.173333pt;}
.y46{bottom:680.093333pt;}
.y120{bottom:683.773333pt;}
.yc5{bottom:688.253333pt;}
.y6e{bottom:690.813333pt;}
.y11{bottom:690.973333pt;}
.y9c{bottom:695.613333pt;}
.y148{bottom:696.253333pt;}
.yf3{bottom:696.893333pt;}
.y45{bottom:698.813333pt;}
.y11f{bottom:702.493333pt;}
.yc4{bottom:707.613333pt;}
.y6d{bottom:709.533333pt;}
.y10{bottom:709.693333pt;}
.y9b{bottom:714.333333pt;}
.y147{bottom:714.973333pt;}
.yf2{bottom:715.613333pt;}
.y44{bottom:717.533333pt;}
.y11e{bottom:721.213333pt;}
.y6c{bottom:728.253333pt;}
.yf{bottom:728.413333pt;}
.y9a{bottom:733.053333pt;}
.y146{bottom:733.693333pt;}
.yf1{bottom:734.333333pt;}
.y43{bottom:736.253333pt;}
.y11d{bottom:739.933333pt;}
.yc2{bottom:745.853333pt;}
.y99{bottom:746.493333pt;}
.y6b{bottom:746.973333pt;}
.ye{bottom:747.133333pt;}
.y145{bottom:752.413333pt;}
.yf0{bottom:753.053333pt;}
.y42{bottom:754.973333pt;}
.y11c{bottom:758.653333pt;}
.y6a{bottom:765.693333pt;}
.yd{bottom:765.853333pt;}
.y144{bottom:771.173333pt;}
.yef{bottom:771.813333pt;}
.y41{bottom:773.733333pt;}
.y11b{bottom:777.413333pt;}
.yc1{bottom:783.973333pt;}
.y69{bottom:784.453333pt;}
.y97{bottom:785.253333pt;}
.yc{bottom:786.533333pt;}
.y143{bottom:789.893333pt;}
.yee{bottom:790.533333pt;}
.y40{bottom:792.453333pt;}
.y11a{bottom:796.133333pt;}
.y68{bottom:803.173333pt;}
.y95{bottom:804.613333pt;}
.y142{bottom:808.613333pt;}
.yed{bottom:809.253333pt;}
.yb{bottom:809.893333pt;}
.y3f{bottom:811.173333pt;}
.y119{bottom:814.853333pt;}
.y67{bottom:821.893333pt;}
.yc0{bottom:822.053333pt;}
.ya{bottom:824.773333pt;}
.y141{bottom:827.333333pt;}
.yec{bottom:827.973333pt;}
.y3e{bottom:829.893333pt;}
.y118{bottom:833.573333pt;}
.y9{bottom:844.613333pt;}
.y140{bottom:846.053333pt;}
.yeb{bottom:846.693333pt;}
.y3d{bottom:848.613333pt;}
.y117{bottom:852.293333pt;}
.ybf{bottom:860.133333pt;}
.y13f{bottom:864.773333pt;}
.yea{bottom:865.413333pt;}
.y115{bottom:865.733333pt;}
.y8{bottom:867.013333pt;}
.y3c{bottom:867.333333pt;}
.y13e{bottom:883.493333pt;}
.ye9{bottom:884.133333pt;}
.y3b{bottom:886.053333pt;}
.y113{bottom:890.373333pt;}
.y7{bottom:896.933333pt;}
.ybc{bottom:898.213333pt;}
.ye8{bottom:902.853333pt;}
.y3a{bottom:904.773333pt;}
.y13d{bottom:912.933333pt;}
.y112{bottom:915.013333pt;}
.ye7{bottom:921.573333pt;}
.y39{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.y111{bottom:934.373333pt;}
.ye6{bottom:940.293333pt;}
.y38{bottom:942.213333pt;}
.y110{bottom:953.733333pt;}
.ye5{bottom:959.013333pt;}
.y37{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.ye4{bottom:972.453333pt;}
.y10f{bottom:973.093333pt;}
.y36{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.ye1{bottom:991.813333pt;}
.y35{bottom:998.373333pt;}
.y34{bottom:1017.120000pt;}
.y2{bottom:1018.400000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.hb{height:16.160000pt;}
.hd{height:16.320000pt;}
.hf{height:16.352000pt;}
.h13{height:18.720000pt;}
.h14{height:18.752000pt;}
.h1b{height:23.840000pt;}
.h1c{height:24.000000pt;}
.h1d{height:31.680000pt;}
.h12{height:32.480000pt;}
.h8{height:34.374375pt;}
.h19{height:37.280000pt;}
.h17{height:37.312000pt;}
.h16{height:37.440000pt;}
.h18{height:37.472000pt;}
.h10{height:50.080000pt;}
.h9{height:52.834688pt;}
.ha{height:52.934375pt;}
.h6{height:54.390938pt;}
.h15{height:56.160000pt;}
.h1a{height:56.192000pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:63.656250pt;}
.he{height:67.072000pt;}
.hc{height:67.200000pt;}
.h2{height:76.671562pt;}
.h11{height:83.360000pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:40.960000pt;}
.wd{width:46.880000pt;}
.w14{width:52.800000pt;}
.w9{width:58.880000pt;}
.wf{width:65.312000pt;}
.w1a{width:71.552000pt;}
.w16{width:73.600000pt;}
.w10{width:73.760000pt;}
.w1c{width:81.440000pt;}
.w17{width:82.560000pt;}
.w12{width:82.880000pt;}
.w1b{width:88.192000pt;}
.w11{width:88.992000pt;}
.w6{width:100.960000pt;}
.w5{width:107.392000pt;}
.wc{width:124.992000pt;}
.wb{width:131.360000pt;}
.w7{width:167.386667pt;}
.w8{width:203.386667pt;}
.w15{width:255.866667pt;}
.w19{width:257.466667pt;}
.we{width:261.626667pt;}
.w21{width:287.866667pt;}
.w1e{width:294.426667pt;}
.wa{width:305.506667pt;}
.w18{width:312.706667pt;}
.w13{width:312.866667pt;}
.w1d{width:317.026667pt;}
.w1f{width:322.146667pt;}
.w22{width:333.506667pt;}
.w4{width:371.426667pt;}
.w20{width:617.213333pt;}
.w23{width:622.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:4.000000pt;}
.x8{left:6.720000pt;}
.x6{left:47.999988pt;}
.x1f{left:71.999988pt;}
.x7{left:85.632000pt;}
.x1a{left:88.352000pt;}
.x1e{left:96.031988pt;}
.x9{left:127.232000pt;}
.x10{left:133.152000pt;}
.x15{left:139.066667pt;}
.xd{left:145.146667pt;}
.x5{left:153.946655pt;}
.x3{left:254.946655pt;}
.xc{left:295.266667pt;}
.x2{left:311.746655pt;}
.x4{left:372.706655pt;}
.x1c{left:374.466667pt;}
.x1b{left:383.426667pt;}
.x16{left:391.266667pt;}
.x11{left:395.426667pt;}
.x1{left:426.173322pt;}
.xe{left:451.293333pt;}
.x12{left:461.373333pt;}
.x17{left:463.613333pt;}
.xa{left:499.293333pt;}
.x13{left:535.773333pt;}
.x18{left:538.013333pt;}
.xf{left:583.293333pt;}
.xb{left:607.333333pt;}
.x14{left:625.413333pt;}
.x19{left:626.853333pt;}
.x20{left:746.053322pt;}
}




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