
    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_8f762e236ba511a4554e330d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_d177666244da3a41ec9b6349.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e14debbd2c4ad25696240771.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_f0a9cdbceeda2784071c1389.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_43b0192c579bde55b77463fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_49f183767ea533575b22f4f9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_e3c506ee76feb259b2a8d31d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_a77e38336e35a1dfc11f9968.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_029f60e686770e4972147a1c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_b932130de32061beb68f819a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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_6e3bfcdf0c69b3b29817c20f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_96da30b3685d7019027bf53b.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4877467acfa1691960983fb8.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;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:ff10;src:url('chunks/assets/font_2431ec7862022258b180feed.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_494b849e18c85170588e7c9f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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:ff12;src:url('chunks/assets/font_da27fb38c869fac9deb0b65d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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:ff13;src:url('chunks/assets/font_3b60365bee8a8c0de7d87bbf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.934082;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:ff14;src:url('chunks/assets/font_0d51f35f4ca04bf6d39f1c14.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.084961;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:ff15;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-51.660000px;}
.v8{vertical-align:-44.220000px;}
.v4{vertical-align:-36.900000px;}
.v6{vertical-align:-29.400000px;}
.v2{vertical-align:-15.120000px;}
.v7{vertical-align:-7.320000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:45.060000px;}
.lse{letter-spacing:-4.680000px;}
.ls15{letter-spacing:-0.978000px;}
.ls14{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.252000px;}
.ls1c{letter-spacing:-0.131400px;}
.ls16{letter-spacing:-0.100200px;}
.ls17{letter-spacing:-0.058320px;}
.ls18{letter-spacing:-0.036000px;}
.lsb{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.012960px;}
.ls1e{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.ls8{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.567840px;}
.ls4{letter-spacing:0.573120px;}
.ls1f{letter-spacing:0.774000px;}
.ls3{letter-spacing:0.786240px;}
.ls11{letter-spacing:0.900000px;}
.lsf{letter-spacing:2.340000px;}
.ls21{letter-spacing:16.506720px;}
.ls7{letter-spacing:20.520000px;}
.ls20{letter-spacing:46.026720px;}
.ls1a{letter-spacing:111.541680px;}
.ls1b{letter-spacing:111.661680px;}
.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;}
}
.ws16{word-spacing:-125.167440px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws1a{word-spacing:-15.714000px;}
.ws8{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws17{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.wse{word-spacing:-14.839800px;}
.ws4{word-spacing:-13.505760px;}
.ws7{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.wsa{word-spacing:-10.260000px;}
.ws19{word-spacing:-9.737280px;}
.ws18{word-spacing:-9.732960px;}
.wsb{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.ws6{word-spacing:-7.884000px;}
.wsc{word-spacing:0.000000px;}
.ws12{word-spacing:68.032560px;}
.ws11{word-spacing:68.092560px;}
.ws13{word-spacing:68.133240px;}
.ws14{word-spacing:83.152560px;}
.ws10{word-spacing:97.893240px;}
.ws15{word-spacing:98.155920px;}
._18{margin-left:-8.927520px;}
._4{margin-left:-5.557680px;}
._5{margin-left:-4.498320px;}
._2{margin-left:-3.330480px;}
._3{margin-left:-2.106000px;}
._0{margin-left:-1.050000px;}
._1{width:1.206000px;}
._8{width:2.928240px;}
._7{width:4.273920px;}
._6{width:5.693520px;}
._a{width:7.220160px;}
._9{width:8.426160px;}
._e{width:9.610560px;}
._14{width:10.637280px;}
._d{width:11.892240px;}
._11{width:13.685040px;}
._f{width:16.580160px;}
._15{width:17.847120px;}
._13{width:19.276320px;}
._12{width:20.916000px;}
._1a{width:21.991680px;}
._1b{width:23.127120px;}
._16{width:24.867360px;}
._c{width:26.048160px;}
._b{width:27.370080px;}
._1d{width:28.445760px;}
._1c{width:29.707680px;}
._22{width:32.677920px;}
._10{width:39.800160px;}
._21{width:47.449440px;}
._24{width:54.679680px;}
._25{width:55.780800px;}
._1e{width:70.337520px;}
._23{width:87.428880px;}
._1f{width:93.872160px;}
._20{width:101.113920px;}
._17{width:175.320480px;}
._19{width:275.708880px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs9{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:0.180000px;}
.y42{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y47{bottom:3.960000px;}
.y1e{bottom:4.860000px;}
.yec{bottom:5.040000px;}
.ye6{bottom:8.460000px;}
.ye{bottom:9.540000px;}
.y45{bottom:10.620000px;}
.y21{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.yf2{bottom:20.340000px;}
.ye8{bottom:20.514000px;}
.y41{bottom:20.520000px;}
.yfa{bottom:20.550000px;}
.y46{bottom:22.320000px;}
.y44{bottom:25.380000px;}
.y1d{bottom:29.340000px;}
.yb{bottom:30.240000px;}
.y5{bottom:32.760000px;}
.y40{bottom:37.620000px;}
.y1c{bottom:45.720000px;}
.ya{bottom:46.620000px;}
.y1{bottom:53.820000px;}
.y3f{bottom:54.900000px;}
.y1b{bottom:62.280000px;}
.y3e{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y87{bottom:77.190000px;}
.y1a{bottom:78.660000px;}
.y8b{bottom:80.610000px;}
.y3d{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y19{bottom:95.220000px;}
.ya9{bottom:98.280000px;}
.y2f{bottom:98.820000px;}
.y3c{bottom:106.740000px;}
.ye9{bottom:107.136000px;}
.y85{bottom:107.676000px;}
.y8a{bottom:107.745000px;}
.y88{bottom:109.470000px;}
.ya6{bottom:110.595000px;}
.y7{bottom:111.270000px;}
.y18{bottom:111.600000px;}
.ya3{bottom:111.816000px;}
.y2e{bottom:114.120000px;}
.y3b{bottom:124.020000px;}
.y84{bottom:124.956000px;}
.ya8{bottom:125.430000px;}
.ya2{bottom:125.856000px;}
.yaa{bottom:126.540000px;}
.y17{bottom:128.205000px;}
.y111{bottom:128.736000px;}
.y2d{bottom:131.760000px;}
.y54{bottom:140.616000px;}
.y3a{bottom:141.120000px;}
.y83{bottom:142.236000px;}
.ye7{bottom:142.416000px;}
.y16{bottom:144.045000px;}
.y110{bottom:146.016000px;}
.yab{bottom:147.345000px;}
.y2c{bottom:149.040000px;}
.y15{bottom:154.485000px;}
.y53{bottom:157.710000px;}
.y39{bottom:158.400000px;}
.y82{bottom:159.330000px;}
.y10f{bottom:163.290000px;}
.yac{bottom:165.780000px;}
.y2b{bottom:166.320000px;}
.y14{bottom:172.845000px;}
.ya5{bottom:173.955000px;}
.y52{bottom:174.990000px;}
.y38{bottom:175.680000px;}
.y81{bottom:176.610000px;}
.ye5{bottom:177.690000px;}
.y10e{bottom:180.570000px;}
.y2a{bottom:184.140000px;}
.yad{bottom:184.170000px;}
.y80{bottom:190.650000px;}
.y13{bottom:191.025000px;}
.y51{bottom:192.270000px;}
.y86{bottom:192.420000px;}
.y37{bottom:192.960000px;}
.y10d{bottom:197.850000px;}
.yb5{bottom:201.030000px;}
.y29{bottom:201.420000px;}
.yae{bottom:202.605000px;}
.y89{bottom:206.535000px;}
.y50{bottom:209.550000px;}
.y12{bottom:210.105000px;}
.y36{bottom:210.270000px;}
.y10c{bottom:215.130000px;}
.y28{bottom:218.910000px;}
.yaf{bottom:221.040000px;}
.y4f{bottom:226.830000px;}
.y35{bottom:227.550000px;}
.y10b{bottom:232.230000px;}
.y11{bottom:235.845000px;}
.y27{bottom:236.190000px;}
.yb0{bottom:239.430000px;}
.ya7{bottom:241.845000px;}
.y4e{bottom:244.110000px;}
.y34{bottom:244.650000px;}
.y10a{bottom:249.510000px;}
.y26{bottom:253.650000px;}
.yb1{bottom:257.865000px;}
.y10{bottom:260.145000px;}
.y4d{bottom:261.210000px;}
.y33{bottom:261.930000px;}
.y109{bottom:266.790000px;}
.y25{bottom:271.290000px;}
.yb4{bottom:272.850000px;}
.yb2{bottom:276.300000px;}
.y4c{bottom:278.490000px;}
.y32{bottom:279.210000px;}
.y108{bottom:284.070000px;}
.yb3{bottom:294.735000px;}
.y4b{bottom:295.770000px;}
.y31{bottom:296.490000px;}
.y24{bottom:298.650000px;}
.y107{bottom:301.350000px;}
.ye4{bottom:309.090000px;}
.y4a{bottom:313.050000px;}
.y30{bottom:313.770000px;}
.y23{bottom:316.290000px;}
.y106{bottom:318.630000px;}
.ye3{bottom:326.370000px;}
.y49{bottom:330.330000px;}
.y105{bottom:335.730000px;}
.ye2{bottom:343.515000px;}
.y48{bottom:347.655000px;}
.y104{bottom:353.055000px;}
.ye1{bottom:360.795000px;}
.y43{bottom:361.515000px;}
.y103{bottom:370.335000px;}
.ye0{bottom:378.075000px;}
.y102{bottom:387.615000px;}
.ydf{bottom:395.355000px;}
.y22{bottom:398.235000px;}
.y101{bottom:404.895000px;}
.yde{bottom:412.635000px;}
.y100{bottom:422.175000px;}
.ydd{bottom:429.915000px;}
.y7f{bottom:439.275000px;}
.ydc{bottom:447.015000px;}
.y7e{bottom:456.375000px;}
.yff{bottom:456.555000px;}
.ya1{bottom:459.795000px;}
.ydb{bottom:464.295000px;}
.y7d{bottom:473.655000px;}
.yfe{bottom:473.835000px;}
.ya0{bottom:477.075000px;}
.yda{bottom:481.575000px;}
.y7c{bottom:490.935000px;}
.yfd{bottom:491.115000px;}
.y9f{bottom:494.355000px;}
.yd9{bottom:498.855000px;}
.y7b{bottom:508.215000px;}
.yfc{bottom:508.395000px;}
.y9e{bottom:511.635000px;}
.yd8{bottom:516.135000px;}
.y7a{bottom:525.495000px;}
.y9d{bottom:528.735000px;}
.yd7{bottom:533.235000px;}
.y79{bottom:542.775000px;}
.y9c{bottom:546.015000px;}
.yd6{bottom:550.515000px;}
.yfb{bottom:557.535000px;}
.y78{bottom:559.875000px;}
.y9b{bottom:563.295000px;}
.yd5{bottom:567.795000px;}
.y77{bottom:577.155000px;}
.y9a{bottom:580.575000px;}
.yd4{bottom:585.075000px;}
.yf9{bottom:592.815000px;}
.y76{bottom:594.435000px;}
.y99{bottom:597.855000px;}
.yd3{bottom:602.355000px;}
.y75{bottom:611.745000px;}
.y98{bottom:614.985000px;}
.yd2{bottom:619.665000px;}
.yf8{bottom:628.125000px;}
.y74{bottom:629.025000px;}
.y97{bottom:630.645000px;}
.yd1{bottom:636.765000px;}
.y73{bottom:646.305000px;}
.y96{bottom:649.365000px;}
.yd0{bottom:654.045000px;}
.y72{bottom:663.405000px;}
.y95{bottom:668.085000px;}
.ycf{bottom:671.325000px;}
.y71{bottom:680.685000px;}
.yce{bottom:688.605000px;}
.y70{bottom:697.965000px;}
.yf7{bottom:698.685000px;}
.y94{bottom:704.085000px;}
.ycd{bottom:705.885000px;}
.y6f{bottom:715.245000px;}
.ycc{bottom:723.165000px;}
.y1f{bottom:725.865000px;}
.y6e{bottom:732.525000px;}
.yf6{bottom:733.785000px;}
.ycb{bottom:740.265000px;}
.y93{bottom:741.885000px;}
.y6d{bottom:749.625000px;}
.yf{bottom:755.565000px;}
.yca{bottom:757.545000px;}
.y6c{bottom:766.905000px;}
.yf5{bottom:769.065000px;}
.yc9{bottom:774.825000px;}
.y92{bottom:781.125000px;}
.y6b{bottom:784.185000px;}
.yc8{bottom:792.105000px;}
.y91{bottom:798.405000px;}
.y6a{bottom:801.465000px;}
.yf4{bottom:804.345000px;}
.yc7{bottom:809.385000px;}
.y90{bottom:815.685000px;}
.y69{bottom:818.745000px;}
.yc6{bottom:826.485000px;}
.y8f{bottom:832.965000px;}
.y68{bottom:836.025000px;}
.yf3{bottom:839.625000px;}
.yc5{bottom:843.765000px;}
.y8e{bottom:850.245000px;}
.y67{bottom:853.125000px;}
.yc4{bottom:861.045000px;}
.y8d{bottom:867.345000px;}
.y66{bottom:870.405000px;}
.yf1{bottom:874.950000px;}
.yc3{bottom:878.370000px;}
.y8c{bottom:881.430000px;}
.ya4{bottom:881.640000px;}
.y65{bottom:887.730000px;}
.yc2{bottom:895.650000px;}
.y64{bottom:905.010000px;}
.yf0{bottom:910.050000px;}
.yc1{bottom:912.930000px;}
.y63{bottom:922.290000px;}
.yc0{bottom:930.030000px;}
.y112{bottom:939.570000px;}
.y62{bottom:944.790000px;}
.yef{bottom:945.330000px;}
.ybf{bottom:947.310000px;}
.y61{bottom:956.670000px;}
.ybe{bottom:964.590000px;}
.y60{bottom:973.950000px;}
.ybd{bottom:981.870000px;}
.y5f{bottom:991.230000px;}
.ybc{bottom:999.150000px;}
.y5e{bottom:1008.510000px;}
.ybb{bottom:1016.430000px;}
.y5d{bottom:1025.790000px;}
.yd{bottom:1030.830000px;}
.yba{bottom:1033.530000px;}
.y5c{bottom:1042.890000px;}
.yb9{bottom:1049.190000px;}
.y6{bottom:1056.210000px;}
.y5b{bottom:1060.170000px;}
.yb8{bottom:1067.910000px;}
.yee{bottom:1073.310000px;}
.y5a{bottom:1077.450000px;}
.yb7{bottom:1086.630000px;}
.yed{bottom:1090.590000px;}
.y59{bottom:1094.730000px;}
.yeb{bottom:1105.350000px;}
.yb6{bottom:1107.150000px;}
.y58{bottom:1112.010000px;}
.y57{bottom:1129.290000px;}
.yea{bottom:1142.460000px;}
.y56{bottom:1146.420000px;}
.y55{bottom:1163.700000px;}
.h26{height:17.100000px;}
.h25{height:17.280000px;}
.hc{height:25.020000px;}
.h21{height:27.147656px;}
.h14{height:29.700000px;}
.h13{height:32.103633px;}
.h2{height:32.976000px;}
.h34{height:34.380000px;}
.h35{height:34.416000px;}
.h24{height:34.560000px;}
.h36{height:34.596000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h31{height:36.396000px;}
.h1f{height:36.720000px;}
.h1e{height:41.726953px;}
.h1c{height:42.164648px;}
.h1b{height:42.186445px;}
.h37{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h4{height:47.223633px;}
.h17{height:47.980898px;}
.h1d{height:48.027656px;}
.h2d{height:48.312405px;}
.h2f{height:48.312408px;}
.h2e{height:48.312409px;}
.h33{height:48.312417px;}
.h30{height:48.312419px;}
.h2b{height:48.496641px;}
.h1a{height:49.255313px;}
.h19{height:49.742227px;}
.h20{height:52.260820px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h2a{height:59.582250px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h29{height:104.499023px;}
.h23{height:110.583984px;}
.h7{height:121.536000px;}
.h32{height:124.020000px;}
.h2c{height:127.440000px;}
.h22{height:243.720000px;}
.hd{height:275.250000px;}
.h27{height:278.820000px;}
.h16{height:327.630000px;}
.h28{height:330.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:65.016000px;}
.w17{width:68.940000px;}
.w3{width:74.880000px;}
.w1d{width:82.800000px;}
.w19{width:84.060000px;}
.w1a{width:84.096000px;}
.w1b{width:84.240000px;}
.w18{width:84.276000px;}
.wc{width:86.976000px;}
.w20{width:89.100000px;}
.w1f{width:89.460000px;}
.w1e{width:89.496000px;}
.w16{width:92.736000px;}
.we{width:97.956000px;}
.w11{width:106.740000px;}
.wd{width:109.080000px;}
.w1c{width:118.296000px;}
.wf{width:120.240000px;}
.wb{width:150.870000px;}
.w15{width:153.030000px;}
.w5{width:155.370000px;}
.w8{width:220.935000px;}
.w14{width:372.135000px;}
.wa{width:445.320000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w12{width:603.000000px;}
.w13{width:646.740000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.380000px;}
.x2{left:8.640000px;}
.x19{left:12.600000px;}
.x37{left:21.996000px;}
.xc{left:26.136000px;}
.x31{left:32.190000px;}
.x38{left:39.636000px;}
.xe{left:40.716000px;}
.x39{left:57.456000px;}
.x1{left:72.360000px;}
.x22{left:73.620000px;}
.x3a{left:75.096000px;}
.x4{left:80.999987px;}
.x1e{left:89.175000px;}
.x5{left:98.130000px;}
.x32{left:110.625000px;}
.x2e{left:113.190000px;}
.x1d{left:114.630000px;}
.x16{left:120.450000px;}
.x30{left:122.400000px;}
.x49{left:138.455987px;}
.x2c{left:144.900000px;}
.x2d{left:150.810000px;}
.x12{left:161.310000px;}
.x10{left:162.750000px;}
.x13{left:169.230000px;}
.x11{left:186.510000px;}
.x14{left:189.930000px;}
.x43{left:192.270000px;}
.xf{left:195.330000px;}
.x42{left:206.849987px;}
.x36{left:209.909987px;}
.x17{left:215.175000px;}
.x33{left:217.110000px;}
.x1c{left:222.480000px;}
.x24{left:225.930000px;}
.x3b{left:227.010000px;}
.x6{left:228.270000px;}
.x2b{left:231.509987px;}
.x21{left:242.489987px;}
.x15{left:250.635000px;}
.x1b{left:275.609987px;}
.x9{left:285.015000px;}
.x34{left:291.674987px;}
.x18{left:293.835000px;}
.x25{left:314.535000px;}
.x3c{left:320.475000px;}
.xd{left:334.875000px;}
.x7{left:344.775000px;}
.x8{left:364.035000px;}
.x44{left:366.015000px;}
.xb{left:373.575000px;}
.x1f{left:381.030000px;}
.x3d{left:390.135000px;}
.x26{left:425.055000px;}
.x35{left:447.375000px;}
.xa{left:452.280000px;}
.x45{left:456.375000px;}
.x3e{left:475.125000px;}
.x2f{left:491.910000px;}
.x27{left:524.625000px;}
.x46{left:546.585000px;}
.x3f{left:559.905000px;}
.x47{left:636.765000px;}
.x40{left:644.685000px;}
.x28{left:646.305000px;}
.x1a{left:670.469987px;}
.x29{left:712.770000px;}
.x48{left:726.990000px;}
.x41{left:729.690000px;}
.x3{left:745.890000px;}
.x20{left:748.049987px;}
.x2a{left:770.549987px;}
@media print{
.v5{vertical-align:-45.920000pt;}
.v8{vertical-align:-39.306667pt;}
.v4{vertical-align:-32.800000pt;}
.v6{vertical-align:-26.133333pt;}
.v2{vertical-align:-13.440000pt;}
.v7{vertical-align:-6.506667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:40.053333pt;}
.lse{letter-spacing:-4.160000pt;}
.ls15{letter-spacing:-0.869333pt;}
.ls14{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.224000pt;}
.ls1c{letter-spacing:-0.116800pt;}
.ls16{letter-spacing:-0.089067pt;}
.ls17{letter-spacing:-0.051840pt;}
.ls18{letter-spacing:-0.032000pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.011520pt;}
.ls1e{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.ls8{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.504747pt;}
.ls4{letter-spacing:0.509440pt;}
.ls1f{letter-spacing:0.688000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls11{letter-spacing:0.800000pt;}
.lsf{letter-spacing:2.080000pt;}
.ls21{letter-spacing:14.672640pt;}
.ls7{letter-spacing:18.240000pt;}
.ls20{letter-spacing:40.912640pt;}
.ls1a{letter-spacing:99.148160pt;}
.ls1b{letter-spacing:99.254827pt;}
.ws16{word-spacing:-111.259947pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws1a{word-spacing:-13.968000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws17{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.190933pt;}
.ws4{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.wsa{word-spacing:-9.120000pt;}
.ws19{word-spacing:-8.655360pt;}
.ws18{word-spacing:-8.651520pt;}
.wsb{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.ws6{word-spacing:-7.008000pt;}
.wsc{word-spacing:0.000000pt;}
.ws12{word-spacing:60.473387pt;}
.ws11{word-spacing:60.526720pt;}
.ws13{word-spacing:60.562880pt;}
.ws14{word-spacing:73.913387pt;}
.ws10{word-spacing:87.016213pt;}
.ws15{word-spacing:87.249707pt;}
._18{margin-left:-7.935573pt;}
._4{margin-left:-4.940160pt;}
._5{margin-left:-3.998507pt;}
._2{margin-left:-2.960427pt;}
._3{margin-left:-1.872000pt;}
._0{margin-left:-0.933333pt;}
._1{width:1.072000pt;}
._8{width:2.602880pt;}
._7{width:3.799040pt;}
._6{width:5.060907pt;}
._a{width:6.417920pt;}
._9{width:7.489920pt;}
._e{width:8.542720pt;}
._14{width:9.455360pt;}
._d{width:10.570880pt;}
._11{width:12.164480pt;}
._f{width:14.737920pt;}
._15{width:15.864107pt;}
._13{width:17.134507pt;}
._12{width:18.592000pt;}
._1a{width:19.548160pt;}
._1b{width:20.557440pt;}
._16{width:22.104320pt;}
._c{width:23.153920pt;}
._b{width:24.328960pt;}
._1d{width:25.285120pt;}
._1c{width:26.406827pt;}
._22{width:29.047040pt;}
._10{width:35.377920pt;}
._21{width:42.177280pt;}
._24{width:48.604160pt;}
._25{width:49.582933pt;}
._1e{width:62.522240pt;}
._23{width:77.714560pt;}
._1f{width:83.441920pt;}
._20{width:89.879040pt;}
._17{width:155.840427pt;}
._19{width:245.074560pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs9{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:0.160000pt;}
.y42{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y47{bottom:3.520000pt;}
.y1e{bottom:4.320000pt;}
.yec{bottom:4.480000pt;}
.ye6{bottom:7.520000pt;}
.ye{bottom:8.480000pt;}
.y45{bottom:9.440000pt;}
.y21{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.yf2{bottom:18.080000pt;}
.ye8{bottom:18.234667pt;}
.y41{bottom:18.240000pt;}
.yfa{bottom:18.266667pt;}
.y46{bottom:19.840000pt;}
.y44{bottom:22.560000pt;}
.y1d{bottom:26.080000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:29.120000pt;}
.y40{bottom:33.440000pt;}
.y1c{bottom:40.640000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:47.840000pt;}
.y3f{bottom:48.800000pt;}
.y1b{bottom:55.360000pt;}
.y3e{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y87{bottom:68.613333pt;}
.y1a{bottom:69.920000pt;}
.y8b{bottom:71.653333pt;}
.y3d{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y19{bottom:84.640000pt;}
.ya9{bottom:87.360000pt;}
.y2f{bottom:87.840000pt;}
.y3c{bottom:94.880000pt;}
.ye9{bottom:95.232000pt;}
.y85{bottom:95.712000pt;}
.y8a{bottom:95.773333pt;}
.y88{bottom:97.306667pt;}
.ya6{bottom:98.306667pt;}
.y7{bottom:98.906667pt;}
.y18{bottom:99.200000pt;}
.ya3{bottom:99.392000pt;}
.y2e{bottom:101.440000pt;}
.y3b{bottom:110.240000pt;}
.y84{bottom:111.072000pt;}
.ya8{bottom:111.493333pt;}
.ya2{bottom:111.872000pt;}
.yaa{bottom:112.480000pt;}
.y17{bottom:113.960000pt;}
.y111{bottom:114.432000pt;}
.y2d{bottom:117.120000pt;}
.y54{bottom:124.992000pt;}
.y3a{bottom:125.440000pt;}
.y83{bottom:126.432000pt;}
.ye7{bottom:126.592000pt;}
.y16{bottom:128.040000pt;}
.y110{bottom:129.792000pt;}
.yab{bottom:130.973333pt;}
.y2c{bottom:132.480000pt;}
.y15{bottom:137.320000pt;}
.y53{bottom:140.186667pt;}
.y39{bottom:140.800000pt;}
.y82{bottom:141.626667pt;}
.y10f{bottom:145.146667pt;}
.yac{bottom:147.360000pt;}
.y2b{bottom:147.840000pt;}
.y14{bottom:153.640000pt;}
.ya5{bottom:154.626667pt;}
.y52{bottom:155.546667pt;}
.y38{bottom:156.160000pt;}
.y81{bottom:156.986667pt;}
.ye5{bottom:157.946667pt;}
.y10e{bottom:160.506667pt;}
.y2a{bottom:163.680000pt;}
.yad{bottom:163.706667pt;}
.y80{bottom:169.466667pt;}
.y13{bottom:169.800000pt;}
.y51{bottom:170.906667pt;}
.y86{bottom:171.040000pt;}
.y37{bottom:171.520000pt;}
.y10d{bottom:175.866667pt;}
.yb5{bottom:178.693333pt;}
.y29{bottom:179.040000pt;}
.yae{bottom:180.093333pt;}
.y89{bottom:183.586667pt;}
.y50{bottom:186.266667pt;}
.y12{bottom:186.760000pt;}
.y36{bottom:186.906667pt;}
.y10c{bottom:191.226667pt;}
.y28{bottom:194.586667pt;}
.yaf{bottom:196.480000pt;}
.y4f{bottom:201.626667pt;}
.y35{bottom:202.266667pt;}
.y10b{bottom:206.426667pt;}
.y11{bottom:209.640000pt;}
.y27{bottom:209.946667pt;}
.yb0{bottom:212.826667pt;}
.ya7{bottom:214.973333pt;}
.y4e{bottom:216.986667pt;}
.y34{bottom:217.466667pt;}
.y10a{bottom:221.786667pt;}
.y26{bottom:225.466667pt;}
.yb1{bottom:229.213333pt;}
.y10{bottom:231.240000pt;}
.y4d{bottom:232.186667pt;}
.y33{bottom:232.826667pt;}
.y109{bottom:237.146667pt;}
.y25{bottom:241.146667pt;}
.yb4{bottom:242.533333pt;}
.yb2{bottom:245.600000pt;}
.y4c{bottom:247.546667pt;}
.y32{bottom:248.186667pt;}
.y108{bottom:252.506667pt;}
.yb3{bottom:261.986667pt;}
.y4b{bottom:262.906667pt;}
.y31{bottom:263.546667pt;}
.y24{bottom:265.466667pt;}
.y107{bottom:267.866667pt;}
.ye4{bottom:274.746667pt;}
.y4a{bottom:278.266667pt;}
.y30{bottom:278.906667pt;}
.y23{bottom:281.146667pt;}
.y106{bottom:283.226667pt;}
.ye3{bottom:290.106667pt;}
.y49{bottom:293.626667pt;}
.y105{bottom:298.426667pt;}
.ye2{bottom:305.346667pt;}
.y48{bottom:309.026667pt;}
.y104{bottom:313.826667pt;}
.ye1{bottom:320.706667pt;}
.y43{bottom:321.346667pt;}
.y103{bottom:329.186667pt;}
.ye0{bottom:336.066667pt;}
.y102{bottom:344.546667pt;}
.ydf{bottom:351.426667pt;}
.y22{bottom:353.986667pt;}
.y101{bottom:359.906667pt;}
.yde{bottom:366.786667pt;}
.y100{bottom:375.266667pt;}
.ydd{bottom:382.146667pt;}
.y7f{bottom:390.466667pt;}
.ydc{bottom:397.346667pt;}
.y7e{bottom:405.666667pt;}
.yff{bottom:405.826667pt;}
.ya1{bottom:408.706667pt;}
.ydb{bottom:412.706667pt;}
.y7d{bottom:421.026667pt;}
.yfe{bottom:421.186667pt;}
.ya0{bottom:424.066667pt;}
.yda{bottom:428.066667pt;}
.y7c{bottom:436.386667pt;}
.yfd{bottom:436.546667pt;}
.y9f{bottom:439.426667pt;}
.yd9{bottom:443.426667pt;}
.y7b{bottom:451.746667pt;}
.yfc{bottom:451.906667pt;}
.y9e{bottom:454.786667pt;}
.yd8{bottom:458.786667pt;}
.y7a{bottom:467.106667pt;}
.y9d{bottom:469.986667pt;}
.yd7{bottom:473.986667pt;}
.y79{bottom:482.466667pt;}
.y9c{bottom:485.346667pt;}
.yd6{bottom:489.346667pt;}
.yfb{bottom:495.586667pt;}
.y78{bottom:497.666667pt;}
.y9b{bottom:500.706667pt;}
.yd5{bottom:504.706667pt;}
.y77{bottom:513.026667pt;}
.y9a{bottom:516.066667pt;}
.yd4{bottom:520.066667pt;}
.yf9{bottom:526.946667pt;}
.y76{bottom:528.386667pt;}
.y99{bottom:531.426667pt;}
.yd3{bottom:535.426667pt;}
.y75{bottom:543.773333pt;}
.y98{bottom:546.653333pt;}
.yd2{bottom:550.813333pt;}
.yf8{bottom:558.333333pt;}
.y74{bottom:559.133333pt;}
.y97{bottom:560.573333pt;}
.yd1{bottom:566.013333pt;}
.y73{bottom:574.493333pt;}
.y96{bottom:577.213333pt;}
.yd0{bottom:581.373333pt;}
.y72{bottom:589.693333pt;}
.y95{bottom:593.853333pt;}
.ycf{bottom:596.733333pt;}
.y71{bottom:605.053333pt;}
.yce{bottom:612.093333pt;}
.y70{bottom:620.413333pt;}
.yf7{bottom:621.053333pt;}
.y94{bottom:625.853333pt;}
.ycd{bottom:627.453333pt;}
.y6f{bottom:635.773333pt;}
.ycc{bottom:642.813333pt;}
.y1f{bottom:645.213333pt;}
.y6e{bottom:651.133333pt;}
.yf6{bottom:652.253333pt;}
.ycb{bottom:658.013333pt;}
.y93{bottom:659.453333pt;}
.y6d{bottom:666.333333pt;}
.yf{bottom:671.613333pt;}
.yca{bottom:673.373333pt;}
.y6c{bottom:681.693333pt;}
.yf5{bottom:683.613333pt;}
.yc9{bottom:688.733333pt;}
.y92{bottom:694.333333pt;}
.y6b{bottom:697.053333pt;}
.yc8{bottom:704.093333pt;}
.y91{bottom:709.693333pt;}
.y6a{bottom:712.413333pt;}
.yf4{bottom:714.973333pt;}
.yc7{bottom:719.453333pt;}
.y90{bottom:725.053333pt;}
.y69{bottom:727.773333pt;}
.yc6{bottom:734.653333pt;}
.y8f{bottom:740.413333pt;}
.y68{bottom:743.133333pt;}
.yf3{bottom:746.333333pt;}
.yc5{bottom:750.013333pt;}
.y8e{bottom:755.773333pt;}
.y67{bottom:758.333333pt;}
.yc4{bottom:765.373333pt;}
.y8d{bottom:770.973333pt;}
.y66{bottom:773.693333pt;}
.yf1{bottom:777.733333pt;}
.yc3{bottom:780.773333pt;}
.y8c{bottom:783.493333pt;}
.ya4{bottom:783.680000pt;}
.y65{bottom:789.093333pt;}
.yc2{bottom:796.133333pt;}
.y64{bottom:804.453333pt;}
.yf0{bottom:808.933333pt;}
.yc1{bottom:811.493333pt;}
.y63{bottom:819.813333pt;}
.yc0{bottom:826.693333pt;}
.y112{bottom:835.173333pt;}
.y62{bottom:839.813333pt;}
.yef{bottom:840.293333pt;}
.ybf{bottom:842.053333pt;}
.y61{bottom:850.373333pt;}
.ybe{bottom:857.413333pt;}
.y60{bottom:865.733333pt;}
.ybd{bottom:872.773333pt;}
.y5f{bottom:881.093333pt;}
.ybc{bottom:888.133333pt;}
.y5e{bottom:896.453333pt;}
.ybb{bottom:903.493333pt;}
.y5d{bottom:911.813333pt;}
.yd{bottom:916.293333pt;}
.yba{bottom:918.693333pt;}
.y5c{bottom:927.013333pt;}
.yb9{bottom:932.613333pt;}
.y6{bottom:938.853333pt;}
.y5b{bottom:942.373333pt;}
.yb8{bottom:949.253333pt;}
.yee{bottom:954.053333pt;}
.y5a{bottom:957.733333pt;}
.yb7{bottom:965.893333pt;}
.yed{bottom:969.413333pt;}
.y59{bottom:973.093333pt;}
.yeb{bottom:982.533333pt;}
.yb6{bottom:984.133333pt;}
.y58{bottom:988.453333pt;}
.y57{bottom:1003.813333pt;}
.yea{bottom:1015.520000pt;}
.y56{bottom:1019.040000pt;}
.y55{bottom:1034.400000pt;}
.h26{height:15.200000pt;}
.h25{height:15.360000pt;}
.hc{height:22.240000pt;}
.h21{height:24.131250pt;}
.h14{height:26.400000pt;}
.h13{height:28.536562pt;}
.h2{height:29.312000pt;}
.h34{height:30.560000pt;}
.h35{height:30.592000pt;}
.h24{height:30.720000pt;}
.h36{height:30.752000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h31{height:32.352000pt;}
.h1f{height:32.640000pt;}
.h1e{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h1b{height:37.499062pt;}
.h37{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h4{height:41.976562pt;}
.h17{height:42.649687pt;}
.h1d{height:42.691250pt;}
.h2d{height:42.944360pt;}
.h2f{height:42.944363pt;}
.h2e{height:42.944364pt;}
.h33{height:42.944371pt;}
.h30{height:42.944373pt;}
.h2b{height:43.108125pt;}
.h1a{height:43.782500pt;}
.h19{height:44.215312pt;}
.h20{height:46.454062pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h2a{height:52.962000pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h29{height:92.888021pt;}
.h23{height:98.296875pt;}
.h7{height:108.032000pt;}
.h32{height:110.240000pt;}
.h2c{height:113.280000pt;}
.h22{height:216.640000pt;}
.hd{height:244.666667pt;}
.h27{height:247.840000pt;}
.h16{height:291.226667pt;}
.h28{height:293.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:57.792000pt;}
.w17{width:61.280000pt;}
.w3{width:66.560000pt;}
.w1d{width:73.600000pt;}
.w19{width:74.720000pt;}
.w1a{width:74.752000pt;}
.w1b{width:74.880000pt;}
.w18{width:74.912000pt;}
.wc{width:77.312000pt;}
.w20{width:79.200000pt;}
.w1f{width:79.520000pt;}
.w1e{width:79.552000pt;}
.w16{width:82.432000pt;}
.we{width:87.072000pt;}
.w11{width:94.880000pt;}
.wd{width:96.960000pt;}
.w1c{width:105.152000pt;}
.wf{width:106.880000pt;}
.wb{width:134.106667pt;}
.w15{width:136.026667pt;}
.w5{width:138.106667pt;}
.w8{width:196.386667pt;}
.w14{width:330.786667pt;}
.wa{width:395.840000pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w12{width:536.000000pt;}
.w13{width:574.880000pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.560000pt;}
.x2{left:7.680000pt;}
.x19{left:11.200000pt;}
.x37{left:19.552000pt;}
.xc{left:23.232000pt;}
.x31{left:28.613333pt;}
.x38{left:35.232000pt;}
.xe{left:36.192000pt;}
.x39{left:51.072000pt;}
.x1{left:64.320000pt;}
.x22{left:65.440000pt;}
.x3a{left:66.752000pt;}
.x4{left:71.999988pt;}
.x1e{left:79.266667pt;}
.x5{left:87.226667pt;}
.x32{left:98.333333pt;}
.x2e{left:100.613333pt;}
.x1d{left:101.893333pt;}
.x16{left:107.066667pt;}
.x30{left:108.800000pt;}
.x49{left:123.071988pt;}
.x2c{left:128.800000pt;}
.x2d{left:134.053333pt;}
.x12{left:143.386667pt;}
.x10{left:144.666667pt;}
.x13{left:150.426667pt;}
.x11{left:165.786667pt;}
.x14{left:168.826667pt;}
.x43{left:170.906667pt;}
.xf{left:173.626667pt;}
.x42{left:183.866655pt;}
.x36{left:186.586655pt;}
.x17{left:191.266667pt;}
.x33{left:192.986667pt;}
.x1c{left:197.760000pt;}
.x24{left:200.826667pt;}
.x3b{left:201.786667pt;}
.x6{left:202.906667pt;}
.x2b{left:205.786655pt;}
.x21{left:215.546655pt;}
.x15{left:222.786667pt;}
.x1b{left:244.986655pt;}
.x9{left:253.346667pt;}
.x34{left:259.266655pt;}
.x18{left:261.186667pt;}
.x25{left:279.586667pt;}
.x3c{left:284.866667pt;}
.xd{left:297.666667pt;}
.x7{left:306.466667pt;}
.x8{left:323.586667pt;}
.x44{left:325.346667pt;}
.xb{left:332.066667pt;}
.x1f{left:338.693333pt;}
.x3d{left:346.786667pt;}
.x26{left:377.826667pt;}
.x35{left:397.666667pt;}
.xa{left:402.026667pt;}
.x45{left:405.666667pt;}
.x3e{left:422.333333pt;}
.x2f{left:437.253333pt;}
.x27{left:466.333333pt;}
.x46{left:485.853333pt;}
.x3f{left:497.693333pt;}
.x47{left:566.013333pt;}
.x40{left:573.053333pt;}
.x28{left:574.493333pt;}
.x1a{left:595.973322pt;}
.x29{left:633.573333pt;}
.x48{left:646.213333pt;}
.x41{left:648.613333pt;}
.x3{left:663.013333pt;}
.x20{left:664.933322pt;}
.x2a{left:684.933322pt;}
}




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