
    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_a1f408b88fecbcab029272c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_ab47b8f3418c37d2908181eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_5dca06f4dad591a7c02de050.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_e849931d006d7945107b565d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_c740ee828bcd573234e4ae8e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3efb6c940020e75a2f126a2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_da45c7c55f741c179a4079c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;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:ffa;src:url('chunks/assets/font_b5a2dc6e9680100c364b09a2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690000;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:ffb;src:url('chunks/assets/font_7935515aba1e81f5b9559fa1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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:ffc;src:url('chunks/assets/font_662a920e610a836a11de1c33.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.729000;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:ffd;src:url('chunks/assets/font_ffbb1430f120e0fffb1e8303.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.824000;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:ffe;src:url('chunks/assets/font_a1d8c14bf5c3dac63ba32ac0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938000;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:fff;src:url('chunks/assets/font_960315e64d89a2f723983b34.woff2')format("woff");}.fff{font-family:fff;line-height:0.638000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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(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);}
.v2{vertical-align:-20.400055px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls23{letter-spacing:-1.447907px;}
.ls26{letter-spacing:-0.601630px;}
.ls18{letter-spacing:-0.562957px;}
.lse{letter-spacing:-0.357000px;}
.lsf{letter-spacing:-0.204000px;}
.lsd{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000037px;}
.ls1{letter-spacing:0.000085px;}
.ls12{letter-spacing:0.042071px;}
.ls5{letter-spacing:0.051000px;}
.lsa{letter-spacing:0.102000px;}
.ls3{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.178791px;}
.ls6{letter-spacing:0.255000px;}
.ls4{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.357000px;}
.ls8{letter-spacing:0.408000px;}
.ls9{letter-spacing:0.510000px;}
.ls13{letter-spacing:0.694188px;}
.ls2{letter-spacing:1.020000px;}
.ls20{letter-spacing:1.504074px;}
.ls0{letter-spacing:3.990000px;}
.ls21{letter-spacing:7.274849px;}
.ls1f{letter-spacing:16.452256px;}
.ls28{letter-spacing:18.048888px;}
.ls14{letter-spacing:18.326563px;}
.ls15{letter-spacing:19.275287px;}
.ls1d{letter-spacing:19.660198px;}
.ls16{letter-spacing:19.668660px;}
.ls1c{letter-spacing:19.681850px;}
.ls19{letter-spacing:19.703502px;}
.ls1b{letter-spacing:19.725154px;}
.ls1a{letter-spacing:19.746806px;}
.ls1e{letter-spacing:19.768459px;}
.ls27{letter-spacing:20.293429px;}
.ls29{letter-spacing:20.987617px;}
.ls10{letter-spacing:21.154199px;}
.ls22{letter-spacing:58.905085px;}
.ls24{letter-spacing:76.960458px;}
.ls17{letter-spacing:99.976197px;}
.ls25{letter-spacing:107.744641px;}
.ls11{letter-spacing:292.266383px;}
.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;}
}
.ws35{word-spacing:-107.744641px;}
.ws32{word-spacing:-99.976197px;}
.ws2c{word-spacing:-89.582881px;}
.ws28{word-spacing:-68.722599px;}
.ws31{word-spacing:-27.420426px;}
.ws1b{word-spacing:-27.173511px;}
.ws2f{word-spacing:-26.726238px;}
.ws21{word-spacing:-25.787770px;}
.ws1d{word-spacing:-25.766118px;}
.ws1e{word-spacing:-25.744466px;}
.ws1c{word-spacing:-25.722814px;}
.ws25{word-spacing:-25.708096px;}
.ws1f{word-spacing:-25.701161px;}
.ws20{word-spacing:-25.679509px;}
.ws30{word-spacing:-24.481697px;}
.ws26{word-spacing:-22.885064px;}
.ws36{word-spacing:-19.668660px;}
.ws2{word-spacing:-15.789000px;}
.ws16{word-spacing:-13.005000px;}
.ws3{word-spacing:-12.420000px;}
.wsa{word-spacing:-10.908000px;}
.ws1{word-spacing:-9.996000px;}
.ws19{word-spacing:-9.817514px;}
.ws5{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws9{word-spacing:-2.400000px;}
.ws8{word-spacing:-2.160000px;}
.ws6{word-spacing:-1.890000px;}
.ws34{word-spacing:-1.504074px;}
.wsc{word-spacing:-1.500000px;}
.ws10{word-spacing:-1.275000px;}
.ws13{word-spacing:-1.071000px;}
.wsf{word-spacing:-0.969000px;}
.ws14{word-spacing:-0.765000px;}
.wse{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.714000px;}
.ws33{word-spacing:-0.694188px;}
.ws17{word-spacing:-0.612000px;}
.ws0{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.wsd{word-spacing:0.060000px;}
.ws2e{word-spacing:0.948724px;}
.ws11{word-spacing:1.173000px;}
.ws12{word-spacing:1.275000px;}
.ws2d{word-spacing:2.175122px;}
.wsb{word-spacing:3.000000px;}
.ws1a{word-spacing:4.785136px;}
.ws18{word-spacing:72.267000px;}
.ws27{word-spacing:112.689525px;}
.ws29{word-spacing:181.588698px;}
.ws2b{word-spacing:265.119204px;}
.ws2a{word-spacing:265.160769px;}
.ws22{word-spacing:266.090212px;}
.ws23{word-spacing:266.474733px;}
.ws24{word-spacing:268.305239px;}
._1f{margin-left:-78.540114px;}
._1e{margin-left:-17.763344px;}
._5{margin-left:-16.575000px;}
._3{margin-left:-11.424300px;}
._9{margin-left:-4.485000px;}
._2{margin-left:-2.808000px;}
._0{margin-left:-1.632000px;}
._1{width:1.284300px;}
._d{width:2.385259px;}
._1a{width:3.459318px;}
._c{width:8.812445px;}
._4{width:14.433000px;}
._b{width:15.606000px;}
._21{width:16.667996px;}
._6{width:18.360000px;}
._8{width:36.567074px;}
._11{width:49.812530px;}
._7{width:54.621000px;}
._17{width:61.340097px;}
._12{width:74.298083px;}
._14{width:79.557026px;}
._1d{width:89.443784px;}
._f{width:91.337000px;}
._13{width:96.511787px;}
._18{width:101.055492px;}
._16{width:115.149422px;}
._10{width:136.942398px;}
._19{width:146.660889px;}
._15{width:148.175471px;}
._e{width:279.272878px;}
._1c{width:280.385610px;}
._20{width:282.179954px;}
._1b{width:292.266383px;}
._a{width:2515.422079px;}
.fc6{color:rgb(212,211,219);}
.fc5{color:rgb(234,153,145);}
.fc4{color:rgb(211,211,220);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(234,153,144);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:21.652200px;}
.fsd{font-size:23.139600px;}
.fs9{font-size:35.314799px;}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fsb{font-size:42.071400px;}
.fse{font-size:45.404400px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsc{font-size:67.108800px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:1.877997px;}
.y7f{bottom:2.209351px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.yad{bottom:97.407005px;}
.y30{bottom:118.032303px;}
.y3d{bottom:125.515503px;}
.y2f{bottom:140.579556px;}
.y3c{bottom:142.968753px;}
.y2e{bottom:158.032794px;}
.y3b{bottom:163.062756px;}
.y57{bottom:171.495003px;}
.y2d{bottom:178.126797px;}
.y74{bottom:179.544089px;}
.y76{bottom:179.548496px;}
.y7d{bottom:179.873369px;}
.y3a{bottom:185.609997px;}
.y7c{bottom:186.068996px;}
.y7b{bottom:188.854500px;}
.y2c{bottom:195.580059px;}
.y39{bottom:203.069259px;}
.ya6{bottom:203.305504px;}
.y59{bottom:209.499070px;}
.y2b{bottom:215.674049px;}
.y38{bottom:218.063259px;}
.y5d{bottom:221.753734px;}
.ya7{bottom:228.967506px;}
.y2a{bottom:233.127300px;}
.yaf{bottom:233.189051px;}
.y37{bottom:238.157249px;}
.yae{bottom:238.262993px;}
.y29{bottom:253.221291px;}
.y36{bottom:255.610500px;}
.ya8{bottom:257.008507px;}
.y28{bottom:270.680541px;}
.y35{bottom:275.704491px;}
.ya9{bottom:285.357010px;}
.y27{bottom:285.674541px;}
.y34{bottom:293.157741px;}
.y26{bottom:305.768555px;}
.y6c{bottom:312.266968px;}
.y33{bottom:313.251755px;}
.yaa{bottom:313.708511px;}
.y89{bottom:327.187477px;}
.y6b{bottom:328.580154px;}
.y32{bottom:330.705005px;}
.y25{bottom:330.775633px;}
.y6a{bottom:341.212091px;}
.yab{bottom:341.750999px;}
.y24{bottom:345.769633px;}
.y31{bottom:350.798996px;}
.ya3{bottom:351.503007px;}
.ya5{bottom:353.666038px;}
.y69{bottom:353.833511px;}
.ya2{bottom:353.992700px;}
.ya1{bottom:366.140991px;}
.yac{bottom:370.119003px;}
.ya4{bottom:370.811373px;}
.y23{bottom:376.586383px;}
.y22{bottom:391.580383px;}
.yb1{bottom:412.653663px;}
.y7e{bottom:412.704030px;}
.yb0{bottom:418.843506px;}
.y71{bottom:418.865374px;}
.y70{bottom:425.049432px;}
.y81{bottom:430.075960px;}
.y1e{bottom:443.477535px;}
.y80{bottom:446.599503px;}
.y88{bottom:447.587975px;}
.y1d{bottom:458.471535px;}
.y8a{bottom:466.663513px;}
.y1c{bottom:473.465535px;}
.y82{bottom:474.586487px;}
.y90{bottom:485.196963px;}
.y1b{bottom:488.459535px;}
.y83{bottom:500.746490px;}
.y1a{bottom:503.453535px;}
.y19{bottom:518.447535px;}
.y84{bottom:527.220016px;}
.y18{bottom:533.441535px;}
.y17{bottom:548.435535px;}
.y8e{bottom:551.847580px;}
.y85{bottom:553.705490px;}
.y5b{bottom:562.346992px;}
.y16{bottom:563.429535px;}
.y8d{bottom:568.181801px;}
.y86{bottom:579.871490px;}
.y8c{bottom:580.813739px;}
.y91{bottom:587.274390px;}
.y8b{bottom:593.424641px;}
.y8f{bottom:600.358521px;}
.y87{bottom:606.339020px;}
.y15{bottom:615.888153px;}
.y14{bottom:634.638153px;}
.y4e{bottom:648.465369px;}
.y6f{bottom:648.647387px;}
.y13{bottom:653.388153px;}
.y6e{bottom:654.831445px;}
.y4d{bottom:655.025986px;}
.y6d{bottom:661.015503px;}
.y50{bottom:665.247458px;}
.y12{bottom:672.138153px;}
.y4f{bottom:681.754486px;}
.y58{bottom:682.750328px;}
.y11{bottom:690.888153px;}
.y5c{bottom:701.830490px;}
.y10{bottom:709.638153px;}
.y51{bottom:709.740005px;}
.y4a{bottom:717.765638px;}
.y4c{bottom:718.092300px;}
.y21{bottom:732.201282px;}
.y52{bottom:735.910492px;}
.yf{bottom:747.139653px;}
.y20{bottom:747.195282px;}
.ye{bottom:762.138153px;}
.y1f{bottom:762.189282px;}
.y53{bottom:762.391479px;}
.y62{bottom:787.014528px;}
.y54{bottom:788.867981px;}
.y61{bottom:803.359267px;}
.ya0{bottom:803.621727px;}
.yd{bottom:814.644153px;}
.y55{bottom:815.027985px;}
.y60{bottom:815.970169px;}
.y49{bottom:828.027270px;}
.y5f{bottom:828.591589px;}
.yc{bottom:829.638153px;}
.y48{bottom:831.761810px;}
.y56{bottom:841.510529px;}
.y4b{bottom:842.056074px;}
.y66{bottom:869.793022px;}
.yb{bottom:872.238190px;}
.y7a{bottom:883.799578px;}
.y73{bottom:883.809377px;}
.y79{bottom:889.972066px;}
.y72{bottom:889.976081px;}
.ya{bottom:890.988190px;}
.y78{bottom:896.167694px;}
.y77{bottom:900.390015px;}
.y9{bottom:909.738190px;}
.y99{bottom:912.929993px;}
.y5a{bottom:913.772372px;}
.y5e{bottom:931.456159px;}
.y9a{bottom:941.080536px;}
.y98{bottom:946.299439px;}
.y95{bottom:951.411257px;}
.y8{bottom:954.424622px;}
.y9b{bottom:967.251892px;}
.y47{bottom:970.150844px;}
.y7{bottom:981.424622px;}
.y46{bottom:985.144844px;}
.y9c{bottom:993.742218px;}
.y45{bottom:1000.138844px;}
.y6{bottom:1008.424622px;}
.y68{bottom:1012.352017px;}
.y44{bottom:1015.132844px;}
.y9d{bottom:1020.222107px;}
.y67{bottom:1028.675720px;}
.y43{bottom:1030.126844px;}
.y65{bottom:1041.283551px;}
.y42{bottom:1045.120844px;}
.y9e{bottom:1046.395935px;}
.y64{bottom:1053.904971px;}
.y41{bottom:1060.114844px;}
.y97{bottom:1060.198495px;}
.y94{bottom:1060.825331px;}
.y93{bottom:1062.697016px;}
.y63{bottom:1066.536909px;}
.y92{bottom:1071.093109px;}
.y9f{bottom:1072.886261px;}
.y96{bottom:1074.509818px;}
.y40{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y3f{bottom:1090.102844px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3e{bottom:1127.482361px;}
.hf{height:15.762802px;}
.h14{height:16.845629px;}
.hd{height:24.561599px;}
.he{height:25.709174px;}
.h11{height:30.627979px;}
.h10{height:30.651966px;}
.h16{height:33.054403px;}
.h2{height:33.840000px;}
.hb{height:35.088000px;}
.hc{height:36.855469px;}
.h9{height:41.280000px;}
.h15{height:41.943000px;}
.h4{height:44.676000px;}
.ha{height:45.186000px;}
.h13{height:48.049901px;}
.h8{height:53.406000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h7{height:64.866000px;}
.h6{height:85.056000px;}
.h12{height:928.171509px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:525.178482px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:9.025200px;}
.x5d{left:44.314201px;}
.x5e{left:52.819061px;}
.x5f{left:60.688202px;}
.x60{left:69.202652px;}
.x3{left:76.535402px;}
.xa{left:78.746400px;}
.x4{left:85.181849px;}
.x6{left:93.545404px;}
.x8{left:97.796100px;}
.x61{left:105.543137px;}
.x62{left:113.728638px;}
.x63{left:120.980988px;}
.x64{left:129.803879px;}
.x65{left:137.517746px;}
.x66{left:145.877701px;}
.x67{left:153.755539px;}
.x5{left:161.679902px;}
.x68{left:170.458191px;}
.x69{left:178.181717px;}
.x6a{left:182.650040px;}
.x6b{left:190.517715px;}
.x6c{left:199.196686px;}
.x6d{left:207.064224px;}
.x6e{left:214.624191px;}
.x6f{left:223.148712px;}
.x70{left:231.181229px;}
.x71{left:239.522690px;}
.x72{left:247.411194px;}
.x73{left:255.206726px;}
.x74{left:266.317200px;}
.x75{left:274.124725px;}
.x76{left:282.155685px;}
.x77{left:290.189713px;}
.x13{left:291.199493px;}
.x1d{left:294.251733px;}
.x78{left:298.232712px;}
.x1e{left:300.493640px;}
.x1c{left:305.676910px;}
.x79{left:306.736221px;}
.x12{left:311.695358px;}
.x7a{left:314.071198px;}
.x7b{left:323.047211px;}
.x7c{left:331.081192px;}
.xe{left:334.081173px;}
.x10{left:335.206055px;}
.x82{left:336.962997px;}
.x15{left:339.595505px;}
.x84{left:342.012992px;}
.x1f{left:344.007658px;}
.xb{left:347.439011px;}
.xc{left:349.593213px;}
.x20{left:351.875122px;}
.x7d{left:355.669189px;}
.x21{left:360.390495px;}
.x7e{left:363.466187px;}
.x22{left:368.587698px;}
.x7f{left:371.969696px;}
.x23{left:376.148562px;}
.x80{left:380.237686px;}
.x24{left:384.652365px;}
.x81{left:388.033218px;}
.x25{left:393.167738px;}
.x26{left:396.731236px;}
.x27{left:401.353371px;}
.x28{left:404.916870px;}
.x29{left:408.601851px;}
.x2a{left:412.165350px;}
.x2b{left:417.435393px;}
.x2c{left:420.987322px;}
.x2d{left:425.146665px;}
.x2e{left:428.704379px;}
.x2f{left:433.500061px;}
.x30{left:437.063559px;}
.x31{left:441.379095px;}
.x32{left:444.942593px;}
.x1b{left:447.989685px;}
.x33{left:449.882898px;}
.x34{left:453.446396px;}
.x35{left:458.080101px;}
.x7{left:459.213902px;}
.x36{left:461.643599px;}
.x37{left:465.791373px;}
.x38{left:469.366441px;}
.x17{left:471.342090px;}
.x1a{left:473.277365px;}
.x39{left:477.395882px;}
.x9{left:480.466799px;}
.x3a{left:481.699848px;}
.x3b{left:485.263346px;}
.x11{left:491.318364px;}
.x3c{left:493.929126px;}
.x3d{left:498.244662px;}
.x3e{left:501.808160px;}
.x3f{left:505.805526px;}
.x40{left:509.369024px;}
.x41{left:514.326684px;}
.x42{left:517.890182px;}
.x43{left:522.356125px;}
.x44{left:525.908053px;}
.x45{left:530.697951px;}
.x46{left:534.261449px;}
.x47{left:538.588554px;}
.x48{left:542.140483px;}
.x49{left:546.386599px;}
.x4a{left:549.950098px;}
.x16{left:553.539087px;}
.x19{left:555.358670px;}
.x4b{left:557.493607px;}
.x4c{left:565.303222px;}
.x4d{left:573.332664px;}
.x4e{left:581.367890px;}
.x4f{left:589.408901px;}
.x50{left:597.912704px;}
.x51{left:605.247957px;}
.x52{left:614.226122px;}
.x53{left:622.261348px;}
.x54{left:630.059393px;}
.x55{left:638.100404px;}
.x56{left:646.847173px;}
.x57{left:654.645218px;}
.xd{left:657.988510px;}
.x18{left:659.832476px;}
.x85{left:661.488626px;}
.x58{left:663.149021px;}
.x59{left:671.415643px;}
.xf{left:677.597055px;}
.x5a{left:679.213688px;}
.x86{left:680.822807px;}
.x5b{left:687.260484px;}
.x83{left:688.468845px;}
.x5c{left:695.527106px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls23{letter-spacing:-1.287028pt;}
.ls26{letter-spacing:-0.534782pt;}
.ls18{letter-spacing:-0.500406pt;}
.lse{letter-spacing:-0.317333pt;}
.lsf{letter-spacing:-0.181333pt;}
.lsd{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000033pt;}
.ls1{letter-spacing:0.000076pt;}
.ls12{letter-spacing:0.037397pt;}
.ls5{letter-spacing:0.045333pt;}
.lsa{letter-spacing:0.090667pt;}
.ls3{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.158926pt;}
.ls6{letter-spacing:0.226667pt;}
.ls4{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.317333pt;}
.ls8{letter-spacing:0.362667pt;}
.ls9{letter-spacing:0.453333pt;}
.ls13{letter-spacing:0.617056pt;}
.ls2{letter-spacing:0.906667pt;}
.ls20{letter-spacing:1.336955pt;}
.ls0{letter-spacing:3.546667pt;}
.ls21{letter-spacing:6.466532pt;}
.ls1f{letter-spacing:14.624227pt;}
.ls28{letter-spacing:16.043456pt;}
.ls14{letter-spacing:16.290278pt;}
.ls15{letter-spacing:17.133588pt;}
.ls1d{letter-spacing:17.475731pt;}
.ls16{letter-spacing:17.483253pt;}
.ls1c{letter-spacing:17.494978pt;}
.ls19{letter-spacing:17.514224pt;}
.ls1b{letter-spacing:17.533470pt;}
.ls1a{letter-spacing:17.552717pt;}
.ls1e{letter-spacing:17.571963pt;}
.ls27{letter-spacing:18.038604pt;}
.ls29{letter-spacing:18.655660pt;}
.ls10{letter-spacing:18.803733pt;}
.ls22{letter-spacing:52.360076pt;}
.ls24{letter-spacing:68.409296pt;}
.ls17{letter-spacing:88.867731pt;}
.ls25{letter-spacing:95.773014pt;}
.ls11{letter-spacing:259.792340pt;}
.ws35{word-spacing:-95.773014pt;}
.ws32{word-spacing:-88.867731pt;}
.ws2c{word-spacing:-79.629228pt;}
.ws28{word-spacing:-61.086755pt;}
.ws31{word-spacing:-24.373712pt;}
.ws1b{word-spacing:-24.154232pt;}
.ws2f{word-spacing:-23.756656pt;}
.ws21{word-spacing:-22.922462pt;}
.ws1d{word-spacing:-22.903216pt;}
.ws1e{word-spacing:-22.883970pt;}
.ws1c{word-spacing:-22.864723pt;}
.ws25{word-spacing:-22.851641pt;}
.ws1f{word-spacing:-22.845477pt;}
.ws20{word-spacing:-22.826230pt;}
.ws30{word-spacing:-21.761508pt;}
.ws26{word-spacing:-20.342279pt;}
.ws36{word-spacing:-17.483253pt;}
.ws2{word-spacing:-14.034667pt;}
.ws16{word-spacing:-11.560000pt;}
.ws3{word-spacing:-11.040000pt;}
.wsa{word-spacing:-9.696000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws19{word-spacing:-8.726679pt;}
.ws5{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws9{word-spacing:-2.133333pt;}
.ws8{word-spacing:-1.920000pt;}
.ws6{word-spacing:-1.680000pt;}
.ws34{word-spacing:-1.336955pt;}
.wsc{word-spacing:-1.333333pt;}
.ws10{word-spacing:-1.133333pt;}
.ws13{word-spacing:-0.952000pt;}
.wsf{word-spacing:-0.861333pt;}
.ws14{word-spacing:-0.680000pt;}
.wse{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.634667pt;}
.ws33{word-spacing:-0.617056pt;}
.ws17{word-spacing:-0.544000pt;}
.ws0{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.wsd{word-spacing:0.053333pt;}
.ws2e{word-spacing:0.843310pt;}
.ws11{word-spacing:1.042667pt;}
.ws12{word-spacing:1.133333pt;}
.ws2d{word-spacing:1.933442pt;}
.wsb{word-spacing:2.666667pt;}
.ws1a{word-spacing:4.253454pt;}
.ws18{word-spacing:64.237333pt;}
.ws27{word-spacing:100.168466pt;}
.ws29{word-spacing:161.412176pt;}
.ws2b{word-spacing:235.661514pt;}
.ws2a{word-spacing:235.698461pt;}
.ws22{word-spacing:236.524633pt;}
.ws23{word-spacing:236.866430pt;}
.ws24{word-spacing:238.493546pt;}
._1f{margin-left:-69.813434pt;}
._1e{margin-left:-15.789639pt;}
._5{margin-left:-14.733333pt;}
._3{margin-left:-10.154933pt;}
._9{margin-left:-3.986667pt;}
._2{margin-left:-2.496000pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.141600pt;}
._d{width:2.120230pt;}
._1a{width:3.074949pt;}
._c{width:7.833285pt;}
._4{width:12.829333pt;}
._b{width:13.872000pt;}
._21{width:14.815997pt;}
._6{width:16.320000pt;}
._8{width:32.504066pt;}
._11{width:44.277804pt;}
._7{width:48.552000pt;}
._17{width:54.524530pt;}
._12{width:66.042740pt;}
._14{width:70.717357pt;}
._1d{width:79.505586pt;}
._f{width:81.188445pt;}
._13{width:85.788255pt;}
._18{width:89.827104pt;}
._16{width:102.355042pt;}
._10{width:121.726576pt;}
._19{width:130.365235pt;}
._15{width:131.711530pt;}
._e{width:248.242558pt;}
._1c{width:249.231653pt;}
._20{width:250.826625pt;}
._1b{width:259.792340pt;}
._a{width:2235.930737pt;}
.fsa{font-size:19.246400pt;}
.fsd{font-size:20.568533pt;}
.fs9{font-size:31.390933pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fsb{font-size:37.396800pt;}
.fse{font-size:40.359467pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsc{font-size:59.652267pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:1.669331pt;}
.y7f{bottom:1.963867pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.yad{bottom:86.584005pt;}
.y30{bottom:104.917603pt;}
.y3d{bottom:111.569336pt;}
.y2f{bottom:124.959605pt;}
.y3c{bottom:127.083336pt;}
.y2e{bottom:140.473595pt;}
.y3b{bottom:144.944672pt;}
.y57{bottom:152.440002pt;}
.y2d{bottom:158.334930pt;}
.y74{bottom:159.594746pt;}
.y76{bottom:159.598663pt;}
.y7d{bottom:159.887439pt;}
.y3a{bottom:164.986664pt;}
.y7c{bottom:165.394663pt;}
.y7b{bottom:167.870667pt;}
.y2c{bottom:173.848941pt;}
.y39{bottom:180.506008pt;}
.ya6{bottom:180.716003pt;}
.y59{bottom:186.221396pt;}
.y2b{bottom:191.710266pt;}
.y38{bottom:193.834008pt;}
.y5d{bottom:197.114430pt;}
.ya7{bottom:203.526672pt;}
.y2a{bottom:207.224266pt;}
.yaf{bottom:207.279157pt;}
.y37{bottom:211.695333pt;}
.yae{bottom:211.789327pt;}
.y29{bottom:225.085592pt;}
.y36{bottom:227.209333pt;}
.ya8{bottom:228.452006pt;}
.y28{bottom:240.604925pt;}
.y35{bottom:245.070658pt;}
.ya9{bottom:253.650675pt;}
.y27{bottom:253.932925pt;}
.y34{bottom:260.584659pt;}
.y26{bottom:271.794271pt;}
.y6c{bottom:277.570638pt;}
.y33{bottom:278.446004pt;}
.yaa{bottom:278.852010pt;}
.y89{bottom:290.833313pt;}
.y6b{bottom:292.071248pt;}
.y32{bottom:293.960005pt;}
.y25{bottom:294.022785pt;}
.y6a{bottom:303.299637pt;}
.yab{bottom:303.778666pt;}
.y24{bottom:307.350785pt;}
.y31{bottom:311.821330pt;}
.ya3{bottom:312.447117pt;}
.ya5{bottom:314.369812pt;}
.y69{bottom:314.518677pt;}
.ya2{bottom:314.660178pt;}
.ya1{bottom:325.458659pt;}
.yac{bottom:328.994670pt;}
.ya4{bottom:329.610110pt;}
.y23{bottom:334.743452pt;}
.y22{bottom:348.071452pt;}
.yb1{bottom:366.803256pt;}
.y7e{bottom:366.848027pt;}
.yb0{bottom:372.305339pt;}
.y71{bottom:372.324777pt;}
.y70{bottom:377.821717pt;}
.y81{bottom:382.289742pt;}
.y1e{bottom:394.202253pt;}
.y80{bottom:396.977336pt;}
.y88{bottom:397.855977pt;}
.y1d{bottom:407.530253pt;}
.y8a{bottom:414.812012pt;}
.y1c{bottom:420.858253pt;}
.y82{bottom:421.854655pt;}
.y90{bottom:431.286189pt;}
.y1b{bottom:434.186253pt;}
.y83{bottom:445.107992pt;}
.y1a{bottom:447.514253pt;}
.y19{bottom:460.842253pt;}
.y84{bottom:468.640015pt;}
.y18{bottom:474.170253pt;}
.y17{bottom:487.498253pt;}
.y8e{bottom:490.531183pt;}
.y85{bottom:492.182658pt;}
.y5b{bottom:499.863993pt;}
.y16{bottom:500.826253pt;}
.y8d{bottom:505.050490pt;}
.y86{bottom:515.441325pt;}
.y8c{bottom:516.278879pt;}
.y91{bottom:522.021680pt;}
.y8b{bottom:527.488570pt;}
.y8f{bottom:533.652018pt;}
.y87{bottom:538.968018pt;}
.y15{bottom:547.456136pt;}
.y14{bottom:564.122803pt;}
.y4e{bottom:576.413661pt;}
.y6f{bottom:576.575455pt;}
.y13{bottom:580.789469pt;}
.y6e{bottom:582.072395pt;}
.y4d{bottom:582.245321pt;}
.y6d{bottom:587.569336pt;}
.y50{bottom:591.331074pt;}
.y12{bottom:597.456136pt;}
.y4f{bottom:606.003988pt;}
.y58{bottom:606.889181pt;}
.y11{bottom:614.122803pt;}
.y5c{bottom:623.849325pt;}
.y10{bottom:630.789469pt;}
.y51{bottom:630.880005pt;}
.y4a{bottom:638.013901pt;}
.y4c{bottom:638.304267pt;}
.y21{bottom:650.845584pt;}
.y52{bottom:654.142660pt;}
.yf{bottom:664.124136pt;}
.y20{bottom:664.173584pt;}
.ye{bottom:677.456136pt;}
.y1f{bottom:677.501584pt;}
.y53{bottom:677.681315pt;}
.y62{bottom:699.568469pt;}
.y54{bottom:701.215983pt;}
.y61{bottom:714.097126pt;}
.ya0{bottom:714.330424pt;}
.yd{bottom:724.128136pt;}
.y55{bottom:724.469320pt;}
.y60{bottom:725.306817pt;}
.y49{bottom:736.024240pt;}
.y5f{bottom:736.525857pt;}
.yc{bottom:737.456136pt;}
.y48{bottom:739.343831pt;}
.y56{bottom:748.009359pt;}
.y4b{bottom:748.494288pt;}
.y66{bottom:773.149353pt;}
.yb{bottom:775.322835pt;}
.y7a{bottom:785.599625pt;}
.y73{bottom:785.608335pt;}
.y79{bottom:791.086281pt;}
.y72{bottom:791.089849pt;}
.ya{bottom:791.989502pt;}
.y78{bottom:796.593506pt;}
.y77{bottom:800.346680pt;}
.y9{bottom:808.656169pt;}
.y99{bottom:811.493327pt;}
.y5a{bottom:812.242109pt;}
.y5e{bottom:827.961030pt;}
.y9a{bottom:836.516032pt;}
.y98{bottom:841.155057pt;}
.y95{bottom:845.698895pt;}
.y8{bottom:848.377441pt;}
.y9b{bottom:859.779460pt;}
.y47{bottom:862.356306pt;}
.y7{bottom:872.377441pt;}
.y46{bottom:875.684306pt;}
.y9c{bottom:883.326416pt;}
.y45{bottom:889.012306pt;}
.y6{bottom:896.377441pt;}
.y68{bottom:899.868460pt;}
.y44{bottom:902.340306pt;}
.y9d{bottom:906.864095pt;}
.y67{bottom:914.378418pt;}
.y43{bottom:915.668306pt;}
.y65{bottom:925.585379pt;}
.y42{bottom:928.996306pt;}
.y9e{bottom:930.129720pt;}
.y64{bottom:936.804419pt;}
.y41{bottom:942.324306pt;}
.y97{bottom:942.398662pt;}
.y94{bottom:942.955850pt;}
.y93{bottom:944.619569pt;}
.y63{bottom:948.032808pt;}
.y92{bottom:952.082764pt;}
.y9f{bottom:953.676676pt;}
.y96{bottom:955.119838pt;}
.y40{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y3f{bottom:968.980306pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3e{bottom:1002.206543pt;}
.hf{height:14.011379pt;}
.h14{height:14.973892pt;}
.hd{height:21.832533pt;}
.he{height:22.852599pt;}
.h11{height:27.224870pt;}
.h10{height:27.246192pt;}
.h16{height:29.381692pt;}
.h2{height:30.080000pt;}
.hb{height:31.189333pt;}
.hc{height:32.760417pt;}
.h9{height:36.693333pt;}
.h15{height:37.282667pt;}
.h4{height:39.712000pt;}
.ha{height:40.165333pt;}
.h13{height:42.711023pt;}
.h8{height:47.472000pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h7{height:57.658667pt;}
.h6{height:75.605333pt;}
.h12{height:825.041341pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:466.825317pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:8.022400pt;}
.x5d{left:39.390401pt;}
.x5e{left:46.950277pt;}
.x5f{left:53.945068pt;}
.x60{left:61.513468pt;}
.x3{left:68.031469pt;}
.xa{left:69.996800pt;}
.x4{left:75.717199pt;}
.x6{left:83.151471pt;}
.x8{left:86.929867pt;}
.x61{left:93.816121pt;}
.x62{left:101.092122pt;}
.x63{left:107.538656pt;}
.x64{left:115.381226pt;}
.x65{left:122.237996pt;}
.x66{left:129.669067pt;}
.x67{left:136.671590pt;}
.x5{left:143.715469pt;}
.x68{left:151.518392pt;}
.x69{left:158.383748pt;}
.x6a{left:162.355591pt;}
.x6b{left:169.349080pt;}
.x6c{left:177.063721pt;}
.x6d{left:184.057088pt;}
.x6e{left:190.777059pt;}
.x6f{left:198.354411pt;}
.x70{left:205.494425pt;}
.x71{left:212.909058pt;}
.x72{left:219.921061pt;}
.x73{left:226.850423pt;}
.x74{left:236.726400pt;}
.x75{left:243.666423pt;}
.x76{left:250.805054pt;}
.x77{left:257.946411pt;}
.x13{left:258.843994pt;}
.x1d{left:261.557096pt;}
.x78{left:265.095744pt;}
.x1e{left:267.105458pt;}
.x1c{left:271.712809pt;}
.x79{left:272.654419pt;}
.x12{left:277.062541pt;}
.x7a{left:279.174398pt;}
.x7b{left:287.153076pt;}
.x7c{left:294.294393pt;}
.xe{left:296.961043pt;}
.x10{left:297.960937pt;}
.x82{left:299.522664pt;}
.x15{left:301.862671pt;}
.x84{left:304.011548pt;}
.x1f{left:305.784585pt;}
.xb{left:308.834676pt;}
.xc{left:310.749523pt;}
.x20{left:312.777886pt;}
.x7d{left:316.150391pt;}
.x21{left:320.347106pt;}
.x7e{left:323.081055pt;}
.x22{left:327.633509pt;}
.x7f{left:330.639730pt;}
.x23{left:334.354278pt;}
.x80{left:337.989054pt;}
.x24{left:341.913214pt;}
.x81{left:344.918416pt;}
.x25{left:349.482434pt;}
.x26{left:352.649988pt;}
.x27{left:356.758552pt;}
.x28{left:359.926107pt;}
.x29{left:363.201646pt;}
.x2a{left:366.369200pt;}
.x2b{left:371.053683pt;}
.x2c{left:374.210953pt;}
.x2d{left:377.908147pt;}
.x2e{left:381.070559pt;}
.x2f{left:385.333387pt;}
.x30{left:388.500942pt;}
.x31{left:392.336973pt;}
.x32{left:395.504527pt;}
.x1b{left:398.213053pt;}
.x33{left:399.895909pt;}
.x34{left:403.063463pt;}
.x35{left:407.182312pt;}
.x7{left:408.190135pt;}
.x36{left:410.349866pt;}
.x37{left:414.036776pt;}
.x38{left:417.214614pt;}
.x17{left:418.970746pt;}
.x1a{left:420.690991pt;}
.x39{left:424.351895pt;}
.x9{left:427.081599pt;}
.x3a{left:428.177642pt;}
.x3b{left:431.345196pt;}
.x11{left:436.727434pt;}
.x3c{left:439.048112pt;}
.x3d{left:442.884144pt;}
.x3e{left:446.051698pt;}
.x3f{left:449.604912pt;}
.x40{left:452.772466pt;}
.x41{left:457.179274pt;}
.x42{left:460.346828pt;}
.x43{left:464.316555pt;}
.x44{left:467.473825pt;}
.x45{left:471.731512pt;}
.x46{left:474.899066pt;}
.x47{left:478.745382pt;}
.x48{left:481.902651pt;}
.x49{left:485.676977pt;}
.x4a{left:488.844531pt;}
.x16{left:492.034744pt;}
.x19{left:493.652151pt;}
.x4b{left:495.549873pt;}
.x4c{left:502.491753pt;}
.x4d{left:509.629034pt;}
.x4e{left:516.771458pt;}
.x4f{left:523.919023pt;}
.x50{left:531.477959pt;}
.x51{left:537.998184pt;}
.x52{left:545.978775pt;}
.x53{left:553.121198pt;}
.x54{left:560.052794pt;}
.x55{left:567.200359pt;}
.x56{left:574.975265pt;}
.x57{left:581.906860pt;}
.xd{left:584.878676pt;}
.x18{left:586.517756pt;}
.x85{left:587.989890pt;}
.x58{left:589.465796pt;}
.x59{left:596.813905pt;}
.xf{left:602.308493pt;}
.x5a{left:603.745501pt;}
.x86{left:605.175829pt;}
.x5b{left:610.898208pt;}
.x83{left:611.972307pt;}
.x5c{left:618.246317pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
}




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