
    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_592443dbae0c6cb9f733bd2a.woff2')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_44beb3607db3640760b11c5f.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_2d773427d729037de57c4eeb.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_cb8937d6c70b421aa770ec76.woff2')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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:23.754000px;}
.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;}
.ws6{word-spacing:-38.657700px;}
.ws15{word-spacing:-38.652300px;}
.ws8d{word-spacing:-38.651700px;}
.ws5{word-spacing:-38.647800px;}
.ws36{word-spacing:-38.589300px;}
.ws73{word-spacing:-38.584800px;}
.ws5a{word-spacing:-38.580300px;}
.ws32{word-spacing:-38.579400px;}
.ws74{word-spacing:-38.514600px;}
.ws9{word-spacing:-38.436300px;}
.wsb{word-spacing:-38.376000px;}
.ws3{word-spacing:-38.374200px;}
.wsc1{word-spacing:-38.372100px;}
.ws79{word-spacing:-38.298000px;}
.ws76{word-spacing:-38.289600px;}
.ws81{word-spacing:-38.285400px;}
.wsc0{word-spacing:-38.280600px;}
.wsc{word-spacing:-38.280000px;}
.wsc8{word-spacing:-38.160000px;}
.ws62{word-spacing:-38.156100px;}
.ws5d{word-spacing:-38.152800px;}
.ws6b{word-spacing:-38.146500px;}
.ws4b{word-spacing:-38.143800px;}
.ws64{word-spacing:-38.132100px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.ws7b{word-spacing:-37.863600px;}
.ws5c{word-spacing:-37.795500px;}
.ws67{word-spacing:-37.717200px;}
.wsd{word-spacing:-37.709100px;}
.ws75{word-spacing:-37.647300px;}
.ws8f{word-spacing:-37.431000px;}
.ws51{word-spacing:-37.224000px;}
.ws6a{word-spacing:-37.134900px;}
.wsa2{word-spacing:-37.003200px;}
.ws71{word-spacing:-36.707400px;}
.wsbe{word-spacing:-36.639900px;}
.ws8e{word-spacing:-36.504000px;}
.ws50{word-spacing:-36.502200px;}
.ws55{word-spacing:-35.992200px;}
.ws13{word-spacing:-35.979300px;}
.ws35{word-spacing:-35.420100px;}
.ws14{word-spacing:-34.314600px;}
.ws1a{word-spacing:-33.823800px;}
.ws6d{word-spacing:-33.630000px;}
.ws3c{word-spacing:-33.624000px;}
.ws8{word-spacing:-33.547800px;}
.ws2e{word-spacing:-33.399900px;}
.ws97{word-spacing:-32.828400px;}
.ws1e{word-spacing:-32.384100px;}
.wsc7{word-spacing:-32.190000px;}
.ws29{word-spacing:-31.810500px;}
.ws46{word-spacing:-31.668900px;}
.ws2a{word-spacing:-31.662300px;}
.wsc3{word-spacing:-31.464000px;}
.wsb3{word-spacing:-31.104000px;}
.ws47{word-spacing:-31.094100px;}
.wsbb{word-spacing:-30.960000px;}
.wsad{word-spacing:-30.873600px;}
.wsbc{word-spacing:-30.748200px;}
.wsac{word-spacing:-30.736200px;}
.ws95{word-spacing:-30.669300px;}
.ws30{word-spacing:-30.021900px;}
.ws45{word-spacing:-29.736000px;}
.ws9d{word-spacing:-29.273400px;}
.ws2c{word-spacing:-28.720800px;}
.ws27{word-spacing:-28.582200px;}
.ws33{word-spacing:-28.578000px;}
.ws69{word-spacing:-27.864000px;}
.ws9b{word-spacing:-27.858000px;}
.ws9c{word-spacing:-27.557100px;}
.ws2d{word-spacing:-27.358200px;}
.ws6c{word-spacing:-27.210600px;}
.ws3b{word-spacing:-27.148200px;}
.ws65{word-spacing:-26.424000px;}
.wsae{word-spacing:-26.056800px;}
.ws86{word-spacing:-25.705500px;}
.ws17{word-spacing:-24.984000px;}
.ws16{word-spacing:-24.480000px;}
.ws8b{word-spacing:-23.958000px;}
.ws3f{word-spacing:-23.902200px;}
.ws1d{word-spacing:-23.755200px;}
.ws92{word-spacing:-23.535900px;}
.wsa8{word-spacing:-23.176200px;}
.ws2f{word-spacing:-23.165100px;}
.ws11{word-spacing:-23.031000px;}
.ws72{word-spacing:-22.830000px;}
.wsab{word-spacing:-22.738500px;}
.wsb0{word-spacing:-22.464000px;}
.ws7e{word-spacing:-22.447800px;}
.ws4a{word-spacing:-21.805200px;}
.ws6e{word-spacing:-21.728700px;}
.wsc2{word-spacing:-21.384000px;}
.ws58{word-spacing:-21.084300px;}
.ws87{word-spacing:-21.011400px;}
.ws96{word-spacing:-20.878200px;}
.ws85{word-spacing:-20.664000px;}
.ws91{word-spacing:-20.643300px;}
.ws19{word-spacing:-20.308200px;}
.ws18{word-spacing:-19.944000px;}
.ws7{word-spacing:-18.472500px;}
.ws70{word-spacing:-18.128700px;}
.ws4e{word-spacing:-17.998200px;}
.ws10{word-spacing:-17.782200px;}
.ws84{word-spacing:-17.698800px;}
.ws3e{word-spacing:-17.475300px;}
.wsa6{word-spacing:-16.984800px;}
.ws48{word-spacing:-15.983700px;}
.ws90{word-spacing:-15.816600px;}
.ws93{word-spacing:-14.887800px;}
.ws59{word-spacing:-14.174100px;}
.wsa3{word-spacing:-13.235400px;}
.ws82{word-spacing:-13.161600px;}
.ws31{word-spacing:-12.744000px;}
.ws78{word-spacing:-12.382200px;}
.ws44{word-spacing:-12.022200px;}
.ws34{word-spacing:-12.013200px;}
.wsa7{word-spacing:-11.510100px;}
.ws56{word-spacing:-11.445000px;}
.ws38{word-spacing:-11.365200px;}
.wsaa{word-spacing:-11.080800px;}
.ws39{word-spacing:-11.072700px;}
.wsc5{word-spacing:-10.578000px;}
.wsb2{word-spacing:-10.224000px;}
.ws20{word-spacing:-10.211400px;}
.wsaf{word-spacing:-10.070100px;}
.wsc4{word-spacing:-9.864000px;}
.ws5b{word-spacing:-9.510000px;}
.ws24{word-spacing:-9.058500px;}
.ws3d{word-spacing:-8.064000px;}
.ws53{word-spacing:-7.178400px;}
.ws4f{word-spacing:-7.122600px;}
.wsa1{word-spacing:-6.984000px;}
.ws22{word-spacing:-6.971400px;}
.wsa9{word-spacing:-6.616800px;}
.ws49{word-spacing:-4.594500px;}
.wsb9{word-spacing:-4.110000px;}
.wsba{word-spacing:-4.099500px;}
.ws94{word-spacing:-3.799800px;}
.wsb4{word-spacing:-3.728700px;}
.ws1f{word-spacing:-3.600000px;}
.ws54{word-spacing:-3.598800px;}
.ws9e{word-spacing:-2.871900px;}
.ws23{word-spacing:-2.159700px;}
.wsb8{word-spacing:-1.224000px;}
.ws4c{word-spacing:-0.216000px;}
.ws37{word-spacing:0.000000px;}
.ws4d{word-spacing:0.003000px;}
.ws2b{word-spacing:0.742500px;}
.ws42{word-spacing:0.941400px;}
.wsbd{word-spacing:1.302300px;}
.wsb6{word-spacing:1.456200px;}
.wsb5{word-spacing:1.656000px;}
.ws99{word-spacing:1.665000px;}
.wsa4{word-spacing:2.893500px;}
.wsa5{word-spacing:3.330000px;}
.ws8a{word-spacing:3.396600px;}
.ws1b{word-spacing:3.816000px;}
.ws9f{word-spacing:5.619900px;}
.ws21{word-spacing:5.982600px;}
.ws1c{word-spacing:5.987100px;}
.ws28{word-spacing:6.360900px;}
.wsa0{word-spacing:6.481800px;}
.ws6f{word-spacing:7.207200px;}
.ws12{word-spacing:7.776000px;}
.ws57{word-spacing:8.137800px;}
.wsc6{word-spacing:8.856000px;}
.ws52{word-spacing:10.165800px;}
.wsf{word-spacing:10.801200px;}
.wse{word-spacing:11.010000px;}
.ws88{word-spacing:11.538000px;}
.wsb7{word-spacing:11.541300px;}
.ws3a{word-spacing:15.354600px;}
.ws63{word-spacing:15.850800px;}
.ws89{word-spacing:17.294400px;}
.ws26{word-spacing:18.018000px;}
.ws41{word-spacing:21.399300px;}
.ws98{word-spacing:21.462600px;}
.ws9a{word-spacing:21.816000px;}
.ws66{word-spacing:23.256000px;}
.ws8c{word-spacing:24.696000px;}
.ws25{word-spacing:24.716700px;}
.wsb1{word-spacing:25.640400px;}
.wsbf{word-spacing:27.454500px;}
.ws43{word-spacing:29.106900px;}
.ws61{word-spacing:37.656000px;}
.ws83{word-spacing:38.160000px;}
.ws40{word-spacing:41.341500px;}
.ws77{word-spacing:76.339500px;}
.ws5f{word-spacing:99.660600px;}
.ws7f{word-spacing:101.961900px;}
.ws7a{word-spacing:111.322800px;}
.ws68{word-spacing:130.192200px;}
.ws7c{word-spacing:162.238200px;}
.ws60{word-spacing:164.025000px;}
.ws80{word-spacing:226.091400px;}
.ws7d{word-spacing:242.856000px;}
.ws5e{word-spacing:356.690700px;}
.ws1{word-spacing:455.092800px;}
._1e{margin-left:-2.361000px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._26{width:20.341800px;}
._1c{width:21.612900px;}
._9{width:22.998000px;}
._e{width:24.609600px;}
._29{width:26.277300px;}
._1a{width:27.285900px;}
._17{width:29.012400px;}
._19{width:30.188400px;}
._28{width:31.335300px;}
._a{width:32.338800px;}
._7{width:34.182000px;}
._1{width:36.000000px;}
._b{width:37.294200px;}
._6{width:39.382200px;}
._22{width:40.984500px;}
._24{width:42.774900px;}
._2a{width:44.199600px;}
._1b{width:45.631200px;}
._10{width:46.834200px;}
._14{width:48.292500px;}
._11{width:50.014800px;}
._f{width:53.424000px;}
._12{width:55.168200px;}
._13{width:56.353200px;}
._18{width:58.729500px;}
._c{width:60.962400px;}
._d{width:63.138600px;}
._8{width:64.755600px;}
._23{width:65.914200px;}
._5{width:68.398800px;}
._27{width:69.583200px;}
._1d{width:73.493400px;}
._16{width:74.986800px;}
._20{width:78.861600px;}
._15{width:82.148100px;}
._2b{width:84.565800px;}
._21{width:86.381100px;}
._25{width:95.194800px;}
._1f{width:98.917800px;}
._2c{width:158.400000px;}
._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);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6a{bottom:4.950000px;}
.y64{bottom:5.011500px;}
.y61{bottom:5.700000px;}
.y81{bottom:5.715000px;}
.y58{bottom:5.761500px;}
.y75{bottom:5.775000px;}
.y68{bottom:5.820000px;}
.y5c{bottom:5.821500px;}
.y79{bottom:5.836500px;}
.y89{bottom:6.600000px;}
.y66{bottom:16.080000px;}
.y62{bottom:16.140000px;}
.y83{bottom:16.155000px;}
.y56{bottom:16.200000px;}
.y5e{bottom:16.261500px;}
.y7b{bottom:16.275000px;}
.y86{bottom:17.040000px;}
.y67{bottom:26.340000px;}
.y60{bottom:26.400000px;}
.y80{bottom:26.415000px;}
.y57{bottom:26.461500px;}
.y5b{bottom:26.521500px;}
.y77{bottom:26.536500px;}
.y87{bottom:27.300000px;}
.y5d{bottom:36.780000px;}
.y7a{bottom:36.796500px;}
.y7d{bottom:36.855000px;}
.y85{bottom:37.740000px;}
.y5a{bottom:47.040000px;}
.y78{bottom:47.055000px;}
.y7f{bottom:47.115000px;}
.y88{bottom:48.000000px;}
.y82{bottom:57.555000px;}
.y7e{bottom:67.815000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y32{bottom:101.775000px;}
.yb0{bottom:102.855000px;}
.y9c{bottom:103.396500px;}
.y63{bottom:117.825000px;}
.y31{bottom:122.475000px;}
.yaf{bottom:123.555000px;}
.y9b{bottom:124.096500px;}
.y30{bottom:143.175000px;}
.y5f{bottom:143.775000px;}
.y9a{bottom:144.796500px;}
.y2f{bottom:163.875000px;}
.yae{bottom:165.315000px;}
.y99{bottom:165.496500px;}
.y2e{bottom:184.575000px;}
.y98{bottom:186.196500px;}
.y59{bottom:191.175000px;}
.y2d{bottom:205.275000px;}
.y97{bottom:206.896500px;}
.y2c{bottom:225.975000px;}
.y96{bottom:227.596500px;}
.y2b{bottom:246.675000px;}
.y95{bottom:248.295000px;}
.y55{bottom:259.275000px;}
.y2a{bottom:267.375000px;}
.y94{bottom:268.996500px;}
.y29{bottom:288.075000px;}
.yad{bottom:289.696500px;}
.y28{bottom:308.775000px;}
.yac{bottom:310.396500px;}
.y93{bottom:310.755000px;}
.y27{bottom:329.475000px;}
.y54{bottom:330.736500px;}
.yab{bottom:331.096500px;}
.y92{bottom:331.455000px;}
.y26{bottom:350.175000px;}
.y53{bottom:351.436500px;}
.yaa{bottom:351.795000px;}
.y91{bottom:352.155000px;}
.y25{bottom:370.875000px;}
.ya9{bottom:372.496500px;}
.y90{bottom:372.855000px;}
.y24{bottom:391.575000px;}
.y52{bottom:393.196500px;}
.y8f{bottom:393.555000px;}
.y23{bottom:412.275000px;}
.y51{bottom:413.896500px;}
.y8e{bottom:414.255000px;}
.y22{bottom:432.975000px;}
.y50{bottom:434.596500px;}
.y8d{bottom:434.955000px;}
.y21{bottom:453.675000px;}
.y4f{bottom:455.295000px;}
.ya8{bottom:455.475000px;}
.y8c{bottom:455.655000px;}
.y20{bottom:474.375000px;}
.y4e{bottom:475.996500px;}
.ya7{bottom:476.175000px;}
.y8b{bottom:476.355000px;}
.y1f{bottom:495.075000px;}
.y4d{bottom:496.695000px;}
.ya6{bottom:496.875000px;}
.y8a{bottom:497.055000px;}
.y1e{bottom:515.775000px;}
.y4c{bottom:517.396500px;}
.ya5{bottom:517.575000px;}
.y1d{bottom:536.475000px;}
.y84{bottom:537.075000px;}
.y4b{bottom:538.096500px;}
.ya4{bottom:538.275000px;}
.y1c{bottom:557.175000px;}
.y4a{bottom:558.796500px;}
.ya3{bottom:558.975000px;}
.y1b{bottom:577.875000px;}
.y49{bottom:579.496500px;}
.ya2{bottom:579.675000px;}
.y1a{bottom:598.575000px;}
.y48{bottom:600.195000px;}
.ya1{bottom:600.375000px;}
.y7c{bottom:606.000000px;}
.y19{bottom:619.275000px;}
.y47{bottom:620.896500px;}
.ya0{bottom:621.075000px;}
.y18{bottom:639.975000px;}
.y46{bottom:641.596500px;}
.y9f{bottom:641.775000px;}
.y17{bottom:660.675000px;}
.y45{bottom:662.295000px;}
.y9e{bottom:662.475000px;}
.y16{bottom:681.375000px;}
.y9d{bottom:683.175000px;}
.y76{bottom:694.800000px;}
.y44{bottom:703.875000px;}
.y15{bottom:723.136500px;}
.y43{bottom:724.575000px;}
.y14{bottom:743.836500px;}
.y42{bottom:745.275000px;}
.y74{bottom:762.900000px;}
.y41{bottom:765.975000px;}
.y13{bottom:785.596500px;}
.y40{bottom:786.675000px;}
.y12{bottom:806.295000px;}
.y3f{bottom:807.375000px;}
.y73{bottom:815.115000px;}
.y11{bottom:826.996500px;}
.y3e{bottom:828.075000px;}
.y10{bottom:847.695000px;}
.y3d{bottom:848.775000px;}
.y72{bottom:856.875000px;}
.yf{bottom:868.395000px;}
.y3c{bottom:869.475000px;}
.y71{bottom:877.575000px;}
.ye{bottom:889.095000px;}
.y3b{bottom:890.175000px;}
.y70{bottom:898.275000px;}
.yd{bottom:909.795000px;}
.y3a{bottom:910.875000px;}
.y6f{bottom:918.975000px;}
.y39{bottom:931.575000px;}
.y6e{bottom:939.675000px;}
.yc{bottom:951.375000px;}
.y38{bottom:952.275000px;}
.y6d{bottom:960.375000px;}
.y37{bottom:972.975000px;}
.y6c{bottom:981.075000px;}
.yb{bottom:993.136500px;}
.y36{bottom:993.675000px;}
.y6b{bottom:1001.775000px;}
.y35{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y34{bottom:1035.075000px;}
.y69{bottom:1041.825000px;}
.y33{bottom:1055.775000px;}
.y65{bottom:1067.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.ha{height:23.700000px;}
.hb{height:25.125000px;}
.h7{height:44.325000px;}
.h9{height:45.075000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h6{height:49.992188px;}
.h2{height:62.261719px;}
.h8{height:65.775000px;}
.hd{height:66.600000px;}
.hc{height:86.475000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w4{width:121.275000px;}
.w9{width:124.500000px;}
.w5{width:132.225000px;}
.w7{width:158.775000px;}
.w3{width:192.600000px;}
.wa{width:202.200000px;}
.w8{width:213.450000px;}
.w6{width:251.325000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:1.170000px;}
.x9{left:126.450000px;}
.x1{left:127.620000px;}
.x4{left:148.500000px;}
.xe{left:286.650000px;}
.x7{left:307.980000px;}
.xb{left:321.225000px;}
.x5{left:403.738500px;}
.xc{left:444.675000px;}
.x3{left:465.825000px;}
.xf{left:502.275000px;}
.x6{left:529.738500px;}
.x8{left:534.600000px;}
.xd{left:579.075000px;}
.x10{left:628.950000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:21.114667pt;}
.wsa{word-spacing:-49.728000pt;}
.ws6{word-spacing:-34.362400pt;}
.ws15{word-spacing:-34.357600pt;}
.ws8d{word-spacing:-34.357067pt;}
.ws5{word-spacing:-34.353600pt;}
.ws36{word-spacing:-34.301600pt;}
.ws73{word-spacing:-34.297600pt;}
.ws5a{word-spacing:-34.293600pt;}
.ws32{word-spacing:-34.292800pt;}
.ws74{word-spacing:-34.235200pt;}
.ws9{word-spacing:-34.165600pt;}
.wsb{word-spacing:-34.112000pt;}
.ws3{word-spacing:-34.110400pt;}
.wsc1{word-spacing:-34.108533pt;}
.ws79{word-spacing:-34.042667pt;}
.ws76{word-spacing:-34.035200pt;}
.ws81{word-spacing:-34.031467pt;}
.wsc0{word-spacing:-34.027200pt;}
.wsc{word-spacing:-34.026667pt;}
.wsc8{word-spacing:-33.920000pt;}
.ws62{word-spacing:-33.916533pt;}
.ws5d{word-spacing:-33.913600pt;}
.ws6b{word-spacing:-33.908000pt;}
.ws4b{word-spacing:-33.905600pt;}
.ws64{word-spacing:-33.895200pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.ws7b{word-spacing:-33.656533pt;}
.ws5c{word-spacing:-33.596000pt;}
.ws67{word-spacing:-33.526400pt;}
.wsd{word-spacing:-33.519200pt;}
.ws75{word-spacing:-33.464267pt;}
.ws8f{word-spacing:-33.272000pt;}
.ws51{word-spacing:-33.088000pt;}
.ws6a{word-spacing:-33.008800pt;}
.wsa2{word-spacing:-32.891733pt;}
.ws71{word-spacing:-32.628800pt;}
.wsbe{word-spacing:-32.568800pt;}
.ws8e{word-spacing:-32.448000pt;}
.ws50{word-spacing:-32.446400pt;}
.ws55{word-spacing:-31.993067pt;}
.ws13{word-spacing:-31.981600pt;}
.ws35{word-spacing:-31.484533pt;}
.ws14{word-spacing:-30.501867pt;}
.ws1a{word-spacing:-30.065600pt;}
.ws6d{word-spacing:-29.893333pt;}
.ws3c{word-spacing:-29.888000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws2e{word-spacing:-29.688800pt;}
.ws97{word-spacing:-29.180800pt;}
.ws1e{word-spacing:-28.785867pt;}
.wsc7{word-spacing:-28.613333pt;}
.ws29{word-spacing:-28.276000pt;}
.ws46{word-spacing:-28.150133pt;}
.ws2a{word-spacing:-28.144267pt;}
.wsc3{word-spacing:-27.968000pt;}
.wsb3{word-spacing:-27.648000pt;}
.ws47{word-spacing:-27.639200pt;}
.wsbb{word-spacing:-27.520000pt;}
.wsad{word-spacing:-27.443200pt;}
.wsbc{word-spacing:-27.331733pt;}
.wsac{word-spacing:-27.321067pt;}
.ws95{word-spacing:-27.261600pt;}
.ws30{word-spacing:-26.686133pt;}
.ws45{word-spacing:-26.432000pt;}
.ws9d{word-spacing:-26.020800pt;}
.ws2c{word-spacing:-25.529600pt;}
.ws27{word-spacing:-25.406400pt;}
.ws33{word-spacing:-25.402667pt;}
.ws69{word-spacing:-24.768000pt;}
.ws9b{word-spacing:-24.762667pt;}
.ws9c{word-spacing:-24.495200pt;}
.ws2d{word-spacing:-24.318400pt;}
.ws6c{word-spacing:-24.187200pt;}
.ws3b{word-spacing:-24.131733pt;}
.ws65{word-spacing:-23.488000pt;}
.wsae{word-spacing:-23.161600pt;}
.ws86{word-spacing:-22.849333pt;}
.ws17{word-spacing:-22.208000pt;}
.ws16{word-spacing:-21.760000pt;}
.ws8b{word-spacing:-21.296000pt;}
.ws3f{word-spacing:-21.246400pt;}
.ws1d{word-spacing:-21.115733pt;}
.ws92{word-spacing:-20.920800pt;}
.wsa8{word-spacing:-20.601067pt;}
.ws2f{word-spacing:-20.591200pt;}
.ws11{word-spacing:-20.472000pt;}
.ws72{word-spacing:-20.293333pt;}
.wsab{word-spacing:-20.212000pt;}
.wsb0{word-spacing:-19.968000pt;}
.ws7e{word-spacing:-19.953600pt;}
.ws4a{word-spacing:-19.382400pt;}
.ws6e{word-spacing:-19.314400pt;}
.wsc2{word-spacing:-19.008000pt;}
.ws58{word-spacing:-18.741600pt;}
.ws87{word-spacing:-18.676800pt;}
.ws96{word-spacing:-18.558400pt;}
.ws85{word-spacing:-18.368000pt;}
.ws91{word-spacing:-18.349600pt;}
.ws19{word-spacing:-18.051733pt;}
.ws18{word-spacing:-17.728000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws70{word-spacing:-16.114400pt;}
.ws4e{word-spacing:-15.998400pt;}
.ws10{word-spacing:-15.806400pt;}
.ws84{word-spacing:-15.732267pt;}
.ws3e{word-spacing:-15.533600pt;}
.wsa6{word-spacing:-15.097600pt;}
.ws48{word-spacing:-14.207733pt;}
.ws90{word-spacing:-14.059200pt;}
.ws93{word-spacing:-13.233600pt;}
.ws59{word-spacing:-12.599200pt;}
.wsa3{word-spacing:-11.764800pt;}
.ws82{word-spacing:-11.699200pt;}
.ws31{word-spacing:-11.328000pt;}
.ws78{word-spacing:-11.006400pt;}
.ws44{word-spacing:-10.686400pt;}
.ws34{word-spacing:-10.678400pt;}
.wsa7{word-spacing:-10.231200pt;}
.ws56{word-spacing:-10.173333pt;}
.ws38{word-spacing:-10.102400pt;}
.wsaa{word-spacing:-9.849600pt;}
.ws39{word-spacing:-9.842400pt;}
.wsc5{word-spacing:-9.402667pt;}
.wsb2{word-spacing:-9.088000pt;}
.ws20{word-spacing:-9.076800pt;}
.wsaf{word-spacing:-8.951200pt;}
.wsc4{word-spacing:-8.768000pt;}
.ws5b{word-spacing:-8.453333pt;}
.ws24{word-spacing:-8.052000pt;}
.ws3d{word-spacing:-7.168000pt;}
.ws53{word-spacing:-6.380800pt;}
.ws4f{word-spacing:-6.331200pt;}
.wsa1{word-spacing:-6.208000pt;}
.ws22{word-spacing:-6.196800pt;}
.wsa9{word-spacing:-5.881600pt;}
.ws49{word-spacing:-4.084000pt;}
.wsb9{word-spacing:-3.653333pt;}
.wsba{word-spacing:-3.644000pt;}
.ws94{word-spacing:-3.377600pt;}
.wsb4{word-spacing:-3.314400pt;}
.ws1f{word-spacing:-3.200000pt;}
.ws54{word-spacing:-3.198933pt;}
.ws9e{word-spacing:-2.552800pt;}
.ws23{word-spacing:-1.919733pt;}
.wsb8{word-spacing:-1.088000pt;}
.ws4c{word-spacing:-0.192000pt;}
.ws37{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.002667pt;}
.ws2b{word-spacing:0.660000pt;}
.ws42{word-spacing:0.836800pt;}
.wsbd{word-spacing:1.157600pt;}
.wsb6{word-spacing:1.294400pt;}
.wsb5{word-spacing:1.472000pt;}
.ws99{word-spacing:1.480000pt;}
.wsa4{word-spacing:2.572000pt;}
.wsa5{word-spacing:2.960000pt;}
.ws8a{word-spacing:3.019200pt;}
.ws1b{word-spacing:3.392000pt;}
.ws9f{word-spacing:4.995467pt;}
.ws21{word-spacing:5.317867pt;}
.ws1c{word-spacing:5.321867pt;}
.ws28{word-spacing:5.654133pt;}
.wsa0{word-spacing:5.761600pt;}
.ws6f{word-spacing:6.406400pt;}
.ws12{word-spacing:6.912000pt;}
.ws57{word-spacing:7.233600pt;}
.wsc6{word-spacing:7.872000pt;}
.ws52{word-spacing:9.036267pt;}
.wsf{word-spacing:9.601067pt;}
.wse{word-spacing:9.786667pt;}
.ws88{word-spacing:10.256000pt;}
.wsb7{word-spacing:10.258933pt;}
.ws3a{word-spacing:13.648533pt;}
.ws63{word-spacing:14.089600pt;}
.ws89{word-spacing:15.372800pt;}
.ws26{word-spacing:16.016000pt;}
.ws41{word-spacing:19.021600pt;}
.ws98{word-spacing:19.077867pt;}
.ws9a{word-spacing:19.392000pt;}
.ws66{word-spacing:20.672000pt;}
.ws8c{word-spacing:21.952000pt;}
.ws25{word-spacing:21.970400pt;}
.wsb1{word-spacing:22.791467pt;}
.wsbf{word-spacing:24.404000pt;}
.ws43{word-spacing:25.872800pt;}
.ws61{word-spacing:33.472000pt;}
.ws83{word-spacing:33.920000pt;}
.ws40{word-spacing:36.748000pt;}
.ws77{word-spacing:67.857333pt;}
.ws5f{word-spacing:88.587200pt;}
.ws7f{word-spacing:90.632800pt;}
.ws7a{word-spacing:98.953600pt;}
.ws68{word-spacing:115.726400pt;}
.ws7c{word-spacing:144.211733pt;}
.ws60{word-spacing:145.800000pt;}
.ws80{word-spacing:200.970133pt;}
.ws7d{word-spacing:215.872000pt;}
.ws5e{word-spacing:317.058400pt;}
.ws1{word-spacing:404.526933pt;}
._1e{margin-left:-2.098667pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._26{width:18.081600pt;}
._1c{width:19.211467pt;}
._9{width:20.442667pt;}
._e{width:21.875200pt;}
._29{width:23.357600pt;}
._1a{width:24.254133pt;}
._17{width:25.788800pt;}
._19{width:26.834133pt;}
._28{width:27.853600pt;}
._a{width:28.745600pt;}
._7{width:30.384000pt;}
._1{width:32.000000pt;}
._b{width:33.150400pt;}
._6{width:35.006400pt;}
._22{width:36.430667pt;}
._24{width:38.022133pt;}
._2a{width:39.288533pt;}
._1b{width:40.561067pt;}
._10{width:41.630400pt;}
._14{width:42.926667pt;}
._11{width:44.457600pt;}
._f{width:47.488000pt;}
._12{width:49.038400pt;}
._13{width:50.091733pt;}
._18{width:52.204000pt;}
._c{width:54.188800pt;}
._d{width:56.123200pt;}
._8{width:57.560533pt;}
._23{width:58.590400pt;}
._5{width:60.798933pt;}
._27{width:61.851733pt;}
._1d{width:65.327467pt;}
._16{width:66.654933pt;}
._20{width:70.099200pt;}
._15{width:73.020533pt;}
._2b{width:75.169600pt;}
._21{width:76.783200pt;}
._25{width:84.617600pt;}
._1f{width:87.926933pt;}
._2c{width:140.800000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6a{bottom:4.400000pt;}
.y64{bottom:4.454667pt;}
.y61{bottom:5.066667pt;}
.y81{bottom:5.080000pt;}
.y58{bottom:5.121333pt;}
.y75{bottom:5.133333pt;}
.y68{bottom:5.173333pt;}
.y5c{bottom:5.174667pt;}
.y79{bottom:5.188000pt;}
.y89{bottom:5.866667pt;}
.y66{bottom:14.293333pt;}
.y62{bottom:14.346667pt;}
.y83{bottom:14.360000pt;}
.y56{bottom:14.400000pt;}
.y5e{bottom:14.454667pt;}
.y7b{bottom:14.466667pt;}
.y86{bottom:15.146667pt;}
.y67{bottom:23.413333pt;}
.y60{bottom:23.466667pt;}
.y80{bottom:23.480000pt;}
.y57{bottom:23.521333pt;}
.y5b{bottom:23.574667pt;}
.y77{bottom:23.588000pt;}
.y87{bottom:24.266667pt;}
.y5d{bottom:32.693333pt;}
.y7a{bottom:32.708000pt;}
.y7d{bottom:32.760000pt;}
.y85{bottom:33.546667pt;}
.y5a{bottom:41.813333pt;}
.y78{bottom:41.826667pt;}
.y7f{bottom:41.880000pt;}
.y88{bottom:42.666667pt;}
.y82{bottom:51.160000pt;}
.y7e{bottom:60.280000pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y32{bottom:90.466667pt;}
.yb0{bottom:91.426667pt;}
.y9c{bottom:91.908000pt;}
.y63{bottom:104.733333pt;}
.y31{bottom:108.866667pt;}
.yaf{bottom:109.826667pt;}
.y9b{bottom:110.308000pt;}
.y30{bottom:127.266667pt;}
.y5f{bottom:127.800000pt;}
.y9a{bottom:128.708000pt;}
.y2f{bottom:145.666667pt;}
.yae{bottom:146.946667pt;}
.y99{bottom:147.108000pt;}
.y2e{bottom:164.066667pt;}
.y98{bottom:165.508000pt;}
.y59{bottom:169.933333pt;}
.y2d{bottom:182.466667pt;}
.y97{bottom:183.908000pt;}
.y2c{bottom:200.866667pt;}
.y96{bottom:202.308000pt;}
.y2b{bottom:219.266667pt;}
.y95{bottom:220.706667pt;}
.y55{bottom:230.466667pt;}
.y2a{bottom:237.666667pt;}
.y94{bottom:239.108000pt;}
.y29{bottom:256.066667pt;}
.yad{bottom:257.508000pt;}
.y28{bottom:274.466667pt;}
.yac{bottom:275.908000pt;}
.y93{bottom:276.226667pt;}
.y27{bottom:292.866667pt;}
.y54{bottom:293.988000pt;}
.yab{bottom:294.308000pt;}
.y92{bottom:294.626667pt;}
.y26{bottom:311.266667pt;}
.y53{bottom:312.388000pt;}
.yaa{bottom:312.706667pt;}
.y91{bottom:313.026667pt;}
.y25{bottom:329.666667pt;}
.ya9{bottom:331.108000pt;}
.y90{bottom:331.426667pt;}
.y24{bottom:348.066667pt;}
.y52{bottom:349.508000pt;}
.y8f{bottom:349.826667pt;}
.y23{bottom:366.466667pt;}
.y51{bottom:367.908000pt;}
.y8e{bottom:368.226667pt;}
.y22{bottom:384.866667pt;}
.y50{bottom:386.308000pt;}
.y8d{bottom:386.626667pt;}
.y21{bottom:403.266667pt;}
.y4f{bottom:404.706667pt;}
.ya8{bottom:404.866667pt;}
.y8c{bottom:405.026667pt;}
.y20{bottom:421.666667pt;}
.y4e{bottom:423.108000pt;}
.ya7{bottom:423.266667pt;}
.y8b{bottom:423.426667pt;}
.y1f{bottom:440.066667pt;}
.y4d{bottom:441.506667pt;}
.ya6{bottom:441.666667pt;}
.y8a{bottom:441.826667pt;}
.y1e{bottom:458.466667pt;}
.y4c{bottom:459.908000pt;}
.ya5{bottom:460.066667pt;}
.y1d{bottom:476.866667pt;}
.y84{bottom:477.400000pt;}
.y4b{bottom:478.308000pt;}
.ya4{bottom:478.466667pt;}
.y1c{bottom:495.266667pt;}
.y4a{bottom:496.708000pt;}
.ya3{bottom:496.866667pt;}
.y1b{bottom:513.666667pt;}
.y49{bottom:515.108000pt;}
.ya2{bottom:515.266667pt;}
.y1a{bottom:532.066667pt;}
.y48{bottom:533.506667pt;}
.ya1{bottom:533.666667pt;}
.y7c{bottom:538.666667pt;}
.y19{bottom:550.466667pt;}
.y47{bottom:551.908000pt;}
.ya0{bottom:552.066667pt;}
.y18{bottom:568.866667pt;}
.y46{bottom:570.308000pt;}
.y9f{bottom:570.466667pt;}
.y17{bottom:587.266667pt;}
.y45{bottom:588.706667pt;}
.y9e{bottom:588.866667pt;}
.y16{bottom:605.666667pt;}
.y9d{bottom:607.266667pt;}
.y76{bottom:617.600000pt;}
.y44{bottom:625.666667pt;}
.y15{bottom:642.788000pt;}
.y43{bottom:644.066667pt;}
.y14{bottom:661.188000pt;}
.y42{bottom:662.466667pt;}
.y74{bottom:678.133333pt;}
.y41{bottom:680.866667pt;}
.y13{bottom:698.308000pt;}
.y40{bottom:699.266667pt;}
.y12{bottom:716.706667pt;}
.y3f{bottom:717.666667pt;}
.y73{bottom:724.546667pt;}
.y11{bottom:735.108000pt;}
.y3e{bottom:736.066667pt;}
.y10{bottom:753.506667pt;}
.y3d{bottom:754.466667pt;}
.y72{bottom:761.666667pt;}
.yf{bottom:771.906667pt;}
.y3c{bottom:772.866667pt;}
.y71{bottom:780.066667pt;}
.ye{bottom:790.306667pt;}
.y3b{bottom:791.266667pt;}
.y70{bottom:798.466667pt;}
.yd{bottom:808.706667pt;}
.y3a{bottom:809.666667pt;}
.y6f{bottom:816.866667pt;}
.y39{bottom:828.066667pt;}
.y6e{bottom:835.266667pt;}
.yc{bottom:845.666667pt;}
.y38{bottom:846.466667pt;}
.y6d{bottom:853.666667pt;}
.y37{bottom:864.866667pt;}
.y6c{bottom:872.066667pt;}
.yb{bottom:882.788000pt;}
.y36{bottom:883.266667pt;}
.y6b{bottom:890.466667pt;}
.y35{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y34{bottom:920.066667pt;}
.y69{bottom:926.066667pt;}
.y33{bottom:938.466667pt;}
.y65{bottom:949.133333pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.ha{height:21.066667pt;}
.hb{height:22.333333pt;}
.h7{height:39.400000pt;}
.h9{height:40.066667pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h6{height:44.437500pt;}
.h2{height:55.343750pt;}
.h8{height:58.466667pt;}
.hd{height:59.200000pt;}
.hc{height:76.866667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w4{width:107.800000pt;}
.w9{width:110.666667pt;}
.w5{width:117.533333pt;}
.w7{width:141.133333pt;}
.w3{width:171.200000pt;}
.wa{width:179.733333pt;}
.w8{width:189.733333pt;}
.w6{width:223.400000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.040000pt;}
.x9{left:112.400000pt;}
.x1{left:113.440000pt;}
.x4{left:132.000000pt;}
.xe{left:254.800000pt;}
.x7{left:273.760000pt;}
.xb{left:285.533333pt;}
.x5{left:358.878667pt;}
.xc{left:395.266667pt;}
.x3{left:414.066667pt;}
.xf{left:446.466667pt;}
.x6{left:470.878667pt;}
.x8{left:475.200000pt;}
.xd{left:514.733333pt;}
.x10{left:559.066667pt;}
.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; }
  