
    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_975879a9f0af9c9d36f417be.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_a63ab31191f3c2d91e56a5a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_29688fe1358e7543db630474.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_bf4deba83ff96311a55d48dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_208b5156777ad53374ebecf8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_26007f6ada94c1be48bf0bdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_40f265f9e8675d4c252c3c7c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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_e278e38faccd1d523e3e5bac.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_2c62b03506c6613e80b94287.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c41095513a96e3d5daf80a4f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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;}
.m4{transform:matrix(0.148290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148290,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);}
.m8{transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254159,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.261310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261310,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);}
.v3{vertical-align:-54.302184px;}
.v4{vertical-align:-45.050022px;}
.v2{vertical-align:-28.343539px;}
.v5{vertical-align:-20.589578px;}
.v6{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:14.099400px;}
.v8{vertical-align:23.809775px;}
.v7{vertical-align:27.360000px;}
.v9{vertical-align:38.040028px;}
.v1{vertical-align:48.333225px;}
.ls5{letter-spacing:-0.666000px;}
.ls25{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.460200px;}
.ls1b{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106560px;}
.ls13{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.132480px;}
.ls17{letter-spacing:0.135600px;}
.lsd{letter-spacing:0.146880px;}
.ls2{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls26{letter-spacing:0.262061px;}
.ls6{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.666000px;}
.ls12{letter-spacing:0.828000px;}
.ls1e{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.080000px;}
.ls15{letter-spacing:1.375900px;}
.ls1{letter-spacing:2.340000px;}
.ls21{letter-spacing:3.060000px;}
.ls23{letter-spacing:5.220000px;}
.ls1d{letter-spacing:6.660000px;}
.ls19{letter-spacing:8.100000px;}
.ls20{letter-spacing:11.700000px;}
.ls22{letter-spacing:13.140000px;}
.ls24{letter-spacing:16.740000px;}
.lsb{letter-spacing:88.771352px;}
.ls8{letter-spacing:111.137965px;}
.lsf{letter-spacing:350.767372px;}
.lse{letter-spacing:385.117273px;}
.lsa{letter-spacing:761.285436px;}
.ls9{letter-spacing:844.582113px;}
.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;}
}
.ws1e{word-spacing:-34.872854px;}
.wsa{word-spacing:-34.562331px;}
.wsc{word-spacing:-32.808240px;}
.ws13{word-spacing:-31.108951px;}
.ws8{word-spacing:-16.020000px;}
.ws1c{word-spacing:-15.880170px;}
.ws6{word-spacing:-15.768000px;}
.ws9{word-spacing:-15.738767px;}
.ws16{word-spacing:-15.606000px;}
.ws5{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.199800px;}
.ws18{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.075600px;}
.ws7{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.733600px;}
.ws17{word-spacing:-14.580000px;}
.ws1f{word-spacing:-14.570585px;}
.ws1a{word-spacing:-14.479800px;}
.ws1{word-spacing:-14.274000px;}
.ws10{word-spacing:-14.166189px;}
.ws23{word-spacing:-13.129197px;}
.ws20{word-spacing:-12.897457px;}
.ws14{word-spacing:-12.060000px;}
.ws1d{word-spacing:-11.131693px;}
.ws11{word-spacing:-9.909245px;}
.wsd{word-spacing:-9.720000px;}
.wse{word-spacing:-9.711360px;}
.ws22{word-spacing:-0.037803px;}
.ws24{word-spacing:-0.035420px;}
.ws21{word-spacing:-0.034795px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:54.907238px;}
.wsb{word-spacing:115.297113px;}
.ws1b{word-spacing:1442.138453px;}
._2d{margin-left:-310.931857px;}
._2c{margin-left:-296.035121px;}
._2f{margin-left:-284.361113px;}
._13{margin-left:-253.727904px;}
._1b{margin-left:-231.117545px;}
._1e{margin-left:-211.966292px;}
._31{margin-left:-186.688343px;}
._20{margin-left:-178.885490px;}
._1d{margin-left:-168.904005px;}
._2a{margin-left:-160.502947px;}
._21{margin-left:-141.640939px;}
._12{margin-left:-136.006119px;}
._14{margin-left:-117.955932px;}
._f{margin-left:-90.639610px;}
._32{margin-left:-86.238206px;}
._1f{margin-left:-77.238736px;}
._10{margin-left:-67.535223px;}
._11{margin-left:-66.166936px;}
._30{margin-left:-55.546802px;}
._2e{margin-left:-53.449836px;}
._1c{margin-left:-51.604839px;}
._2b{margin-left:-3.384362px;}
._a{margin-left:-2.093280px;}
._0{margin-left:-1.059840px;}
._3{width:1.539360px;}
._7{width:2.651760px;}
._5{width:3.898800px;}
._4{width:5.617440px;}
._6{width:6.770400px;}
._26{width:7.820400px;}
._8{width:8.904240px;}
._9{width:10.049520px;}
._c{width:11.055600px;}
._b{width:12.864480px;}
._d{width:13.914480px;}
._27{width:15.950160px;}
._28{width:17.309040px;}
._33{width:18.480240px;}
._34{width:19.692000px;}
._35{width:20.874000px;}
._29{width:24.322320px;}
._1{width:29.533920px;}
._e{width:31.094880px;}
._25{width:60.533760px;}
._22{width:83.520000px;}
._19{width:111.927360px;}
._23{width:140.016000px;}
._18{width:143.427360px;}
._15{width:146.460720px;}
._24{width:157.576080px;}
._16{width:160.922640px;}
._17{width:164.209440px;}
._1a{width:194.376000px;}
._2{width:197.609760px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:30.240000px;}
.fs14{font-size:34.795298px;}
.fs19{font-size:35.420496px;}
.fs16{font-size:37.803476px;}
.fs2{font-size:38.880000px;}
.fsa{font-size:39.636978px;}
.fs6{font-size:44.008618px;}
.fse{font-size:44.526771px;}
.fs13{font-size:46.393731px;}
.fs18{font-size:47.227328px;}
.fs4{font-size:48.240000px;}
.fs1b{font-size:49.457518px;}
.fs11{font-size:52.412175px;}
.fs5{font-size:54.000000px;}
.fs12{font-size:54.280665px;}
.fs17{font-size:55.255974px;}
.fs9{font-size:56.664757px;}
.fs1a{font-size:57.865296px;}
.fs15{font-size:58.973423px;}
.fs1{font-size:59.760000px;}
.fs10{font-size:61.322245px;}
.fs7{font-size:62.955066px;}
.fsd{font-size:63.520682px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsc{font-size:105.923867px;}
.fs8{font-size:113.380270px;}
.fsf{font-size:114.433160px;}
.y0{bottom:0.000000px;}
.y79{bottom:3.026110px;}
.y5f{bottom:3.207532px;}
.y60{bottom:4.289141px;}
.yab{bottom:4.977095px;}
.y6a{bottom:5.333447px;}
.y5c{bottom:5.818223px;}
.y66{bottom:8.205259px;}
.y63{bottom:9.734340px;}
.y68{bottom:9.734343px;}
.y7c{bottom:10.574551px;}
.y7b{bottom:14.132115px;}
.yb2{bottom:17.439065px;}
.y5d{bottom:18.051809px;}
.y6c{bottom:18.313229px;}
.y65{bottom:22.005228px;}
.y6d{bottom:22.005230px;}
.y7a{bottom:23.609407px;}
.yae{bottom:26.594652px;}
.y61{bottom:28.158559px;}
.y5e{bottom:29.091113px;}
.y62{bottom:29.091115px;}
.y64{bottom:31.888775px;}
.y69{bottom:31.888778px;}
.y67{bottom:32.075288px;}
.y6b{bottom:33.267732px;}
.y101{bottom:38.472395px;}
.yb1{bottom:40.386433px;}
.yb0{bottom:41.640090px;}
.y10c{bottom:42.276330px;}
.y5b{bottom:43.450920px;}
.yac{bottom:45.591055px;}
.yaa{bottom:45.743674px;}
.yf0{bottom:48.941520px;}
.yec{bottom:49.893120px;}
.yaf{bottom:53.380857px;}
.y4{bottom:58.500000px;}
.yad{bottom:64.170092px;}
.y11a{bottom:105.014804px;}
.y3a{bottom:109.980000px;}
.y99{bottom:113.940000px;}
.y85{bottom:127.260000px;}
.y39{bottom:127.980000px;}
.ybd{bottom:128.880000px;}
.y98{bottom:133.740000px;}
.y38{bottom:136.260000px;}
.y84{bottom:143.640000px;}
.ybc{bottom:148.500000px;}
.y37{bottom:148.680000px;}
.ye1{bottom:153.180000px;}
.y97{bottom:153.540000px;}
.y83{bottom:157.500000px;}
.y82{bottom:162.720000px;}
.ybb{bottom:168.660000px;}
.yfe{bottom:169.200000px;}
.y81{bottom:172.800000px;}
.y96{bottom:173.340000px;}
.ye0{bottom:177.120000px;}
.y36{bottom:179.100000px;}
.ye9{bottom:182.880000px;}
.y10f{bottom:183.537205px;}
.y111{bottom:186.016639px;}
.y105{bottom:188.450338px;}
.yba{bottom:188.460000px;}
.y95{bottom:193.320000px;}
.y10e{bottom:194.163353px;}
.ydf{bottom:195.300000px;}
.y110{bottom:196.524720px;}
.y35{bottom:198.900000px;}
.y104{bottom:199.791381px;}
.y10d{bottom:204.671434px;}
.ye8{bottom:206.820000px;}
.yb9{bottom:208.260000px;}
.y80{bottom:210.060000px;}
.y103{bottom:211.006412px;}
.yde{bottom:212.610000px;}
.y94{bottom:212.790000px;}
.ya0{bottom:213.150000px;}
.yfd{bottom:217.290000px;}
.y34{bottom:218.730000px;}
.yb8{bottom:228.090000px;}
.y7f{bottom:229.890000px;}
.ye7{bottom:230.790000px;}
.y93{bottom:232.590000px;}
.y9f{bottom:232.950000px;}
.y33{bottom:238.530000px;}
.yfc{bottom:241.230000px;}
.ydd{bottom:246.990000px;}
.yee{bottom:247.305000px;}
.yb7{bottom:248.070000px;}
.y7e{bottom:249.870000px;}
.yed{bottom:250.846858px;}
.y92{bottom:252.750000px;}
.y10a{bottom:258.405000px;}
.y32{bottom:258.510000px;}
.yf3{bottom:263.120113px;}
.ydc{bottom:264.270000px;}
.yb6{bottom:267.870000px;}
.y7d{bottom:269.670000px;}
.y91{bottom:272.550000px;}
.yf2{bottom:273.558702px;}
.y102{bottom:277.939568px;}
.y31{bottom:278.310000px;}
.ydb{bottom:281.550000px;}
.yf1{bottom:283.881307px;}
.y78{bottom:286.439998px;}
.yb5{bottom:287.670000px;}
.y90{bottom:292.530000px;}
.y30{bottom:298.110000px;}
.yda{bottom:298.830000px;}
.y77{bottom:301.350000px;}
.yb4{bottom:307.470000px;}
.y8f{bottom:312.330000px;}
.yd9{bottom:316.110000px;}
.y2f{bottom:317.910000px;}
.ya9{bottom:324.465000px;}
.y107{bottom:327.115588px;}
.y76{bottom:330.870000px;}
.y8e{bottom:332.130000px;}
.yd8{bottom:333.390000px;}
.y2e{bottom:337.710000px;}
.y106{bottom:338.456631px;}
.yb3{bottom:340.950000px;}
.yf5{bottom:343.168630px;}
.yf7{bottom:348.967846px;}
.yd7{bottom:350.490000px;}
.y75{bottom:350.850000px;}
.y8d{bottom:351.930000px;}
.yf4{bottom:353.491235px;}
.y113{bottom:356.900855px;}
.y2d{bottom:357.690000px;}
.yf6{bottom:359.290451px;}
.yeb{bottom:360.300954px;}
.y10b{bottom:365.283706px;}
.yef{bottom:366.249511px;}
.y109{bottom:366.305188px;}
.y112{bottom:367.408936px;}
.yd6{bottom:367.770000px;}
.y119{bottom:369.066432px;}
.y74{bottom:371.730000px;}
.y2c{bottom:377.490000px;}
.y108{bottom:377.520220px;}
.y100{bottom:378.780341px;}
.yd5{bottom:385.050000px;}
.y73{bottom:391.530000px;}
.y8c{bottom:391.710000px;}
.y2b{bottom:397.290000px;}
.yd4{bottom:402.330000px;}
.y72{bottom:411.510000px;}
.y2a{bottom:417.090000px;}
.yd3{bottom:419.610000px;}
.y8b{bottom:431.310000px;}
.y71{bottom:431.490000px;}
.y29{bottom:436.890000px;}
.y8a{bottom:451.155000px;}
.y70{bottom:452.415000px;}
.yd2{bottom:454.035000px;}
.y28{bottom:456.915000px;}
.y89{bottom:470.955000px;}
.yd1{bottom:471.315000px;}
.y6f{bottom:472.215000px;}
.y27{bottom:476.715000px;}
.yd0{bottom:488.595000px;}
.y5a{bottom:489.164996px;}
.y9e{bottom:490.575000px;}
.y88{bottom:490.935000px;}
.y26{bottom:496.515000px;}
.ycf{bottom:505.875000px;}
.y6e{bottom:510.195000px;}
.y87{bottom:510.735000px;}
.y25{bottom:516.315000px;}
.yce{bottom:523.155000px;}
.y86{bottom:530.535000px;}
.y24{bottom:536.115000px;}
.ycd{bottom:540.435000px;}
.y59{bottom:550.335000px;}
.y23{bottom:556.095000px;}
.ycc{bottom:557.535000px;}
.y58{bottom:570.135000px;}
.ycb{bottom:574.815000px;}
.y22{bottom:575.535000px;}
.y57{bottom:590.115000px;}
.yca{bottom:592.095000px;}
.y21{bottom:599.115000px;}
.yc9{bottom:609.375000px;}
.y56{bottom:609.915000px;}
.y20{bottom:623.235000px;}
.yc8{bottom:626.655000px;}
.y55{bottom:629.715000px;}
.yc7{bottom:643.755000px;}
.ye6{bottom:646.275000px;}
.y1f{bottom:647.175000px;}
.y54{bottom:649.515000px;}
.yfb{bottom:652.395000px;}
.yc6{bottom:661.035000px;}
.y117{bottom:661.395000px;}
.ya8{bottom:668.955000px;}
.y53{bottom:669.315000px;}
.ye5{bottom:670.395000px;}
.y1e{bottom:671.115000px;}
.yfa{bottom:676.335000px;}
.yc5{bottom:678.315000px;}
.y116{bottom:685.365000px;}
.y9d{bottom:688.965000px;}
.y1d{bottom:689.145000px;}
.y52{bottom:689.325000px;}
.ye4{bottom:694.365000px;}
.yc4{bottom:695.625000px;}
.yf9{bottom:700.305000px;}
.y1c{bottom:707.145000px;}
.y9c{bottom:708.765000px;}
.y51{bottom:709.125000px;}
.y115{bottom:709.305000px;}
.yc3{bottom:712.905000px;}
.ye3{bottom:718.305000px;}
.yf8{bottom:724.425000px;}
.y1b{bottom:725.145000px;}
.y50{bottom:728.925000px;}
.yc2{bottom:730.185000px;}
.y114{bottom:733.425000px;}
.yff{bottom:740.279992px;}
.ye2{bottom:742.425000px;}
.y1a{bottom:743.145000px;}
.yc1{bottom:747.285000px;}
.y4f{bottom:748.725000px;}
.y118{bottom:750.329992px;}
.yea{bottom:758.054992px;}
.y19{bottom:761.145000px;}
.yc0{bottom:764.205000px;}
.y4e{bottom:768.525000px;}
.y18{bottom:779.145000px;}
.ybf{bottom:787.785000px;}
.ya7{bottom:788.145000px;}
.y4d{bottom:788.505000px;}
.y17{bottom:797.145000px;}
.ya6{bottom:807.945000px;}
.y4c{bottom:808.305000px;}
.y16{bottom:815.145000px;}
.ya5{bottom:827.745000px;}
.y4b{bottom:828.105000px;}
.y15{bottom:839.265000px;}
.y49{bottom:847.905000px;}
.y4a{bottom:854.745000px;}
.y14{bottom:863.205000px;}
.y48{bottom:867.705000px;}
.y13{bottom:881.025000px;}
.y47{bottom:887.325000px;}
.y9b{bottom:887.685000px;}
.y12{bottom:898.665000px;}
.y46{bottom:907.125000px;}
.y9a{bottom:907.485000px;}
.y11{bottom:915.765000px;}
.ya4{bottom:926.970000px;}
.y45{bottom:927.330000px;}
.y10{bottom:933.090000px;}
.y44{bottom:947.130000px;}
.yf{bottom:950.370000px;}
.y43{bottom:966.930000px;}
.ye{bottom:967.290000px;}
.yd{bottom:984.930000px;}
.y42{bottom:986.910000px;}
.yc{bottom:1002.030000px;}
.y41{bottom:1006.710000px;}
.yb{bottom:1019.310000px;}
.y40{bottom:1026.510000px;}
.ya{bottom:1036.590000px;}
.ya3{bottom:1045.950000px;}
.y3f{bottom:1046.310000px;}
.y8{bottom:1053.510000px;}
.y9{bottom:1060.350000px;}
.ya2{bottom:1065.750000px;}
.y3e{bottom:1066.110000px;}
.y7{bottom:1076.910000px;}
.ya1{bottom:1085.730000px;}
.y3d{bottom:1086.090000px;}
.y6{bottom:1101.030000px;}
.y3c{bottom:1105.890000px;}
.y5{bottom:1124.970000px;}
.ybe{bottom:1125.330000px;}
.y3b{bottom:1125.690000px;}
.y3{bottom:1142.610000px;}
.y2{bottom:1170.180000px;}
.y1{bottom:1193.400000px;}
.h26{height:25.331929px;}
.h2d{height:25.787090px;}
.h5{height:26.350313px;}
.h18{height:27.109688px;}
.h29{height:27.521965px;}
.h25{height:33.775905px;}
.h2c{height:34.382786px;}
.ha{height:34.855313px;}
.h30{height:36.006425px;}
.h24{height:36.787873px;}
.h2b{height:37.448873px;}
.h22{height:38.157497px;}
.h13{height:38.174972px;}
.h2f{height:39.217300px;}
.hc{height:39.453039px;}
.h1c{height:39.917554px;}
.h28{height:39.968316px;}
.h3{height:40.501406px;}
.h1e{height:41.243791px;}
.h7{height:41.493516px;}
.h21{height:41.560193px;}
.h9{height:43.246406px;}
.h2{height:47.545312px;}
.h14{height:50.799069px;}
.h17{height:52.486838px;}
.h6{height:53.573906px;}
.hb{height:55.049761px;}
.h11{height:55.353867px;}
.he{height:56.438233px;}
.h1b{height:56.945299px;}
.hf{height:58.313360px;}
.h1f{height:58.837272px;}
.h15{height:59.343707px;}
.h12{height:62.215313px;}
.h8{height:64.546875px;}
.h19{height:81.001795px;}
.h10{height:84.431111px;}
.hd{height:87.786263px;}
.h1a{height:98.114051px;}
.h16{height:104.626265px;}
.h1d{height:105.995949px;}
.h20{height:379.038307px;}
.h2a{height:382.196993px;}
.h23{height:382.864266px;}
.h2e{height:386.768102px;}
.h27{height:396.821000px;}
.h4{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:133.953040px;}
.w3{width:256.507129px;}
.w5{width:308.171221px;}
.w7{width:661.911371px;}
.w9{width:661.925137px;}
.w8{width:662.167729px;}
.wa{width:662.263936px;}
.w6{width:662.383696px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:6.966267px;}
.x49{left:8.152952px;}
.x3b{left:10.098045px;}
.x2a{left:11.434900px;}
.x1a{left:13.005179px;}
.x37{left:15.567152px;}
.x44{left:20.175867px;}
.x26{left:23.849382px;}
.x2b{left:31.524649px;}
.x21{left:37.385013px;}
.x22{left:38.559997px;}
.x35{left:39.756966px;}
.x45{left:42.243220px;}
.x46{left:44.891303px;}
.x32{left:46.891949px;}
.x4a{left:48.586865px;}
.x33{left:52.234585px;}
.x3f{left:53.408039px;}
.x4b{left:56.503499px;}
.x17{left:58.655957px;}
.x2f{left:62.039321px;}
.x25{left:73.745800px;}
.x1f{left:77.196150px;}
.x20{left:83.263793px;}
.x18{left:89.671809px;}
.x19{left:95.737898px;}
.x29{left:102.602205px;}
.x1{left:106.416000px;}
.x16{left:109.273529px;}
.x3a{left:115.724999px;}
.x10{left:131.614125px;}
.x2e{left:133.416000px;}
.x5{left:137.016000px;}
.x36{left:149.795549px;}
.x15{left:153.901169px;}
.x1e{left:159.135754px;}
.x39{left:160.410000px;}
.x9{left:164.730000px;}
.x30{left:166.816598px;}
.x4c{left:175.751246px;}
.x1d{left:181.500864px;}
.x11{left:184.528125px;}
.x12{left:189.390000px;}
.x40{left:192.752709px;}
.x24{left:194.929254px;}
.x41{left:201.576646px;}
.x1b{left:202.855735px;}
.x1c{left:206.912227px;}
.x14{left:212.103295px;}
.x23{left:240.048025px;}
.x13{left:247.477157px;}
.x3c{left:275.062453px;}
.x31{left:279.518679px;}
.x34{left:294.407991px;}
.xf{left:322.455000px;}
.x3d{left:324.263102px;}
.xa{left:326.595000px;}
.xd{left:351.075000px;}
.xc{left:353.055000px;}
.x27{left:362.955000px;}
.x28{left:371.939996px;}
.xe{left:379.335000px;}
.xb{left:383.835000px;}
.x6{left:403.455000px;}
.x38{left:414.615000px;}
.x2d{left:419.655000px;}
.x4{left:446.505000px;}
.x4d{left:462.217210px;}
.x42{left:463.324413px;}
.x47{left:465.379474px;}
.x43{left:470.987306px;}
.x48{left:473.702019px;}
.x7{left:484.843125px;}
.x8{left:489.705000px;}
.x2c{left:505.905000px;}
.x3{left:778.470000px;}
.x2{left:786.750000px;}
@media print{
.v3{vertical-align:-48.268608pt;}
.v4{vertical-align:-40.044464pt;}
.v2{vertical-align:-25.194257pt;}
.v5{vertical-align:-18.301847pt;}
.v6{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:12.532800pt;}
.v8{vertical-align:21.164245pt;}
.v7{vertical-align:24.320000pt;}
.v9{vertical-align:33.813358pt;}
.v1{vertical-align:42.962866pt;}
.ls5{letter-spacing:-0.592000pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.409067pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094720pt;}
.ls13{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.117760pt;}
.ls17{letter-spacing:0.120533pt;}
.lsd{letter-spacing:0.130560pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls26{letter-spacing:0.232943pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.592000pt;}
.ls12{letter-spacing:0.736000pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls15{letter-spacing:1.223022pt;}
.ls1{letter-spacing:2.080000pt;}
.ls21{letter-spacing:2.720000pt;}
.ls23{letter-spacing:4.640000pt;}
.ls1d{letter-spacing:5.920000pt;}
.ls19{letter-spacing:7.200000pt;}
.ls20{letter-spacing:10.400000pt;}
.ls22{letter-spacing:11.680000pt;}
.ls24{letter-spacing:14.880000pt;}
.lsb{letter-spacing:78.907868pt;}
.ls8{letter-spacing:98.789303pt;}
.lsf{letter-spacing:311.793220pt;}
.lse{letter-spacing:342.326465pt;}
.lsa{letter-spacing:676.698166pt;}
.ls9{letter-spacing:750.739656pt;}
.ws1e{word-spacing:-30.998093pt;}
.wsa{word-spacing:-30.722072pt;}
.wsc{word-spacing:-29.162880pt;}
.ws13{word-spacing:-27.652401pt;}
.ws8{word-spacing:-14.240000pt;}
.ws1c{word-spacing:-14.115707pt;}
.ws6{word-spacing:-14.016000pt;}
.ws9{word-spacing:-13.990015pt;}
.ws16{word-spacing:-13.872000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.510933pt;}
.ws18{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.400533pt;}
.ws7{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.096533pt;}
.ws17{word-spacing:-12.960000pt;}
.ws1f{word-spacing:-12.951631pt;}
.ws1a{word-spacing:-12.870933pt;}
.ws1{word-spacing:-12.688000pt;}
.ws10{word-spacing:-12.592168pt;}
.ws23{word-spacing:-11.670398pt;}
.ws20{word-spacing:-11.464406pt;}
.ws14{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-9.894838pt;}
.ws11{word-spacing:-8.808217pt;}
.wsd{word-spacing:-8.640000pt;}
.wse{word-spacing:-8.632320pt;}
.ws22{word-spacing:-0.033603pt;}
.ws24{word-spacing:-0.031485pt;}
.ws21{word-spacing:-0.030929pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:48.806433pt;}
.wsb{word-spacing:102.486322pt;}
.ws1b{word-spacing:1281.900848pt;}
._2d{margin-left:-276.383873pt;}
._2c{margin-left:-263.142329pt;}
._2f{margin-left:-252.765433pt;}
._13{margin-left:-225.535914pt;}
._1b{margin-left:-205.437818pt;}
._1e{margin-left:-188.414482pt;}
._31{margin-left:-165.945194pt;}
._20{margin-left:-159.009325pt;}
._1d{margin-left:-150.136893pt;}
._2a{margin-left:-142.669286pt;}
._21{margin-left:-125.903057pt;}
._12{margin-left:-120.894328pt;}
._14{margin-left:-104.849718pt;}
._f{margin-left:-80.568542pt;}
._32{margin-left:-76.656183pt;}
._1f{margin-left:-68.656654pt;}
._10{margin-left:-60.031309pt;}
._11{margin-left:-58.815055pt;}
._30{margin-left:-49.374936pt;}
._2e{margin-left:-47.510965pt;}
._1c{margin-left:-45.870968pt;}
._2b{margin-left:-3.008322pt;}
._a{margin-left:-1.860693pt;}
._0{margin-left:-0.942080pt;}
._3{width:1.368320pt;}
._7{width:2.357120pt;}
._5{width:3.465600pt;}
._4{width:4.993280pt;}
._6{width:6.018133pt;}
._26{width:6.951467pt;}
._8{width:7.914880pt;}
._9{width:8.932907pt;}
._c{width:9.827200pt;}
._b{width:11.435093pt;}
._d{width:12.368427pt;}
._27{width:14.177920pt;}
._28{width:15.385813pt;}
._33{width:16.426880pt;}
._34{width:17.504000pt;}
._35{width:18.554667pt;}
._29{width:21.619840pt;}
._1{width:26.252373pt;}
._e{width:27.639893pt;}
._25{width:53.807787pt;}
._22{width:74.240000pt;}
._19{width:99.490987pt;}
._23{width:124.458667pt;}
._18{width:127.490987pt;}
._15{width:130.187307pt;}
._24{width:140.067627pt;}
._16{width:143.042347pt;}
._17{width:145.963947pt;}
._1a{width:172.778667pt;}
._2{width:175.653120pt;}
.fsb{font-size:26.880000pt;}
.fs14{font-size:30.929154pt;}
.fs19{font-size:31.484886pt;}
.fs16{font-size:33.603090pt;}
.fs2{font-size:34.560000pt;}
.fsa{font-size:35.232870pt;}
.fs6{font-size:39.118772pt;}
.fse{font-size:39.579352pt;}
.fs13{font-size:41.238872pt;}
.fs18{font-size:41.979847pt;}
.fs4{font-size:42.880000pt;}
.fs1b{font-size:43.962238pt;}
.fs11{font-size:46.588600pt;}
.fs5{font-size:48.000000pt;}
.fs12{font-size:48.249480pt;}
.fs17{font-size:49.116421pt;}
.fs9{font-size:50.368673pt;}
.fs1a{font-size:51.435819pt;}
.fs15{font-size:52.420821pt;}
.fs1{font-size:53.120000pt;}
.fs10{font-size:54.508662pt;}
.fs7{font-size:55.960059pt;}
.fsd{font-size:56.462828pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsc{font-size:94.154549pt;}
.fs8{font-size:100.782462pt;}
.fsf{font-size:101.718364pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:2.689876pt;}
.y5f{bottom:2.851139pt;}
.y60{bottom:3.812570pt;}
.yab{bottom:4.424084pt;}
.y6a{bottom:4.740842pt;}
.y5c{bottom:5.171754pt;}
.y66{bottom:7.293563pt;}
.y63{bottom:8.652747pt;}
.y68{bottom:8.652749pt;}
.y7c{bottom:9.399601pt;}
.y7b{bottom:12.561880pt;}
.yb2{bottom:15.501391pt;}
.y5d{bottom:16.046052pt;}
.y6c{bottom:16.278426pt;}
.y65{bottom:19.560203pt;}
.y6d{bottom:19.560205pt;}
.y7a{bottom:20.986140pt;}
.yae{bottom:23.639691pt;}
.y61{bottom:25.029830pt;}
.y5e{bottom:25.858767pt;}
.y62{bottom:25.858769pt;}
.y64{bottom:28.345578pt;}
.y69{bottom:28.345580pt;}
.y67{bottom:28.511367pt;}
.y6b{bottom:29.571317pt;}
.y101{bottom:34.197684pt;}
.yb1{bottom:35.899052pt;}
.yb0{bottom:37.013413pt;}
.y10c{bottom:37.578960pt;}
.y5b{bottom:38.623040pt;}
.yac{bottom:40.525383pt;}
.yaa{bottom:40.661044pt;}
.yf0{bottom:43.503573pt;}
.yec{bottom:44.349440pt;}
.yaf{bottom:47.449651pt;}
.y4{bottom:52.000000pt;}
.yad{bottom:57.040082pt;}
.y11a{bottom:93.346493pt;}
.y3a{bottom:97.760000pt;}
.y99{bottom:101.280000pt;}
.y85{bottom:113.120000pt;}
.y39{bottom:113.760000pt;}
.ybd{bottom:114.560000pt;}
.y98{bottom:118.880000pt;}
.y38{bottom:121.120000pt;}
.y84{bottom:127.680000pt;}
.ybc{bottom:132.000000pt;}
.y37{bottom:132.160000pt;}
.ye1{bottom:136.160000pt;}
.y97{bottom:136.480000pt;}
.y83{bottom:140.000000pt;}
.y82{bottom:144.640000pt;}
.ybb{bottom:149.920000pt;}
.yfe{bottom:150.400000pt;}
.y81{bottom:153.600000pt;}
.y96{bottom:154.080000pt;}
.ye0{bottom:157.440000pt;}
.y36{bottom:159.200000pt;}
.ye9{bottom:162.560000pt;}
.y10f{bottom:163.144182pt;}
.y111{bottom:165.348124pt;}
.y105{bottom:167.511411pt;}
.yba{bottom:167.520000pt;}
.y95{bottom:171.840000pt;}
.y10e{bottom:172.589647pt;}
.ydf{bottom:173.600000pt;}
.y110{bottom:174.688640pt;}
.y35{bottom:176.800000pt;}
.y104{bottom:177.592338pt;}
.y10d{bottom:181.930163pt;}
.ye8{bottom:183.840000pt;}
.yb9{bottom:185.120000pt;}
.y80{bottom:186.720000pt;}
.y103{bottom:187.561255pt;}
.yde{bottom:188.986667pt;}
.y94{bottom:189.146667pt;}
.ya0{bottom:189.466667pt;}
.yfd{bottom:193.146667pt;}
.y34{bottom:194.426667pt;}
.yb8{bottom:202.746667pt;}
.y7f{bottom:204.346667pt;}
.ye7{bottom:205.146667pt;}
.y93{bottom:206.746667pt;}
.y9f{bottom:207.066667pt;}
.y33{bottom:212.026667pt;}
.yfc{bottom:214.426667pt;}
.ydd{bottom:219.546667pt;}
.yee{bottom:219.826667pt;}
.yb7{bottom:220.506667pt;}
.y7e{bottom:222.106667pt;}
.yed{bottom:222.974985pt;}
.y92{bottom:224.666667pt;}
.y10a{bottom:229.693333pt;}
.y32{bottom:229.786667pt;}
.yf3{bottom:233.884545pt;}
.ydc{bottom:234.906667pt;}
.yb6{bottom:238.106667pt;}
.y7d{bottom:239.706667pt;}
.y91{bottom:242.266667pt;}
.yf2{bottom:243.163291pt;}
.y102{bottom:247.057393pt;}
.y31{bottom:247.386667pt;}
.ydb{bottom:250.266667pt;}
.yf1{bottom:252.338940pt;}
.y78{bottom:254.613332pt;}
.yb5{bottom:255.706667pt;}
.y90{bottom:260.026667pt;}
.y30{bottom:264.986667pt;}
.yda{bottom:265.626667pt;}
.y77{bottom:267.866667pt;}
.yb4{bottom:273.306667pt;}
.y8f{bottom:277.626667pt;}
.yd9{bottom:280.986667pt;}
.y2f{bottom:282.586667pt;}
.ya9{bottom:288.413333pt;}
.y107{bottom:290.769411pt;}
.y76{bottom:294.106667pt;}
.y8e{bottom:295.226667pt;}
.yd8{bottom:296.346667pt;}
.y2e{bottom:300.186667pt;}
.y106{bottom:300.850338pt;}
.yb3{bottom:303.066667pt;}
.yf5{bottom:305.038782pt;}
.yf7{bottom:310.193641pt;}
.yd7{bottom:311.546667pt;}
.y75{bottom:311.866667pt;}
.y8d{bottom:312.826667pt;}
.yf4{bottom:314.214431pt;}
.y113{bottom:317.245205pt;}
.y2d{bottom:317.946667pt;}
.yf6{bottom:319.369290pt;}
.yeb{bottom:320.267515pt;}
.y10b{bottom:324.696628pt;}
.yef{bottom:325.555121pt;}
.y109{bottom:325.604612pt;}
.y112{bottom:326.585721pt;}
.yd6{bottom:326.906667pt;}
.y119{bottom:328.059051pt;}
.y74{bottom:330.426667pt;}
.y2c{bottom:335.546667pt;}
.y108{bottom:335.573529pt;}
.y100{bottom:336.693637pt;}
.yd5{bottom:342.266667pt;}
.y73{bottom:348.026667pt;}
.y8c{bottom:348.186667pt;}
.y2b{bottom:353.146667pt;}
.yd4{bottom:357.626667pt;}
.y72{bottom:365.786667pt;}
.y2a{bottom:370.746667pt;}
.yd3{bottom:372.986667pt;}
.y8b{bottom:383.386667pt;}
.y71{bottom:383.546667pt;}
.y29{bottom:388.346667pt;}
.y8a{bottom:401.026667pt;}
.y70{bottom:402.146667pt;}
.yd2{bottom:403.586667pt;}
.y28{bottom:406.146667pt;}
.y89{bottom:418.626667pt;}
.yd1{bottom:418.946667pt;}
.y6f{bottom:419.746667pt;}
.y27{bottom:423.746667pt;}
.yd0{bottom:434.306667pt;}
.y5a{bottom:434.813330pt;}
.y9e{bottom:436.066667pt;}
.y88{bottom:436.386667pt;}
.y26{bottom:441.346667pt;}
.ycf{bottom:449.666667pt;}
.y6e{bottom:453.506667pt;}
.y87{bottom:453.986667pt;}
.y25{bottom:458.946667pt;}
.yce{bottom:465.026667pt;}
.y86{bottom:471.586667pt;}
.y24{bottom:476.546667pt;}
.ycd{bottom:480.386667pt;}
.y59{bottom:489.186667pt;}
.y23{bottom:494.306667pt;}
.ycc{bottom:495.586667pt;}
.y58{bottom:506.786667pt;}
.ycb{bottom:510.946667pt;}
.y22{bottom:511.586667pt;}
.y57{bottom:524.546667pt;}
.yca{bottom:526.306667pt;}
.y21{bottom:532.546667pt;}
.yc9{bottom:541.666667pt;}
.y56{bottom:542.146667pt;}
.y20{bottom:553.986667pt;}
.yc8{bottom:557.026667pt;}
.y55{bottom:559.746667pt;}
.yc7{bottom:572.226667pt;}
.ye6{bottom:574.466667pt;}
.y1f{bottom:575.266667pt;}
.y54{bottom:577.346667pt;}
.yfb{bottom:579.906667pt;}
.yc6{bottom:587.586667pt;}
.y117{bottom:587.906667pt;}
.ya8{bottom:594.626667pt;}
.y53{bottom:594.946667pt;}
.ye5{bottom:595.906667pt;}
.y1e{bottom:596.546667pt;}
.yfa{bottom:601.186667pt;}
.yc5{bottom:602.946667pt;}
.y116{bottom:609.213333pt;}
.y9d{bottom:612.413333pt;}
.y1d{bottom:612.573333pt;}
.y52{bottom:612.733333pt;}
.ye4{bottom:617.213333pt;}
.yc4{bottom:618.333333pt;}
.yf9{bottom:622.493333pt;}
.y1c{bottom:628.573333pt;}
.y9c{bottom:630.013333pt;}
.y51{bottom:630.333333pt;}
.y115{bottom:630.493333pt;}
.yc3{bottom:633.693333pt;}
.ye3{bottom:638.493333pt;}
.yf8{bottom:643.933333pt;}
.y1b{bottom:644.573333pt;}
.y50{bottom:647.933333pt;}
.yc2{bottom:649.053333pt;}
.y114{bottom:651.933333pt;}
.yff{bottom:658.026659pt;}
.ye2{bottom:659.933333pt;}
.y1a{bottom:660.573333pt;}
.yc1{bottom:664.253333pt;}
.y4f{bottom:665.533333pt;}
.y118{bottom:666.959993pt;}
.yea{bottom:673.826659pt;}
.y19{bottom:676.573333pt;}
.yc0{bottom:679.293333pt;}
.y4e{bottom:683.133333pt;}
.y18{bottom:692.573333pt;}
.ybf{bottom:700.253333pt;}
.ya7{bottom:700.573333pt;}
.y4d{bottom:700.893333pt;}
.y17{bottom:708.573333pt;}
.ya6{bottom:718.173333pt;}
.y4c{bottom:718.493333pt;}
.y16{bottom:724.573333pt;}
.ya5{bottom:735.773333pt;}
.y4b{bottom:736.093333pt;}
.y15{bottom:746.013333pt;}
.y49{bottom:753.693333pt;}
.y4a{bottom:759.773333pt;}
.y14{bottom:767.293333pt;}
.y48{bottom:771.293333pt;}
.y13{bottom:783.133333pt;}
.y47{bottom:788.733333pt;}
.y9b{bottom:789.053333pt;}
.y12{bottom:798.813333pt;}
.y46{bottom:806.333333pt;}
.y9a{bottom:806.653333pt;}
.y11{bottom:814.013333pt;}
.ya4{bottom:823.973333pt;}
.y45{bottom:824.293333pt;}
.y10{bottom:829.413333pt;}
.y44{bottom:841.893333pt;}
.yf{bottom:844.773333pt;}
.y43{bottom:859.493333pt;}
.ye{bottom:859.813333pt;}
.yd{bottom:875.493333pt;}
.y42{bottom:877.253333pt;}
.yc{bottom:890.693333pt;}
.y41{bottom:894.853333pt;}
.yb{bottom:906.053333pt;}
.y40{bottom:912.453333pt;}
.ya{bottom:921.413333pt;}
.ya3{bottom:929.733333pt;}
.y3f{bottom:930.053333pt;}
.y8{bottom:936.453333pt;}
.y9{bottom:942.533333pt;}
.ya2{bottom:947.333333pt;}
.y3e{bottom:947.653333pt;}
.y7{bottom:957.253333pt;}
.ya1{bottom:965.093333pt;}
.y3d{bottom:965.413333pt;}
.y6{bottom:978.693333pt;}
.y3c{bottom:983.013333pt;}
.y5{bottom:999.973333pt;}
.ybe{bottom:1000.293333pt;}
.y3b{bottom:1000.613333pt;}
.y3{bottom:1015.653333pt;}
.y2{bottom:1040.160000pt;}
.y1{bottom:1060.800000pt;}
.h26{height:22.517270pt;}
.h2d{height:22.921858pt;}
.h5{height:23.422500pt;}
.h18{height:24.097500pt;}
.h29{height:24.463968pt;}
.h25{height:30.023026pt;}
.h2c{height:30.562477pt;}
.ha{height:30.982500pt;}
.h30{height:32.005712pt;}
.h24{height:32.700331pt;}
.h2b{height:33.287887pt;}
.h22{height:33.917775pt;}
.h13{height:33.933308pt;}
.h2f{height:34.859822pt;}
.hc{height:35.069368pt;}
.h1c{height:35.482271pt;}
.h28{height:35.527392pt;}
.h3{height:36.001250pt;}
.h1e{height:36.661148pt;}
.h7{height:36.883125pt;}
.h21{height:36.942394pt;}
.h9{height:38.441250pt;}
.h2{height:42.262500pt;}
.h14{height:45.154728pt;}
.h17{height:46.654967pt;}
.h6{height:47.621250pt;}
.hb{height:48.933121pt;}
.h11{height:49.203438pt;}
.he{height:50.167318pt;}
.h1b{height:50.618043pt;}
.hf{height:51.834097pt;}
.h1f{height:52.299798pt;}
.h15{height:52.749962pt;}
.h12{height:55.302500pt;}
.h8{height:57.375000pt;}
.h19{height:72.001596pt;}
.h10{height:75.049877pt;}
.hd{height:78.032234pt;}
.h1a{height:87.212490pt;}
.h16{height:93.001125pt;}
.h1d{height:94.218621pt;}
.h20{height:336.922940pt;}
.h2a{height:339.730661pt;}
.h23{height:340.323792pt;}
.h2e{height:343.793869pt;}
.h27{height:352.729778pt;}
.h4{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:119.069369pt;}
.w3{width:228.006337pt;}
.w5{width:273.929974pt;}
.w7{width:588.365663pt;}
.w9{width:588.377900pt;}
.w8{width:588.593536pt;}
.wa{width:588.679054pt;}
.w6{width:588.785507pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:6.192237pt;}
.x49{left:7.247068pt;}
.x3b{left:8.976040pt;}
.x2a{left:10.164355pt;}
.x1a{left:11.560159pt;}
.x37{left:13.837468pt;}
.x44{left:17.934104pt;}
.x26{left:21.199450pt;}
.x2b{left:28.021911pt;}
.x21{left:33.231123pt;}
.x22{left:34.275553pt;}
.x35{left:35.339525pt;}
.x45{left:37.549529pt;}
.x46{left:39.903380pt;}
.x32{left:41.681732pt;}
.x4a{left:43.188325pt;}
.x33{left:46.430742pt;}
.x3f{left:47.473813pt;}
.x4b{left:50.225333pt;}
.x17{left:52.138629pt;}
.x2f{left:55.146063pt;}
.x25{left:65.551822pt;}
.x1f{left:68.618800pt;}
.x20{left:74.012261pt;}
.x18{left:79.708275pt;}
.x19{left:85.100354pt;}
.x29{left:91.201960pt;}
.x1{left:94.592000pt;}
.x16{left:97.132026pt;}
.x3a{left:102.866666pt;}
.x10{left:116.990333pt;}
.x2e{left:118.592000pt;}
.x5{left:121.792000pt;}
.x36{left:133.151599pt;}
.x15{left:136.801039pt;}
.x1e{left:141.454004pt;}
.x39{left:142.586667pt;}
.x9{left:146.426667pt;}
.x30{left:148.281421pt;}
.x4c{left:156.223330pt;}
.x1d{left:161.334101pt;}
.x11{left:164.025000pt;}
.x12{left:168.346667pt;}
.x40{left:171.335741pt;}
.x24{left:173.270448pt;}
.x41{left:179.179241pt;}
.x1b{left:180.316209pt;}
.x1c{left:183.921980pt;}
.x14{left:188.536263pt;}
.x23{left:213.376022pt;}
.x13{left:219.979695pt;}
.x3c{left:244.499958pt;}
.x31{left:248.461048pt;}
.x34{left:261.695992pt;}
.xf{left:286.626667pt;}
.x3d{left:288.233869pt;}
.xa{left:290.306667pt;}
.xd{left:312.066667pt;}
.xc{left:313.826667pt;}
.x27{left:322.626667pt;}
.x28{left:330.613330pt;}
.xe{left:337.186667pt;}
.xb{left:341.186667pt;}
.x6{left:358.626667pt;}
.x38{left:368.546667pt;}
.x2d{left:373.026667pt;}
.x4{left:396.893333pt;}
.x4d{left:410.859742pt;}
.x42{left:411.843923pt;}
.x47{left:413.670643pt;}
.x43{left:418.655383pt;}
.x48{left:421.068461pt;}
.x7{left:430.971667pt;}
.x8{left:435.293333pt;}
.x2c{left:449.693333pt;}
.x3{left:691.973333pt;}
.x2{left:699.333333pt;}
}




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