
    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_bf69dc9c8040e9a122167f80.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899414;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_8110088d615734a4985dd3c3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_cadbba09921753e480596c13.woff')format("woff");}.ff3{font-family:ff3;line-height:0.683594;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_8eaa2d78b6911363b9223c4a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.866211;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_4a5e2ba9532fbb5c626130f4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.899414;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:ff6;src:url('chunks/assets/font_260a3ad4ba80201c6a0e2d8a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.995605;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.v5{vertical-align:-33.600000px;}
.v4{vertical-align:-22.200000px;}
.v6{vertical-align:-14.304000px;}
.v7{vertical-align:-13.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.688000px;}
.ls20{letter-spacing:-2.808000px;}
.ls3e{letter-spacing:-2.520000px;}
.ls4f{letter-spacing:-1.872000px;}
.ls50{letter-spacing:-1.800000px;}
.ls3b{letter-spacing:-1.728000px;}
.ls3c{letter-spacing:-1.656000px;}
.ls57{letter-spacing:-1.452000px;}
.ls58{letter-spacing:-1.320000px;}
.ls21{letter-spacing:-1.296000px;}
.ls22{letter-spacing:-1.224000px;}
.ls23{letter-spacing:-1.080000px;}
.ls4e{letter-spacing:-1.008000px;}
.ls61{letter-spacing:-0.990000px;}
.ls4a{letter-spacing:-0.936000px;}
.ls51{letter-spacing:-0.855000px;}
.ls24{letter-spacing:-0.720000px;}
.ls59{letter-spacing:-0.660000px;}
.ls56{letter-spacing:-0.648000px;}
.ls3d{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.570000px;}
.ls30{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.360000px;}
.ls60{letter-spacing:-0.330000px;}
.ls12{letter-spacing:-0.288000px;}
.ls31{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.072000px;}
.ls48{letter-spacing:-0.043200px;}
.lsb{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.057000px;}
.ls41{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.ls55{letter-spacing:0.264000px;}
.ls35{letter-spacing:0.285000px;}
.lsd{letter-spacing:0.288000px;}
.ls42{letter-spacing:0.300000px;}
.ls5b{letter-spacing:0.330000px;}
.ls37{letter-spacing:0.342000px;}
.ls8{letter-spacing:0.360000px;}
.ls38{letter-spacing:0.425400px;}
.ls6{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.648000px;}
.ls49{letter-spacing:0.720000px;}
.ls5d{letter-spacing:0.726000px;}
.ls47{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.864000px;}
.ls46{letter-spacing:0.936000px;}
.ls5c{letter-spacing:0.990000px;}
.ls45{letter-spacing:1.008000px;}
.lsa{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.368000px;}
.ls33{letter-spacing:1.512000px;}
.ls2f{letter-spacing:1.539000px;}
.ls1c{letter-spacing:2.520000px;}
.ls4d{letter-spacing:2.736000px;}
.ls18{letter-spacing:2.880000px;}
.ls36{letter-spacing:2.964000px;}
.ls5f{letter-spacing:3.300000px;}
.ls19{letter-spacing:3.384000px;}
.ls1e{letter-spacing:3.477000px;}
.ls5e{letter-spacing:3.723000px;}
.ls4c{letter-spacing:3.888000px;}
.ls1a{letter-spacing:3.960000px;}
.ls25{letter-spacing:4.104000px;}
.ls0{letter-spacing:4.200000px;}
.ls3{letter-spacing:4.380000px;}
.ls2b{letter-spacing:4.464000px;}
.ls2a{letter-spacing:4.608000px;}
.ls15{letter-spacing:4.752000px;}
.ls43{letter-spacing:4.822800px;}
.ls39{letter-spacing:4.824000px;}
.ls32{letter-spacing:5.040000px;}
.ls44{letter-spacing:5.100000px;}
.ls26{letter-spacing:5.112000px;}
.ls4b{letter-spacing:5.400000px;}
.ls10{letter-spacing:5.544000px;}
.ls52{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls2c{letter-spacing:7.344000px;}
.ls16{letter-spacing:8.856000px;}
.ls34{letter-spacing:8.928000px;}
.ls2e{letter-spacing:9.000000px;}
.lse{letter-spacing:9.216000px;}
.ls1b{letter-spacing:10.152000px;}
.ls2{letter-spacing:10.200000px;}
.ls11{letter-spacing:10.224000px;}
.ls29{letter-spacing:10.368000px;}
.ls2d{letter-spacing:10.656000px;}
.ls53{letter-spacing:10.956000px;}
.ls5a{letter-spacing:11.286000px;}
.ls54{letter-spacing:15.642000px;}
.ls3a{letter-spacing:38.923200px;}
.ls3f{letter-spacing:38.923800px;}
.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;}
}
.ws37{word-spacing:-29.502000px;}
.ws1{word-spacing:-27.432000px;}
.ws34{word-spacing:-22.860000px;}
.ws11{word-spacing:-20.304000px;}
.ws12{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.088000px;}
.wsf{word-spacing:-19.872000px;}
.ws23{word-spacing:-19.512000px;}
.ws29{word-spacing:-18.648000px;}
.ws35{word-spacing:-18.546000px;}
.ws2d{word-spacing:-18.432000px;}
.ws1a{word-spacing:-18.360000px;}
.ws3{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.ws1c{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.640000px;}
.ws1d{word-spacing:-17.568000px;}
.ws9{word-spacing:-17.424000px;}
.ws14{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.860000px;}
.ws15{word-spacing:-16.704000px;}
.ws38{word-spacing:-16.302000px;}
.ws24{word-spacing:-16.128000px;}
.wse{word-spacing:-16.017000px;}
.ws2e{word-spacing:-15.984000px;}
.ws2c{word-spacing:-15.120000px;}
.ws16{word-spacing:-14.079000px;}
.ws31{word-spacing:-13.509000px;}
.ws2f{word-spacing:-13.224000px;}
.ws2{word-spacing:-12.139200px;}
.ws2b{word-spacing:-12.096000px;}
.ws21{word-spacing:-11.923200px;}
.ws25{word-spacing:-11.707200px;}
.ws33{word-spacing:-11.491200px;}
.ws36{word-spacing:-11.127600px;}
.ws28{word-spacing:-9.610200px;}
.ws2a{word-spacing:-0.864000px;}
.ws18{word-spacing:-0.648000px;}
.ws19{word-spacing:-0.576000px;}
.ws1e{word-spacing:-0.504000px;}
.ws26{word-spacing:-0.432000px;}
.ws17{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.144000px;}
.ws7{word-spacing:-0.072000px;}
.ws27{word-spacing:-0.057000px;}
.ws4{word-spacing:0.000000px;}
.ws1f{word-spacing:0.072000px;}
.ws8{word-spacing:0.288000px;}
.ws32{word-spacing:0.513000px;}
.ws22{word-spacing:0.648000px;}
.ws30{word-spacing:0.798000px;}
.ws20{word-spacing:1.008000px;}
.ws13{word-spacing:1.152000px;}
._10{margin-left:-18.816000px;}
._16{margin-left:-17.748000px;}
._14{margin-left:-14.641800px;}
._15{margin-left:-11.586000px;}
._7{margin-left:-10.200000px;}
._8{margin-left:-8.670000px;}
._6{margin-left:-7.650000px;}
._a{margin-left:-5.886000px;}
._0{margin-left:-3.906000px;}
._1{margin-left:-2.640000px;}
._3{margin-left:-1.386000px;}
._4{width:1.146000px;}
._9{width:3.109800px;}
._2{width:4.686000px;}
._c{width:6.066000px;}
._5{width:7.242000px;}
._e{width:8.556000px;}
._b{width:10.008000px;}
._d{width:11.092200px;}
._13{width:12.192000px;}
._12{width:13.416000px;}
._11{width:38.923200px;}
._f{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:34.200000px;}
.fs8{font-size:36.000000px;}
.fsb{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs5{font-size:43.800000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.337550px;}
.y45{bottom:140.305650px;}
.yda{bottom:140.308650px;}
.y9b{bottom:140.310150px;}
.y69{bottom:140.311650px;}
.y16d{bottom:143.806050px;}
.y21{bottom:145.863150px;}
.y44{bottom:156.807150px;}
.yd9{bottom:156.810150px;}
.y9a{bottom:156.811650px;}
.y16c{bottom:162.106050px;}
.y68{bottom:162.363150px;}
.y43{bottom:173.308650px;}
.y67{bottom:173.311650px;}
.y20{bottom:175.136700px;}
.y99{bottom:178.863150px;}
.y16b{bottom:180.406050px;}
.y42{bottom:189.810150px;}
.yb8{bottom:189.811650px;}
.y66{bottom:195.363150px;}
.y1f{bottom:196.430700px;}
.y16a{bottom:198.706050px;}
.y41{bottom:206.311650px;}
.yd8{bottom:206.313150px;}
.y14c{bottom:211.643100px;}
.y65{bottom:211.863150px;}
.y1e{bottom:217.724700px;}
.yb7{bottom:222.811650px;}
.yd7{bottom:222.813150px;}
.y40{bottom:228.363150px;}
.y14b{bottom:231.146100px;}
.y98{bottom:231.778500px;}
.y1d{bottom:238.730700px;}
.y169{bottom:238.906050px;}
.yfb{bottom:239.305650px;}
.yd6{bottom:239.310150px;}
.y3f{bottom:244.863150px;}
.y14a{bottom:250.649100px;}
.y64{bottom:253.228500px;}
.y97{bottom:253.522500px;}
.yfa{bottom:255.807150px;}
.y3e{bottom:255.810150px;}
.yd5{bottom:255.811650px;}
.y1c{bottom:259.736700px;}
.y12e{bottom:262.952550px;}
.y81{bottom:269.288550px;}
.y149{bottom:270.152100px;}
.yf9{bottom:272.308650px;}
.y3d{bottom:272.311650px;}
.y96{bottom:275.266500px;}
.y63{bottom:275.278500px;}
.yd4{bottom:277.863150px;}
.yb6{bottom:280.358550px;}
.y1b{bottom:280.742700px;}
.y12d{bottom:284.696550px;}
.y168{bottom:286.360050px;}
.yf8{bottom:288.810150px;}
.yd3{bottom:288.811650px;}
.y148{bottom:289.655100px;}
.y80{bottom:290.582550px;}
.y3c{bottom:294.363150px;}
.y95{bottom:297.010500px;}
.y62{bottom:297.022500px;}
.yb5{bottom:301.202550px;}
.y1a{bottom:301.748700px;}
.yf7{bottom:305.311650px;}
.y12c{bottom:306.440550px;}
.y167{bottom:306.457050px;}
.y147{bottom:309.158100px;}
.yd2{bottom:310.863150px;}
.y7f{bottom:311.876550px;}
.y94{bottom:318.754500px;}
.y61{bottom:318.766500px;}
.yb4{bottom:322.658550px;}
.y19{bottom:322.754700px;}
.y166{bottom:326.554050px;}
.yf6{bottom:327.363150px;}
.y12b{bottom:328.184550px;}
.y146{bottom:328.661100px;}
.y7e{bottom:333.170550px;}
.y3b{bottom:333.176550px;}
.yf5{bottom:338.311650px;}
.y93{bottom:340.498500px;}
.y60{bottom:340.510500px;}
.y18{bottom:343.760700px;}
.yb3{bottom:344.114550px;}
.y165{bottom:346.651050px;}
.yd1{bottom:348.146550px;}
.y145{bottom:348.164100px;}
.y12a{bottom:349.640550px;}
.y7d{bottom:354.464550px;}
.y3a{bottom:354.470550px;}
.yf4{bottom:360.363150px;}
.y92{bottom:362.242500px;}
.y5f{bottom:362.254500px;}
.y112{bottom:363.596550px;}
.y17{bottom:364.766700px;}
.yb2{bottom:365.432550px;}
.y164{bottom:366.748050px;}
.y144{bottom:367.667100px;}
.yd0{bottom:369.152550px;}
.y129{bottom:371.096550px;}
.y7c{bottom:375.470550px;}
.y39{bottom:375.764550px;}
.y91{bottom:383.986500px;}
.y5e{bottom:383.998500px;}
.y111{bottom:384.602550px;}
.y16{bottom:385.772700px;}
.yb1{bottom:386.726550px;}
.y163{bottom:386.845050px;}
.y143{bottom:387.170100px;}
.ycf{bottom:390.158550px;}
.y128{bottom:392.552550px;}
.y38{bottom:397.058550px;}
.y7b{bottom:397.214550px;}
.yf3{bottom:402.514500px;}
.y110{bottom:405.590550px;}
.y90{bottom:405.730500px;}
.y5d{bottom:405.742500px;}
.y142{bottom:406.673100px;}
.y15{bottom:406.778700px;}
.y162{bottom:406.942050px;}
.yb0{bottom:408.020550px;}
.yce{bottom:411.164550px;}
.y127{bottom:414.008550px;}
.y37{bottom:418.208550px;}
.y7a{bottom:419.036550px;}
.yf2{bottom:423.664500px;}
.y141{bottom:426.176100px;}
.y10f{bottom:426.596550px;}
.y161{bottom:427.039050px;}
.y8f{bottom:427.474500px;}
.y5c{bottom:427.486500px;}
.y14{bottom:427.784700px;}
.yaf{bottom:429.314550px;}
.ycd{bottom:430.964550px;}
.y126{bottom:435.608550px;}
.y36{bottom:439.358550px;}
.y79{bottom:440.780550px;}
.yf1{bottom:444.670500px;}
.y140{bottom:445.679100px;}
.y160{bottom:447.136050px;}
.y10e{bottom:447.602550px;}
.y13{bottom:448.790700px;}
.y8e{bottom:449.218500px;}
.y5b{bottom:449.230500px;}
.yae{bottom:450.632550px;}
.ycc{bottom:451.358550px;}
.y125{bottom:457.208550px;}
.y78{bottom:462.524550px;}
.y13f{bottom:465.182100px;}
.yf0{bottom:465.676500px;}
.y15f{bottom:467.233050px;}
.y35{bottom:469.012500px;}
.y10d{bottom:469.484550px;}
.y12{bottom:469.796700px;}
.y5a{bottom:470.974500px;}
.y8d{bottom:471.034500px;}
.yad{bottom:471.926550px;}
.y124{bottom:478.808550px;}
.ycb{bottom:480.268500px;}
.y77{bottom:484.268550px;}
.y13e{bottom:484.685100px;}
.yef{bottom:486.682500px;}
.y15e{bottom:487.330050px;}
.y34{bottom:490.162500px;}
.y11{bottom:490.802700px;}
.y10c{bottom:491.084550px;}
.y59{bottom:492.718500px;}
.y8c{bottom:492.778500px;}
.yac{bottom:493.220550px;}
.y123{bottom:500.408550px;}
.yca{bottom:500.662500px;}
.y13d{bottom:504.188100px;}
.y76{bottom:506.012550px;}
.y15d{bottom:507.427050px;}
.yee{bottom:507.688500px;}
.y10{bottom:511.808700px;}
.y10b{bottom:512.684550px;}
.y58{bottom:514.510500px;}
.yab{bottom:514.514550px;}
.y8b{bottom:514.522500px;}
.y122{bottom:522.008550px;}
.y13c{bottom:523.691100px;}
.y15c{bottom:527.524050px;}
.y75{bottom:527.756550px;}
.yed{bottom:528.694500px;}
.yf{bottom:532.814700px;}
.y10a{bottom:534.284550px;}
.yaa{bottom:535.850550px;}
.y57{bottom:536.254500px;}
.y8a{bottom:536.266500px;}
.y13b{bottom:543.194100px;}
.y121{bottom:543.608550px;}
.y15b{bottom:547.621050px;}
.y74{bottom:549.500550px;}
.yec{bottom:549.700500px;}
.ye{bottom:553.820700px;}
.y109{bottom:555.884550px;}
.ya9{bottom:557.144550px;}
.y56{bottom:557.998500px;}
.y89{bottom:558.010500px;}
.y13a{bottom:562.697100px;}
.y120{bottom:565.208550px;}
.y15a{bottom:567.718050px;}
.y33{bottom:568.162500px;}
.yeb{bottom:570.706500px;}
.y73{bottom:571.244550px;}
.yc9{bottom:573.298500px;}
.yd{bottom:574.826700px;}
.y108{bottom:577.340550px;}
.ya8{bottom:578.438550px;}
.y55{bottom:579.742500px;}
.y88{bottom:579.754500px;}
.y139{bottom:582.200100px;}
.y11f{bottom:586.808550px;}
.y159{bottom:587.815050px;}
.y32{bottom:589.312500px;}
.yea{bottom:591.640500px;}
.y72{bottom:592.988550px;}
.yc8{bottom:594.142500px;}
.yc{bottom:595.832700px;}
.y107{bottom:598.346550px;}
.ya7{bottom:599.732550px;}
.y54{bottom:601.486500px;}
.y87{bottom:601.498500px;}
.y138{bottom:601.851600px;}
.y158{bottom:607.912050px;}
.y11e{bottom:608.408550px;}
.y31{bottom:610.462500px;}
.ye9{bottom:612.646500px;}
.y71{bottom:614.732550px;}
.yc7{bottom:614.986500px;}
.yb{bottom:616.838700px;}
.y106{bottom:619.352550px;}
.ya6{bottom:621.026550px;}
.y137{bottom:621.503100px;}
.y53{bottom:623.230500px;}
.y86{bottom:623.242500px;}
.y157{bottom:628.009050px;}
.y30{bottom:631.612500px;}
.ye8{bottom:633.652500px;}
.yc6{bottom:635.830500px;}
.y70{bottom:636.476550px;}
.ya{bottom:637.832700px;}
.y11d{bottom:638.512500px;}
.y105{bottom:640.340550px;}
.y136{bottom:641.154600px;}
.ya5{bottom:642.320550px;}
.y52{bottom:644.974500px;}
.y85{bottom:644.986500px;}
.y156{bottom:648.106050px;}
.y2f{bottom:652.762500px;}
.ye7{bottom:654.658500px;}
.yc5{bottom:656.674500px;}
.y6f{bottom:658.220550px;}
.y9{bottom:658.838700px;}
.y104{bottom:661.346550px;}
.ya4{bottom:663.614550px;}
.y51{bottom:666.718500px;}
.y84{bottom:666.730500px;}
.y135{bottom:669.308550px;}
.y2e{bottom:673.912500px;}
.ye6{bottom:675.664500px;}
.yc4{bottom:677.518500px;}
.y8{bottom:679.844700px;}
.y6e{bottom:679.964550px;}
.y103{bottom:682.352550px;}
.ya3{bottom:684.908550px;}
.y155{bottom:688.306050px;}
.y83{bottom:688.474500px;}
.y50{bottom:688.528500px;}
.y2d{bottom:695.062500px;}
.ye5{bottom:696.670500px;}
.yc3{bottom:698.386500px;}
.y6d{bottom:701.708550px;}
.y102{bottom:703.358550px;}
.y7{bottom:709.348500px;}
.y82{bottom:710.218500px;}
.y4f{bottom:710.272500px;}
.y11c{bottom:711.712500px;}
.ya2{bottom:714.718500px;}
.y2c{bottom:716.212500px;}
.y154{bottom:716.904000px;}
.ye4{bottom:717.676500px;}
.y134{bottom:717.694500px;}
.yc2{bottom:719.230500px;}
.y6c{bottom:731.968500px;}
.y4e{bottom:732.016500px;}
.y101{bottom:732.862500px;}
.y11b{bottom:733.312500px;}
.ya1{bottom:736.012500px;}
.y2b{bottom:737.362500px;}
.ye3{bottom:738.682500px;}
.y133{bottom:738.700500px;}
.y153{bottom:738.810000px;}
.yc1{bottom:740.074500px;}
.y6b{bottom:753.712500px;}
.y4d{bottom:753.760500px;}
.y11a{bottom:754.912500px;}
.y2a{bottom:758.512500px;}
.ye2{bottom:759.688500px;}
.y132{bottom:759.706500px;}
.yc0{bottom:760.918500px;}
.y4c{bottom:775.504500px;}
.y119{bottom:776.512500px;}
.y29{bottom:779.662500px;}
.y131{bottom:780.670500px;}
.ye1{bottom:780.694500px;}
.ybf{bottom:781.798500px;}
.y6{bottom:784.348500px;}
.y152{bottom:795.510000px;}
.y4b{bottom:797.248500px;}
.y118{bottom:798.112500px;}
.y28{bottom:800.812500px;}
.y130{bottom:801.676500px;}
.y100{bottom:801.682500px;}
.ye0{bottom:801.700500px;}
.ybe{bottom:802.642500px;}
.y4a{bottom:818.992500px;}
.y117{bottom:819.712500px;}
.ya0{bottom:821.242500px;}
.y27{bottom:821.962500px;}
.y12f{bottom:822.682500px;}
.yff{bottom:822.688500px;}
.ydf{bottom:822.706500px;}
.ybd{bottom:823.486500px;}
.y5{bottom:827.541150px;}
.y151{bottom:828.225000px;}
.y6a{bottom:840.718500px;}
.y49{bottom:840.736500px;}
.y116{bottom:841.312500px;}
.y9f{bottom:842.536500px;}
.y26{bottom:843.112500px;}
.yde{bottom:843.688500px;}
.yfe{bottom:843.694500px;}
.ybc{bottom:844.330500px;}
.y150{bottom:848.322000px;}
.y4{bottom:857.248650px;}
.y48{bottom:862.480500px;}
.y115{bottom:862.912500px;}
.y9e{bottom:863.830500px;}
.y25{bottom:864.262500px;}
.ydd{bottom:864.694500px;}
.yfd{bottom:864.700500px;}
.ybb{bottom:865.174500px;}
.y14f{bottom:868.419000px;}
.y47{bottom:884.224500px;}
.y114{bottom:884.512500px;}
.y9d{bottom:885.124500px;}
.y24{bottom:885.412500px;}
.ydc{bottom:885.700500px;}
.yfc{bottom:885.706500px;}
.yba{bottom:886.018500px;}
.y14e{bottom:888.516000px;}
.y46{bottom:905.968500px;}
.y113{bottom:906.112500px;}
.y9c{bottom:906.418500px;}
.y23{bottom:906.562500px;}
.ydb{bottom:906.706500px;}
.yb9{bottom:906.868500px;}
.y14d{bottom:908.613000px;}
.y3{bottom:911.610000px;}
.y22{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.hb{height:26.199902px;}
.h10{height:30.568359px;}
.h3{height:35.663086px;}
.h7{height:37.191504px;}
.h2{height:39.990234px;}
.hc{height:40.757812px;}
.h1a{height:43.306641px;}
.h4{height:43.989258px;}
.h16{height:45.585938px;}
.hd{height:48.399902px;}
.h23{height:50.144531px;}
.h5{height:50.947266px;}
.h15{height:50.959266px;}
.h8{height:56.041992px;}
.h9{height:61.136719px;}
.h1b{height:61.160719px;}
.ha{height:61.184719px;}
.h1d{height:61.208719px;}
.h1e{height:61.232719px;}
.h1c{height:61.256719px;}
.h19{height:61.328719px;}
.h18{height:61.424719px;}
.h11{height:63.010031px;}
.he{height:63.058031px;}
.hf{height:63.130031px;}
.h14{height:63.178031px;}
.h12{height:63.226031px;}
.h13{height:63.298031px;}
.h21{height:63.322031px;}
.h20{height:63.370031px;}
.h1f{height:63.394031px;}
.h17{height:63.418031px;}
.h22{height:63.490031px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:76.537200px;}
.x1{left:97.795350px;}
.x4{left:119.072100px;}
.x8{left:133.946550px;}
.x9{left:140.315700px;}
.x2{left:150.670350px;}
.xb{left:154.610850px;}
.x3{left:216.933000px;}
.x5{left:288.157800px;}
.xa{left:518.943600px;}
.x6{left:572.164350px;}
@media print{
.v5{vertical-align:-29.866667pt;}
.v4{vertical-align:-19.733333pt;}
.v6{vertical-align:-12.714667pt;}
.v7{vertical-align:-11.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.722667pt;}
.ls20{letter-spacing:-2.496000pt;}
.ls3e{letter-spacing:-2.240000pt;}
.ls4f{letter-spacing:-1.664000pt;}
.ls50{letter-spacing:-1.600000pt;}
.ls3b{letter-spacing:-1.536000pt;}
.ls3c{letter-spacing:-1.472000pt;}
.ls57{letter-spacing:-1.290667pt;}
.ls58{letter-spacing:-1.173333pt;}
.ls21{letter-spacing:-1.152000pt;}
.ls22{letter-spacing:-1.088000pt;}
.ls23{letter-spacing:-0.960000pt;}
.ls4e{letter-spacing:-0.896000pt;}
.ls61{letter-spacing:-0.880000pt;}
.ls4a{letter-spacing:-0.832000pt;}
.ls51{letter-spacing:-0.760000pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls59{letter-spacing:-0.586667pt;}
.ls56{letter-spacing:-0.576000pt;}
.ls3d{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.506667pt;}
.ls30{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls60{letter-spacing:-0.293333pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls31{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls48{letter-spacing:-0.038400pt;}
.lsb{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.050667pt;}
.ls41{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls55{letter-spacing:0.234667pt;}
.ls35{letter-spacing:0.253333pt;}
.lsd{letter-spacing:0.256000pt;}
.ls42{letter-spacing:0.266667pt;}
.ls5b{letter-spacing:0.293333pt;}
.ls37{letter-spacing:0.304000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls38{letter-spacing:0.378133pt;}
.ls6{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.576000pt;}
.ls49{letter-spacing:0.640000pt;}
.ls5d{letter-spacing:0.645333pt;}
.ls47{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls46{letter-spacing:0.832000pt;}
.ls5c{letter-spacing:0.880000pt;}
.ls45{letter-spacing:0.896000pt;}
.lsa{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.216000pt;}
.ls33{letter-spacing:1.344000pt;}
.ls2f{letter-spacing:1.368000pt;}
.ls1c{letter-spacing:2.240000pt;}
.ls4d{letter-spacing:2.432000pt;}
.ls18{letter-spacing:2.560000pt;}
.ls36{letter-spacing:2.634667pt;}
.ls5f{letter-spacing:2.933333pt;}
.ls19{letter-spacing:3.008000pt;}
.ls1e{letter-spacing:3.090667pt;}
.ls5e{letter-spacing:3.309333pt;}
.ls4c{letter-spacing:3.456000pt;}
.ls1a{letter-spacing:3.520000pt;}
.ls25{letter-spacing:3.648000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3{letter-spacing:3.893333pt;}
.ls2b{letter-spacing:3.968000pt;}
.ls2a{letter-spacing:4.096000pt;}
.ls15{letter-spacing:4.224000pt;}
.ls43{letter-spacing:4.286933pt;}
.ls39{letter-spacing:4.288000pt;}
.ls32{letter-spacing:4.480000pt;}
.ls44{letter-spacing:4.533333pt;}
.ls26{letter-spacing:4.544000pt;}
.ls4b{letter-spacing:4.800000pt;}
.ls10{letter-spacing:4.928000pt;}
.ls52{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls2c{letter-spacing:6.528000pt;}
.ls16{letter-spacing:7.872000pt;}
.ls34{letter-spacing:7.936000pt;}
.ls2e{letter-spacing:8.000000pt;}
.lse{letter-spacing:8.192000pt;}
.ls1b{letter-spacing:9.024000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls11{letter-spacing:9.088000pt;}
.ls29{letter-spacing:9.216000pt;}
.ls2d{letter-spacing:9.472000pt;}
.ls53{letter-spacing:9.738667pt;}
.ls5a{letter-spacing:10.032000pt;}
.ls54{letter-spacing:13.904000pt;}
.ls3a{letter-spacing:34.598400pt;}
.ls3f{letter-spacing:34.598933pt;}
.ws37{word-spacing:-26.224000pt;}
.ws1{word-spacing:-24.384000pt;}
.ws34{word-spacing:-20.320000pt;}
.ws11{word-spacing:-18.048000pt;}
.ws12{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.856000pt;}
.wsf{word-spacing:-17.664000pt;}
.ws23{word-spacing:-17.344000pt;}
.ws29{word-spacing:-16.576000pt;}
.ws35{word-spacing:-16.485333pt;}
.ws2d{word-spacing:-16.384000pt;}
.ws1a{word-spacing:-16.320000pt;}
.ws3{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws1c{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.680000pt;}
.ws1d{word-spacing:-15.616000pt;}
.ws9{word-spacing:-15.488000pt;}
.ws14{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws15{word-spacing:-14.848000pt;}
.ws38{word-spacing:-14.490667pt;}
.ws24{word-spacing:-14.336000pt;}
.wse{word-spacing:-14.237333pt;}
.ws2e{word-spacing:-14.208000pt;}
.ws2c{word-spacing:-13.440000pt;}
.ws16{word-spacing:-12.514667pt;}
.ws31{word-spacing:-12.008000pt;}
.ws2f{word-spacing:-11.754667pt;}
.ws2{word-spacing:-10.790400pt;}
.ws2b{word-spacing:-10.752000pt;}
.ws21{word-spacing:-10.598400pt;}
.ws25{word-spacing:-10.406400pt;}
.ws33{word-spacing:-10.214400pt;}
.ws36{word-spacing:-9.891200pt;}
.ws28{word-spacing:-8.542400pt;}
.ws2a{word-spacing:-0.768000pt;}
.ws18{word-spacing:-0.576000pt;}
.ws19{word-spacing:-0.512000pt;}
.ws1e{word-spacing:-0.448000pt;}
.ws26{word-spacing:-0.384000pt;}
.ws17{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.128000pt;}
.ws7{word-spacing:-0.064000pt;}
.ws27{word-spacing:-0.050667pt;}
.ws4{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.064000pt;}
.ws8{word-spacing:0.256000pt;}
.ws32{word-spacing:0.456000pt;}
.ws22{word-spacing:0.576000pt;}
.ws30{word-spacing:0.709333pt;}
.ws20{word-spacing:0.896000pt;}
.ws13{word-spacing:1.024000pt;}
._10{margin-left:-16.725333pt;}
._16{margin-left:-15.776000pt;}
._14{margin-left:-13.014933pt;}
._15{margin-left:-10.298667pt;}
._7{margin-left:-9.066667pt;}
._8{margin-left:-7.706667pt;}
._6{margin-left:-6.800000pt;}
._a{margin-left:-5.232000pt;}
._0{margin-left:-3.472000pt;}
._1{margin-left:-2.346667pt;}
._3{margin-left:-1.232000pt;}
._4{width:1.018667pt;}
._9{width:2.764267pt;}
._2{width:4.165333pt;}
._c{width:5.392000pt;}
._5{width:6.437333pt;}
._e{width:7.605333pt;}
._b{width:8.896000pt;}
._d{width:9.859733pt;}
._13{width:10.837333pt;}
._12{width:11.925333pt;}
._11{width:34.598400pt;}
._f{width:50.598400pt;}
.fsa{font-size:30.400000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs5{font-size:38.933333pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.855600pt;}
.y45{bottom:124.716133pt;}
.yda{bottom:124.718800pt;}
.y9b{bottom:124.720133pt;}
.y69{bottom:124.721467pt;}
.y16d{bottom:127.827600pt;}
.y21{bottom:129.656133pt;}
.y44{bottom:139.384133pt;}
.yd9{bottom:139.386800pt;}
.y9a{bottom:139.388133pt;}
.y16c{bottom:144.094267pt;}
.y68{bottom:144.322800pt;}
.y43{bottom:154.052133pt;}
.y67{bottom:154.054800pt;}
.y20{bottom:155.677067pt;}
.y99{bottom:158.989467pt;}
.y16b{bottom:160.360933pt;}
.y42{bottom:168.720133pt;}
.yb8{bottom:168.721467pt;}
.y66{bottom:173.656133pt;}
.y1f{bottom:174.605067pt;}
.y16a{bottom:176.627600pt;}
.y41{bottom:183.388133pt;}
.yd8{bottom:183.389467pt;}
.y14c{bottom:188.127200pt;}
.y65{bottom:188.322800pt;}
.y1e{bottom:193.533067pt;}
.yb7{bottom:198.054800pt;}
.yd7{bottom:198.056133pt;}
.y40{bottom:202.989467pt;}
.y14b{bottom:205.463200pt;}
.y98{bottom:206.025333pt;}
.y1d{bottom:212.205067pt;}
.y169{bottom:212.360933pt;}
.yfb{bottom:212.716133pt;}
.yd6{bottom:212.720133pt;}
.y3f{bottom:217.656133pt;}
.y14a{bottom:222.799200pt;}
.y64{bottom:225.092000pt;}
.y97{bottom:225.353333pt;}
.yfa{bottom:227.384133pt;}
.y3e{bottom:227.386800pt;}
.yd5{bottom:227.388133pt;}
.y1c{bottom:230.877067pt;}
.y12e{bottom:233.735600pt;}
.y81{bottom:239.367600pt;}
.y149{bottom:240.135200pt;}
.yf9{bottom:242.052133pt;}
.y3d{bottom:242.054800pt;}
.y96{bottom:244.681333pt;}
.y63{bottom:244.692000pt;}
.yd4{bottom:246.989467pt;}
.yb6{bottom:249.207600pt;}
.y1b{bottom:249.549067pt;}
.y12d{bottom:253.063600pt;}
.y168{bottom:254.542267pt;}
.yf8{bottom:256.720133pt;}
.yd3{bottom:256.721467pt;}
.y148{bottom:257.471200pt;}
.y80{bottom:258.295600pt;}
.y3c{bottom:261.656133pt;}
.y95{bottom:264.009333pt;}
.y62{bottom:264.020000pt;}
.yb5{bottom:267.735600pt;}
.y1a{bottom:268.221067pt;}
.yf7{bottom:271.388133pt;}
.y12c{bottom:272.391600pt;}
.y167{bottom:272.406267pt;}
.y147{bottom:274.807200pt;}
.yd2{bottom:276.322800pt;}
.y7f{bottom:277.223600pt;}
.y94{bottom:283.337333pt;}
.y61{bottom:283.348000pt;}
.yb4{bottom:286.807600pt;}
.y19{bottom:286.893067pt;}
.y166{bottom:290.270267pt;}
.yf6{bottom:290.989467pt;}
.y12b{bottom:291.719600pt;}
.y146{bottom:292.143200pt;}
.y7e{bottom:296.151600pt;}
.y3b{bottom:296.156933pt;}
.yf5{bottom:300.721467pt;}
.y93{bottom:302.665333pt;}
.y60{bottom:302.676000pt;}
.y18{bottom:305.565067pt;}
.yb3{bottom:305.879600pt;}
.y165{bottom:308.134267pt;}
.yd1{bottom:309.463600pt;}
.y145{bottom:309.479200pt;}
.y12a{bottom:310.791600pt;}
.y7d{bottom:315.079600pt;}
.y3a{bottom:315.084933pt;}
.yf4{bottom:320.322800pt;}
.y92{bottom:321.993333pt;}
.y5f{bottom:322.004000pt;}
.y112{bottom:323.196933pt;}
.y17{bottom:324.237067pt;}
.yb2{bottom:324.828933pt;}
.y164{bottom:325.998267pt;}
.y144{bottom:326.815200pt;}
.yd0{bottom:328.135600pt;}
.y129{bottom:329.863600pt;}
.y7c{bottom:333.751600pt;}
.y39{bottom:334.012933pt;}
.y91{bottom:341.321333pt;}
.y5e{bottom:341.332000pt;}
.y111{bottom:341.868933pt;}
.y16{bottom:342.909067pt;}
.yb1{bottom:343.756933pt;}
.y163{bottom:343.862267pt;}
.y143{bottom:344.151200pt;}
.ycf{bottom:346.807600pt;}
.y128{bottom:348.935600pt;}
.y38{bottom:352.940933pt;}
.y7b{bottom:353.079600pt;}
.yf3{bottom:357.790667pt;}
.y110{bottom:360.524933pt;}
.y90{bottom:360.649333pt;}
.y5d{bottom:360.660000pt;}
.y142{bottom:361.487200pt;}
.y15{bottom:361.581067pt;}
.y162{bottom:361.726267pt;}
.yb0{bottom:362.684933pt;}
.yce{bottom:365.479600pt;}
.y127{bottom:368.007600pt;}
.y37{bottom:371.740933pt;}
.y7a{bottom:372.476933pt;}
.yf2{bottom:376.590667pt;}
.y141{bottom:378.823200pt;}
.y10f{bottom:379.196933pt;}
.y161{bottom:379.590267pt;}
.y8f{bottom:379.977333pt;}
.y5c{bottom:379.988000pt;}
.y14{bottom:380.253067pt;}
.yaf{bottom:381.612933pt;}
.ycd{bottom:383.079600pt;}
.y126{bottom:387.207600pt;}
.y36{bottom:390.540933pt;}
.y79{bottom:391.804933pt;}
.yf1{bottom:395.262667pt;}
.y140{bottom:396.159200pt;}
.y160{bottom:397.454267pt;}
.y10e{bottom:397.868933pt;}
.y13{bottom:398.925067pt;}
.y8e{bottom:399.305333pt;}
.y5b{bottom:399.316000pt;}
.yae{bottom:400.562267pt;}
.ycc{bottom:401.207600pt;}
.y125{bottom:406.407600pt;}
.y78{bottom:411.132933pt;}
.y13f{bottom:413.495200pt;}
.yf0{bottom:413.934667pt;}
.y15f{bottom:415.318267pt;}
.y35{bottom:416.900000pt;}
.y10d{bottom:417.319600pt;}
.y12{bottom:417.597067pt;}
.y5a{bottom:418.644000pt;}
.y8d{bottom:418.697333pt;}
.yad{bottom:419.490267pt;}
.y124{bottom:425.607600pt;}
.ycb{bottom:426.905333pt;}
.y77{bottom:430.460933pt;}
.y13e{bottom:430.831200pt;}
.yef{bottom:432.606667pt;}
.y15e{bottom:433.182267pt;}
.y34{bottom:435.700000pt;}
.y11{bottom:436.269067pt;}
.y10c{bottom:436.519600pt;}
.y59{bottom:437.972000pt;}
.y8c{bottom:438.025333pt;}
.yac{bottom:438.418267pt;}
.y123{bottom:444.807600pt;}
.yca{bottom:445.033333pt;}
.y13d{bottom:448.167200pt;}
.y76{bottom:449.788933pt;}
.y15d{bottom:451.046267pt;}
.yee{bottom:451.278667pt;}
.y10{bottom:454.941067pt;}
.y10b{bottom:455.719600pt;}
.y58{bottom:457.342667pt;}
.yab{bottom:457.346267pt;}
.y8b{bottom:457.353333pt;}
.y122{bottom:464.007600pt;}
.y13c{bottom:465.503200pt;}
.y15c{bottom:468.910267pt;}
.y75{bottom:469.116933pt;}
.yed{bottom:469.950667pt;}
.yf{bottom:473.613067pt;}
.y10a{bottom:474.919600pt;}
.yaa{bottom:476.311600pt;}
.y57{bottom:476.670667pt;}
.y8a{bottom:476.681333pt;}
.y13b{bottom:482.839200pt;}
.y121{bottom:483.207600pt;}
.y15b{bottom:486.774267pt;}
.y74{bottom:488.444933pt;}
.yec{bottom:488.622667pt;}
.ye{bottom:492.285067pt;}
.y109{bottom:494.119600pt;}
.ya9{bottom:495.239600pt;}
.y56{bottom:495.998667pt;}
.y89{bottom:496.009333pt;}
.y13a{bottom:500.175200pt;}
.y120{bottom:502.407600pt;}
.y15a{bottom:504.638267pt;}
.y33{bottom:505.033333pt;}
.yeb{bottom:507.294667pt;}
.y73{bottom:507.772933pt;}
.yc9{bottom:509.598667pt;}
.yd{bottom:510.957067pt;}
.y108{bottom:513.191600pt;}
.ya8{bottom:514.167600pt;}
.y55{bottom:515.326667pt;}
.y88{bottom:515.337333pt;}
.y139{bottom:517.511200pt;}
.y11f{bottom:521.607600pt;}
.y159{bottom:522.502267pt;}
.y32{bottom:523.833333pt;}
.yea{bottom:525.902667pt;}
.y72{bottom:527.100933pt;}
.yc8{bottom:528.126667pt;}
.yc{bottom:529.629067pt;}
.y107{bottom:531.863600pt;}
.ya7{bottom:533.095600pt;}
.y54{bottom:534.654667pt;}
.y87{bottom:534.665333pt;}
.y138{bottom:534.979200pt;}
.y158{bottom:540.366267pt;}
.y11e{bottom:540.807600pt;}
.y31{bottom:542.633333pt;}
.ye9{bottom:544.574667pt;}
.y71{bottom:546.428933pt;}
.yc7{bottom:546.654667pt;}
.yb{bottom:548.301067pt;}
.y106{bottom:550.535600pt;}
.ya6{bottom:552.023600pt;}
.y137{bottom:552.447200pt;}
.y53{bottom:553.982667pt;}
.y86{bottom:553.993333pt;}
.y157{bottom:558.230267pt;}
.y30{bottom:561.433333pt;}
.ye8{bottom:563.246667pt;}
.yc6{bottom:565.182667pt;}
.y70{bottom:565.756933pt;}
.ya{bottom:566.962400pt;}
.y11d{bottom:567.566667pt;}
.y105{bottom:569.191600pt;}
.y136{bottom:569.915200pt;}
.ya5{bottom:570.951600pt;}
.y52{bottom:573.310667pt;}
.y85{bottom:573.321333pt;}
.y156{bottom:576.094267pt;}
.y2f{bottom:580.233333pt;}
.ye7{bottom:581.918667pt;}
.yc5{bottom:583.710667pt;}
.y6f{bottom:585.084933pt;}
.y9{bottom:585.634400pt;}
.y104{bottom:587.863600pt;}
.ya4{bottom:589.879600pt;}
.y51{bottom:592.638667pt;}
.y84{bottom:592.649333pt;}
.y135{bottom:594.940933pt;}
.y2e{bottom:599.033333pt;}
.ye6{bottom:600.590667pt;}
.yc4{bottom:602.238667pt;}
.y8{bottom:604.306400pt;}
.y6e{bottom:604.412933pt;}
.y103{bottom:606.535600pt;}
.ya3{bottom:608.807600pt;}
.y155{bottom:611.827600pt;}
.y83{bottom:611.977333pt;}
.y50{bottom:612.025333pt;}
.y2d{bottom:617.833333pt;}
.ye5{bottom:619.262667pt;}
.yc3{bottom:620.788000pt;}
.y6d{bottom:623.740933pt;}
.y102{bottom:625.207600pt;}
.y7{bottom:630.532000pt;}
.y82{bottom:631.305333pt;}
.y4f{bottom:631.353333pt;}
.y11c{bottom:632.633333pt;}
.ya2{bottom:635.305333pt;}
.y2c{bottom:636.633333pt;}
.y154{bottom:637.248000pt;}
.ye4{bottom:637.934667pt;}
.y134{bottom:637.950667pt;}
.yc2{bottom:639.316000pt;}
.y6c{bottom:650.638667pt;}
.y4e{bottom:650.681333pt;}
.y101{bottom:651.433333pt;}
.y11b{bottom:651.833333pt;}
.ya1{bottom:654.233333pt;}
.y2b{bottom:655.433333pt;}
.ye3{bottom:656.606667pt;}
.y133{bottom:656.622667pt;}
.y153{bottom:656.720000pt;}
.yc1{bottom:657.844000pt;}
.y6b{bottom:669.966667pt;}
.y4d{bottom:670.009333pt;}
.y11a{bottom:671.033333pt;}
.y2a{bottom:674.233333pt;}
.ye2{bottom:675.278667pt;}
.y132{bottom:675.294667pt;}
.yc0{bottom:676.372000pt;}
.y4c{bottom:689.337333pt;}
.y119{bottom:690.233333pt;}
.y29{bottom:693.033333pt;}
.y131{bottom:693.929333pt;}
.ye1{bottom:693.950667pt;}
.ybf{bottom:694.932000pt;}
.y6{bottom:697.198667pt;}
.y152{bottom:707.120000pt;}
.y4b{bottom:708.665333pt;}
.y118{bottom:709.433333pt;}
.y28{bottom:711.833333pt;}
.y130{bottom:712.601333pt;}
.y100{bottom:712.606667pt;}
.ye0{bottom:712.622667pt;}
.ybe{bottom:713.460000pt;}
.y4a{bottom:727.993333pt;}
.y117{bottom:728.633333pt;}
.ya0{bottom:729.993333pt;}
.y27{bottom:730.633333pt;}
.y12f{bottom:731.273333pt;}
.yff{bottom:731.278667pt;}
.ydf{bottom:731.294667pt;}
.ybd{bottom:731.988000pt;}
.y5{bottom:735.592133pt;}
.y151{bottom:736.200000pt;}
.y6a{bottom:747.305333pt;}
.y49{bottom:747.321333pt;}
.y116{bottom:747.833333pt;}
.y9f{bottom:748.921333pt;}
.y26{bottom:749.433333pt;}
.yde{bottom:749.945333pt;}
.yfe{bottom:749.950667pt;}
.ybc{bottom:750.516000pt;}
.y150{bottom:754.064000pt;}
.y4{bottom:761.998800pt;}
.y48{bottom:766.649333pt;}
.y115{bottom:767.033333pt;}
.y9e{bottom:767.849333pt;}
.y25{bottom:768.233333pt;}
.ydd{bottom:768.617333pt;}
.yfd{bottom:768.622667pt;}
.ybb{bottom:769.044000pt;}
.y14f{bottom:771.928000pt;}
.y47{bottom:785.977333pt;}
.y114{bottom:786.233333pt;}
.y9d{bottom:786.777333pt;}
.y24{bottom:787.033333pt;}
.ydc{bottom:787.289333pt;}
.yfc{bottom:787.294667pt;}
.yba{bottom:787.572000pt;}
.y14e{bottom:789.792000pt;}
.y46{bottom:805.305333pt;}
.y113{bottom:805.433333pt;}
.y9c{bottom:805.705333pt;}
.y23{bottom:805.833333pt;}
.ydb{bottom:805.961333pt;}
.yb9{bottom:806.105333pt;}
.y14d{bottom:807.656000pt;}
.y3{bottom:810.320000pt;}
.y22{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.hb{height:23.288802pt;}
.h10{height:27.171875pt;}
.h3{height:31.700521pt;}
.h7{height:33.059115pt;}
.h2{height:35.546875pt;}
.hc{height:36.229167pt;}
.h1a{height:38.494792pt;}
.h4{height:39.101562pt;}
.h16{height:40.520833pt;}
.hd{height:43.022135pt;}
.h23{height:44.572917pt;}
.h5{height:45.286458pt;}
.h15{height:45.297125pt;}
.h8{height:49.815104pt;}
.h9{height:54.343750pt;}
.h1b{height:54.365083pt;}
.ha{height:54.386417pt;}
.h1d{height:54.407750pt;}
.h1e{height:54.429083pt;}
.h1c{height:54.450417pt;}
.h19{height:54.514417pt;}
.h18{height:54.599750pt;}
.h11{height:56.008917pt;}
.he{height:56.051583pt;}
.hf{height:56.115583pt;}
.h14{height:56.158250pt;}
.h12{height:56.200917pt;}
.h13{height:56.264917pt;}
.h21{height:56.286250pt;}
.h20{height:56.328917pt;}
.h1f{height:56.350250pt;}
.h17{height:56.371583pt;}
.h22{height:56.435583pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:68.033067pt;}
.x1{left:86.929200pt;}
.x4{left:105.841867pt;}
.x8{left:119.063600pt;}
.x9{left:124.725067pt;}
.x2{left:133.929200pt;}
.xb{left:137.431867pt;}
.x3{left:192.829333pt;}
.x5{left:256.140267pt;}
.xa{left:461.283200pt;}
.x6{left:508.590533pt;}
}




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