
    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_2ea2b214e120fd5586d75fb8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_d2a8a9cf0c7ebafbeb03a09f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_8b2972e1491ba51bf5d01d5f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1fc8c2157df09c2b53eb5ab9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_5b784cea64a0e733e4fbd32d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.858398;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_e5dab6d4a088a92304d291c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_861fc205cd784f546ca448c8.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.219716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219716,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248737,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);}
.m1{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255815,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.256916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256916,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-35.064851px;}
.v1{vertical-align:-6.397401px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:34.978272px;}
.lsa{letter-spacing:-5.155800px;}
.ls11{letter-spacing:-3.373650px;}
.ls7{letter-spacing:-3.284550px;}
.lsd{letter-spacing:-1.587300px;}
.ls15{letter-spacing:-1.298700px;}
.ls23{letter-spacing:-1.154400px;}
.ls8{letter-spacing:-0.649200px;}
.ls12{letter-spacing:-0.519480px;}
.ls5{letter-spacing:-0.342600px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.050157px;}
.ls19{letter-spacing:0.158008px;}
.lsf{letter-spacing:0.174300px;}
.ls10{letter-spacing:0.257985px;}
.ls1f{letter-spacing:0.330300px;}
.ls4{letter-spacing:0.342600px;}
.lsb{letter-spacing:0.376770px;}
.ls16{letter-spacing:0.577200px;}
.ls1e{letter-spacing:0.702201px;}
.ls18{letter-spacing:0.744000px;}
.ls1d{letter-spacing:0.758029px;}
.ls25{letter-spacing:0.793200px;}
.ls3{letter-spacing:0.793800px;}
.ls1b{letter-spacing:0.804327px;}
.ls2{letter-spacing:0.873180px;}
.ls1a{letter-spacing:0.890907px;}
.ls9{letter-spacing:0.912180px;}
.ls21{letter-spacing:0.972405px;}
.ls1{letter-spacing:0.991500px;}
.ls20{letter-spacing:0.992250px;}
.ls13{letter-spacing:1.154400px;}
.ls24{letter-spacing:1.189800px;}
.lsc{letter-spacing:1.226550px;}
.ls6{letter-spacing:1.278900px;}
.ls26{letter-spacing:1.352250px;}
.ls14{letter-spacing:1.370850px;}
.ls22{letter-spacing:1.948050px;}
.lse{letter-spacing:1.949400px;}
.ls17{letter-spacing:2.237621px;}
.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;}
}
.ws13{word-spacing:-45.841950px;}
.ws0{word-spacing:-45.643500px;}
.ws16{word-spacing:-45.609000px;}
.ws9{word-spacing:-45.107685px;}
.ws4{word-spacing:-44.815800px;}
.wsa{word-spacing:-41.476050px;}
.ws5{word-spacing:-39.660000px;}
.ws11{word-spacing:-34.372800px;}
.ws12{word-spacing:-28.543800px;}
.ws8{word-spacing:-24.441900px;}
.ws3{word-spacing:-24.208350px;}
.ws1{word-spacing:-19.356900px;}
.ws14{word-spacing:-18.253950px;}
.wsc{word-spacing:-17.676750px;}
.ws6{word-spacing:-17.532450px;}
.wsd{word-spacing:-16.883100px;}
.wse{word-spacing:-16.616684px;}
.wsf{word-spacing:-16.305900px;}
.wsb{word-spacing:-15.786420px;}
.ws15{word-spacing:-15.151500px;}
.ws7{word-spacing:-14.718600px;}
.ws2{word-spacing:0.000000px;}
.ws10{word-spacing:337.449600px;}
._34{margin-left:-4716.040892px;}
._29{margin-left:-4680.713940px;}
._2b{margin-left:-4407.189930px;}
._2e{margin-left:-4404.415232px;}
._30{margin-left:-4383.566656px;}
._20{margin-left:-4373.485106px;}
._23{margin-left:-4370.996670px;}
._2a{margin-left:-4354.248485px;}
._32{margin-left:-4351.289208px;}
._25{margin-left:-4350.183343px;}
._31{margin-left:-4348.441760px;}
._2d{margin-left:-4345.706141px;}
._1f{margin-left:-4321.264192px;}
._27{margin-left:-4318.685193px;}
._26{margin-left:-4315.876499px;}
._22{margin-left:-4312.838108px;}
._2f{margin-left:-4221.266591px;}
._24{margin-left:-4188.527365px;}
._2c{margin-left:-4096.500068px;}
._21{margin-left:-4065.608222px;}
._33{margin-left:-4029.131605px;}
._28{margin-left:-3997.999508px;}
._b{margin-left:-2106.552150px;}
._9{margin-left:-1819.380600px;}
._14{margin-left:-34.516323px;}
._36{margin-left:-22.053450px;}
._35{margin-left:-8.924850px;}
._d{margin-left:-7.429350px;}
._6{margin-left:-6.299100px;}
._3{margin-left:-4.957500px;}
._1{margin-left:-3.371100px;}
._5{margin-left:-1.586400px;}
._0{width:1.189800px;}
._2{width:2.216100px;}
._4{width:3.382800px;}
._8{width:4.463250px;}
._7{width:5.801400px;}
._c{width:7.295730px;}
._12{width:8.972145px;}
._10{width:10.907310px;}
._11{width:12.215000px;}
._13{width:14.023289px;}
._e{width:15.203400px;}
._15{width:16.402921px;}
._f{width:18.183900px;}
._1b{width:37.108800px;}
._1a{width:38.371768px;}
._16{width:218.562818px;}
._19{width:457.868268px;}
._1c{width:470.629514px;}
._18{width:473.576779px;}
._1e{width:476.888700px;}
._a{width:562.956600px;}
._1d{width:568.754489px;}
._17{width:930.407402px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(191,144,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:61.617708px;}
.fs19{font-size:68.347889px;}
.fs1c{font-size:69.077421px;}
.fs8{font-size:72.150000px;}
.fsd{font-size:73.525149px;}
.fs13{font-size:80.078438px;}
.fs6{font-size:81.150000px;}
.fs2{font-size:85.650000px;}
.fs18{font-size:95.644793px;}
.fs1b{font-size:96.799109px;}
.fs17{font-size:104.025726px;}
.fs1a{font-size:105.461046px;}
.fs7{font-size:108.150000px;}
.fs3{font-size:108.300000px;}
.fs11{font-size:110.290721px;}
.fs5{font-size:121.650000px;}
.fs4{font-size:121.800000px;}
.fsb{font-size:126.150000px;}
.fsc{font-size:126.300000px;}
.fs10{font-size:135.148853px;}
.fs16{font-size:148.800000px;}
.fsf{font-size:171.908429px;}
.fs9{font-size:180.300000px;}
.fs14{font-size:187.089517px;}
.fs0{font-size:198.300000px;}
.fs1{font-size:198.450000px;}
.fsa{font-size:216.300000px;}
.fse{font-size:220.731335px;}
.fs15{font-size:267.611636px;}
.fs1d{font-size:270.450000px;}
.y65{bottom:-593.028888px;}
.y64{bottom:-562.769220px;}
.y72{bottom:-538.873173px;}
.y75{bottom:-51.103684px;}
.yaa{bottom:-41.043200px;}
.y47{bottom:-41.043185px;}
.yac{bottom:-27.796173px;}
.y49{bottom:-27.796158px;}
.y74{bottom:-20.463281px;}
.ya9{bottom:-18.717049px;}
.y46{bottom:-18.717034px;}
.y0{bottom:0.000000px;}
.ya4{bottom:1.041908px;}
.y41{bottom:1.041923px;}
.y82{bottom:3.735406px;}
.y45{bottom:5.395336px;}
.ya8{bottom:5.395366px;}
.y1c{bottom:7.725000px;}
.y1e{bottom:10.912500px;}
.y87{bottom:11.250150px;}
.ya6{bottom:11.721432px;}
.y43{bottom:11.721447px;}
.y16{bottom:14.212500px;}
.ya3{bottom:15.601515px;}
.yab{bottom:15.824865px;}
.ya7{bottom:16.308570px;}
.y14{bottom:16.762500px;}
.y10{bottom:17.212500px;}
.y20{bottom:17.887500px;}
.y62{bottom:18.937500px;}
.y73{bottom:19.125000px;}
.yc{bottom:24.412500px;}
.y1b{bottom:29.812500px;}
.ya5{bottom:30.474452px;}
.y42{bottom:30.474467px;}
.y7{bottom:31.237500px;}
.y8{bottom:41.850000px;}
.yc0{bottom:46.661456px;}
.y5d{bottom:46.661471px;}
.y84{bottom:51.562500px;}
.y6{bottom:53.775000px;}
.yb{bottom:57.112500px;}
.y8d{bottom:63.193665px;}
.y61{bottom:63.862500px;}
.ya2{bottom:64.147739px;}
.y3f{bottom:64.147889px;}
.yc1{bottom:73.500000px;}
.y5{bottom:77.437500px;}
.ybf{bottom:79.666232px;}
.y5c{bottom:79.666247px;}
.ybe{bottom:81.265582px;}
.y5b{bottom:81.265597px;}
.ya{bottom:88.650000px;}
.ya1{bottom:98.045873px;}
.y3e{bottom:98.046023px;}
.y4{bottom:99.975000px;}
.y60{bottom:102.187500px;}
.yf{bottom:106.237500px;}
.ybd{bottom:113.822180px;}
.y5a{bottom:113.822195px;}
.y9{bottom:121.350000px;}
.ya0{bottom:131.833086px;}
.y3d{bottom:131.833236px;}
.ybc{bottom:136.335997px;}
.y59{bottom:136.336012px;}
.y3{bottom:138.487500px;}
.y9f{bottom:165.286040px;}
.y3c{bottom:165.286190px;}
.ybb{bottom:168.637777px;}
.y58{bottom:168.637792px;}
.y2{bottom:192.570000px;}
.y9e{bottom:199.221646px;}
.y3b{bottom:199.221796px;}
.y86{bottom:220.470000px;}
.y9d{bottom:232.677597px;}
.y3a{bottom:232.677747px;}
.y5f{bottom:233.850000px;}
.y1{bottom:245.550000px;}
.y9c{bottom:266.463312px;}
.y39{bottom:266.463462px;}
.y63{bottom:271.125000px;}
.y9b{bottom:300.024188px;}
.y38{bottom:300.024338px;}
.y71{bottom:313.700550px;}
.y9a{bottom:333.809902px;}
.y37{bottom:333.810052px;}
.y23{bottom:358.155000px;}
.y99{bottom:367.265853px;}
.y36{bottom:367.266003px;}
.y70{bottom:373.570537px;}
.y22{bottom:391.950000px;}
.yd{bottom:399.675000px;}
.y98{bottom:401.156492px;}
.y35{bottom:401.156642px;}
.y24{bottom:420.750000px;}
.y40{bottom:425.101500px;}
.y48{bottom:425.324850px;}
.y44{bottom:425.808600px;}
.y6f{bottom:433.418879px;}
.y97{bottom:434.987174px;}
.y34{bottom:434.987324px;}
.yba{bottom:436.962751px;}
.y57{bottom:436.962766px;}
.y1a{bottom:450.525000px;}
.y18{bottom:451.875000px;}
.yb9{bottom:461.440156px;}
.y56{bottom:461.440171px;}
.y96{bottom:468.428136px;}
.y33{bottom:468.428286px;}
.y2a{bottom:472.693650px;}
.y19{bottom:483.225000px;}
.y17{bottom:484.575000px;}
.y5e{bottom:486.405000px;}
.y6e{bottom:493.288866px;}
.yb8{bottom:496.050277px;}
.y55{bottom:496.050292px;}
.y95{bottom:502.333764px;}
.y32{bottom:502.333914px;}
.y85{bottom:526.575000px;}
.yb7{bottom:530.495518px;}
.y54{bottom:530.495533px;}
.y12{bottom:532.800000px;}
.y21{bottom:533.925000px;}
.y11{bottom:534.900000px;}
.y94{bottom:535.789715px;}
.y31{bottom:535.789865px;}
.ye{bottom:538.350000px;}
.y15{bottom:540.150000px;}
.y83{bottom:542.175000px;}
.y13{bottom:542.745000px;}
.y92{bottom:548.554687px;}
.y2f{bottom:548.554702px;}
.y1d{bottom:552.675000px;}
.y6d{bottom:553.202143px;}
.y1f{bottom:558.600000px;}
.yb6{bottom:565.105639px;}
.y53{bottom:565.105654px;}
.y93{bottom:569.575430px;}
.y30{bottom:569.575580px;}
.y91{bottom:576.164840px;}
.y2e{bottom:576.164855px;}
.yb5{bottom:599.715761px;}
.y52{bottom:599.715776px;}
.y6c{bottom:621.816698px;}
.yb4{bottom:622.106817px;}
.y51{bottom:622.106832px;}
.y90{bottom:671.891883px;}
.y2d{bottom:671.892033px;}
.y6b{bottom:672.920472px;}
.y8f{bottom:727.411974px;}
.y2c{bottom:727.412124px;}
.y8e{bottom:728.125608px;}
.y2b{bottom:728.125623px;}
.y6a{bottom:732.768814px;}
.yb3{bottom:757.447381px;}
.y50{bottom:757.447396px;}
.yb2{bottom:792.012535px;}
.y4f{bottom:792.012550px;}
.y69{bottom:792.617156px;}
.yb1{bottom:826.622657px;}
.y4e{bottom:826.622672px;}
.y68{bottom:852.487143px;}
.yb0{bottom:861.112865px;}
.y4d{bottom:861.112880px;}
.y81{bottom:866.826119px;}
.y8c{bottom:885.218540px;}
.y29{bottom:885.218690px;}
.yaf{bottom:895.722986px;}
.y4c{bottom:895.723001px;}
.y67{bottom:912.335486px;}
.y80{bottom:927.407340px;}
.yae{bottom:930.318119px;}
.y4b{bottom:930.318134px;}
.y8b{bottom:952.460206px;}
.y28{bottom:952.460356px;}
.yad{bottom:959.502141px;}
.y4a{bottom:959.502156px;}
.y66{bottom:972.248762px;}
.y7f{bottom:988.032176px;}
.y8a{bottom:1009.943886px;}
.y27{bottom:1009.944036px;}
.y89{bottom:1032.352778px;}
.y26{bottom:1032.352928px;}
.y7e{bottom:1048.613397px;}
.y88{bottom:1054.791648px;}
.y25{bottom:1054.791798px;}
.y7d{bottom:1109.238233px;}
.y7c{bottom:1178.695105px;}
.y7b{bottom:1230.466098px;}
.y7a{bottom:1291.025511px;}
.y79{bottom:1351.606733px;}
.y78{bottom:1412.253376px;}
.y77{bottom:1472.812790px;}
.y76{bottom:1533.459433px;}
.h14{height:0.929332px;}
.h19{height:44.227554px;}
.h27{height:47.456395px;}
.h1a{height:47.814135px;}
.h2c{height:47.962936px;}
.h1d{height:48.298140px;}
.h18{height:48.521475px;}
.h1b{height:50.261332px;}
.hc{height:51.787354px;}
.h12{height:52.774399px;}
.h2e{height:52.872840px;}
.h11{height:52.872990px;}
.h21{height:54.741120px;}
.h1e{height:57.478176px;}
.h3{height:58.549805px;}
.h8{height:58.920923px;}
.h1c{height:70.006856px;}
.h25{height:72.228800px;}
.h2a{height:73.225394px;}
.h23{height:73.663037px;}
.h9{height:77.627197px;}
.h5{height:77.734863px;}
.h17{height:79.163750px;}
.h4{height:81.551514px;}
.h26{height:82.434667px;}
.h28{height:82.780987px;}
.h7{height:83.159180px;}
.h6{height:83.261719px;}
.h2b{height:83.465538px;}
.hf{height:91.594263px;}
.h10{height:91.703174px;}
.h16{height:97.006257px;}
.h22{height:106.804688px;}
.hd{height:123.251953px;}
.h15{height:123.391304px;}
.h1f{height:127.893225px;}
.h1{height:135.556641px;}
.h2{height:135.659180px;}
.he{height:147.861328px;}
.h13{height:158.435089px;}
.hb{height:188.811035px;}
.ha{height:188.953857px;}
.h20{height:192.084524px;}
.h2d{height:257.508545px;}
.h24{height:259.869600px;}
.h29{height:262.125000px;}
.h0{height:607.500000px;}
.w3{width:0.894144px;}
.w6{width:72.649335px;}
.w4{width:79.950585px;}
.w7{width:321.741750px;}
.w8{width:370.125000px;}
.w5{width:547.559400px;}
.w2{width:626.617050px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x30{left:-457.889715px;}
.x2f{left:-406.311977px;}
.x35{left:-46.687917px;}
.x19{left:-6.072720px;}
.x22{left:-3.241286px;}
.x0{left:0.000000px;}
.x1b{left:1.676511px;}
.x34{left:5.761329px;}
.x1e{left:8.120667px;}
.x3{left:10.799984px;}
.x16{left:19.349984px;}
.x11{left:27.787484px;}
.x8{left:36.674984px;}
.x9{left:39.974984px;}
.xa{left:43.649984px;}
.x38{left:47.587484px;}
.x13{left:49.612484px;}
.x37{left:55.574984px;}
.x18{left:61.875000px;}
.x1f{left:63.663315px;}
.x20{left:66.427730px;}
.x2c{left:69.562484px;}
.x2b{left:70.762484px;}
.x1c{left:73.170090px;}
.x17{left:76.274984px;}
.x6{left:80.774984px;}
.x3a{left:84.682620px;}
.x5{left:95.512484px;}
.x2e{left:100.452760px;}
.x21{left:102.937883px;}
.x3b{left:134.924984px;}
.x1d{left:140.932620px;}
.x29{left:241.124984px;}
.x1a{left:253.705338px;}
.x2a{left:279.269984px;}
.x25{left:311.680121px;}
.x32{left:361.125000px;}
.x1{left:370.844984px;}
.x2d{left:390.375000px;}
.x39{left:405.524984px;}
.x26{left:478.595872px;}
.x27{left:491.547526px;}
.x33{left:520.958685px;}
.x28{left:563.044256px;}
.x23{left:564.842784px;}
.xc{left:571.049984px;}
.xd{left:577.949984px;}
.x24{left:591.769013px;}
.xb{left:631.949984px;}
.x7{left:674.099984px;}
.x14{left:685.244984px;}
.x31{left:686.963785px;}
.x15{left:700.904984px;}
.xe{left:758.999984px;}
.xf{left:766.694984px;}
.x4{left:824.669984px;}
.x2{left:845.249984px;}
.x12{left:892.544984px;}
.x10{left:895.379984px;}
.x36{left:1117.256482px;}
@media print{
.v3{vertical-align:-31.168757pt;}
.v1{vertical-align:-5.686579pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:31.091797pt;}
.lsa{letter-spacing:-4.582933pt;}
.ls11{letter-spacing:-2.998800pt;}
.ls7{letter-spacing:-2.919600pt;}
.lsd{letter-spacing:-1.410933pt;}
.ls15{letter-spacing:-1.154400pt;}
.ls23{letter-spacing:-1.026133pt;}
.ls8{letter-spacing:-0.577067pt;}
.ls12{letter-spacing:-0.461760pt;}
.ls5{letter-spacing:-0.304533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.044584pt;}
.ls19{letter-spacing:0.140452pt;}
.lsf{letter-spacing:0.154933pt;}
.ls10{letter-spacing:0.229320pt;}
.ls1f{letter-spacing:0.293600pt;}
.ls4{letter-spacing:0.304533pt;}
.lsb{letter-spacing:0.334907pt;}
.ls16{letter-spacing:0.513067pt;}
.ls1e{letter-spacing:0.624179pt;}
.ls18{letter-spacing:0.661333pt;}
.ls1d{letter-spacing:0.673803pt;}
.ls25{letter-spacing:0.705067pt;}
.ls3{letter-spacing:0.705600pt;}
.ls1b{letter-spacing:0.714957pt;}
.ls2{letter-spacing:0.776160pt;}
.ls1a{letter-spacing:0.791917pt;}
.ls9{letter-spacing:0.810827pt;}
.ls21{letter-spacing:0.864360pt;}
.ls1{letter-spacing:0.881333pt;}
.ls20{letter-spacing:0.882000pt;}
.ls13{letter-spacing:1.026133pt;}
.ls24{letter-spacing:1.057600pt;}
.lsc{letter-spacing:1.090267pt;}
.ls6{letter-spacing:1.136800pt;}
.ls26{letter-spacing:1.202000pt;}
.ls14{letter-spacing:1.218533pt;}
.ls22{letter-spacing:1.731600pt;}
.lse{letter-spacing:1.732800pt;}
.ls17{letter-spacing:1.988996pt;}
.ws13{word-spacing:-40.748400pt;}
.ws0{word-spacing:-40.572000pt;}
.ws16{word-spacing:-40.541333pt;}
.ws9{word-spacing:-40.095720pt;}
.ws4{word-spacing:-39.836267pt;}
.wsa{word-spacing:-36.867600pt;}
.ws5{word-spacing:-35.253333pt;}
.ws11{word-spacing:-30.553600pt;}
.ws12{word-spacing:-25.372267pt;}
.ws8{word-spacing:-21.726133pt;}
.ws3{word-spacing:-21.518533pt;}
.ws1{word-spacing:-17.206133pt;}
.ws14{word-spacing:-16.225733pt;}
.wsc{word-spacing:-15.712667pt;}
.ws6{word-spacing:-15.584400pt;}
.wsd{word-spacing:-15.007200pt;}
.wse{word-spacing:-14.770385pt;}
.wsf{word-spacing:-14.494133pt;}
.wsb{word-spacing:-14.032373pt;}
.ws15{word-spacing:-13.468000pt;}
.ws7{word-spacing:-13.083200pt;}
.ws2{word-spacing:0.000000pt;}
.ws10{word-spacing:299.955200pt;}
._34{margin-left:-4192.036349pt;}
._29{margin-left:-4160.634613pt;}
._2b{margin-left:-3917.502160pt;}
._2e{margin-left:-3915.035762pt;}
._30{margin-left:-3896.503694pt;}
._20{margin-left:-3887.542316pt;}
._23{margin-left:-3885.330374pt;}
._2a{margin-left:-3870.443098pt;}
._32{margin-left:-3867.812630pt;}
._25{margin-left:-3866.829639pt;}
._31{margin-left:-3865.281564pt;}
._2d{margin-left:-3862.849903pt;}
._1f{margin-left:-3841.123726pt;}
._27{margin-left:-3838.831283pt;}
._26{margin-left:-3836.334666pt;}
._22{margin-left:-3833.633874pt;}
._2f{margin-left:-3752.236970pt;}
._24{margin-left:-3723.135436pt;}
._2c{margin-left:-3641.333393pt;}
._21{margin-left:-3613.873975pt;}
._33{margin-left:-3581.450315pt;}
._28{margin-left:-3553.777341pt;}
._b{margin-left:-1872.490800pt;}
._9{margin-left:-1617.227200pt;}
._14{margin-left:-30.681176pt;}
._36{margin-left:-19.603067pt;}
._35{margin-left:-7.933200pt;}
._d{margin-left:-6.603867pt;}
._6{margin-left:-5.599200pt;}
._3{margin-left:-4.406667pt;}
._1{margin-left:-2.996533pt;}
._5{margin-left:-1.410133pt;}
._0{width:1.057600pt;}
._2{width:1.969867pt;}
._4{width:3.006933pt;}
._8{width:3.967333pt;}
._7{width:5.156800pt;}
._c{width:6.485093pt;}
._12{width:7.975240pt;}
._10{width:9.695387pt;}
._11{width:10.857778pt;}
._13{width:12.465146pt;}
._e{width:13.514133pt;}
._15{width:14.580375pt;}
._f{width:16.163467pt;}
._1b{width:32.985600pt;}
._1a{width:34.108238pt;}
._16{width:194.278061pt;}
._19{width:406.994016pt;}
._1c{width:418.337346pt;}
._18{width:420.957137pt;}
._1e{width:423.901067pt;}
._a{width:500.405867pt;}
._1d{width:505.559546pt;}
._17{width:827.028801pt;}
.fs12{font-size:54.771296pt;}
.fs19{font-size:60.753679pt;}
.fs1c{font-size:61.402152pt;}
.fs8{font-size:64.133333pt;}
.fsd{font-size:65.355688pt;}
.fs13{font-size:71.180834pt;}
.fs6{font-size:72.133333pt;}
.fs2{font-size:76.133333pt;}
.fs18{font-size:85.017594pt;}
.fs1b{font-size:86.043652pt;}
.fs17{font-size:92.467312pt;}
.fs1a{font-size:93.743152pt;}
.fs7{font-size:96.133333pt;}
.fs3{font-size:96.266667pt;}
.fs11{font-size:98.036197pt;}
.fs5{font-size:108.133333pt;}
.fs4{font-size:108.266667pt;}
.fsb{font-size:112.133333pt;}
.fsc{font-size:112.266667pt;}
.fs10{font-size:120.132314pt;}
.fs16{font-size:132.266667pt;}
.fsf{font-size:152.807493pt;}
.fs9{font-size:160.266667pt;}
.fs14{font-size:166.301793pt;}
.fs0{font-size:176.266667pt;}
.fs1{font-size:176.400000pt;}
.fsa{font-size:192.266667pt;}
.fse{font-size:196.205631pt;}
.fs15{font-size:237.877010pt;}
.fs1d{font-size:240.400000pt;}
.y65{bottom:-527.136789pt;}
.y64{bottom:-500.239307pt;}
.y72{bottom:-478.998376pt;}
.y75{bottom:-45.425497pt;}
.yaa{bottom:-36.482845pt;}
.y47{bottom:-36.482831pt;}
.yac{bottom:-24.707709pt;}
.y49{bottom:-24.707696pt;}
.y74{bottom:-18.189583pt;}
.ya9{bottom:-16.637377pt;}
.y46{bottom:-16.637363pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:0.926141pt;}
.y41{bottom:0.926154pt;}
.y82{bottom:3.320361pt;}
.y45{bottom:4.795854pt;}
.ya8{bottom:4.795880pt;}
.y1c{bottom:6.866667pt;}
.y1e{bottom:9.700000pt;}
.y87{bottom:10.000133pt;}
.ya6{bottom:10.419050pt;}
.y43{bottom:10.419064pt;}
.y16{bottom:12.633333pt;}
.ya3{bottom:13.868013pt;}
.yab{bottom:14.066547pt;}
.ya7{bottom:14.496507pt;}
.y14{bottom:14.900000pt;}
.y10{bottom:15.300000pt;}
.y20{bottom:15.900000pt;}
.y62{bottom:16.833333pt;}
.y73{bottom:17.000000pt;}
.yc{bottom:21.700000pt;}
.y1b{bottom:26.500000pt;}
.ya5{bottom:27.088401pt;}
.y42{bottom:27.088415pt;}
.y7{bottom:27.766667pt;}
.y8{bottom:37.200000pt;}
.yc0{bottom:41.476850pt;}
.y5d{bottom:41.476863pt;}
.y84{bottom:45.833333pt;}
.y6{bottom:47.800000pt;}
.yb{bottom:50.766667pt;}
.y8d{bottom:56.172147pt;}
.y61{bottom:56.766667pt;}
.ya2{bottom:57.020213pt;}
.y3f{bottom:57.020346pt;}
.yc1{bottom:65.333333pt;}
.y5{bottom:68.833333pt;}
.ybf{bottom:70.814428pt;}
.y5c{bottom:70.814441pt;}
.ybe{bottom:72.236073pt;}
.y5b{bottom:72.236086pt;}
.ya{bottom:78.800000pt;}
.ya1{bottom:87.151887pt;}
.y3e{bottom:87.152020pt;}
.y4{bottom:88.866667pt;}
.y60{bottom:90.833333pt;}
.yf{bottom:94.433333pt;}
.ybd{bottom:101.175271pt;}
.y5a{bottom:101.175284pt;}
.y9{bottom:107.866667pt;}
.ya0{bottom:117.184965pt;}
.y3d{bottom:117.185099pt;}
.ybc{bottom:121.187552pt;}
.y59{bottom:121.187566pt;}
.y3{bottom:123.100000pt;}
.y9f{bottom:146.920924pt;}
.y3c{bottom:146.921057pt;}
.ybb{bottom:149.900247pt;}
.y58{bottom:149.900260pt;}
.y2{bottom:171.173333pt;}
.y9e{bottom:177.085908pt;}
.y3b{bottom:177.086041pt;}
.y86{bottom:195.973333pt;}
.y9d{bottom:206.824531pt;}
.y3a{bottom:206.824664pt;}
.y5f{bottom:207.866667pt;}
.y1{bottom:218.266667pt;}
.y9c{bottom:236.856277pt;}
.y39{bottom:236.856410pt;}
.y63{bottom:241.000000pt;}
.y9b{bottom:266.688167pt;}
.y38{bottom:266.688300pt;}
.y71{bottom:278.844934pt;}
.y9a{bottom:296.719913pt;}
.y37{bottom:296.720046pt;}
.y23{bottom:318.360000pt;}
.y99{bottom:326.458536pt;}
.y36{bottom:326.458670pt;}
.y70{bottom:332.062700pt;}
.y22{bottom:348.400000pt;}
.yd{bottom:355.266667pt;}
.y98{bottom:356.583548pt;}
.y35{bottom:356.583682pt;}
.y24{bottom:374.000000pt;}
.y40{bottom:377.868000pt;}
.y48{bottom:378.066533pt;}
.y44{bottom:378.496533pt;}
.y6f{bottom:385.261226pt;}
.y97{bottom:386.655266pt;}
.y34{bottom:386.655399pt;}
.yba{bottom:388.411334pt;}
.y57{bottom:388.411347pt;}
.y1a{bottom:400.466667pt;}
.y18{bottom:401.666667pt;}
.yb9{bottom:410.169027pt;}
.y56{bottom:410.169041pt;}
.y96{bottom:416.380565pt;}
.y33{bottom:416.380699pt;}
.y2a{bottom:420.172133pt;}
.y19{bottom:429.533333pt;}
.y17{bottom:430.733333pt;}
.y5e{bottom:432.360000pt;}
.y6e{bottom:438.478992pt;}
.yb8{bottom:440.933580pt;}
.y55{bottom:440.933593pt;}
.y95{bottom:446.518901pt;}
.y32{bottom:446.519035pt;}
.y85{bottom:468.066667pt;}
.yb7{bottom:471.551571pt;}
.y54{bottom:471.551585pt;}
.y12{bottom:473.600000pt;}
.y21{bottom:474.600000pt;}
.y11{bottom:475.466667pt;}
.y94{bottom:476.257525pt;}
.y31{bottom:476.257658pt;}
.ye{bottom:478.533333pt;}
.y15{bottom:480.133333pt;}
.y83{bottom:481.933333pt;}
.y13{bottom:482.440000pt;}
.y92{bottom:487.604166pt;}
.y2f{bottom:487.604180pt;}
.y1d{bottom:491.266667pt;}
.y6d{bottom:491.735238pt;}
.y1f{bottom:496.533333pt;}
.yb6{bottom:502.316124pt;}
.y53{bottom:502.316137pt;}
.y93{bottom:506.289271pt;}
.y30{bottom:506.289404pt;}
.y91{bottom:512.146525pt;}
.y2e{bottom:512.146538pt;}
.yb5{bottom:533.080676pt;}
.y52{bottom:533.080690pt;}
.y6c{bottom:552.725954pt;}
.yb4{bottom:552.983837pt;}
.y51{bottom:552.983850pt;}
.y90{bottom:597.237229pt;}
.y2d{bottom:597.237363pt;}
.y6b{bottom:598.151531pt;}
.y8f{bottom:646.588422pt;}
.y2c{bottom:646.588555pt;}
.y8e{bottom:647.222763pt;}
.y2b{bottom:647.222776pt;}
.y6a{bottom:651.350057pt;}
.yb3{bottom:673.286561pt;}
.y50{bottom:673.286574pt;}
.yb2{bottom:704.011142pt;}
.y4f{bottom:704.011156pt;}
.y69{bottom:704.548583pt;}
.yb1{bottom:734.775695pt;}
.y4e{bottom:734.775708pt;}
.y68{bottom:757.766350pt;}
.yb0{bottom:765.433657pt;}
.y4d{bottom:765.433671pt;}
.y81{bottom:770.512106pt;}
.y8c{bottom:786.860925pt;}
.y29{bottom:786.861058pt;}
.yaf{bottom:796.198210pt;}
.y4c{bottom:796.198223pt;}
.y67{bottom:810.964876pt;}
.y80{bottom:824.362080pt;}
.yae{bottom:826.949439pt;}
.y4b{bottom:826.949452pt;}
.y8b{bottom:846.631294pt;}
.y28{bottom:846.631428pt;}
.yad{bottom:852.890792pt;}
.y4a{bottom:852.890805pt;}
.y66{bottom:864.221122pt;}
.y7f{bottom:878.250823pt;}
.y8a{bottom:897.727898pt;}
.y27{bottom:897.728032pt;}
.y89{bottom:917.646914pt;}
.y26{bottom:917.647047pt;}
.y7e{bottom:932.100797pt;}
.y88{bottom:937.592576pt;}
.y25{bottom:937.592710pt;}
.y7d{bottom:985.989541pt;}
.y7c{bottom:1047.728982pt;}
.y7b{bottom:1093.747643pt;}
.y7a{bottom:1147.578232pt;}
.y79{bottom:1201.428207pt;}
.y78{bottom:1255.336334pt;}
.y77{bottom:1309.166924pt;}
.y76{bottom:1363.075052pt;}
.h14{height:0.826073pt;}
.h19{height:39.313382pt;}
.h27{height:42.183463pt;}
.h1a{height:42.501453pt;}
.h2c{height:42.633721pt;}
.h1d{height:42.931680pt;}
.h18{height:43.130200pt;}
.h1b{height:44.676740pt;}
.hc{height:46.033203pt;}
.h12{height:46.910577pt;}
.h2e{height:46.998080pt;}
.h11{height:46.998213pt;}
.h21{height:48.658773pt;}
.h1e{height:51.091712pt;}
.h3{height:52.044271pt;}
.h8{height:52.374154pt;}
.h1c{height:62.228316pt;}
.h25{height:64.203378pt;}
.h2a{height:65.089239pt;}
.h23{height:65.478255pt;}
.h9{height:69.001953pt;}
.h5{height:69.097656pt;}
.h17{height:70.367778pt;}
.h4{height:72.490234pt;}
.h26{height:73.275260pt;}
.h28{height:73.583099pt;}
.h7{height:73.919271pt;}
.h6{height:74.010417pt;}
.h2b{height:74.191589pt;}
.hf{height:81.417122pt;}
.h10{height:81.513932pt;}
.h16{height:86.227784pt;}
.h22{height:94.937500pt;}
.hd{height:109.557292pt;}
.h15{height:109.681159pt;}
.h1f{height:113.682866pt;}
.h1{height:120.494792pt;}
.h2{height:120.585938pt;}
.he{height:131.432292pt;}
.h13{height:140.831190pt;}
.hb{height:167.832031pt;}
.ha{height:167.958984pt;}
.h20{height:170.741799pt;}
.h2d{height:228.896484pt;}
.h24{height:230.995200pt;}
.h29{height:233.000000pt;}
.h0{height:540.000000pt;}
.w3{width:0.794795pt;}
.w6{width:64.577187pt;}
.w4{width:71.067187pt;}
.w7{width:285.992667pt;}
.w8{width:329.000000pt;}
.w5{width:486.719467pt;}
.w2{width:556.992933pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x30{left:-407.013080pt;}
.x2f{left:-361.166201pt;}
.x35{left:-41.500371pt;}
.x19{left:-5.397973pt;}
.x22{left:-2.881144pt;}
.x0{left:0.000000pt;}
.x1b{left:1.490232pt;}
.x34{left:5.121182pt;}
.x1e{left:7.218370pt;}
.x3{left:9.599986pt;}
.x16{left:17.199986pt;}
.x11{left:24.699986pt;}
.x8{left:32.599986pt;}
.x9{left:35.533319pt;}
.xa{left:38.799986pt;}
.x38{left:42.299986pt;}
.x13{left:44.099986pt;}
.x37{left:49.399986pt;}
.x18{left:55.000000pt;}
.x1f{left:56.589613pt;}
.x20{left:59.046871pt;}
.x2c{left:61.833319pt;}
.x2b{left:62.899986pt;}
.x1c{left:65.040080pt;}
.x17{left:67.799986pt;}
.x6{left:71.799986pt;}
.x3a{left:75.273440pt;}
.x5{left:84.899986pt;}
.x2e{left:89.291342pt;}
.x21{left:91.500340pt;}
.x3b{left:119.933319pt;}
.x1d{left:125.273440pt;}
.x29{left:214.333319pt;}
.x1a{left:225.515856pt;}
.x2a{left:248.239986pt;}
.x25{left:277.048997pt;}
.x32{left:321.000000pt;}
.x1{left:329.639986pt;}
.x2d{left:347.000000pt;}
.x39{left:360.466652pt;}
.x26{left:425.418553pt;}
.x27{left:436.931134pt;}
.x33{left:463.074386pt;}
.x28{left:500.483783pt;}
.x23{left:502.082474pt;}
.xc{left:507.599986pt;}
.xd{left:513.733319pt;}
.x24{left:526.016900pt;}
.xb{left:561.733319pt;}
.x7{left:599.199986pt;}
.x14{left:609.106652pt;}
.x31{left:610.634476pt;}
.x15{left:623.026652pt;}
.xe{left:674.666652pt;}
.xf{left:681.506652pt;}
.x4{left:733.039986pt;}
.x2{left:751.333319pt;}
.x12{left:793.373319pt;}
.x10{left:795.893319pt;}
.x36{left:993.116873pt;}
}




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