
    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_fcf10e951d3ed6fed075b7a2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.009766;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_4d37c32bc8ce1a44de00d351.woff')format("woff");}.ff2{font-family:ff2;line-height:1.009766;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_4b1eb2dd92ec55acd312abcb.woff')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_92a11e72c5886cbb6cf0fb75.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b6e151d1b26ec06f0f67ce37.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b56413a29343695b217448a8.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cd1de361d8ce0216ae409866.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105469;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_4d0e9c42fd4020ded25a978f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.009766;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_8e4c02b9f8aa2645c3550b10.woff')format("woff");}.ff9{font-family:ff9;line-height:0.821777;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3a{letter-spacing:-37.860000px;}
.ls40{letter-spacing:-1.728000px;}
.ls10{letter-spacing:-1.692000px;}
.ls1c{letter-spacing:-1.464000px;}
.ls15{letter-spacing:-1.230000px;}
.ls34{letter-spacing:-1.008000px;}
.ls42{letter-spacing:-0.642000px;}
.ls2b{letter-spacing:-0.576000px;}
.ls44{letter-spacing:-0.511800px;}
.ls32{letter-spacing:-0.432000px;}
.ls38{letter-spacing:-0.367800px;}
.ls1d{letter-spacing:-0.364200px;}
.ls25{letter-spacing:-0.300000px;}
.ls36{letter-spacing:-0.288000px;}
.ls37{letter-spacing:-0.256800px;}
.lsb{letter-spacing:-0.252600px;}
.lsc{letter-spacing:-0.248400px;}
.lse{letter-spacing:-0.232800px;}
.ls12{letter-spacing:-0.196200px;}
.lsd{letter-spacing:-0.188400px;}
.lsa{letter-spacing:-0.168000px;}
.ls33{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.081600px;}
.ls43{letter-spacing:-0.076800px;}
.ls2e{letter-spacing:-0.075000px;}
.ls13{letter-spacing:-0.033840px;}
.ls2d{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.026460px;}
.ls35{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.040320px;}
.ls20{letter-spacing:0.043920px;}
.ls1a{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.073200px;}
.ls26{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.115200px;}
.ls1b{letter-spacing:0.126000px;}
.ls11{letter-spacing:0.137400px;}
.ls4{letter-spacing:0.139392px;}
.ls27{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.162000px;}
.ls7{letter-spacing:0.177120px;}
.ls21{letter-spacing:0.181200px;}
.lsf{letter-spacing:0.183000px;}
.ls23{letter-spacing:0.232128px;}
.ls1f{letter-spacing:0.245400px;}
.ls19{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.642000px;}
.ls3f{letter-spacing:1.114272px;}
.ls31{letter-spacing:2.160000px;}
.ls3e{letter-spacing:6.912000px;}
.ls3d{letter-spacing:25.632000px;}
.ls41{letter-spacing:29.940000px;}
.ls3c{letter-spacing:29.952000px;}
.ls3b{letter-spacing:30.672000px;}
.ls1e{letter-spacing:33.006960px;}
.ls3{letter-spacing:38.337120px;}
.ls17{letter-spacing:52.848000px;}
.ls29{letter-spacing:95.982048px;}
.ls28{letter-spacing:96.048000px;}
.ls39{letter-spacing:98.686080px;}
.ls18{letter-spacing:104.406048px;}
.ls16{letter-spacing:104.472000px;}
.ls8{letter-spacing:106.864128px;}
.ls2{letter-spacing:106.930080px;}
.ls2c{letter-spacing:124.272000px;}
.ls2a{letter-spacing:154.474272px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,51,204),0 0.015em rgb(0,51,204),0.015em 0 rgb(0,51,204),0 -0.015em  rgb(0,51,204);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,51,204);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws36{word-spacing:-52.905600px;}
.wse{word-spacing:-46.173600px;}
.ws38{word-spacing:-43.953120px;}
.ws22{word-spacing:-41.184000px;}
.ws2c{word-spacing:-39.888000px;}
.ws2a{word-spacing:-38.407728px;}
.ws2b{word-spacing:-38.160000px;}
.ws13{word-spacing:-38.016000px;}
.ws25{word-spacing:-37.880928px;}
.ws24{word-spacing:-37.872000px;}
.ws27{word-spacing:-37.765728px;}
.ws26{word-spacing:-37.728000px;}
.ws28{word-spacing:-37.727994px;}
.ws29{word-spacing:-37.690728px;}
.ws3b{word-spacing:-37.688928px;}
.ws2f{word-spacing:-37.584000px;}
.ws2d{word-spacing:-37.296000px;}
.ws3c{word-spacing:-37.253928px;}
.ws23{word-spacing:-37.152000px;}
.ws3a{word-spacing:-37.123728px;}
.ws30{word-spacing:-36.720000px;}
.ws12{word-spacing:-36.535728px;}
.ws37{word-spacing:-36.218880px;}
.ws39{word-spacing:-36.000000px;}
.ws1d{word-spacing:-34.804248px;}
.ws1f{word-spacing:-34.702320px;}
.ws20{word-spacing:-34.521120px;}
.ws1c{word-spacing:-34.439520px;}
.ws1e{word-spacing:-34.221120px;}
.ws1b{word-spacing:-33.282000px;}
.ws17{word-spacing:-33.174000px;}
.ws16{word-spacing:-33.138000px;}
.ws14{word-spacing:-33.066000px;}
.ws19{word-spacing:-33.049728px;}
.ws15{word-spacing:-33.012000px;}
.ws1a{word-spacing:-32.685528px;}
.wsa{word-spacing:-31.685880px;}
.wsb{word-spacing:-31.618080px;}
.ws18{word-spacing:-31.585728px;}
.ws9{word-spacing:-31.580928px;}
.ws11{word-spacing:-31.576080px;}
.ws21{word-spacing:-31.567068px;}
.ws5{word-spacing:-31.540608px;}
.ws8{word-spacing:-31.502880px;}
.ws10{word-spacing:-31.469040px;}
.ws6{word-spacing:-31.352208px;}
.wsf{word-spacing:-31.344408px;}
.ws2{word-spacing:-31.334880px;}
.ws7{word-spacing:-31.270080px;}
.ws4{word-spacing:-31.254480px;}
.ws3{word-spacing:-31.250280px;}
.wsc{word-spacing:-29.810880px;}
.ws34{word-spacing:-28.333728px;}
.ws2e{word-spacing:-28.296000px;}
.ws31{word-spacing:-27.000000px;}
.wsd{word-spacing:-25.089120px;}
.ws0{word-spacing:-16.272000px;}
.ws32{word-spacing:-0.722688px;}
.ws1{word-spacing:0.000000px;}
.ws33{word-spacing:1.095744px;}
.ws35{word-spacing:22.972896px;}
._0{margin-left:-46.992960px;}
._32{margin-left:-36.525600px;}
._15{margin-left:-27.531504px;}
._44{margin-left:-20.444208px;}
._1{margin-left:-16.783200px;}
._3b{margin-left:-12.528000px;}
._33{margin-left:-10.188720px;}
._34{margin-left:-8.773920px;}
._12{margin-left:-7.325040px;}
._2a{margin-left:-6.012240px;}
._a{margin-left:-3.961680px;}
._2{margin-left:-2.397600px;}
._5{margin-left:-1.198800px;}
._3{width:1.198800px;}
._1e{width:2.203200px;}
._4{width:3.356640px;}
._6{width:4.361760px;}
._7{width:5.678400px;}
._23{width:7.176000px;}
._22{width:9.145200px;}
._1b{width:11.070000px;}
._1c{width:12.385200px;}
._b{width:13.713840px;}
._8{width:15.108000px;}
._18{width:20.095200px;}
._3f{width:21.356400px;}
._f{width:22.627872px;}
._e{width:23.885424px;}
._41{width:25.301760px;}
._1d{width:26.473440px;}
._37{width:27.648000px;}
._38{width:28.703760px;}
._40{width:29.774640px;}
._35{width:31.536000px;}
._36{width:32.580000px;}
._24{width:34.128000px;}
._2e{width:35.158800px;}
._9{width:38.314080px;}
._13{width:39.600480px;}
._28{width:43.075200px;}
._29{width:44.703600px;}
._2b{width:46.449336px;}
._14{width:47.888640px;}
._d{width:51.374160px;}
._19{width:52.506000px;}
._1a{width:53.646000px;}
._10{width:56.219760px;}
._11{width:57.350640px;}
._2c{width:61.632000px;}
._3a{width:70.787952px;}
._39{width:71.869248px;}
._31{width:73.681920px;}
._16{width:79.686000px;}
._17{width:81.026640px;}
._43{width:82.616880px;}
._21{width:87.862800px;}
._3c{width:90.708000px;}
._c{width:99.672720px;}
._42{width:101.664000px;}
._26{width:107.540400px;}
._27{width:108.570000px;}
._30{width:123.073200px;}
._2f{width:124.388400px;}
._25{width:154.449408px;}
._2d{width:169.344000px;}
._3d{width:170.709840px;}
._3e{width:218.347200px;}
._20{width:312.024000px;}
._1f{width:313.344000px;}
.fc6{color:rgb(31,78,121);}
.fc4{color:rgb(5,99,193);}
.fc7{color:rgb(255,255,255);}
.fc5{color:rgb(0,51,204);}
.fc3{color:rgb(137,137,137);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(68,114,196);}
.fc0{color:rgb(47,85,151);}
.fs16{font-size:36.000000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs11{font-size:108.144000px;}
.fs7{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fsb{font-size:126.000000px;}
.fsc{font-size:126.144000px;}
.fse{font-size:131.760000px;}
.fsf{font-size:131.904000px;}
.fs13{font-size:138.240000px;}
.fs14{font-size:138.384000px;}
.fs3{font-size:144.000000px;}
.fs4{font-size:144.144000px;}
.fs10{font-size:149.760000px;}
.fs2{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs15{font-size:174.240000px;}
.fsd{font-size:192.240000px;}
.fs12{font-size:192.384000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs17{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y89{bottom:16.920000px;}
.y19{bottom:24.768000px;}
.y8{bottom:30.924000px;}
.y87{bottom:67.140000px;}
.y8c{bottom:69.588000px;}
.yac{bottom:70.308000px;}
.y9{bottom:77.868000px;}
.y61{bottom:80.424000px;}
.y8a{bottom:103.212000px;}
.y82{bottom:103.215000px;}
.y7f{bottom:103.245000px;}
.y72{bottom:103.290000px;}
.y7a{bottom:103.320000px;}
.y85{bottom:103.350000px;}
.y77{bottom:103.395000px;}
.y74{bottom:103.425000px;}
.y17{bottom:104.436000px;}
.yab{bottom:109.224000px;}
.y84{bottom:113.040000px;}
.y40{bottom:117.288000px;}
.y8b{bottom:120.132000px;}
.y3c{bottom:129.312000px;}
.y16{bottom:133.236000px;}
.y21{bottom:151.455000px;}
.y81{bottom:159.120000px;}
.y5e{bottom:160.350000px;}
.yaa{bottom:163.050000px;}
.y3f{bottom:164.670000px;}
.y3b{bottom:164.955000px;}
.y7{bottom:167.790000px;}
.y88{bottom:170.430000px;}
.y2f{bottom:174.030000px;}
.y15{bottom:176.970000px;}
.y5d{bottom:194.910000px;}
.y3a{bottom:200.595000px;}
.ya9{bottom:201.930000px;}
.y7e{bottom:205.020000px;}
.y14{bottom:205.815000px;}
.y20{bottom:207.825000px;}
.y3e{bottom:212.010000px;}
.y65{bottom:212.115000px;}
.y86{bottom:216.390000px;}
.y6{bottom:217.290000px;}
.y2e{bottom:217.410000px;}
.y4a{bottom:220.470000px;}
.y5c{bottom:229.470000px;}
.ya8{bottom:240.810000px;}
.y64{bottom:244.515000px;}
.yb3{bottom:245.160000px;}
.y13{bottom:249.555000px;}
.y7c{bottom:250.920000px;}
.y39{bottom:251.385000px;}
.y5{bottom:251.850000px;}
.y3d{bottom:259.530000px;}
.y83{bottom:262.335000px;}
.y5b{bottom:264.030000px;}
.y1f{bottom:264.345000px;}
.y49{bottom:274.290000px;}
.y2d{bottom:275.910000px;}
.y63{bottom:276.915000px;}
.y27{bottom:281.265000px;}
.yb2{bottom:284.040000px;}
.y38{bottom:287.025000px;}
.y6f{bottom:291.390000px;}
.y12{bottom:293.475000px;}
.ya7{bottom:294.840000px;}
.y79{bottom:296.820000px;}
.y94{bottom:300.885000px;}
.y1e{bottom:305.745000px;}
.y80{bottom:308.265000px;}
.y5a{bottom:313.560000px;}
.y2c{bottom:319.500000px;}
.y11{bottom:322.275000px;}
.yb1{bottom:322.950000px;}
.y26{bottom:324.465000px;}
.y48{bottom:328.290000px;}
.y6e{bottom:330.300000px;}
.ya6{bottom:333.720000px;}
.y37{bottom:337.605000px;}
.y93{bottom:338.190000px;}
.y76{bottom:342.720000px;}
.y59{bottom:348.120000px;}
.y7d{bottom:354.210000px;}
.y1d{bottom:362.130000px;}
.y10{bottom:366.045000px;}
.y25{bottom:367.710000px;}
.y6d{bottom:369.180000px;}
.yb5{bottom:369.435000px;}
.ya5{bottom:372.600000px;}
.y36{bottom:373.245000px;}
.y92{bottom:375.450000px;}
.yb0{bottom:376.950000px;}
.y2b{bottom:377.820000px;}
.y47{bottom:382.140000px;}
.y99{bottom:382.650000px;}
.y58{bottom:382.680000px;}
.y9f{bottom:384.555000px;}
.y73{bottom:388.620000px;}
.yf{bottom:394.845000px;}
.y7b{bottom:400.140000px;}
.y4{bottom:402.015000px;}
.y35{bottom:408.930000px;}
.y24{bottom:410.910000px;}
.yaf{bottom:415.830000px;}
.y57{bottom:417.240000px;}
.y1c{bottom:418.470000px;}
.y46{bottom:421.020000px;}
.y2a{bottom:421.380000px;}
.y98{bottom:421.530000px;}
.y6c{bottom:423.180000px;}
.ya4{bottom:426.450000px;}
.y91{bottom:427.830000px;}
.y50{bottom:433.800000px;}
.y71{bottom:434.700000px;}
.ye{bottom:438.585000px;}
.y3{bottom:442.335000px;}
.y34{bottom:444.570000px;}
.y78{bottom:446.115000px;}
.y56{bottom:451.830000px;}
.y23{bottom:454.110000px;}
.y1b{bottom:459.870000px;}
.y45{bottom:459.900000px;}
.y97{bottom:460.410000px;}
.y6b{bottom:462.060000px;}
.y29{bottom:464.760000px;}
.ya3{bottom:465.330000px;}
.yd{bottom:467.385000px;}
.yae{bottom:469.695000px;}
.y67{bottom:471.960000px;}
.y4f{bottom:472.680000px;}
.y90{bottom:480.060000px;}
.y9e{bottom:480.495000px;}
.y55{bottom:486.390000px;}
.y75{bottom:492.045000px;}
.y33{bottom:495.150000px;}
.y22{bottom:497.340000px;}
.y2{bottom:497.445000px;}
.y44{bottom:498.780000px;}
.y1a{bottom:501.300000px;}
.ya2{bottom:504.210000px;}
.y66{bottom:504.390000px;}
.y28{bottom:508.350000px;}
.yad{bottom:508.575000px;}
.y9d{bottom:510.765000px;}
.yc{bottom:511.350000px;}
.y4e{bottom:511.560000px;}
.y96{bottom:514.440000px;}
.y6a{bottom:515.910000px;}
.y8f{bottom:517.320000px;}
.y54{bottom:520.950000px;}
.y32{bottom:530.790000px;}
.y43{bottom:537.690000px;}
.yb{bottom:540.150000px;}
.y9c{bottom:541.005000px;}
.ya1{bottom:543.090000px;}
.y4d{bottom:550.470000px;}
.y69{bottom:554.790000px;}
.y53{bottom:555.510000px;}
.y1{bottom:562.245000px;}
.y95{bottom:568.260000px;}
.y8e{bottom:569.520000px;}
.y9b{bottom:571.245000px;}
.y60{bottom:572.475000px;}
.y4c{bottom:589.350000px;}
.y18{bottom:589.500000px;}
.ya{bottom:599.295000px;}
.ya0{bottom:604.650000px;}
.y31{bottom:604.800000px;}
.yb4{bottom:607.065000px;}
.y5f{bottom:608.115000px;}
.y42{bottom:611.025000px;}
.y70{bottom:612.390000px;}
.y62{bottom:617.010000px;}
.y51{bottom:618.810000px;}
.y30{bottom:619.665000px;}
.y68{bottom:627.810000px;}
.y4b{bottom:628.230000px;}
.y9a{bottom:628.410000px;}
.y52{bottom:628.710000px;}
.y8d{bottom:632.805000px;}
.y41{bottom:651.525000px;}
.h21{height:27.000000px;}
.h6{height:71.613281px;}
.h7{height:81.000000px;}
.h17{height:81.108000px;}
.h8{height:90.180000px;}
.h9{height:90.288000px;}
.he{height:94.500000px;}
.hf{height:94.608000px;}
.h1a{height:96.714844px;}
.h1b{height:96.843797px;}
.h12{height:98.820000px;}
.h13{height:98.928000px;}
.h1e{height:103.680000px;}
.h1f{height:103.788000px;}
.ha{height:107.675859px;}
.h4{height:108.000000px;}
.h5{height:108.108000px;}
.h14{height:117.992109px;}
.h15{height:119.778750px;}
.h3{height:125.820000px;}
.hd{height:128.953125px;}
.hc{height:129.082078px;}
.h11{height:134.175234px;}
.hb{height:134.290406px;}
.h20{height:139.357969px;}
.h16{height:144.180000px;}
.h18{height:144.288000px;}
.h10{height:153.754453px;}
.h1d{height:153.869625px;}
.h1{height:191.761172px;}
.h2{height:191.876344px;}
.h1c{height:193.320000px;}
.h19{height:226.980000px;}
.h22{height:270.108000px;}
.h0{height:810.000000px;}
.w3{width:167.760000px;}
.w5{width:171.000000px;}
.w2{width:472.320000px;}
.w6{width:773.640000px;}
.w4{width:776.880000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x21{left:10.440000px;}
.x19{left:21.995979px;}
.x14{left:37.799979px;}
.x27{left:61.631979px;}
.x2f{left:72.467979px;}
.x8{left:74.987979px;}
.x15{left:78.299979px;}
.xf{left:79.703979px;}
.x13{left:101.699979px;}
.x35{left:111.491979px;}
.x30{left:112.967979px;}
.x2e{left:160.844979px;}
.x1f{left:166.349979px;}
.x24{left:175.754979px;}
.x39{left:185.684979px;}
.xb{left:190.829979px;}
.x37{left:192.449979px;}
.x5{left:199.364979px;}
.x20{left:206.849979px;}
.x10{left:209.084979px;}
.x1e{left:210.959979px;}
.x2d{left:226.439979px;}
.x3{left:230.864979px;}
.x38{left:232.949979px;}
.x12{left:243.539979px;}
.x1{left:246.344979px;}
.x11{left:249.629979px;}
.x1b{left:259.169979px;}
.x34{left:262.079979px;}
.x3b{left:303.554979px;}
.x1c{left:312.584979px;}
.x9{left:318.629979px;}
.x4{left:370.544979px;}
.xc{left:373.604979px;}
.xa{left:397.109979px;}
.x18{left:398.624979px;}
.x2{left:461.669979px;}
.x6{left:465.809979px;}
.x22{left:482.580000px;}
.x7{left:522.329979px;}
.x1d{left:613.514979px;}
.x36{left:617.549979px;}
.x3a{left:621.074979px;}
.x23{left:650.160000px;}
.x2b{left:653.400000px;}
.x17{left:687.314979px;}
.xd{left:705.209979px;}
.x16{left:711.359979px;}
.x32{left:730.904979px;}
.xe{left:745.709979px;}
.x33{left:771.404979px;}
.x31{left:796.604979px;}
.x1a{left:824.549979px;}
.x26{left:861.839979px;}
.x2a{left:1070.669979px;}
.x2c{left:1073.984979px;}
.x25{left:1156.889979px;}
.x28{left:1187.849979px;}
.x29{left:1224.389979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3a{letter-spacing:-33.653333pt;}
.ls40{letter-spacing:-1.536000pt;}
.ls10{letter-spacing:-1.504000pt;}
.ls1c{letter-spacing:-1.301333pt;}
.ls15{letter-spacing:-1.093333pt;}
.ls34{letter-spacing:-0.896000pt;}
.ls42{letter-spacing:-0.570667pt;}
.ls2b{letter-spacing:-0.512000pt;}
.ls44{letter-spacing:-0.454933pt;}
.ls32{letter-spacing:-0.384000pt;}
.ls38{letter-spacing:-0.326933pt;}
.ls1d{letter-spacing:-0.323733pt;}
.ls25{letter-spacing:-0.266667pt;}
.ls36{letter-spacing:-0.256000pt;}
.ls37{letter-spacing:-0.228267pt;}
.lsb{letter-spacing:-0.224533pt;}
.lsc{letter-spacing:-0.220800pt;}
.lse{letter-spacing:-0.206933pt;}
.ls12{letter-spacing:-0.174400pt;}
.lsd{letter-spacing:-0.167467pt;}
.lsa{letter-spacing:-0.149333pt;}
.ls33{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.072533pt;}
.ls43{letter-spacing:-0.068267pt;}
.ls2e{letter-spacing:-0.066667pt;}
.ls13{letter-spacing:-0.030080pt;}
.ls2d{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.023520pt;}
.ls35{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.035840pt;}
.ls20{letter-spacing:0.039040pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.065067pt;}
.ls26{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.102400pt;}
.ls1b{letter-spacing:0.112000pt;}
.ls11{letter-spacing:0.122133pt;}
.ls4{letter-spacing:0.123904pt;}
.ls27{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.144000pt;}
.ls7{letter-spacing:0.157440pt;}
.ls21{letter-spacing:0.161067pt;}
.lsf{letter-spacing:0.162667pt;}
.ls23{letter-spacing:0.206336pt;}
.ls1f{letter-spacing:0.218133pt;}
.ls19{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.570667pt;}
.ls3f{letter-spacing:0.990464pt;}
.ls31{letter-spacing:1.920000pt;}
.ls3e{letter-spacing:6.144000pt;}
.ls3d{letter-spacing:22.784000pt;}
.ls41{letter-spacing:26.613333pt;}
.ls3c{letter-spacing:26.624000pt;}
.ls3b{letter-spacing:27.264000pt;}
.ls1e{letter-spacing:29.339520pt;}
.ls3{letter-spacing:34.077440pt;}
.ls17{letter-spacing:46.976000pt;}
.ls29{letter-spacing:85.317376pt;}
.ls28{letter-spacing:85.376000pt;}
.ls39{letter-spacing:87.720960pt;}
.ls18{letter-spacing:92.805376pt;}
.ls16{letter-spacing:92.864000pt;}
.ls8{letter-spacing:94.990336pt;}
.ls2{letter-spacing:95.048960pt;}
.ls2c{letter-spacing:110.464000pt;}
.ls2a{letter-spacing:137.310464pt;}
.ws36{word-spacing:-47.027200pt;}
.wse{word-spacing:-41.043200pt;}
.ws38{word-spacing:-39.069440pt;}
.ws22{word-spacing:-36.608000pt;}
.ws2c{word-spacing:-35.456000pt;}
.ws2a{word-spacing:-34.140203pt;}
.ws2b{word-spacing:-33.920000pt;}
.ws13{word-spacing:-33.792000pt;}
.ws25{word-spacing:-33.671936pt;}
.ws24{word-spacing:-33.664000pt;}
.ws27{word-spacing:-33.569536pt;}
.ws26{word-spacing:-33.536000pt;}
.ws28{word-spacing:-33.535995pt;}
.ws29{word-spacing:-33.502869pt;}
.ws3b{word-spacing:-33.501269pt;}
.ws2f{word-spacing:-33.408000pt;}
.ws2d{word-spacing:-33.152000pt;}
.ws3c{word-spacing:-33.114603pt;}
.ws23{word-spacing:-33.024000pt;}
.ws3a{word-spacing:-32.998869pt;}
.ws30{word-spacing:-32.640000pt;}
.ws12{word-spacing:-32.476203pt;}
.ws37{word-spacing:-32.194560pt;}
.ws39{word-spacing:-32.000000pt;}
.ws1d{word-spacing:-30.937109pt;}
.ws1f{word-spacing:-30.846507pt;}
.ws20{word-spacing:-30.685440pt;}
.ws1c{word-spacing:-30.612907pt;}
.ws1e{word-spacing:-30.418773pt;}
.ws1b{word-spacing:-29.584000pt;}
.ws17{word-spacing:-29.488000pt;}
.ws16{word-spacing:-29.456000pt;}
.ws14{word-spacing:-29.392000pt;}
.ws19{word-spacing:-29.377536pt;}
.ws15{word-spacing:-29.344000pt;}
.ws1a{word-spacing:-29.053803pt;}
.wsa{word-spacing:-28.165227pt;}
.wsb{word-spacing:-28.104960pt;}
.ws18{word-spacing:-28.076203pt;}
.ws9{word-spacing:-28.071936pt;}
.ws11{word-spacing:-28.067627pt;}
.ws21{word-spacing:-28.059616pt;}
.ws5{word-spacing:-28.036096pt;}
.ws8{word-spacing:-28.002560pt;}
.ws10{word-spacing:-27.972480pt;}
.ws6{word-spacing:-27.868629pt;}
.wsf{word-spacing:-27.861696pt;}
.ws2{word-spacing:-27.853227pt;}
.ws7{word-spacing:-27.795627pt;}
.ws4{word-spacing:-27.781760pt;}
.ws3{word-spacing:-27.778027pt;}
.wsc{word-spacing:-26.498560pt;}
.ws34{word-spacing:-25.185536pt;}
.ws2e{word-spacing:-25.152000pt;}
.ws31{word-spacing:-24.000000pt;}
.wsd{word-spacing:-22.301440pt;}
.ws0{word-spacing:-14.464000pt;}
.ws32{word-spacing:-0.642389pt;}
.ws1{word-spacing:0.000000pt;}
.ws33{word-spacing:0.973995pt;}
.ws35{word-spacing:20.420352pt;}
._0{margin-left:-41.771520pt;}
._32{margin-left:-32.467200pt;}
._15{margin-left:-24.472448pt;}
._44{margin-left:-18.172629pt;}
._1{margin-left:-14.918400pt;}
._3b{margin-left:-11.136000pt;}
._33{margin-left:-9.056640pt;}
._34{margin-left:-7.799040pt;}
._12{margin-left:-6.511147pt;}
._2a{margin-left:-5.344213pt;}
._a{margin-left:-3.521493pt;}
._2{margin-left:-2.131200pt;}
._5{margin-left:-1.065600pt;}
._3{width:1.065600pt;}
._1e{width:1.958400pt;}
._4{width:2.983680pt;}
._6{width:3.877120pt;}
._7{width:5.047467pt;}
._23{width:6.378667pt;}
._22{width:8.129067pt;}
._1b{width:9.840000pt;}
._1c{width:11.009067pt;}
._b{width:12.190080pt;}
._8{width:13.429333pt;}
._18{width:17.862400pt;}
._3f{width:18.983467pt;}
._f{width:20.113664pt;}
._e{width:21.231488pt;}
._41{width:22.490453pt;}
._1d{width:23.531947pt;}
._37{width:24.576000pt;}
._38{width:25.514453pt;}
._40{width:26.466347pt;}
._35{width:28.032000pt;}
._36{width:28.960000pt;}
._24{width:30.336000pt;}
._2e{width:31.252267pt;}
._9{width:34.056960pt;}
._13{width:35.200427pt;}
._28{width:38.289067pt;}
._29{width:39.736533pt;}
._2b{width:41.288299pt;}
._14{width:42.567680pt;}
._d{width:45.665920pt;}
._19{width:46.672000pt;}
._1a{width:47.685333pt;}
._10{width:49.973120pt;}
._11{width:50.978347pt;}
._2c{width:54.784000pt;}
._3a{width:62.922624pt;}
._39{width:63.883776pt;}
._31{width:65.495040pt;}
._16{width:70.832000pt;}
._17{width:72.023680pt;}
._43{width:73.437227pt;}
._21{width:78.100267pt;}
._3c{width:80.629333pt;}
._c{width:88.597973pt;}
._42{width:90.368000pt;}
._26{width:95.591467pt;}
._27{width:96.506667pt;}
._30{width:109.398400pt;}
._2f{width:110.567467pt;}
._25{width:137.288363pt;}
._2d{width:150.528000pt;}
._3d{width:151.742080pt;}
._3e{width:194.086400pt;}
._20{width:277.354667pt;}
._1f{width:278.528000pt;}
.fs16{font-size:32.000000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs11{font-size:96.128000pt;}
.fs7{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fsb{font-size:112.000000pt;}
.fsc{font-size:112.128000pt;}
.fse{font-size:117.120000pt;}
.fsf{font-size:117.248000pt;}
.fs13{font-size:122.880000pt;}
.fs14{font-size:123.008000pt;}
.fs3{font-size:128.000000pt;}
.fs4{font-size:128.128000pt;}
.fs10{font-size:133.120000pt;}
.fs2{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs15{font-size:154.880000pt;}
.fsd{font-size:170.880000pt;}
.fs12{font-size:171.008000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs17{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:15.040000pt;}
.y19{bottom:22.016000pt;}
.y8{bottom:27.488000pt;}
.y87{bottom:59.680000pt;}
.y8c{bottom:61.856000pt;}
.yac{bottom:62.496000pt;}
.y9{bottom:69.216000pt;}
.y61{bottom:71.488000pt;}
.y8a{bottom:91.744000pt;}
.y82{bottom:91.746667pt;}
.y7f{bottom:91.773333pt;}
.y72{bottom:91.813333pt;}
.y7a{bottom:91.840000pt;}
.y85{bottom:91.866667pt;}
.y77{bottom:91.906667pt;}
.y74{bottom:91.933333pt;}
.y17{bottom:92.832000pt;}
.yab{bottom:97.088000pt;}
.y84{bottom:100.480000pt;}
.y40{bottom:104.256000pt;}
.y8b{bottom:106.784000pt;}
.y3c{bottom:114.944000pt;}
.y16{bottom:118.432000pt;}
.y21{bottom:134.626667pt;}
.y81{bottom:141.440000pt;}
.y5e{bottom:142.533333pt;}
.yaa{bottom:144.933333pt;}
.y3f{bottom:146.373333pt;}
.y3b{bottom:146.626667pt;}
.y7{bottom:149.146667pt;}
.y88{bottom:151.493333pt;}
.y2f{bottom:154.693333pt;}
.y15{bottom:157.306667pt;}
.y5d{bottom:173.253333pt;}
.y3a{bottom:178.306667pt;}
.ya9{bottom:179.493333pt;}
.y7e{bottom:182.240000pt;}
.y14{bottom:182.946667pt;}
.y20{bottom:184.733333pt;}
.y3e{bottom:188.453333pt;}
.y65{bottom:188.546667pt;}
.y86{bottom:192.346667pt;}
.y6{bottom:193.146667pt;}
.y2e{bottom:193.253333pt;}
.y4a{bottom:195.973333pt;}
.y5c{bottom:203.973333pt;}
.ya8{bottom:214.053333pt;}
.y64{bottom:217.346667pt;}
.yb3{bottom:217.920000pt;}
.y13{bottom:221.826667pt;}
.y7c{bottom:223.040000pt;}
.y39{bottom:223.453333pt;}
.y5{bottom:223.866667pt;}
.y3d{bottom:230.693333pt;}
.y83{bottom:233.186667pt;}
.y5b{bottom:234.693333pt;}
.y1f{bottom:234.973333pt;}
.y49{bottom:243.813333pt;}
.y2d{bottom:245.253333pt;}
.y63{bottom:246.146667pt;}
.y27{bottom:250.013333pt;}
.yb2{bottom:252.480000pt;}
.y38{bottom:255.133333pt;}
.y6f{bottom:259.013333pt;}
.y12{bottom:260.866667pt;}
.ya7{bottom:262.080000pt;}
.y79{bottom:263.840000pt;}
.y94{bottom:267.453333pt;}
.y1e{bottom:271.773333pt;}
.y80{bottom:274.013333pt;}
.y5a{bottom:278.720000pt;}
.y2c{bottom:284.000000pt;}
.y11{bottom:286.466667pt;}
.yb1{bottom:287.066667pt;}
.y26{bottom:288.413333pt;}
.y48{bottom:291.813333pt;}
.y6e{bottom:293.600000pt;}
.ya6{bottom:296.640000pt;}
.y37{bottom:300.093333pt;}
.y93{bottom:300.613333pt;}
.y76{bottom:304.640000pt;}
.y59{bottom:309.440000pt;}
.y7d{bottom:314.853333pt;}
.y1d{bottom:321.893333pt;}
.y10{bottom:325.373333pt;}
.y25{bottom:326.853333pt;}
.y6d{bottom:328.160000pt;}
.yb5{bottom:328.386667pt;}
.ya5{bottom:331.200000pt;}
.y36{bottom:331.773333pt;}
.y92{bottom:333.733333pt;}
.yb0{bottom:335.066667pt;}
.y2b{bottom:335.840000pt;}
.y47{bottom:339.680000pt;}
.y99{bottom:340.133333pt;}
.y58{bottom:340.160000pt;}
.y9f{bottom:341.826667pt;}
.y73{bottom:345.440000pt;}
.yf{bottom:350.973333pt;}
.y7b{bottom:355.680000pt;}
.y4{bottom:357.346667pt;}
.y35{bottom:363.493333pt;}
.y24{bottom:365.253333pt;}
.yaf{bottom:369.626667pt;}
.y57{bottom:370.880000pt;}
.y1c{bottom:371.973333pt;}
.y46{bottom:374.240000pt;}
.y2a{bottom:374.560000pt;}
.y98{bottom:374.693333pt;}
.y6c{bottom:376.160000pt;}
.ya4{bottom:379.066667pt;}
.y91{bottom:380.293333pt;}
.y50{bottom:385.600000pt;}
.y71{bottom:386.400000pt;}
.ye{bottom:389.853333pt;}
.y3{bottom:393.186667pt;}
.y34{bottom:395.173333pt;}
.y78{bottom:396.546667pt;}
.y56{bottom:401.626667pt;}
.y23{bottom:403.653333pt;}
.y1b{bottom:408.773333pt;}
.y45{bottom:408.800000pt;}
.y97{bottom:409.253333pt;}
.y6b{bottom:410.720000pt;}
.y29{bottom:413.120000pt;}
.ya3{bottom:413.626667pt;}
.yd{bottom:415.453333pt;}
.yae{bottom:417.506667pt;}
.y67{bottom:419.520000pt;}
.y4f{bottom:420.160000pt;}
.y90{bottom:426.720000pt;}
.y9e{bottom:427.106667pt;}
.y55{bottom:432.346667pt;}
.y75{bottom:437.373333pt;}
.y33{bottom:440.133333pt;}
.y22{bottom:442.080000pt;}
.y2{bottom:442.173333pt;}
.y44{bottom:443.360000pt;}
.y1a{bottom:445.600000pt;}
.ya2{bottom:448.186667pt;}
.y66{bottom:448.346667pt;}
.y28{bottom:451.866667pt;}
.yad{bottom:452.066667pt;}
.y9d{bottom:454.013333pt;}
.yc{bottom:454.533333pt;}
.y4e{bottom:454.720000pt;}
.y96{bottom:457.280000pt;}
.y6a{bottom:458.586667pt;}
.y8f{bottom:459.840000pt;}
.y54{bottom:463.066667pt;}
.y32{bottom:471.813333pt;}
.y43{bottom:477.946667pt;}
.yb{bottom:480.133333pt;}
.y9c{bottom:480.893333pt;}
.ya1{bottom:482.746667pt;}
.y4d{bottom:489.306667pt;}
.y69{bottom:493.146667pt;}
.y53{bottom:493.786667pt;}
.y1{bottom:499.773333pt;}
.y95{bottom:505.120000pt;}
.y8e{bottom:506.240000pt;}
.y9b{bottom:507.773333pt;}
.y60{bottom:508.866667pt;}
.y4c{bottom:523.866667pt;}
.y18{bottom:524.000000pt;}
.ya{bottom:532.706667pt;}
.ya0{bottom:537.466667pt;}
.y31{bottom:537.600000pt;}
.yb4{bottom:539.613333pt;}
.y5f{bottom:540.546667pt;}
.y42{bottom:543.133333pt;}
.y70{bottom:544.346667pt;}
.y62{bottom:548.453333pt;}
.y51{bottom:550.053333pt;}
.y30{bottom:550.813333pt;}
.y68{bottom:558.053333pt;}
.y4b{bottom:558.426667pt;}
.y9a{bottom:558.586667pt;}
.y52{bottom:558.853333pt;}
.y8d{bottom:562.493333pt;}
.y41{bottom:579.133333pt;}
.h21{height:24.000000pt;}
.h6{height:63.656250pt;}
.h7{height:72.000000pt;}
.h17{height:72.096000pt;}
.h8{height:80.160000pt;}
.h9{height:80.256000pt;}
.he{height:84.000000pt;}
.hf{height:84.096000pt;}
.h1a{height:85.968750pt;}
.h1b{height:86.083375pt;}
.h12{height:87.840000pt;}
.h13{height:87.936000pt;}
.h1e{height:92.160000pt;}
.h1f{height:92.256000pt;}
.ha{height:95.711875pt;}
.h4{height:96.000000pt;}
.h5{height:96.096000pt;}
.h14{height:104.881875pt;}
.h15{height:106.470000pt;}
.h3{height:111.840000pt;}
.hd{height:114.625000pt;}
.hc{height:114.739625pt;}
.h11{height:119.266875pt;}
.hb{height:119.369250pt;}
.h20{height:123.873750pt;}
.h16{height:128.160000pt;}
.h18{height:128.256000pt;}
.h10{height:136.670625pt;}
.h1d{height:136.773000pt;}
.h1{height:170.454375pt;}
.h2{height:170.556750pt;}
.h1c{height:171.840000pt;}
.h19{height:201.760000pt;}
.h22{height:240.096000pt;}
.h0{height:720.000000pt;}
.w3{width:149.120000pt;}
.w5{width:152.000000pt;}
.w2{width:419.840000pt;}
.w6{width:687.680000pt;}
.w4{width:690.560000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x21{left:9.280000pt;}
.x19{left:19.551981pt;}
.x14{left:33.599981pt;}
.x27{left:54.783981pt;}
.x2f{left:64.415981pt;}
.x8{left:66.655981pt;}
.x15{left:69.599981pt;}
.xf{left:70.847981pt;}
.x13{left:90.399981pt;}
.x35{left:99.103981pt;}
.x30{left:100.415981pt;}
.x2e{left:142.973314pt;}
.x1f{left:147.866648pt;}
.x24{left:156.226648pt;}
.x39{left:165.053314pt;}
.xb{left:169.626648pt;}
.x37{left:171.066648pt;}
.x5{left:177.213314pt;}
.x20{left:183.866648pt;}
.x10{left:185.853314pt;}
.x1e{left:187.519981pt;}
.x2d{left:201.279981pt;}
.x3{left:205.213314pt;}
.x38{left:207.066648pt;}
.x12{left:216.479981pt;}
.x1{left:218.973314pt;}
.x11{left:221.893314pt;}
.x1b{left:230.373314pt;}
.x34{left:232.959981pt;}
.x3b{left:269.826648pt;}
.x1c{left:277.853314pt;}
.x9{left:283.226648pt;}
.x4{left:329.373314pt;}
.xc{left:332.093314pt;}
.xa{left:352.986648pt;}
.x18{left:354.333314pt;}
.x2{left:410.373314pt;}
.x6{left:414.053314pt;}
.x22{left:428.960000pt;}
.x7{left:464.293314pt;}
.x1d{left:545.346648pt;}
.x36{left:548.933314pt;}
.x3a{left:552.066648pt;}
.x23{left:577.920000pt;}
.x2b{left:580.800000pt;}
.x17{left:610.946648pt;}
.xd{left:626.853314pt;}
.x16{left:632.319981pt;}
.x32{left:649.693314pt;}
.xe{left:662.853314pt;}
.x33{left:685.693314pt;}
.x31{left:708.093314pt;}
.x1a{left:732.933314pt;}
.x26{left:766.079981pt;}
.x2a{left:951.706648pt;}
.x2c{left:954.653314pt;}
.x25{left:1028.346648pt;}
.x28{left:1055.866648pt;}
.x29{left:1088.346648pt;}
}




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