
    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_997ca64947e3568ff323215c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_5ae5c6411a7f639be1ee9279.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5dbdbd98424875e6f769a231.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_3283c8a76efa51eca38440de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.754395;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_a5bc4a4c60e84682230f3c2f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754395;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_cd6843a96ce8b2fe76ded027.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_60e7b2f5c0cc730d5b1a5b2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_997ca64947e3568ff323215c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_6c41599018f22831bb17fc11.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v4{vertical-align:-30.959947px;}
.v2{vertical-align:-29.519920px;}
.v3{vertical-align:-2.879873px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880194px;}
.v6{vertical-align:36.719878px;}
.v1{vertical-align:44.639900px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.035988px;}
.ls1{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.174234px;}
.ls10{letter-spacing:0.216095px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.ls1c{letter-spacing:0.544091px;}
.ls1b{letter-spacing:0.575693px;}
.ls1a{letter-spacing:0.575873px;}
.ls19{letter-spacing:0.575963px;}
.ls15{letter-spacing:0.575969px;}
.ls13{letter-spacing:0.576011px;}
.ls12{letter-spacing:0.576053px;}
.ls16{letter-spacing:0.576059px;}
.ls21{letter-spacing:1.295985px;}
.ls17{letter-spacing:1.296003px;}
.ls20{letter-spacing:1.296009px;}
.ls22{letter-spacing:1.296027px;}
.ls18{letter-spacing:2.015995px;}
.ls14{letter-spacing:2.735987px;}
.ls7{letter-spacing:53.645470px;}
.lsc{letter-spacing:69.485514px;}
.ls5{letter-spacing:98.465364px;}
.ls9{letter-spacing:104.945450px;}
.ls8{letter-spacing:109.985413px;}
.ls4{letter-spacing:124.385341px;}
.lsf{letter-spacing:127.613921px;}
.lsd{letter-spacing:148.145234px;}
.lsa{letter-spacing:167.585305px;}
.ls6{letter-spacing:169.025247px;}
.lsb{letter-spacing:246.065031px;}
.ls2{letter-spacing:531.916316px;}
.ls1e{letter-spacing:561.664932px;}
.ls1d{letter-spacing:687.124546px;}
.ls1f{letter-spacing:1089.225319px;}
.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:-72.143820px;}
.ws5{word-spacing:-71.999820px;}
.ws9{word-spacing:-20.087950px;}
.ws6{word-spacing:-19.911694px;}
.ws4{word-spacing:-19.871950px;}
.ws8{word-spacing:-16.672998px;}
.ws3{word-spacing:-13.499102px;}
.ws2{word-spacing:-13.458926px;}
.ws1{word-spacing:-13.314207px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-3.828296px;}
._6{margin-left:-2.112007px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._19{width:2.592006px;}
._f{width:3.743979px;}
._10{width:4.967928px;}
._4{width:6.060033px;}
._3{width:7.103976px;}
._b{width:8.987990px;}
._a{width:10.007975px;}
._2e{width:11.015972px;}
._8{width:12.023970px;}
._9{width:13.175967px;}
._2b{width:14.759963px;}
._d{width:15.791973px;}
._e{width:16.835916px;}
._13{width:18.828007px;}
._c{width:21.943335px;}
._7{width:23.111942px;}
._5{width:24.263939px;}
._1d{width:25.535936px;}
._11{width:27.215932px;}
._12{width:28.271941px;}
._21{width:29.302195px;}
._20{width:30.558303px;}
._24{width:31.937541px;}
._28{width:33.263911px;}
._25{width:34.487914px;}
._17{width:36.287921px;}
._16{width:37.727894px;}
._2a{width:39.095914px;}
._14{width:42.911893px;}
._15{width:44.507877px;}
._1c{width:45.611850px;}
._42{width:46.799883px;}
._26{width:47.807880px;}
._41{width:49.847887px;}
._23{width:51.408027px;}
._22{width:53.135867px;}
._29{width:54.863899px;}
._2c{width:55.871854px;}
._1f{width:57.167857px;}
._3d{width:58.535854px;}
._3e{width:59.687851px;}
._40{width:64.295845px;}
._3f{width:70.271824px;}
._1e{width:71.783821px;}
._1b{width:75.599811px;}
._2f{width:78.047805px;}
._30{width:79.343802px;}
._38{width:83.261624px;}
._27{width:85.391709px;}
._18{width:86.543850px;}
._1a{width:87.983696px;}
._2d{width:91.211964px;}
._35{width:148.219987px;}
._31{width:169.208715px;}
._37{width:197.053961px;}
._34{width:205.777370px;}
._32{width:244.503211px;}
._3c{width:394.990329px;}
._33{width:438.912091px;}
._3b{width:443.530927px;}
._36{width:605.247587px;}
._3a{width:883.209852px;}
._39{width:886.689795px;}
.fc7{color:rgb(0,128,128);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(13,119,110);}
.fc4{color:rgb(0,103,120);}
.fc3{color:rgb(33,37,41);}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239879px;}
.fs5{font-size:48.383879px;}
.fs0{font-size:59.759851px;}
.fs6{font-size:59.903850px;}
.fs3{font-size:66.239834px;}
.fs1{font-size:71.999820px;}
.fs2{font-size:72.143820px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.498183px;}
.y85{bottom:8.999978px;}
.y3{bottom:23.759890px;}
.y31{bottom:29.879900px;}
.y30{bottom:51.839867px;}
.y4{bottom:54.359849px;}
.y2f{bottom:73.289794px;}
.yb6{bottom:75.089809px;}
.yeb{bottom:81.029736px;}
.y2e{bottom:95.249762px;}
.yb5{bottom:97.049775px;}
.y82{bottom:101.909750px;}
.yea{bottom:108.029668px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.yb4{bottom:119.189644px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.ye9{bottom:135.029601px;}
.y2c{bottom:139.529590px;}
.yb3{bottom:141.329603px;}
.y7f{bottom:146.009584px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.ye8{bottom:162.029533px;}
.yb2{bottom:163.289569px;}
.y83{bottom:164.549607px;}
.y7c{bottom:181.109532px;}
.y2a{bottom:183.629515px;}
.yb1{bottom:185.429529px;}
.ye7{bottom:189.029466px;}
.y7b{bottom:195.869444px;}
.y29{bottom:205.769475px;}
.yb0{bottom:207.389497px;}
.y7a{bottom:210.629448px;}
.y79{bottom:225.389452px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.yaf{bottom:229.529365px;}
.y78{bottom:242.669345px;}
.ye6{bottom:247.529320px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.yae{bottom:251.669323px;}
.y77{bottom:257.429349px;}
.y72{bottom:264.629313px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.yad{bottom:273.629290px;}
.y71{bottom:279.389317px;}
.yd1{bottom:280.289277px;}
.y75{bottom:286.769273px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.yac{bottom:295.769250px;}
.y74{bottom:302.249244px;}
.yd0{bottom:302.429236px;}
.yd2{bottom:303.149206px;}
.y24{bottom:316.109195px;}
.yab{bottom:317.729216px;}
.yb8{bottom:318.449186px;}
.y6c{bottom:318.629178px;}
.ycf{bottom:324.569196px;}
.y6f{bottom:326.009134px;}
.y6b{bottom:333.389182px;}
.y23{bottom:338.069162px;}
.yaa{bottom:339.914128px;}
.y6e{bottom:340.814089px;}
.yce{bottom:346.574116px;}
.y6a{bottom:348.194137px;}
.y22{bottom:360.254074px;}
.ya9{bottom:362.054087px;}
.y69{bottom:362.954049px;}
.y6d{bottom:363.494025px;}
.ycd{bottom:368.714075px;}
.y21{bottom:382.214041px;}
.ya8{bottom:384.014055px;}
.y67{bottom:387.433998px;}
.ycc{bottom:390.674041px;}
.y66{bottom:402.194002px;}
.y20{bottom:404.354000px;}
.ya7{bottom:406.153923px;}
.ycb{bottom:412.813909px;}
.y65{bottom:416.953914px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.ya6{bottom:428.113889px;}
.yca{bottom:434.953869px;}
.y63{bottom:441.433863px;}
.y1e{bottom:448.453835px;}
.ya5{bottom:450.253849px;}
.y62{bottom:456.193867px;}
.yc9{bottom:456.913835px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.ya4{bottom:472.393809px;}
.yc8{bottom:479.053795px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.y1c{bottom:492.553761px;}
.ya3{bottom:494.353775px;}
.yc7{bottom:501.013716px;}
.y109{bottom:509.473717px;}
.y5e{bottom:510.193686px;}
.y1b{bottom:514.693674px;}
.ya2{bottom:516.493689px;}
.yc6{bottom:523.153676px;}
.y5d{bottom:524.773652px;}
.y108{bottom:531.613630px;}
.y1a{bottom:536.833634px;}
.ya1{bottom:538.633647px;}
.y5c{bottom:539.533609px;}
.yc5{bottom:545.293589px;}
.y107{bottom:553.753590px;}
.y5b{bottom:554.473605px;}
.y19{bottom:558.793555px;}
.ya0{bottom:560.593570px;}
.y5f{bottom:562.213591px;}
.yc4{bottom:567.253556px;}
.y106{bottom:575.713558px;}
.y59{bottom:578.773517px;}
.y18{bottom:580.933515px;}
.y9f{bottom:582.733528px;}
.yc3{bottom:589.393516px;}
.y58{bottom:593.533474px;}
.y105{bottom:597.853471px;}
.y17{bottom:602.893482px;}
.y9e{bottom:604.693449px;}
.y57{bottom:608.323461px;}
.yc2{bottom:611.563459px;}
.y104{bottom:619.843422px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y16{bottom:625.063425px;}
.y9d{bottom:626.863392px;}
.yc1{bottom:633.523380px;}
.y54{bottom:640.363359px;}
.y103{bottom:641.983380px;}
.y15{bottom:647.203338px;}
.y9c{bottom:649.003352px;}
.y53{bottom:654.943324px;}
.yc0{bottom:655.663338px;}
.y102{bottom:664.123295px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.y9b{bottom:670.963320px;}
.ybf{bottom:677.623261px;}
.y51{bottom:684.463286px;}
.y55{bottom:685.183254px;}
.y101{bottom:686.083261px;}
.y13{bottom:691.303264px;}
.yb7{bottom:693.103233px;}
.y9a{bottom:693.823247px;}
.ybe{bottom:699.763219px;}
.y4d{bottom:701.383241px;}
.y100{bottom:708.223220px;}
.y12{bottom:713.443177px;}
.y4c{bottom:715.963207px;}
.ybd{bottom:721.903179px;}
.y50{bottom:723.343163px;}
.y99{bottom:727.843152px;}
.yff{bottom:730.183142px;}
.y4b{bottom:730.723164px;}
.y11{bottom:736.123115px;}
.y4f{bottom:738.103120px;}
.ybc{bottom:743.863100px;}
.y4a{bottom:745.483121px;}
.y98{bottom:749.803118px;}
.yfe{bottom:752.323101px;}
.y4e{bottom:752.863077px;}
.y10{bottom:757.543058px;}
.y49{bottom:760.243080px;}
.ybb{bottom:766.003059px;}
.y97{bottom:771.943031px;}
.yfd{bottom:774.463061px;}
.y48{bottom:775.003037px;}
.yf{bottom:779.503026px;}
.yba{bottom:787.963027px;}
.y96{bottom:794.082991px;}
.y10a{bottom:796.422982px;}
.yfc{bottom:797.142997px;}
.y47{bottom:798.402987px;}
.ye{bottom:802.362954px;}
.y42{bottom:805.782944px;}
.yb9{bottom:810.102940px;}
.y46{bottom:813.162945px;}
.y95{bottom:816.042912px;}
.yfb{bottom:818.562942px;}
.y41{bottom:820.542901px;}
.yd{bottom:823.782899px;}
.y45{bottom:827.922903px;}
.y40{bottom:835.482896px;}
.y94{bottom:838.182872px;}
.yfa{bottom:840.522863px;}
.y44{bottom:842.682860px;}
.ye5{bottom:845.022851px;}
.yc{bottom:846.462881px;}
.y3f{bottom:850.062863px;}
.ye4{bottom:854.202821px;}
.y93{bottom:860.142839px;}
.yf9{bottom:862.662821px;}
.y43{bottom:864.822820px;}
.yb{bottom:868.602794px;}
.y92{bottom:882.327773px;}
.ye2{bottom:883.227757px;}
.yf8{bottom:884.847756px;}
.y3e{bottom:885.027771px;}
.ya{bottom:889.887744px;}
.ye1{bottom:892.407749px;}
.ye3{bottom:901.587719px;}
.y91{bottom:904.467710px;}
.y3a{bottom:904.827717px;}
.yf7{bottom:906.807700px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.y39{bottom:919.587674px;}
.ye0{bottom:921.567681px;}
.y90{bottom:926.427654px;}
.y3c{bottom:926.967654px;}
.yf6{bottom:928.947660px;}
.ydf{bottom:930.747651px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.y3b{bottom:941.727611px;}
.y8f{bottom:948.567614px;}
.y37{bottom:949.107612px;}
.yf5{bottom:951.087595px;}
.y7{bottom:956.127584px;}
.yde{bottom:959.907581px;}
.y36{bottom:963.867571px;}
.ydd{bottom:969.087550px;}
.y8e{bottom:970.527557px;}
.yf4{bottom:973.047540px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.yf3{bottom:995.187476px;}
.ydc{bottom:998.067490px;}
.y5{bottom:1000.947480px;}
.y34{bottom:1003.107477px;}
.y8d{bottom:1004.727454px;}
.yd9{bottom:1007.247459px;}
.ydb{bottom:1016.427429px;}
.yf2{bottom:1017.147421px;}
.y33{bottom:1017.867436px;}
.y32{bottom:1021.467418px;}
.yd8{bottom:1025.607421px;}
.yda{bottom:1034.787391px;}
.yf1{bottom:1039.287379px;}
.y8c{bottom:1039.467373px;}
.yd7{bottom:1054.767330px;}
.yf0{bottom:1061.427316px;}
.y8b{bottom:1061.607331px;}
.yd6{bottom:1063.947322px;}
.yef{bottom:1083.387260px;}
.y8a{bottom:1083.567264px;}
.yd5{bottom:1096.527230px;}
.y89{bottom:1104.987209px;}
.yee{bottom:1105.527208px;}
.y88{bottom:1126.941156px;}
.yed{bottom:1127.481156px;}
.yd4{bottom:1127.841152px;}
.yec{bottom:1149.657096px;}
.y87{bottom:1149.837098px;}
.yd3{bottom:1150.017102px;}
.y86{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.ha{height:36.179910px;}
.h8{height:36.274128px;}
.h9{height:36.382409px;}
.hf{height:44.936606px;}
.h12{height:45.044887px;}
.hc{height:48.774253px;}
.hd{height:53.015492px;}
.h4{height:53.999865px;}
.he{height:54.107865px;}
.h5{height:54.140490px;}
.h6{height:54.248771px;}
.h3{height:59.438875px;}
.hb{height:69.654447px;}
.h7{height:80.914028px;}
.h10{height:81.656485px;}
.h11{height:81.656491px;}
.h13{height:81.656665px;}
.h2{height:1262.876798px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:892.977765px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:22.679930px;}
.x14{left:24.659926px;}
.x11{left:26.639920px;}
.x15{left:29.339912px;}
.x13{left:30.599910px;}
.x18{left:31.859907px;}
.x10{left:37.439891px;}
.x16{left:44.459874px;}
.x1{left:46.799871px;}
.x12{left:48.599868px;}
.x19{left:55.079850px;}
.x6{left:59.219838px;}
.x1a{left:64.799826px;}
.x53{left:67.319820px;}
.x54{left:70.019811px;}
.x4b{left:82.079783px;}
.x58{left:102.995731px;}
.xd{left:104.615729px;}
.xa{left:108.935716px;}
.x60{left:114.155695px;}
.xb{left:115.775694px;}
.x5f{left:119.555691px;}
.xc{left:127.115673px;}
.xf{left:129.815660px;}
.x4{left:134.855648px;}
.x8{left:136.115651px;}
.x5a{left:137.735638px;}
.xe{left:139.175634px;}
.x3{left:142.415630px;}
.x9{left:143.675623px;}
.x57{left:146.555623px;}
.x5b{left:147.995618px;}
.x7{left:151.409611px;}
.x64{left:155.729597px;}
.x5{left:180.389539px;}
.x63{left:235.469392px;}
.x51{left:251.129356px;}
.x52{left:256.889337px;}
.x4c{left:307.154225px;}
.x61{left:338.654146px;}
.x42{left:366.914071px;}
.x2e{left:368.714062px;}
.x38{left:370.334059px;}
.x3b{left:372.494058px;}
.x22{left:374.114057px;}
.x45{left:376.094040px;}
.x1f{left:377.354054px;}
.x1b{left:378.614046px;}
.x21{left:380.054029px;}
.x34{left:381.314044px;}
.x48{left:382.934019px;}
.x1d{left:384.554018px;}
.x33{left:386.534023px;}
.x47{left:391.934020px;}
.x29{left:393.733987px;}
.x28{left:396.793993px;}
.x3c{left:399.493968px;}
.x37{left:402.013996px;}
.x2c{left:416.413923px;}
.x49{left:420.733920px;}
.x39{left:422.893919px;}
.x20{left:424.873924px;}
.x2d{left:438.553883px;}
.x50{left:456.733830px;}
.x2f{left:462.313817px;}
.x65{left:463.573810px;}
.x2{left:471.343825px;}
.x55{left:483.043777px;}
.x66{left:484.303768px;}
.x4e{left:506.083744px;}
.x4d{left:575.383542px;}
.x27{left:576.463542px;}
.x1c{left:577.723533px;}
.x4f{left:595.903480px;}
.x5c{left:614.983434px;}
.x1e{left:616.963441px;}
.x59{left:621.463430px;}
.x5d{left:622.543429px;}
.x62{left:623.803419px;}
.x23{left:627.583440px;}
.x5e{left:638.743370px;}
.x2a{left:644.323358px;}
.x35{left:645.583395px;}
.x3d{left:646.663347px;}
.x2b{left:648.643354px;}
.x31{left:651.343375px;}
.x36{left:652.603365px;}
.x25{left:655.168347px;}
.x3f{left:657.688329px;}
.x43{left:658.768329px;}
.x32{left:663.088326px;}
.x46{left:667.408321px;}
.x30{left:670.288288px;}
.x3e{left:672.448287px;}
.x44{left:678.568298px;}
.x41{left:688.468282px;}
.x24{left:693.868232px;}
.x40{left:707.368199px;}
.x26{left:730.588157px;}
.x3a{left:738.868120px;}
.x4a{left:755.428090px;}
.x56{left:771.448040px;}
@media print{
.v4{vertical-align:-27.519953pt;}
.v2{vertical-align:-26.239929pt;}
.v3{vertical-align:-2.559887pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560172pt;}
.v6{vertical-align:32.639892pt;}
.v1{vertical-align:39.679911pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.031989pt;}
.ls1{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.154874pt;}
.ls10{letter-spacing:0.192085pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.ls1c{letter-spacing:0.483636pt;}
.ls1b{letter-spacing:0.511727pt;}
.ls1a{letter-spacing:0.511887pt;}
.ls19{letter-spacing:0.511967pt;}
.ls15{letter-spacing:0.511972pt;}
.ls13{letter-spacing:0.512009pt;}
.ls12{letter-spacing:0.512047pt;}
.ls16{letter-spacing:0.512052pt;}
.ls21{letter-spacing:1.151986pt;}
.ls17{letter-spacing:1.152002pt;}
.ls20{letter-spacing:1.152008pt;}
.ls22{letter-spacing:1.152024pt;}
.ls18{letter-spacing:1.791996pt;}
.ls14{letter-spacing:2.431989pt;}
.ls7{letter-spacing:47.684862pt;}
.lsc{letter-spacing:61.764902pt;}
.ls5{letter-spacing:87.524768pt;}
.ls9{letter-spacing:93.284844pt;}
.ls8{letter-spacing:97.764812pt;}
.ls4{letter-spacing:110.564748pt;}
.lsf{letter-spacing:113.434596pt;}
.lsd{letter-spacing:131.684652pt;}
.lsa{letter-spacing:148.964716pt;}
.ls6{letter-spacing:150.244664pt;}
.lsb{letter-spacing:218.724472pt;}
.ls2{letter-spacing:472.814503pt;}
.ls1e{letter-spacing:499.257717pt;}
.ls1d{letter-spacing:610.777374pt;}
.ls1f{letter-spacing:968.200283pt;}
.ws7{word-spacing:-64.127840pt;}
.ws5{word-spacing:-63.999840pt;}
.ws9{word-spacing:-17.855955pt;}
.ws6{word-spacing:-17.699284pt;}
.ws4{word-spacing:-17.663956pt;}
.ws8{word-spacing:-14.820443pt;}
.ws3{word-spacing:-11.999202pt;}
.ws2{word-spacing:-11.963490pt;}
.ws1{word-spacing:-11.834850pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-3.402930pt;}
._6{margin-left:-1.877339pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._19{width:2.304005pt;}
._f{width:3.327981pt;}
._10{width:4.415936pt;}
._4{width:5.386696pt;}
._3{width:6.314646pt;}
._b{width:7.989324pt;}
._a{width:8.895978pt;}
._2e{width:9.791976pt;}
._8{width:10.687973pt;}
._9{width:11.711971pt;}
._2b{width:13.119967pt;}
._d{width:14.037309pt;}
._e{width:14.965259pt;}
._13{width:16.736006pt;}
._c{width:19.505187pt;}
._7{width:20.543949pt;}
._5{width:21.567946pt;}
._1d{width:22.698610pt;}
._11{width:24.191940pt;}
._12{width:25.130615pt;}
._21{width:26.046395pt;}
._20{width:27.162936pt;}
._24{width:28.388925pt;}
._28{width:29.567921pt;}
._25{width:30.655923pt;}
._17{width:32.255930pt;}
._16{width:33.535905pt;}
._2a{width:34.751924pt;}
._14{width:38.143905pt;}
._15{width:39.562557pt;}
._1c{width:40.543867pt;}
._42{width:41.599896pt;}
._26{width:42.495894pt;}
._41{width:44.309233pt;}
._23{width:45.696024pt;}
._22{width:47.231882pt;}
._29{width:48.767910pt;}
._2c{width:49.663871pt;}
._1f{width:50.815873pt;}
._3d{width:52.031870pt;}
._3e{width:53.055867pt;}
._40{width:57.151862pt;}
._3f{width:62.463844pt;}
._1e{width:63.807840pt;}
._1b{width:67.199832pt;}
._2f{width:69.375827pt;}
._30{width:70.527824pt;}
._38{width:74.010332pt;}
._27{width:75.903741pt;}
._18{width:76.927866pt;}
._1a{width:78.207730pt;}
._2d{width:81.077301pt;}
._35{width:131.751100pt;}
._31{width:150.407747pt;}
._37{width:175.159077pt;}
._34{width:182.913217pt;}
._32{width:217.336187pt;}
._3c{width:351.102514pt;}
._33{width:390.144081pt;}
._3b{width:394.249713pt;}
._36{width:537.997855pt;}
._3a{width:785.075424pt;}
._39{width:788.168707pt;}
.fs4{font-size:42.879893pt;}
.fs5{font-size:43.007892pt;}
.fs0{font-size:53.119867pt;}
.fs6{font-size:53.247867pt;}
.fs3{font-size:58.879853pt;}
.fs1{font-size:63.999840pt;}
.fs2{font-size:64.127840pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.442829pt;}
.y85{bottom:7.999980pt;}
.y3{bottom:21.119902pt;}
.y31{bottom:26.559911pt;}
.y30{bottom:46.079882pt;}
.y4{bottom:48.319866pt;}
.y2f{bottom:65.146484pt;}
.yb6{bottom:66.746497pt;}
.yeb{bottom:72.026432pt;}
.y2e{bottom:84.666455pt;}
.yb5{bottom:86.266467pt;}
.y82{bottom:90.586444pt;}
.yea{bottom:96.026372pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.yb4{bottom:105.946350pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.ye9{bottom:120.026312pt;}
.y2c{bottom:124.026302pt;}
.yb3{bottom:125.626314pt;}
.y7f{bottom:129.786297pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.ye8{bottom:144.026252pt;}
.yb2{bottom:145.146284pt;}
.y83{bottom:146.266317pt;}
.y7c{bottom:160.986251pt;}
.y2a{bottom:163.226236pt;}
.yb1{bottom:164.826248pt;}
.ye7{bottom:168.026192pt;}
.y7b{bottom:174.106173pt;}
.y29{bottom:182.906200pt;}
.yb0{bottom:184.346219pt;}
.y7a{bottom:187.226176pt;}
.y79{bottom:200.346179pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.yaf{bottom:204.026102pt;}
.y78{bottom:215.706085pt;}
.ye6{bottom:220.026062pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.yae{bottom:223.706065pt;}
.y77{bottom:228.826088pt;}
.y72{bottom:235.226056pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.yad{bottom:243.226036pt;}
.y71{bottom:248.346059pt;}
.yd1{bottom:249.146024pt;}
.y75{bottom:254.906020pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.yac{bottom:262.906000pt;}
.y74{bottom:268.665995pt;}
.yd0{bottom:268.825988pt;}
.yd2{bottom:269.465961pt;}
.y24{bottom:280.985951pt;}
.yab{bottom:282.425970pt;}
.yb8{bottom:283.065943pt;}
.y6c{bottom:283.225936pt;}
.ycf{bottom:288.505952pt;}
.y6f{bottom:289.785897pt;}
.y6b{bottom:296.345939pt;}
.y23{bottom:300.505922pt;}
.yaa{bottom:302.145891pt;}
.y6e{bottom:302.945857pt;}
.yce{bottom:308.065881pt;}
.y6a{bottom:309.505900pt;}
.y22{bottom:320.225843pt;}
.ya9{bottom:321.825855pt;}
.y69{bottom:322.625821pt;}
.y6d{bottom:323.105800pt;}
.ycd{bottom:327.745845pt;}
.y21{bottom:339.745815pt;}
.ya8{bottom:341.345827pt;}
.y67{bottom:344.385776pt;}
.ycc{bottom:347.265814pt;}
.y66{bottom:357.505780pt;}
.y20{bottom:359.425777pt;}
.ya7{bottom:361.025709pt;}
.ycb{bottom:366.945697pt;}
.y65{bottom:370.625701pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.ya6{bottom:380.545679pt;}
.yca{bottom:386.625661pt;}
.y63{bottom:392.385656pt;}
.y1e{bottom:398.625631pt;}
.ya5{bottom:400.225643pt;}
.y62{bottom:405.505660pt;}
.yc9{bottom:406.145631pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.ya4{bottom:419.905608pt;}
.yc8{bottom:425.825595pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.y1c{bottom:437.825565pt;}
.ya3{bottom:439.425577pt;}
.yc7{bottom:445.345525pt;}
.y109{bottom:452.865527pt;}
.y5e{bottom:453.505498pt;}
.y1b{bottom:457.505488pt;}
.ya2{bottom:459.105502pt;}
.yc6{bottom:465.025489pt;}
.y5d{bottom:466.465469pt;}
.y108{bottom:472.545449pt;}
.y1a{bottom:477.185452pt;}
.ya1{bottom:478.785464pt;}
.y5c{bottom:479.585430pt;}
.yc5{bottom:484.705412pt;}
.y107{bottom:492.225413pt;}
.y5b{bottom:492.865427pt;}
.y19{bottom:496.705382pt;}
.ya0{bottom:498.305396pt;}
.y5f{bottom:499.745415pt;}
.yc4{bottom:504.225383pt;}
.y106{bottom:511.745385pt;}
.y59{bottom:514.465349pt;}
.y18{bottom:516.385346pt;}
.y9f{bottom:517.985358pt;}
.yc3{bottom:523.905348pt;}
.y58{bottom:527.585310pt;}
.y105{bottom:531.425307pt;}
.y17{bottom:535.905318pt;}
.y9e{bottom:537.505288pt;}
.y57{bottom:540.731966pt;}
.yc2{bottom:543.611964pt;}
.y104{bottom:550.971931pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y16{bottom:555.611934pt;}
.y9d{bottom:557.211904pt;}
.yc1{bottom:563.131894pt;}
.y54{bottom:569.211874pt;}
.y103{bottom:570.651893pt;}
.y15{bottom:575.291856pt;}
.y9c{bottom:576.891868pt;}
.y53{bottom:582.171843pt;}
.yc0{bottom:582.811856pt;}
.y102{bottom:590.331818pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.y9b{bottom:596.411840pt;}
.ybf{bottom:602.331788pt;}
.y51{bottom:608.411810pt;}
.y55{bottom:609.051781pt;}
.y101{bottom:609.851787pt;}
.y13{bottom:614.491790pt;}
.yb7{bottom:616.091762pt;}
.y9a{bottom:616.731776pt;}
.ybe{bottom:622.011750pt;}
.y4d{bottom:623.451769pt;}
.y100{bottom:629.531752pt;}
.y12{bottom:634.171713pt;}
.y4c{bottom:636.411740pt;}
.ybd{bottom:641.691714pt;}
.y50{bottom:642.971701pt;}
.y99{bottom:646.971691pt;}
.yff{bottom:649.051681pt;}
.y4b{bottom:649.531702pt;}
.y11{bottom:654.331658pt;}
.y4f{bottom:656.091662pt;}
.ybc{bottom:661.211644pt;}
.y4a{bottom:662.651663pt;}
.y98{bottom:666.491660pt;}
.yfe{bottom:668.731646pt;}
.y4e{bottom:669.211624pt;}
.y10{bottom:673.371607pt;}
.y49{bottom:675.771627pt;}
.ybb{bottom:680.891608pt;}
.y97{bottom:686.171583pt;}
.yfd{bottom:688.411610pt;}
.y48{bottom:688.891588pt;}
.yf{bottom:692.891578pt;}
.yba{bottom:700.411580pt;}
.y96{bottom:705.851547pt;}
.y10a{bottom:707.931540pt;}
.yfc{bottom:708.571553pt;}
.y47{bottom:709.691544pt;}
.ye{bottom:713.211514pt;}
.y42{bottom:716.251505pt;}
.yb9{bottom:720.091502pt;}
.y46{bottom:722.811506pt;}
.y95{bottom:725.371477pt;}
.yfb{bottom:727.611504pt;}
.y41{bottom:729.371467pt;}
.yd{bottom:732.251465pt;}
.y45{bottom:735.931470pt;}
.y40{bottom:742.651463pt;}
.y94{bottom:745.051441pt;}
.yfa{bottom:747.131434pt;}
.y44{bottom:749.051431pt;}
.ye5{bottom:751.131424pt;}
.yc{bottom:752.411450pt;}
.y3f{bottom:755.611434pt;}
.ye4{bottom:759.291396pt;}
.y93{bottom:764.571413pt;}
.yf9{bottom:766.811396pt;}
.y43{bottom:768.731396pt;}
.yb{bottom:772.091372pt;}
.y92{bottom:784.291354pt;}
.ye2{bottom:785.091340pt;}
.yf8{bottom:786.531339pt;}
.y3e{bottom:786.691352pt;}
.ya{bottom:791.011328pt;}
.ye1{bottom:793.251333pt;}
.ye3{bottom:801.411306pt;}
.y91{bottom:803.971298pt;}
.y3a{bottom:804.291304pt;}
.yf7{bottom:806.051289pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.y39{bottom:817.411266pt;}
.ye0{bottom:819.171272pt;}
.y90{bottom:823.491248pt;}
.y3c{bottom:823.971248pt;}
.yf6{bottom:825.731253pt;}
.ydf{bottom:827.331245pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.y3b{bottom:837.091210pt;}
.y8f{bottom:843.171212pt;}
.y37{bottom:843.651211pt;}
.yf5{bottom:845.411196pt;}
.y7{bottom:849.891186pt;}
.yde{bottom:853.251183pt;}
.y36{bottom:856.771174pt;}
.ydd{bottom:861.411156pt;}
.y8e{bottom:862.691162pt;}
.yf4{bottom:864.931147pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.yf3{bottom:884.611090pt;}
.ydc{bottom:887.171102pt;}
.y5{bottom:889.731093pt;}
.y34{bottom:891.651091pt;}
.y8d{bottom:893.091070pt;}
.yd9{bottom:895.331075pt;}
.ydb{bottom:903.491048pt;}
.yf2{bottom:904.131041pt;}
.y33{bottom:904.771054pt;}
.y32{bottom:907.971038pt;}
.yd8{bottom:911.651041pt;}
.yda{bottom:919.811014pt;}
.yf1{bottom:923.811004pt;}
.y8c{bottom:923.970998pt;}
.yd7{bottom:937.570960pt;}
.yf0{bottom:943.490948pt;}
.y8b{bottom:943.650961pt;}
.yd6{bottom:945.730953pt;}
.yef{bottom:963.010898pt;}
.y8a{bottom:963.170901pt;}
.yd5{bottom:974.690871pt;}
.y89{bottom:982.210852pt;}
.yee{bottom:982.690851pt;}
.y88{bottom:1001.725472pt;}
.yed{bottom:1002.205472pt;}
.yd4{bottom:1002.525468pt;}
.yec{bottom:1021.917419pt;}
.y87{bottom:1022.077421pt;}
.yd3{bottom:1022.237424pt;}
.y86{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.ha{height:32.159920pt;}
.h8{height:32.243669pt;}
.h9{height:32.339919pt;}
.hf{height:39.943650pt;}
.h12{height:40.039900pt;}
.hc{height:43.354892pt;}
.hd{height:47.124882pt;}
.h4{height:47.999880pt;}
.he{height:48.095880pt;}
.h5{height:48.124880pt;}
.h6{height:48.221129pt;}
.h3{height:52.834555pt;}
.hb{height:61.915064pt;}
.h7{height:71.923581pt;}
.h10{height:72.583542pt;}
.h11{height:72.583547pt;}
.h13{height:72.583702pt;}
.h2{height:1122.557154pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:793.758013pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:20.159938pt;}
.x14{left:21.919935pt;}
.x11{left:23.679929pt;}
.x15{left:26.079921pt;}
.x13{left:27.199920pt;}
.x18{left:28.319917pt;}
.x10{left:33.279903pt;}
.x16{left:39.519888pt;}
.x1{left:41.599885pt;}
.x12{left:43.199883pt;}
.x19{left:48.959867pt;}
.x6{left:52.639856pt;}
.x1a{left:57.599845pt;}
.x53{left:59.839840pt;}
.x54{left:62.239832pt;}
.x4b{left:72.959807pt;}
.x58{left:91.551760pt;}
.xd{left:92.991760pt;}
.xa{left:96.831747pt;}
.x60{left:101.471729pt;}
.xb{left:102.911728pt;}
.x5f{left:106.271725pt;}
.xc{left:112.991710pt;}
.xf{left:115.391698pt;}
.x4{left:119.871687pt;}
.x8{left:120.991690pt;}
.x5a{left:122.431678pt;}
.xe{left:123.711675pt;}
.x3{left:126.591672pt;}
.x9{left:127.711665pt;}
.x57{left:130.271665pt;}
.x5b{left:131.551660pt;}
.x7{left:134.586321pt;}
.x64{left:138.426309pt;}
.x5{left:160.346256pt;}
.x63{left:209.306126pt;}
.x51{left:223.226094pt;}
.x52{left:228.346077pt;}
.x4c{left:273.025977pt;}
.x61{left:301.025907pt;}
.x42{left:326.145841pt;}
.x2e{left:327.745833pt;}
.x38{left:329.185830pt;}
.x3b{left:331.105830pt;}
.x22{left:332.545829pt;}
.x45{left:334.305814pt;}
.x1f{left:335.425825pt;}
.x1b{left:336.545819pt;}
.x21{left:337.825803pt;}
.x34{left:338.945817pt;}
.x48{left:340.385794pt;}
.x1d{left:341.825793pt;}
.x33{left:343.585798pt;}
.x47{left:348.385796pt;}
.x29{left:349.985766pt;}
.x28{left:352.705772pt;}
.x3c{left:355.105750pt;}
.x37{left:357.345775pt;}
.x2c{left:370.145709pt;}
.x49{left:373.985706pt;}
.x39{left:375.905706pt;}
.x20{left:377.665711pt;}
.x2d{left:389.825673pt;}
.x50{left:405.985626pt;}
.x2f{left:410.945615pt;}
.x65{left:412.065609pt;}
.x2{left:418.972289pt;}
.x55{left:429.372247pt;}
.x66{left:430.492238pt;}
.x4e{left:449.852217pt;}
.x4d{left:511.452037pt;}
.x27{left:512.412038pt;}
.x1c{left:513.532030pt;}
.x4f{left:529.691982pt;}
.x5c{left:546.651941pt;}
.x1e{left:548.411948pt;}
.x59{left:552.411938pt;}
.x5d{left:553.371937pt;}
.x62{left:554.491928pt;}
.x23{left:557.851947pt;}
.x5e{left:567.771885pt;}
.x2a{left:572.731874pt;}
.x35{left:573.851907pt;}
.x3d{left:574.811864pt;}
.x2b{left:576.571871pt;}
.x31{left:578.971889pt;}
.x36{left:580.091880pt;}
.x25{left:582.371864pt;}
.x3f{left:584.611848pt;}
.x43{left:585.571848pt;}
.x32{left:589.411845pt;}
.x46{left:593.251841pt;}
.x30{left:595.811812pt;}
.x3e{left:597.731811pt;}
.x44{left:603.171820pt;}
.x41{left:611.971806pt;}
.x24{left:616.771762pt;}
.x40{left:628.771732pt;}
.x26{left:649.411695pt;}
.x3a{left:656.771662pt;}
.x4a{left:671.491636pt;}
.x56{left:685.731591pt;}
}




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