
    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_96622a4f80437f8e1554bae6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_119acb85b712c5f92de643f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_c4ff57292273e7b1dfeee077.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_c566054a350b5c23c6d58132.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.429000;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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.582000px;}
.v2{vertical-align:8.010000px;}
.v1{vertical-align:23.754000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.002106px;}
.lsa{letter-spacing:0.002383px;}
.ls0{letter-spacing:0.003300px;}
.lsb{letter-spacing:0.005780px;}
.lsc{letter-spacing:0.834017px;}
.ls2{letter-spacing:2.964877px;}
.ls8{letter-spacing:2.987675px;}
.ls6{letter-spacing:2.988017px;}
.ls5{letter-spacing:2.988780px;}
.ls7{letter-spacing:2.990725px;}
.ls4{letter-spacing:35.863409px;}
.ls9{letter-spacing:35.869409px;}
.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;}
}
.ws1{word-spacing:-16.438350px;}
.ws6{word-spacing:-14.943900px;}
.ws16{word-spacing:-14.920027px;}
.wsc{word-spacing:-13.449600px;}
.ws22{word-spacing:-11.955150px;}
.ws5{word-spacing:-11.955120px;}
.wsd{word-spacing:-10.759680px;}
.ws62{word-spacing:-2.988780px;}
.ws24{word-spacing:-0.657532px;}
.ws7b{word-spacing:-0.597756px;}
.ws7a{word-spacing:-0.358654px;}
.ws8c{word-spacing:-0.239102px;}
.ws2a{word-spacing:0.000000px;}
.ws25{word-spacing:0.239102px;}
.ws86{word-spacing:0.478205px;}
.ws3e{word-spacing:0.597756px;}
.ws5c{word-spacing:0.777083px;}
.ws40{word-spacing:0.836858px;}
.ws11{word-spacing:1.398758px;}
.ws12{word-spacing:1.506355px;}
.ws3d{word-spacing:1.613941px;}
.ws64{word-spacing:1.673717px;}
.ws8d{word-spacing:1.793268px;}
.ws43{word-spacing:2.032370px;}
.ws61{word-spacing:2.391024px;}
.ws7e{word-spacing:2.450800px;}
.ws33{word-spacing:2.570351px;}
.wsa2{word-spacing:2.582312px;}
.ws80{word-spacing:2.749678px;}
.ws5b{word-spacing:2.809453px;}
.ws31{word-spacing:2.869229px;}
.ws28{word-spacing:2.929004px;}
.ws65{word-spacing:2.988780px;}
.ws5e{word-spacing:3.108331px;}
.ws48{word-spacing:3.168107px;}
.ws7f{word-spacing:3.287658px;}
.ws58{word-spacing:3.347434px;}
.wsa3{word-spacing:3.347442px;}
.ws1c{word-spacing:3.466985px;}
.ws75{word-spacing:3.526760px;}
.ws27{word-spacing:3.586536px;}
.ws3c{word-spacing:3.646312px;}
.wsa8{word-spacing:3.682186px;}
.ws4e{word-spacing:3.706087px;}
.ws66{word-spacing:3.825638px;}
.ws20{word-spacing:3.885414px;}
.ws60{word-spacing:3.945190px;}
.ws32{word-spacing:4.064741px;}
.ws1e{word-spacing:4.124516px;}
.ws55{word-spacing:4.244068px;}
.ws21{word-spacing:4.303843px;}
.ws92{word-spacing:4.303854px;}
.ws6d{word-spacing:4.363619px;}
.wsa1{word-spacing:4.399495px;}
.ws9a{word-spacing:4.447316px;}
.ws44{word-spacing:4.542946px;}
.ws85{word-spacing:4.602721px;}
.ws90{word-spacing:4.782060px;}
.ws13{word-spacing:4.788058px;}
.ws42{word-spacing:4.841824px;}
.ws54{word-spacing:5.080926px;}
.ws56{word-spacing:5.200477px;}
.ws1f{word-spacing:5.260253px;}
.ws5d{word-spacing:5.320028px;}
.ws81{word-spacing:5.379804px;}
.ws14{word-spacing:5.379840px;}
.ws37{word-spacing:5.618906px;}
.wsa7{word-spacing:5.738472px;}
.ws3f{word-spacing:5.798233px;}
.ws70{word-spacing:5.917784px;}
.ws63{word-spacing:5.929754px;}
.ws4{word-spacing:5.977560px;}
.ws91{word-spacing:5.977575px;}
.ws99{word-spacing:6.121037px;}
.ws3b{word-spacing:6.276438px;}
.ws2f{word-spacing:6.336214px;}
.wsb{word-spacing:6.455808px;}
.ws6c{word-spacing:6.515540px;}
.ws3{word-spacing:6.575340px;}
.ws45{word-spacing:6.694867px;}
.wsa4{word-spacing:6.694884px;}
.ws6b{word-spacing:6.754643px;}
.ws35{word-spacing:6.814418px;}
.ws67{word-spacing:6.874194px;}
.ws10{word-spacing:6.886195px;}
.ws57{word-spacing:6.933970px;}
.ws71{word-spacing:6.953538px;}
.ws79{word-spacing:6.993745px;}
.ws9{word-spacing:7.047590px;}
.ws59{word-spacing:7.053521px;}
.ws26{word-spacing:7.292623px;}
.ws8e{word-spacing:7.412193px;}
.ws93{word-spacing:7.460014px;}
.ws87{word-spacing:7.591501px;}
.ws98{word-spacing:7.938220px;}
.ws4f{word-spacing:7.950155px;}
.ws7d{word-spacing:8.009930px;}
.ws82{word-spacing:8.129482px;}
.ws36{word-spacing:8.308808px;}
.ws77{word-spacing:8.368483px;}
.ws1a{word-spacing:8.368584px;}
.ws4b{word-spacing:8.488135px;}
.ws84{word-spacing:8.547911px;}
.ws9f{word-spacing:8.607708px;}
.wsa0{word-spacing:8.655529px;}
.ws53{word-spacing:8.727238px;}
.ws8b{word-spacing:8.906564px;}
.ws89{word-spacing:8.966340px;}
.ws8a{word-spacing:9.026116px;}
.ws2b{word-spacing:9.085891px;}
.ws68{word-spacing:9.145667px;}
.ws4d{word-spacing:9.324994px;}
.ws4c{word-spacing:9.384769px;}
.ws46{word-spacing:9.564096px;}
.ws2e{word-spacing:9.614134px;}
.ws2c{word-spacing:9.623872px;}
.ws6f{word-spacing:9.743423px;}
.ws4a{word-spacing:9.862974px;}
.ws6a{word-spacing:9.982525px;}
.ws29{word-spacing:10.042301px;}
.ws8f{word-spacing:10.137967px;}
.ws1b{word-spacing:10.221628px;}
.ws38{word-spacing:10.400954px;}
.wsa{word-spacing:10.544486px;}
.ws83{word-spacing:10.580281px;}
.ws78{word-spacing:10.640057px;}
.ws50{word-spacing:10.938935px;}
.ws9e{word-spacing:10.950917px;}
.ws88{word-spacing:10.998710px;}
.ws18{word-spacing:11.058486px;}
.ws9b{word-spacing:11.429123px;}
.ws39{word-spacing:11.536691px;}
.wsf{word-spacing:11.566656px;}
.ws47{word-spacing:11.656242px;}
.ws2d{word-spacing:11.716018px;}
.ws49{word-spacing:11.835569px;}
.ws30{word-spacing:11.895344px;}
.ws41{word-spacing:11.955120px;}
.ws1d{word-spacing:12.014896px;}
.ws69{word-spacing:12.134447px;}
.ws6e{word-spacing:12.194222px;}
.ws34{word-spacing:12.253998px;}
.ws74{word-spacing:12.433325px;}
.ws23{word-spacing:12.493100px;}
.ws5f{word-spacing:12.612652px;}
.ws96{word-spacing:12.781875px;}
.ws97{word-spacing:12.815921px;}
.ws3a{word-spacing:13.509286px;}
.ws51{word-spacing:13.569061px;}
.ws9d{word-spacing:13.676692px;}
.ws9c{word-spacing:13.724512px;}
.ws19{word-spacing:13.867939px;}
.wse{word-spacing:13.933786px;}
.ws0{word-spacing:14.346180px;}
.ws17{word-spacing:14.405920px;}
.ws7{word-spacing:14.496000px;}
.ws8{word-spacing:14.496038px;}
.ws2{word-spacing:14.499058px;}
.wsa6{word-spacing:15.446054px;}
.ws7c{word-spacing:15.541656px;}
.ws5a{word-spacing:15.601432px;}
.ws73{word-spacing:15.840534px;}
.ws52{word-spacing:16.318739px;}
.ws76{word-spacing:17.215373px;}
.ws15{word-spacing:17.932680px;}
.ws72{word-spacing:19.008641px;}
.ws94{word-spacing:19.176061px;}
.ws95{word-spacing:19.654267px;}
.wsa5{word-spacing:24.388506px;}
._4{margin-left:-7.510544px;}
._2{margin-left:-5.499355px;}
._0{margin-left:-3.586545px;}
._5{margin-left:-2.513286px;}
._1{margin-left:-1.434618px;}
._a{width:1.137085px;}
._7{width:2.988780px;}
._3{width:4.284685px;}
._c{width:15.307979px;}
._8{width:17.394703px;}
._9{width:18.642950px;}
._16{width:19.654342px;}
._12{width:21.940356px;}
._e{width:23.013606px;}
._6{width:25.001017px;}
._d{width:26.005832px;}
._f{width:27.204601px;}
._b{width:29.887800px;}
._10{width:31.008037px;}
._11{width:34.130653px;}
._15{width:46.672981px;}
._14{width:47.820600px;}
._13{width:55.196348px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.842800px;}
.fs6{font-size:43.038720px;}
.fs2{font-size:46.027200px;}
.fs4{font-size:47.820480px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y67{bottom:113.332500px;}
.y9b{bottom:113.781000px;}
.y30{bottom:128.776500px;}
.y66{bottom:131.266500px;}
.y9a{bottom:131.715000px;}
.yc9{bottom:134.853000px;}
.y2f{bottom:146.709000px;}
.y99{bottom:149.647500px;}
.y65{bottom:151.335000px;}
.yc8{bottom:152.785500px;}
.y2e{bottom:164.641500px;}
.y98{bottom:167.580000px;}
.y64{bottom:169.267500px;}
.yc7{bottom:170.718000px;}
.y2d{bottom:182.574000px;}
.y97{bottom:185.512500px;}
.y63{bottom:186.936000px;}
.yc6{bottom:188.650500px;}
.y2c{bottom:200.508000px;}
.y96{bottom:203.445000px;}
.y62{bottom:204.868500px;}
.yc5{bottom:206.584500px;}
.y2b{bottom:218.440500px;}
.y95{bottom:221.377500px;}
.y61{bottom:222.801000px;}
.yc4{bottom:224.517000px;}
.y2a{bottom:236.373000px;}
.y94{bottom:239.311500px;}
.y60{bottom:240.733500px;}
.yc3{bottom:247.156500px;}
.y29{bottom:254.305500px;}
.y93{bottom:257.244000px;}
.y5f{bottom:258.666000px;}
.y92{bottom:275.176500px;}
.y5e{bottom:276.600000px;}
.y28{bottom:276.945000px;}
.y91{bottom:293.109000px;}
.y5d{bottom:294.532500px;}
.y27{bottom:299.586000px;}
.y90{bottom:311.041500px;}
.y5c{bottom:312.199500px;}
.y26{bottom:327.606000px;}
.y8f{bottom:328.974000px;}
.yc2{bottom:328.975500px;}
.y5b{bottom:330.133500px;}
.y25{bottom:345.538500px;}
.yc1{bottom:346.908000px;}
.y5a{bottom:348.066000px;}
.y8e{bottom:349.896000px;}
.y24{bottom:363.471000px;}
.yc0{bottom:364.840500px;}
.y59{bottom:365.998500px;}
.y8d{bottom:367.828500px;}
.y23{bottom:381.403500px;}
.y58{bottom:383.931000px;}
.ybf{bottom:387.480000px;}
.y8c{bottom:390.469500px;}
.y22{bottom:399.336000px;}
.y57{bottom:401.863500px;}
.ybe{bottom:415.500000px;}
.y21{bottom:417.270000px;}
.y8b{bottom:418.489500px;}
.y56{bottom:419.532000px;}
.ybd{bottom:433.432500px;}
.y20{bottom:435.202500px;}
.y8a{bottom:436.422000px;}
.y55{bottom:437.464500px;}
.ybc{bottom:451.365000px;}
.y1f{bottom:453.135000px;}
.y89{bottom:454.354500px;}
.y54{bottom:455.397000px;}
.ybb{bottom:469.299000px;}
.y1e{bottom:471.067500px;}
.y88{bottom:472.287000px;}
.y53{bottom:473.329500px;}
.yba{bottom:487.231500px;}
.y1d{bottom:489.000000px;}
.y87{bottom:490.219500px;}
.y52{bottom:495.705000px;}
.yb9{bottom:505.164000px;}
.y1c{bottom:506.932500px;}
.y86{bottom:508.152000px;}
.y51{bottom:522.138000px;}
.y85{bottom:526.086000px;}
.yb8{bottom:527.803500px;}
.y1b{bottom:529.573500px;}
.y50{bottom:540.070500px;}
.y84{bottom:544.018500px;}
.yb7{bottom:555.823500px;}
.y1a{bottom:557.593500px;}
.y4f{bottom:558.003000px;}
.y83{bottom:566.658000px;}
.y19{bottom:572.536500px;}
.yb6{bottom:573.756000px;}
.y4e{bottom:575.935500px;}
.y18{bottom:587.481000px;}
.yb5{bottom:591.690000px;}
.y4d{bottom:593.868000px;}
.y82{bottom:594.678000px;}
.y17{bottom:602.425500px;}
.yed{bottom:606.708000px;}
.yb4{bottom:609.622500px;}
.y4c{bottom:611.802000px;}
.y81{bottom:612.610500px;}
.y16{bottom:617.368500px;}
.yec{bottom:620.158500px;}
.yb3{bottom:627.555000px;}
.y4b{bottom:629.734500px;}
.y80{bottom:630.543000px;}
.y15{bottom:632.313000px;}
.yeb{bottom:633.607500px;}
.yb2{bottom:645.487500px;}
.yea{bottom:647.056500px;}
.y14{bottom:647.257500px;}
.y4a{bottom:647.667000px;}
.y7f{bottom:653.184000px;}
.ye9{bottom:660.507000px;}
.y13{bottom:662.200500px;}
.yb1{bottom:663.420000px;}
.y49{bottom:665.599500px;}
.ye8{bottom:673.956000px;}
.y12{bottom:677.145000px;}
.y7e{bottom:681.204000px;}
.yb0{bottom:681.352500px;}
.y48{bottom:683.532000px;}
.ye7{bottom:687.405000px;}
.y7d{bottom:699.136500px;}
.yaf{bottom:699.286500px;}
.y11{bottom:699.561000px;}
.ye6{bottom:700.855500px;}
.y47{bottom:701.464500px;}
.ye5{bottom:714.304500px;}
.y7c{bottom:717.069000px;}
.y46{bottom:719.398500px;}
.yae{bottom:720.207000px;}
.ye4{bottom:727.755000px;}
.y7b{bottom:735.001500px;}
.y45{bottom:737.331000px;}
.yad{bottom:738.139500px;}
.ye3{bottom:741.204000px;}
.y10{bottom:747.798000px;}
.y7a{bottom:752.934000px;}
.ye2{bottom:754.653000px;}
.y44{bottom:754.734000px;}
.yac{bottom:756.073500px;}
.yf{bottom:766.290000px;}
.ye1{bottom:768.103500px;}
.y79{bottom:770.866500px;}
.y43{bottom:772.666500px;}
.yab{bottom:776.994000px;}
.ye0{bottom:781.552500px;}
.ye{bottom:784.783500px;}
.y78{bottom:788.800500px;}
.y42{bottom:790.599000px;}
.yaa{bottom:794.926500px;}
.ydf{bottom:795.001500px;}
.yd{bottom:803.277000px;}
.y77{bottom:806.733000px;}
.yde{bottom:808.452000px;}
.y41{bottom:808.533000px;}
.ya9{bottom:812.860500px;}
.ydd{bottom:821.901000px;}
.yc{bottom:821.992500px;}
.y76{bottom:824.665500px;}
.y40{bottom:826.465500px;}
.ya8{bottom:830.793000px;}
.ydc{bottom:835.350000px;}
.y75{bottom:842.598000px;}
.y3f{bottom:844.398000px;}
.ya7{bottom:848.725500px;}
.ydb{bottom:848.800500px;}
.yb{bottom:859.818000px;}
.y74{bottom:860.530500px;}
.y3e{bottom:862.066500px;}
.yda{bottom:862.249500px;}
.ya6{bottom:866.658000px;}
.yd9{bottom:875.700000px;}
.ya{bottom:878.311500px;}
.y3d{bottom:879.999000px;}
.y73{bottom:881.452500px;}
.ya5{bottom:884.590500px;}
.yd8{bottom:889.149000px;}
.y9{bottom:896.805000px;}
.y3c{bottom:897.931500px;}
.y72{bottom:899.385000px;}
.ya4{bottom:902.523000px;}
.yd7{bottom:902.598000px;}
.y8{bottom:915.298500px;}
.y3b{bottom:915.864000px;}
.yd6{bottom:916.048500px;}
.y71{bottom:920.307000px;}
.ya3{bottom:920.457000px;}
.yd5{bottom:929.497500px;}
.y3a{bottom:933.796500px;}
.y7{bottom:934.012500px;}
.y70{bottom:938.239500px;}
.ya2{bottom:938.389500px;}
.yd4{bottom:942.946500px;}
.y39{bottom:951.730500px;}
.y6f{bottom:956.172000px;}
.yd3{bottom:956.397000px;}
.ya1{bottom:959.311500px;}
.y38{bottom:969.663000px;}
.yd2{bottom:969.846000px;}
.y6{bottom:971.839500px;}
.y6e{bottom:974.104500px;}
.ya0{bottom:977.244000px;}
.yd1{bottom:983.296500px;}
.y37{bottom:987.595500px;}
.y5{bottom:990.333000px;}
.y6d{bottom:992.038500px;}
.y9f{bottom:995.176500px;}
.yd0{bottom:996.745500px;}
.y36{bottom:1005.528000px;}
.y4{bottom:1008.826500px;}
.y6c{bottom:1009.971000px;}
.ycf{bottom:1010.194500px;}
.y9e{bottom:1013.109000px;}
.y35{bottom:1023.460500px;}
.yce{bottom:1023.645000px;}
.y3{bottom:1027.318500px;}
.y6b{bottom:1027.903500px;}
.y9d{bottom:1031.041500px;}
.ycd{bottom:1037.094000px;}
.y34{bottom:1041.393000px;}
.y6a{bottom:1045.836000px;}
.y2{bottom:1046.034000px;}
.ycc{bottom:1050.543000px;}
.y9c{bottom:1053.682500px;}
.y33{bottom:1059.327000px;}
.y69{bottom:1063.768500px;}
.ycb{bottom:1063.993500px;}
.y32{bottom:1077.259500px;}
.yca{bottom:1077.442500px;}
.y68{bottom:1081.701000px;}
.y1{bottom:1093.107000px;}
.y31{bottom:1099.635000px;}
.hb{height:32.900573px;}
.h7{height:37.013299px;}
.h6{height:37.336090px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.ha{height:41.425613px;}
.h8{height:41.484266px;}
.h9{height:41.490266px;}
.h5{height:55.414714px;}
.h2{height:55.420714px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:73.446000px;}
.x2e{left:79.423500px;}
.x1{left:83.742000px;}
.x28{left:88.390500px;}
.x2f{left:100.834500px;}
.x1b{left:104.118000px;}
.x14{left:117.328500px;}
.x11{left:124.668000px;}
.x26{left:125.749500px;}
.x4{left:129.781500px;}
.x3{left:135.039000px;}
.x2{left:156.133500px;}
.x6{left:169.995000px;}
.x5{left:179.328000px;}
.x29{left:232.206000px;}
.x13{left:241.159500px;}
.x2b{left:288.597000px;}
.x1d{left:309.958500px;}
.x1e{left:341.289000px;}
.x17{left:359.182500px;}
.x16{left:363.942000px;}
.x1f{left:374.247000px;}
.x1c{left:378.592500px;}
.x9{left:385.752000px;}
.x8{left:391.009500px;}
.x2c{left:393.831000px;}
.x27{left:400.689000px;}
.x15{left:402.748500px;}
.x19{left:405.613500px;}
.x18{left:408.729000px;}
.x2d{left:417.157500px;}
.xb{left:422.640000px;}
.x7{left:424.851000px;}
.x25{left:433.977000px;}
.xa{left:435.297000px;}
.x2a{left:504.438000px;}
.x21{left:608.041500px;}
.x20{left:614.329500px;}
.xd{left:641.721000px;}
.x24{left:648.598500px;}
.x23{left:659.185500px;}
.x1a{left:671.196000px;}
.x10{left:679.387500px;}
.xc{left:688.710000px;}
.xf{left:692.866500px;}
.x22{left:775.755000px;}
.xe{left:809.436000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.850667pt;}
.v2{vertical-align:7.120000pt;}
.v1{vertical-align:21.114667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001872pt;}
.lsa{letter-spacing:0.002118pt;}
.ls0{letter-spacing:0.002933pt;}
.lsb{letter-spacing:0.005138pt;}
.lsc{letter-spacing:0.741348pt;}
.ls2{letter-spacing:2.635446pt;}
.ls8{letter-spacing:2.655711pt;}
.ls6{letter-spacing:2.656015pt;}
.ls5{letter-spacing:2.656693pt;}
.ls7{letter-spacing:2.658422pt;}
.ls4{letter-spacing:31.878586pt;}
.ls9{letter-spacing:31.883919pt;}
.ws1{word-spacing:-14.611867pt;}
.ws6{word-spacing:-13.283467pt;}
.ws16{word-spacing:-13.262246pt;}
.wsc{word-spacing:-11.955200pt;}
.ws22{word-spacing:-10.626800pt;}
.ws5{word-spacing:-10.626773pt;}
.wsd{word-spacing:-9.564160pt;}
.ws62{word-spacing:-2.656693pt;}
.ws24{word-spacing:-0.584473pt;}
.ws7b{word-spacing:-0.531339pt;}
.ws7a{word-spacing:-0.318803pt;}
.ws8c{word-spacing:-0.212535pt;}
.ws2a{word-spacing:0.000000pt;}
.ws25{word-spacing:0.212535pt;}
.ws86{word-spacing:0.425071pt;}
.ws3e{word-spacing:0.531339pt;}
.ws5c{word-spacing:0.690740pt;}
.ws40{word-spacing:0.743874pt;}
.ws11{word-spacing:1.243341pt;}
.ws12{word-spacing:1.338982pt;}
.ws3d{word-spacing:1.434614pt;}
.ws64{word-spacing:1.487748pt;}
.ws8d{word-spacing:1.594016pt;}
.ws43{word-spacing:1.806551pt;}
.ws61{word-spacing:2.125355pt;}
.ws7e{word-spacing:2.178489pt;}
.ws33{word-spacing:2.284756pt;}
.wsa2{word-spacing:2.295389pt;}
.ws80{word-spacing:2.444158pt;}
.ws5b{word-spacing:2.497292pt;}
.ws31{word-spacing:2.550426pt;}
.ws28{word-spacing:2.603559pt;}
.ws65{word-spacing:2.656693pt;}
.ws5e{word-spacing:2.762961pt;}
.ws48{word-spacing:2.816095pt;}
.ws7f{word-spacing:2.922363pt;}
.ws58{word-spacing:2.975497pt;}
.wsa3{word-spacing:2.975504pt;}
.ws1c{word-spacing:3.081764pt;}
.ws75{word-spacing:3.134898pt;}
.ws27{word-spacing:3.188032pt;}
.ws3c{word-spacing:3.241166pt;}
.wsa8{word-spacing:3.273054pt;}
.ws4e{word-spacing:3.294300pt;}
.ws66{word-spacing:3.400567pt;}
.ws20{word-spacing:3.453701pt;}
.ws60{word-spacing:3.506835pt;}
.ws32{word-spacing:3.613103pt;}
.ws1e{word-spacing:3.666237pt;}
.ws55{word-spacing:3.772505pt;}
.ws21{word-spacing:3.825638pt;}
.ws92{word-spacing:3.825648pt;}
.ws6d{word-spacing:3.878772pt;}
.wsa1{word-spacing:3.910662pt;}
.ws9a{word-spacing:3.953170pt;}
.ws44{word-spacing:4.038174pt;}
.ws85{word-spacing:4.091308pt;}
.ws90{word-spacing:4.250720pt;}
.ws13{word-spacing:4.256051pt;}
.ws42{word-spacing:4.303843pt;}
.ws54{word-spacing:4.516379pt;}
.ws56{word-spacing:4.622646pt;}
.ws1f{word-spacing:4.675780pt;}
.ws5d{word-spacing:4.728914pt;}
.ws81{word-spacing:4.782048pt;}
.ws14{word-spacing:4.782080pt;}
.ws37{word-spacing:4.994583pt;}
.wsa7{word-spacing:5.100864pt;}
.ws3f{word-spacing:5.153985pt;}
.ws70{word-spacing:5.260253pt;}
.ws63{word-spacing:5.270893pt;}
.ws4{word-spacing:5.313387pt;}
.ws91{word-spacing:5.313400pt;}
.ws99{word-spacing:5.440922pt;}
.ws3b{word-spacing:5.579056pt;}
.ws2f{word-spacing:5.632190pt;}
.wsb{word-spacing:5.738496pt;}
.ws6c{word-spacing:5.791591pt;}
.ws3{word-spacing:5.844747pt;}
.ws45{word-spacing:5.950993pt;}
.wsa4{word-spacing:5.951008pt;}
.ws6b{word-spacing:6.004127pt;}
.ws35{word-spacing:6.057261pt;}
.ws67{word-spacing:6.110395pt;}
.ws10{word-spacing:6.121062pt;}
.ws57{word-spacing:6.163529pt;}
.ws71{word-spacing:6.180923pt;}
.ws79{word-spacing:6.216662pt;}
.ws9{word-spacing:6.264525pt;}
.ws59{word-spacing:6.269796pt;}
.ws26{word-spacing:6.482332pt;}
.ws8e{word-spacing:6.588616pt;}
.ws93{word-spacing:6.631123pt;}
.ws87{word-spacing:6.748001pt;}
.ws98{word-spacing:7.056195pt;}
.ws4f{word-spacing:7.066804pt;}
.ws7d{word-spacing:7.119938pt;}
.ws82{word-spacing:7.226206pt;}
.ws36{word-spacing:7.385607pt;}
.ws77{word-spacing:7.438652pt;}
.ws1a{word-spacing:7.438741pt;}
.ws4b{word-spacing:7.545009pt;}
.ws84{word-spacing:7.598143pt;}
.ws9f{word-spacing:7.651296pt;}
.wsa0{word-spacing:7.693803pt;}
.ws53{word-spacing:7.757545pt;}
.ws8b{word-spacing:7.916946pt;}
.ws89{word-spacing:7.970080pt;}
.ws8a{word-spacing:8.023214pt;}
.ws2b{word-spacing:8.076348pt;}
.ws68{word-spacing:8.129482pt;}
.ws4d{word-spacing:8.288883pt;}
.ws4c{word-spacing:8.342017pt;}
.ws46{word-spacing:8.501419pt;}
.ws2e{word-spacing:8.545897pt;}
.ws2c{word-spacing:8.554553pt;}
.ws6f{word-spacing:8.660820pt;}
.ws4a{word-spacing:8.767088pt;}
.ws6a{word-spacing:8.873356pt;}
.ws29{word-spacing:8.926490pt;}
.ws8f{word-spacing:9.011526pt;}
.ws1b{word-spacing:9.085891pt;}
.ws38{word-spacing:9.245293pt;}
.wsa{word-spacing:9.372877pt;}
.ws83{word-spacing:9.404694pt;}
.ws78{word-spacing:9.457828pt;}
.ws50{word-spacing:9.723498pt;}
.ws9e{word-spacing:9.734149pt;}
.ws88{word-spacing:9.776631pt;}
.ws18{word-spacing:9.829765pt;}
.ws9b{word-spacing:10.159221pt;}
.ws39{word-spacing:10.254836pt;}
.wsf{word-spacing:10.281472pt;}
.ws47{word-spacing:10.361104pt;}
.ws2d{word-spacing:10.414238pt;}
.ws49{word-spacing:10.520506pt;}
.ws30{word-spacing:10.573639pt;}
.ws41{word-spacing:10.626773pt;}
.ws1d{word-spacing:10.679907pt;}
.ws69{word-spacing:10.786175pt;}
.ws6e{word-spacing:10.839309pt;}
.ws34{word-spacing:10.892443pt;}
.ws74{word-spacing:11.051844pt;}
.ws23{word-spacing:11.104978pt;}
.ws5f{word-spacing:11.211246pt;}
.ws96{word-spacing:11.361667pt;}
.ws97{word-spacing:11.391930pt;}
.ws3a{word-spacing:12.008254pt;}
.ws51{word-spacing:12.061388pt;}
.ws9d{word-spacing:12.157059pt;}
.ws9c{word-spacing:12.199566pt;}
.ws19{word-spacing:12.327057pt;}
.wse{word-spacing:12.385587pt;}
.ws0{word-spacing:12.752160pt;}
.ws17{word-spacing:12.805262pt;}
.ws7{word-spacing:12.885333pt;}
.ws8{word-spacing:12.885367pt;}
.ws2{word-spacing:12.888051pt;}
.wsa6{word-spacing:13.729826pt;}
.ws7c{word-spacing:13.814805pt;}
.ws5a{word-spacing:13.867939pt;}
.ws73{word-spacing:14.080475pt;}
.ws52{word-spacing:14.505546pt;}
.ws76{word-spacing:15.302554pt;}
.ws15{word-spacing:15.940160pt;}
.ws72{word-spacing:16.896570pt;}
.ws94{word-spacing:17.045387pt;}
.ws95{word-spacing:17.470459pt;}
.wsa5{word-spacing:21.678672pt;}
._4{margin-left:-6.676039pt;}
._2{margin-left:-4.888316pt;}
._0{margin-left:-3.188040pt;}
._5{margin-left:-2.234032pt;}
._1{margin-left:-1.275216pt;}
._a{width:1.010742pt;}
._7{width:2.656693pt;}
._3{width:3.808609pt;}
._c{width:13.607092pt;}
._8{width:15.461958pt;}
._9{width:16.571511pt;}
._16{width:17.470526pt;}
._12{width:19.502539pt;}
._e{width:20.456539pt;}
._6{width:22.223126pt;}
._d{width:23.116295pt;}
._f{width:24.181867pt;}
._b{width:26.566933pt;}
._10{width:27.562700pt;}
._11{width:30.338358pt;}
._15{width:41.487094pt;}
._14{width:42.507200pt;}
._13{width:49.063421pt;}
.fs8{font-size:37.193600pt;}
.fs6{font-size:38.256640pt;}
.fs2{font-size:40.913067pt;}
.fs4{font-size:42.507093pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:100.740000pt;}
.y9b{bottom:101.138667pt;}
.y30{bottom:114.468000pt;}
.y66{bottom:116.681333pt;}
.y9a{bottom:117.080000pt;}
.yc9{bottom:119.869333pt;}
.y2f{bottom:130.408000pt;}
.y99{bottom:133.020000pt;}
.y65{bottom:134.520000pt;}
.yc8{bottom:135.809333pt;}
.y2e{bottom:146.348000pt;}
.y98{bottom:148.960000pt;}
.y64{bottom:150.460000pt;}
.yc7{bottom:151.749333pt;}
.y2d{bottom:162.288000pt;}
.y97{bottom:164.900000pt;}
.y63{bottom:166.165333pt;}
.yc6{bottom:167.689333pt;}
.y2c{bottom:178.229333pt;}
.y96{bottom:180.840000pt;}
.y62{bottom:182.105333pt;}
.yc5{bottom:183.630667pt;}
.y2b{bottom:194.169333pt;}
.y95{bottom:196.780000pt;}
.y61{bottom:198.045333pt;}
.yc4{bottom:199.570667pt;}
.y2a{bottom:210.109333pt;}
.y94{bottom:212.721333pt;}
.y60{bottom:213.985333pt;}
.yc3{bottom:219.694667pt;}
.y29{bottom:226.049333pt;}
.y93{bottom:228.661333pt;}
.y5f{bottom:229.925333pt;}
.y92{bottom:244.601333pt;}
.y5e{bottom:245.866667pt;}
.y28{bottom:246.173333pt;}
.y91{bottom:260.541333pt;}
.y5d{bottom:261.806667pt;}
.y27{bottom:266.298667pt;}
.y90{bottom:276.481333pt;}
.y5c{bottom:277.510667pt;}
.y26{bottom:291.205333pt;}
.y8f{bottom:292.421333pt;}
.yc2{bottom:292.422667pt;}
.y5b{bottom:293.452000pt;}
.y25{bottom:307.145333pt;}
.yc1{bottom:308.362667pt;}
.y5a{bottom:309.392000pt;}
.y8e{bottom:311.018667pt;}
.y24{bottom:323.085333pt;}
.yc0{bottom:324.302667pt;}
.y59{bottom:325.332000pt;}
.y8d{bottom:326.958667pt;}
.y23{bottom:339.025333pt;}
.y58{bottom:341.272000pt;}
.ybf{bottom:344.426667pt;}
.y8c{bottom:347.084000pt;}
.y22{bottom:354.965333pt;}
.y57{bottom:357.212000pt;}
.ybe{bottom:369.333333pt;}
.y21{bottom:370.906667pt;}
.y8b{bottom:371.990667pt;}
.y56{bottom:372.917333pt;}
.ybd{bottom:385.273333pt;}
.y20{bottom:386.846667pt;}
.y8a{bottom:387.930667pt;}
.y55{bottom:388.857333pt;}
.ybc{bottom:401.213333pt;}
.y1f{bottom:402.786667pt;}
.y89{bottom:403.870667pt;}
.y54{bottom:404.797333pt;}
.ybb{bottom:417.154667pt;}
.y1e{bottom:418.726667pt;}
.y88{bottom:419.810667pt;}
.y53{bottom:420.737333pt;}
.yba{bottom:433.094667pt;}
.y1d{bottom:434.666667pt;}
.y87{bottom:435.750667pt;}
.y52{bottom:440.626667pt;}
.yb9{bottom:449.034667pt;}
.y1c{bottom:450.606667pt;}
.y86{bottom:451.690667pt;}
.y51{bottom:464.122667pt;}
.y85{bottom:467.632000pt;}
.yb8{bottom:469.158667pt;}
.y1b{bottom:470.732000pt;}
.y50{bottom:480.062667pt;}
.y84{bottom:483.572000pt;}
.yb7{bottom:494.065333pt;}
.y1a{bottom:495.638667pt;}
.y4f{bottom:496.002667pt;}
.y83{bottom:503.696000pt;}
.y19{bottom:508.921333pt;}
.yb6{bottom:510.005333pt;}
.y4e{bottom:511.942667pt;}
.y18{bottom:522.205333pt;}
.yb5{bottom:525.946667pt;}
.y4d{bottom:527.882667pt;}
.y82{bottom:528.602667pt;}
.y17{bottom:535.489333pt;}
.yed{bottom:539.296000pt;}
.yb4{bottom:541.886667pt;}
.y4c{bottom:543.824000pt;}
.y81{bottom:544.542667pt;}
.y16{bottom:548.772000pt;}
.yec{bottom:551.252000pt;}
.yb3{bottom:557.826667pt;}
.y4b{bottom:559.764000pt;}
.y80{bottom:560.482667pt;}
.y15{bottom:562.056000pt;}
.yeb{bottom:563.206667pt;}
.yb2{bottom:573.766667pt;}
.yea{bottom:575.161333pt;}
.y14{bottom:575.340000pt;}
.y4a{bottom:575.704000pt;}
.y7f{bottom:580.608000pt;}
.ye9{bottom:587.117333pt;}
.y13{bottom:588.622667pt;}
.yb1{bottom:589.706667pt;}
.y49{bottom:591.644000pt;}
.ye8{bottom:599.072000pt;}
.y12{bottom:601.906667pt;}
.y7e{bottom:605.514667pt;}
.yb0{bottom:605.646667pt;}
.y48{bottom:607.584000pt;}
.ye7{bottom:611.026667pt;}
.y7d{bottom:621.454667pt;}
.yaf{bottom:621.588000pt;}
.y11{bottom:621.832000pt;}
.ye6{bottom:622.982667pt;}
.y47{bottom:623.524000pt;}
.ye5{bottom:634.937333pt;}
.y7c{bottom:637.394667pt;}
.y46{bottom:639.465333pt;}
.yae{bottom:640.184000pt;}
.ye4{bottom:646.893333pt;}
.y7b{bottom:653.334667pt;}
.y45{bottom:655.405333pt;}
.yad{bottom:656.124000pt;}
.ye3{bottom:658.848000pt;}
.y10{bottom:664.709333pt;}
.y7a{bottom:669.274667pt;}
.ye2{bottom:670.802667pt;}
.y44{bottom:670.874667pt;}
.yac{bottom:672.065333pt;}
.yf{bottom:681.146667pt;}
.ye1{bottom:682.758667pt;}
.y79{bottom:685.214667pt;}
.y43{bottom:686.814667pt;}
.yab{bottom:690.661333pt;}
.ye0{bottom:694.713333pt;}
.ye{bottom:697.585333pt;}
.y78{bottom:701.156000pt;}
.y42{bottom:702.754667pt;}
.yaa{bottom:706.601333pt;}
.ydf{bottom:706.668000pt;}
.yd{bottom:714.024000pt;}
.y77{bottom:717.096000pt;}
.yde{bottom:718.624000pt;}
.y41{bottom:718.696000pt;}
.ya9{bottom:722.542667pt;}
.ydd{bottom:730.578667pt;}
.yc{bottom:730.660000pt;}
.y76{bottom:733.036000pt;}
.y40{bottom:734.636000pt;}
.ya8{bottom:738.482667pt;}
.ydc{bottom:742.533333pt;}
.y75{bottom:748.976000pt;}
.y3f{bottom:750.576000pt;}
.ya7{bottom:754.422667pt;}
.ydb{bottom:754.489333pt;}
.yb{bottom:764.282667pt;}
.y74{bottom:764.916000pt;}
.y3e{bottom:766.281333pt;}
.yda{bottom:766.444000pt;}
.ya6{bottom:770.362667pt;}
.yd9{bottom:778.400000pt;}
.ya{bottom:780.721333pt;}
.y3d{bottom:782.221333pt;}
.y73{bottom:783.513333pt;}
.ya5{bottom:786.302667pt;}
.yd8{bottom:790.354667pt;}
.y9{bottom:797.160000pt;}
.y3c{bottom:798.161333pt;}
.y72{bottom:799.453333pt;}
.ya4{bottom:802.242667pt;}
.yd7{bottom:802.309333pt;}
.y8{bottom:813.598667pt;}
.y3b{bottom:814.101333pt;}
.yd6{bottom:814.265333pt;}
.y71{bottom:818.050667pt;}
.ya3{bottom:818.184000pt;}
.yd5{bottom:826.220000pt;}
.y3a{bottom:830.041333pt;}
.y7{bottom:830.233333pt;}
.y70{bottom:833.990667pt;}
.ya2{bottom:834.124000pt;}
.yd4{bottom:838.174667pt;}
.y39{bottom:845.982667pt;}
.y6f{bottom:849.930667pt;}
.yd3{bottom:850.130667pt;}
.ya1{bottom:852.721333pt;}
.y38{bottom:861.922667pt;}
.yd2{bottom:862.085333pt;}
.y6{bottom:863.857333pt;}
.y6e{bottom:865.870667pt;}
.ya0{bottom:868.661333pt;}
.yd1{bottom:874.041333pt;}
.y37{bottom:877.862667pt;}
.y5{bottom:880.296000pt;}
.y6d{bottom:881.812000pt;}
.y9f{bottom:884.601333pt;}
.yd0{bottom:885.996000pt;}
.y36{bottom:893.802667pt;}
.y4{bottom:896.734667pt;}
.y6c{bottom:897.752000pt;}
.ycf{bottom:897.950667pt;}
.y9e{bottom:900.541333pt;}
.y35{bottom:909.742667pt;}
.yce{bottom:909.906667pt;}
.y3{bottom:913.172000pt;}
.y6b{bottom:913.692000pt;}
.y9d{bottom:916.481333pt;}
.ycd{bottom:921.861333pt;}
.y34{bottom:925.682667pt;}
.y6a{bottom:929.632000pt;}
.y2{bottom:929.808000pt;}
.ycc{bottom:933.816000pt;}
.y9c{bottom:936.606667pt;}
.y33{bottom:941.624000pt;}
.y69{bottom:945.572000pt;}
.ycb{bottom:945.772000pt;}
.y32{bottom:957.564000pt;}
.yca{bottom:957.726667pt;}
.y68{bottom:961.512000pt;}
.y1{bottom:971.650667pt;}
.y31{bottom:977.453333pt;}
.hb{height:29.244954pt;}
.h7{height:32.900710pt;}
.h6{height:33.187635pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.ha{height:36.822767pt;}
.h8{height:36.874903pt;}
.h9{height:36.880237pt;}
.h5{height:49.257523pt;}
.h2{height:49.262857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:65.285333pt;}
.x2e{left:70.598667pt;}
.x1{left:74.437333pt;}
.x28{left:78.569333pt;}
.x2f{left:89.630667pt;}
.x1b{left:92.549333pt;}
.x14{left:104.292000pt;}
.x11{left:110.816000pt;}
.x26{left:111.777333pt;}
.x4{left:115.361333pt;}
.x3{left:120.034667pt;}
.x2{left:138.785333pt;}
.x6{left:151.106667pt;}
.x5{left:159.402667pt;}
.x29{left:206.405333pt;}
.x13{left:214.364000pt;}
.x2b{left:256.530667pt;}
.x1d{left:275.518667pt;}
.x1e{left:303.368000pt;}
.x17{left:319.273333pt;}
.x16{left:323.504000pt;}
.x1f{left:332.664000pt;}
.x1c{left:336.526667pt;}
.x9{left:342.890667pt;}
.x8{left:347.564000pt;}
.x2c{left:350.072000pt;}
.x27{left:356.168000pt;}
.x15{left:357.998667pt;}
.x19{left:360.545333pt;}
.x18{left:363.314667pt;}
.x2d{left:370.806667pt;}
.xb{left:375.680000pt;}
.x7{left:377.645333pt;}
.x25{left:385.757333pt;}
.xa{left:386.930667pt;}
.x2a{left:448.389333pt;}
.x21{left:540.481333pt;}
.x20{left:546.070667pt;}
.xd{left:570.418667pt;}
.x24{left:576.532000pt;}
.x23{left:585.942667pt;}
.x1a{left:596.618667pt;}
.x10{left:603.900000pt;}
.xc{left:612.186667pt;}
.xf{left:615.881333pt;}
.x22{left:689.560000pt;}
.xe{left:719.498667pt;}
}




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