
    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_56fe2c9e276dc13a8c151508.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_46576ef44884f779f0f563cf.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_41d2754d3b6f670ef71ed6ff.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_b66806c5fb0b33ff896dd2b5.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.474000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:11.910000px;}
.ls4{letter-spacing:15.474000px;}
.ls5{letter-spacing:22.686000px;}
.ls0{letter-spacing:193.688100px;}
.ls2{letter-spacing:195.128100px;}
.ls1{letter-spacing:196.568100px;}
.ls7{letter-spacing:386.975400px;}
.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;}
}
.ws52{word-spacing:-55.944000px;}
.ws3b{word-spacing:-38.805900px;}
.ws35{word-spacing:-38.661000px;}
.wsb0{word-spacing:-38.658600px;}
.ws6{word-spacing:-38.657700px;}
.ws16{word-spacing:-38.656800px;}
.wsa1{word-spacing:-38.652000px;}
.ws12{word-spacing:-38.651400px;}
.ws26{word-spacing:-38.649600px;}
.ws5{word-spacing:-38.647800px;}
.ws5f{word-spacing:-38.646900px;}
.wsc8{word-spacing:-38.643300px;}
.ws21{word-spacing:-38.584800px;}
.ws73{word-spacing:-38.448600px;}
.wsb{word-spacing:-38.443200px;}
.ws59{word-spacing:-38.440800px;}
.ws14{word-spacing:-38.437800px;}
.wsbe{word-spacing:-38.435400px;}
.ws18{word-spacing:-38.433600px;}
.ws3{word-spacing:-38.374200px;}
.wsc{word-spacing:-38.370600px;}
.wsa{word-spacing:-38.365200px;}
.ws33{word-spacing:-38.298300px;}
.ws2c{word-spacing:-38.166000px;}
.ws91{word-spacing:-38.160000px;}
.ws2d{word-spacing:-38.158200px;}
.ws5d{word-spacing:-38.156400px;}
.ws27{word-spacing:-38.150400px;}
.ws8a{word-spacing:-38.150100px;}
.ws48{word-spacing:-38.143200px;}
.wsbc{word-spacing:-38.141400px;}
.ws9{word-spacing:-38.077200px;}
.wsbd{word-spacing:-38.075400px;}
.wsc2{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws99{word-spacing:-37.942200px;}
.ws40{word-spacing:-37.941900px;}
.ws23{word-spacing:-37.940400px;}
.ws4{word-spacing:-37.938600px;}
.ws45{word-spacing:-37.935000px;}
.ws64{word-spacing:-37.934100px;}
.ws2{word-spacing:-37.931400px;}
.ws20{word-spacing:-37.868400px;}
.ws2a{word-spacing:-37.865700px;}
.ws36{word-spacing:-37.858500px;}
.ws2b{word-spacing:-37.717200px;}
.ws1e{word-spacing:-37.442400px;}
.ws90{word-spacing:-37.440000px;}
.wsb6{word-spacing:-37.431900px;}
.ws79{word-spacing:-37.431000px;}
.ws28{word-spacing:-36.720000px;}
.ws13{word-spacing:-36.707400px;}
.wsa6{word-spacing:-36.504000px;}
.ws97{word-spacing:-36.493200px;}
.ws56{word-spacing:-36.363600px;}
.wsa4{word-spacing:-35.985000px;}
.ws9d{word-spacing:-35.980200px;}
.ws39{word-spacing:-35.790000px;}
.ws62{word-spacing:-35.766000px;}
.ws7a{word-spacing:-35.280000px;}
.ws7c{word-spacing:-35.277000px;}
.ws43{word-spacing:-35.271000px;}
.ws95{word-spacing:-35.062200px;}
.ws11{word-spacing:-35.059200px;}
.wsc5{word-spacing:-35.050800px;}
.wsb4{word-spacing:-34.551000px;}
.wsa7{word-spacing:-34.541400px;}
.ws22{word-spacing:-33.840000px;}
.wsb2{word-spacing:-33.831900px;}
.ws44{word-spacing:-33.831000px;}
.ws94{word-spacing:-33.624000px;}
.ws1a{word-spacing:-33.620400px;}
.ws8c{word-spacing:-33.617400px;}
.ws46{word-spacing:-33.609600px;}
.ws87{word-spacing:-33.606000px;}
.ws8{word-spacing:-33.547800px;}
.ws67{word-spacing:-33.399900px;}
.ws86{word-spacing:-33.381000px;}
.ws34{word-spacing:-33.324300px;}
.ws69{word-spacing:-33.106800px;}
.ws5c{word-spacing:-32.910000px;}
.ws84{word-spacing:-32.895000px;}
.ws17{word-spacing:-32.892300px;}
.ws6a{word-spacing:-32.884200px;}
.ws88{word-spacing:-32.392800px;}
.ws4d{word-spacing:-32.391000px;}
.ws80{word-spacing:-32.188200px;}
.ws2e{word-spacing:-32.182200px;}
.ws57{word-spacing:-32.179500px;}
.ws96{word-spacing:-32.178600px;}
.ws55{word-spacing:-32.175000px;}
.ws1d{word-spacing:-31.680000px;}
.ws74{word-spacing:-31.678800px;}
.ws81{word-spacing:-31.669200px;}
.ws7d{word-spacing:-30.960000px;}
.ws7e{word-spacing:-30.957000px;}
.ws1c{word-spacing:-30.949800px;}
.wsaa{word-spacing:-30.742800px;}
.ws8e{word-spacing:-30.738300px;}
.ws8f{word-spacing:-30.522600px;}
.ws25{word-spacing:-30.240000px;}
.ws1b{word-spacing:-30.232800px;}
.ws51{word-spacing:-30.016800px;}
.wsc6{word-spacing:-30.015000px;}
.ws72{word-spacing:-29.795400px;}
.wsad{word-spacing:-29.290800px;}
.wsb7{word-spacing:-29.077200px;}
.ws4b{word-spacing:-29.070000px;}
.wsac{word-spacing:-28.800000px;}
.ws8b{word-spacing:-28.581000px;}
.wsa8{word-spacing:-28.566900px;}
.ws9f{word-spacing:-28.076400px;}
.wsa0{word-spacing:-28.067400px;}
.ws89{word-spacing:-27.857700px;}
.wsc1{word-spacing:-27.636300px;}
.ws19{word-spacing:-27.360000px;}
.wsb1{word-spacing:-27.135000px;}
.ws9a{word-spacing:-26.548800px;}
.ws9b{word-spacing:-26.416500px;}
.ws77{word-spacing:-26.384700px;}
.ws10{word-spacing:-26.200800px;}
.ws24{word-spacing:-25.920000px;}
.ws83{word-spacing:-25.913400px;}
.wsa9{word-spacing:-25.482600px;}
.ws5a{word-spacing:-25.200000px;}
.ws47{word-spacing:-24.970800px;}
.ws49{word-spacing:-24.480000px;}
.ws76{word-spacing:-24.009300px;}
.ws3c{word-spacing:-23.760000px;}
.wsbb{word-spacing:-23.746200px;}
.ws3d{word-spacing:-23.544000px;}
.ws41{word-spacing:-23.040000px;}
.ws42{word-spacing:-22.824000px;}
.ws78{word-spacing:-22.820100px;}
.ws29{word-spacing:-22.750800px;}
.wsb9{word-spacing:-22.609500px;}
.wsd{word-spacing:-22.301100px;}
.ws6c{word-spacing:-22.108200px;}
.wse{word-spacing:-22.098300px;}
.wsb8{word-spacing:-22.094100px;}
.ws6f{word-spacing:-22.091400px;}
.ws31{word-spacing:-22.083600px;}
.ws85{word-spacing:-20.883600px;}
.ws7b{word-spacing:-20.659200px;}
.ws53{word-spacing:-20.655000px;}
.ws4a{word-spacing:-20.647800px;}
.wsb5{word-spacing:-19.939200px;}
.ws9e{word-spacing:-19.936800px;}
.ws8d{word-spacing:-19.931400px;}
.wsba{word-spacing:-19.729500px;}
.ws63{word-spacing:-19.216800px;}
.wsf{word-spacing:-19.215000px;}
.ws75{word-spacing:-19.213200px;}
.ws92{word-spacing:-19.209600px;}
.ws61{word-spacing:-19.000800px;}
.ws6e{word-spacing:-18.502800px;}
.ws7{word-spacing:-18.472500px;}
.ws4e{word-spacing:-18.286800px;}
.ws5e{word-spacing:-17.784000px;}
.ws3a{word-spacing:-17.700300px;}
.ws82{word-spacing:-17.056800px;}
.wsa5{word-spacing:-16.839600px;}
.ws71{word-spacing:-16.549200px;}
.wsab{word-spacing:-15.840000px;}
.ws32{word-spacing:-15.249600px;}
.ws66{word-spacing:-14.904000px;}
.ws1f{word-spacing:-14.900400px;}
.ws58{word-spacing:-14.889600px;}
.ws6b{word-spacing:-14.679000px;}
.ws68{word-spacing:-14.406000px;}
.wsb3{word-spacing:-14.391000px;}
.ws9c{word-spacing:-13.680000px;}
.ws70{word-spacing:-13.462200px;}
.ws38{word-spacing:-13.103700px;}
.ws5b{word-spacing:-12.744000px;}
.ws4c{word-spacing:-11.997000px;}
.ws3e{word-spacing:-11.507400px;}
.ws3f{word-spacing:-11.301000px;}
.wsbf{word-spacing:-11.285100px;}
.wsae{word-spacing:-10.800000px;}
.ws15{word-spacing:-10.581000px;}
.wsaf{word-spacing:-10.058400px;}
.ws54{word-spacing:-9.859200px;}
.ws98{word-spacing:-9.144000px;}
.ws93{word-spacing:-9.139200px;}
.ws30{word-spacing:-8.424000px;}
.ws50{word-spacing:-6.245400px;}
.ws65{word-spacing:-5.323200px;}
.ws37{word-spacing:-4.442400px;}
.ws7f{word-spacing:-4.312800px;}
.wsa3{word-spacing:-2.154600px;}
.ws2f{word-spacing:0.000000px;}
.ws60{word-spacing:3.830400px;}
.ws6d{word-spacing:8.148600px;}
.ws4f{word-spacing:10.299900px;}
.wsc0{word-spacing:140.945700px;}
.wsc4{word-spacing:142.385700px;}
.wsc7{word-spacing:143.819700px;}
.wsc9{word-spacing:148.145700px;}
.wsc3{word-spacing:149.585700px;}
.wsa2{word-spacing:293.788800px;}
.ws1{word-spacing:455.092800px;}
._17{margin-left:-2.359200px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._1d{width:2.806800px;}
._21{width:12.405000px;}
._4{width:18.775800px;}
._6{width:19.827600px;}
._7{width:21.119400px;}
._15{width:22.134000px;}
._c{width:23.394900px;}
._a{width:24.396300px;}
._e{width:25.549800px;}
._d{width:27.483600px;}
._18{width:28.604400px;}
._b{width:29.841600px;}
._10{width:31.176000px;}
._16{width:33.228000px;}
._11{width:34.477200px;}
._1{width:36.000000px;}
._22{width:37.154400px;}
._5{width:38.410200px;}
._19{width:39.549600px;}
._20{width:40.708800px;}
._f{width:42.682800px;}
._14{width:43.936200px;}
._1c{width:45.298800px;}
._9{width:46.791000px;}
._8{width:47.956800px;}
._1b{width:51.061200px;}
._13{width:52.560000px;}
._12{width:53.757600px;}
._23{width:54.904800px;}
._1e{width:60.897600px;}
._1f{width:65.143200px;}
._1a{width:67.380300px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.900000px;}
.fs3{font-size:46.800000px;}
.fs5{font-size:48.300000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2d{bottom:101.775000px;}
.y4f{bottom:109.875000px;}
.y97{bottom:120.315000px;}
.y2c{bottom:122.475000px;}
.y74{bottom:124.275000px;}
.y4e{bottom:130.575000px;}
.y4d{bottom:151.275000px;}
.y73{bottom:163.696500px;}
.y2b{bottom:164.236500px;}
.y4c{bottom:171.975000px;}
.ybe{bottom:179.175000px;}
.y72{bottom:184.396500px;}
.y2a{bottom:184.936500px;}
.y4b{bottom:192.675000px;}
.y96{bottom:203.115000px;}
.y29{bottom:205.636500px;}
.y4a{bottom:213.375000px;}
.ybd{bottom:220.755000px;}
.y71{bottom:225.975000px;}
.y28{bottom:226.336500px;}
.y49{bottom:234.075000px;}
.y70{bottom:246.675000px;}
.y27{bottom:247.036500px;}
.ybc{bottom:262.515000px;}
.y6f{bottom:267.375000px;}
.y95{bottom:267.736500px;}
.y26{bottom:270.436500px;}
.y48{bottom:275.836500px;}
.y6e{bottom:288.075000px;}
.y94{bottom:288.436500px;}
.y25{bottom:291.136500px;}
.y47{bottom:296.536500px;}
.ybb{bottom:304.275000px;}
.y6d{bottom:308.775000px;}
.y24{bottom:314.715000px;}
.yba{bottom:324.975000px;}
.y6c{bottom:329.475000px;}
.y93{bottom:330.196500px;}
.y23{bottom:335.415000px;}
.y46{bottom:338.115000px;}
.yb9{bottom:345.675000px;}
.y6b{bottom:350.175000px;}
.y92{bottom:350.896500px;}
.y22{bottom:358.815000px;}
.yb8{bottom:366.375000px;}
.y6a{bottom:370.875000px;}
.y91{bottom:371.596500px;}
.y21{bottom:379.515000px;}
.yb7{bottom:387.075000px;}
.y69{bottom:391.575000px;}
.y90{bottom:392.295000px;}
.y45{bottom:400.575000px;}
.yb6{bottom:407.775000px;}
.y44{bottom:421.275000px;}
.y20{bottom:423.975000px;}
.yb5{bottom:428.295000px;}
.y68{bottom:433.336500px;}
.y8f{bottom:433.875000px;}
.y1f{bottom:444.675000px;}
.y67{bottom:454.036500px;}
.y8e{bottom:454.575000px;}
.y43{bottom:463.036500px;}
.y1e{bottom:465.375000px;}
.yb4{bottom:470.055000px;}
.y66{bottom:474.736500px;}
.y8d{bottom:475.275000px;}
.y42{bottom:483.736500px;}
.y1d{bottom:486.075000px;}
.yb3{bottom:490.755000px;}
.y65{bottom:495.436500px;}
.y8c{bottom:495.975000px;}
.y1c{bottom:506.775000px;}
.yb2{bottom:511.455000px;}
.y64{bottom:516.136500px;}
.yb1{bottom:532.155000px;}
.y8b{bottom:537.736500px;}
.y1b{bottom:548.536500px;}
.yb0{bottom:552.855000px;}
.y63{bottom:557.896500px;}
.y8a{bottom:558.436500px;}
.y41{bottom:567.075000px;}
.y1a{bottom:569.236500px;}
.y62{bottom:578.596500px;}
.y89{bottom:579.136500px;}
.y19{bottom:589.936500px;}
.yaf{bottom:594.615000px;}
.y61{bottom:599.295000px;}
.y88{bottom:599.836500px;}
.y40{bottom:608.836500px;}
.y18{bottom:610.636500px;}
.yae{bottom:615.315000px;}
.y60{bottom:619.996500px;}
.y87{bottom:620.536500px;}
.y3f{bottom:629.536500px;}
.y17{bottom:634.215000px;}
.yad{bottom:636.015000px;}
.y5f{bottom:640.695000px;}
.y86{bottom:641.236500px;}
.y16{bottom:654.915000px;}
.yac{bottom:656.715000px;}
.y5e{bottom:661.396500px;}
.y85{bottom:661.936500px;}
.y3e{bottom:671.115000px;}
.y15{bottom:678.315000px;}
.y5d{bottom:682.096500px;}
.y3d{bottom:691.815000px;}
.yab{bottom:698.295000px;}
.y14{bottom:699.015000px;}
.y84{bottom:703.695000px;}
.yaa{bottom:718.996500px;}
.y5c{bottom:723.675000px;}
.y83{bottom:724.396500px;}
.y3c{bottom:733.575000px;}
.ya9{bottom:739.695000px;}
.y13{bottom:743.475000px;}
.y5b{bottom:744.375000px;}
.y82{bottom:745.096500px;}
.y3b{bottom:754.275000px;}
.ya8{bottom:760.395000px;}
.y12{bottom:764.175000px;}
.y5a{bottom:765.075000px;}
.y81{bottom:765.795000px;}
.ya7{bottom:781.096500px;}
.y59{bottom:785.775000px;}
.y80{bottom:786.496500px;}
.y3a{bottom:795.855000px;}
.ya6{bottom:801.795000px;}
.y11{bottom:805.936500px;}
.y58{bottom:806.475000px;}
.y39{bottom:816.555000px;}
.ya5{bottom:822.496500px;}
.y10{bottom:826.636500px;}
.y7f{bottom:828.075000px;}
.y38{bottom:837.255000px;}
.ya4{bottom:843.195000px;}
.yf{bottom:847.336500px;}
.y57{bottom:848.236500px;}
.y7e{bottom:848.775000px;}
.yc0{bottom:855.255000px;}
.y37{bottom:857.955000px;}
.ya3{bottom:863.895000px;}
.ye{bottom:868.036500px;}
.y56{bottom:868.936500px;}
.y7d{bottom:869.475000px;}
.y36{bottom:878.836500px;}
.ya2{bottom:884.595000px;}
.yd{bottom:888.736500px;}
.y55{bottom:889.636500px;}
.y7c{bottom:890.175000px;}
.y35{bottom:902.236500px;}
.ya1{bottom:905.295000px;}
.y54{bottom:910.336500px;}
.y7b{bottom:910.875000px;}
.y34{bottom:922.936500px;}
.ya0{bottom:925.995000px;}
.yc{bottom:930.495000px;}
.y53{bottom:931.036500px;}
.y7a{bottom:931.575000px;}
.ybf{bottom:943.636500px;}
.y33{bottom:946.515000px;}
.y9f{bottom:946.695000px;}
.y79{bottom:952.275000px;}
.y32{bottom:967.215000px;}
.y9e{bottom:967.395000px;}
.yb{bottom:972.075000px;}
.y52{bottom:972.795000px;}
.y78{bottom:972.975000px;}
.y31{bottom:990.615000px;}
.y9d{bottom:990.975000px;}
.y51{bottom:993.495000px;}
.y77{bottom:993.675000px;}
.y30{bottom:1011.315000px;}
.y9c{bottom:1011.675000px;}
.ya{bottom:1013.836500px;}
.y50{bottom:1014.195000px;}
.y76{bottom:1014.375000px;}
.y9b{bottom:1032.375000px;}
.y75{bottom:1035.075000px;}
.y9a{bottom:1053.075000px;}
.y9{bottom:1055.595000px;}
.y2f{bottom:1055.775000px;}
.y99{bottom:1073.775000px;}
.y2e{bottom:1076.475000px;}
.y98{bottom:1094.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h9{height:21.470068px;}
.ha{height:33.560010px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h8{height:56.271773px;}
.h7{height:56.991773px;}
.h6{height:58.573682px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:227.338500px;}
.x3{left:461.625000px;}
.x6{left:491.760000px;}
.x8{left:543.238500px;}
.x7{left:560.160000px;}
.x5{left:582.120000px;}
.x2{left:731.160000px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.754667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:10.586667pt;}
.ls4{letter-spacing:13.754667pt;}
.ls5{letter-spacing:20.165333pt;}
.ls0{letter-spacing:172.167200pt;}
.ls2{letter-spacing:173.447200pt;}
.ls1{letter-spacing:174.727200pt;}
.ls7{letter-spacing:343.978133pt;}
.ws52{word-spacing:-49.728000pt;}
.ws3b{word-spacing:-34.494133pt;}
.ws35{word-spacing:-34.365333pt;}
.wsb0{word-spacing:-34.363200pt;}
.ws6{word-spacing:-34.362400pt;}
.ws16{word-spacing:-34.361600pt;}
.wsa1{word-spacing:-34.357333pt;}
.ws12{word-spacing:-34.356800pt;}
.ws26{word-spacing:-34.355200pt;}
.ws5{word-spacing:-34.353600pt;}
.ws5f{word-spacing:-34.352800pt;}
.wsc8{word-spacing:-34.349600pt;}
.ws21{word-spacing:-34.297600pt;}
.ws73{word-spacing:-34.176533pt;}
.wsb{word-spacing:-34.171733pt;}
.ws59{word-spacing:-34.169600pt;}
.ws14{word-spacing:-34.166933pt;}
.wsbe{word-spacing:-34.164800pt;}
.ws18{word-spacing:-34.163200pt;}
.ws3{word-spacing:-34.110400pt;}
.wsc{word-spacing:-34.107200pt;}
.wsa{word-spacing:-34.102400pt;}
.ws33{word-spacing:-34.042933pt;}
.ws2c{word-spacing:-33.925333pt;}
.ws91{word-spacing:-33.920000pt;}
.ws2d{word-spacing:-33.918400pt;}
.ws5d{word-spacing:-33.916800pt;}
.ws27{word-spacing:-33.911467pt;}
.ws8a{word-spacing:-33.911200pt;}
.ws48{word-spacing:-33.905067pt;}
.wsbc{word-spacing:-33.903467pt;}
.ws9{word-spacing:-33.846400pt;}
.wsbd{word-spacing:-33.844800pt;}
.wsc2{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws99{word-spacing:-33.726400pt;}
.ws40{word-spacing:-33.726133pt;}
.ws23{word-spacing:-33.724800pt;}
.ws4{word-spacing:-33.723200pt;}
.ws45{word-spacing:-33.720000pt;}
.ws64{word-spacing:-33.719200pt;}
.ws2{word-spacing:-33.716800pt;}
.ws20{word-spacing:-33.660800pt;}
.ws2a{word-spacing:-33.658400pt;}
.ws36{word-spacing:-33.652000pt;}
.ws2b{word-spacing:-33.526400pt;}
.ws1e{word-spacing:-33.282133pt;}
.ws90{word-spacing:-33.280000pt;}
.wsb6{word-spacing:-33.272800pt;}
.ws79{word-spacing:-33.272000pt;}
.ws28{word-spacing:-32.640000pt;}
.ws13{word-spacing:-32.628800pt;}
.wsa6{word-spacing:-32.448000pt;}
.ws97{word-spacing:-32.438400pt;}
.ws56{word-spacing:-32.323200pt;}
.wsa4{word-spacing:-31.986667pt;}
.ws9d{word-spacing:-31.982400pt;}
.ws39{word-spacing:-31.813333pt;}
.ws62{word-spacing:-31.792000pt;}
.ws7a{word-spacing:-31.360000pt;}
.ws7c{word-spacing:-31.357333pt;}
.ws43{word-spacing:-31.352000pt;}
.ws95{word-spacing:-31.166400pt;}
.ws11{word-spacing:-31.163733pt;}
.wsc5{word-spacing:-31.156267pt;}
.wsb4{word-spacing:-30.712000pt;}
.wsa7{word-spacing:-30.703467pt;}
.ws22{word-spacing:-30.080000pt;}
.wsb2{word-spacing:-30.072800pt;}
.ws44{word-spacing:-30.072000pt;}
.ws94{word-spacing:-29.888000pt;}
.ws1a{word-spacing:-29.884800pt;}
.ws8c{word-spacing:-29.882133pt;}
.ws46{word-spacing:-29.875200pt;}
.ws87{word-spacing:-29.872000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws67{word-spacing:-29.688800pt;}
.ws86{word-spacing:-29.672000pt;}
.ws34{word-spacing:-29.621600pt;}
.ws69{word-spacing:-29.428267pt;}
.ws5c{word-spacing:-29.253333pt;}
.ws84{word-spacing:-29.240000pt;}
.ws17{word-spacing:-29.237600pt;}
.ws6a{word-spacing:-29.230400pt;}
.ws88{word-spacing:-28.793600pt;}
.ws4d{word-spacing:-28.792000pt;}
.ws80{word-spacing:-28.611733pt;}
.ws2e{word-spacing:-28.606400pt;}
.ws57{word-spacing:-28.604000pt;}
.ws96{word-spacing:-28.603200pt;}
.ws55{word-spacing:-28.600000pt;}
.ws1d{word-spacing:-28.160000pt;}
.ws74{word-spacing:-28.158933pt;}
.ws81{word-spacing:-28.150400pt;}
.ws7d{word-spacing:-27.520000pt;}
.ws7e{word-spacing:-27.517333pt;}
.ws1c{word-spacing:-27.510933pt;}
.wsaa{word-spacing:-27.326933pt;}
.ws8e{word-spacing:-27.322933pt;}
.ws8f{word-spacing:-27.131200pt;}
.ws25{word-spacing:-26.880000pt;}
.ws1b{word-spacing:-26.873600pt;}
.ws51{word-spacing:-26.681600pt;}
.wsc6{word-spacing:-26.680000pt;}
.ws72{word-spacing:-26.484800pt;}
.wsad{word-spacing:-26.036267pt;}
.wsb7{word-spacing:-25.846400pt;}
.ws4b{word-spacing:-25.840000pt;}
.wsac{word-spacing:-25.600000pt;}
.ws8b{word-spacing:-25.405333pt;}
.wsa8{word-spacing:-25.392800pt;}
.ws9f{word-spacing:-24.956800pt;}
.wsa0{word-spacing:-24.948800pt;}
.ws89{word-spacing:-24.762400pt;}
.wsc1{word-spacing:-24.565600pt;}
.ws19{word-spacing:-24.320000pt;}
.wsb1{word-spacing:-24.120000pt;}
.ws9a{word-spacing:-23.598933pt;}
.ws9b{word-spacing:-23.481333pt;}
.ws77{word-spacing:-23.453067pt;}
.ws10{word-spacing:-23.289600pt;}
.ws24{word-spacing:-23.040000pt;}
.ws83{word-spacing:-23.034133pt;}
.wsa9{word-spacing:-22.651200pt;}
.ws5a{word-spacing:-22.400000pt;}
.ws47{word-spacing:-22.196267pt;}
.ws49{word-spacing:-21.760000pt;}
.ws76{word-spacing:-21.341600pt;}
.ws3c{word-spacing:-21.120000pt;}
.wsbb{word-spacing:-21.107733pt;}
.ws3d{word-spacing:-20.928000pt;}
.ws41{word-spacing:-20.480000pt;}
.ws42{word-spacing:-20.288000pt;}
.ws78{word-spacing:-20.284533pt;}
.ws29{word-spacing:-20.222933pt;}
.wsb9{word-spacing:-20.097333pt;}
.wsd{word-spacing:-19.823200pt;}
.ws6c{word-spacing:-19.651733pt;}
.wse{word-spacing:-19.642933pt;}
.wsb8{word-spacing:-19.639200pt;}
.ws6f{word-spacing:-19.636800pt;}
.ws31{word-spacing:-19.629867pt;}
.ws85{word-spacing:-18.563200pt;}
.ws7b{word-spacing:-18.363733pt;}
.ws53{word-spacing:-18.360000pt;}
.ws4a{word-spacing:-18.353600pt;}
.wsb5{word-spacing:-17.723733pt;}
.ws9e{word-spacing:-17.721600pt;}
.ws8d{word-spacing:-17.716800pt;}
.wsba{word-spacing:-17.537333pt;}
.ws63{word-spacing:-17.081600pt;}
.wsf{word-spacing:-17.080000pt;}
.ws75{word-spacing:-17.078400pt;}
.ws92{word-spacing:-17.075200pt;}
.ws61{word-spacing:-16.889600pt;}
.ws6e{word-spacing:-16.446933pt;}
.ws7{word-spacing:-16.420000pt;}
.ws4e{word-spacing:-16.254933pt;}
.ws5e{word-spacing:-15.808000pt;}
.ws3a{word-spacing:-15.733600pt;}
.ws82{word-spacing:-15.161600pt;}
.wsa5{word-spacing:-14.968533pt;}
.ws71{word-spacing:-14.710400pt;}
.wsab{word-spacing:-14.080000pt;}
.ws32{word-spacing:-13.555200pt;}
.ws66{word-spacing:-13.248000pt;}
.ws1f{word-spacing:-13.244800pt;}
.ws58{word-spacing:-13.235200pt;}
.ws6b{word-spacing:-13.048000pt;}
.ws68{word-spacing:-12.805333pt;}
.wsb3{word-spacing:-12.792000pt;}
.ws9c{word-spacing:-12.160000pt;}
.ws70{word-spacing:-11.966400pt;}
.ws38{word-spacing:-11.647733pt;}
.ws5b{word-spacing:-11.328000pt;}
.ws4c{word-spacing:-10.664000pt;}
.ws3e{word-spacing:-10.228800pt;}
.ws3f{word-spacing:-10.045333pt;}
.wsbf{word-spacing:-10.031200pt;}
.wsae{word-spacing:-9.600000pt;}
.ws15{word-spacing:-9.405333pt;}
.wsaf{word-spacing:-8.940800pt;}
.ws54{word-spacing:-8.763733pt;}
.ws98{word-spacing:-8.128000pt;}
.ws93{word-spacing:-8.123733pt;}
.ws30{word-spacing:-7.488000pt;}
.ws50{word-spacing:-5.551467pt;}
.ws65{word-spacing:-4.731733pt;}
.ws37{word-spacing:-3.948800pt;}
.ws7f{word-spacing:-3.833600pt;}
.wsa3{word-spacing:-1.915200pt;}
.ws2f{word-spacing:0.000000pt;}
.ws60{word-spacing:3.404800pt;}
.ws6d{word-spacing:7.243200pt;}
.ws4f{word-spacing:9.155467pt;}
.wsc0{word-spacing:125.285067pt;}
.wsc4{word-spacing:126.565067pt;}
.wsc7{word-spacing:127.839733pt;}
.wsc9{word-spacing:131.685067pt;}
.wsc3{word-spacing:132.965067pt;}
.wsa2{word-spacing:261.145600pt;}
.ws1{word-spacing:404.526933pt;}
._17{margin-left:-2.097067pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._1d{width:2.494933pt;}
._21{width:11.026667pt;}
._4{width:16.689600pt;}
._6{width:17.624533pt;}
._7{width:18.772800pt;}
._15{width:19.674667pt;}
._c{width:20.795467pt;}
._a{width:21.685600pt;}
._e{width:22.710933pt;}
._d{width:24.429867pt;}
._18{width:25.426133pt;}
._b{width:26.525867pt;}
._10{width:27.712000pt;}
._16{width:29.536000pt;}
._11{width:30.646400pt;}
._1{width:32.000000pt;}
._22{width:33.026133pt;}
._5{width:34.142400pt;}
._19{width:35.155200pt;}
._20{width:36.185600pt;}
._f{width:37.940267pt;}
._14{width:39.054400pt;}
._1c{width:40.265600pt;}
._9{width:41.592000pt;}
._8{width:42.628267pt;}
._1b{width:45.387733pt;}
._13{width:46.720000pt;}
._12{width:47.784533pt;}
._23{width:48.804267pt;}
._1e{width:54.131200pt;}
._1f{width:57.905067pt;}
._1a{width:59.893600pt;}
._0{width:544.128000pt;}
.fs4{font-size:27.466667pt;}
.fs3{font-size:41.600000pt;}
.fs5{font-size:42.933333pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2d{bottom:90.466667pt;}
.y4f{bottom:97.666667pt;}
.y97{bottom:106.946667pt;}
.y2c{bottom:108.866667pt;}
.y74{bottom:110.466667pt;}
.y4e{bottom:116.066667pt;}
.y4d{bottom:134.466667pt;}
.y73{bottom:145.508000pt;}
.y2b{bottom:145.988000pt;}
.y4c{bottom:152.866667pt;}
.ybe{bottom:159.266667pt;}
.y72{bottom:163.908000pt;}
.y2a{bottom:164.388000pt;}
.y4b{bottom:171.266667pt;}
.y96{bottom:180.546667pt;}
.y29{bottom:182.788000pt;}
.y4a{bottom:189.666667pt;}
.ybd{bottom:196.226667pt;}
.y71{bottom:200.866667pt;}
.y28{bottom:201.188000pt;}
.y49{bottom:208.066667pt;}
.y70{bottom:219.266667pt;}
.y27{bottom:219.588000pt;}
.ybc{bottom:233.346667pt;}
.y6f{bottom:237.666667pt;}
.y95{bottom:237.988000pt;}
.y26{bottom:240.388000pt;}
.y48{bottom:245.188000pt;}
.y6e{bottom:256.066667pt;}
.y94{bottom:256.388000pt;}
.y25{bottom:258.788000pt;}
.y47{bottom:263.588000pt;}
.ybb{bottom:270.466667pt;}
.y6d{bottom:274.466667pt;}
.y24{bottom:279.746667pt;}
.yba{bottom:288.866667pt;}
.y6c{bottom:292.866667pt;}
.y93{bottom:293.508000pt;}
.y23{bottom:298.146667pt;}
.y46{bottom:300.546667pt;}
.yb9{bottom:307.266667pt;}
.y6b{bottom:311.266667pt;}
.y92{bottom:311.908000pt;}
.y22{bottom:318.946667pt;}
.yb8{bottom:325.666667pt;}
.y6a{bottom:329.666667pt;}
.y91{bottom:330.308000pt;}
.y21{bottom:337.346667pt;}
.yb7{bottom:344.066667pt;}
.y69{bottom:348.066667pt;}
.y90{bottom:348.706667pt;}
.y45{bottom:356.066667pt;}
.yb6{bottom:362.466667pt;}
.y44{bottom:374.466667pt;}
.y20{bottom:376.866667pt;}
.yb5{bottom:380.706667pt;}
.y68{bottom:385.188000pt;}
.y8f{bottom:385.666667pt;}
.y1f{bottom:395.266667pt;}
.y67{bottom:403.588000pt;}
.y8e{bottom:404.066667pt;}
.y43{bottom:411.588000pt;}
.y1e{bottom:413.666667pt;}
.yb4{bottom:417.826667pt;}
.y66{bottom:421.988000pt;}
.y8d{bottom:422.466667pt;}
.y42{bottom:429.988000pt;}
.y1d{bottom:432.066667pt;}
.yb3{bottom:436.226667pt;}
.y65{bottom:440.388000pt;}
.y8c{bottom:440.866667pt;}
.y1c{bottom:450.466667pt;}
.yb2{bottom:454.626667pt;}
.y64{bottom:458.788000pt;}
.yb1{bottom:473.026667pt;}
.y8b{bottom:477.988000pt;}
.y1b{bottom:487.588000pt;}
.yb0{bottom:491.426667pt;}
.y63{bottom:495.908000pt;}
.y8a{bottom:496.388000pt;}
.y41{bottom:504.066667pt;}
.y1a{bottom:505.988000pt;}
.y62{bottom:514.308000pt;}
.y89{bottom:514.788000pt;}
.y19{bottom:524.388000pt;}
.yaf{bottom:528.546667pt;}
.y61{bottom:532.706667pt;}
.y88{bottom:533.188000pt;}
.y40{bottom:541.188000pt;}
.y18{bottom:542.788000pt;}
.yae{bottom:546.946667pt;}
.y60{bottom:551.108000pt;}
.y87{bottom:551.588000pt;}
.y3f{bottom:559.588000pt;}
.y17{bottom:563.746667pt;}
.yad{bottom:565.346667pt;}
.y5f{bottom:569.506667pt;}
.y86{bottom:569.988000pt;}
.y16{bottom:582.146667pt;}
.yac{bottom:583.746667pt;}
.y5e{bottom:587.908000pt;}
.y85{bottom:588.388000pt;}
.y3e{bottom:596.546667pt;}
.y15{bottom:602.946667pt;}
.y5d{bottom:606.308000pt;}
.y3d{bottom:614.946667pt;}
.yab{bottom:620.706667pt;}
.y14{bottom:621.346667pt;}
.y84{bottom:625.506667pt;}
.yaa{bottom:639.108000pt;}
.y5c{bottom:643.266667pt;}
.y83{bottom:643.908000pt;}
.y3c{bottom:652.066667pt;}
.ya9{bottom:657.506667pt;}
.y13{bottom:660.866667pt;}
.y5b{bottom:661.666667pt;}
.y82{bottom:662.308000pt;}
.y3b{bottom:670.466667pt;}
.ya8{bottom:675.906667pt;}
.y12{bottom:679.266667pt;}
.y5a{bottom:680.066667pt;}
.y81{bottom:680.706667pt;}
.ya7{bottom:694.308000pt;}
.y59{bottom:698.466667pt;}
.y80{bottom:699.108000pt;}
.y3a{bottom:707.426667pt;}
.ya6{bottom:712.706667pt;}
.y11{bottom:716.388000pt;}
.y58{bottom:716.866667pt;}
.y39{bottom:725.826667pt;}
.ya5{bottom:731.108000pt;}
.y10{bottom:734.788000pt;}
.y7f{bottom:736.066667pt;}
.y38{bottom:744.226667pt;}
.ya4{bottom:749.506667pt;}
.yf{bottom:753.188000pt;}
.y57{bottom:753.988000pt;}
.y7e{bottom:754.466667pt;}
.yc0{bottom:760.226667pt;}
.y37{bottom:762.626667pt;}
.ya3{bottom:767.906667pt;}
.ye{bottom:771.588000pt;}
.y56{bottom:772.388000pt;}
.y7d{bottom:772.866667pt;}
.y36{bottom:781.188000pt;}
.ya2{bottom:786.306667pt;}
.yd{bottom:789.988000pt;}
.y55{bottom:790.788000pt;}
.y7c{bottom:791.266667pt;}
.y35{bottom:801.988000pt;}
.ya1{bottom:804.706667pt;}
.y54{bottom:809.188000pt;}
.y7b{bottom:809.666667pt;}
.y34{bottom:820.388000pt;}
.ya0{bottom:823.106667pt;}
.yc{bottom:827.106667pt;}
.y53{bottom:827.588000pt;}
.y7a{bottom:828.066667pt;}
.ybf{bottom:838.788000pt;}
.y33{bottom:841.346667pt;}
.y9f{bottom:841.506667pt;}
.y79{bottom:846.466667pt;}
.y32{bottom:859.746667pt;}
.y9e{bottom:859.906667pt;}
.yb{bottom:864.066667pt;}
.y52{bottom:864.706667pt;}
.y78{bottom:864.866667pt;}
.y31{bottom:880.546667pt;}
.y9d{bottom:880.866667pt;}
.y51{bottom:883.106667pt;}
.y77{bottom:883.266667pt;}
.y30{bottom:898.946667pt;}
.y9c{bottom:899.266667pt;}
.ya{bottom:901.188000pt;}
.y50{bottom:901.506667pt;}
.y76{bottom:901.666667pt;}
.y9b{bottom:917.666667pt;}
.y75{bottom:920.066667pt;}
.y9a{bottom:936.066667pt;}
.y9{bottom:938.306667pt;}
.y2f{bottom:938.466667pt;}
.y99{bottom:954.466667pt;}
.y2e{bottom:956.866667pt;}
.y98{bottom:972.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h9{height:19.084505pt;}
.ha{height:29.831120pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h8{height:50.019354pt;}
.h7{height:50.659354pt;}
.h6{height:52.065495pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:202.078667pt;}
.x3{left:410.333333pt;}
.x6{left:437.120000pt;}
.x8{left:482.878667pt;}
.x7{left:497.920000pt;}
.x5{left:517.440000pt;}
.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; }
  