
    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_4c014166c96453f9254bd6d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_3bc2a4b474ff1c2f9447265b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_3ceda39fb4716562663397d3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_728d5e4c7fa175151d6273a1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f7fc8f0228e9cca8f46398e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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:188.597700px;}
.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;}
}
.wsa{word-spacing:-55.944000px;}
.ws75{word-spacing:-39.153600px;}
.ws60{word-spacing:-39.083400px;}
.ws67{word-spacing:-38.873700px;}
.ws59{word-spacing:-38.867400px;}
.wsa2{word-spacing:-38.799000px;}
.wsba{word-spacing:-38.662200px;}
.ws6{word-spacing:-38.657700px;}
.ws5a{word-spacing:-38.656800px;}
.wsa1{word-spacing:-38.655600px;}
.ws53{word-spacing:-38.655000px;}
.ws8b{word-spacing:-38.654100px;}
.ws61{word-spacing:-38.652300px;}
.ws5d{word-spacing:-38.651400px;}
.ws17{word-spacing:-38.649600px;}
.wsb0{word-spacing:-38.648700px;}
.ws5{word-spacing:-38.647800px;}
.ws62{word-spacing:-38.647200px;}
.ws6b{word-spacing:-38.644200px;}
.ws42{word-spacing:-38.642400px;}
.ws66{word-spacing:-38.454000px;}
.ws68{word-spacing:-38.448000px;}
.ws7f{word-spacing:-38.445300px;}
.ws7d{word-spacing:-38.440800px;}
.ws9b{word-spacing:-38.439000px;}
.ws25{word-spacing:-38.438100px;}
.ws41{word-spacing:-38.437200px;}
.ws9d{word-spacing:-38.436300px;}
.ws31{word-spacing:-38.432100px;}
.ws92{word-spacing:-38.431800px;}
.wsb2{word-spacing:-38.431200px;}
.ws5e{word-spacing:-38.430000px;}
.ws58{word-spacing:-38.428200px;}
.ws99{word-spacing:-38.419200px;}
.ws3{word-spacing:-38.374200px;}
.ws3e{word-spacing:-38.360700px;}
.wsa5{word-spacing:-38.166000px;}
.ws89{word-spacing:-38.162400px;}
.ws4d{word-spacing:-38.160000px;}
.ws65{word-spacing:-38.157000px;}
.ws78{word-spacing:-38.156400px;}
.wsaf{word-spacing:-38.155500px;}
.ws6e{word-spacing:-38.154600px;}
.ws90{word-spacing:-38.152800px;}
.ws3d{word-spacing:-38.151000px;}
.ws45{word-spacing:-38.150100px;}
.ws38{word-spacing:-38.149800px;}
.ws34{word-spacing:-38.149200px;}
.ws9a{word-spacing:-38.143800px;}
.ws9e{word-spacing:-38.143500px;}
.ws46{word-spacing:-38.140200px;}
.ws49{word-spacing:-38.139300px;}
.ws9{word-spacing:-38.087100px;}
.ws4a{word-spacing:-38.075400px;}
.wsb5{word-spacing:-38.075100px;}
.ws87{word-spacing:-37.948200px;}
.ws0{word-spacing:-37.944000px;}
.ws3f{word-spacing:-37.942800px;}
.wsd{word-spacing:-37.942200px;}
.ws5c{word-spacing:-37.941300px;}
.ws83{word-spacing:-37.940400px;}
.ws4{word-spacing:-37.938600px;}
.wsc{word-spacing:-37.935900px;}
.wsb3{word-spacing:-37.933200px;}
.wsae{word-spacing:-37.932300px;}
.ws2{word-spacing:-37.931400px;}
.ws1a{word-spacing:-37.930500px;}
.wsb1{word-spacing:-37.926000px;}
.ws44{word-spacing:-37.925700px;}
.ws43{word-spacing:-37.925100px;}
.ws5f{word-spacing:-37.913400px;}
.ws9c{word-spacing:-37.912200px;}
.ws7b{word-spacing:-37.722600px;}
.ws8a{word-spacing:-37.721700px;}
.ws88{word-spacing:-37.719900px;}
.ws47{word-spacing:-37.718100px;}
.wsa0{word-spacing:-37.709100px;}
.wsb4{word-spacing:-37.700400px;}
.ws1c{word-spacing:-37.569900px;}
.ws12{word-spacing:-37.440000px;}
.ws9f{word-spacing:-37.437300px;}
.ws11{word-spacing:-37.226400px;}
.ws77{word-spacing:-37.220400px;}
.ws8c{word-spacing:-37.212300px;}
.ws1b{word-spacing:-36.720000px;}
.wsa4{word-spacing:-36.501000px;}
.wsad{word-spacing:-36.471600px;}
.ws52{word-spacing:-35.766000px;}
.wsa3{word-spacing:-35.765100px;}
.ws86{word-spacing:-35.568600px;}
.ws36{word-spacing:-35.064000px;}
.ws3a{word-spacing:-34.337400px;}
.ws29{word-spacing:-34.322400px;}
.ws2b{word-spacing:-34.320600px;}
.ws28{word-spacing:-33.840000px;}
.ws8{word-spacing:-33.547800px;}
.wsb9{word-spacing:-32.400000px;}
.wsb6{word-spacing:-32.391900px;}
.ws7c{word-spacing:-32.170800px;}
.wsf{word-spacing:-32.168700px;}
.wse{word-spacing:-31.680000px;}
.ws57{word-spacing:-30.730500px;}
.ws73{word-spacing:-30.712500px;}
.ws74{word-spacing:-30.011100px;}
.ws30{word-spacing:-29.517300px;}
.ws21{word-spacing:-29.221200px;}
.ws84{word-spacing:-28.571400px;}
.ws13{word-spacing:-28.340400px;}
.ws2f{word-spacing:-27.862200px;}
.wsa8{word-spacing:-27.860100px;}
.ws6a{word-spacing:-27.855600px;}
.ws69{word-spacing:-27.846900px;}
.wsa9{word-spacing:-27.648000px;}
.ws4e{word-spacing:-27.634200px;}
.ws4f{word-spacing:-26.640000px;}
.ws39{word-spacing:-26.623800px;}
.ws10{word-spacing:-25.699200px;}
.ws8e{word-spacing:-24.982200px;}
.ws6c{word-spacing:-24.762600px;}
.ws48{word-spacing:-24.471000px;}
.wsaa{word-spacing:-24.259200px;}
.ws6d{word-spacing:-24.237300px;}
.ws8f{word-spacing:-23.760000px;}
.wsb8{word-spacing:-23.542200px;}
.ws51{word-spacing:-23.535900px;}
.ws56{word-spacing:-21.362400px;}
.ws4b{word-spacing:-20.863800px;}
.ws2c{word-spacing:-20.858400px;}
.ws4c{word-spacing:-20.646000px;}
.ws98{word-spacing:-20.448000px;}
.ws97{word-spacing:-20.432700px;}
.ws85{word-spacing:-19.932300px;}
.wsa7{word-spacing:-19.734000px;}
.wsb{word-spacing:-19.729500px;}
.ws35{word-spacing:-19.438200px;}
.ws3c{word-spacing:-19.224000px;}
.wsa6{word-spacing:-19.200900px;}
.ws7{word-spacing:-18.472500px;}
.ws2d{word-spacing:-18.423000px;}
.ws16{word-spacing:-17.771400px;}
.wsbb{word-spacing:-17.538300px;}
.ws63{word-spacing:-17.283300px;}
.ws50{word-spacing:-17.257500px;}
.ws64{word-spacing:-17.046000px;}
.ws76{word-spacing:-16.131300px;}
.ws82{word-spacing:-15.836400px;}
.ws15{word-spacing:-15.112800px;}
.ws32{word-spacing:-15.107400px;}
.ws33{word-spacing:-13.957200px;}
.wsab{word-spacing:-13.659600px;}
.wsac{word-spacing:-13.239000px;}
.ws6f{word-spacing:-12.734700px;}
.wsbc{word-spacing:-12.240000px;}
.ws70{word-spacing:-12.226200px;}
.wsb7{word-spacing:-12.001500px;}
.ws26{word-spacing:-10.080000px;}
.ws27{word-spacing:-9.864000px;}
.ws37{word-spacing:-9.139500px;}
.ws55{word-spacing:-9.131400px;}
.ws95{word-spacing:-8.408700px;}
.ws96{word-spacing:-7.701000px;}
.ws3b{word-spacing:-7.699200px;}
.ws2e{word-spacing:-7.197300px;}
.ws2a{word-spacing:-6.896700px;}
.ws40{word-spacing:-5.754000px;}
.ws7e{word-spacing:-1.720200px;}
.ws54{word-spacing:0.000000px;}
.ws23{word-spacing:1.672200px;}
.ws22{word-spacing:3.601800px;}
.ws20{word-spacing:3.830400px;}
.ws19{word-spacing:5.271300px;}
.ws18{word-spacing:5.766600px;}
.ws1e{word-spacing:8.142000px;}
.ws1d{word-spacing:11.521800px;}
.ws71{word-spacing:13.913100px;}
.ws72{word-spacing:13.916700px;}
.ws1f{word-spacing:14.256000px;}
.ws24{word-spacing:17.424300px;}
.ws14{word-spacing:19.673100px;}
.ws93{word-spacing:25.435800px;}
.ws94{word-spacing:25.915800px;}
.ws91{word-spacing:75.679200px;}
.ws80{word-spacing:99.798300px;}
.ws5b{word-spacing:106.056000px;}
.ws7a{word-spacing:148.760100px;}
.ws81{word-spacing:179.283600px;}
.ws79{word-spacing:256.323600px;}
.ws8d{word-spacing:392.616900px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._7{width:20.234400px;}
._1d{width:21.300000px;}
._15{width:22.680000px;}
._5{width:25.184700px;}
._1e{width:26.685000px;}
._12{width:28.141200px;}
._8{width:29.336400px;}
._1a{width:30.340200px;}
._6{width:31.454400px;}
._1b{width:32.886000px;}
._1c{width:34.498500px;}
._1{width:36.000000px;}
._18{width:37.955400px;}
._b{width:40.089600px;}
._a{width:42.126000px;}
._23{width:43.389600px;}
._20{width:44.647500px;}
._24{width:45.762000px;}
._19{width:47.877300px;}
._17{width:49.846500px;}
._16{width:50.945400px;}
._21{width:56.009400px;}
._13{width:59.233800px;}
._11{width:60.897600px;}
._c{width:63.089700px;}
._f{width:65.362800px;}
._d{width:68.542200px;}
._e{width:69.550200px;}
._10{width:71.385600px;}
._14{width:74.807700px;}
._9{width:76.662900px;}
._22{width:133.149600px;}
._1f{width:162.000000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.700000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:3.811500px;}
.y90{bottom:3.840000px;}
.y8c{bottom:3.855000px;}
.y92{bottom:3.870000px;}
.y94{bottom:3.900000px;}
.y8a{bottom:3.930000px;}
.y7{bottom:4.471500px;}
.y62{bottom:4.740000px;}
.y97{bottom:4.755000px;}
.y5f{bottom:5.505000px;}
.y65{bottom:5.925000px;}
.y6e{bottom:6.675000px;}
.y68{bottom:7.275000px;}
.y6b{bottom:7.365000px;}
.y73{bottom:9.000000px;}
.y76{bottom:12.390000px;}
.y7f{bottom:14.100000px;}
.y7c{bottom:14.130000px;}
.y79{bottom:14.161500px;}
.y89{bottom:24.630000px;}
.y96{bottom:25.275000px;}
.y61{bottom:25.440000px;}
.y64{bottom:26.445000px;}
.y6d{bottom:27.375000px;}
.y6a{bottom:27.886500px;}
.y67{bottom:27.975000px;}
.y75{bottom:33.090000px;}
.y7e{bottom:34.800000px;}
.y7b{bottom:34.830000px;}
.y78{bottom:34.861500px;}
.y82{bottom:39.375000px;}
.y81{bottom:59.896500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y88{bottom:98.025000px;}
.y4a{bottom:99.796500px;}
.yc2{bottom:100.336500px;}
.yb1{bottom:115.275000px;}
.y49{bottom:120.496500px;}
.yc1{bottom:121.036500px;}
.y2e{bottom:121.575000px;}
.yb0{bottom:135.975000px;}
.y48{bottom:141.196500px;}
.yc0{bottom:141.736500px;}
.y2d{bottom:142.275000px;}
.yaf{bottom:156.675000px;}
.y5d{bottom:161.896500px;}
.ybf{bottom:162.436500px;}
.y87{bottom:165.136500px;}
.yae{bottom:177.375000px;}
.y47{bottom:182.775000px;}
.ybe{bottom:183.136500px;}
.y2c{bottom:184.036500px;}
.y46{bottom:203.475000px;}
.ybd{bottom:203.836500px;}
.y2b{bottom:204.736500px;}
.yad{bottom:218.955000px;}
.y45{bottom:224.175000px;}
.ybc{bottom:224.536500px;}
.y2a{bottom:225.436500px;}
.yac{bottom:239.655000px;}
.y44{bottom:244.875000px;}
.ybb{bottom:245.236500px;}
.y29{bottom:246.136500px;}
.y86{bottom:248.475000px;}
.yba{bottom:265.936500px;}
.y28{bottom:266.836500px;}
.y85{bottom:269.175000px;}
.yab{bottom:281.415000px;}
.y43{bottom:286.636500px;}
.y5c{bottom:286.996500px;}
.y27{bottom:287.536500px;}
.y84{bottom:289.875000px;}
.y42{bottom:307.336500px;}
.y5b{bottom:307.696500px;}
.y26{bottom:308.236500px;}
.y83{bottom:310.575000px;}
.yaa{bottom:323.175000px;}
.y41{bottom:328.036500px;}
.y5a{bottom:328.396500px;}
.y25{bottom:328.936500px;}
.ya9{bottom:343.875000px;}
.y40{bottom:348.736500px;}
.y59{bottom:349.096500px;}
.y24{bottom:349.636500px;}
.ya8{bottom:364.575000px;}
.y58{bottom:369.795000px;}
.ya7{bottom:385.275000px;}
.y80{bottom:390.000000px;}
.y3f{bottom:390.496500px;}
.y23{bottom:391.396500px;}
.y57{bottom:411.196500px;}
.yb9{bottom:411.375000px;}
.y22{bottom:412.096500px;}
.ya6{bottom:426.855000px;}
.y56{bottom:431.896500px;}
.y3e{bottom:432.075000px;}
.y3d{bottom:452.775000px;}
.y21{bottom:453.675000px;}
.y7d{bottom:467.475000px;}
.ya5{bottom:468.615000px;}
.y55{bottom:473.475000px;}
.y20{bottom:474.375000px;}
.y3c{bottom:494.536500px;}
.y1f{bottom:495.075000px;}
.y3b{bottom:515.236500px;}
.y1e{bottom:515.775000px;}
.y7a{bottom:519.825000px;}
.y3a{bottom:535.936500px;}
.yb8{bottom:536.296500px;}
.y1d{bottom:536.475000px;}
.y54{bottom:556.996500px;}
.y1c{bottom:557.175000px;}
.y77{bottom:572.175000px;}
.y39{bottom:577.695000px;}
.y1b{bottom:577.875000px;}
.ya4{bottom:593.715000px;}
.y53{bottom:598.396500px;}
.y1a{bottom:598.575000px;}
.ya3{bottom:614.415000px;}
.y52{bottom:619.096500px;}
.y19{bottom:619.275000px;}
.y74{bottom:624.525000px;}
.ya2{bottom:635.115000px;}
.y51{bottom:639.795000px;}
.y18{bottom:639.975000px;}
.ya1{bottom:655.815000px;}
.y50{bottom:660.496500px;}
.y38{bottom:660.675000px;}
.yb7{bottom:661.036500px;}
.y72{bottom:675.075000px;}
.ya0{bottom:676.515000px;}
.y17{bottom:681.736500px;}
.y9f{bottom:697.215000px;}
.y4f{bottom:702.075000px;}
.y16{bottom:702.436500px;}
.y71{bottom:726.375000px;}
.y9e{bottom:738.975000px;}
.y4e{bottom:743.836500px;}
.y15{bottom:744.195000px;}
.y14{bottom:764.895000px;}
.y9d{bottom:780.555000px;}
.y13{bottom:785.596500px;}
.yb6{bottom:785.775000px;}
.y12{bottom:806.295000px;}
.y70{bottom:809.895000px;}
.y9c{bottom:822.315000px;}
.y11{bottom:826.996500px;}
.y37{bottom:827.175000px;}
.yb5{bottom:827.536500px;}
.y6f{bottom:830.415000px;}
.y9b{bottom:843.015000px;}
.y10{bottom:847.695000px;}
.yb4{bottom:848.236500px;}
.y6c{bottom:868.200000px;}
.yf{bottom:868.395000px;}
.y36{bottom:868.936500px;}
.y9a{bottom:884.775000px;}
.ye{bottom:889.095000px;}
.y35{bottom:889.636500px;}
.y99{bottom:905.475000px;}
.yd{bottom:909.795000px;}
.y4d{bottom:909.975000px;}
.y34{bottom:910.336500px;}
.y69{bottom:913.050000px;}
.y98{bottom:926.175000px;}
.y33{bottom:931.036500px;}
.yc{bottom:951.375000px;}
.y32{bottom:951.736500px;}
.y66{bottom:958.500000px;}
.y95{bottom:963.900000px;}
.yb3{bottom:972.436500px;}
.yb{bottom:993.136500px;}
.y31{bottom:993.495000px;}
.y63{bottom:1003.950000px;}
.y93{bottom:1006.875000px;}
.yb2{bottom:1013.836500px;}
.y30{bottom:1014.195000px;}
.y91{bottom:1028.325000px;}
.ya{bottom:1034.895000px;}
.y4c{bottom:1035.075000px;}
.y60{bottom:1047.975000px;}
.y8f{bottom:1049.775000px;}
.y2f{bottom:1055.595000px;}
.y4b{bottom:1055.775000px;}
.y8d{bottom:1071.225000px;}
.y9{bottom:1076.475000px;}
.y5e{bottom:1090.950000px;}
.y8b{bottom:1092.600000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h10{height:21.375000px;}
.h6{height:23.025000px;}
.hb{height:26.475000px;}
.hf{height:42.150000px;}
.h11{height:42.900000px;}
.h7{height:42.975000px;}
.h8{height:44.025000px;}
.ha{height:44.850000px;}
.h3{height:45.095654px;}
.h9{height:45.450000px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.hc{height:50.550000px;}
.hd{height:52.350000px;}
.he{height:77.475000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w10{width:56.775000px;}
.w8{width:57.300000px;}
.wf{width:60.750000px;}
.wd{width:63.300000px;}
.we{width:63.900000px;}
.wc{width:68.175000px;}
.w7{width:68.775000px;}
.w5{width:69.525000px;}
.w6{width:69.600000px;}
.w4{width:69.675000px;}
.wb{width:70.425000px;}
.wa{width:70.725000px;}
.w14{width:126.150000px;}
.w13{width:137.100000px;}
.w12{width:138.075000px;}
.w9{width:146.175000px;}
.w15{width:154.575000px;}
.w11{width:162.300000px;}
.w3{width:166.425000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.145000px;}
.x9{left:119.475000px;}
.x1{left:127.620000px;}
.x4{left:153.538500px;}
.x11{left:265.575000px;}
.x18{left:281.700000px;}
.xb{left:285.825000px;}
.x12{left:336.225000px;}
.xc{left:355.425000px;}
.x13{left:406.575000px;}
.x19{left:419.700000px;}
.xd{left:424.875000px;}
.x5{left:444.780000px;}
.x3{left:461.625000px;}
.x14{left:474.675000px;}
.xe{left:494.400000px;}
.x15{left:542.775000px;}
.x1a{left:556.725000px;}
.xf{left:563.925000px;}
.x8{left:585.720000px;}
.x16{left:606.000000px;}
.x10{left:632.625000px;}
.x6{left:664.200000px;}
.x17{left:669.825000px;}
.x1b{left:682.800000px;}
.x7{left:689.760000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:167.642400pt;}
.wsa{word-spacing:-49.728000pt;}
.ws75{word-spacing:-34.803200pt;}
.ws60{word-spacing:-34.740800pt;}
.ws67{word-spacing:-34.554400pt;}
.ws59{word-spacing:-34.548800pt;}
.wsa2{word-spacing:-34.488000pt;}
.wsba{word-spacing:-34.366400pt;}
.ws6{word-spacing:-34.362400pt;}
.ws5a{word-spacing:-34.361600pt;}
.wsa1{word-spacing:-34.360533pt;}
.ws53{word-spacing:-34.360000pt;}
.ws8b{word-spacing:-34.359200pt;}
.ws61{word-spacing:-34.357600pt;}
.ws5d{word-spacing:-34.356800pt;}
.ws17{word-spacing:-34.355200pt;}
.wsb0{word-spacing:-34.354400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws62{word-spacing:-34.353067pt;}
.ws6b{word-spacing:-34.350400pt;}
.ws42{word-spacing:-34.348800pt;}
.ws66{word-spacing:-34.181333pt;}
.ws68{word-spacing:-34.176000pt;}
.ws7f{word-spacing:-34.173600pt;}
.ws7d{word-spacing:-34.169600pt;}
.ws9b{word-spacing:-34.168000pt;}
.ws25{word-spacing:-34.167200pt;}
.ws41{word-spacing:-34.166400pt;}
.ws9d{word-spacing:-34.165600pt;}
.ws31{word-spacing:-34.161867pt;}
.ws92{word-spacing:-34.161600pt;}
.wsb2{word-spacing:-34.161067pt;}
.ws5e{word-spacing:-34.160000pt;}
.ws58{word-spacing:-34.158400pt;}
.ws99{word-spacing:-34.150400pt;}
.ws3{word-spacing:-34.110400pt;}
.ws3e{word-spacing:-34.098400pt;}
.wsa5{word-spacing:-33.925333pt;}
.ws89{word-spacing:-33.922133pt;}
.ws4d{word-spacing:-33.920000pt;}
.ws65{word-spacing:-33.917333pt;}
.ws78{word-spacing:-33.916800pt;}
.wsaf{word-spacing:-33.916000pt;}
.ws6e{word-spacing:-33.915200pt;}
.ws90{word-spacing:-33.913600pt;}
.ws3d{word-spacing:-33.912000pt;}
.ws45{word-spacing:-33.911200pt;}
.ws38{word-spacing:-33.910933pt;}
.ws34{word-spacing:-33.910400pt;}
.ws9a{word-spacing:-33.905600pt;}
.ws9e{word-spacing:-33.905333pt;}
.ws46{word-spacing:-33.902400pt;}
.ws49{word-spacing:-33.901600pt;}
.ws9{word-spacing:-33.855200pt;}
.ws4a{word-spacing:-33.844800pt;}
.wsb5{word-spacing:-33.844533pt;}
.ws87{word-spacing:-33.731733pt;}
.ws0{word-spacing:-33.728000pt;}
.ws3f{word-spacing:-33.726933pt;}
.wsd{word-spacing:-33.726400pt;}
.ws5c{word-spacing:-33.725600pt;}
.ws83{word-spacing:-33.724800pt;}
.ws4{word-spacing:-33.723200pt;}
.wsc{word-spacing:-33.720800pt;}
.wsb3{word-spacing:-33.718400pt;}
.wsae{word-spacing:-33.717600pt;}
.ws2{word-spacing:-33.716800pt;}
.ws1a{word-spacing:-33.716000pt;}
.wsb1{word-spacing:-33.712000pt;}
.ws44{word-spacing:-33.711733pt;}
.ws43{word-spacing:-33.711200pt;}
.ws5f{word-spacing:-33.700800pt;}
.ws9c{word-spacing:-33.699733pt;}
.ws7b{word-spacing:-33.531200pt;}
.ws8a{word-spacing:-33.530400pt;}
.ws88{word-spacing:-33.528800pt;}
.ws47{word-spacing:-33.527200pt;}
.wsa0{word-spacing:-33.519200pt;}
.wsb4{word-spacing:-33.511467pt;}
.ws1c{word-spacing:-33.395467pt;}
.ws12{word-spacing:-33.280000pt;}
.ws9f{word-spacing:-33.277600pt;}
.ws11{word-spacing:-33.090133pt;}
.ws77{word-spacing:-33.084800pt;}
.ws8c{word-spacing:-33.077600pt;}
.ws1b{word-spacing:-32.640000pt;}
.wsa4{word-spacing:-32.445333pt;}
.wsad{word-spacing:-32.419200pt;}
.ws52{word-spacing:-31.792000pt;}
.wsa3{word-spacing:-31.791200pt;}
.ws86{word-spacing:-31.616533pt;}
.ws36{word-spacing:-31.168000pt;}
.ws3a{word-spacing:-30.522133pt;}
.ws29{word-spacing:-30.508800pt;}
.ws2b{word-spacing:-30.507200pt;}
.ws28{word-spacing:-30.080000pt;}
.ws8{word-spacing:-29.820267pt;}
.wsb9{word-spacing:-28.800000pt;}
.wsb6{word-spacing:-28.792800pt;}
.ws7c{word-spacing:-28.596267pt;}
.wsf{word-spacing:-28.594400pt;}
.wse{word-spacing:-28.160000pt;}
.ws57{word-spacing:-27.316000pt;}
.ws73{word-spacing:-27.300000pt;}
.ws74{word-spacing:-26.676533pt;}
.ws30{word-spacing:-26.237600pt;}
.ws21{word-spacing:-25.974400pt;}
.ws84{word-spacing:-25.396800pt;}
.ws13{word-spacing:-25.191467pt;}
.ws2f{word-spacing:-24.766400pt;}
.wsa8{word-spacing:-24.764533pt;}
.ws6a{word-spacing:-24.760533pt;}
.ws69{word-spacing:-24.752800pt;}
.wsa9{word-spacing:-24.576000pt;}
.ws4e{word-spacing:-24.563733pt;}
.ws4f{word-spacing:-23.680000pt;}
.ws39{word-spacing:-23.665600pt;}
.ws10{word-spacing:-22.843733pt;}
.ws8e{word-spacing:-22.206400pt;}
.ws6c{word-spacing:-22.011200pt;}
.ws48{word-spacing:-21.752000pt;}
.wsaa{word-spacing:-21.563733pt;}
.ws6d{word-spacing:-21.544267pt;}
.ws8f{word-spacing:-21.120000pt;}
.wsb8{word-spacing:-20.926400pt;}
.ws51{word-spacing:-20.920800pt;}
.ws56{word-spacing:-18.988800pt;}
.ws4b{word-spacing:-18.545600pt;}
.ws2c{word-spacing:-18.540800pt;}
.ws4c{word-spacing:-18.352000pt;}
.ws98{word-spacing:-18.176000pt;}
.ws97{word-spacing:-18.162400pt;}
.ws85{word-spacing:-17.717600pt;}
.wsa7{word-spacing:-17.541333pt;}
.wsb{word-spacing:-17.537333pt;}
.ws35{word-spacing:-17.278400pt;}
.ws3c{word-spacing:-17.088000pt;}
.wsa6{word-spacing:-17.067467pt;}
.ws7{word-spacing:-16.420000pt;}
.ws2d{word-spacing:-16.376000pt;}
.ws16{word-spacing:-15.796800pt;}
.wsbb{word-spacing:-15.589600pt;}
.ws63{word-spacing:-15.362933pt;}
.ws50{word-spacing:-15.340000pt;}
.ws64{word-spacing:-15.152000pt;}
.ws76{word-spacing:-14.338933pt;}
.ws82{word-spacing:-14.076800pt;}
.ws15{word-spacing:-13.433600pt;}
.ws32{word-spacing:-13.428800pt;}
.ws33{word-spacing:-12.406400pt;}
.wsab{word-spacing:-12.141867pt;}
.wsac{word-spacing:-11.768000pt;}
.ws6f{word-spacing:-11.319733pt;}
.wsbc{word-spacing:-10.880000pt;}
.ws70{word-spacing:-10.867733pt;}
.wsb7{word-spacing:-10.668000pt;}
.ws26{word-spacing:-8.960000pt;}
.ws27{word-spacing:-8.768000pt;}
.ws37{word-spacing:-8.124000pt;}
.ws55{word-spacing:-8.116800pt;}
.ws95{word-spacing:-7.474400pt;}
.ws96{word-spacing:-6.845333pt;}
.ws3b{word-spacing:-6.843733pt;}
.ws2e{word-spacing:-6.397600pt;}
.ws2a{word-spacing:-6.130400pt;}
.ws40{word-spacing:-5.114667pt;}
.ws7e{word-spacing:-1.529067pt;}
.ws54{word-spacing:0.000000pt;}
.ws23{word-spacing:1.486400pt;}
.ws22{word-spacing:3.201600pt;}
.ws20{word-spacing:3.404800pt;}
.ws19{word-spacing:4.685600pt;}
.ws18{word-spacing:5.125867pt;}
.ws1e{word-spacing:7.237333pt;}
.ws1d{word-spacing:10.241600pt;}
.ws71{word-spacing:12.367200pt;}
.ws72{word-spacing:12.370400pt;}
.ws1f{word-spacing:12.672000pt;}
.ws24{word-spacing:15.488267pt;}
.ws14{word-spacing:17.487200pt;}
.ws93{word-spacing:22.609600pt;}
.ws94{word-spacing:23.036267pt;}
.ws91{word-spacing:67.270400pt;}
.ws80{word-spacing:88.709600pt;}
.ws5b{word-spacing:94.272000pt;}
.ws7a{word-spacing:132.231200pt;}
.ws81{word-spacing:159.363200pt;}
.ws79{word-spacing:227.843200pt;}
.ws8d{word-spacing:348.992800pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._7{width:17.986133pt;}
._1d{width:18.933333pt;}
._15{width:20.160000pt;}
._5{width:22.386400pt;}
._1e{width:23.720000pt;}
._12{width:25.014400pt;}
._8{width:26.076800pt;}
._1a{width:26.969067pt;}
._6{width:27.959467pt;}
._1b{width:29.232000pt;}
._1c{width:30.665333pt;}
._1{width:32.000000pt;}
._18{width:33.738133pt;}
._b{width:35.635200pt;}
._a{width:37.445333pt;}
._23{width:38.568533pt;}
._20{width:39.686667pt;}
._24{width:40.677333pt;}
._19{width:42.557600pt;}
._17{width:44.308000pt;}
._16{width:45.284800pt;}
._21{width:49.786133pt;}
._13{width:52.652267pt;}
._11{width:54.131200pt;}
._c{width:56.079733pt;}
._f{width:58.100267pt;}
._d{width:60.926400pt;}
._e{width:61.822400pt;}
._10{width:63.453867pt;}
._14{width:66.495733pt;}
._9{width:68.144800pt;}
._22{width:118.355200pt;}
._1f{width:144.000000pt;}
._0{width:544.128000pt;}
.fs2{font-size:53.066667pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:3.388000pt;}
.y90{bottom:3.413333pt;}
.y8c{bottom:3.426667pt;}
.y92{bottom:3.440000pt;}
.y94{bottom:3.466667pt;}
.y8a{bottom:3.493333pt;}
.y7{bottom:3.974667pt;}
.y62{bottom:4.213333pt;}
.y97{bottom:4.226667pt;}
.y5f{bottom:4.893333pt;}
.y65{bottom:5.266667pt;}
.y6e{bottom:5.933333pt;}
.y68{bottom:6.466667pt;}
.y6b{bottom:6.546667pt;}
.y73{bottom:8.000000pt;}
.y76{bottom:11.013333pt;}
.y7f{bottom:12.533333pt;}
.y7c{bottom:12.560000pt;}
.y79{bottom:12.588000pt;}
.y89{bottom:21.893333pt;}
.y96{bottom:22.466667pt;}
.y61{bottom:22.613333pt;}
.y64{bottom:23.506667pt;}
.y6d{bottom:24.333333pt;}
.y6a{bottom:24.788000pt;}
.y67{bottom:24.866667pt;}
.y75{bottom:29.413333pt;}
.y7e{bottom:30.933333pt;}
.y7b{bottom:30.960000pt;}
.y78{bottom:30.988000pt;}
.y82{bottom:35.000000pt;}
.y81{bottom:53.241333pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y88{bottom:87.133333pt;}
.y4a{bottom:88.708000pt;}
.yc2{bottom:89.188000pt;}
.yb1{bottom:102.466667pt;}
.y49{bottom:107.108000pt;}
.yc1{bottom:107.588000pt;}
.y2e{bottom:108.066667pt;}
.yb0{bottom:120.866667pt;}
.y48{bottom:125.508000pt;}
.yc0{bottom:125.988000pt;}
.y2d{bottom:126.466667pt;}
.yaf{bottom:139.266667pt;}
.y5d{bottom:143.908000pt;}
.ybf{bottom:144.388000pt;}
.y87{bottom:146.788000pt;}
.yae{bottom:157.666667pt;}
.y47{bottom:162.466667pt;}
.ybe{bottom:162.788000pt;}
.y2c{bottom:163.588000pt;}
.y46{bottom:180.866667pt;}
.ybd{bottom:181.188000pt;}
.y2b{bottom:181.988000pt;}
.yad{bottom:194.626667pt;}
.y45{bottom:199.266667pt;}
.ybc{bottom:199.588000pt;}
.y2a{bottom:200.388000pt;}
.yac{bottom:213.026667pt;}
.y44{bottom:217.666667pt;}
.ybb{bottom:217.988000pt;}
.y29{bottom:218.788000pt;}
.y86{bottom:220.866667pt;}
.yba{bottom:236.388000pt;}
.y28{bottom:237.188000pt;}
.y85{bottom:239.266667pt;}
.yab{bottom:250.146667pt;}
.y43{bottom:254.788000pt;}
.y5c{bottom:255.108000pt;}
.y27{bottom:255.588000pt;}
.y84{bottom:257.666667pt;}
.y42{bottom:273.188000pt;}
.y5b{bottom:273.508000pt;}
.y26{bottom:273.988000pt;}
.y83{bottom:276.066667pt;}
.yaa{bottom:287.266667pt;}
.y41{bottom:291.588000pt;}
.y5a{bottom:291.908000pt;}
.y25{bottom:292.388000pt;}
.ya9{bottom:305.666667pt;}
.y40{bottom:309.988000pt;}
.y59{bottom:310.308000pt;}
.y24{bottom:310.788000pt;}
.ya8{bottom:324.066667pt;}
.y58{bottom:328.706667pt;}
.ya7{bottom:342.466667pt;}
.y80{bottom:346.666667pt;}
.y3f{bottom:347.108000pt;}
.y23{bottom:347.908000pt;}
.y57{bottom:365.508000pt;}
.yb9{bottom:365.666667pt;}
.y22{bottom:366.308000pt;}
.ya6{bottom:379.426667pt;}
.y56{bottom:383.908000pt;}
.y3e{bottom:384.066667pt;}
.y3d{bottom:402.466667pt;}
.y21{bottom:403.266667pt;}
.y7d{bottom:415.533333pt;}
.ya5{bottom:416.546667pt;}
.y55{bottom:420.866667pt;}
.y20{bottom:421.666667pt;}
.y3c{bottom:439.588000pt;}
.y1f{bottom:440.066667pt;}
.y3b{bottom:457.988000pt;}
.y1e{bottom:458.466667pt;}
.y7a{bottom:462.066667pt;}
.y3a{bottom:476.388000pt;}
.yb8{bottom:476.708000pt;}
.y1d{bottom:476.866667pt;}
.y54{bottom:495.108000pt;}
.y1c{bottom:495.266667pt;}
.y77{bottom:508.600000pt;}
.y39{bottom:513.506667pt;}
.y1b{bottom:513.666667pt;}
.ya4{bottom:527.746667pt;}
.y53{bottom:531.908000pt;}
.y1a{bottom:532.066667pt;}
.ya3{bottom:546.146667pt;}
.y52{bottom:550.308000pt;}
.y19{bottom:550.466667pt;}
.y74{bottom:555.133333pt;}
.ya2{bottom:564.546667pt;}
.y51{bottom:568.706667pt;}
.y18{bottom:568.866667pt;}
.ya1{bottom:582.946667pt;}
.y50{bottom:587.108000pt;}
.y38{bottom:587.266667pt;}
.yb7{bottom:587.588000pt;}
.y72{bottom:600.066667pt;}
.ya0{bottom:601.346667pt;}
.y17{bottom:605.988000pt;}
.y9f{bottom:619.746667pt;}
.y4f{bottom:624.066667pt;}
.y16{bottom:624.388000pt;}
.y71{bottom:645.666667pt;}
.y9e{bottom:656.866667pt;}
.y4e{bottom:661.188000pt;}
.y15{bottom:661.506667pt;}
.y14{bottom:679.906667pt;}
.y9d{bottom:693.826667pt;}
.y13{bottom:698.308000pt;}
.yb6{bottom:698.466667pt;}
.y12{bottom:716.706667pt;}
.y70{bottom:719.906667pt;}
.y9c{bottom:730.946667pt;}
.y11{bottom:735.108000pt;}
.y37{bottom:735.266667pt;}
.yb5{bottom:735.588000pt;}
.y6f{bottom:738.146667pt;}
.y9b{bottom:749.346667pt;}
.y10{bottom:753.506667pt;}
.yb4{bottom:753.988000pt;}
.y6c{bottom:771.733333pt;}
.yf{bottom:771.906667pt;}
.y36{bottom:772.388000pt;}
.y9a{bottom:786.466667pt;}
.ye{bottom:790.306667pt;}
.y35{bottom:790.788000pt;}
.y99{bottom:804.866667pt;}
.yd{bottom:808.706667pt;}
.y4d{bottom:808.866667pt;}
.y34{bottom:809.188000pt;}
.y69{bottom:811.600000pt;}
.y98{bottom:823.266667pt;}
.y33{bottom:827.588000pt;}
.yc{bottom:845.666667pt;}
.y32{bottom:845.988000pt;}
.y66{bottom:852.000000pt;}
.y95{bottom:856.800000pt;}
.yb3{bottom:864.388000pt;}
.yb{bottom:882.788000pt;}
.y31{bottom:883.106667pt;}
.y63{bottom:892.400000pt;}
.y93{bottom:895.000000pt;}
.yb2{bottom:901.188000pt;}
.y30{bottom:901.506667pt;}
.y91{bottom:914.066667pt;}
.ya{bottom:919.906667pt;}
.y4c{bottom:920.066667pt;}
.y60{bottom:931.533333pt;}
.y8f{bottom:933.133333pt;}
.y2f{bottom:938.306667pt;}
.y4b{bottom:938.466667pt;}
.y8d{bottom:952.200000pt;}
.y9{bottom:956.866667pt;}
.y5e{bottom:969.733333pt;}
.y8b{bottom:971.200000pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h10{height:19.000000pt;}
.h6{height:20.466667pt;}
.hb{height:23.533333pt;}
.hf{height:37.466667pt;}
.h11{height:38.133333pt;}
.h7{height:38.200000pt;}
.h8{height:39.133333pt;}
.ha{height:39.866667pt;}
.h3{height:40.085026pt;}
.h9{height:40.400000pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.hc{height:44.933333pt;}
.hd{height:46.533333pt;}
.he{height:68.866667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w10{width:50.466667pt;}
.w8{width:50.933333pt;}
.wf{width:54.000000pt;}
.wd{width:56.266667pt;}
.we{width:56.800000pt;}
.wc{width:60.600000pt;}
.w7{width:61.133333pt;}
.w5{width:61.800000pt;}
.w6{width:61.866667pt;}
.w4{width:61.933333pt;}
.wb{width:62.600000pt;}
.wa{width:62.866667pt;}
.w14{width:112.133333pt;}
.w13{width:121.866667pt;}
.w12{width:122.733333pt;}
.w9{width:129.933333pt;}
.w15{width:137.400000pt;}
.w11{width:144.266667pt;}
.w3{width:147.933333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.240000pt;}
.x9{left:106.200000pt;}
.x1{left:113.440000pt;}
.x4{left:136.478667pt;}
.x11{left:236.066667pt;}
.x18{left:250.400000pt;}
.xb{left:254.066667pt;}
.x12{left:298.866667pt;}
.xc{left:315.933333pt;}
.x13{left:361.400000pt;}
.x19{left:373.066667pt;}
.xd{left:377.666667pt;}
.x5{left:395.360000pt;}
.x3{left:410.333333pt;}
.x14{left:421.933333pt;}
.xe{left:439.466667pt;}
.x15{left:482.466667pt;}
.x1a{left:494.866667pt;}
.xf{left:501.266667pt;}
.x8{left:520.640000pt;}
.x16{left:538.666667pt;}
.x10{left:562.333333pt;}
.x6{left:590.400000pt;}
.x17{left:595.400000pt;}
.x1b{left:606.933333pt;}
.x7{left:613.120000pt;}
.x2{left:649.920000pt;}
}




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