
    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_2fc522865439beeb2abce0d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_19aa9df44b24aeee959558f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_399b139680cd930da66262b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_eaa0e1877977930562386267.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.158691;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_4640fa7f8d5ff586f9c5d0f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.985352;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_eb74c4296aa82bb7c8095918.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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_70c4f787c8cd6917417e96fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130000;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_1fcb0f8fe9ad5732fdce568b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.012207;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_b6e614b861404cf7c26f8ee0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.000000;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;}
.m9{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010641px;}
.ls7{letter-spacing:0.172017px;}
.ls6{letter-spacing:0.184560px;}
.ls9{letter-spacing:0.189300px;}
.lsa{letter-spacing:0.233820px;}
.ls4{letter-spacing:0.275460px;}
.ls3{letter-spacing:16.039014px;}
.ls5{letter-spacing:67.316253px;}
.ls8{letter-spacing:2462.423015px;}
.ls0{letter-spacing:2498.441001px;}
.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;}
}
.ws7{word-spacing:-21.671991px;}
.ws1{word-spacing:-19.938232px;}
.ws4{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.253993px;}
.ws5{word-spacing:-14.939994px;}
.ws2{word-spacing:-12.569755px;}
.ws3{word-spacing:-9.719996px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-21.603349px;}
._3{margin-left:-1.247386px;}
._0{width:1.086750px;}
._15{width:2.172196px;}
._7{width:3.440422px;}
._d{width:4.454860px;}
._6{width:5.465536px;}
._a{width:7.230877px;}
._b{width:8.273506px;}
._5{width:10.054506px;}
._4{width:11.159083px;}
._c{width:12.885908px;}
._f{width:14.213503px;}
._10{width:15.236372px;}
._9{width:16.437881px;}
._16{width:17.639312px;}
._19{width:18.831802px;}
._2{width:21.140857px;}
._8{width:22.799187px;}
._11{width:24.086666px;}
._12{width:25.244341px;}
._23{width:26.271668px;}
._1a{width:27.322279px;}
._e{width:29.215767px;}
._1b{width:30.966481px;}
._22{width:32.030576px;}
._14{width:33.099002px;}
._13{width:34.108546px;}
._1e{width:35.205016px;}
._25{width:36.955815px;}
._29{width:38.089442px;}
._2a{width:39.300413px;}
._1f{width:41.154623px;}
._1c{width:42.483469px;}
._1d{width:43.727083px;}
._2b{width:44.735527px;}
._2c{width:45.850393px;}
._2e{width:47.960935px;}
._18{width:50.475338px;}
._17{width:51.543920px;}
._2f{width:52.668528px;}
._27{width:53.787728px;}
._21{width:54.855398px;}
._26{width:56.407096px;}
._2d{width:60.530365px;}
._20{width:61.904371px;}
._28{width:63.109267px;}
._24{width:64.417862px;}
._30{width:66.440076px;}
._31{width:67.526475px;}
.fc3{color:rgb(51,153,255);}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.239988px;}
.fs4{font-size:38.879984px;}
.fs6{font-size:41.759983px;}
.fs9{font-size:45.359982px;}
.fs1{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs5{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs3{font-size:81.359967px;}
.fs7{font-size:84.239966px;}
.ycd{bottom:-9.719197px;}
.yc9{bottom:-7.199223px;}
.ybf{bottom:-7.019289px;}
.y0{bottom:0.000000px;}
.yb6{bottom:2.520667px;}
.yb2{bottom:2.700646px;}
.yba{bottom:2.700687px;}
.ybc{bottom:2.700700px;}
.yc3{bottom:2.700728px;}
.yb0{bottom:3.780640px;}
.yb4{bottom:3.780660px;}
.yb8{bottom:3.780681px;}
.yc1{bottom:3.780722px;}
.y1{bottom:57.900877px;}
.y21{bottom:110.280856px;}
.y11f{bottom:114.781454px;}
.y20{bottom:117.120853px;}
.yd4{bottom:117.121453px;}
.yf8{bottom:121.801451px;}
.y49{bottom:127.020849px;}
.y73{bottom:127.560849px;}
.y1f{bottom:128.280849px;}
.y72{bottom:134.400846px;}
.y6c{bottom:136.201446px;}
.yf7{bottom:142.681443px;}
.y11e{bottom:143.401443px;}
.y48{bottom:143.580843px;}
.y71{bottom:144.660842px;}
.yd3{bottom:145.741442px;}
.y47{bottom:150.421440px;}
.yae{bottom:151.321439px;}
.y70{bottom:151.501439px;}
.y83{bottom:151.681439px;}
.y46{bottom:160.501436px;}
.y1e{bottom:161.221436px;}
.y80{bottom:161.941435px;}
.y6f{bottom:162.661435px;}
.yf6{bottom:163.561435px;}
.y6b{bottom:165.001434px;}
.y45{bottom:167.341433px;}
.y7f{bottom:168.781432px;}
.y11d{bottom:172.201431px;}
.yd2{bottom:174.541430px;}
.y44{bottom:178.501429px;}
.y7e{bottom:179.221428px;}
.ya3{bottom:179.941428px;}
.y82{bottom:180.481428px;}
.yf5{bottom:184.441426px;}
.y142{bottom:185.881426px;}
.y7d{bottom:186.061426px;}
.y6a{bottom:193.801422px;}
.y7c{bottom:196.501421px;}
.y11c{bottom:201.001420px;}
.y84{bottom:201.361419px;}
.y7b{bottom:203.341419px;}
.yf4{bottom:205.321418px;}
.y141{bottom:206.761417px;}
.yad{bottom:208.741417px;}
.y43{bottom:209.281416px;}
.y1d{bottom:211.081416px;}
.y7a{bottom:213.781414px;}
.ya2{bottom:215.041414px;}
.y79{bottom:220.621412px;}
.y69{bottom:222.421411px;}
.yc5{bottom:222.781411px;}
.yf3{bottom:226.201410px;}
.y140{bottom:227.821409px;}
.y11b{bottom:229.621408px;}
.y78{bottom:231.781407px;}
.yd1{bottom:231.961407px;}
.yac{bottom:237.541405px;}
.y42{bottom:237.901405px;}
.ya1{bottom:243.661403px;}
.yf2{bottom:247.081401px;}
.y13f{bottom:248.521401px;}
.y68{bottom:251.221400px;}
.ycc{bottom:253.380600px;}
.y11a{bottom:258.421397px;}
.ycb{bottom:258.601397px;}
.y1c{bottom:260.761396px;}
.yab{bottom:266.161394px;}
.y41{bottom:266.701393px;}
.yf1{bottom:267.961393px;}
.yca{bottom:271.741391px;}
.ya0{bottom:272.461391px;}
.y13e{bottom:277.321389px;}
.y67{bottom:279.841388px;}
.y119{bottom:287.221385px;}
.yf0{bottom:289.021384px;}
.yd0{bottom:289.561384px;}
.yaa{bottom:294.961382px;}
.y40{bottom:295.321382px;}
.y13d{bottom:298.381381px;}
.y9f{bottom:301.261379px;}
.y66{bottom:308.641377px;}
.yef{bottom:309.901376px;}
.y1b{bottom:310.441376px;}
.yc8{bottom:314.220600px;}
.y118{bottom:315.841374px;}
.ycf{bottom:318.181373px;}
.y13c{bottom:319.081372px;}
.yc7{bottom:321.961371px;}
.ya9{bottom:323.761370px;}
.y3f{bottom:324.121370px;}
.y9e{bottom:329.881368px;}
.yee{bottom:330.781368px;}
.yc6{bottom:334.921366px;}
.y65{bottom:337.441365px;}
.y13b{bottom:340.141364px;}
.y117{bottom:344.641362px;}
.yed{bottom:351.661359px;}
.ya7{bottom:352.381359px;}
.y3e{bottom:352.921359px;}
.y9d{bottom:358.681357px;}
.ya8{bottom:359.941356px;}
.y1a{bottom:360.301356px;}
.y13a{bottom:360.841356px;}
.y64{bottom:366.061354px;}
.yec{bottom:372.541351px;}
.y116{bottom:373.441351px;}
.ya6{bottom:381.181348px;}
.y3d{bottom:381.541347px;}
.y9c{bottom:387.481345px;}
.y139{bottom:389.641344px;}
.yeb{bottom:393.421343px;}
.y63{bottom:394.861342px;}
.y115{bottom:402.061339px;}
.y19{bottom:409.981336px;}
.y3c{bottom:410.341336px;}
.yea{bottom:414.301334px;}
.y9b{bottom:416.101334px;}
.y138{bottom:418.441333px;}
.y62{bottom:423.661331px;}
.yc2{bottom:427.080600px;}
.y114{bottom:430.861328px;}
.ye9{bottom:435.181326px;}
.y3b{bottom:439.141324px;}
.y137{bottom:439.321324px;}
.yc0{bottom:441.660600px;}
.y9a{bottom:444.901322px;}
.y61{bottom:452.281319px;}
.ye8{bottom:456.061318px;}
.y18{bottom:459.661316px;}
.y136{bottom:460.201316px;}
.y3a{bottom:467.761313px;}
.y98{bottom:473.701311px;}
.ye7{bottom:477.121309px;}
.ybe{bottom:478.380600px;}
.y60{bottom:481.081308px;}
.y99{bottom:481.261307px;}
.ybd{bottom:484.501306px;}
.y113{bottom:488.281305px;}
.y135{bottom:489.001304px;}
.ybb{bottom:496.560600px;}
.y39{bottom:496.561301px;}
.ye6{bottom:498.001301px;}
.y97{bottom:502.321299px;}
.y17{bottom:509.521296px;}
.y5f{bottom:509.881296px;}
.y112{bottom:517.081293px;}
.y134{bottom:517.621293px;}
.ye5{bottom:518.881292px;}
.y38{bottom:525.361290px;}
.yb9{bottom:529.680600px;}
.y96{bottom:531.121288px;}
.y5e{bottom:538.501285px;}
.y133{bottom:538.681285px;}
.ye4{bottom:539.761284px;}
.yb7{bottom:544.260600px;}
.y111{bottom:545.881282px;}
.y37{bottom:553.981278px;}
.y16{bottom:559.381276px;}
.y132{bottom:559.561276px;}
.y95{bottom:559.741276px;}
.ye3{bottom:560.641276px;}
.y5d{bottom:567.301273px;}
.y110{bottom:574.501270px;}
.yb5{bottom:581.160600px;}
.ye2{bottom:581.521267px;}
.y36{bottom:582.781267px;}
.y131{bottom:588.181265px;}
.y94{bottom:588.541265px;}
.yb3{bottom:595.740600px;}
.y5c{bottom:596.101262px;}
.ye1{bottom:602.401259px;}
.y10f{bottom:603.301259px;}
.y15{bottom:608.881256px;}
.y130{bottom:609.241256px;}
.y35{bottom:611.581255px;}
.y92{bottom:617.341253px;}
.ye0{bottom:623.281251px;}
.y5b{bottom:624.721250px;}
.y93{bottom:624.901250px;}
.y12f{bottom:629.941248px;}
.y10e{bottom:632.101247px;}
.yce{bottom:632.281247px;}
.yb1{bottom:632.460600px;}
.y14{bottom:637.681245px;}
.y34{bottom:640.201244px;}
.ydf{bottom:644.161242px;}
.y91{bottom:645.961242px;}
.yaf{bottom:647.040600px;}
.y5a{bottom:653.521239px;}
.y12e{bottom:658.741237px;}
.y10d{bottom:660.721236px;}
.yde{bottom:665.221234px;}
.y13{bottom:666.301233px;}
.y33{bottom:669.001232px;}
.y90{bottom:674.761230px;}
.y59{bottom:682.321227px;}
.ydd{bottom:686.101226px;}
.y12d{bottom:687.541225px;}
.y10c{bottom:689.521224px;}
.yc4{bottom:689.881224px;}
.y12{bottom:695.101222px;}
.y32{bottom:697.801221px;}
.y8f{bottom:703.561219px;}
.ydc{bottom:706.981217px;}
.y58{bottom:710.941216px;}
.y12c{bottom:716.161214px;}
.y10b{bottom:718.141213px;}
.y11{bottom:723.901210px;}
.y31{bottom:726.421209px;}
.ydb{bottom:727.861209px;}
.y8e{bottom:732.181207px;}
.y57{bottom:739.741204px;}
.y12b{bottom:744.961202px;}
.y10a{bottom:746.941201px;}
.yda{bottom:748.741201px;}
.y10{bottom:752.521199px;}
.y30{bottom:755.221198px;}
.y8d{bottom:760.981196px;}
.y12a{bottom:766.021194px;}
.y56{bottom:768.541193px;}
.yd9{bottom:769.621192px;}
.y109{bottom:775.741190px;}
.yf{bottom:781.321187px;}
.y2f{bottom:784.021186px;}
.y129{bottom:786.721185px;}
.y8c{bottom:789.781184px;}
.yd8{bottom:790.501184px;}
.y55{bottom:797.161181px;}
.y108{bottom:804.361178px;}
.ye{bottom:810.121176px;}
.yd7{bottom:811.381175px;}
.y2e{bottom:812.641175px;}
.y128{bottom:815.521174px;}
.y8b{bottom:818.401173px;}
.y107{bottom:823.621171px;}
.y54{bottom:825.961170px;}
.yd6{bottom:832.261167px;}
.y2d{bottom:841.441163px;}
.y106{bottom:842.701163px;}
.y127{bottom:844.321162px;}
.y8a{bottom:847.201161px;}
.yd5{bottom:853.321159px;}
.y53{bottom:854.761158px;}
.yd{bottom:859.801156px;}
.y105{bottom:861.961155px;}
.y126{bottom:865.201154px;}
.y2c{bottom:870.241152px;}
.y89{bottom:876.001150px;}
.y104{bottom:880.321148px;}
.y52{bottom:883.381147px;}
.y125{bottom:886.081146px;}
.yc{bottom:888.601145px;}
.y6e{bottom:890.941144px;}
.y81{bottom:891.301143px;}
.y103{bottom:898.321141px;}
.y2b{bottom:898.861140px;}
.y88{bottom:904.621138px;}
.y51{bottom:912.181135px;}
.y124{bottom:914.701134px;}
.yb{bottom:917.221133px;}
.y102{bottom:917.401133px;}
.y29{bottom:927.661129px;}
.y87{bottom:933.421127px;}
.y2a{bottom:935.221126px;}
.y101{bottom:936.661125px;}
.y50{bottom:940.981124px;}
.y123{bottom:943.501123px;}
.ya{bottom:946.021122px;}
.y100{bottom:955.741118px;}
.y28{bottom:956.461117px;}
.y86{bottom:962.221115px;}
.y122{bottom:964.561114px;}
.y4f{bottom:969.601112px;}
.y9{bottom:974.821110px;}
.yff{bottom:975.001110px;}
.y6d{bottom:977.161109px;}
.y27{bottom:985.081106px;}
.y121{bottom:985.261106px;}
.y85{bottom:993.541103px;}
.yfe{bottom:994.081102px;}
.y4e{bottom:998.401101px;}
.y8{bottom:1003.441099px;}
.y77{bottom:1005.961098px;}
.y120{bottom:1006.321097px;}
.yfd{bottom:1013.341095px;}
.y26{bottom:1013.881094px;}
.y4d{bottom:1027.201089px;}
.y7{bottom:1032.241087px;}
.yfc{bottom:1032.421087px;}
.y76{bottom:1034.761086px;}
.y25{bottom:1042.681083px;}
.yfb{bottom:1051.681079px;}
.y4c{bottom:1055.821078px;}
.y6{bottom:1061.041076px;}
.y75{bottom:1063.381075px;}
.yfa{bottom:1069.501072px;}
.y4b{bottom:1084.621066px;}
.yf9{bottom:1086.061066px;}
.y5{bottom:1089.301768px;}
.y4{bottom:1089.661064px;}
.ya5{bottom:1092.181063px;}
.y23{bottom:1092.361063px;}
.y24{bottom:1099.921060px;}
.y4a{bottom:1113.421055px;}
.ya4{bottom:1120.981052px;}
.y2{bottom:1140.781044px;}
.y22{bottom:1142.041043px;}
.y3{bottom:1149.061040px;}
.y74{bottom:1149.601040px;}
.hf{height:0.000000px;}
.h1c{height:2.340000px;}
.h17{height:2.880000px;}
.h1a{height:4.860000px;}
.h16{height:12.060000px;}
.h13{height:14.580000px;}
.h10{height:15.660000px;}
.h15{height:15.840000px;}
.h12{height:16.020000px;}
.h7{height:26.749429px;}
.h1e{height:28.320457px;}
.h9{height:31.197644px;}
.ha{height:31.870534px;}
.hd{height:32.992018px;}
.h3{height:36.038657px;}
.h1b{height:37.151985px;}
.hb{height:39.109203px;}
.h8{height:41.114864px;}
.h18{height:41.549743px;}
.h14{height:45.177873px;}
.h19{height:49.463980px;}
.h4{height:49.485918px;}
.h1{height:49.535980px;}
.he{height:50.553261px;}
.h11{height:50.572245px;}
.hc{height:52.332167px;}
.h2{height:53.789041px;}
.h5{height:54.226736px;}
.h6{height:62.035288px;}
.h1d{height:67.429661px;}
.h0{height:1263.000000px;}
.w8{width:5.400000px;}
.wa{width:6.120000px;}
.w3{width:6.300000px;}
.w1{width:7.020000px;}
.w4{width:43.380000px;}
.w6{width:70.920000px;}
.w5{width:73.980000px;}
.w9{width:79.020000px;}
.w2{width:86.940000px;}
.w7{width:94.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619199px;}
.x7{left:132.479197px;}
.x2{left:133.919196px;}
.x1f{left:137.339195px;}
.xc{left:154.619437px;}
.x11{left:180.539762px;}
.x3e{left:200.339920px;}
.x5{left:204.298418px;}
.x12{left:207.540171px;}
.x44{left:208.619150px;}
.x6{left:214.739914px;}
.x26{left:226.079910px;}
.x22{left:234.539906px;}
.x3d{left:241.019904px;}
.x1b{left:296.099882px;}
.x1c{left:306.899877px;}
.x15{left:313.739875px;}
.x16{left:319.139872px;}
.x39{left:343.439863px;}
.x3c{left:353.159804px;}
.x3a{left:354.239858px;}
.x3b{left:369.539852px;}
.x19{left:373.139851px;}
.x3f{left:375.479850px;}
.x1a{left:378.539849px;}
.x27{left:382.679847px;}
.x28{left:393.479843px;}
.x33{left:399.240000px;}
.x2b{left:403.020000px;}
.x35{left:406.980000px;}
.x2f{left:409.500000px;}
.x31{left:411.300000px;}
.x2d{left:424.800000px;}
.x13{left:442.799823px;}
.x29{left:444.059822px;}
.x2a{left:446.580000px;}
.x14{left:448.919820px;}
.xf{left:449.999820px;}
.x10{left:455.399818px;}
.x2e{left:468.180000px;}
.x32{left:481.860000px;}
.x30{left:483.480000px;}
.x36{left:486.000000px;}
.x2c{left:489.960000px;}
.x34{left:493.740000px;}
.x41{left:554.219778px;}
.x37{left:558.539777px;}
.x38{left:569.339772px;}
.x40{left:581.219768px;}
.xd{left:588.419765px;}
.xe{left:594.539762px;}
.x24{left:624.239750px;}
.x8{left:629.999748px;}
.x25{left:635.039746px;}
.x9{left:636.119746px;}
.x23{left:655.199738px;}
.x17{left:665.819734px;}
.x20{left:667.619733px;}
.x18{left:671.219732px;}
.x21{left:678.419729px;}
.xa{left:702.899719px;}
.xb{left:708.299717px;}
.x42{left:721.079712px;}
.x43{left:731.879707px;}
.x1d{left:739.799704px;}
.x1e{left:750.599700px;}
.x3{left:752.039699px;}
.x4{left:759.059696px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009459pt;}
.ls7{letter-spacing:0.152904pt;}
.ls6{letter-spacing:0.164053pt;}
.ls9{letter-spacing:0.168267pt;}
.lsa{letter-spacing:0.207840pt;}
.ls4{letter-spacing:0.244853pt;}
.ls3{letter-spacing:14.256901pt;}
.ls5{letter-spacing:59.836669pt;}
.ls8{letter-spacing:2188.820458pt;}
.ls0{letter-spacing:2220.836445pt;}
.ws7{word-spacing:-19.263992pt;}
.ws1{word-spacing:-17.722873pt;}
.ws4{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.447994pt;}
.ws5{word-spacing:-13.279995pt;}
.ws2{word-spacing:-11.173116pt;}
.ws3{word-spacing:-8.639997pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-19.202977pt;}
._3{margin-left:-1.108788pt;}
._0{width:0.966000pt;}
._15{width:1.930841pt;}
._7{width:3.058153pt;}
._d{width:3.959876pt;}
._6{width:4.858255pt;}
._a{width:6.427446pt;}
._b{width:7.354228pt;}
._5{width:8.937339pt;}
._4{width:9.919185pt;}
._c{width:11.454140pt;}
._f{width:12.634225pt;}
._10{width:13.543441pt;}
._9{width:14.611449pt;}
._16{width:15.679388pt;}
._19{width:16.739379pt;}
._2{width:18.791873pt;}
._8{width:20.265944pt;}
._11{width:21.410370pt;}
._12{width:22.439415pt;}
._23{width:23.352594pt;}
._1a{width:24.286470pt;}
._e{width:25.969570pt;}
._1b{width:27.525761pt;}
._22{width:28.471623pt;}
._14{width:29.421335pt;}
._13{width:30.318708pt;}
._1e{width:31.293348pt;}
._25{width:32.849614pt;}
._29{width:33.857282pt;}
._2a{width:34.933700pt;}
._1f{width:36.581887pt;}
._1c{width:37.763084pt;}
._1d{width:38.868518pt;}
._2b{width:39.764913pt;}
._2c{width:40.755905pt;}
._2e{width:42.631942pt;}
._18{width:44.866967pt;}
._17{width:45.816818pt;}
._2f{width:46.816470pt;}
._27{width:47.811313pt;}
._21{width:48.760354pt;}
._26{width:50.139641pt;}
._2d{width:53.804769pt;}
._20{width:55.026108pt;}
._28{width:56.097126pt;}
._24{width:57.260321pt;}
._30{width:59.057845pt;}
._31{width:60.023533pt;}
.fsa{font-size:26.879989pt;}
.fs4{font-size:34.559986pt;}
.fs6{font-size:37.119985pt;}
.fs9{font-size:40.319984pt;}
.fs1{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs5{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs3{font-size:72.319971pt;}
.fs7{font-size:74.879970pt;}
.ycd{bottom:-8.639287pt;}
.yc9{bottom:-6.399309pt;}
.ybf{bottom:-6.239368pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:2.240592pt;}
.yb2{bottom:2.400574pt;}
.yba{bottom:2.400611pt;}
.ybc{bottom:2.400622pt;}
.yc3{bottom:2.400647pt;}
.yb0{bottom:3.360569pt;}
.yb4{bottom:3.360587pt;}
.yb8{bottom:3.360605pt;}
.yc1{bottom:3.360642pt;}
.y1{bottom:51.467446pt;}
.y21{bottom:98.027427pt;}
.y11f{bottom:102.027959pt;}
.y20{bottom:104.107425pt;}
.yd4{bottom:104.107958pt;}
.yf8{bottom:108.267957pt;}
.y49{bottom:112.907422pt;}
.y73{bottom:113.387421pt;}
.y1f{bottom:114.027421pt;}
.y72{bottom:119.467419pt;}
.y6c{bottom:121.067952pt;}
.yf7{bottom:126.827949pt;}
.y11e{bottom:127.467949pt;}
.y48{bottom:127.627416pt;}
.y71{bottom:128.587415pt;}
.yd3{bottom:129.547948pt;}
.y47{bottom:133.707947pt;}
.yae{bottom:134.507946pt;}
.y70{bottom:134.667946pt;}
.y83{bottom:134.827946pt;}
.y46{bottom:142.667943pt;}
.y1e{bottom:143.307943pt;}
.y80{bottom:143.947942pt;}
.y6f{bottom:144.587942pt;}
.yf6{bottom:145.387942pt;}
.y6b{bottom:146.667941pt;}
.y45{bottom:148.747941pt;}
.y7f{bottom:150.027940pt;}
.y11d{bottom:153.067939pt;}
.yd2{bottom:155.147938pt;}
.y44{bottom:158.667937pt;}
.y7e{bottom:159.307936pt;}
.ya3{bottom:159.947936pt;}
.y82{bottom:160.427936pt;}
.yf5{bottom:163.947934pt;}
.y142{bottom:165.227934pt;}
.y7d{bottom:165.387934pt;}
.y6a{bottom:172.267931pt;}
.y7c{bottom:174.667930pt;}
.y11c{bottom:178.667929pt;}
.y84{bottom:178.987928pt;}
.y7b{bottom:180.747928pt;}
.yf4{bottom:182.507927pt;}
.y141{bottom:183.787926pt;}
.yad{bottom:185.547926pt;}
.y43{bottom:186.027926pt;}
.y1d{bottom:187.627925pt;}
.y7a{bottom:190.027924pt;}
.ya2{bottom:191.147924pt;}
.y79{bottom:196.107922pt;}
.y69{bottom:197.707921pt;}
.yc5{bottom:198.027921pt;}
.yf3{bottom:201.067920pt;}
.y140{bottom:202.507919pt;}
.y11b{bottom:204.107918pt;}
.y78{bottom:206.027918pt;}
.yd1{bottom:206.187918pt;}
.yac{bottom:211.147916pt;}
.y42{bottom:211.467915pt;}
.ya1{bottom:216.587913pt;}
.yf2{bottom:219.627912pt;}
.y13f{bottom:220.907912pt;}
.y68{bottom:223.307911pt;}
.ycc{bottom:225.227200pt;}
.y11a{bottom:229.707908pt;}
.ycb{bottom:229.867908pt;}
.y1c{bottom:231.787907pt;}
.yab{bottom:236.587905pt;}
.y41{bottom:237.067905pt;}
.yf1{bottom:238.187905pt;}
.yca{bottom:241.547903pt;}
.ya0{bottom:242.187903pt;}
.y13e{bottom:246.507901pt;}
.y67{bottom:248.747901pt;}
.y119{bottom:255.307898pt;}
.yf0{bottom:256.907897pt;}
.yd0{bottom:257.387897pt;}
.yaa{bottom:262.187895pt;}
.y40{bottom:262.507895pt;}
.y13d{bottom:265.227894pt;}
.y9f{bottom:267.787893pt;}
.y66{bottom:274.347890pt;}
.yef{bottom:275.467890pt;}
.y1b{bottom:275.947890pt;}
.yc8{bottom:279.307200pt;}
.y118{bottom:280.747888pt;}
.ycf{bottom:282.827887pt;}
.y13c{bottom:283.627887pt;}
.yc7{bottom:286.187886pt;}
.ya9{bottom:287.787885pt;}
.y3f{bottom:288.107885pt;}
.y9e{bottom:293.227883pt;}
.yee{bottom:294.027882pt;}
.yc6{bottom:297.707881pt;}
.y65{bottom:299.947880pt;}
.y13b{bottom:302.347879pt;}
.y117{bottom:306.347877pt;}
.yed{bottom:312.587875pt;}
.ya7{bottom:313.227875pt;}
.y3e{bottom:313.707875pt;}
.y9d{bottom:318.827872pt;}
.ya8{bottom:319.947872pt;}
.y1a{bottom:320.267872pt;}
.y13a{bottom:320.747872pt;}
.y64{bottom:325.387870pt;}
.yec{bottom:331.147868pt;}
.y116{bottom:331.947867pt;}
.ya6{bottom:338.827864pt;}
.y3d{bottom:339.147864pt;}
.y9c{bottom:344.427862pt;}
.y139{bottom:346.347861pt;}
.yeb{bottom:349.707860pt;}
.y63{bottom:350.987860pt;}
.y115{bottom:357.387857pt;}
.y19{bottom:364.427854pt;}
.y3c{bottom:364.747854pt;}
.yea{bottom:368.267853pt;}
.y9b{bottom:369.867852pt;}
.y138{bottom:371.947851pt;}
.y62{bottom:376.587849pt;}
.yc2{bottom:379.627200pt;}
.y114{bottom:382.987847pt;}
.ye9{bottom:386.827845pt;}
.y3b{bottom:390.347844pt;}
.y137{bottom:390.507844pt;}
.yc0{bottom:392.587200pt;}
.y9a{bottom:395.467842pt;}
.y61{bottom:402.027839pt;}
.ye8{bottom:405.387838pt;}
.y18{bottom:408.587837pt;}
.y136{bottom:409.067836pt;}
.y3a{bottom:415.787834pt;}
.y98{bottom:421.067832pt;}
.ye7{bottom:424.107830pt;}
.ybe{bottom:425.227200pt;}
.y60{bottom:427.627829pt;}
.y99{bottom:427.787829pt;}
.ybd{bottom:430.667828pt;}
.y113{bottom:434.027826pt;}
.y135{bottom:434.667826pt;}
.ybb{bottom:441.387200pt;}
.y39{bottom:441.387823pt;}
.ye6{bottom:442.667823pt;}
.y97{bottom:446.507821pt;}
.y17{bottom:452.907819pt;}
.y5f{bottom:453.227819pt;}
.y112{bottom:459.627816pt;}
.y134{bottom:460.107816pt;}
.ye5{bottom:461.227816pt;}
.y38{bottom:466.987813pt;}
.yb9{bottom:470.827200pt;}
.y96{bottom:472.107811pt;}
.y5e{bottom:478.667809pt;}
.y133{bottom:478.827808pt;}
.ye4{bottom:479.787808pt;}
.yb7{bottom:483.787200pt;}
.y111{bottom:485.227806pt;}
.y37{bottom:492.427803pt;}
.y16{bottom:497.227801pt;}
.y132{bottom:497.387801pt;}
.y95{bottom:497.547801pt;}
.ye3{bottom:498.347801pt;}
.y5d{bottom:504.267798pt;}
.y110{bottom:510.667796pt;}
.yb5{bottom:516.587200pt;}
.ye2{bottom:516.907793pt;}
.y36{bottom:518.027793pt;}
.y131{bottom:522.827791pt;}
.y94{bottom:523.147791pt;}
.yb3{bottom:529.547200pt;}
.y5c{bottom:529.867788pt;}
.ye1{bottom:535.467786pt;}
.y10f{bottom:536.267785pt;}
.y15{bottom:541.227784pt;}
.y130{bottom:541.547783pt;}
.y35{bottom:543.627783pt;}
.y92{bottom:548.747781pt;}
.ye0{bottom:554.027778pt;}
.y5b{bottom:555.307778pt;}
.y93{bottom:555.467778pt;}
.y12f{bottom:559.947776pt;}
.y10e{bottom:561.867775pt;}
.yce{bottom:562.027775pt;}
.yb1{bottom:562.187200pt;}
.y14{bottom:566.827773pt;}
.y34{bottom:569.067772pt;}
.ydf{bottom:572.587771pt;}
.y91{bottom:574.187770pt;}
.yaf{bottom:575.147200pt;}
.y5a{bottom:580.907768pt;}
.y12e{bottom:585.547766pt;}
.y10d{bottom:587.307765pt;}
.yde{bottom:591.307763pt;}
.y13{bottom:592.267763pt;}
.y33{bottom:594.667762pt;}
.y90{bottom:599.787760pt;}
.y59{bottom:606.507757pt;}
.ydd{bottom:609.867756pt;}
.y12d{bottom:611.147756pt;}
.y10c{bottom:612.907755pt;}
.yc4{bottom:613.227755pt;}
.y12{bottom:617.867753pt;}
.y32{bottom:620.267752pt;}
.y8f{bottom:625.387750pt;}
.ydc{bottom:628.427749pt;}
.y58{bottom:631.947747pt;}
.y12c{bottom:636.587745pt;}
.y10b{bottom:638.347745pt;}
.y11{bottom:643.467743pt;}
.y31{bottom:645.707742pt;}
.ydb{bottom:646.987741pt;}
.y8e{bottom:650.827740pt;}
.y57{bottom:657.547737pt;}
.y12b{bottom:662.187735pt;}
.y10a{bottom:663.947734pt;}
.yda{bottom:665.547734pt;}
.y10{bottom:668.907732pt;}
.y30{bottom:671.307731pt;}
.y8d{bottom:676.427729pt;}
.y12a{bottom:680.907728pt;}
.y56{bottom:683.147727pt;}
.yd9{bottom:684.107726pt;}
.y109{bottom:689.547724pt;}
.yf{bottom:694.507722pt;}
.y2f{bottom:696.907721pt;}
.y129{bottom:699.307720pt;}
.y8c{bottom:702.027719pt;}
.yd8{bottom:702.667719pt;}
.y55{bottom:708.587717pt;}
.y108{bottom:714.987714pt;}
.ye{bottom:720.107712pt;}
.yd7{bottom:721.227712pt;}
.y2e{bottom:722.347711pt;}
.y128{bottom:724.907710pt;}
.y8b{bottom:727.467709pt;}
.y107{bottom:732.107707pt;}
.y54{bottom:734.187706pt;}
.yd6{bottom:739.787704pt;}
.y2d{bottom:747.947701pt;}
.y106{bottom:749.067700pt;}
.y127{bottom:750.507700pt;}
.y8a{bottom:753.067699pt;}
.yd5{bottom:758.507697pt;}
.y53{bottom:759.787696pt;}
.yd{bottom:764.267694pt;}
.y105{bottom:766.187694pt;}
.y126{bottom:769.067692pt;}
.y2c{bottom:773.547691pt;}
.y89{bottom:778.667689pt;}
.y104{bottom:782.507687pt;}
.y52{bottom:785.227686pt;}
.y125{bottom:787.627685pt;}
.yc{bottom:789.867684pt;}
.y6e{bottom:791.947683pt;}
.y81{bottom:792.267683pt;}
.y103{bottom:798.507681pt;}
.y2b{bottom:798.987680pt;}
.y88{bottom:804.107678pt;}
.y51{bottom:810.827676pt;}
.y124{bottom:813.067675pt;}
.yb{bottom:815.307674pt;}
.y102{bottom:815.467674pt;}
.y29{bottom:824.587670pt;}
.y87{bottom:829.707668pt;}
.y2a{bottom:831.307667pt;}
.y101{bottom:832.587667pt;}
.y50{bottom:836.427665pt;}
.y123{bottom:838.667665pt;}
.ya{bottom:840.907664pt;}
.y100{bottom:849.547660pt;}
.y28{bottom:850.187660pt;}
.y86{bottom:855.307658pt;}
.y122{bottom:857.387657pt;}
.y4f{bottom:861.867655pt;}
.y9{bottom:866.507653pt;}
.yff{bottom:866.667653pt;}
.y6d{bottom:868.587653pt;}
.y27{bottom:875.627650pt;}
.y121{bottom:875.787650pt;}
.y85{bottom:883.147647pt;}
.yfe{bottom:883.627647pt;}
.y4e{bottom:887.467645pt;}
.y8{bottom:891.947643pt;}
.y77{bottom:894.187642pt;}
.y120{bottom:894.507642pt;}
.yfd{bottom:900.747640pt;}
.y26{bottom:901.227640pt;}
.y4d{bottom:913.067635pt;}
.y7{bottom:917.547633pt;}
.yfc{bottom:917.707633pt;}
.y76{bottom:919.787632pt;}
.y25{bottom:926.827629pt;}
.yfb{bottom:934.827626pt;}
.y4c{bottom:938.507625pt;}
.y6{bottom:943.147623pt;}
.y75{bottom:945.227622pt;}
.yfa{bottom:950.667620pt;}
.y4b{bottom:964.107614pt;}
.yf9{bottom:965.387614pt;}
.y5{bottom:968.268238pt;}
.y4{bottom:968.587613pt;}
.ya5{bottom:970.827612pt;}
.y23{bottom:970.987612pt;}
.y24{bottom:977.707609pt;}
.y4a{bottom:989.707604pt;}
.ya4{bottom:996.427601pt;}
.y2{bottom:1014.027594pt;}
.y22{bottom:1015.147594pt;}
.y3{bottom:1021.387591pt;}
.y74{bottom:1021.867591pt;}
.hf{height:0.000000pt;}
.h1c{height:2.080000pt;}
.h17{height:2.560000pt;}
.h1a{height:4.320000pt;}
.h16{height:10.720000pt;}
.h13{height:12.960000pt;}
.h10{height:13.920000pt;}
.h15{height:14.080000pt;}
.h12{height:14.240000pt;}
.h7{height:23.777270pt;}
.h1e{height:25.173740pt;}
.h9{height:27.731239pt;}
.ha{height:28.329364pt;}
.hd{height:29.326238pt;}
.h3{height:32.034362pt;}
.h1b{height:33.023987pt;}
.hb{height:34.763736pt;}
.h8{height:36.546545pt;}
.h18{height:36.933105pt;}
.h14{height:40.158109pt;}
.h19{height:43.967982pt;}
.h4{height:43.987482pt;}
.h1{height:44.031982pt;}
.he{height:44.936232pt;}
.h11{height:44.953107pt;}
.hc{height:46.517481pt;}
.h2{height:47.812481pt;}
.h5{height:48.201543pt;}
.h6{height:55.142478pt;}
.h1d{height:59.937476pt;}
.h0{height:1122.666667pt;}
.w8{width:4.800000pt;}
.wa{width:5.440000pt;}
.w3{width:5.600000pt;}
.w1{width:6.240000pt;}
.w4{width:38.560000pt;}
.w6{width:63.040000pt;}
.w5{width:65.760000pt;}
.w9{width:70.240000pt;}
.w2{width:77.280000pt;}
.w7{width:84.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439288pt;}
.x7{left:117.759286pt;}
.x2{left:119.039286pt;}
.x1f{left:122.079285pt;}
.xc{left:137.439500pt;}
.x11{left:160.479789pt;}
.x3e{left:178.079929pt;}
.x5{left:181.598594pt;}
.x12{left:184.480152pt;}
.x44{left:185.439244pt;}
.x6{left:190.879924pt;}
.x26{left:200.959920pt;}
.x22{left:208.479917pt;}
.x3d{left:214.239914pt;}
.x1b{left:263.199895pt;}
.x1c{left:272.799891pt;}
.x15{left:278.879888pt;}
.x16{left:283.679887pt;}
.x39{left:305.279878pt;}
.x3c{left:313.919826pt;}
.x3a{left:314.879874pt;}
.x3b{left:328.479869pt;}
.x19{left:331.679867pt;}
.x3f{left:333.759866pt;}
.x1a{left:336.479865pt;}
.x27{left:340.159864pt;}
.x28{left:349.759860pt;}
.x33{left:354.880000pt;}
.x2b{left:358.240000pt;}
.x35{left:361.760000pt;}
.x2f{left:364.000000pt;}
.x31{left:365.600000pt;}
.x2d{left:377.600000pt;}
.x13{left:393.599843pt;}
.x29{left:394.719842pt;}
.x2a{left:396.960000pt;}
.x14{left:399.039840pt;}
.xf{left:399.999840pt;}
.x10{left:404.799838pt;}
.x2e{left:416.160000pt;}
.x32{left:428.320000pt;}
.x30{left:429.760000pt;}
.x36{left:432.000000pt;}
.x2c{left:435.520000pt;}
.x34{left:438.880000pt;}
.x41{left:492.639803pt;}
.x37{left:496.479801pt;}
.x38{left:506.079798pt;}
.x40{left:516.639793pt;}
.xd{left:523.039791pt;}
.xe{left:528.479789pt;}
.x24{left:554.879778pt;}
.x8{left:559.999776pt;}
.x25{left:564.479774pt;}
.x9{left:565.439774pt;}
.x23{left:582.399767pt;}
.x17{left:591.839763pt;}
.x20{left:593.439763pt;}
.x18{left:596.639761pt;}
.x21{left:603.039759pt;}
.xa{left:624.799750pt;}
.xb{left:629.599748pt;}
.x42{left:640.959744pt;}
.x43{left:650.559740pt;}
.x1d{left:657.599737pt;}
.x1e{left:667.199733pt;}
.x3{left:668.479733pt;}
.x4{left:674.719730pt;}
}




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