
    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_a29ff3358f361b8607e9f166.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.287000;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_80ef3e97eb2218e77a27ef61.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.267000;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_2bba9acb330c125285d85f5e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.086000;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_58c7d8322632ca9c0de5b074.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.012000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_99f74be66d07d28072466eec.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.267000;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;}
.ls15{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.486000px;}
.ls17{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.108000px;}
.lsc{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.172800px;}
.ls14{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.234000px;}
.ls7{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.277200px;}
.ls5{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.332400px;}
.ls4{letter-spacing:0.332640px;}
.ls6{letter-spacing:0.378000px;}
.ls1c{letter-spacing:0.384000px;}
.ls1e{letter-spacing:0.396000px;}
.lsa{letter-spacing:0.405000px;}
.ls1d{letter-spacing:0.408000px;}
.ls19{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.450000px;}
.ls2{letter-spacing:0.462000px;}
.ls13{letter-spacing:0.472500px;}
.ls1a{letter-spacing:0.480000px;}
.ls24{letter-spacing:0.486000px;}
.ls9{letter-spacing:0.495000px;}
.ls1b{letter-spacing:0.528000px;}
.ls11{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.594000px;}
.ls23{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.672000px;}
.ls22{letter-spacing:0.756000px;}
.ls21{letter-spacing:0.810000px;}
.ls20{letter-spacing:0.837000px;}
.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;}
}
.ws22{word-spacing:-16.956000px;}
.ws1{word-spacing:-11.975040px;}
.ws2{word-spacing:-11.642400px;}
.ws3{word-spacing:-9.979200px;}
.ws25{word-spacing:-3.348000px;}
.ws53{word-spacing:-3.294000px;}
.ws15{word-spacing:-3.132000px;}
.ws4e{word-spacing:-3.024000px;}
.ws6b{word-spacing:-2.862000px;}
.wsa0{word-spacing:-2.700000px;}
.wsa5{word-spacing:-2.646000px;}
.ws37{word-spacing:-2.610000px;}
.ws71{word-spacing:-2.484000px;}
.ws44{word-spacing:-2.430000px;}
.ws58{word-spacing:-2.376000px;}
.ws54{word-spacing:-2.322000px;}
.ws67{word-spacing:-2.268000px;}
.ws7d{word-spacing:-1.890000px;}
.ws50{word-spacing:-1.836000px;}
.ws2d{word-spacing:-1.728000px;}
.ws18{word-spacing:-1.665000px;}
.ws5e{word-spacing:-1.620000px;}
.ws96{word-spacing:-1.512000px;}
.ws6a{word-spacing:-1.350000px;}
.ws68{word-spacing:-1.296000px;}
.ws12{word-spacing:-1.080000px;}
.ws89{word-spacing:-1.026000px;}
.ws60{word-spacing:-0.864000px;}
.ws10{word-spacing:-0.756000px;}
.ws6d{word-spacing:-0.702000px;}
.ws0{word-spacing:-0.672000px;}
.wsc{word-spacing:-0.576000px;}
.ws30{word-spacing:-0.540000px;}
.ws3a{word-spacing:-0.450000px;}
.ws56{word-spacing:-0.432000px;}
.ws59{word-spacing:-0.378000px;}
.ws5{word-spacing:-0.324000px;}
.ws9{word-spacing:-0.277200px;}
.ws21{word-spacing:-0.270000px;}
.ws95{word-spacing:-0.216000px;}
.wsb{word-spacing:-0.172800px;}
.ws4d{word-spacing:-0.162000px;}
.ws8{word-spacing:0.000000px;}
.ws7f{word-spacing:0.048000px;}
.ws7b{word-spacing:0.108000px;}
.ws63{word-spacing:0.162000px;}
.ws9f{word-spacing:0.324000px;}
.ws5d{word-spacing:0.378000px;}
.ws8d{word-spacing:0.432000px;}
.wsa7{word-spacing:0.486000px;}
.ws5a{word-spacing:0.594000px;}
.ws7e{word-spacing:0.648000px;}
.ws4a{word-spacing:0.756000px;}
.ws61{word-spacing:0.864000px;}
.ws39{word-spacing:0.945000px;}
.ws69{word-spacing:1.026000px;}
.ws74{word-spacing:1.080000px;}
.ws13{word-spacing:1.188000px;}
.ws3b{word-spacing:1.215000px;}
.ws73{word-spacing:1.296000px;}
.ws70{word-spacing:1.404000px;}
.ws1d{word-spacing:1.440000px;}
.ws88{word-spacing:1.458000px;}
.ws79{word-spacing:1.566000px;}
.ws49{word-spacing:1.620000px;}
.ws6e{word-spacing:1.782000px;}
.ws43{word-spacing:1.800000px;}
.ws16{word-spacing:1.890000px;}
.ws24{word-spacing:1.944000px;}
.ws3e{word-spacing:2.025000px;}
.ws87{word-spacing:2.052000px;}
.ws86{word-spacing:2.064000px;}
.ws97{word-spacing:2.160000px;}
.ws2f{word-spacing:2.214000px;}
.ws23{word-spacing:2.232000px;}
.ws17{word-spacing:2.322000px;}
.ws8b{word-spacing:2.376000px;}
.ws1c{word-spacing:2.385000px;}
.ws4{word-spacing:2.418000px;}
.ws28{word-spacing:2.484000px;}
.wsd{word-spacing:2.592000px;}
.ws6f{word-spacing:2.646000px;}
.ws8c{word-spacing:2.754000px;}
.ws19{word-spacing:2.790000px;}
.ws36{word-spacing:2.808000px;}
.ws8a{word-spacing:2.832000px;}
.ws66{word-spacing:2.916000px;}
.wsa{word-spacing:2.976000px;}
.ws3f{word-spacing:3.015000px;}
.ws55{word-spacing:3.024000px;}
.ws65{word-spacing:3.078000px;}
.ws84{word-spacing:3.120000px;}
.wsa3{word-spacing:3.186000px;}
.ws1b{word-spacing:3.195000px;}
.ws76{word-spacing:3.240000px;}
.ws29{word-spacing:3.348000px;}
.ws75{word-spacing:3.375000px;}
.ws6c{word-spacing:3.402000px;}
.ws33{word-spacing:3.456000px;}
.ws77{word-spacing:3.510000px;}
.wse{word-spacing:3.552000px;}
.ws38{word-spacing:3.555000px;}
.ws5f{word-spacing:3.564000px;}
.wsa8{word-spacing:3.618000px;}
.ws80{word-spacing:3.648000px;}
.ws99{word-spacing:3.672000px;}
.wsf{word-spacing:3.726000px;}
.ws14{word-spacing:3.888000px;}
.ws78{word-spacing:3.942000px;}
.ws7a{word-spacing:3.996000px;}
.ws8e{word-spacing:4.050000px;}
.ws7{word-spacing:4.092000px;}
.ws8f{word-spacing:4.104000px;}
.ws52{word-spacing:4.212000px;}
.ws7c{word-spacing:4.266000px;}
.wsa1{word-spacing:4.320000px;}
.ws3c{word-spacing:4.410000px;}
.ws46{word-spacing:4.428000px;}
.ws48{word-spacing:4.482000px;}
.ws6{word-spacing:4.554000px;}
.ws31{word-spacing:4.698000px;}
.ws62{word-spacing:4.806000px;}
.ws4b{word-spacing:4.860000px;}
.ws41{word-spacing:4.905000px;}
.ws34{word-spacing:4.914000px;}
.ws27{word-spacing:4.968000px;}
.ws4c{word-spacing:5.022000px;}
.ws64{word-spacing:5.130000px;}
.ws11{word-spacing:5.184000px;}
.ws1f{word-spacing:5.220000px;}
.ws5c{word-spacing:5.238000px;}
.ws2a{word-spacing:5.292000px;}
.ws2b{word-spacing:5.346000px;}
.ws85{word-spacing:5.424000px;}
.ws91{word-spacing:5.454000px;}
.ws2c{word-spacing:5.508000px;}
.ws1e{word-spacing:5.535000px;}
.wsa6{word-spacing:5.562000px;}
.ws20{word-spacing:5.670000px;}
.ws47{word-spacing:5.778000px;}
.ws57{word-spacing:5.832000px;}
.ws9b{word-spacing:5.886000px;}
.ws83{word-spacing:5.904000px;}
.ws5b{word-spacing:6.048000px;}
.ws72{word-spacing:6.102000px;}
.ws9a{word-spacing:6.156000px;}
.ws81{word-spacing:6.240000px;}
.ws51{word-spacing:6.264000px;}
.ws40{word-spacing:6.300000px;}
.ws26{word-spacing:6.318000px;}
.ws32{word-spacing:6.480000px;}
.wsa4{word-spacing:6.588000px;}
.ws2e{word-spacing:6.642000px;}
.ws4f{word-spacing:6.696000px;}
.ws42{word-spacing:6.705000px;}
.ws98{word-spacing:6.750000px;}
.ws94{word-spacing:6.966000px;}
.ws45{word-spacing:7.128000px;}
.ws1a{word-spacing:7.155000px;}
.ws9e{word-spacing:7.236000px;}
.ws9d{word-spacing:7.290000px;}
.ws93{word-spacing:7.344000px;}
.ws3d{word-spacing:7.740000px;}
.ws9c{word-spacing:7.884000px;}
.ws35{word-spacing:7.938000px;}
.ws82{word-spacing:7.968000px;}
.ws92{word-spacing:7.992000px;}
.wsa2{word-spacing:8.046000px;}
.ws90{word-spacing:8.262000px;}
._e{margin-left:-20.400480px;}
._11{margin-left:-16.524000px;}
._d{margin-left:-9.292500px;}
._b{margin-left:-5.394600px;}
._3{margin-left:-4.039200px;}
._9{margin-left:-2.700000px;}
._4{margin-left:-1.003200px;}
._6{width:1.002840px;}
._f{width:2.170800px;}
._5{width:3.660480px;}
._10{width:6.048000px;}
._8{width:23.985000px;}
._c{width:30.724200px;}
._a{width:31.738200px;}
._7{width:32.850000px;}
._2{width:266.413200px;}
._1{width:366.678000px;}
._0{width:526.500000px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:28.800000px;}
.fs9{font-size:31.500000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:37.800000px;}
.fs1{font-size:39.000000px;}
.fs4{font-size:39.600000px;}
.fs8{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:97.795200px;}
.y2{bottom:111.295200px;}
.y74{bottom:144.567000px;}
.y28{bottom:144.567150px;}
.y27{bottom:158.817150px;}
.yfc{bottom:161.841150px;}
.y73{bottom:161.997600px;}
.yd7{bottom:162.064950px;}
.y52{bottom:173.067150px;}
.yb2{bottom:174.878550px;}
.y26{bottom:175.193100px;}
.yfb{bottom:179.115450px;}
.y72{bottom:179.428200px;}
.yd6{bottom:183.814950px;}
.y51{bottom:187.317150px;}
.y25{bottom:189.443100px;}
.yb1{bottom:190.934250px;}
.yfa{bottom:200.641650px;}
.yd5{bottom:201.313050px;}
.y24{bottom:203.693100px;}
.y50{bottom:203.693250px;}
.yb0{bottom:206.989950px;}
.y71{bottom:207.488850px;}
.yf9{bottom:217.915950px;}
.y23{bottom:217.943100px;}
.y4f{bottom:217.943250px;}
.yd4{bottom:218.811000px;}
.yaf{bottom:223.045800px;}
.y70{bottom:224.919450px;}
.y22{bottom:232.193100px;}
.y4e{bottom:232.193250px;}
.yf8{bottom:235.190100px;}
.yd3{bottom:236.309100px;}
.y8c{bottom:244.010100px;}
.y21{bottom:246.443100px;}
.y4d{bottom:246.443250px;}
.yae{bottom:249.731400px;}
.yf7{bottom:252.464400px;}
.yd2{bottom:253.807050px;}
.y20{bottom:260.693100px;}
.y4c{bottom:260.693250px;}
.y8b{bottom:261.260100px;}
.yad{bottom:267.287100px;}
.yf6{bottom:269.738700px;}
.y6f{bottom:269.987850px;}
.yd1{bottom:271.305150px;}
.y1f{bottom:274.943100px;}
.y4b{bottom:274.943250px;}
.y8a{bottom:278.510100px;}
.yac{bottom:284.842950px;}
.yf5{bottom:287.012850px;}
.y6e{bottom:287.418600px;}
.yd0{bottom:288.803250px;}
.y4a{bottom:289.193250px;}
.y1e{bottom:291.319050px;}
.y89{bottom:295.760100px;}
.yab{bottom:302.398650px;}
.y49{bottom:303.443250px;}
.yf4{bottom:304.287150px;}
.y6d{bottom:304.849200px;}
.y1d{bottom:305.569050px;}
.ycf{bottom:306.301200px;}
.y88{bottom:313.010100px;}
.y48{bottom:317.693250px;}
.yf3{bottom:321.561450px;}
.y6c{bottom:322.279800px;}
.yce{bottom:323.799300px;}
.y87{bottom:330.260100px;}
.y47{bottom:331.943250px;}
.yaa{bottom:332.710200px;}
.yf2{bottom:338.835600px;}
.y6b{bottom:339.710550px;}
.ycd{bottom:341.297400px;}
.y1c{bottom:345.861900px;}
.y46{bottom:346.193250px;}
.y86{bottom:347.510100px;}
.ya9{bottom:348.766050px;}
.yf1{bottom:356.109900px;}
.y6a{bottom:357.141150px;}
.ycc{bottom:358.795350px;}
.y45{bottom:360.443250px;}
.y1b{bottom:363.111900px;}
.y85{bottom:364.760100px;}
.ya8{bottom:364.821750px;}
.yf0{bottom:373.384200px;}
.y69{bottom:374.571750px;}
.ycb{bottom:376.293450px;}
.y44{bottom:376.819350px;}
.y1a{bottom:380.361900px;}
.ya7{bottom:380.877450px;}
.y84{bottom:382.010100px;}
.yef{bottom:390.658350px;}
.y43{bottom:391.069350px;}
.y68{bottom:392.002500px;}
.yca{bottom:393.791400px;}
.ya6{bottom:396.933150px;}
.y19{bottom:397.611900px;}
.y83{bottom:399.260100px;}
.yee{bottom:407.932650px;}
.y67{bottom:409.433100px;}
.yc9{bottom:411.289500px;}
.ya5{bottom:412.988850px;}
.y18{bottom:414.861900px;}
.y82{bottom:416.510100px;}
.yc8{bottom:428.787600px;}
.ya4{bottom:429.044700px;}
.y17{bottom:432.111900px;}
.y81{bottom:433.760100px;}
.y66{bottom:437.493600px;}
.yed{bottom:440.088750px;}
.y42{bottom:442.264050px;}
.ya3{bottom:445.100400px;}
.yc7{bottom:446.285550px;}
.y16{bottom:449.361900px;}
.y80{bottom:455.262150px;}
.y41{bottom:459.514050px;}
.ya2{bottom:461.156100px;}
.yc6{bottom:463.783650px;}
.y7f{bottom:472.512150px;}
.y15{bottom:475.115850px;}
.y40{bottom:476.764050px;}
.ya1{bottom:477.211800px;}
.y65{bottom:482.562150px;}
.yc5{bottom:485.533650px;}
.yec{bottom:489.252900px;}
.y7e{bottom:489.762150px;}
.ya0{bottom:493.267500px;}
.y3f{bottom:494.014050px;}
.y64{bottom:499.992750px;}
.yc4{bottom:503.031600px;}
.yeb{bottom:506.527050px;}
.y7d{bottom:507.012150px;}
.y9f{bottom:509.323350px;}
.y3e{bottom:511.264050px;}
.y63{bottom:517.423350px;}
.yc3{bottom:520.529700px;}
.y14{bottom:522.129600px;}
.y7c{bottom:524.262150px;}
.yea{bottom:528.053250px;}
.y3d{bottom:528.514050px;}
.y62{bottom:534.853950px;}
.y9e{bottom:536.008950px;}
.y13{bottom:537.879600px;}
.yc2{bottom:538.027800px;}
.y7b{bottom:541.512150px;}
.ye9{bottom:545.327550px;}
.y3c{bottom:545.764050px;}
.y61{bottom:552.284700px;}
.y9d{bottom:553.564650px;}
.y12{bottom:553.629600px;}
.yc1{bottom:555.525750px;}
.y7a{bottom:558.762150px;}
.ye8{bottom:562.601850px;}
.y3b{bottom:563.014050px;}
.y11{bottom:569.379600px;}
.y60{bottom:569.715300px;}
.y9c{bottom:571.120350px;}
.yc0{bottom:573.023850px;}
.y79{bottom:576.012150px;}
.ye7{bottom:579.876000px;}
.y3a{bottom:580.264050px;}
.y5f{bottom:587.146050px;}
.y9b{bottom:588.676200px;}
.ybf{bottom:590.521800px;}
.y78{bottom:593.262150px;}
.ye6{bottom:597.150300px;}
.y39{bottom:597.514050px;}
.y5e{bottom:604.576650px;}
.y9a{bottom:606.231900px;}
.ybe{bottom:608.019900px;}
.ye5{bottom:614.424600px;}
.y38{bottom:614.764050px;}
.y5d{bottom:622.007250px;}
.ybd{bottom:625.518000px;}
.yf{bottom:627.649350px;}
.y99{bottom:628.039650px;}
.y10{bottom:631.609350px;}
.ye4{bottom:631.698900px;}
.y37{bottom:632.014050px;}
.y5c{bottom:639.437850px;}
.ye{bottom:642.649350px;}
.y98{bottom:645.595350px;}
.ybc{bottom:647.268000px;}
.ye3{bottom:648.973050px;}
.y36{bottom:649.264050px;}
.y5b{bottom:656.868600px;}
.yd{bottom:659.775300px;}
.y1{bottom:660.514950px;}
.y97{bottom:663.151050px;}
.ybb{bottom:664.765950px;}
.ye2{bottom:666.247350px;}
.y35{bottom:666.514050px;}
.y96{bottom:680.706750px;}
.yba{bottom:682.264050px;}
.ye1{bottom:683.521650px;}
.y34{bottom:683.764050px;}
.y5a{bottom:689.181150px;}
.y95{bottom:698.262600px;}
.yb9{bottom:699.762150px;}
.y33{bottom:701.014050px;}
.ye0{bottom:705.047850px;}
.y59{bottom:706.611750px;}
.yb{bottom:711.041100px;}
.y94{bottom:715.818300px;}
.yc{bottom:716.486100px;}
.y32{bottom:718.264050px;}
.ydf{bottom:722.322000px;}
.y77{bottom:722.516100px;}
.yb8{bottom:727.890000px;}
.ya{bottom:732.041100px;}
.y93{bottom:733.374000px;}
.y31{bottom:735.514050px;}
.yde{bottom:739.596300px;}
.y76{bottom:739.766100px;}
.y92{bottom:750.929700px;}
.y30{bottom:752.764050px;}
.y9{bottom:753.041100px;}
.y58{bottom:755.932200px;}
.ydd{bottom:756.870600px;}
.y75{bottom:757.016100px;}
.y91{bottom:772.737450px;}
.yb7{bottom:773.025900px;}
.y57{bottom:773.362800px;}
.y8{bottom:774.041100px;}
.ydc{bottom:774.144900px;}
.y2f{bottom:774.266100px;}
.y90{bottom:790.293150px;}
.yb6{bottom:790.523850px;}
.y56{bottom:790.793550px;}
.ydb{bottom:791.419050px;}
.y2e{bottom:791.516100px;}
.y7{bottom:795.041100px;}
.y8f{bottom:807.848850px;}
.yb5{bottom:808.021950px;}
.y55{bottom:808.224150px;}
.yda{bottom:808.693350px;}
.y2d{bottom:808.766100px;}
.y6{bottom:816.041100px;}
.y8e{bottom:825.404550px;}
.yb4{bottom:825.520050px;}
.y54{bottom:825.654750px;}
.yd9{bottom:825.967500px;}
.y2c{bottom:826.016100px;}
.y5{bottom:837.041100px;}
.y8d{bottom:842.960400px;}
.yb3{bottom:843.018000px;}
.y53{bottom:843.085350px;}
.yd8{bottom:843.241800px;}
.y2b{bottom:843.266100px;}
.y4{bottom:858.041100px;}
.y2a{bottom:860.516100px;}
.y29{bottom:906.748200px;}
.h9{height:28.886400px;}
.hc{height:36.108000px;}
.h3{height:39.117000px;}
.h6{height:40.827600px;}
.hb{height:45.135000px;}
.h8{height:48.144000px;}
.h7{height:52.218000px;}
.h4{height:54.162000px;}
.ha{height:55.674000px;}
.hd{height:66.198000px;}
.h5{height:68.046000px;}
.h2{height:98.976000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:127.559100px;}
.x5{left:132.487650px;}
.x4{left:140.091750px;}
.x10{left:145.206150px;}
.x11{left:146.863950px;}
.x7{left:149.807700px;}
.x8{left:153.980700px;}
.xe{left:157.322850px;}
.x3{left:166.219050px;}
.x12{left:187.086600px;}
.x1{left:252.900150px;}
.xc{left:255.931800px;}
.xb{left:257.621100px;}
.x6{left:272.811750px;}
.xa{left:300.097050px;}
.xf{left:308.750100px;}
.x13{left:334.263750px;}
.xd{left:454.112700px;}
.x9{left:583.108500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.432000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.153600pt;}
.ls14{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.208000pt;}
.ls7{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.246400pt;}
.ls5{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.295467pt;}
.ls4{letter-spacing:0.295680pt;}
.ls6{letter-spacing:0.336000pt;}
.ls1c{letter-spacing:0.341333pt;}
.ls1e{letter-spacing:0.352000pt;}
.lsa{letter-spacing:0.360000pt;}
.ls1d{letter-spacing:0.362667pt;}
.ls19{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.400000pt;}
.ls2{letter-spacing:0.410667pt;}
.ls13{letter-spacing:0.420000pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls24{letter-spacing:0.432000pt;}
.ls9{letter-spacing:0.440000pt;}
.ls1b{letter-spacing:0.469333pt;}
.ls11{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.528000pt;}
.ls23{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.597333pt;}
.ls22{letter-spacing:0.672000pt;}
.ls21{letter-spacing:0.720000pt;}
.ls20{letter-spacing:0.744000pt;}
.ws22{word-spacing:-15.072000pt;}
.ws1{word-spacing:-10.644480pt;}
.ws2{word-spacing:-10.348800pt;}
.ws3{word-spacing:-8.870400pt;}
.ws25{word-spacing:-2.976000pt;}
.ws53{word-spacing:-2.928000pt;}
.ws15{word-spacing:-2.784000pt;}
.ws4e{word-spacing:-2.688000pt;}
.ws6b{word-spacing:-2.544000pt;}
.wsa0{word-spacing:-2.400000pt;}
.wsa5{word-spacing:-2.352000pt;}
.ws37{word-spacing:-2.320000pt;}
.ws71{word-spacing:-2.208000pt;}
.ws44{word-spacing:-2.160000pt;}
.ws58{word-spacing:-2.112000pt;}
.ws54{word-spacing:-2.064000pt;}
.ws67{word-spacing:-2.016000pt;}
.ws7d{word-spacing:-1.680000pt;}
.ws50{word-spacing:-1.632000pt;}
.ws2d{word-spacing:-1.536000pt;}
.ws18{word-spacing:-1.480000pt;}
.ws5e{word-spacing:-1.440000pt;}
.ws96{word-spacing:-1.344000pt;}
.ws6a{word-spacing:-1.200000pt;}
.ws68{word-spacing:-1.152000pt;}
.ws12{word-spacing:-0.960000pt;}
.ws89{word-spacing:-0.912000pt;}
.ws60{word-spacing:-0.768000pt;}
.ws10{word-spacing:-0.672000pt;}
.ws6d{word-spacing:-0.624000pt;}
.ws0{word-spacing:-0.597333pt;}
.wsc{word-spacing:-0.512000pt;}
.ws30{word-spacing:-0.480000pt;}
.ws3a{word-spacing:-0.400000pt;}
.ws56{word-spacing:-0.384000pt;}
.ws59{word-spacing:-0.336000pt;}
.ws5{word-spacing:-0.288000pt;}
.ws9{word-spacing:-0.246400pt;}
.ws21{word-spacing:-0.240000pt;}
.ws95{word-spacing:-0.192000pt;}
.wsb{word-spacing:-0.153600pt;}
.ws4d{word-spacing:-0.144000pt;}
.ws8{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.042667pt;}
.ws7b{word-spacing:0.096000pt;}
.ws63{word-spacing:0.144000pt;}
.ws9f{word-spacing:0.288000pt;}
.ws5d{word-spacing:0.336000pt;}
.ws8d{word-spacing:0.384000pt;}
.wsa7{word-spacing:0.432000pt;}
.ws5a{word-spacing:0.528000pt;}
.ws7e{word-spacing:0.576000pt;}
.ws4a{word-spacing:0.672000pt;}
.ws61{word-spacing:0.768000pt;}
.ws39{word-spacing:0.840000pt;}
.ws69{word-spacing:0.912000pt;}
.ws74{word-spacing:0.960000pt;}
.ws13{word-spacing:1.056000pt;}
.ws3b{word-spacing:1.080000pt;}
.ws73{word-spacing:1.152000pt;}
.ws70{word-spacing:1.248000pt;}
.ws1d{word-spacing:1.280000pt;}
.ws88{word-spacing:1.296000pt;}
.ws79{word-spacing:1.392000pt;}
.ws49{word-spacing:1.440000pt;}
.ws6e{word-spacing:1.584000pt;}
.ws43{word-spacing:1.600000pt;}
.ws16{word-spacing:1.680000pt;}
.ws24{word-spacing:1.728000pt;}
.ws3e{word-spacing:1.800000pt;}
.ws87{word-spacing:1.824000pt;}
.ws86{word-spacing:1.834667pt;}
.ws97{word-spacing:1.920000pt;}
.ws2f{word-spacing:1.968000pt;}
.ws23{word-spacing:1.984000pt;}
.ws17{word-spacing:2.064000pt;}
.ws8b{word-spacing:2.112000pt;}
.ws1c{word-spacing:2.120000pt;}
.ws4{word-spacing:2.149333pt;}
.ws28{word-spacing:2.208000pt;}
.wsd{word-spacing:2.304000pt;}
.ws6f{word-spacing:2.352000pt;}
.ws8c{word-spacing:2.448000pt;}
.ws19{word-spacing:2.480000pt;}
.ws36{word-spacing:2.496000pt;}
.ws8a{word-spacing:2.517333pt;}
.ws66{word-spacing:2.592000pt;}
.wsa{word-spacing:2.645333pt;}
.ws3f{word-spacing:2.680000pt;}
.ws55{word-spacing:2.688000pt;}
.ws65{word-spacing:2.736000pt;}
.ws84{word-spacing:2.773333pt;}
.wsa3{word-spacing:2.832000pt;}
.ws1b{word-spacing:2.840000pt;}
.ws76{word-spacing:2.880000pt;}
.ws29{word-spacing:2.976000pt;}
.ws75{word-spacing:3.000000pt;}
.ws6c{word-spacing:3.024000pt;}
.ws33{word-spacing:3.072000pt;}
.ws77{word-spacing:3.120000pt;}
.wse{word-spacing:3.157333pt;}
.ws38{word-spacing:3.160000pt;}
.ws5f{word-spacing:3.168000pt;}
.wsa8{word-spacing:3.216000pt;}
.ws80{word-spacing:3.242667pt;}
.ws99{word-spacing:3.264000pt;}
.wsf{word-spacing:3.312000pt;}
.ws14{word-spacing:3.456000pt;}
.ws78{word-spacing:3.504000pt;}
.ws7a{word-spacing:3.552000pt;}
.ws8e{word-spacing:3.600000pt;}
.ws7{word-spacing:3.637333pt;}
.ws8f{word-spacing:3.648000pt;}
.ws52{word-spacing:3.744000pt;}
.ws7c{word-spacing:3.792000pt;}
.wsa1{word-spacing:3.840000pt;}
.ws3c{word-spacing:3.920000pt;}
.ws46{word-spacing:3.936000pt;}
.ws48{word-spacing:3.984000pt;}
.ws6{word-spacing:4.048000pt;}
.ws31{word-spacing:4.176000pt;}
.ws62{word-spacing:4.272000pt;}
.ws4b{word-spacing:4.320000pt;}
.ws41{word-spacing:4.360000pt;}
.ws34{word-spacing:4.368000pt;}
.ws27{word-spacing:4.416000pt;}
.ws4c{word-spacing:4.464000pt;}
.ws64{word-spacing:4.560000pt;}
.ws11{word-spacing:4.608000pt;}
.ws1f{word-spacing:4.640000pt;}
.ws5c{word-spacing:4.656000pt;}
.ws2a{word-spacing:4.704000pt;}
.ws2b{word-spacing:4.752000pt;}
.ws85{word-spacing:4.821333pt;}
.ws91{word-spacing:4.848000pt;}
.ws2c{word-spacing:4.896000pt;}
.ws1e{word-spacing:4.920000pt;}
.wsa6{word-spacing:4.944000pt;}
.ws20{word-spacing:5.040000pt;}
.ws47{word-spacing:5.136000pt;}
.ws57{word-spacing:5.184000pt;}
.ws9b{word-spacing:5.232000pt;}
.ws83{word-spacing:5.248000pt;}
.ws5b{word-spacing:5.376000pt;}
.ws72{word-spacing:5.424000pt;}
.ws9a{word-spacing:5.472000pt;}
.ws81{word-spacing:5.546667pt;}
.ws51{word-spacing:5.568000pt;}
.ws40{word-spacing:5.600000pt;}
.ws26{word-spacing:5.616000pt;}
.ws32{word-spacing:5.760000pt;}
.wsa4{word-spacing:5.856000pt;}
.ws2e{word-spacing:5.904000pt;}
.ws4f{word-spacing:5.952000pt;}
.ws42{word-spacing:5.960000pt;}
.ws98{word-spacing:6.000000pt;}
.ws94{word-spacing:6.192000pt;}
.ws45{word-spacing:6.336000pt;}
.ws1a{word-spacing:6.360000pt;}
.ws9e{word-spacing:6.432000pt;}
.ws9d{word-spacing:6.480000pt;}
.ws93{word-spacing:6.528000pt;}
.ws3d{word-spacing:6.880000pt;}
.ws9c{word-spacing:7.008000pt;}
.ws35{word-spacing:7.056000pt;}
.ws82{word-spacing:7.082667pt;}
.ws92{word-spacing:7.104000pt;}
.wsa2{word-spacing:7.152000pt;}
.ws90{word-spacing:7.344000pt;}
._e{margin-left:-18.133760pt;}
._11{margin-left:-14.688000pt;}
._d{margin-left:-8.260000pt;}
._b{margin-left:-4.795200pt;}
._3{margin-left:-3.590400pt;}
._9{margin-left:-2.400000pt;}
._4{margin-left:-0.891733pt;}
._6{width:0.891413pt;}
._f{width:1.929600pt;}
._5{width:3.253760pt;}
._10{width:5.376000pt;}
._8{width:21.320000pt;}
._c{width:27.310400pt;}
._a{width:28.211733pt;}
._7{width:29.200000pt;}
._2{width:236.811733pt;}
._1{width:325.936000pt;}
._0{width:468.000000pt;}
.fs7{font-size:25.600000pt;}
.fs9{font-size:28.000000pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:33.600000pt;}
.fs1{font-size:34.666667pt;}
.fs4{font-size:35.200000pt;}
.fs8{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:86.929067pt;}
.y2{bottom:98.929067pt;}
.y74{bottom:128.504000pt;}
.y28{bottom:128.504133pt;}
.y27{bottom:141.170800pt;}
.yfc{bottom:143.858800pt;}
.y73{bottom:143.997867pt;}
.yd7{bottom:144.057733pt;}
.y52{bottom:153.837467pt;}
.yb2{bottom:155.447600pt;}
.y26{bottom:155.727200pt;}
.yfb{bottom:159.213733pt;}
.y72{bottom:159.491733pt;}
.yd6{bottom:163.391067pt;}
.y51{bottom:166.504133pt;}
.y25{bottom:168.393867pt;}
.yb1{bottom:169.719333pt;}
.yfa{bottom:178.348133pt;}
.yd5{bottom:178.944933pt;}
.y24{bottom:181.060533pt;}
.y50{bottom:181.060667pt;}
.yb0{bottom:183.991067pt;}
.y71{bottom:184.434533pt;}
.yf9{bottom:193.703067pt;}
.y23{bottom:193.727200pt;}
.y4f{bottom:193.727333pt;}
.yd4{bottom:194.498667pt;}
.yaf{bottom:198.262933pt;}
.y70{bottom:199.928400pt;}
.y22{bottom:206.393867pt;}
.y4e{bottom:206.394000pt;}
.yf8{bottom:209.057867pt;}
.yd3{bottom:210.052533pt;}
.y8c{bottom:216.897867pt;}
.y21{bottom:219.060533pt;}
.y4d{bottom:219.060667pt;}
.yae{bottom:221.983467pt;}
.yf7{bottom:224.412800pt;}
.yd2{bottom:225.606267pt;}
.y20{bottom:231.727200pt;}
.y4c{bottom:231.727333pt;}
.y8b{bottom:232.231200pt;}
.yad{bottom:237.588533pt;}
.yf6{bottom:239.767733pt;}
.y6f{bottom:239.989200pt;}
.yd1{bottom:241.160133pt;}
.y1f{bottom:244.393867pt;}
.y4b{bottom:244.394000pt;}
.y8a{bottom:247.564533pt;}
.yac{bottom:253.193733pt;}
.yf5{bottom:255.122533pt;}
.y6e{bottom:255.483200pt;}
.yd0{bottom:256.714000pt;}
.y4a{bottom:257.060667pt;}
.y1e{bottom:258.950267pt;}
.y89{bottom:262.897867pt;}
.yab{bottom:268.798800pt;}
.y49{bottom:269.727333pt;}
.yf4{bottom:270.477467pt;}
.y6d{bottom:270.977067pt;}
.y1d{bottom:271.616933pt;}
.ycf{bottom:272.267733pt;}
.y88{bottom:278.231200pt;}
.y48{bottom:282.394000pt;}
.yf3{bottom:285.832400pt;}
.y6c{bottom:286.470933pt;}
.yce{bottom:287.821600pt;}
.y87{bottom:293.564533pt;}
.y47{bottom:295.060667pt;}
.yaa{bottom:295.742400pt;}
.yf2{bottom:301.187200pt;}
.y6b{bottom:301.964933pt;}
.ycd{bottom:303.375467pt;}
.y1c{bottom:307.432800pt;}
.y46{bottom:307.727333pt;}
.y86{bottom:308.897867pt;}
.ya9{bottom:310.014267pt;}
.yf1{bottom:316.542133pt;}
.y6a{bottom:317.458800pt;}
.ycc{bottom:318.929200pt;}
.y45{bottom:320.394000pt;}
.y1b{bottom:322.766133pt;}
.y85{bottom:324.231200pt;}
.ya8{bottom:324.286000pt;}
.yf0{bottom:331.897067pt;}
.y69{bottom:332.952667pt;}
.ycb{bottom:334.483067pt;}
.y44{bottom:334.950533pt;}
.y1a{bottom:338.099467pt;}
.ya7{bottom:338.557733pt;}
.y84{bottom:339.564533pt;}
.yef{bottom:347.251867pt;}
.y43{bottom:347.617200pt;}
.y68{bottom:348.446667pt;}
.yca{bottom:350.036800pt;}
.ya6{bottom:352.829467pt;}
.y19{bottom:353.432800pt;}
.y83{bottom:354.897867pt;}
.yee{bottom:362.606800pt;}
.y67{bottom:363.940533pt;}
.yc9{bottom:365.590667pt;}
.ya5{bottom:367.101200pt;}
.y18{bottom:368.766133pt;}
.y82{bottom:370.231200pt;}
.yc8{bottom:381.144533pt;}
.ya4{bottom:381.373067pt;}
.y17{bottom:384.099467pt;}
.y81{bottom:385.564533pt;}
.y66{bottom:388.883200pt;}
.yed{bottom:391.190000pt;}
.y42{bottom:393.123600pt;}
.ya3{bottom:395.644800pt;}
.yc7{bottom:396.698267pt;}
.y16{bottom:399.432800pt;}
.y80{bottom:404.677467pt;}
.y41{bottom:408.456933pt;}
.ya2{bottom:409.916533pt;}
.yc6{bottom:412.252133pt;}
.y7f{bottom:420.010800pt;}
.y15{bottom:422.325200pt;}
.y40{bottom:423.790267pt;}
.ya1{bottom:424.188267pt;}
.y65{bottom:428.944133pt;}
.yc5{bottom:431.585467pt;}
.yec{bottom:434.891467pt;}
.y7e{bottom:435.344133pt;}
.ya0{bottom:438.460000pt;}
.y3f{bottom:439.123600pt;}
.y64{bottom:444.438000pt;}
.yc4{bottom:447.139200pt;}
.yeb{bottom:450.246267pt;}
.y7d{bottom:450.677467pt;}
.y9f{bottom:452.731867pt;}
.y3e{bottom:454.456933pt;}
.y63{bottom:459.931867pt;}
.yc3{bottom:462.693067pt;}
.y14{bottom:464.115200pt;}
.y7c{bottom:466.010800pt;}
.yea{bottom:469.380667pt;}
.y3d{bottom:469.790267pt;}
.y62{bottom:475.425733pt;}
.y9e{bottom:476.452400pt;}
.y13{bottom:478.115200pt;}
.yc2{bottom:478.246933pt;}
.y7b{bottom:481.344133pt;}
.ye9{bottom:484.735600pt;}
.y3c{bottom:485.123600pt;}
.y61{bottom:490.919733pt;}
.y9d{bottom:492.057467pt;}
.y12{bottom:492.115200pt;}
.yc1{bottom:493.800667pt;}
.y7a{bottom:496.677467pt;}
.ye8{bottom:500.090533pt;}
.y3b{bottom:500.456933pt;}
.y11{bottom:506.115200pt;}
.y60{bottom:506.413600pt;}
.y9c{bottom:507.662533pt;}
.yc0{bottom:509.354533pt;}
.y79{bottom:512.010800pt;}
.ye7{bottom:515.445333pt;}
.y3a{bottom:515.790267pt;}
.y5f{bottom:521.907600pt;}
.y9b{bottom:523.267733pt;}
.ybf{bottom:524.908267pt;}
.y78{bottom:527.344133pt;}
.ye6{bottom:530.800267pt;}
.y39{bottom:531.123600pt;}
.y5e{bottom:537.401467pt;}
.y9a{bottom:538.872800pt;}
.ybe{bottom:540.462133pt;}
.ye5{bottom:546.155200pt;}
.y38{bottom:546.456933pt;}
.y5d{bottom:552.895333pt;}
.ybd{bottom:556.016000pt;}
.yf{bottom:557.910533pt;}
.y99{bottom:558.257467pt;}
.y10{bottom:561.430533pt;}
.ye4{bottom:561.510133pt;}
.y37{bottom:561.790267pt;}
.y5c{bottom:568.389200pt;}
.ye{bottom:571.243867pt;}
.y98{bottom:573.862533pt;}
.ybc{bottom:575.349333pt;}
.ye3{bottom:576.864933pt;}
.y36{bottom:577.123600pt;}
.y5b{bottom:583.883200pt;}
.yd{bottom:586.466933pt;}
.y1{bottom:587.124400pt;}
.y97{bottom:589.467600pt;}
.ybb{bottom:590.903067pt;}
.ye2{bottom:592.219867pt;}
.y35{bottom:592.456933pt;}
.y96{bottom:605.072667pt;}
.yba{bottom:606.456933pt;}
.ye1{bottom:607.574800pt;}
.y34{bottom:607.790267pt;}
.y5a{bottom:612.605467pt;}
.y95{bottom:620.677867pt;}
.yb9{bottom:622.010800pt;}
.y33{bottom:623.123600pt;}
.ye0{bottom:626.709200pt;}
.y59{bottom:628.099333pt;}
.yb{bottom:632.036533pt;}
.y94{bottom:636.282933pt;}
.yc{bottom:636.876533pt;}
.y32{bottom:638.456933pt;}
.ydf{bottom:642.064000pt;}
.y77{bottom:642.236533pt;}
.yb8{bottom:647.013333pt;}
.ya{bottom:650.703200pt;}
.y93{bottom:651.888000pt;}
.y31{bottom:653.790267pt;}
.yde{bottom:657.418933pt;}
.y76{bottom:657.569867pt;}
.y92{bottom:667.493067pt;}
.y30{bottom:669.123600pt;}
.y9{bottom:669.369867pt;}
.y58{bottom:671.939733pt;}
.ydd{bottom:672.773867pt;}
.y75{bottom:672.903200pt;}
.y91{bottom:686.877733pt;}
.yb7{bottom:687.134133pt;}
.y57{bottom:687.433600pt;}
.y8{bottom:688.036533pt;}
.ydc{bottom:688.128800pt;}
.y2f{bottom:688.236533pt;}
.y90{bottom:702.482800pt;}
.yb6{bottom:702.687867pt;}
.y56{bottom:702.927600pt;}
.ydb{bottom:703.483600pt;}
.y2e{bottom:703.569867pt;}
.y7{bottom:706.703200pt;}
.y8f{bottom:718.087867pt;}
.yb5{bottom:718.241733pt;}
.y55{bottom:718.421467pt;}
.yda{bottom:718.838533pt;}
.y2d{bottom:718.903200pt;}
.y6{bottom:725.369867pt;}
.y8e{bottom:733.692933pt;}
.yb4{bottom:733.795600pt;}
.y54{bottom:733.915333pt;}
.yd9{bottom:734.193333pt;}
.y2c{bottom:734.236533pt;}
.y5{bottom:744.036533pt;}
.y8d{bottom:749.298133pt;}
.yb3{bottom:749.349333pt;}
.y53{bottom:749.409200pt;}
.yd8{bottom:749.548267pt;}
.y2b{bottom:749.569867pt;}
.y4{bottom:762.703200pt;}
.y2a{bottom:764.903200pt;}
.y29{bottom:805.998400pt;}
.h9{height:25.676800pt;}
.hc{height:32.096000pt;}
.h3{height:34.770667pt;}
.h6{height:36.291200pt;}
.hb{height:40.120000pt;}
.h8{height:42.794667pt;}
.h7{height:46.416000pt;}
.h4{height:48.144000pt;}
.ha{height:49.488000pt;}
.hd{height:58.842667pt;}
.h5{height:60.485333pt;}
.h2{height:87.978667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:113.385867pt;}
.x5{left:117.766800pt;}
.x4{left:124.526000pt;}
.x10{left:129.072133pt;}
.x11{left:130.545733pt;}
.x7{left:133.162400pt;}
.x8{left:136.871733pt;}
.xe{left:139.842533pt;}
.x3{left:147.750267pt;}
.x12{left:166.299200pt;}
.x1{left:224.800133pt;}
.xc{left:227.494933pt;}
.xb{left:228.996533pt;}
.x6{left:242.499333pt;}
.xa{left:266.752933pt;}
.xf{left:274.444533pt;}
.x13{left:297.123333pt;}
.xd{left:403.655733pt;}
.x9{left:518.318667pt;}
}




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