
    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_51beefa9bf5bb622ee28d934.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_936953d13ddaa8e04022ee10.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_804019a8811f2032afea3bcc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_cf5d47cd11274df4431f9997.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_63a5712239c2847500704891.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_0757c45a261f8122a31f59e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_51785b0feda3ee5664a61687.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_69adb947df84bb055ff5c98b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_efd3874b45206a761d581f45.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_2d1b368a935bc818fce00368.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929199;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_17ffba1ac19c8b4350919484.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-27.360000px;}
.v3{vertical-align:-23.757120px;}
.v5{vertical-align:-18.000000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:48.000000px;}
.lsc{letter-spacing:-0.728640px;}
.ls28{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.397440px;}
.lsb{letter-spacing:-0.331200px;}
.ls1d{letter-spacing:-0.298800px;}
.ls7{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.264960px;}
.ls1b{letter-spacing:-0.239040px;}
.ls12{letter-spacing:-0.216720px;}
.ls3{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.132480px;}
.ls19{letter-spacing:-0.119520px;}
.ls4{letter-spacing:-0.072720px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.054720px;}
.ls20{letter-spacing:0.059760px;}
.ls1c{letter-spacing:0.060358px;}
.ls16{letter-spacing:0.072720px;}
.lsa{letter-spacing:0.132480px;}
.ls6{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.192960px;}
.ls11{letter-spacing:0.213120px;}
.ls15{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.216720px;}
.ls1a{letter-spacing:0.239040px;}
.ls24{letter-spacing:0.258163px;}
.ls18{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.504000px;}
.ls26{letter-spacing:0.550987px;}
.ls25{letter-spacing:0.617321px;}
.ls23{letter-spacing:0.623297px;}
.ls1e{letter-spacing:0.657360px;}
.ls29{letter-spacing:0.719280px;}
.ls13{letter-spacing:0.720000px;}
.ls21{letter-spacing:17.928000px;}
.ls22{letter-spacing:21.573360px;}
.ls2{letter-spacing:846.000000px;}
.ls1f{letter-spacing:1803.600000px;}
.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;}
}
.ws37{word-spacing:-18.719280px;}
.ws1c{word-spacing:-18.432000px;}
.ws1a{word-spacing:-18.288000px;}
.ws17{word-spacing:-18.216720px;}
.ws2{word-spacing:-18.144000px;}
.ws32{word-spacing:-18.072720px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.927280px;}
.ws1d{word-spacing:-17.856000px;}
.ws1b{word-spacing:-17.783280px;}
.ws3{word-spacing:-17.712000px;}
.ws33{word-spacing:-17.496000px;}
.ws23{word-spacing:-16.852320px;}
.ws8{word-spacing:-16.692480px;}
.ws26{word-spacing:-16.673638px;}
.ws2e{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.493760px;}
.wsa{word-spacing:-16.427520px;}
.ws25{word-spacing:-16.374240px;}
.ws27{word-spacing:-16.314480px;}
.ws6{word-spacing:-16.228800px;}
.ws9{word-spacing:-15.831360px;}
.wsb{word-spacing:-13.344000px;}
.ws4{word-spacing:-12.252960px;}
.ws2c{word-spacing:-10.808640px;}
.ws5{word-spacing:-10.440000px;}
.ws12{word-spacing:-0.861120px;}
.ws14{word-spacing:-0.728640px;}
.ws35{word-spacing:-0.719280px;}
.ws20{word-spacing:-0.432000px;}
.ws2f{word-spacing:-0.358560px;}
.ws29{word-spacing:-0.298800px;}
.ws10{word-spacing:-0.288000px;}
.ws2a{word-spacing:-0.239040px;}
.ws18{word-spacing:-0.216720px;}
.ws11{word-spacing:-0.144000px;}
.ws13{word-spacing:-0.132480px;}
.ws21{word-spacing:-0.072720px;}
.wse{word-spacing:0.000000px;}
.ws28{word-spacing:0.060358px;}
.wsd{word-spacing:0.072720px;}
.ws2b{word-spacing:0.119520px;}
.wsc{word-spacing:0.144000px;}
.ws19{word-spacing:0.216720px;}
.ws30{word-spacing:0.239040px;}
.ws15{word-spacing:0.264960px;}
.wsf{word-spacing:0.288000px;}
.ws31{word-spacing:0.298800px;}
.ws16{word-spacing:0.397440px;}
.ws34{word-spacing:0.504000px;}
.ws1f{word-spacing:0.576000px;}
.ws36{word-spacing:0.719280px;}
.ws2d{word-spacing:0.776880px;}
.ws22{word-spacing:0.863280px;}
.ws1e{word-spacing:1.008720px;}
._6{margin-left:-2641.100640px;}
._9{margin-left:-1406.015040px;}
._5{margin-left:-1355.183040px;}
._7{margin-left:-1096.367040px;}
._c{margin-left:-1048.752000px;}
._b{margin-left:-984.719040px;}
._a{margin-left:-837.792000px;}
._4{margin-left:-794.927520px;}
._d{margin-left:-466.799040px;}
._3{margin-left:-1.008000px;}
._0{width:1.368000px;}
._15{width:25.200000px;}
._14{width:61.200000px;}
._13{width:184.320000px;}
._f{width:198.000000px;}
._e{width:846.000000px;}
._11{width:847.396800px;}
._12{width:1166.202720px;}
._10{width:1320.480000px;}
._2{width:1356.480000px;}
._1{width:1393.200000px;}
._8{width:2073.043680px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y6d{bottom:-0.000150px;}
.y0{bottom:0.000000px;}
.y71{bottom:3.239850px;}
.y62{bottom:3.240000px;}
.ye5{bottom:4.140000px;}
.yed{bottom:4.320000px;}
.ye6{bottom:5.040000px;}
.ye9{bottom:5.220000px;}
.y65{bottom:6.120000px;}
.y8a{bottom:20.520000px;}
.y4{bottom:57.060000px;}
.ydd{bottom:112.680000px;}
.y9c{bottom:121.680000px;}
.yd4{bottom:122.381280px;}
.y28{bottom:125.362080px;}
.y2c{bottom:126.000000px;}
.y5b{bottom:127.080000px;}
.y5c{bottom:137.340000px;}
.yd3{bottom:139.487580px;}
.y9b{bottom:140.760000px;}
.y27{bottom:153.795600px;}
.ydc{bottom:154.080000px;}
.y9a{bottom:160.020000px;}
.ybf{bottom:160.201980px;}
.yd2{bottom:165.408480px;}
.y5a{bottom:168.480000px;}
.y42{bottom:178.740000px;}
.y98{bottom:179.100000px;}
.y26{bottom:182.229120px;}
.ydb{bottom:182.679120px;}
.ybe{bottom:186.122880px;}
.y99{bottom:186.840000px;}
.yd1{bottom:191.329380px;}
.y97{bottom:198.180000px;}
.yda{bottom:208.600020px;}
.y59{bottom:209.880000px;}
.ybd{bottom:212.043780px;}
.yd0{bottom:217.071000px;}
.y96{bottom:217.260000px;}
.y41{bottom:220.140000px;}
.y25{bottom:220.201200px;}
.y104{bottom:230.580000px;}
.yd9{bottom:234.341640px;}
.y95{bottom:236.520000px;}
.y24{bottom:241.977600px;}
.ycf{bottom:242.991900px;}
.ybc{bottom:246.600000px;}
.y58{bottom:251.280000px;}
.y93{bottom:255.600000px;}
.yd8{bottom:260.262540px;}
.y23{bottom:261.236880px;}
.y40{bottom:261.540000px;}
.y94{bottom:263.340000px;}
.yce{bottom:268.912800px;}
.y92{bottom:274.680000px;}
.y22{bottom:280.131840px;}
.ybb{bottom:285.300000px;}
.yd7{bottom:286.183440px;}
.y57{bottom:292.680000px;}
.y91{bottom:293.760000px;}
.ycd{bottom:294.833700px;}
.y21{bottom:299.208960px;}
.y3f{bottom:302.940000px;}
.yd6{bottom:303.469020px;}
.y90{bottom:313.020000px;}
.ycc{bottom:317.333340px;}
.yd5{bottom:317.512620px;}
.y20{bottom:320.803200px;}
.y103{bottom:323.640000px;}
.yba{bottom:326.700000px;}
.y8f{bottom:332.100000px;}
.y56{bottom:334.080000px;}
.y1f{bottom:342.579600px;}
.y3e{bottom:344.340000px;}
.y8d{bottom:351.180000px;}
.y102{bottom:354.780000px;}
.y8e{bottom:358.920000px;}
.y1e{bottom:364.356000px;}
.yb9{bottom:368.100000px;}
.y8c{bottom:370.260000px;}
.y55{bottom:375.480000px;}
.yf7{bottom:385.379100px;}
.y3d{bottom:385.740000px;}
.y1d{bottom:386.314560px;}
.y8b{bottom:389.520000px;}
.y1c{bottom:408.090960px;}
.y89{bottom:408.600000px;}
.yb8{bottom:409.500000px;}
.yf6{bottom:411.300000px;}
.y54{bottom:416.880000px;}
.yf5{bottom:426.060000px;}
.y3c{bottom:427.140000px;}
.y1b{bottom:429.867360px;}
.y88{bottom:442.980000px;}
.yf4{bottom:445.320000px;}
.y101{bottom:447.840000px;}
.yb7{bottom:450.900000px;}
.y1a{bottom:451.643760px;}
.y53{bottom:458.280000px;}
.y87{bottom:462.240000px;}
.yf3{bottom:464.400000px;}
.y3b{bottom:468.540000px;}
.y19{bottom:473.420160px;}
.y100{bottom:478.980000px;}
.y85{bottom:481.320000px;}
.yf2{bottom:484.200000px;}
.y86{bottom:489.060000px;}
.yb6{bottom:492.300000px;}
.y18{bottom:495.378720px;}
.y52{bottom:499.680000px;}
.y84{bottom:500.400000px;}
.yf1{bottom:503.280000px;}
.y3a{bottom:509.940000px;}
.y17{bottom:517.155120px;}
.y83{bottom:519.480000px;}
.yf0{bottom:522.540000px;}
.yb5{bottom:533.520000px;}
.y82{bottom:538.740000px;}
.y16{bottom:538.931520px;}
.y51{bottom:541.080000px;}
.yef{bottom:541.620000px;}
.y39{bottom:551.340000px;}
.y80{bottom:557.820000px;}
.yee{bottom:560.700000px;}
.y15{bottom:560.707920px;}
.y81{bottom:565.560000px;}
.yff{bottom:572.040000px;}
.yb4{bottom:574.920000px;}
.y7f{bottom:576.900000px;}
.yec{bottom:579.780000px;}
.y50{bottom:582.480000px;}
.y38{bottom:592.740000px;}
.y7e{bottom:595.980000px;}
.yeb{bottom:599.040000px;}
.yfe{bottom:603.180000px;}
.y14{bottom:604.620000px;}
.y7d{bottom:615.240000px;}
.yb3{bottom:616.320000px;}
.yea{bottom:618.120000px;}
.ycb{bottom:618.660000px;}
.y4f{bottom:623.880000px;}
.y37{bottom:634.140000px;}
.y7b{bottom:634.320000px;}
.ye8{bottom:637.200000px;}
.y7c{bottom:642.060000px;}
.y13{bottom:642.600000px;}
.y7a{bottom:655.740000px;}
.ye7{bottom:657.180000px;}
.yb2{bottom:657.720000px;}
.yca{bottom:660.060000px;}
.y4e{bottom:665.280000px;}
.y12{bottom:674.647920px;}
.y79{bottom:674.820000px;}
.ye4{bottom:675.180000px;}
.y36{bottom:675.540000px;}
.y78{bottom:693.900000px;}
.yfd{bottom:696.240000px;}
.yb1{bottom:699.120000px;}
.yc9{bottom:701.460000px;}
.y4d{bottom:706.680000px;}
.ye3{bottom:706.856580px;}
.y77{bottom:712.980000px;}
.y35{bottom:716.940000px;}
.y11{bottom:718.560000px;}
.yfc{bottom:727.380000px;}
.y75{bottom:732.240000px;}
.ye2{bottom:732.777480px;}
.y76{bottom:739.980000px;}
.yb0{bottom:740.520000px;}
.yc8{bottom:742.860000px;}
.y4c{bottom:748.080000px;}
.y74{bottom:751.320000px;}
.y10{bottom:756.360000px;}
.y34{bottom:758.340000px;}
.ye1{bottom:758.519100px;}
.yaf{bottom:769.139100px;}
.y73{bottom:770.400000px;}
.yc7{bottom:784.260000px;}
.ye0{bottom:784.440000px;}
.y4b{bottom:789.480000px;}
.yf{bottom:794.340000px;}
.yae{bottom:799.560000px;}
.y33{bottom:799.740000px;}
.ydf{bottom:802.440000px;}
.y70{bottom:808.740000px;}
.y72{bottom:816.479850px;}
.yfb{bottom:820.440000px;}
.yad{bottom:820.978380px;}
.yde{bottom:823.140000px;}
.yc6{bottom:825.660000px;}
.y6f{bottom:827.820000px;}
.y4a{bottom:830.880000px;}
.ye{bottom:832.319280px;}
.y32{bottom:841.140000px;}
.y6e{bottom:846.900000px;}
.yac{bottom:851.220000px;}
.yfa{bottom:851.580000px;}
.y6c{bottom:865.980000px;}
.yc5{bottom:867.060000px;}
.yd{bottom:870.300000px;}
.y49{bottom:872.280000px;}
.yab{bottom:872.639100px;}
.y31{bottom:882.540000px;}
.y6b{bottom:885.960000px;}
.yc{bottom:902.340000px;}
.yaa{bottom:903.060000px;}
.y6a{bottom:905.760000px;}
.yc4{bottom:908.460000px;}
.y48{bottom:913.680000px;}
.y30{bottom:923.940000px;}
.y69{bottom:925.020000px;}
.ya9{bottom:928.980000px;}
.yb{bottom:942.480000px;}
.y68{bottom:944.100000px;}
.yf9{bottom:944.640000px;}
.yc3{bottom:949.860000px;}
.ya8{bottom:950.219100px;}
.y47{bottom:955.080000px;}
.y66{bottom:963.900000px;}
.y2f{bottom:965.340000px;}
.y67{bottom:972.360000px;}
.yf8{bottom:975.780000px;}
.ya7{bottom:976.140000px;}
.yc2{bottom:978.473160px;}
.ya{bottom:983.880000px;}
.y61{bottom:986.040000px;}
.ya6{bottom:990.900000px;}
.y46{bottom:996.480000px;}
.yc1{bottom:1004.214780px;}
.y2e{bottom:1006.740000px;}
.y9{bottom:1006.923600px;}
.y64{bottom:1009.433700px;}
.ya5{bottom:1009.980000px;}
.y63{bottom:1026.540000px;}
.y8{bottom:1028.700000px;}
.ya4{bottom:1029.240000px;}
.yc0{bottom:1030.135680px;}
.y45{bottom:1037.880000px;}
.y2d{bottom:1048.140000px;}
.ya2{bottom:1048.320000px;}
.y60{bottom:1056.056580px;}
.ya3{bottom:1056.060000px;}
.y7{bottom:1058.580000px;}
.ya1{bottom:1068.120000px;}
.y44{bottom:1068.840000px;}
.y5f{bottom:1081.977480px;}
.ya0{bottom:1088.100000px;}
.y6{bottom:1089.540000px;}
.y43{bottom:1099.980000px;}
.y5e{bottom:1107.719100px;}
.y9e{bottom:1107.900000px;}
.y9f{bottom:1115.640000px;}
.y9d{bottom:1127.880000px;}
.y5{bottom:1130.940000px;}
.y5d{bottom:1133.640000px;}
.y3{bottom:1151.640000px;}
.y2{bottom:1172.340000px;}
.y1{bottom:1193.040000px;}
.y29{bottom:1211.999865px;}
.y2a{bottom:1223.999865px;}
.y2b{bottom:1235.999985px;}
.h1a{height:17.100000px;}
.h12{height:19.080000px;}
.h11{height:19.081500px;}
.h14{height:19.258500px;}
.h13{height:19.260000px;}
.h15{height:21.418500px;}
.hf{height:21.420000px;}
.h10{height:28.305703px;}
.h16{height:28.324688px;}
.h6{height:29.015859px;}
.h17{height:34.378500px;}
.hd{height:43.506914px;}
.hc{height:43.536094px;}
.hb{height:43.804688px;}
.h7{height:44.893125px;}
.h4{height:46.025156px;}
.h3{height:48.796875px;}
.h8{height:49.699024px;}
.h1b{height:49.992188px;}
.h2{height:50.027344px;}
.h9{height:50.062500px;}
.he{height:57.420000px;}
.h5{height:60.878320px;}
.ha{height:98.062500px;}
.h18{height:892.980000px;}
.h19{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:12.060000px;}
.w2{width:85.500000px;}
.w14{width:94.320000px;}
.w6{width:99.000000px;}
.w12{width:99.541500px;}
.w10{width:106.380000px;}
.w13{width:127.620000px;}
.w11{width:132.840000px;}
.w4{width:179.640000px;}
.w3{width:192.060000px;}
.wb{width:212.580000px;}
.wf{width:221.940000px;}
.w5{width:226.260000px;}
.we{width:227.160000px;}
.wc{width:239.220000px;}
.w7{width:277.560000px;}
.w8{width:457.200000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w9{width:1262.880000px;}
.wa{width:1263.000000px;}
.x0{left:0.000000px;}
.x12{left:5.220000px;}
.x1a{left:6.480000px;}
.x17{left:9.900000px;}
.x4b{left:17.460000px;}
.x4e{left:19.620000px;}
.x1f{left:20.880000px;}
.x22{left:26.280000px;}
.x2d{left:27.900000px;}
.x26{left:30.600000px;}
.x48{left:33.840000px;}
.x4f{left:35.100000px;}
.x23{left:42.660000px;}
.x1c{left:47.340000px;}
.x25{left:49.500000px;}
.x4d{left:50.940000px;}
.x38{left:53.100000px;}
.x24{left:55.620000px;}
.x3c{left:57.600000px;}
.x32{left:59.760000px;}
.x2c{left:63.900000px;}
.x45{left:66.060000px;}
.x28{left:68.040000px;}
.x1d{left:71.460000px;}
.x39{left:76.320000px;}
.x21{left:77.940000px;}
.x1{left:81.000000px;}
.x2{left:82.260000px;}
.x2f{left:87.120000px;}
.x29{left:91.260000px;}
.x1e{left:94.680000px;}
.x41{left:107.640000px;}
.x4{left:108.900000px;}
.x3f{left:110.520000px;}
.xb{left:112.487955px;}
.x52{left:118.800000px;}
.xd{left:135.000000px;}
.x2b{left:137.340000px;}
.x3b{left:144.900000px;}
.x31{left:154.980000px;}
.x35{left:162.720000px;}
.x13{left:166.500000px;}
.x27{left:169.560000px;}
.x34{left:178.200000px;}
.x2a{left:212.760000px;}
.x5{left:215.460000px;}
.x3a{left:220.500000px;}
.x30{left:230.400000px;}
.xf{left:238.680000px;}
.x3{left:240.120000px;}
.x3e{left:243.360000px;}
.x37{left:247.500000px;}
.x33{left:253.620000px;}
.x3d{left:318.780000px;}
.x42{left:320.220000px;}
.x36{left:322.920000px;}
.xe{left:356.400000px;}
.x16{left:358.560000px;}
.xa{left:366.527835px;}
.x6{left:370.440000px;}
.x14{left:373.860000px;}
.x15{left:388.262160px;}
.x10{left:397.440000px;}
.x51{left:404.460000px;}
.x50{left:405.900000px;}
.xc{left:412.920000px;}
.x9{left:416.568075px;}
.x11{left:418.500000px;}
.x49{left:426.600000px;}
.x7{left:446.400000px;}
.x19{left:538.200000px;}
.x43{left:559.440000px;}
.x44{left:571.500000px;}
.x18{left:572.580000px;}
.x8{left:612.311835px;}
.x40{left:656.996760px;}
.x4a{left:671.040000px;}
.x1b{left:764.460000px;}
.x46{left:798.660000px;}
.x47{left:810.720000px;}
.x2e{left:829.800000px;}
.x20{left:836.820000px;}
.x4c{left:905.040000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-21.117440pt;}
.v5{vertical-align:-16.000000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:42.666667pt;}
.lsc{letter-spacing:-0.647680pt;}
.ls28{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.353280pt;}
.lsb{letter-spacing:-0.294400pt;}
.ls1d{letter-spacing:-0.265600pt;}
.ls7{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.235520pt;}
.ls1b{letter-spacing:-0.212480pt;}
.ls12{letter-spacing:-0.192640pt;}
.ls3{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117760pt;}
.ls19{letter-spacing:-0.106240pt;}
.ls4{letter-spacing:-0.064640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.048640pt;}
.ls20{letter-spacing:0.053120pt;}
.ls1c{letter-spacing:0.053651pt;}
.ls16{letter-spacing:0.064640pt;}
.lsa{letter-spacing:0.117760pt;}
.ls6{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.171520pt;}
.ls11{letter-spacing:0.189440pt;}
.ls15{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.192640pt;}
.ls1a{letter-spacing:0.212480pt;}
.ls24{letter-spacing:0.229478pt;}
.ls18{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.448000pt;}
.ls26{letter-spacing:0.489766pt;}
.ls25{letter-spacing:0.548730pt;}
.ls23{letter-spacing:0.554042pt;}
.ls1e{letter-spacing:0.584320pt;}
.ls29{letter-spacing:0.639360pt;}
.ls13{letter-spacing:0.640000pt;}
.ls21{letter-spacing:15.936000pt;}
.ls22{letter-spacing:19.176320pt;}
.ls2{letter-spacing:752.000000pt;}
.ls1f{letter-spacing:1603.200000pt;}
.ws37{word-spacing:-16.639360pt;}
.ws1c{word-spacing:-16.384000pt;}
.ws1a{word-spacing:-16.256000pt;}
.ws17{word-spacing:-16.192640pt;}
.ws2{word-spacing:-16.128000pt;}
.ws32{word-spacing:-16.064640pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.935360pt;}
.ws1d{word-spacing:-15.872000pt;}
.ws1b{word-spacing:-15.807360pt;}
.ws3{word-spacing:-15.744000pt;}
.ws33{word-spacing:-15.552000pt;}
.ws23{word-spacing:-14.979840pt;}
.ws8{word-spacing:-14.837760pt;}
.ws26{word-spacing:-14.821011pt;}
.ws2e{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.661120pt;}
.wsa{word-spacing:-14.602240pt;}
.ws25{word-spacing:-14.554880pt;}
.ws27{word-spacing:-14.501760pt;}
.ws6{word-spacing:-14.425600pt;}
.ws9{word-spacing:-14.072320pt;}
.wsb{word-spacing:-11.861333pt;}
.ws4{word-spacing:-10.891520pt;}
.ws2c{word-spacing:-9.607680pt;}
.ws5{word-spacing:-9.280000pt;}
.ws12{word-spacing:-0.765440pt;}
.ws14{word-spacing:-0.647680pt;}
.ws35{word-spacing:-0.639360pt;}
.ws20{word-spacing:-0.384000pt;}
.ws2f{word-spacing:-0.318720pt;}
.ws29{word-spacing:-0.265600pt;}
.ws10{word-spacing:-0.256000pt;}
.ws2a{word-spacing:-0.212480pt;}
.ws18{word-spacing:-0.192640pt;}
.ws11{word-spacing:-0.128000pt;}
.ws13{word-spacing:-0.117760pt;}
.ws21{word-spacing:-0.064640pt;}
.wse{word-spacing:0.000000pt;}
.ws28{word-spacing:0.053651pt;}
.wsd{word-spacing:0.064640pt;}
.ws2b{word-spacing:0.106240pt;}
.wsc{word-spacing:0.128000pt;}
.ws19{word-spacing:0.192640pt;}
.ws30{word-spacing:0.212480pt;}
.ws15{word-spacing:0.235520pt;}
.wsf{word-spacing:0.256000pt;}
.ws31{word-spacing:0.265600pt;}
.ws16{word-spacing:0.353280pt;}
.ws34{word-spacing:0.448000pt;}
.ws1f{word-spacing:0.512000pt;}
.ws36{word-spacing:0.639360pt;}
.ws2d{word-spacing:0.690560pt;}
.ws22{word-spacing:0.767360pt;}
.ws1e{word-spacing:0.896640pt;}
._6{margin-left:-2347.645013pt;}
._9{margin-left:-1249.791147pt;}
._5{margin-left:-1204.607147pt;}
._7{margin-left:-974.548480pt;}
._c{margin-left:-932.224000pt;}
._b{margin-left:-875.305813pt;}
._a{margin-left:-744.704000pt;}
._4{margin-left:-706.602240pt;}
._d{margin-left:-414.932480pt;}
._3{margin-left:-0.896000pt;}
._0{width:1.216000pt;}
._15{width:22.400000pt;}
._14{width:54.400000pt;}
._13{width:163.840000pt;}
._f{width:176.000000pt;}
._e{width:752.000000pt;}
._11{width:753.241600pt;}
._12{width:1036.624640pt;}
._10{width:1173.760000pt;}
._2{width:1205.760000pt;}
._1{width:1238.400000pt;}
._8{width:1842.705493pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y6d{bottom:-0.000133pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:2.879867pt;}
.y62{bottom:2.880000pt;}
.ye5{bottom:3.680000pt;}
.yed{bottom:3.840000pt;}
.ye6{bottom:4.480000pt;}
.ye9{bottom:4.640000pt;}
.y65{bottom:5.440000pt;}
.y8a{bottom:18.240000pt;}
.y4{bottom:50.720000pt;}
.ydd{bottom:100.160000pt;}
.y9c{bottom:108.160000pt;}
.yd4{bottom:108.783360pt;}
.y28{bottom:111.432960pt;}
.y2c{bottom:112.000000pt;}
.y5b{bottom:112.960000pt;}
.y5c{bottom:122.080000pt;}
.yd3{bottom:123.988960pt;}
.y9b{bottom:125.120000pt;}
.y27{bottom:136.707200pt;}
.ydc{bottom:136.960000pt;}
.y9a{bottom:142.240000pt;}
.ybf{bottom:142.401760pt;}
.yd2{bottom:147.029760pt;}
.y5a{bottom:149.760000pt;}
.y42{bottom:158.880000pt;}
.y98{bottom:159.200000pt;}
.y26{bottom:161.981440pt;}
.ydb{bottom:162.381440pt;}
.ybe{bottom:165.442560pt;}
.y99{bottom:166.080000pt;}
.yd1{bottom:170.070560pt;}
.y97{bottom:176.160000pt;}
.yda{bottom:185.422240pt;}
.y59{bottom:186.560000pt;}
.ybd{bottom:188.483360pt;}
.yd0{bottom:192.952000pt;}
.y96{bottom:193.120000pt;}
.y41{bottom:195.680000pt;}
.y25{bottom:195.734400pt;}
.y104{bottom:204.960000pt;}
.yd9{bottom:208.303680pt;}
.y95{bottom:210.240000pt;}
.y24{bottom:215.091200pt;}
.ycf{bottom:215.992800pt;}
.ybc{bottom:219.200000pt;}
.y58{bottom:223.360000pt;}
.y93{bottom:227.200000pt;}
.yd8{bottom:231.344480pt;}
.y23{bottom:232.210560pt;}
.y40{bottom:232.480000pt;}
.y94{bottom:234.080000pt;}
.yce{bottom:239.033600pt;}
.y92{bottom:244.160000pt;}
.y22{bottom:249.006080pt;}
.ybb{bottom:253.600000pt;}
.yd7{bottom:254.385280pt;}
.y57{bottom:260.160000pt;}
.y91{bottom:261.120000pt;}
.ycd{bottom:262.074400pt;}
.y21{bottom:265.963520pt;}
.y3f{bottom:269.280000pt;}
.yd6{bottom:269.750240pt;}
.y90{bottom:278.240000pt;}
.ycc{bottom:282.074080pt;}
.yd5{bottom:282.233440pt;}
.y20{bottom:285.158400pt;}
.y103{bottom:287.680000pt;}
.yba{bottom:290.400000pt;}
.y8f{bottom:295.200000pt;}
.y56{bottom:296.960000pt;}
.y1f{bottom:304.515200pt;}
.y3e{bottom:306.080000pt;}
.y8d{bottom:312.160000pt;}
.y102{bottom:315.360000pt;}
.y8e{bottom:319.040000pt;}
.y1e{bottom:323.872000pt;}
.yb9{bottom:327.200000pt;}
.y8c{bottom:329.120000pt;}
.y55{bottom:333.760000pt;}
.yf7{bottom:342.559200pt;}
.y3d{bottom:342.880000pt;}
.y1d{bottom:343.390720pt;}
.y8b{bottom:346.240000pt;}
.y1c{bottom:362.747520pt;}
.y89{bottom:363.200000pt;}
.yb8{bottom:364.000000pt;}
.yf6{bottom:365.600000pt;}
.y54{bottom:370.560000pt;}
.yf5{bottom:378.720000pt;}
.y3c{bottom:379.680000pt;}
.y1b{bottom:382.104320pt;}
.y88{bottom:393.760000pt;}
.yf4{bottom:395.840000pt;}
.y101{bottom:398.080000pt;}
.yb7{bottom:400.800000pt;}
.y1a{bottom:401.461120pt;}
.y53{bottom:407.360000pt;}
.y87{bottom:410.880000pt;}
.yf3{bottom:412.800000pt;}
.y3b{bottom:416.480000pt;}
.y19{bottom:420.817920pt;}
.y100{bottom:425.760000pt;}
.y85{bottom:427.840000pt;}
.yf2{bottom:430.400000pt;}
.y86{bottom:434.720000pt;}
.yb6{bottom:437.600000pt;}
.y18{bottom:440.336640pt;}
.y52{bottom:444.160000pt;}
.y84{bottom:444.800000pt;}
.yf1{bottom:447.360000pt;}
.y3a{bottom:453.280000pt;}
.y17{bottom:459.693440pt;}
.y83{bottom:461.760000pt;}
.yf0{bottom:464.480000pt;}
.yb5{bottom:474.240000pt;}
.y82{bottom:478.880000pt;}
.y16{bottom:479.050240pt;}
.y51{bottom:480.960000pt;}
.yef{bottom:481.440000pt;}
.y39{bottom:490.080000pt;}
.y80{bottom:495.840000pt;}
.yee{bottom:498.400000pt;}
.y15{bottom:498.407040pt;}
.y81{bottom:502.720000pt;}
.yff{bottom:508.480000pt;}
.yb4{bottom:511.040000pt;}
.y7f{bottom:512.800000pt;}
.yec{bottom:515.360000pt;}
.y50{bottom:517.760000pt;}
.y38{bottom:526.880000pt;}
.y7e{bottom:529.760000pt;}
.yeb{bottom:532.480000pt;}
.yfe{bottom:536.160000pt;}
.y14{bottom:537.440000pt;}
.y7d{bottom:546.880000pt;}
.yb3{bottom:547.840000pt;}
.yea{bottom:549.440000pt;}
.ycb{bottom:549.920000pt;}
.y4f{bottom:554.560000pt;}
.y37{bottom:563.680000pt;}
.y7b{bottom:563.840000pt;}
.ye8{bottom:566.400000pt;}
.y7c{bottom:570.720000pt;}
.y13{bottom:571.200000pt;}
.y7a{bottom:582.880000pt;}
.ye7{bottom:584.160000pt;}
.yb2{bottom:584.640000pt;}
.yca{bottom:586.720000pt;}
.y4e{bottom:591.360000pt;}
.y12{bottom:599.687040pt;}
.y79{bottom:599.840000pt;}
.ye4{bottom:600.160000pt;}
.y36{bottom:600.480000pt;}
.y78{bottom:616.800000pt;}
.yfd{bottom:618.880000pt;}
.yb1{bottom:621.440000pt;}
.yc9{bottom:623.520000pt;}
.y4d{bottom:628.160000pt;}
.ye3{bottom:628.316960pt;}
.y77{bottom:633.760000pt;}
.y35{bottom:637.280000pt;}
.y11{bottom:638.720000pt;}
.yfc{bottom:646.560000pt;}
.y75{bottom:650.880000pt;}
.ye2{bottom:651.357760pt;}
.y76{bottom:657.760000pt;}
.yb0{bottom:658.240000pt;}
.yc8{bottom:660.320000pt;}
.y4c{bottom:664.960000pt;}
.y74{bottom:667.840000pt;}
.y10{bottom:672.320000pt;}
.y34{bottom:674.080000pt;}
.ye1{bottom:674.239200pt;}
.yaf{bottom:683.679200pt;}
.y73{bottom:684.800000pt;}
.yc7{bottom:697.120000pt;}
.ye0{bottom:697.280000pt;}
.y4b{bottom:701.760000pt;}
.yf{bottom:706.080000pt;}
.yae{bottom:710.720000pt;}
.y33{bottom:710.880000pt;}
.ydf{bottom:713.280000pt;}
.y70{bottom:718.880000pt;}
.y72{bottom:725.759867pt;}
.yfb{bottom:729.280000pt;}
.yad{bottom:729.758560pt;}
.yde{bottom:731.680000pt;}
.yc6{bottom:733.920000pt;}
.y6f{bottom:735.840000pt;}
.y4a{bottom:738.560000pt;}
.ye{bottom:739.839360pt;}
.y32{bottom:747.680000pt;}
.y6e{bottom:752.800000pt;}
.yac{bottom:756.640000pt;}
.yfa{bottom:756.960000pt;}
.y6c{bottom:769.760000pt;}
.yc5{bottom:770.720000pt;}
.yd{bottom:773.600000pt;}
.y49{bottom:775.360000pt;}
.yab{bottom:775.679200pt;}
.y31{bottom:784.480000pt;}
.y6b{bottom:787.520000pt;}
.yc{bottom:802.080000pt;}
.yaa{bottom:802.720000pt;}
.y6a{bottom:805.120000pt;}
.yc4{bottom:807.520000pt;}
.y48{bottom:812.160000pt;}
.y30{bottom:821.280000pt;}
.y69{bottom:822.240000pt;}
.ya9{bottom:825.760000pt;}
.yb{bottom:837.760000pt;}
.y68{bottom:839.200000pt;}
.yf9{bottom:839.680000pt;}
.yc3{bottom:844.320000pt;}
.ya8{bottom:844.639200pt;}
.y47{bottom:848.960000pt;}
.y66{bottom:856.800000pt;}
.y2f{bottom:858.080000pt;}
.y67{bottom:864.320000pt;}
.yf8{bottom:867.360000pt;}
.ya7{bottom:867.680000pt;}
.yc2{bottom:869.753920pt;}
.ya{bottom:874.560000pt;}
.y61{bottom:876.480000pt;}
.ya6{bottom:880.800000pt;}
.y46{bottom:885.760000pt;}
.yc1{bottom:892.635360pt;}
.y2e{bottom:894.880000pt;}
.y9{bottom:895.043200pt;}
.y64{bottom:897.274400pt;}
.ya5{bottom:897.760000pt;}
.y63{bottom:912.480000pt;}
.y8{bottom:914.400000pt;}
.ya4{bottom:914.880000pt;}
.yc0{bottom:915.676160pt;}
.y45{bottom:922.560000pt;}
.y2d{bottom:931.680000pt;}
.ya2{bottom:931.840000pt;}
.y60{bottom:938.716960pt;}
.ya3{bottom:938.720000pt;}
.y7{bottom:940.960000pt;}
.ya1{bottom:949.440000pt;}
.y44{bottom:950.080000pt;}
.y5f{bottom:961.757760pt;}
.ya0{bottom:967.200000pt;}
.y6{bottom:968.480000pt;}
.y43{bottom:977.760000pt;}
.y5e{bottom:984.639200pt;}
.y9e{bottom:984.800000pt;}
.y9f{bottom:991.680000pt;}
.y9d{bottom:1002.560000pt;}
.y5{bottom:1005.280000pt;}
.y5d{bottom:1007.680000pt;}
.y3{bottom:1023.680000pt;}
.y2{bottom:1042.080000pt;}
.y1{bottom:1060.480000pt;}
.y29{bottom:1077.333213pt;}
.y2a{bottom:1087.999880pt;}
.y2b{bottom:1098.666653pt;}
.h1a{height:15.200000pt;}
.h12{height:16.960000pt;}
.h11{height:16.961333pt;}
.h14{height:17.118667pt;}
.h13{height:17.120000pt;}
.h15{height:19.038667pt;}
.hf{height:19.040000pt;}
.h10{height:25.160625pt;}
.h16{height:25.177500pt;}
.h6{height:25.791875pt;}
.h17{height:30.558667pt;}
.hd{height:38.672812pt;}
.hc{height:38.698750pt;}
.hb{height:38.937500pt;}
.h7{height:39.905000pt;}
.h4{height:40.911250pt;}
.h3{height:43.375000pt;}
.h8{height:44.176910pt;}
.h1b{height:44.437500pt;}
.h2{height:44.468750pt;}
.h9{height:44.500000pt;}
.he{height:51.040000pt;}
.h5{height:54.114063pt;}
.ha{height:87.166667pt;}
.h18{height:793.760000pt;}
.h19{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:10.720000pt;}
.w2{width:76.000000pt;}
.w14{width:83.840000pt;}
.w6{width:88.000000pt;}
.w12{width:88.481333pt;}
.w10{width:94.560000pt;}
.w13{width:113.440000pt;}
.w11{width:118.080000pt;}
.w4{width:159.680000pt;}
.w3{width:170.720000pt;}
.wb{width:188.960000pt;}
.wf{width:197.280000pt;}
.w5{width:201.120000pt;}
.we{width:201.920000pt;}
.wc{width:212.640000pt;}
.w7{width:246.720000pt;}
.w8{width:406.400000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w9{width:1122.560000pt;}
.wa{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x12{left:4.640000pt;}
.x1a{left:5.760000pt;}
.x17{left:8.800000pt;}
.x4b{left:15.520000pt;}
.x4e{left:17.440000pt;}
.x1f{left:18.560000pt;}
.x22{left:23.360000pt;}
.x2d{left:24.800000pt;}
.x26{left:27.200000pt;}
.x48{left:30.080000pt;}
.x4f{left:31.200000pt;}
.x23{left:37.920000pt;}
.x1c{left:42.080000pt;}
.x25{left:44.000000pt;}
.x4d{left:45.280000pt;}
.x38{left:47.200000pt;}
.x24{left:49.440000pt;}
.x3c{left:51.200000pt;}
.x32{left:53.120000pt;}
.x2c{left:56.800000pt;}
.x45{left:58.720000pt;}
.x28{left:60.480000pt;}
.x1d{left:63.520000pt;}
.x39{left:67.840000pt;}
.x21{left:69.280000pt;}
.x1{left:72.000000pt;}
.x2{left:73.120000pt;}
.x2f{left:77.440000pt;}
.x29{left:81.120000pt;}
.x1e{left:84.160000pt;}
.x41{left:95.680000pt;}
.x4{left:96.800000pt;}
.x3f{left:98.240000pt;}
.xb{left:99.989293pt;}
.x52{left:105.600000pt;}
.xd{left:120.000000pt;}
.x2b{left:122.080000pt;}
.x3b{left:128.800000pt;}
.x31{left:137.760000pt;}
.x35{left:144.640000pt;}
.x13{left:148.000000pt;}
.x27{left:150.720000pt;}
.x34{left:158.400000pt;}
.x2a{left:189.120000pt;}
.x5{left:191.520000pt;}
.x3a{left:196.000000pt;}
.x30{left:204.800000pt;}
.xf{left:212.160000pt;}
.x3{left:213.440000pt;}
.x3e{left:216.320000pt;}
.x37{left:220.000000pt;}
.x33{left:225.440000pt;}
.x3d{left:283.360000pt;}
.x42{left:284.640000pt;}
.x36{left:287.040000pt;}
.xe{left:316.800000pt;}
.x16{left:318.720000pt;}
.xa{left:325.802520pt;}
.x6{left:329.280000pt;}
.x14{left:332.320000pt;}
.x15{left:345.121920pt;}
.x10{left:353.280000pt;}
.x51{left:359.520000pt;}
.x50{left:360.800000pt;}
.xc{left:367.040000pt;}
.x9{left:370.282733pt;}
.x11{left:372.000000pt;}
.x49{left:379.200000pt;}
.x7{left:396.800000pt;}
.x19{left:478.400000pt;}
.x43{left:497.280000pt;}
.x44{left:508.000000pt;}
.x18{left:508.960000pt;}
.x8{left:544.277187pt;}
.x40{left:583.997120pt;}
.x4a{left:596.480000pt;}
.x1b{left:679.520000pt;}
.x46{left:709.920000pt;}
.x47{left:720.640000pt;}
.x2e{left:737.600000pt;}
.x20{left:743.840000pt;}
.x4c{left:804.480000pt;}
}




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