
    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_6c61d5a363c2dd6c6ec0d3f5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_9398c780aecf9eb50b66b680.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_8dea9b383aa9355d84a98981.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_61f131a702e7f38c1f6d6ebf.woff')format("woff");}.ff4{font-family:ff4;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.212400px;}
.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;}
}
.ws74{word-spacing:-56.156400px;}
.ws4{word-spacing:-55.944000px;}
.ws95{word-spacing:-41.506200px;}
.ws79{word-spacing:-38.661000px;}
.ws30{word-spacing:-38.649600px;}
.ws10{word-spacing:-38.647800px;}
.ws72{word-spacing:-38.646900px;}
.ws50{word-spacing:-38.452200px;}
.ws12{word-spacing:-38.439000px;}
.ws6{word-spacing:-38.434500px;}
.ws71{word-spacing:-38.424000px;}
.ws1d{word-spacing:-38.371500px;}
.ws19{word-spacing:-38.304000px;}
.ws24{word-spacing:-38.160000px;}
.ws48{word-spacing:-38.154000px;}
.ws69{word-spacing:-38.145600px;}
.ws56{word-spacing:-38.143800px;}
.ws5{word-spacing:-38.093100px;}
.ws1e{word-spacing:-38.092200px;}
.ws2{word-spacing:-38.081700px;}
.ws11{word-spacing:-38.072700px;}
.ws0{word-spacing:-37.944000px;}
.ws27{word-spacing:-37.942800px;}
.ws99{word-spacing:-37.942200px;}
.ws3{word-spacing:-37.940400px;}
.ws81{word-spacing:-37.938600px;}
.ws2c{word-spacing:-37.935000px;}
.ws26{word-spacing:-37.928400px;}
.ws5c{word-spacing:-37.927200px;}
.ws86{word-spacing:-37.918200px;}
.ws70{word-spacing:-37.914600px;}
.ws3d{word-spacing:-37.715400px;}
.ws64{word-spacing:-37.440000px;}
.ws25{word-spacing:-37.424100px;}
.ws4d{word-spacing:-37.210500px;}
.ws80{word-spacing:-37.209600px;}
.ws7d{word-spacing:-37.203300px;}
.ws41{word-spacing:-37.196400px;}
.ws6d{word-spacing:-36.720000px;}
.ws53{word-spacing:-35.775000px;}
.ws4e{word-spacing:-35.773200px;}
.ws8e{word-spacing:-35.056800px;}
.ws36{word-spacing:-35.053200px;}
.ws6c{word-spacing:-34.843200px;}
.ws6b{word-spacing:-34.831200px;}
.ws65{word-spacing:-34.340400px;}
.ws37{word-spacing:-34.335000px;}
.ws62{word-spacing:-34.330500px;}
.ws60{word-spacing:-34.325100px;}
.ws5f{word-spacing:-34.245900px;}
.ws5a{word-spacing:-34.114800px;}
.ws8c{word-spacing:-33.626400px;}
.wsd{word-spacing:-33.622200px;}
.ws7c{word-spacing:-33.613200px;}
.ws89{word-spacing:-33.390000px;}
.ws31{word-spacing:-33.388200px;}
.ws98{word-spacing:-32.904000px;}
.ws9b{word-spacing:-32.893200px;}
.ws82{word-spacing:-32.887800px;}
.ws84{word-spacing:-32.168400px;}
.ws90{word-spacing:-31.678200px;}
.ws22{word-spacing:-31.676400px;}
.ws21{word-spacing:-31.455900px;}
.ws91{word-spacing:-31.454700px;}
.ws2f{word-spacing:-30.954000px;}
.ws63{word-spacing:-30.938400px;}
.ws93{word-spacing:-30.933900px;}
.ws88{word-spacing:-30.739200px;}
.ws14{word-spacing:-30.736800px;}
.ws6a{word-spacing:-30.733800px;}
.ws13{word-spacing:-30.240000px;}
.ws39{word-spacing:-29.516400px;}
.ws9a{word-spacing:-28.782900px;}
.ws58{word-spacing:-28.569600px;}
.ws6f{word-spacing:-28.567200px;}
.ws59{word-spacing:-28.564200px;}
.ws32{word-spacing:-28.555200px;}
.ws45{word-spacing:-28.359600px;}
.ws7a{word-spacing:-28.072800px;}
.ws6e{word-spacing:-28.000800px;}
.ws44{word-spacing:-27.850500px;}
.ws8b{word-spacing:-27.144000px;}
.ws40{word-spacing:-26.420400px;}
.ws92{word-spacing:-26.408700px;}
.ws55{word-spacing:-25.911000px;}
.wsa{word-spacing:-25.671600px;}
.ws7b{word-spacing:-25.180200px;}
.ws4f{word-spacing:-24.978600px;}
.ws85{word-spacing:-24.480000px;}
.ws54{word-spacing:-23.537400px;}
.ws8d{word-spacing:-23.531400px;}
.ws3b{word-spacing:-23.040000px;}
.ws43{word-spacing:-22.815000px;}
.ws94{word-spacing:-22.805100px;}
.ws8f{word-spacing:-22.303800px;}
.ws3a{word-spacing:-21.592800px;}
.ws9{word-spacing:-21.362400px;}
.ws1a{word-spacing:-20.886000px;}
.ws1b{word-spacing:-20.664000px;}
.ws4c{word-spacing:-20.166000px;}
.ws68{word-spacing:-20.156400px;}
.ws42{word-spacing:-19.927800px;}
.ws38{word-spacing:-19.922400px;}
.ws23{word-spacing:-19.436400px;}
.ws61{word-spacing:-19.417500px;}
.ws52{word-spacing:-19.217400px;}
.ws35{word-spacing:-19.213200px;}
.ws29{word-spacing:-18.720600px;}
.ws78{word-spacing:-18.286800px;}
.ws97{word-spacing:-17.779200px;}
.ws28{word-spacing:-17.560800px;}
.ws7e{word-spacing:-17.056800px;}
.ws4b{word-spacing:-16.839900px;}
.ws20{word-spacing:-16.560000px;}
.ws5d{word-spacing:-16.335000px;}
.ws16{word-spacing:-16.321500px;}
.ws1f{word-spacing:-15.840000px;}
.ws5e{word-spacing:-15.810900px;}
.ws3c{word-spacing:-15.399900px;}
.ws2d{word-spacing:-14.398200px;}
.ws3e{word-spacing:-14.190000px;}
.ws3f{word-spacing:-14.177400px;}
.ws8a{word-spacing:-14.169600px;}
.wsc{word-spacing:-12.717000px;}
.ws7f{word-spacing:-12.001200px;}
.ws83{word-spacing:-11.520000px;}
.ws17{word-spacing:-11.304000px;}
.ws15{word-spacing:-10.791000px;}
.ws49{word-spacing:-10.785600px;}
.ws4a{word-spacing:-10.086000px;}
.ws51{word-spacing:-9.134100px;}
.ws47{word-spacing:-7.691400px;}
.ws33{word-spacing:-6.960600px;}
.ws1c{word-spacing:-5.544000px;}
.ws5b{word-spacing:-5.526000px;}
.ws87{word-spacing:-5.034600px;}
.ws2a{word-spacing:-4.816800px;}
.ws46{word-spacing:-3.157200px;}
.ws75{word-spacing:0.000000px;}
.ws66{word-spacing:0.001200px;}
.ws18{word-spacing:1.656000px;}
.ws77{word-spacing:1.663800px;}
.ws8{word-spacing:2.386800px;}
.ws7{word-spacing:2.880000px;}
.ws57{word-spacing:3.100800px;}
.ws96{word-spacing:7.745700px;}
.ws2b{word-spacing:8.866800px;}
.ws67{word-spacing:9.579600px;}
.wsb{word-spacing:10.524600px;}
.ws73{word-spacing:14.112000px;}
.ws9c{word-spacing:22.555800px;}
.wsf{word-spacing:25.651800px;}
.wse{word-spacing:26.648100px;}
.ws2e{word-spacing:45.363600px;}
.ws76{word-spacing:64.087800px;}
.ws34{word-spacing:89.526000px;}
.ws1{word-spacing:1037.484900px;}
._25{margin-left:-2.095200px;}
._3{margin-left:-1.009800px;}
._0{width:1.076400px;}
._28{width:2.095200px;}
._2b{width:15.620400px;}
._1{width:18.968400px;}
._e{width:20.058600px;}
._1d{width:22.093200px;}
._8{width:23.325600px;}
._16{width:24.538200px;}
._b{width:26.346000px;}
._1e{width:27.844200px;}
._17{width:28.886400px;}
._20{width:30.528000px;}
._5{width:32.040000px;}
._1f{width:34.128000px;}
._4{width:35.848200px;}
._d{width:38.084400px;}
._f{width:39.454200px;}
._c{width:40.896000px;}
._13{width:42.552000px;}
._7{width:44.229600px;}
._29{width:45.360000px;}
._9{width:46.445400px;}
._23{width:47.929800px;}
._22{width:49.450200px;}
._15{width:50.610000px;}
._11{width:52.560000px;}
._10{width:54.073800px;}
._21{width:56.049900px;}
._26{width:57.094800px;}
._2a{width:58.323600px;}
._2{width:59.688000px;}
._24{width:60.912600px;}
._12{width:66.391200px;}
._6{width:67.523400px;}
._1c{width:75.384000px;}
._2c{width:79.636200px;}
._a{width:82.980000px;}
._14{width:102.672000px;}
._27{width:131.976000px;}
._19{width:146.520000px;}
._18{width:148.248000px;}
._1b{width:291.390000px;}
._1a{width:292.644000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y70{bottom:3.900000px;}
.ycc{bottom:4.800000px;}
.y85{bottom:4.996500px;}
.y8b{bottom:5.355000px;}
.y4{bottom:12.240000px;}
.y73{bottom:14.340000px;}
.y6f{bottom:24.600000px;}
.y7f{bottom:25.696500px;}
.y8a{bottom:26.055000px;}
.y72{bottom:35.040000px;}
.y6e{bottom:45.300000px;}
.ycb{bottom:46.380000px;}
.y7e{bottom:46.396500px;}
.y89{bottom:46.755000px;}
.yb7{bottom:47.280000px;}
.y71{bottom:55.740000px;}
.y3{bottom:63.975000px;}
.y6d{bottom:66.000000px;}
.yca{bottom:67.080000px;}
.y7d{bottom:67.096500px;}
.y88{bottom:67.455000px;}
.yb6{bottom:67.980000px;}
.y7c{bottom:87.795000px;}
.y87{bottom:88.155000px;}
.yb5{bottom:88.680000px;}
.y53{bottom:101.955000px;}
.y84{bottom:108.496500px;}
.yc9{bottom:108.840000px;}
.y86{bottom:108.855000px;}
.yb4{bottom:109.380000px;}
.y74{bottom:115.500000px;}
.y52{bottom:122.655000px;}
.y83{bottom:129.196500px;}
.yc8{bottom:129.540000px;}
.y7b{bottom:129.555000px;}
.yb3{bottom:130.080000px;}
.y51{bottom:143.175000px;}
.y82{bottom:149.896500px;}
.y7a{bottom:150.255000px;}
.yb2{bottom:150.780000px;}
.yd8{bottom:161.536500px;}
.y27{bottom:162.075000px;}
.y50{bottom:163.875000px;}
.y81{bottom:170.596500px;}
.y79{bottom:170.955000px;}
.yc7{bottom:171.300000px;}
.yb1{bottom:171.480000px;}
.yd7{bottom:182.236500px;}
.y80{bottom:191.295000px;}
.y78{bottom:191.655000px;}
.yc6{bottom:192.000000px;}
.yb0{bottom:192.180000px;}
.ya2{bottom:192.540000px;}
.yd6{bottom:202.936500px;}
.y26{bottom:203.836500px;}
.y4f{bottom:205.636500px;}
.y77{bottom:212.355000px;}
.yc5{bottom:212.700000px;}
.yaf{bottom:212.880000px;}
.ya1{bottom:213.240000px;}
.yd5{bottom:223.636500px;}
.y25{bottom:224.536500px;}
.y4e{bottom:226.336500px;}
.y76{bottom:233.055000px;}
.yc4{bottom:233.400000px;}
.yae{bottom:233.580000px;}
.ya0{bottom:233.940000px;}
.y4d{bottom:247.036500px;}
.y75{bottom:253.575000px;}
.yad{bottom:254.280000px;}
.y9f{bottom:254.640000px;}
.yeb{bottom:256.215000px;}
.yd4{bottom:265.396500px;}
.y24{bottom:266.295000px;}
.y4c{bottom:267.736500px;}
.yac{bottom:274.980000px;}
.y9e{bottom:275.340000px;}
.yea{bottom:276.915000px;}
.yd3{bottom:286.096500px;}
.y23{bottom:286.996500px;}
.y4b{bottom:288.436500px;}
.yab{bottom:295.680000px;}
.y9d{bottom:296.040000px;}
.ye9{bottom:300.496500px;}
.yd2{bottom:306.795000px;}
.y22{bottom:307.696500px;}
.y4a{bottom:309.136500px;}
.yaa{bottom:316.380000px;}
.y9c{bottom:316.740000px;}
.ye8{bottom:321.196500px;}
.y21{bottom:328.396500px;}
.y49{bottom:329.836500px;}
.yc3{bottom:336.900000px;}
.ya9{bottom:337.080000px;}
.y9b{bottom:337.440000px;}
.ye7{bottom:344.775000px;}
.yd1{bottom:348.375000px;}
.y20{bottom:349.096500px;}
.yc2{bottom:357.600000px;}
.ya8{bottom:357.780000px;}
.y9a{bottom:358.140000px;}
.ye6{bottom:365.475000px;}
.y48{bottom:371.596500px;}
.yc1{bottom:378.300000px;}
.ya7{bottom:378.480000px;}
.y99{bottom:378.840000px;}
.y6c{bottom:386.775000px;}
.ye5{bottom:388.875000px;}
.yd0{bottom:390.136500px;}
.y1f{bottom:390.675000px;}
.y47{bottom:392.295000px;}
.yc0{bottom:399.000000px;}
.ya6{bottom:399.180000px;}
.y98{bottom:399.540000px;}
.ye4{bottom:409.575000px;}
.ycf{bottom:410.836500px;}
.y1e{bottom:411.375000px;}
.y46{bottom:412.996500px;}
.ybf{bottom:419.700000px;}
.ya5{bottom:419.880000px;}
.y97{bottom:420.240000px;}
.ye3{bottom:430.275000px;}
.yce{bottom:431.536500px;}
.y45{bottom:433.696500px;}
.ybe{bottom:440.400000px;}
.ya4{bottom:440.580000px;}
.y96{bottom:440.940000px;}
.ycd{bottom:452.236500px;}
.y1d{bottom:453.136500px;}
.ya3{bottom:461.280000px;}
.y95{bottom:461.640000px;}
.y1c{bottom:473.836500px;}
.ye2{bottom:474.736500px;}
.y44{bottom:475.275000px;}
.ybd{bottom:481.980000px;}
.y94{bottom:482.340000px;}
.y1b{bottom:494.536500px;}
.y6b{bottom:495.075000px;}
.y43{bottom:495.975000px;}
.ybc{bottom:502.680000px;}
.y93{bottom:503.040000px;}
.ye1{bottom:516.496500px;}
.y42{bottom:516.675000px;}
.ybb{bottom:523.380000px;}
.y92{bottom:523.740000px;}
.y8c{bottom:531.675000px;}
.y1a{bottom:536.296500px;}
.y6a{bottom:536.836500px;}
.ye0{bottom:537.195000px;}
.y41{bottom:537.375000px;}
.yba{bottom:544.080000px;}
.y91{bottom:544.440000px;}
.y19{bottom:556.996500px;}
.ydf{bottom:557.896500px;}
.y40{bottom:558.075000px;}
.yb9{bottom:564.780000px;}
.y90{bottom:565.140000px;}
.y18{bottom:577.695000px;}
.y69{bottom:578.596500px;}
.y3f{bottom:578.775000px;}
.yb8{bottom:585.480000px;}
.y8f{bottom:585.840000px;}
.y17{bottom:598.396500px;}
.yde{bottom:599.295000px;}
.y8e{bottom:606.540000px;}
.y16{bottom:619.096500px;}
.ydd{bottom:619.996500px;}
.y68{bottom:620.175000px;}
.y3e{bottom:620.536500px;}
.y8d{bottom:627.240000px;}
.y15{bottom:639.795000px;}
.y67{bottom:640.875000px;}
.y66{bottom:661.575000px;}
.y3d{bottom:662.295000px;}
.y14{bottom:681.375000px;}
.y65{bottom:682.275000px;}
.y3c{bottom:682.996500px;}
.y13{bottom:702.075000px;}
.y64{bottom:702.975000px;}
.ydc{bottom:703.336500px;}
.y3b{bottom:703.695000px;}
.ydb{bottom:724.036500px;}
.y3a{bottom:724.396500px;}
.y12{bottom:743.836500px;}
.y63{bottom:744.736500px;}
.y39{bottom:745.096500px;}
.y11{bottom:764.536500px;}
.y62{bottom:765.436500px;}
.y38{bottom:765.795000px;}
.y61{bottom:786.136500px;}
.y37{bottom:786.496500px;}
.y10{bottom:806.295000px;}
.y60{bottom:806.836500px;}
.y36{bottom:807.195000px;}
.yf{bottom:826.996500px;}
.y5f{bottom:827.536500px;}
.ye{bottom:847.695000px;}
.y35{bottom:848.775000px;}
.yd{bottom:868.395000px;}
.y5e{bottom:869.295000px;}
.y34{bottom:869.475000px;}
.yc{bottom:889.095000px;}
.y5d{bottom:889.995000px;}
.y33{bottom:890.175000px;}
.yb{bottom:909.795000px;}
.y5c{bottom:910.695000px;}
.y32{bottom:910.875000px;}
.ya{bottom:930.495000px;}
.y5b{bottom:931.395000px;}
.y31{bottom:931.575000px;}
.y5a{bottom:952.095000px;}
.y30{bottom:952.275000px;}
.y9{bottom:972.075000px;}
.y59{bottom:972.795000px;}
.yda{bottom:972.975000px;}
.y8{bottom:992.775000px;}
.yd9{bottom:993.675000px;}
.y2f{bottom:994.036500px;}
.y58{bottom:1014.375000px;}
.y2e{bottom:1014.736500px;}
.y57{bottom:1035.075000px;}
.y2d{bottom:1035.436500px;}
.y56{bottom:1055.775000px;}
.y2c{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y55{bottom:1076.475000px;}
.y2b{bottom:1076.836500px;}
.y54{bottom:1097.175000px;}
.y2a{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y29{bottom:1118.236500px;}
.y28{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h5{height:49.992188px;}
.h4{height:50.027344px;}
.h9{height:58.573682px;}
.h2{height:62.261719px;}
.h6{height:83.475000px;}
.h7{height:271.200000px;}
.h8{height:644.700000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w4{width:134.475000px;}
.w7{width:140.175000px;}
.w3{width:148.200000px;}
.w5{width:149.175000px;}
.w6{width:150.900000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.xd{left:79.875000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x2{left:160.560000px;}
.xa{left:161.638500px;}
.x8{left:175.320000px;}
.xb{left:188.820000px;}
.x9{left:211.860000px;}
.xe{left:228.000000px;}
.xc{left:272.160000px;}
.xf{left:362.400000px;}
.x5{left:408.060000px;}
.x6{left:416.700000px;}
.x7{left:434.700000px;}
.x10{left:511.500000px;}
.x11{left:662.325000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.188800pt;}
.ws74{word-spacing:-49.916800pt;}
.ws4{word-spacing:-49.728000pt;}
.ws95{word-spacing:-36.894400pt;}
.ws79{word-spacing:-34.365333pt;}
.ws30{word-spacing:-34.355200pt;}
.ws10{word-spacing:-34.353600pt;}
.ws72{word-spacing:-34.352800pt;}
.ws50{word-spacing:-34.179733pt;}
.ws12{word-spacing:-34.168000pt;}
.ws6{word-spacing:-34.164000pt;}
.ws71{word-spacing:-34.154667pt;}
.ws1d{word-spacing:-34.108000pt;}
.ws19{word-spacing:-34.048000pt;}
.ws24{word-spacing:-33.920000pt;}
.ws48{word-spacing:-33.914667pt;}
.ws69{word-spacing:-33.907200pt;}
.ws56{word-spacing:-33.905600pt;}
.ws5{word-spacing:-33.860533pt;}
.ws1e{word-spacing:-33.859733pt;}
.ws2{word-spacing:-33.850400pt;}
.ws11{word-spacing:-33.842400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws27{word-spacing:-33.726933pt;}
.ws99{word-spacing:-33.726400pt;}
.ws3{word-spacing:-33.724800pt;}
.ws81{word-spacing:-33.723200pt;}
.ws2c{word-spacing:-33.720000pt;}
.ws26{word-spacing:-33.714133pt;}
.ws5c{word-spacing:-33.713067pt;}
.ws86{word-spacing:-33.705067pt;}
.ws70{word-spacing:-33.701867pt;}
.ws3d{word-spacing:-33.524800pt;}
.ws64{word-spacing:-33.280000pt;}
.ws25{word-spacing:-33.265867pt;}
.ws4d{word-spacing:-33.076000pt;}
.ws80{word-spacing:-33.075200pt;}
.ws7d{word-spacing:-33.069600pt;}
.ws41{word-spacing:-33.063467pt;}
.ws6d{word-spacing:-32.640000pt;}
.ws53{word-spacing:-31.800000pt;}
.ws4e{word-spacing:-31.798400pt;}
.ws8e{word-spacing:-31.161600pt;}
.ws36{word-spacing:-31.158400pt;}
.ws6c{word-spacing:-30.971733pt;}
.ws6b{word-spacing:-30.961067pt;}
.ws65{word-spacing:-30.524800pt;}
.ws37{word-spacing:-30.520000pt;}
.ws62{word-spacing:-30.516000pt;}
.ws60{word-spacing:-30.511200pt;}
.ws5f{word-spacing:-30.440800pt;}
.ws5a{word-spacing:-30.324267pt;}
.ws8c{word-spacing:-29.890133pt;}
.wsd{word-spacing:-29.886400pt;}
.ws7c{word-spacing:-29.878400pt;}
.ws89{word-spacing:-29.680000pt;}
.ws31{word-spacing:-29.678400pt;}
.ws98{word-spacing:-29.248000pt;}
.ws9b{word-spacing:-29.238400pt;}
.ws82{word-spacing:-29.233600pt;}
.ws84{word-spacing:-28.594133pt;}
.ws90{word-spacing:-28.158400pt;}
.ws22{word-spacing:-28.156800pt;}
.ws21{word-spacing:-27.960800pt;}
.ws91{word-spacing:-27.959733pt;}
.ws2f{word-spacing:-27.514667pt;}
.ws63{word-spacing:-27.500800pt;}
.ws93{word-spacing:-27.496800pt;}
.ws88{word-spacing:-27.323733pt;}
.ws14{word-spacing:-27.321600pt;}
.ws6a{word-spacing:-27.318933pt;}
.ws13{word-spacing:-26.880000pt;}
.ws39{word-spacing:-26.236800pt;}
.ws9a{word-spacing:-25.584800pt;}
.ws58{word-spacing:-25.395200pt;}
.ws6f{word-spacing:-25.393067pt;}
.ws59{word-spacing:-25.390400pt;}
.ws32{word-spacing:-25.382400pt;}
.ws45{word-spacing:-25.208533pt;}
.ws7a{word-spacing:-24.953600pt;}
.ws6e{word-spacing:-24.889600pt;}
.ws44{word-spacing:-24.756000pt;}
.ws8b{word-spacing:-24.128000pt;}
.ws40{word-spacing:-23.484800pt;}
.ws92{word-spacing:-23.474400pt;}
.ws55{word-spacing:-23.032000pt;}
.wsa{word-spacing:-22.819200pt;}
.ws7b{word-spacing:-22.382400pt;}
.ws4f{word-spacing:-22.203200pt;}
.ws85{word-spacing:-21.760000pt;}
.ws54{word-spacing:-20.922133pt;}
.ws8d{word-spacing:-20.916800pt;}
.ws3b{word-spacing:-20.480000pt;}
.ws43{word-spacing:-20.280000pt;}
.ws94{word-spacing:-20.271200pt;}
.ws8f{word-spacing:-19.825600pt;}
.ws3a{word-spacing:-19.193600pt;}
.ws9{word-spacing:-18.988800pt;}
.ws1a{word-spacing:-18.565333pt;}
.ws1b{word-spacing:-18.368000pt;}
.ws4c{word-spacing:-17.925333pt;}
.ws68{word-spacing:-17.916800pt;}
.ws42{word-spacing:-17.713600pt;}
.ws38{word-spacing:-17.708800pt;}
.ws23{word-spacing:-17.276800pt;}
.ws61{word-spacing:-17.260000pt;}
.ws52{word-spacing:-17.082133pt;}
.ws35{word-spacing:-17.078400pt;}
.ws29{word-spacing:-16.640533pt;}
.ws78{word-spacing:-16.254933pt;}
.ws97{word-spacing:-15.803733pt;}
.ws28{word-spacing:-15.609600pt;}
.ws7e{word-spacing:-15.161600pt;}
.ws4b{word-spacing:-14.968800pt;}
.ws20{word-spacing:-14.720000pt;}
.ws5d{word-spacing:-14.520000pt;}
.ws16{word-spacing:-14.508000pt;}
.ws1f{word-spacing:-14.080000pt;}
.ws5e{word-spacing:-14.054133pt;}
.ws3c{word-spacing:-13.688800pt;}
.ws2d{word-spacing:-12.798400pt;}
.ws3e{word-spacing:-12.613333pt;}
.ws3f{word-spacing:-12.602133pt;}
.ws8a{word-spacing:-12.595200pt;}
.wsc{word-spacing:-11.304000pt;}
.ws7f{word-spacing:-10.667733pt;}
.ws83{word-spacing:-10.240000pt;}
.ws17{word-spacing:-10.048000pt;}
.ws15{word-spacing:-9.592000pt;}
.ws49{word-spacing:-9.587200pt;}
.ws4a{word-spacing:-8.965333pt;}
.ws51{word-spacing:-8.119200pt;}
.ws47{word-spacing:-6.836800pt;}
.ws33{word-spacing:-6.187200pt;}
.ws1c{word-spacing:-4.928000pt;}
.ws5b{word-spacing:-4.912000pt;}
.ws87{word-spacing:-4.475200pt;}
.ws2a{word-spacing:-4.281600pt;}
.ws46{word-spacing:-2.806400pt;}
.ws75{word-spacing:0.000000pt;}
.ws66{word-spacing:0.001067pt;}
.ws18{word-spacing:1.472000pt;}
.ws77{word-spacing:1.478933pt;}
.ws8{word-spacing:2.121600pt;}
.ws7{word-spacing:2.560000pt;}
.ws57{word-spacing:2.756267pt;}
.ws96{word-spacing:6.885067pt;}
.ws2b{word-spacing:7.881600pt;}
.ws67{word-spacing:8.515200pt;}
.wsb{word-spacing:9.355200pt;}
.ws73{word-spacing:12.544000pt;}
.ws9c{word-spacing:20.049600pt;}
.wsf{word-spacing:22.801600pt;}
.wse{word-spacing:23.687200pt;}
.ws2e{word-spacing:40.323200pt;}
.ws76{word-spacing:56.966933pt;}
.ws34{word-spacing:79.578667pt;}
.ws1{word-spacing:922.208800pt;}
._25{margin-left:-1.862400pt;}
._3{margin-left:-0.897600pt;}
._0{width:0.956800pt;}
._28{width:1.862400pt;}
._2b{width:13.884800pt;}
._1{width:16.860800pt;}
._e{width:17.829867pt;}
._1d{width:19.638400pt;}
._8{width:20.733867pt;}
._16{width:21.811733pt;}
._b{width:23.418667pt;}
._1e{width:24.750400pt;}
._17{width:25.676800pt;}
._20{width:27.136000pt;}
._5{width:28.480000pt;}
._1f{width:30.336000pt;}
._4{width:31.865067pt;}
._d{width:33.852800pt;}
._f{width:35.070400pt;}
._c{width:36.352000pt;}
._13{width:37.824000pt;}
._7{width:39.315200pt;}
._29{width:40.320000pt;}
._9{width:41.284800pt;}
._23{width:42.604267pt;}
._22{width:43.955733pt;}
._15{width:44.986667pt;}
._11{width:46.720000pt;}
._10{width:48.065600pt;}
._21{width:49.822133pt;}
._26{width:50.750933pt;}
._2a{width:51.843200pt;}
._2{width:53.056000pt;}
._24{width:54.144533pt;}
._12{width:59.014400pt;}
._6{width:60.020800pt;}
._1c{width:67.008000pt;}
._2c{width:70.787733pt;}
._a{width:73.760000pt;}
._14{width:91.264000pt;}
._27{width:117.312000pt;}
._19{width:130.240000pt;}
._18{width:131.776000pt;}
._1b{width:259.013333pt;}
._1a{width:260.128000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:3.466667pt;}
.ycc{bottom:4.266667pt;}
.y85{bottom:4.441333pt;}
.y8b{bottom:4.760000pt;}
.y4{bottom:10.880000pt;}
.y73{bottom:12.746667pt;}
.y6f{bottom:21.866667pt;}
.y7f{bottom:22.841333pt;}
.y8a{bottom:23.160000pt;}
.y72{bottom:31.146667pt;}
.y6e{bottom:40.266667pt;}
.ycb{bottom:41.226667pt;}
.y7e{bottom:41.241333pt;}
.y89{bottom:41.560000pt;}
.yb7{bottom:42.026667pt;}
.y71{bottom:49.546667pt;}
.y3{bottom:56.866667pt;}
.y6d{bottom:58.666667pt;}
.yca{bottom:59.626667pt;}
.y7d{bottom:59.641333pt;}
.y88{bottom:59.960000pt;}
.yb6{bottom:60.426667pt;}
.y7c{bottom:78.040000pt;}
.y87{bottom:78.360000pt;}
.yb5{bottom:78.826667pt;}
.y53{bottom:90.626667pt;}
.y84{bottom:96.441333pt;}
.yc9{bottom:96.746667pt;}
.y86{bottom:96.760000pt;}
.yb4{bottom:97.226667pt;}
.y74{bottom:102.666667pt;}
.y52{bottom:109.026667pt;}
.y83{bottom:114.841333pt;}
.yc8{bottom:115.146667pt;}
.y7b{bottom:115.160000pt;}
.yb3{bottom:115.626667pt;}
.y51{bottom:127.266667pt;}
.y82{bottom:133.241333pt;}
.y7a{bottom:133.560000pt;}
.yb2{bottom:134.026667pt;}
.yd8{bottom:143.588000pt;}
.y27{bottom:144.066667pt;}
.y50{bottom:145.666667pt;}
.y81{bottom:151.641333pt;}
.y79{bottom:151.960000pt;}
.yc7{bottom:152.266667pt;}
.yb1{bottom:152.426667pt;}
.yd7{bottom:161.988000pt;}
.y80{bottom:170.040000pt;}
.y78{bottom:170.360000pt;}
.yc6{bottom:170.666667pt;}
.yb0{bottom:170.826667pt;}
.ya2{bottom:171.146667pt;}
.yd6{bottom:180.388000pt;}
.y26{bottom:181.188000pt;}
.y4f{bottom:182.788000pt;}
.y77{bottom:188.760000pt;}
.yc5{bottom:189.066667pt;}
.yaf{bottom:189.226667pt;}
.ya1{bottom:189.546667pt;}
.yd5{bottom:198.788000pt;}
.y25{bottom:199.588000pt;}
.y4e{bottom:201.188000pt;}
.y76{bottom:207.160000pt;}
.yc4{bottom:207.466667pt;}
.yae{bottom:207.626667pt;}
.ya0{bottom:207.946667pt;}
.y4d{bottom:219.588000pt;}
.y75{bottom:225.400000pt;}
.yad{bottom:226.026667pt;}
.y9f{bottom:226.346667pt;}
.yeb{bottom:227.746667pt;}
.yd4{bottom:235.908000pt;}
.y24{bottom:236.706667pt;}
.y4c{bottom:237.988000pt;}
.yac{bottom:244.426667pt;}
.y9e{bottom:244.746667pt;}
.yea{bottom:246.146667pt;}
.yd3{bottom:254.308000pt;}
.y23{bottom:255.108000pt;}
.y4b{bottom:256.388000pt;}
.yab{bottom:262.826667pt;}
.y9d{bottom:263.146667pt;}
.ye9{bottom:267.108000pt;}
.yd2{bottom:272.706667pt;}
.y22{bottom:273.508000pt;}
.y4a{bottom:274.788000pt;}
.yaa{bottom:281.226667pt;}
.y9c{bottom:281.546667pt;}
.ye8{bottom:285.508000pt;}
.y21{bottom:291.908000pt;}
.y49{bottom:293.188000pt;}
.yc3{bottom:299.466667pt;}
.ya9{bottom:299.626667pt;}
.y9b{bottom:299.946667pt;}
.ye7{bottom:306.466667pt;}
.yd1{bottom:309.666667pt;}
.y20{bottom:310.308000pt;}
.yc2{bottom:317.866667pt;}
.ya8{bottom:318.026667pt;}
.y9a{bottom:318.346667pt;}
.ye6{bottom:324.866667pt;}
.y48{bottom:330.308000pt;}
.yc1{bottom:336.266667pt;}
.ya7{bottom:336.426667pt;}
.y99{bottom:336.746667pt;}
.y6c{bottom:343.800000pt;}
.ye5{bottom:345.666667pt;}
.yd0{bottom:346.788000pt;}
.y1f{bottom:347.266667pt;}
.y47{bottom:348.706667pt;}
.yc0{bottom:354.666667pt;}
.ya6{bottom:354.826667pt;}
.y98{bottom:355.146667pt;}
.ye4{bottom:364.066667pt;}
.ycf{bottom:365.188000pt;}
.y1e{bottom:365.666667pt;}
.y46{bottom:367.108000pt;}
.ybf{bottom:373.066667pt;}
.ya5{bottom:373.226667pt;}
.y97{bottom:373.546667pt;}
.ye3{bottom:382.466667pt;}
.yce{bottom:383.588000pt;}
.y45{bottom:385.508000pt;}
.ybe{bottom:391.466667pt;}
.ya4{bottom:391.626667pt;}
.y96{bottom:391.946667pt;}
.ycd{bottom:401.988000pt;}
.y1d{bottom:402.788000pt;}
.ya3{bottom:410.026667pt;}
.y95{bottom:410.346667pt;}
.y1c{bottom:421.188000pt;}
.ye2{bottom:421.988000pt;}
.y44{bottom:422.466667pt;}
.ybd{bottom:428.426667pt;}
.y94{bottom:428.746667pt;}
.y1b{bottom:439.588000pt;}
.y6b{bottom:440.066667pt;}
.y43{bottom:440.866667pt;}
.ybc{bottom:446.826667pt;}
.y93{bottom:447.146667pt;}
.ye1{bottom:459.108000pt;}
.y42{bottom:459.266667pt;}
.ybb{bottom:465.226667pt;}
.y92{bottom:465.546667pt;}
.y8c{bottom:472.600000pt;}
.y1a{bottom:476.708000pt;}
.y6a{bottom:477.188000pt;}
.ye0{bottom:477.506667pt;}
.y41{bottom:477.666667pt;}
.yba{bottom:483.626667pt;}
.y91{bottom:483.946667pt;}
.y19{bottom:495.108000pt;}
.ydf{bottom:495.908000pt;}
.y40{bottom:496.066667pt;}
.yb9{bottom:502.026667pt;}
.y90{bottom:502.346667pt;}
.y18{bottom:513.506667pt;}
.y69{bottom:514.308000pt;}
.y3f{bottom:514.466667pt;}
.yb8{bottom:520.426667pt;}
.y8f{bottom:520.746667pt;}
.y17{bottom:531.908000pt;}
.yde{bottom:532.706667pt;}
.y8e{bottom:539.146667pt;}
.y16{bottom:550.308000pt;}
.ydd{bottom:551.108000pt;}
.y68{bottom:551.266667pt;}
.y3e{bottom:551.588000pt;}
.y8d{bottom:557.546667pt;}
.y15{bottom:568.706667pt;}
.y67{bottom:569.666667pt;}
.y66{bottom:588.066667pt;}
.y3d{bottom:588.706667pt;}
.y14{bottom:605.666667pt;}
.y65{bottom:606.466667pt;}
.y3c{bottom:607.108000pt;}
.y13{bottom:624.066667pt;}
.y64{bottom:624.866667pt;}
.ydc{bottom:625.188000pt;}
.y3b{bottom:625.506667pt;}
.ydb{bottom:643.588000pt;}
.y3a{bottom:643.908000pt;}
.y12{bottom:661.188000pt;}
.y63{bottom:661.988000pt;}
.y39{bottom:662.308000pt;}
.y11{bottom:679.588000pt;}
.y62{bottom:680.388000pt;}
.y38{bottom:680.706667pt;}
.y61{bottom:698.788000pt;}
.y37{bottom:699.108000pt;}
.y10{bottom:716.706667pt;}
.y60{bottom:717.188000pt;}
.y36{bottom:717.506667pt;}
.yf{bottom:735.108000pt;}
.y5f{bottom:735.588000pt;}
.ye{bottom:753.506667pt;}
.y35{bottom:754.466667pt;}
.yd{bottom:771.906667pt;}
.y5e{bottom:772.706667pt;}
.y34{bottom:772.866667pt;}
.yc{bottom:790.306667pt;}
.y5d{bottom:791.106667pt;}
.y33{bottom:791.266667pt;}
.yb{bottom:808.706667pt;}
.y5c{bottom:809.506667pt;}
.y32{bottom:809.666667pt;}
.ya{bottom:827.106667pt;}
.y5b{bottom:827.906667pt;}
.y31{bottom:828.066667pt;}
.y5a{bottom:846.306667pt;}
.y30{bottom:846.466667pt;}
.y9{bottom:864.066667pt;}
.y59{bottom:864.706667pt;}
.yda{bottom:864.866667pt;}
.y8{bottom:882.466667pt;}
.yd9{bottom:883.266667pt;}
.y2f{bottom:883.588000pt;}
.y58{bottom:901.666667pt;}
.y2e{bottom:901.988000pt;}
.y57{bottom:920.066667pt;}
.y2d{bottom:920.388000pt;}
.y56{bottom:938.466667pt;}
.y2c{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y55{bottom:956.866667pt;}
.y2b{bottom:957.188000pt;}
.y54{bottom:975.266667pt;}
.y2a{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y29{bottom:993.988000pt;}
.y28{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h5{height:44.437500pt;}
.h4{height:44.468750pt;}
.h9{height:52.065495pt;}
.h2{height:55.343750pt;}
.h6{height:74.200000pt;}
.h7{height:241.066667pt;}
.h8{height:573.066667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w4{width:119.533333pt;}
.w7{width:124.600000pt;}
.w3{width:131.733333pt;}
.w5{width:132.600000pt;}
.w6{width:134.133333pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.xd{left:71.000000pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x2{left:142.720000pt;}
.xa{left:143.678667pt;}
.x8{left:155.840000pt;}
.xb{left:167.840000pt;}
.x9{left:188.320000pt;}
.xe{left:202.666667pt;}
.xc{left:241.920000pt;}
.xf{left:322.133333pt;}
.x5{left:362.720000pt;}
.x6{left:370.400000pt;}
.x7{left:386.400000pt;}
.x10{left:454.666667pt;}
.x11{left:588.733333pt;}
}




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