
    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_637fe9cca642def7928eafd4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_0ad5eea0724bce2a31fada15.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c673b1d0642455d6257ec84d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_a75a2575e78dd297c4e82123.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_640d897682f0827c7dbb8ebb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999512;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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:ff7;src:url('chunks/assets/font_2499ea001bf2b682459833a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01c0c6569419a019ffbe6a6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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:ff9;src:url('chunks/assets/font_997dda7c862bf12e66c9ed3e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:ffa;src:url('chunks/assets/font_c815dc6cff9c5a91171f55c8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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:ffb;src:url('chunks/assets/font_cfa2569877bc73adceea2976.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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:ffc;src:url('chunks/assets/font_0c16dbc3864df12e264bd9be.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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;}
.m5{transform:matrix(0.000000,-0.249705,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249705,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249705,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.248743,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248743,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248743,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:27.360000px;}
.ls15{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.577074px;}
.ls11{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.574182px;}
.ls19{letter-spacing:-0.574173px;}
.ls1b{letter-spacing:-0.573504px;}
.ls14{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls10{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.082560px;}
.lsc{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.378600px;}
.ls8{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.540000px;}
.ls6{letter-spacing:2.880000px;}
.ls18{letter-spacing:8.820000px;}
.ls1d{letter-spacing:11.664000px;}
.lsa{letter-spacing:23.040000px;}
.lse{letter-spacing:28.080000px;}
.lsf{letter-spacing:35.460000px;}
.lsd{letter-spacing:48.960000px;}
.ls9{letter-spacing:63.360000px;}
.ls1e{letter-spacing:102.384000px;}
.lsb{letter-spacing:109.440000px;}
.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;}
}
.ws0{word-spacing:-26.424000px;}
.ws4{word-spacing:-21.060000px;}
.ws1c{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.288000px;}
.ws1b{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.226440px;}
.wsc{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws10{word-spacing:-5.435029px;}
.ws17{word-spacing:-5.428695px;}
.wsf{word-spacing:-4.618381px;}
.ws16{word-spacing:-4.595241px;}
.wse{word-spacing:-4.595166px;}
.ws15{word-spacing:-4.589811px;}
.wsb{word-spacing:0.000000px;}
.ws18{word-spacing:74.899136px;}
.ws1a{word-spacing:74.931575px;}
.ws19{word-spacing:74.947795px;}
.ws11{word-spacing:79.156067px;}
.ws12{word-spacing:79.188670px;}
.ws14{word-spacing:79.204972px;}
.ws13{word-spacing:79.237575px;}
._24{margin-left:-199.911611px;}
._26{margin-left:-198.639951px;}
._23{margin-left:-194.176672px;}
._0{margin-left:-1.188000px;}
._2{width:1.906080px;}
._9{width:3.168000px;}
._1c{width:4.335840px;}
._6{width:6.192000px;}
._5{width:7.920000px;}
._4{width:8.928000px;}
._1b{width:10.152000px;}
._3{width:11.232000px;}
._c{width:12.384000px;}
._d{width:13.476000px;}
._1d{width:15.108000px;}
._1e{width:16.308000px;}
._1{width:18.648000px;}
._1a{width:19.656000px;}
._21{width:20.928000px;}
._10{width:22.059840px;}
._8{width:23.268000px;}
._7{width:24.552000px;}
._22{width:25.872000px;}
._19{width:26.940000px;}
._15{width:28.068000px;}
._16{width:29.844000px;}
._1f{width:31.105920px;}
._20{width:32.292000px;}
._17{width:34.632000px;}
._28{width:43.704000px;}
._2c{width:46.224000px;}
._27{width:47.544000px;}
._14{width:48.588000px;}
._13{width:49.656000px;}
._29{width:54.648000px;}
._2a{width:55.849920px;}
._2b{width:58.104000px;}
._f{width:62.208000px;}
._e{width:63.216000px;}
._b{width:69.012000px;}
._a{width:70.752000px;}
._18{width:102.168000px;}
._12{width:108.781920px;}
._11{width:110.064000px;}
._25{width:593.471480px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:16.510111px;}
.fs6{font-size:16.529376px;}
.fsc{font-size:16.529643px;}
.fs7{font-size:16.612881px;}
.fsd{font-size:21.590644px;}
.fs8{font-size:21.615836px;}
.fse{font-size:21.616186px;}
.fsf{font-size:21.631146px;}
.fsa{font-size:21.656385px;}
.fs9{font-size:21.725039px;}
.fs5{font-size:30.240000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.ya1{bottom:-37.165531px;}
.y85{bottom:-36.093029px;}
.y88{bottom:-19.674100px;}
.y87{bottom:-19.674064px;}
.y7f{bottom:-18.581153px;}
.y0{bottom:0.000000px;}
.y9e{bottom:2.326925px;}
.y82{bottom:3.445566px;}
.yae{bottom:3.960000px;}
.y3{bottom:7.020000px;}
.y9d{bottom:10.422304px;}
.y7{bottom:11.340000px;}
.y81{bottom:11.550370px;}
.ya3{bottom:12.060000px;}
.yac{bottom:14.220000px;}
.y74{bottom:18.000000px;}
.y75{bottom:19.440000px;}
.y9c{bottom:22.520159px;}
.y9b{bottom:22.520160px;}
.y9a{bottom:22.520161px;}
.y99{bottom:22.520162px;}
.y98{bottom:22.520163px;}
.y97{bottom:22.520165px;}
.y96{bottom:22.520166px;}
.y95{bottom:22.520167px;}
.y94{bottom:22.520168px;}
.y93{bottom:22.520169px;}
.y92{bottom:22.520170px;}
.y91{bottom:22.520171px;}
.y90{bottom:22.520172px;}
.y8f{bottom:22.520173px;}
.y8e{bottom:22.520174px;}
.y8d{bottom:22.520184px;}
.y8c{bottom:22.520185px;}
.y8b{bottom:22.520187px;}
.y8a{bottom:22.520188px;}
.y89{bottom:22.520189px;}
.y80{bottom:23.662342px;}
.yaf{bottom:24.480000px;}
.y77{bottom:26.280000px;}
.y2{bottom:28.260000px;}
.yab{bottom:45.360000px;}
.y83{bottom:60.665290px;}
.y9f{bottom:62.806019px;}
.y8{bottom:71.136000px;}
.yaa{bottom:76.320000px;}
.y6{bottom:86.796000px;}
.ya0{bottom:102.121023px;}
.y84{bottom:103.355229px;}
.ya9{bottom:107.460000px;}
.y57{bottom:130.896000px;}
.y72{bottom:134.496000px;}
.y32{bottom:134.856000px;}
.ya8{bottom:138.420000px;}
.ybe{bottom:145.836000px;}
.ye3{bottom:152.310000px;}
.y31{bottom:158.790000px;}
.yd4{bottom:160.410000px;}
.y56{bottom:162.030000px;}
.y71{bottom:165.630000px;}
.ya7{bottom:169.560000px;}
.ybd{bottom:176.790000px;}
.y30{bottom:182.550000px;}
.ye2{bottom:183.450000px;}
.yd3{bottom:191.550000px;}
.y55{bottom:192.990000px;}
.y70{bottom:196.590000px;}
.ya6{bottom:200.520000px;}
.y2f{bottom:206.310000px;}
.ybc{bottom:207.930000px;}
.ye1{bottom:214.410000px;}
.yd2{bottom:222.510000px;}
.y54{bottom:224.130000px;}
.y6f{bottom:227.730000px;}
.y2e{bottom:230.070000px;}
.ya5{bottom:231.660000px;}
.ybb{bottom:238.890000px;}
.ye0{bottom:245.550000px;}
.y7d{bottom:252.930000px;}
.yd1{bottom:253.650000px;}
.y2d{bottom:254.010000px;}
.y53{bottom:255.090000px;}
.y6e{bottom:258.690000px;}
.yba{bottom:270.030000px;}
.ydf{bottom:276.510000px;}
.y2c{bottom:277.770000px;}
.y7c{bottom:283.890000px;}
.yd0{bottom:284.610000px;}
.y52{bottom:286.230000px;}
.y6d{bottom:289.830000px;}
.yb9{bottom:300.990000px;}
.y2b{bottom:301.530000px;}
.yde{bottom:307.650000px;}
.y7b{bottom:315.030000px;}
.ycf{bottom:315.750000px;}
.y51{bottom:317.190000px;}
.y6c{bottom:320.790000px;}
.y2a{bottom:325.290000px;}
.yb8{bottom:332.130000px;}
.ydd{bottom:338.655000px;}
.y7a{bottom:346.035000px;}
.yce{bottom:346.755000px;}
.y50{bottom:348.375000px;}
.y29{bottom:349.275000px;}
.y6b{bottom:351.975000px;}
.yb7{bottom:363.135000px;}
.ydc{bottom:369.795000px;}
.y28{bottom:373.035000px;}
.y79{bottom:377.175000px;}
.ycd{bottom:377.895000px;}
.y4f{bottom:379.335000px;}
.y6a{bottom:382.935000px;}
.yb6{bottom:394.095000px;}
.y27{bottom:396.795000px;}
.ydb{bottom:400.755000px;}
.y78{bottom:408.135000px;}
.ycc{bottom:408.855000px;}
.y4e{bottom:410.475000px;}
.y69{bottom:411.735000px;}
.y26{bottom:420.555000px;}
.yb5{bottom:423.795000px;}
.y76{bottom:424.875000px;}
.yda{bottom:431.895000px;}
.y4d{bottom:441.435000px;}
.y25{bottom:444.495000px;}
.yb4{bottom:447.015000px;}
.ycb{bottom:448.815000px;}
.yd9{bottom:462.855000px;}
.y73{bottom:467.895000px;}
.y24{bottom:468.255000px;}
.yb3{bottom:470.235000px;}
.y4c{bottom:472.575000px;}
.yca{bottom:488.955000px;}
.y23{bottom:492.015000px;}
.y7e{bottom:492.915000px;}
.yb2{bottom:493.455000px;}
.yd8{bottom:493.995000px;}
.y86{bottom:494.414959px;}
.y4b{bottom:503.535000px;}
.y22{bottom:515.775000px;}
.yb1{bottom:516.675000px;}
.yd7{bottom:524.955000px;}
.yc9{bottom:531.255000px;}
.y4a{bottom:534.675000px;}
.yb0{bottom:539.895000px;}
.y21{bottom:540.795000px;}
.yd6{bottom:556.095000px;}
.yad{bottom:563.295000px;}
.y49{bottom:565.635000px;}
.y20{bottom:568.515000px;}
.yc8{bottom:574.275000px;}
.yd5{bottom:587.055000px;}
.y1f{bottom:596.235000px;}
.y48{bottom:596.775000px;}
.yc7{bottom:605.265000px;}
.ya4{bottom:605.445000px;}
.y68{bottom:618.045000px;}
.y1e{bottom:622.905000px;}
.y47{bottom:627.765000px;}
.yc6{bottom:636.405000px;}
.y1d{bottom:646.845000px;}
.y67{bottom:649.185000px;}
.y46{bottom:658.905000px;}
.yc5{bottom:667.365000px;}
.y1c{bottom:670.605000px;}
.y66{bottom:680.145000px;}
.y45{bottom:689.865000px;}
.y1b{bottom:694.365000px;}
.yc4{bottom:698.505000px;}
.y65{bottom:711.285000px;}
.y1a{bottom:718.125000px;}
.y44{bottom:721.005000px;}
.yc3{bottom:729.465000px;}
.y19{bottom:742.065000px;}
.y64{bottom:742.245000px;}
.y43{bottom:754.305000px;}
.yc2{bottom:760.605000px;}
.y18{bottom:765.825000px;}
.y63{bottom:773.385000px;}
.y42{bottom:780.945000px;}
.y17{bottom:789.585000px;}
.yc1{bottom:791.565000px;}
.y62{bottom:804.345000px;}
.y41{bottom:804.705000px;}
.y16{bottom:813.345000px;}
.yc0{bottom:822.705000px;}
.y40{bottom:828.645000px;}
.y61{bottom:835.485000px;}
.y15{bottom:837.105000px;}
.ybf{bottom:851.505000px;}
.y3f{bottom:852.405000px;}
.ya2{bottom:853.845000px;}
.y14{bottom:861.045000px;}
.y60{bottom:866.445000px;}
.ye4{bottom:867.525000px;}
.y3e{bottom:876.210000px;}
.y13{bottom:884.850000px;}
.y5f{bottom:897.630000px;}
.y3d{bottom:899.970000px;}
.y12{bottom:908.610000px;}
.y3c{bottom:923.910000px;}
.y5e{bottom:928.590000px;}
.y11{bottom:939.750000px;}
.y3b{bottom:947.670000px;}
.y5d{bottom:959.730000px;}
.y10{bottom:970.350000px;}
.y3a{bottom:971.430000px;}
.y5c{bottom:990.690000px;}
.yf{bottom:994.110000px;}
.y39{bottom:995.190000px;}
.ye{bottom:1011.030000px;}
.y38{bottom:1018.950000px;}
.y5b{bottom:1021.830000px;}
.yd{bottom:1034.970000px;}
.y37{bottom:1042.890000px;}
.y5a{bottom:1052.790000px;}
.yc{bottom:1059.810000px;}
.y36{bottom:1066.650000px;}
.y59{bottom:1083.930000px;}
.yb{bottom:1087.530000px;}
.y35{bottom:1091.490000px;}
.y58{bottom:1114.890000px;}
.ya{bottom:1115.250000px;}
.y34{bottom:1119.390000px;}
.y9{bottom:1143.180000px;}
.y33{bottom:1146.060000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.h23{height:-32.259155px;}
.h1a{height:-31.181740px;}
.h1e{height:-6.165569px;}
.h1c{height:-6.165533px;}
.h13{height:-5.056860px;}
.h1d{height:12.068182px;}
.h14{height:12.082263px;}
.h20{height:12.082459px;}
.h16{height:12.143302px;}
.h24{height:15.748066px;}
.h1b{height:15.766441px;}
.h21{height:15.781833px;}
.h17{height:15.800248px;}
.h22{height:15.800503px;}
.h19{height:15.880070px;}
.h18{height:16.160451px;}
.h28{height:22.500000px;}
.h11{height:26.533828px;}
.h5{height:27.000000px;}
.h8{height:39.760312px;}
.h27{height:41.256000px;}
.h12{height:43.020000px;}
.h2{height:53.460000px;}
.hb{height:54.246094px;}
.ha{height:59.343750px;}
.h9{height:62.261719px;}
.hd{height:63.175781px;}
.hc{height:63.467930px;}
.h7{height:65.475352px;}
.h4{height:65.884219px;}
.hf{height:69.687773px;}
.h6{height:72.846211px;}
.he{height:73.915664px;}
.h3{height:94.763672px;}
.h1f{height:192.447900px;}
.h15{height:193.791561px;}
.h10{height:228.990000px;}
.h26{height:248.400000px;}
.h25{height:308.955000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:22.917833px;}
.wb{width:23.033237px;}
.w12{width:62.640000px;}
.w17{width:72.720000px;}
.w13{width:74.016000px;}
.w15{width:75.816000px;}
.w14{width:91.980000px;}
.w5{width:106.416000px;}
.w16{width:117.720000px;}
.we{width:274.926359px;}
.wa{width:276.310802px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w11{width:313.124080px;}
.w10{width:313.124128px;}
.wd{width:314.700884px;}
.wc{width:314.700895px;}
.w7{width:350.490000px;}
.w8{width:350.715000px;}
.w2{width:498.675000px;}
.w9{width:701.025000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x45{left:-47.673797px;}
.x0{left:0.000000px;}
.x20{left:1.827401px;}
.x1c{left:8.100000px;}
.x68{left:9.720000px;}
.x74{left:12.240000px;}
.x75{left:13.680000px;}
.x44{left:16.433979px;}
.x69{left:19.440000px;}
.x6c{left:21.420000px;}
.x6a{left:25.380000px;}
.x6f{left:27.360000px;}
.x73{left:28.800000px;}
.x6d{left:29.880000px;}
.x76{left:34.020000px;}
.x9{left:44.820000px;}
.x65{left:61.194000px;}
.x48{left:73.848985px;}
.x49{left:77.972881px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x4a{left:86.686992px;}
.x23{left:87.869289px;}
.x4b{left:91.682704px;}
.x24{left:92.771972px;}
.x25{left:96.916634px;}
.x1b{left:98.316000px;}
.x26{left:101.069446px;}
.x5{left:106.415987px;}
.x27{left:108.657805px;}
.x28{left:112.802467px;}
.x22{left:115.364990px;}
.xc{left:117.215987px;}
.x1f{left:123.042610px;}
.x29{left:124.910422px;}
.x16{left:127.475987px;}
.xb{left:130.175987px;}
.x2a{left:133.688792px;}
.x19{left:137.195987px;}
.x43{left:144.761602px;}
.x1e{left:148.134000px;}
.x14{left:159.509987px;}
.x64{left:161.634000px;}
.x67{left:170.490000px;}
.x15{left:183.809987px;}
.x2b{left:185.784382px;}
.x2c{left:189.929044px;}
.x2d{left:194.069630px;}
.x2{left:197.310000px;}
.x4c{left:201.353178px;}
.x2e{left:202.367105px;}
.x4d{left:205.477074px;}
.x2f{left:206.511767px;}
.x4e{left:209.600969px;}
.x30{left:210.656429px;}
.x4f{left:213.720809px;}
.x31{left:214.797016px;}
.x18{left:218.189987px;}
.x50{left:221.968600px;}
.x32{left:223.086340px;}
.x51{left:226.088440px;}
.x33{left:227.226926px;}
.x11{left:229.349987px;}
.x34{left:231.371588px;}
.x52{left:234.344341px;}
.x35{left:235.524401px;}
.x53{left:238.468236px;}
.x36{left:239.669063px;}
.x54{left:242.592132px;}
.x37{left:243.813725px;}
.xf{left:246.989987px;}
.x55{left:250.835867px;}
.x38{left:252.098974px;}
.x56{left:254.959763px;}
.x39{left:256.243636px;}
.x57{left:259.079603px;}
.x3a{left:260.384222px;}
.x58{left:263.203498px;}
.x3b{left:264.528884px;}
.x59{left:267.335503px;}
.x3c{left:268.681697px;}
.x5a{left:271.459399px;}
.x12{left:273.449987px;}
.x5b{left:275.583294px;}
.x3d{left:276.971021px;}
.x1{left:278.175000px;}
.x5c{left:279.703134px;}
.x3e{left:281.111608px;}
.x5d{left:283.827030px;}
.x3f{left:285.256270px;}
.x5e{left:287.950925px;}
.x40{left:289.400932px;}
.x5f{left:292.070765px;}
.x41{left:293.541518px;}
.x60{left:296.194661px;}
.x7{left:297.795000px;}
.x61{left:300.326666px;}
.x13{left:302.834987px;}
.x62{left:304.450561px;}
.x42{left:305.983655px;}
.x6b{left:308.595000px;}
.x10{left:317.054987px;}
.x17{left:374.474987px;}
.xd{left:376.094987px;}
.x8{left:390.855000px;}
.x78{left:396.614987px;}
.x21{left:399.353818px;}
.x6e{left:401.295000px;}
.x1d{left:448.635000px;}
.xe{left:457.094987px;}
.x46{left:464.479142px;}
.x70{left:477.825000px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x63{left:565.314000px;}
.x1a{left:592.304987px;}
.x71{left:596.265000px;}
.x66{left:630.834000px;}
.x72{left:671.010000px;}
.x77{left:730.409987px;}
.x47{left:739.405902px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:24.320000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.512955pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.510384pt;}
.ls19{letter-spacing:-0.510376pt;}
.ls1b{letter-spacing:-0.509781pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.073387pt;}
.lsc{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.336533pt;}
.ls8{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls6{letter-spacing:2.560000pt;}
.ls18{letter-spacing:7.840000pt;}
.ls1d{letter-spacing:10.368000pt;}
.lsa{letter-spacing:20.480000pt;}
.lse{letter-spacing:24.960000pt;}
.lsf{letter-spacing:31.520000pt;}
.lsd{letter-spacing:43.520000pt;}
.ls9{letter-spacing:56.320000pt;}
.ls1e{letter-spacing:91.008000pt;}
.lsb{letter-spacing:97.280000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws1c{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws1b{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.534613pt;}
.wsc{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws10{word-spacing:-4.831137pt;}
.ws17{word-spacing:-4.825507pt;}
.wsf{word-spacing:-4.105228pt;}
.ws16{word-spacing:-4.084658pt;}
.wse{word-spacing:-4.084592pt;}
.ws15{word-spacing:-4.079832pt;}
.wsb{word-spacing:0.000000pt;}
.ws18{word-spacing:66.577009pt;}
.ws1a{word-spacing:66.605845pt;}
.ws19{word-spacing:66.620262pt;}
.ws11{word-spacing:70.360949pt;}
.ws12{word-spacing:70.389929pt;}
.ws14{word-spacing:70.404419pt;}
.ws13{word-spacing:70.433400pt;}
._24{margin-left:-177.699210pt;}
._26{margin-left:-176.568846pt;}
._23{margin-left:-172.601486pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.694293pt;}
._9{width:2.816000pt;}
._1c{width:3.854080pt;}
._6{width:5.504000pt;}
._5{width:7.040000pt;}
._4{width:7.936000pt;}
._1b{width:9.024000pt;}
._3{width:9.984000pt;}
._c{width:11.008000pt;}
._d{width:11.978667pt;}
._1d{width:13.429333pt;}
._1e{width:14.496000pt;}
._1{width:16.576000pt;}
._1a{width:17.472000pt;}
._21{width:18.602667pt;}
._10{width:19.608747pt;}
._8{width:20.682667pt;}
._7{width:21.824000pt;}
._22{width:22.997333pt;}
._19{width:23.946667pt;}
._15{width:24.949333pt;}
._16{width:26.528000pt;}
._1f{width:27.649707pt;}
._20{width:28.704000pt;}
._17{width:30.784000pt;}
._28{width:38.848000pt;}
._2c{width:41.088000pt;}
._27{width:42.261333pt;}
._14{width:43.189333pt;}
._13{width:44.138667pt;}
._29{width:48.576000pt;}
._2a{width:49.644373pt;}
._2b{width:51.648000pt;}
._f{width:55.296000pt;}
._e{width:56.192000pt;}
._b{width:61.344000pt;}
._a{width:62.890667pt;}
._18{width:90.816000pt;}
._12{width:96.695040pt;}
._11{width:97.834667pt;}
._25{width:527.530205pt;}
.fsb{font-size:14.675655pt;}
.fs6{font-size:14.692778pt;}
.fsc{font-size:14.693016pt;}
.fs7{font-size:14.767006pt;}
.fsd{font-size:19.191684pt;}
.fs8{font-size:19.214077pt;}
.fse{font-size:19.214388pt;}
.fsf{font-size:19.227685pt;}
.fsa{font-size:19.250120pt;}
.fs9{font-size:19.311145pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.ya1{bottom:-33.036027pt;}
.y85{bottom:-32.082693pt;}
.y88{bottom:-17.488089pt;}
.y87{bottom:-17.488057pt;}
.y7f{bottom:-16.516580pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:2.068378pt;}
.y82{bottom:3.062726pt;}
.yae{bottom:3.520000pt;}
.y3{bottom:6.240000pt;}
.y9d{bottom:9.264270pt;}
.y7{bottom:10.080000pt;}
.y81{bottom:10.266995pt;}
.ya3{bottom:10.720000pt;}
.yac{bottom:12.640000pt;}
.y74{bottom:16.000000pt;}
.y75{bottom:17.280000pt;}
.y9c{bottom:20.017919pt;}
.y9b{bottom:20.017920pt;}
.y9a{bottom:20.017921pt;}
.y99{bottom:20.017922pt;}
.y98{bottom:20.017923pt;}
.y97{bottom:20.017924pt;}
.y96{bottom:20.017925pt;}
.y95{bottom:20.017926pt;}
.y94{bottom:20.017927pt;}
.y93{bottom:20.017928pt;}
.y92{bottom:20.017929pt;}
.y91{bottom:20.017930pt;}
.y90{bottom:20.017931pt;}
.y8f{bottom:20.017932pt;}
.y8e{bottom:20.017933pt;}
.y8d{bottom:20.017941pt;}
.y8c{bottom:20.017942pt;}
.y8b{bottom:20.017944pt;}
.y8a{bottom:20.017945pt;}
.y89{bottom:20.017946pt;}
.y80{bottom:21.033193pt;}
.yaf{bottom:21.760000pt;}
.y77{bottom:23.360000pt;}
.y2{bottom:25.120000pt;}
.yab{bottom:40.320000pt;}
.y83{bottom:53.924702pt;}
.y9f{bottom:55.827572pt;}
.y8{bottom:63.232000pt;}
.yaa{bottom:67.840000pt;}
.y6{bottom:77.152000pt;}
.ya0{bottom:90.774243pt;}
.y84{bottom:91.871315pt;}
.ya9{bottom:95.520000pt;}
.y57{bottom:116.352000pt;}
.y72{bottom:119.552000pt;}
.y32{bottom:119.872000pt;}
.ya8{bottom:123.040000pt;}
.ybe{bottom:129.632000pt;}
.ye3{bottom:135.386667pt;}
.y31{bottom:141.146667pt;}
.yd4{bottom:142.586667pt;}
.y56{bottom:144.026667pt;}
.y71{bottom:147.226667pt;}
.ya7{bottom:150.720000pt;}
.ybd{bottom:157.146667pt;}
.y30{bottom:162.266667pt;}
.ye2{bottom:163.066667pt;}
.yd3{bottom:170.266667pt;}
.y55{bottom:171.546667pt;}
.y70{bottom:174.746667pt;}
.ya6{bottom:178.240000pt;}
.y2f{bottom:183.386667pt;}
.ybc{bottom:184.826667pt;}
.ye1{bottom:190.586667pt;}
.yd2{bottom:197.786667pt;}
.y54{bottom:199.226667pt;}
.y6f{bottom:202.426667pt;}
.y2e{bottom:204.506667pt;}
.ya5{bottom:205.920000pt;}
.ybb{bottom:212.346667pt;}
.ye0{bottom:218.266667pt;}
.y7d{bottom:224.826667pt;}
.yd1{bottom:225.466667pt;}
.y2d{bottom:225.786667pt;}
.y53{bottom:226.746667pt;}
.y6e{bottom:229.946667pt;}
.yba{bottom:240.026667pt;}
.ydf{bottom:245.786667pt;}
.y2c{bottom:246.906667pt;}
.y7c{bottom:252.346667pt;}
.yd0{bottom:252.986667pt;}
.y52{bottom:254.426667pt;}
.y6d{bottom:257.626667pt;}
.yb9{bottom:267.546667pt;}
.y2b{bottom:268.026667pt;}
.yde{bottom:273.466667pt;}
.y7b{bottom:280.026667pt;}
.ycf{bottom:280.666667pt;}
.y51{bottom:281.946667pt;}
.y6c{bottom:285.146667pt;}
.y2a{bottom:289.146667pt;}
.yb8{bottom:295.226667pt;}
.ydd{bottom:301.026667pt;}
.y7a{bottom:307.586667pt;}
.yce{bottom:308.226667pt;}
.y50{bottom:309.666667pt;}
.y29{bottom:310.466667pt;}
.y6b{bottom:312.866667pt;}
.yb7{bottom:322.786667pt;}
.ydc{bottom:328.706667pt;}
.y28{bottom:331.586667pt;}
.y79{bottom:335.266667pt;}
.ycd{bottom:335.906667pt;}
.y4f{bottom:337.186667pt;}
.y6a{bottom:340.386667pt;}
.yb6{bottom:350.306667pt;}
.y27{bottom:352.706667pt;}
.ydb{bottom:356.226667pt;}
.y78{bottom:362.786667pt;}
.ycc{bottom:363.426667pt;}
.y4e{bottom:364.866667pt;}
.y69{bottom:365.986667pt;}
.y26{bottom:373.826667pt;}
.yb5{bottom:376.706667pt;}
.y76{bottom:377.666667pt;}
.yda{bottom:383.906667pt;}
.y4d{bottom:392.386667pt;}
.y25{bottom:395.106667pt;}
.yb4{bottom:397.346667pt;}
.ycb{bottom:398.946667pt;}
.yd9{bottom:411.426667pt;}
.y73{bottom:415.906667pt;}
.y24{bottom:416.226667pt;}
.yb3{bottom:417.986667pt;}
.y4c{bottom:420.066667pt;}
.yca{bottom:434.626667pt;}
.y23{bottom:437.346667pt;}
.y7e{bottom:438.146667pt;}
.yb2{bottom:438.626667pt;}
.yd8{bottom:439.106667pt;}
.y86{bottom:439.479964pt;}
.y4b{bottom:447.586667pt;}
.y22{bottom:458.466667pt;}
.yb1{bottom:459.266667pt;}
.yd7{bottom:466.626667pt;}
.yc9{bottom:472.226667pt;}
.y4a{bottom:475.266667pt;}
.yb0{bottom:479.906667pt;}
.y21{bottom:480.706667pt;}
.yd6{bottom:494.306667pt;}
.yad{bottom:500.706667pt;}
.y49{bottom:502.786667pt;}
.y20{bottom:505.346667pt;}
.yc8{bottom:510.466667pt;}
.yd5{bottom:521.826667pt;}
.y1f{bottom:529.986667pt;}
.y48{bottom:530.466667pt;}
.yc7{bottom:538.013333pt;}
.ya4{bottom:538.173333pt;}
.y68{bottom:549.373333pt;}
.y1e{bottom:553.693333pt;}
.y47{bottom:558.013333pt;}
.yc6{bottom:565.693333pt;}
.y1d{bottom:574.973333pt;}
.y67{bottom:577.053333pt;}
.y46{bottom:585.693333pt;}
.yc5{bottom:593.213333pt;}
.y1c{bottom:596.093333pt;}
.y66{bottom:604.573333pt;}
.y45{bottom:613.213333pt;}
.y1b{bottom:617.213333pt;}
.yc4{bottom:620.893333pt;}
.y65{bottom:632.253333pt;}
.y1a{bottom:638.333333pt;}
.y44{bottom:640.893333pt;}
.yc3{bottom:648.413333pt;}
.y19{bottom:659.613333pt;}
.y64{bottom:659.773333pt;}
.y43{bottom:670.493333pt;}
.yc2{bottom:676.093333pt;}
.y18{bottom:680.733333pt;}
.y63{bottom:687.453333pt;}
.y42{bottom:694.173333pt;}
.y17{bottom:701.853333pt;}
.yc1{bottom:703.613333pt;}
.y62{bottom:714.973333pt;}
.y41{bottom:715.293333pt;}
.y16{bottom:722.973333pt;}
.yc0{bottom:731.293333pt;}
.y40{bottom:736.573333pt;}
.y61{bottom:742.653333pt;}
.y15{bottom:744.093333pt;}
.ybf{bottom:756.893333pt;}
.y3f{bottom:757.693333pt;}
.ya2{bottom:758.973333pt;}
.y14{bottom:765.373333pt;}
.y60{bottom:770.173333pt;}
.ye4{bottom:771.133333pt;}
.y3e{bottom:778.853333pt;}
.y13{bottom:786.533333pt;}
.y5f{bottom:797.893333pt;}
.y3d{bottom:799.973333pt;}
.y12{bottom:807.653333pt;}
.y3c{bottom:821.253333pt;}
.y5e{bottom:825.413333pt;}
.y11{bottom:835.333333pt;}
.y3b{bottom:842.373333pt;}
.y5d{bottom:853.093333pt;}
.y10{bottom:862.533333pt;}
.y3a{bottom:863.493333pt;}
.y5c{bottom:880.613333pt;}
.yf{bottom:883.653333pt;}
.y39{bottom:884.613333pt;}
.ye{bottom:898.693333pt;}
.y38{bottom:905.733333pt;}
.y5b{bottom:908.293333pt;}
.yd{bottom:919.973333pt;}
.y37{bottom:927.013333pt;}
.y5a{bottom:935.813333pt;}
.yc{bottom:942.053333pt;}
.y36{bottom:948.133333pt;}
.y59{bottom:963.493333pt;}
.yb{bottom:966.693333pt;}
.y35{bottom:970.213333pt;}
.y58{bottom:991.013333pt;}
.ya{bottom:991.333333pt;}
.y34{bottom:995.013333pt;}
.y9{bottom:1016.160000pt;}
.y33{bottom:1018.720000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.h23{height:-28.674805pt;}
.h1a{height:-27.717102pt;}
.h1e{height:-5.480506pt;}
.h1c{height:-5.480474pt;}
.h13{height:-4.494987pt;}
.h1d{height:10.727273pt;}
.h14{height:10.739790pt;}
.h20{height:10.739963pt;}
.h16{height:10.794047pt;}
.h24{height:13.998281pt;}
.h1b{height:14.014614pt;}
.h21{height:14.028296pt;}
.h17{height:14.044665pt;}
.h22{height:14.044892pt;}
.h19{height:14.115618pt;}
.h18{height:14.364845pt;}
.h28{height:20.000000pt;}
.h11{height:23.585625pt;}
.h5{height:24.000000pt;}
.h8{height:35.342500pt;}
.h27{height:36.672000pt;}
.h12{height:38.240000pt;}
.h2{height:47.520000pt;}
.hb{height:48.218750pt;}
.ha{height:52.750000pt;}
.h9{height:55.343750pt;}
.hd{height:56.156250pt;}
.hc{height:56.415937pt;}
.h7{height:58.200312pt;}
.h4{height:58.563750pt;}
.hf{height:61.944688pt;}
.h6{height:64.752187pt;}
.he{height:65.702812pt;}
.h3{height:84.234375pt;}
.h1f{height:171.064800pt;}
.h15{height:172.259165pt;}
.h10{height:203.546667pt;}
.h26{height:220.800000pt;}
.h25{height:274.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:20.371407pt;}
.wb{width:20.473988pt;}
.w12{width:55.680000pt;}
.w17{width:64.640000pt;}
.w13{width:65.792000pt;}
.w15{width:67.392000pt;}
.w14{width:81.760000pt;}
.w5{width:94.592000pt;}
.w16{width:104.640000pt;}
.we{width:244.378986pt;}
.wa{width:245.609602pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w11{width:278.332516pt;}
.w10{width:278.332558pt;}
.wd{width:279.734119pt;}
.wc{width:279.734129pt;}
.w7{width:311.546667pt;}
.w8{width:311.746667pt;}
.w2{width:443.266667pt;}
.w9{width:623.133333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x45{left:-42.376708pt;}
.x0{left:0.000000pt;}
.x20{left:1.624357pt;}
.x1c{left:7.200000pt;}
.x68{left:8.640000pt;}
.x74{left:10.880000pt;}
.x75{left:12.160000pt;}
.x44{left:14.607981pt;}
.x69{left:17.280000pt;}
.x6c{left:19.040000pt;}
.x6a{left:22.560000pt;}
.x6f{left:24.320000pt;}
.x73{left:25.600000pt;}
.x6d{left:26.560000pt;}
.x76{left:30.240000pt;}
.x9{left:39.840000pt;}
.x65{left:54.394667pt;}
.x48{left:65.643543pt;}
.x49{left:69.309227pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x4a{left:77.055104pt;}
.x23{left:78.106034pt;}
.x4b{left:81.495737pt;}
.x24{left:82.463975pt;}
.x25{left:86.148119pt;}
.x1b{left:87.392000pt;}
.x26{left:89.839508pt;}
.x5{left:94.591988pt;}
.x27{left:96.584715pt;}
.x28{left:100.268859pt;}
.x22{left:102.546658pt;}
.xc{left:104.191988pt;}
.x1f{left:109.371209pt;}
.x29{left:111.031487pt;}
.x16{left:113.311988pt;}
.xb{left:115.711988pt;}
.x2a{left:118.834482pt;}
.x19{left:121.951988pt;}
.x43{left:128.676980pt;}
.x1e{left:131.674667pt;}
.x14{left:141.786655pt;}
.x64{left:143.674667pt;}
.x67{left:151.546667pt;}
.x15{left:163.386655pt;}
.x2b{left:165.141673pt;}
.x2c{left:168.825817pt;}
.x2d{left:172.506338pt;}
.x2{left:175.386667pt;}
.x4c{left:178.980603pt;}
.x2e{left:179.881871pt;}
.x4d{left:182.646288pt;}
.x2f{left:183.566015pt;}
.x4e{left:186.311972pt;}
.x30{left:187.250159pt;}
.x4f{left:189.974053pt;}
.x31{left:190.930681pt;}
.x18{left:193.946655pt;}
.x50{left:197.305422pt;}
.x32{left:198.298969pt;}
.x51{left:200.967503pt;}
.x33{left:201.979490pt;}
.x11{left:203.866655pt;}
.x34{left:205.663634pt;}
.x52{left:208.306081pt;}
.x35{left:209.355023pt;}
.x53{left:211.971766pt;}
.x36{left:213.039167pt;}
.x54{left:215.637450pt;}
.x37{left:216.723311pt;}
.xf{left:219.546655pt;}
.x55{left:222.965215pt;}
.x38{left:224.087977pt;}
.x56{left:226.630900pt;}
.x39{left:227.772121pt;}
.x57{left:230.292980pt;}
.x3a{left:231.452642pt;}
.x58{left:233.958665pt;}
.x3b{left:235.136786pt;}
.x59{left:237.631559pt;}
.x3c{left:238.828175pt;}
.x5a{left:241.297243pt;}
.x12{left:243.066655pt;}
.x5b{left:244.962928pt;}
.x3d{left:246.196463pt;}
.x1{left:247.266667pt;}
.x5c{left:248.625008pt;}
.x3e{left:249.876985pt;}
.x5d{left:252.290693pt;}
.x3f{left:253.561129pt;}
.x5e{left:255.956378pt;}
.x40{left:257.245273pt;}
.x5f{left:259.618458pt;}
.x41{left:260.925794pt;}
.x60{left:263.284143pt;}
.x7{left:264.706667pt;}
.x61{left:266.957036pt;}
.x13{left:269.186655pt;}
.x62{left:270.622721pt;}
.x42{left:271.985471pt;}
.x6b{left:274.306667pt;}
.x10{left:281.826655pt;}
.x17{left:332.866655pt;}
.xd{left:334.306655pt;}
.x8{left:347.426667pt;}
.x78{left:352.546655pt;}
.x21{left:354.981171pt;}
.x6e{left:356.706667pt;}
.x1d{left:398.786667pt;}
.xe{left:406.306655pt;}
.x46{left:412.870349pt;}
.x70{left:424.733333pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x63{left:502.501333pt;}
.x1a{left:526.493322pt;}
.x71{left:530.013333pt;}
.x66{left:560.741333pt;}
.x72{left:596.453333pt;}
.x77{left:649.253322pt;}
.x47{left:657.249691pt;}
}




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