
    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_cf19770038d7c8f0c5700f8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_25bedd5fb1f261466cf53ae4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_380401969b6d61aac3b02b17.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_56759b9478d7549c853b15d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.783691;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_56435cbfada00e9ca1435f17.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_3f07c09655d3f938951c62ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_54df0b215df841129ea20a2e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.249678,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249678,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249678,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249694,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249694,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249694,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.222415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222415,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.250307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v8{vertical-align:-44.351488px;}
.v1{vertical-align:-35.280000px;}
.v7{vertical-align:-29.520000px;}
.v9{vertical-align:-18.300144px;}
.va{vertical-align:-14.513907px;}
.vb{vertical-align:-5.048316px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:35.280000px;}
.v5{vertical-align:43.200000px;}
.v3{vertical-align:46.680000px;}
.v6{vertical-align:108.720000px;}
.v2{vertical-align:127.260000px;}
.ls27{letter-spacing:-3.609546px;}
.ls1a{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.432000px;}
.ls1c{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.223800px;}
.ls1b{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.018720px;}
.ls17{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.064944px;}
.ls1f{letter-spacing:0.079800px;}
.ls24{letter-spacing:0.139270px;}
.ls1{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.175581px;}
.ls20{letter-spacing:0.240000px;}
.ls22{letter-spacing:0.247800px;}
.ls3{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.684000px;}
.ls8{letter-spacing:0.720000px;}
.ls16{letter-spacing:2.176455px;}
.ls28{letter-spacing:3.218301px;}
.lsd{letter-spacing:6.095520px;}
.ls6{letter-spacing:6.480000px;}
.ls2{letter-spacing:9.360000px;}
.ls12{letter-spacing:19.440000px;}
.ls5{letter-spacing:22.176000px;}
.ls15{letter-spacing:26.604000px;}
.ls13{letter-spacing:31.680000px;}
.ls11{letter-spacing:34.560000px;}
.ls9{letter-spacing:48.873600px;}
.ls7{letter-spacing:48.960000px;}
.ls10{letter-spacing:52.560000px;}
.lsc{letter-spacing:71.112000px;}
.ls14{letter-spacing:75.600000px;}
.lsf{letter-spacing:101.549664px;}
.lse{letter-spacing:101.664000px;}
.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;}
}
.ws4{word-spacing:-90.000000px;}
.ws6{word-spacing:-66.060000px;}
.ws3{word-spacing:-59.940000px;}
.ws0{word-spacing:-54.000000px;}
.ws1f{word-spacing:-36.720000px;}
.ws23{word-spacing:-36.432000px;}
.ws7{word-spacing:-36.288000px;}
.ws20{word-spacing:-36.283800px;}
.ws17{word-spacing:-36.276000px;}
.ws8{word-spacing:-36.144000px;}
.ws16{word-spacing:-36.115800px;}
.ws15{word-spacing:-36.036000px;}
.ws1{word-spacing:-36.000000px;}
.ws21{word-spacing:-35.964000px;}
.wsc{word-spacing:-35.856000px;}
.ws24{word-spacing:-35.812200px;}
.ws2{word-spacing:-35.712000px;}
.ws9{word-spacing:-35.568000px;}
.ws13{word-spacing:-35.424000px;}
.wsa{word-spacing:-35.280000px;}
.ws2b{word-spacing:-34.060354px;}
.ws1a{word-spacing:-31.968000px;}
.ws1b{word-spacing:-31.680000px;}
.ws27{word-spacing:-30.920933px;}
.ws28{word-spacing:-30.842053px;}
.ws10{word-spacing:-30.420000px;}
.wsf{word-spacing:-29.700000px;}
.ws1d{word-spacing:-27.886025px;}
.ws14{word-spacing:-23.940000px;}
.ws12{word-spacing:-23.921280px;}
.ws29{word-spacing:-22.578591px;}
.ws22{word-spacing:-22.119111px;}
.ws11{word-spacing:-4.896000px;}
.ws1e{word-spacing:-1.323432px;}
.ws19{word-spacing:-0.288000px;}
.ws26{word-spacing:0.000000px;}
.wse{word-spacing:3.960000px;}
.wsb{word-spacing:7.956000px;}
.ws18{word-spacing:8.208000px;}
.wsd{word-spacing:9.504000px;}
.ws1c{word-spacing:363.786509px;}
.ws2a{word-spacing:539.165147px;}
.ws25{word-spacing:639.607200px;}
.ws5{word-spacing:5348.952000px;}
._5{margin-left:-26.784000px;}
._8{margin-left:-25.632000px;}
._c{margin-left:-22.956000px;}
._4{margin-left:-21.312000px;}
._9{margin-left:-19.932000px;}
._d{margin-left:-16.860000px;}
._6{margin-left:-14.688000px;}
._15{margin-left:-12.770880px;}
._2{margin-left:-11.232000px;}
._13{margin-left:-9.288000px;}
._a{margin-left:-7.992000px;}
._7{margin-left:-6.048000px;}
._0{margin-left:-4.320000px;}
._1{margin-left:-2.304000px;}
._b{margin-left:-1.020000px;}
._3{width:1.152000px;}
._16{width:2.618640px;}
._37{width:3.729360px;}
._3d{width:5.303670px;}
._11{width:6.396000px;}
._f{width:7.776000px;}
._14{width:9.144000px;}
._12{width:10.392000px;}
._34{width:11.520000px;}
._33{width:13.141440px;}
._2a{width:14.412000px;}
._29{width:15.552000px;}
._30{width:16.740000px;}
._27{width:20.016000px;}
._26{width:22.858560px;}
._25{width:24.097440px;}
._31{width:25.167384px;}
._39{width:26.388000px;}
._1a{width:27.720000px;}
._28{width:28.800000px;}
._32{width:30.420000px;}
._17{width:32.556000px;}
._1b{width:34.528032px;}
._35{width:38.484144px;}
._36{width:39.532080px;}
._1e{width:40.932000px;}
._2f{width:42.084000px;}
._10{width:43.236000px;}
._23{width:46.539504px;}
._22{width:47.668272px;}
._24{width:48.823728px;}
._18{width:50.400000px;}
._21{width:51.668784px;}
._1f{width:53.868000px;}
._38{width:57.456000px;}
._3b{width:58.752000px;}
._2b{width:61.564368px;}
._2c{width:62.860032px;}
._3a{width:63.924576px;}
._20{width:65.388000px;}
._3c{width:66.528000px;}
._1d{width:75.600000px;}
._1c{width:76.896000px;}
._2e{width:77.940000px;}
._2d{width:290.928859px;}
._19{width:364.140713px;}
._e{width:2631.348432px;}
.fc6{color:rgb(0,125,159);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(64,88,136);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(125,74,0);}
.fc0{color:rgb(49,46,85);}
.fs18{font-size:66.574661px;}
.fs16{font-size:85.505844px;}
.fs12{font-size:87.919365px;}
.fs3{font-size:95.760000px;}
.fs17{font-size:104.752547px;}
.fsb{font-size:105.120000px;}
.fsf{font-size:110.841779px;}
.fs9{font-size:120.240000px;}
.fs15{font-size:123.368211px;}
.fs14{font-size:123.683731px;}
.fs10{font-size:129.307379px;}
.fs11{font-size:129.474331px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:144.144000px;}
.fsa{font-size:156.240000px;}
.fsd{font-size:163.020512px;}
.fse{font-size:163.220559px;}
.fs13{font-size:167.760000px;}
.fsc{font-size:180.000000px;}
.fs1{font-size:216.000000px;}
.fs5{font-size:239.760000px;}
.fs8{font-size:264.240000px;}
.fs0{font-size:288.000000px;}
.fs6{font-size:360.000000px;}
.fs7{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:16.792184px;}
.ybf{bottom:23.159305px;}
.yb1{bottom:31.678338px;}
.yb6{bottom:31.993857px;}
.y45{bottom:82.155778px;}
.y74{bottom:95.808460px;}
.y58{bottom:120.787865px;}
.y46{bottom:120.787868px;}
.yb0{bottom:122.153618px;}
.y21{bottom:128.448000px;}
.y11{bottom:154.185000px;}
.y10{bottom:154.290000px;}
.yaf{bottom:160.173744px;}
.yae{bottom:171.769094px;}
.yb5{bottom:172.873413px;}
.y75{bottom:187.225088px;}
.y20{bottom:196.125000px;}
.yad{bottom:203.478826px;}
.yb8{bottom:206.634023px;}
.yb4{bottom:210.893539px;}
.ya8{bottom:212.628898px;}
.yc4{bottom:213.660000px;}
.y59{bottom:236.038720px;}
.ybe{bottom:237.081676px;}
.yb7{bottom:238.264875px;}
.y1f{bottom:239.325000px;}
.ya7{bottom:244.338630px;}
.y7a{bottom:244.894594px;}
.yc3{bottom:249.660000px;}
.y5d{bottom:252.662387px;}
.y47{bottom:264.892180px;}
.ybd{bottom:268.791408px;}
.y76{bottom:278.638269px;}
.y1e{bottom:304.125000px;}
.yf{bottom:311.940000px;}
.yaa{bottom:341.424048px;}
.y1d{bottom:347.325000px;}
.y4b{bottom:348.514624px;}
.y5a{bottom:351.285226px;}
.ya6{bottom:361.617310px;}
.y77{bottom:370.180723px;}
.yc1{bottom:372.976020px;}
.ya9{bottom:373.133780px;}
.y1b{bottom:375.015000px;}
.yac{bottom:391.276163px;}
.ya5{bottom:393.327042px;}
.yb3{bottom:403.991608px;}
.y48{bottom:408.989970px;}
.y1a{bottom:411.015000px;}
.y1c{bottom:413.025000px;}
.yab{bottom:422.922791px;}
.yb2{bottom:442.011735px;}
.y19{bottom:447.015000px;}
.y78{bottom:461.599075px;}
.y5b{bottom:466.694709px;}
.y18{bottom:483.015000px;}
.y73{bottom:486.818733px;}
.ye{bottom:515.190000px;}
.ybc{bottom:537.992834px;}
.yba{bottom:547.931705px;}
.y79{bottom:553.012256px;}
.y49{bottom:553.094279px;}
.y7c{bottom:554.692804px;}
.ybb{bottom:569.702566px;}
.yb9{bottom:579.578333px;}
.y5c{bottom:581.947733px;}
.y4f{bottom:596.615563px;}
.y7b{bottom:601.756760px;}
.yc0{bottom:612.297728px;}
.ya4{bottom:622.495713px;}
.y4e{bottom:646.823360px;}
.y29{bottom:685.260000px;}
.y4d{bottom:697.031157px;}
.y4a{bottom:697.194242px;}
.y83{bottom:700.635000px;}
.y28{bottom:709.380000px;}
.y82{bottom:743.835000px;}
.y81{bottom:787.065000px;}
.y80{bottom:830.265000px;}
.y27{bottom:862.200000px;}
.y7f{bottom:891.465000px;}
.y26{bottom:905.400000px;}
.y7e{bottom:934.665000px;}
.y25{bottom:966.600000px;}
.y7d{bottom:977.865000px;}
.y24{bottom:1027.830000px;}
.y23{bottom:1089.030000px;}
.y22{bottom:1150.230000px;}
.y9e{bottom:1283.295000px;}
.yc2{bottom:1325.415000px;}
.y9d{bottom:1326.495000px;}
.y9c{bottom:1369.695000px;}
.y9b{bottom:1412.895000px;}
.y69{bottom:1416.165000px;}
.y89{bottom:1451.520000px;}
.y9a{bottom:1456.095000px;}
.y68{bottom:1459.365000px;}
.y67{bottom:1502.565000px;}
.y72{bottom:1504.290000px;}
.y71{bottom:1547.490000px;}
.y66{bottom:1563.765000px;}
.y99{bottom:1586.445000px;}
.y70{bottom:1590.690000px;}
.y65{bottom:1607.010000px;}
.y98{bottom:1629.645000px;}
.y64{bottom:1650.210000px;}
.y6f{bottom:1651.890000px;}
.y97{bottom:1672.890000px;}
.y6e{bottom:1695.090000px;}
.y63{bottom:1711.410000px;}
.y96{bottom:1716.090000px;}
.y88{bottom:1753.275000px;}
.y62{bottom:1754.610000px;}
.y6d{bottom:1756.290000px;}
.y95{bottom:1759.290000px;}
.y6c{bottom:1799.490000px;}
.y61{bottom:1815.810000px;}
.y60{bottom:1859.010000px;}
.y6b{bottom:1860.690000px;}
.y94{bottom:1889.640000px;}
.y5f{bottom:1902.210000px;}
.y6a{bottom:1903.890000px;}
.y93{bottom:1932.840000px;}
.y44{bottom:1962.092821px;}
.y92{bottom:1976.040000px;}
.y91{bottom:2019.240000px;}
.y87{bottom:2056.395000px;}
.y90{bottom:2062.440000px;}
.y8f{bottom:2143.875000px;}
.y8e{bottom:2187.075000px;}
.y8d{bottom:2230.275000px;}
.y8c{bottom:2273.475000px;}
.y8b{bottom:2316.675000px;}
.y86{bottom:2358.540000px;}
.y8a{bottom:2359.875000px;}
.ya3{bottom:2486.055000px;}
.ya2{bottom:2529.255000px;}
.ya1{bottom:2572.455000px;}
.ya0{bottom:2615.655000px;}
.y9f{bottom:2658.855000px;}
.y85{bottom:2661.630000px;}
.y84{bottom:2703.570000px;}
.y5e{bottom:2782.050000px;}
.y57{bottom:2875.245000px;}
.y56{bottom:3004.020000px;}
.y30{bottom:3043.770000px;}
.y55{bottom:3047.220000px;}
.y43{bottom:3048.765000px;}
.y37{bottom:3060.075000px;}
.y2f{bottom:3086.970000px;}
.y42{bottom:3091.965000px;}
.y36{bottom:3103.275000px;}
.y3c{bottom:3107.910000px;}
.y54{bottom:3108.420000px;}
.y2e{bottom:3148.170000px;}
.y53{bottom:3151.650000px;}
.y41{bottom:3153.165000px;}
.y35{bottom:3164.475000px;}
.y3b{bottom:3169.110000px;}
.y2d{bottom:3191.370000px;}
.y40{bottom:3196.365000px;}
.y34{bottom:3207.675000px;}
.y52{bottom:3212.850000px;}
.y3a{bottom:3230.310000px;}
.y2c{bottom:3252.570000px;}
.y51{bottom:3256.050000px;}
.y3f{bottom:3257.565000px;}
.y33{bottom:3268.875000px;}
.y39{bottom:3291.510000px;}
.y2b{bottom:3295.770000px;}
.y3e{bottom:3300.765000px;}
.y32{bottom:3312.075000px;}
.y50{bottom:3350.700000px;}
.y38{bottom:3354.870000px;}
.y31{bottom:3357.435000px;}
.y2a{bottom:3359.130000px;}
.y3d{bottom:3364.125000px;}
.y17{bottom:3513.855000px;}
.y16{bottom:3627.105000px;}
.y15{bottom:3670.305000px;}
.y14{bottom:3713.505000px;}
.y13{bottom:3756.705000px;}
.y12{bottom:3799.905000px;}
.yd{bottom:3878.610000px;}
.y9{bottom:3977.070000px;}
.yc{bottom:3979.335000px;}
.y8{bottom:4020.270000px;}
.yb{bottom:4022.535000px;}
.y7{bottom:4063.470000px;}
.ya{bottom:4065.735000px;}
.y6{bottom:4190.685000px;}
.y5{bottom:4255.485000px;}
.y4{bottom:4320.285000px;}
.y3{bottom:4408.665000px;}
.y2{bottom:4495.065000px;}
.y1{bottom:4581.465000px;}
.h1d{height:102.808897px;}
.hc{height:118.008984px;}
.h1c{height:121.079152px;}
.h10{height:121.359375px;}
.h1b{height:121.388818px;}
.h17{height:126.908121px;}
.h18{height:127.071975px;}
.h7{height:141.328125px;}
.he{height:141.469453px;}
.h6{height:145.125000px;}
.h15{height:145.270125px;}
.hd{height:153.341016px;}
.h13{height:159.995717px;}
.h14{height:160.192053px;}
.h19{height:169.070625px;}
.h11{height:181.406250px;}
.h5{height:211.886719px;}
.h4{height:217.687500px;}
.hf{height:230.079375px;}
.hb{height:266.304375px;}
.h3{height:290.250000px;}
.h9{height:362.812500px;}
.h8{height:368.893125px;}
.ha{height:399.093750px;}
.h16{height:636.539790px;}
.h1a{height:643.660230px;}
.h12{height:802.499165px;}
.h2{height:5016.599634px;}
.h0{height:5016.600000px;}
.h1{height:5016.750000px;}
.w5{width:832.686421px;}
.w6{width:987.380988px;}
.w3{width:1049.717934px;}
.w4{width:1049.718014px;}
.w1{width:3570.000000px;}
.w2{width:3570.299947px;}
.w0{width:3570.300000px;}
.x0{left:0.000000px;}
.x4a{left:16.238776px;}
.x22{left:19.800123px;}
.x4c{left:27.045932px;}
.x4b{left:31.888098px;}
.x3d{left:33.314776px;}
.xe{left:37.979947px;}
.x15{left:47.555947px;}
.x1{left:61.559947px;}
.xd{left:63.071947px;}
.x4{left:66.059947px;}
.x12{left:69.407947px;}
.x33{left:70.945135px;}
.x26{left:77.519976px;}
.x2{left:79.199947px;}
.x5{left:81.719947px;}
.x2e{left:83.231947px;}
.x6{left:84.779947px;}
.x1b{left:97.703947px;}
.xb{left:100.583947px;}
.x32{left:101.627563px;}
.x1c{left:106.703947px;}
.x25{left:107.714256px;}
.xc{left:112.823947px;}
.xa{left:117.323947px;}
.x24{left:128.115739px;}
.x57{left:139.047355px;}
.x2c{left:148.512937px;}
.x4d{left:154.486151px;}
.x23{left:193.071081px;}
.x54{left:212.100918px;}
.x52{left:227.609886px;}
.x55{left:233.995934px;}
.x34{left:265.653590px;}
.x53{left:267.470043px;}
.x3e{left:283.736917px;}
.x27{left:309.107366px;}
.x4e{left:330.895412px;}
.x4f{left:337.913045px;}
.x2d{left:365.294947px;}
.x50{left:387.401393px;}
.x51{left:392.117243px;}
.x3f{left:444.440717px;}
.x40{left:468.665586px;}
.x47{left:471.556852px;}
.x48{left:496.595767px;}
.x43{left:513.381944px;}
.x44{left:554.982474px;}
.x56{left:609.663873px;}
.x1e{left:632.234947px;}
.x1d{left:643.394947px;}
.x41{left:702.914181px;}
.x42{left:721.665297px;}
.x28{left:808.342096px;}
.x49{left:820.866560px;}
.x45{left:853.512589px;}
.x3{left:856.829947px;}
.x46{left:857.863522px;}
.x2b{left:936.540043px;}
.x2f{left:975.419947px;}
.x30{left:1009.259947px;}
.x16{left:1013.399947px;}
.x17{left:1047.239947px;}
.x18{left:1133.819947px;}
.x1f{left:1174.889947px;}
.x19{left:1358.129947px;}
.x20{left:1708.304947px;}
.x1a{left:1717.409947px;}
.x21{left:1726.304947px;}
.xf{left:1899.719947px;}
.x13{left:1908.329947px;}
.x31{left:1920.060000px;}
.x14{left:1939.649947px;}
.x11{left:2046.779947px;}
.x38{left:2059.739947px;}
.x39{left:2172.929947px;}
.x37{left:2177.714947px;}
.x3a{left:2209.244947px;}
.x58{left:2229.269947px;}
.x29{left:2252.804947px;}
.x2a{left:2306.369947px;}
.x59{left:2334.749947px;}
.x35{left:2610.209947px;}
.x36{left:2644.049947px;}
.x8{left:2665.439947px;}
.x7{left:2673.899947px;}
.x3b{left:2684.159947px;}
.x3c{left:2724.659947px;}
.x9{left:2807.849947px;}
.x10{left:2903.429947px;}
@media print{
.v8{vertical-align:-39.423545pt;}
.v1{vertical-align:-31.360000pt;}
.v7{vertical-align:-26.240000pt;}
.v9{vertical-align:-16.266794pt;}
.va{vertical-align:-12.901251pt;}
.vb{vertical-align:-4.487392pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:31.360000pt;}
.v5{vertical-align:38.400000pt;}
.v3{vertical-align:41.493333pt;}
.v6{vertical-align:96.640000pt;}
.v2{vertical-align:113.120000pt;}
.ls27{letter-spacing:-3.208485pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.198933pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.016640pt;}
.ls17{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.057728pt;}
.ls1f{letter-spacing:0.070933pt;}
.ls24{letter-spacing:0.123796pt;}
.ls1{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.156072pt;}
.ls20{letter-spacing:0.213333pt;}
.ls22{letter-spacing:0.220267pt;}
.ls3{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.608000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls16{letter-spacing:1.934627pt;}
.ls28{letter-spacing:2.860712pt;}
.lsd{letter-spacing:5.418240pt;}
.ls6{letter-spacing:5.760000pt;}
.ls2{letter-spacing:8.320000pt;}
.ls12{letter-spacing:17.280000pt;}
.ls5{letter-spacing:19.712000pt;}
.ls15{letter-spacing:23.648000pt;}
.ls13{letter-spacing:28.160000pt;}
.ls11{letter-spacing:30.720000pt;}
.ls9{letter-spacing:43.443200pt;}
.ls7{letter-spacing:43.520000pt;}
.ls10{letter-spacing:46.720000pt;}
.lsc{letter-spacing:63.210667pt;}
.ls14{letter-spacing:67.200000pt;}
.lsf{letter-spacing:90.266368pt;}
.lse{letter-spacing:90.368000pt;}
.ws4{word-spacing:-80.000000pt;}
.ws6{word-spacing:-58.720000pt;}
.ws3{word-spacing:-53.280000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws1f{word-spacing:-32.640000pt;}
.ws23{word-spacing:-32.384000pt;}
.ws7{word-spacing:-32.256000pt;}
.ws20{word-spacing:-32.252267pt;}
.ws17{word-spacing:-32.245333pt;}
.ws8{word-spacing:-32.128000pt;}
.ws16{word-spacing:-32.102933pt;}
.ws15{word-spacing:-32.032000pt;}
.ws1{word-spacing:-32.000000pt;}
.ws21{word-spacing:-31.968000pt;}
.wsc{word-spacing:-31.872000pt;}
.ws24{word-spacing:-31.833067pt;}
.ws2{word-spacing:-31.744000pt;}
.ws9{word-spacing:-31.616000pt;}
.ws13{word-spacing:-31.488000pt;}
.wsa{word-spacing:-31.360000pt;}
.ws2b{word-spacing:-30.275870pt;}
.ws1a{word-spacing:-28.416000pt;}
.ws1b{word-spacing:-28.160000pt;}
.ws27{word-spacing:-27.485273pt;}
.ws28{word-spacing:-27.415158pt;}
.ws10{word-spacing:-27.040000pt;}
.wsf{word-spacing:-26.400000pt;}
.ws1d{word-spacing:-24.787578pt;}
.ws14{word-spacing:-21.280000pt;}
.ws12{word-spacing:-21.263360pt;}
.ws29{word-spacing:-20.069859pt;}
.ws22{word-spacing:-19.661432pt;}
.ws11{word-spacing:-4.352000pt;}
.ws1e{word-spacing:-1.176384pt;}
.ws19{word-spacing:-0.256000pt;}
.ws26{word-spacing:0.000000pt;}
.wse{word-spacing:3.520000pt;}
.wsb{word-spacing:7.072000pt;}
.ws18{word-spacing:7.296000pt;}
.wsd{word-spacing:8.448000pt;}
.ws1c{word-spacing:323.365786pt;}
.ws2a{word-spacing:479.257909pt;}
.ws25{word-spacing:568.539733pt;}
.ws5{word-spacing:4754.624000pt;}
._5{margin-left:-23.808000pt;}
._8{margin-left:-22.784000pt;}
._c{margin-left:-20.405333pt;}
._4{margin-left:-18.944000pt;}
._9{margin-left:-17.717333pt;}
._d{margin-left:-14.986667pt;}
._6{margin-left:-13.056000pt;}
._15{margin-left:-11.351893pt;}
._2{margin-left:-9.984000pt;}
._13{margin-left:-8.256000pt;}
._a{margin-left:-7.104000pt;}
._7{margin-left:-5.376000pt;}
._0{margin-left:-3.840000pt;}
._1{margin-left:-2.048000pt;}
._b{margin-left:-0.906667pt;}
._3{width:1.024000pt;}
._16{width:2.327680pt;}
._37{width:3.314987pt;}
._3d{width:4.714374pt;}
._11{width:5.685333pt;}
._f{width:6.912000pt;}
._14{width:8.128000pt;}
._12{width:9.237333pt;}
._34{width:10.240000pt;}
._33{width:11.681280pt;}
._2a{width:12.810667pt;}
._29{width:13.824000pt;}
._30{width:14.880000pt;}
._27{width:17.792000pt;}
._26{width:20.318720pt;}
._25{width:21.419947pt;}
._31{width:22.371008pt;}
._39{width:23.456000pt;}
._1a{width:24.640000pt;}
._28{width:25.600000pt;}
._32{width:27.040000pt;}
._17{width:28.938667pt;}
._1b{width:30.691584pt;}
._35{width:34.208128pt;}
._36{width:35.139627pt;}
._1e{width:36.384000pt;}
._2f{width:37.408000pt;}
._10{width:38.432000pt;}
._23{width:41.368448pt;}
._22{width:42.371797pt;}
._24{width:43.398869pt;}
._18{width:44.800000pt;}
._21{width:45.927808pt;}
._1f{width:47.882667pt;}
._38{width:51.072000pt;}
._3b{width:52.224000pt;}
._2b{width:54.723883pt;}
._2c{width:55.875584pt;}
._3a{width:56.821845pt;}
._20{width:58.122667pt;}
._3c{width:59.136000pt;}
._1d{width:67.200000pt;}
._1c{width:68.352000pt;}
._2e{width:69.280000pt;}
._2d{width:258.603430pt;}
._19{width:323.680634pt;}
._e{width:2338.976384pt;}
.fs18{font-size:59.177477pt;}
.fs16{font-size:76.005195pt;}
.fs12{font-size:78.150547pt;}
.fs3{font-size:85.120000pt;}
.fs17{font-size:93.113375pt;}
.fsb{font-size:93.440000pt;}
.fsf{font-size:98.526026pt;}
.fs9{font-size:106.880000pt;}
.fs15{font-size:109.660632pt;}
.fs14{font-size:109.941094pt;}
.fs10{font-size:114.939892pt;}
.fs11{font-size:115.088294pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:128.128000pt;}
.fsa{font-size:138.880000pt;}
.fsd{font-size:144.907122pt;}
.fse{font-size:145.084942pt;}
.fs13{font-size:149.120000pt;}
.fsc{font-size:160.000000pt;}
.fs1{font-size:192.000000pt;}
.fs5{font-size:213.120000pt;}
.fs8{font-size:234.880000pt;}
.fs0{font-size:256.000000pt;}
.fs6{font-size:320.000000pt;}
.fs7{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:14.926385pt;}
.ybf{bottom:20.586049pt;}
.yb1{bottom:28.158522pt;}
.yb6{bottom:28.438984pt;}
.y45{bottom:73.027358pt;}
.y74{bottom:85.163075pt;}
.y58{bottom:107.366991pt;}
.y46{bottom:107.366994pt;}
.yb0{bottom:108.580993pt;}
.y21{bottom:114.176000pt;}
.y11{bottom:137.053333pt;}
.y10{bottom:137.146667pt;}
.yaf{bottom:142.376661pt;}
.yae{bottom:152.683639pt;}
.yb5{bottom:153.665256pt;}
.y75{bottom:166.422301pt;}
.y20{bottom:174.333333pt;}
.yad{bottom:180.870067pt;}
.yb8{bottom:183.674687pt;}
.yb4{bottom:187.460924pt;}
.ya8{bottom:189.003465pt;}
.yc4{bottom:189.920000pt;}
.y59{bottom:209.812196pt;}
.ybe{bottom:210.739267pt;}
.yb7{bottom:211.791000pt;}
.y1f{bottom:212.733333pt;}
.ya7{bottom:217.189893pt;}
.y7a{bottom:217.684083pt;}
.yc3{bottom:221.920000pt;}
.y5d{bottom:224.588788pt;}
.y47{bottom:235.459716pt;}
.ybd{bottom:238.925696pt;}
.y76{bottom:247.678462pt;}
.y1e{bottom:270.333333pt;}
.yf{bottom:277.280000pt;}
.yaa{bottom:303.488042pt;}
.y1d{bottom:308.733333pt;}
.y4b{bottom:309.790777pt;}
.y5a{bottom:312.253534pt;}
.ya6{bottom:321.437609pt;}
.y77{bottom:329.049532pt;}
.yc1{bottom:331.534240pt;}
.ya9{bottom:331.674471pt;}
.y1b{bottom:333.346667pt;}
.yac{bottom:347.801034pt;}
.ya5{bottom:349.624037pt;}
.yb3{bottom:359.103652pt;}
.y48{bottom:363.546640pt;}
.y1a{bottom:365.346667pt;}
.y1c{bottom:367.133333pt;}
.yab{bottom:375.931370pt;}
.yb2{bottom:392.899320pt;}
.y19{bottom:397.346667pt;}
.y78{bottom:410.310289pt;}
.y5b{bottom:414.839741pt;}
.y18{bottom:429.346667pt;}
.y73{bottom:432.727763pt;}
.ye{bottom:457.946667pt;}
.ybc{bottom:478.215852pt;}
.yba{bottom:487.050404pt;}
.y79{bottom:491.566450pt;}
.y49{bottom:491.639359pt;}
.y7c{bottom:493.060270pt;}
.ybb{bottom:506.402280pt;}
.yb9{bottom:515.180740pt;}
.y5c{bottom:517.286874pt;}
.y4f{bottom:530.324945pt;}
.y7b{bottom:534.894898pt;}
.yc0{bottom:544.264647pt;}
.ya4{bottom:553.329523pt;}
.y4e{bottom:574.954098pt;}
.y29{bottom:609.120000pt;}
.y4d{bottom:619.583250pt;}
.y4a{bottom:619.728215pt;}
.y83{bottom:622.786667pt;}
.y28{bottom:630.560000pt;}
.y82{bottom:661.186667pt;}
.y81{bottom:699.613333pt;}
.y80{bottom:738.013333pt;}
.y27{bottom:766.400000pt;}
.y7f{bottom:792.413333pt;}
.y26{bottom:804.800000pt;}
.y7e{bottom:830.813333pt;}
.y25{bottom:859.200000pt;}
.y7d{bottom:869.213333pt;}
.y24{bottom:913.626667pt;}
.y23{bottom:968.026667pt;}
.y22{bottom:1022.426667pt;}
.y9e{bottom:1140.706667pt;}
.yc2{bottom:1178.146667pt;}
.y9d{bottom:1179.106667pt;}
.y9c{bottom:1217.506667pt;}
.y9b{bottom:1255.906667pt;}
.y69{bottom:1258.813333pt;}
.y89{bottom:1290.240000pt;}
.y9a{bottom:1294.306667pt;}
.y68{bottom:1297.213333pt;}
.y67{bottom:1335.613333pt;}
.y72{bottom:1337.146667pt;}
.y71{bottom:1375.546667pt;}
.y66{bottom:1390.013333pt;}
.y99{bottom:1410.173333pt;}
.y70{bottom:1413.946667pt;}
.y65{bottom:1428.453333pt;}
.y98{bottom:1448.573333pt;}
.y64{bottom:1466.853333pt;}
.y6f{bottom:1468.346667pt;}
.y97{bottom:1487.013333pt;}
.y6e{bottom:1506.746667pt;}
.y63{bottom:1521.253333pt;}
.y96{bottom:1525.413333pt;}
.y88{bottom:1558.466667pt;}
.y62{bottom:1559.653333pt;}
.y6d{bottom:1561.146667pt;}
.y95{bottom:1563.813333pt;}
.y6c{bottom:1599.546667pt;}
.y61{bottom:1614.053333pt;}
.y60{bottom:1652.453333pt;}
.y6b{bottom:1653.946667pt;}
.y94{bottom:1679.680000pt;}
.y5f{bottom:1690.853333pt;}
.y6a{bottom:1692.346667pt;}
.y93{bottom:1718.080000pt;}
.y44{bottom:1744.082507pt;}
.y92{bottom:1756.480000pt;}
.y91{bottom:1794.880000pt;}
.y87{bottom:1827.906667pt;}
.y90{bottom:1833.280000pt;}
.y8f{bottom:1905.666667pt;}
.y8e{bottom:1944.066667pt;}
.y8d{bottom:1982.466667pt;}
.y8c{bottom:2020.866667pt;}
.y8b{bottom:2059.266667pt;}
.y86{bottom:2096.480000pt;}
.y8a{bottom:2097.666667pt;}
.ya3{bottom:2209.826667pt;}
.ya2{bottom:2248.226667pt;}
.ya1{bottom:2286.626667pt;}
.ya0{bottom:2325.026667pt;}
.y9f{bottom:2363.426667pt;}
.y85{bottom:2365.893333pt;}
.y84{bottom:2403.173333pt;}
.y5e{bottom:2472.933333pt;}
.y57{bottom:2555.773333pt;}
.y56{bottom:2670.240000pt;}
.y30{bottom:2705.573333pt;}
.y55{bottom:2708.640000pt;}
.y43{bottom:2710.013333pt;}
.y37{bottom:2720.066667pt;}
.y2f{bottom:2743.973333pt;}
.y42{bottom:2748.413333pt;}
.y36{bottom:2758.466667pt;}
.y3c{bottom:2762.586667pt;}
.y54{bottom:2763.040000pt;}
.y2e{bottom:2798.373333pt;}
.y53{bottom:2801.466667pt;}
.y41{bottom:2802.813333pt;}
.y35{bottom:2812.866667pt;}
.y3b{bottom:2816.986667pt;}
.y2d{bottom:2836.773333pt;}
.y40{bottom:2841.213333pt;}
.y34{bottom:2851.266667pt;}
.y52{bottom:2855.866667pt;}
.y3a{bottom:2871.386667pt;}
.y2c{bottom:2891.173333pt;}
.y51{bottom:2894.266667pt;}
.y3f{bottom:2895.613333pt;}
.y33{bottom:2905.666667pt;}
.y39{bottom:2925.786667pt;}
.y2b{bottom:2929.573333pt;}
.y3e{bottom:2934.013333pt;}
.y32{bottom:2944.066667pt;}
.y50{bottom:2978.400000pt;}
.y38{bottom:2982.106667pt;}
.y31{bottom:2984.386667pt;}
.y2a{bottom:2985.893333pt;}
.y3d{bottom:2990.333333pt;}
.y17{bottom:3123.426667pt;}
.y16{bottom:3224.093333pt;}
.y15{bottom:3262.493333pt;}
.y14{bottom:3300.893333pt;}
.y13{bottom:3339.293333pt;}
.y12{bottom:3377.693333pt;}
.yd{bottom:3447.653333pt;}
.y9{bottom:3535.173333pt;}
.yc{bottom:3537.186667pt;}
.y8{bottom:3573.573333pt;}
.yb{bottom:3575.586667pt;}
.y7{bottom:3611.973333pt;}
.ya{bottom:3613.986667pt;}
.y6{bottom:3725.053333pt;}
.y5{bottom:3782.653333pt;}
.y4{bottom:3840.253333pt;}
.y3{bottom:3918.813333pt;}
.y2{bottom:3995.613333pt;}
.y1{bottom:4072.413333pt;}
.h1d{height:91.385686pt;}
.hc{height:104.896875pt;}
.h1c{height:107.625913pt;}
.h10{height:107.875000pt;}
.h1b{height:107.901171pt;}
.h17{height:112.807219pt;}
.h18{height:112.952867pt;}
.h7{height:125.625000pt;}
.he{height:125.750625pt;}
.h6{height:129.000000pt;}
.h15{height:129.129000pt;}
.hd{height:136.303125pt;}
.h13{height:142.218416pt;}
.h14{height:142.392936pt;}
.h19{height:150.285000pt;}
.h11{height:161.250000pt;}
.h5{height:188.343750pt;}
.h4{height:193.500000pt;}
.hf{height:204.515000pt;}
.hb{height:236.715000pt;}
.h3{height:258.000000pt;}
.h9{height:322.500000pt;}
.h8{height:327.905000pt;}
.ha{height:354.750000pt;}
.h16{height:565.813147pt;}
.h1a{height:572.142427pt;}
.h12{height:713.332591pt;}
.h2{height:4459.199674pt;}
.h0{height:4459.200000pt;}
.h1{height:4459.333333pt;}
.w5{width:740.165708pt;}
.w6{width:877.671989pt;}
.w3{width:933.082608pt;}
.w4{width:933.082679pt;}
.w1{width:3173.333333pt;}
.w2{width:3173.599953pt;}
.w0{width:3173.600000pt;}
.x0{left:0.000000pt;}
.x4a{left:14.434467pt;}
.x22{left:17.600110pt;}
.x4c{left:24.040828pt;}
.x4b{left:28.344976pt;}
.x3d{left:29.613134pt;}
.xe{left:33.759953pt;}
.x15{left:42.271953pt;}
.x1{left:54.719953pt;}
.xd{left:56.063953pt;}
.x4{left:58.719953pt;}
.x12{left:61.695953pt;}
.x33{left:63.062342pt;}
.x26{left:68.906645pt;}
.x2{left:70.399953pt;}
.x5{left:72.639953pt;}
.x2e{left:73.983953pt;}
.x6{left:75.359953pt;}
.x1b{left:86.847953pt;}
.xb{left:89.407953pt;}
.x32{left:90.335612pt;}
.x1c{left:94.847953pt;}
.x25{left:95.746006pt;}
.xc{left:100.287953pt;}
.xa{left:104.287953pt;}
.x24{left:113.880657pt;}
.x57{left:123.597649pt;}
.x2c{left:132.011500pt;}
.x4d{left:137.321023pt;}
.x23{left:171.618739pt;}
.x54{left:188.534149pt;}
.x52{left:202.319899pt;}
.x55{left:207.996385pt;}
.x34{left:236.136524pt;}
.x53{left:237.751149pt;}
.x3e{left:252.210593pt;}
.x27{left:274.762103pt;}
.x4e{left:294.129255pt;}
.x4f{left:300.367152pt;}
.x2d{left:324.706619pt;}
.x50{left:344.356794pt;}
.x51{left:348.548660pt;}
.x3f{left:395.058415pt;}
.x40{left:416.591632pt;}
.x47{left:419.161646pt;}
.x48{left:441.418459pt;}
.x43{left:456.339506pt;}
.x44{left:493.317754pt;}
.x56{left:541.923442pt;}
.x1e{left:561.986619pt;}
.x1d{left:571.906619pt;}
.x41{left:624.812605pt;}
.x42{left:641.480264pt;}
.x28{left:718.526308pt;}
.x49{left:729.659165pt;}
.x45{left:758.677857pt;}
.x3{left:761.626619pt;}
.x46{left:762.545352pt;}
.x2b{left:832.480038pt;}
.x2f{left:867.039953pt;}
.x30{left:897.119953pt;}
.x16{left:900.799953pt;}
.x17{left:930.879953pt;}
.x18{left:1007.839953pt;}
.x1f{left:1044.346619pt;}
.x19{left:1207.226619pt;}
.x20{left:1518.493286pt;}
.x1a{left:1526.586619pt;}
.x21{left:1534.493286pt;}
.xf{left:1688.639953pt;}
.x13{left:1696.293286pt;}
.x31{left:1706.720000pt;}
.x14{left:1724.133286pt;}
.x11{left:1819.359953pt;}
.x38{left:1830.879953pt;}
.x39{left:1931.493286pt;}
.x37{left:1935.746619pt;}
.x3a{left:1963.773286pt;}
.x58{left:1981.573286pt;}
.x29{left:2002.493286pt;}
.x2a{left:2050.106619pt;}
.x59{left:2075.333286pt;}
.x35{left:2320.186619pt;}
.x36{left:2350.266619pt;}
.x8{left:2369.279953pt;}
.x7{left:2376.799953pt;}
.x3b{left:2385.919953pt;}
.x3c{left:2421.919953pt;}
.x9{left:2495.866619pt;}
.x10{left:2580.826619pt;}
}




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