
    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_0a20ee0dee42a0dec38f927e.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_20e559631f2400321664632d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6d793b77575d331e0a4b3b74.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.860352;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_8fda7521c53ddd9768718030.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_74608b62590a3adfc1f5078b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b38adbd0c20b494f99e2b691.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9aa972f4ec44c04f52cdde4b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e89a5744267c3d496c5d3742.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_97343b11c2138a963ab0455b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.915527;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_8085f888ed3b107569280484.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m1{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);}
.v2{vertical-align:-81.000000px;}
.v4{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v5{vertical-align:27.120000px;}
.v1{vertical-align:33.000000px;}
.ls11{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.192000px;}
.ls6{letter-spacing:-0.168000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.024000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.018600px;}
.lsf{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.030000px;}
.ls2{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.168000px;}
.lsc{letter-spacing:0.180000px;}
.lse{letter-spacing:0.192000px;}
.ls10{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.456000px;}
.ls4{letter-spacing:1.860000px;}
.ls3{letter-spacing:6.000000px;}
.ls7{letter-spacing:6.528000px;}
.ls8{letter-spacing:6.600000px;}
.lsb{letter-spacing:7.284000px;}
.ls12{letter-spacing:71.520000px;}
.ls15{letter-spacing:155.280000px;}
.ls16{letter-spacing:155.340000px;}
.ls14{letter-spacing:155.400000px;}
.ls1a{letter-spacing:449.160000px;}
.ls19{letter-spacing:449.340000px;}
.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;}
}
.ws9{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.192000px;}
.ws3{word-spacing:-18.168000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.976000px;}
.ws4{word-spacing:-17.832000px;}
.wsa{word-spacing:-17.808000px;}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.880000px;}
.ws10{word-spacing:-13.800000px;}
.wsb{word-spacing:-13.740000px;}
.wse{word-spacing:-13.200000px;}
.wsf{word-spacing:-13.056000px;}
.ws7{word-spacing:-12.000000px;}
.wsc{word-spacing:-9.103800px;}
.wsd{word-spacing:-7.500000px;}
.ws0{word-spacing:0.000000px;}
._1e{margin-left:-2.166000px;}
._0{margin-left:-1.092000px;}
._1{width:1.086000px;}
._3{width:2.520000px;}
._2{width:3.738000px;}
._4{width:5.544000px;}
._5{width:6.792000px;}
._b{width:8.352000px;}
._c{width:9.426000px;}
._d{width:11.022000px;}
._11{width:12.096000px;}
._6{width:13.104000px;}
._a{width:14.988000px;}
._9{width:16.128000px;}
._14{width:19.224000px;}
._15{width:20.586000px;}
._16{width:21.960000px;}
._12{width:23.040000px;}
._18{width:27.156000px;}
._17{width:28.212000px;}
._19{width:29.304000px;}
._7{width:30.528000px;}
._8{width:31.908000px;}
._13{width:33.552000px;}
._e{width:34.848000px;}
._f{width:36.072000px;}
._10{width:37.404000px;}
._1d{width:133.620000px;}
._1c{width:149.040000px;}
._1b{width:171.120000px;}
._1a{width:186.120000px;}
._20{width:464.520000px;}
._1f{width:480.000000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.000000px;}
.fs8{font-size:39.000000px;}
.fs6{font-size:40.200000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y11e{bottom:2.550000px;}
.yf2{bottom:2.700000px;}
.yf0{bottom:2.715000px;}
.ybb{bottom:2.850000px;}
.yc2{bottom:3.000000px;}
.yd1{bottom:3.015000px;}
.ybd{bottom:3.150000px;}
.ycd{bottom:3.165000px;}
.ybe{bottom:3.300000px;}
.yce{bottom:3.315000px;}
.yb5{bottom:3.750000px;}
.y8e{bottom:9.075000px;}
.yb7{bottom:9.750000px;}
.yb2{bottom:10.050000px;}
.y8f{bottom:14.025000px;}
.yb0{bottom:15.300000px;}
.yba{bottom:16.650000px;}
.y7d{bottom:19.200000px;}
.yb4{bottom:21.000000px;}
.y7f{bottom:30.195000px;}
.y8c{bottom:36.825000px;}
.yae{bottom:38.100000px;}
.y7b{bottom:54.495000px;}
.y84{bottom:56.325000px;}
.ya8{bottom:57.600000px;}
.y70{bottom:73.995000px;}
.y85{bottom:97.575000px;}
.y71{bottom:100.050000px;}
.y7e{bottom:103.050000px;}
.y5b{bottom:115.237500px;}
.ya9{bottom:117.750000px;}
.y129{bottom:124.987500px;}
.y72{bottom:126.120000px;}
.ya6{bottom:134.437500px;}
.y6b{bottom:136.237500px;}
.y2f{bottom:138.337500px;}
.y86{bottom:138.825000px;}
.y48{bottom:146.737500px;}
.yee{bottom:147.037500px;}
.y15{bottom:151.095000px;}
.y73{bottom:152.145000px;}
.y5a{bottom:156.645000px;}
.y128{bottom:163.395000px;}
.y136{bottom:167.295000px;}
.ya5{bottom:173.295000px;}
.y6a{bottom:175.545000px;}
.yaa{bottom:177.870000px;}
.y74{bottom:178.200000px;}
.y2e{bottom:179.745000px;}
.y87{bottom:180.075000px;}
.yed{bottom:185.895000px;}
.y47{bottom:188.145000px;}
.y14{bottom:195.495000px;}
.y59{bottom:198.045000px;}
.y69{bottom:199.395000px;}
.y127{bottom:202.245000px;}
.y75{bottom:204.225000px;}
.y135{bottom:205.695000px;}
.ya4{bottom:211.995000px;}
.y2d{bottom:221.145000px;}
.y88{bottom:221.295000px;}
.y134{bottom:223.095000px;}
.yec{bottom:224.745000px;}
.y4f{bottom:229.095000px;}
.y46{bottom:229.545000px;}
.y6e{bottom:230.070000px;}
.y76{bottom:230.295000px;}
.y83{bottom:233.700000px;}
.y68{bottom:233.895000px;}
.y133{bottom:236.880000px;}
.yab{bottom:237.975000px;}
.y58{bottom:239.445000px;}
.y13{bottom:240.045000px;}
.y126{bottom:240.945000px;}
.y6d{bottom:245.520000px;}
.y80{bottom:250.200000px;}
.y132{bottom:250.695000px;}
.ya3{bottom:250.845000px;}
.y77{bottom:256.320000px;}
.y2c{bottom:262.545000px;}
.yeb{bottom:263.445000px;}
.y131{bottom:264.495000px;}
.y4d{bottom:270.495000px;}
.y45{bottom:270.945000px;}
.ya2{bottom:271.245000px;}
.y130{bottom:278.295000px;}
.y125{bottom:279.795000px;}
.y57{bottom:280.845000px;}
.y78{bottom:282.375000px;}
.y12{bottom:284.445000px;}
.y12f{bottom:292.095000px;}
.ya1{bottom:292.995000px;}
.y82{bottom:294.945000px;}
.yac{bottom:298.125000px;}
.yea{bottom:302.295000px;}
.y2b{bottom:303.495000px;}
.y89{bottom:303.795000px;}
.y12e{bottom:305.880000px;}
.ya0{bottom:306.795000px;}
.y79{bottom:308.400000px;}
.y4c{bottom:311.895000px;}
.y44{bottom:312.345000px;}
.y81{bottom:313.245000px;}
.y9f{bottom:316.095000px;}
.y124{bottom:318.645000px;}
.y12d{bottom:319.695000px;}
.y56{bottom:322.245000px;}
.y11{bottom:328.995000px;}
.y9e{bottom:333.345000px;}
.y12c{bottom:333.495000px;}
.y7a{bottom:334.470000px;}
.ye9{bottom:341.145000px;}
.y2a{bottom:344.895000px;}
.y8a{bottom:345.045000px;}
.y12b{bottom:347.295000px;}
.y9d{bottom:350.595000px;}
.yb6{bottom:351.945000px;}
.y43{bottom:353.745000px;}
.y123{bottom:357.495000px;}
.yad{bottom:358.245000px;}
.y12a{bottom:361.095000px;}
.y55{bottom:363.645000px;}
.y9c{bottom:367.845000px;}
.y10{bottom:373.425000px;}
.y122{bottom:374.925000px;}
.ye8{bottom:379.875000px;}
.yb3{bottom:382.575000px;}
.y9b{bottom:385.125000px;}
.y8b{bottom:386.250000px;}
.y29{bottom:386.775000px;}
.y121{bottom:388.725000px;}
.y54{bottom:394.725000px;}
.y42{bottom:395.175000px;}
.y8d{bottom:395.250000px;}
.y9a{bottom:402.375000px;}
.y120{bottom:402.525000px;}
.y11f{bottom:416.325000px;}
.yb1{bottom:417.075000px;}
.yf{bottom:417.975000px;}
.ye7{bottom:418.725000px;}
.y99{bottom:419.625000px;}
.y53{bottom:425.775000px;}
.y28{bottom:427.725000px;}
.y11d{bottom:430.125000px;}
.y41{bottom:436.575000px;}
.y98{bottom:436.875000px;}
.y11c{bottom:443.775000px;}
.y52{bottom:456.825000px;}
.ye6{bottom:457.575000px;}
.ye{bottom:462.375000px;}
.y62{bottom:462.975000px;}
.y27{bottom:469.575000px;}
.y11b{bottom:471.375000px;}
.y97{bottom:472.875000px;}
.y4e{bottom:477.525000px;}
.y40{bottom:477.975000px;}
.y11a{bottom:485.175000px;}
.y51{bottom:487.875000px;}
.ye5{bottom:496.275000px;}
.y96{bottom:496.725000px;}
.y119{bottom:498.975000px;}
.y61{bottom:503.925000px;}
.yd{bottom:506.925000px;}
.y26{bottom:510.975000px;}
.y118{bottom:512.775000px;}
.y50{bottom:518.925000px;}
.y3f{bottom:519.375000px;}
.y60{bottom:524.475000px;}
.y117{bottom:526.575000px;}
.y95{bottom:535.125000px;}
.y116{bottom:540.375000px;}
.yc{bottom:551.325000px;}
.ye4{bottom:552.075000px;}
.y25{bottom:552.375000px;}
.y115{bottom:554.175000px;}
.y3e{bottom:560.775000px;}
.ye3{bottom:566.775000px;}
.y114{bottom:567.975000px;}
.y94{bottom:573.975000px;}
.ye2{bottom:581.325000px;}
.y113{bottom:581.775000px;}
.y24{bottom:593.625000px;}
.y112{bottom:595.575000px;}
.yb{bottom:595.875000px;}
.ye1{bottom:596.025000px;}
.y3d{bottom:602.175000px;}
.y111{bottom:609.375000px;}
.ye0{bottom:610.725000px;}
.y93{bottom:612.675000px;}
.y110{bottom:623.175000px;}
.ydf{bottom:625.275000px;}
.y23{bottom:635.025000px;}
.y10f{bottom:636.975000px;}
.yde{bottom:639.975000px;}
.ya{bottom:640.425000px;}
.y3c{bottom:643.575000px;}
.y67{bottom:645.975000px;}
.y10e{bottom:650.775000px;}
.y92{bottom:651.525000px;}
.ydd{bottom:654.675000px;}
.y10d{bottom:664.575000px;}
.y66{bottom:666.675000px;}
.ydc{bottom:669.225000px;}
.y9{bottom:669.825000px;}
.y22{bottom:676.425000px;}
.y10c{bottom:678.375000px;}
.ydb{bottom:683.925000px;}
.y3b{bottom:684.975000px;}
.y65{bottom:687.375000px;}
.y91{bottom:690.825000px;}
.y10b{bottom:692.175000px;}
.yda{bottom:698.625000px;}
.y10a{bottom:705.975000px;}
.y64{bottom:708.075000px;}
.yd9{bottom:713.175000px;}
.y8{bottom:714.375000px;}
.y21{bottom:717.825000px;}
.y109{bottom:719.775000px;}
.ya7{bottom:725.100000px;}
.y90{bottom:725.175000px;}
.y3a{bottom:726.420000px;}
.yd8{bottom:727.920000px;}
.y108{bottom:733.620000px;}
.y6f{bottom:742.350000px;}
.y63{bottom:742.470000px;}
.yd7{bottom:742.620000px;}
.y107{bottom:747.420000px;}
.yd6{bottom:757.170000px;}
.y7{bottom:758.820000px;}
.y20{bottom:759.270000px;}
.y106{bottom:761.220000px;}
.y39{bottom:767.370000px;}
.y4b{bottom:767.820000px;}
.yd5{bottom:771.855000px;}
.y105{bottom:775.005000px;}
.yd4{bottom:786.570000px;}
.y104{bottom:788.820000px;}
.y6c{bottom:795.900000px;}
.y1f{bottom:800.220000px;}
.yd3{bottom:801.105000px;}
.y103{bottom:802.620000px;}
.y6{bottom:803.370000px;}
.y38{bottom:808.770000px;}
.y4a{bottom:809.220000px;}
.yd2{bottom:815.820000px;}
.y102{bottom:816.420000px;}
.yaf{bottom:821.100000px;}
.y101{bottom:830.220000px;}
.yd0{bottom:830.505000px;}
.y5{bottom:832.770000px;}
.y1e{bottom:841.620000px;}
.y100{bottom:844.005000px;}
.ycf{bottom:845.070000px;}
.y7c{bottom:847.800000px;}
.y37{bottom:850.620000px;}
.yff{bottom:857.820000px;}
.ycc{bottom:859.755000px;}
.yfe{bottom:871.620000px;}
.ycb{bottom:874.470000px;}
.y4{bottom:877.320000px;}
.y1d{bottom:879.270000px;}
.yfd{bottom:885.420000px;}
.yca{bottom:889.020000px;}
.y36{bottom:891.570000px;}
.y49{bottom:892.020000px;}
.yfc{bottom:899.220000px;}
.yc9{bottom:903.720000px;}
.yfb{bottom:913.005000px;}
.y1c{bottom:913.770000px;}
.yc8{bottom:918.420000px;}
.y3{bottom:920.220000px;}
.yfa{bottom:926.820000px;}
.yc7{bottom:932.970000px;}
.y35{bottom:933.420000px;}
.yf9{bottom:940.620000px;}
.yc6{bottom:947.670000px;}
.y1b{bottom:948.270000px;}
.yf8{bottom:954.420000px;}
.yc5{bottom:962.370000px;}
.y2{bottom:962.970000px;}
.yf7{bottom:968.220000px;}
.y34{bottom:974.820000px;}
.yc4{bottom:976.920000px;}
.yf6{bottom:982.005000px;}
.y1a{bottom:986.970000px;}
.yc3{bottom:991.620000px;}
.yf5{bottom:995.820000px;}
.y1{bottom:1001.220000px;}
.yc1{bottom:1006.320000px;}
.yf4{bottom:1009.620000px;}
.y5f{bottom:1015.770000px;}
.y33{bottom:1016.220000px;}
.yc0{bottom:1020.870000px;}
.yf3{bottom:1023.420000px;}
.y19{bottom:1027.920000px;}
.ybf{bottom:1035.570000px;}
.yf1{bottom:1037.220000px;}
.ybc{bottom:1050.120000px;}
.yef{bottom:1051.005000px;}
.y5e{bottom:1057.170000px;}
.y32{bottom:1057.620000px;}
.yb9{bottom:1065.570000px;}
.y18{bottom:1069.320000px;}
.y5d{bottom:1098.600000px;}
.y31{bottom:1099.050000px;}
.y17{bottom:1109.100000px;}
.yb8{bottom:1116.600000px;}
.y16{bottom:1136.850000px;}
.y5c{bottom:1139.850000px;}
.y30{bottom:1140.300000px;}
.h29{height:13.650000px;}
.h27{height:13.800000px;}
.h28{height:13.837500px;}
.h25{height:14.550000px;}
.h23{height:14.700000px;}
.h26{height:14.737500px;}
.h21{height:27.637500px;}
.h17{height:29.443359px;}
.h1b{height:29.700000px;}
.h1d{height:29.887500px;}
.h16{height:30.600000px;}
.h1a{height:31.800000px;}
.h1c{height:34.500000px;}
.h24{height:35.414062px;}
.h10{height:43.564453px;}
.hd{height:44.267578px;}
.h13{height:47.659277px;}
.hf{height:47.920898px;}
.h11{height:48.300000px;}
.h9{height:49.992188px;}
.h22{height:50.062500px;}
.hb{height:52.998047px;}
.h7{height:58.886719px;}
.h1f{height:60.468750px;}
.h3{height:60.990234px;}
.h20{height:65.276367px;}
.h1e{height:65.396367px;}
.h4{height:70.628906px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.h8{height:80.109375px;}
.h2{height:84.656250px;}
.h15{height:128.250000px;}
.he{height:206.250000px;}
.h19{height:235.500000px;}
.ha{height:260.400000px;}
.h12{height:329.850000px;}
.hc{height:390.450000px;}
.h18{height:392.700000px;}
.h14{height:407.850000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w12{width:73.050000px;}
.w1a{width:81.900000px;}
.w16{width:83.737500px;}
.w1e{width:85.500000px;}
.w19{width:94.800000px;}
.w10{width:95.700000px;}
.wf{width:95.737500px;}
.w17{width:95.850000px;}
.w1b{width:96.450000px;}
.w15{width:96.900000px;}
.w1d{width:98.850000px;}
.w4{width:121.500000px;}
.wb{width:125.550000px;}
.w8{width:127.500000px;}
.w18{width:132.187500px;}
.w6{width:133.950000px;}
.w5{width:136.800000px;}
.w11{width:139.537500px;}
.w14{width:139.837500px;}
.w9{width:142.500000px;}
.w13{width:143.250000px;}
.w1c{width:143.437500px;}
.w2{width:168.000000px;}
.wd{width:199.530000px;}
.wc{width:235.500000px;}
.we{width:404.025000px;}
.w3{width:607.500000px;}
.wa{width:627.750000px;}
.w7{width:637.800000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:8.100000px;}
.x28{left:9.195000px;}
.x1c{left:10.245000px;}
.x39{left:14.400000px;}
.x14{left:15.525000px;}
.x26{left:16.545000px;}
.x19{left:18.075000px;}
.x3c{left:19.200000px;}
.x32{left:23.400000px;}
.x37{left:26.550000px;}
.x4a{left:28.350000px;}
.x43{left:33.000000px;}
.x2d{left:34.650000px;}
.x3a{left:35.700000px;}
.x1a{left:36.825000px;}
.x3e{left:38.550000px;}
.x3f{left:41.850000px;}
.x34{left:43.200000px;}
.x45{left:44.550000px;}
.x1e{left:45.975000px;}
.x15{left:54.075000px;}
.x41{left:55.350000px;}
.x30{left:56.550000px;}
.x17{left:58.905000px;}
.x47{left:61.080000px;}
.x46{left:62.430000px;}
.x35{left:63.900000px;}
.x16{left:66.450000px;}
.x3d{left:68.250000px;}
.x1f{left:82.650000px;}
.x18{left:84.195000px;}
.x2a{left:99.795000px;}
.x29{left:119.550000px;}
.x2{left:127.650000px;}
.x24{left:132.600000px;}
.x6{left:136.087500px;}
.xf{left:140.437500px;}
.x20{left:148.500000px;}
.x25{left:153.600000px;}
.x4{left:154.830000px;}
.x23{left:158.430000px;}
.xc{left:170.280000px;}
.x48{left:193.245000px;}
.x13{left:212.550000px;}
.x33{left:214.695000px;}
.xa{left:222.345000px;}
.x9{left:228.945000px;}
.x1d{left:233.700000px;}
.x49{left:289.845000px;}
.x7{left:303.495000px;}
.xd{left:317.145000px;}
.x2b{left:319.095000px;}
.x40{left:329.895000px;}
.x10{left:340.845000px;}
.xb{left:344.745000px;}
.x36{left:357.945000px;}
.x27{left:364.050000px;}
.x12{left:366.780000px;}
.x1b{left:377.250000px;}
.x21{left:384.000000px;}
.x8{left:393.375000px;}
.x5{left:410.175000px;}
.x2e{left:414.825000px;}
.x4b{left:433.275000px;}
.x3{left:446.625000px;}
.x42{left:461.925000px;}
.x38{left:497.775000px;}
.x1{left:498.975000px;}
.x2f{left:510.525000px;}
.x4c{left:532.125000px;}
.x44{left:556.725000px;}
.x3b{left:594.675000px;}
.x31{left:650.070000px;}
.xe{left:735.255000px;}
.x22{left:760.470000px;}
.x11{left:765.570000px;}
@media print{
.v2{vertical-align:-72.000000pt;}
.v4{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v5{vertical-align:24.106667pt;}
.v1{vertical-align:29.333333pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.170667pt;}
.ls6{letter-spacing:-0.149333pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.016533pt;}
.lsf{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.026667pt;}
.ls2{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.149333pt;}
.lsc{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.170667pt;}
.ls10{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.405333pt;}
.ls4{letter-spacing:1.653333pt;}
.ls3{letter-spacing:5.333333pt;}
.ls7{letter-spacing:5.802667pt;}
.ls8{letter-spacing:5.866667pt;}
.lsb{letter-spacing:6.474667pt;}
.ls12{letter-spacing:63.573333pt;}
.ls15{letter-spacing:138.026667pt;}
.ls16{letter-spacing:138.080000pt;}
.ls14{letter-spacing:138.133333pt;}
.ls1a{letter-spacing:399.253333pt;}
.ls19{letter-spacing:399.413333pt;}
.ws9{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.170667pt;}
.ws3{word-spacing:-16.149333pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.978667pt;}
.ws4{word-spacing:-15.850667pt;}
.wsa{word-spacing:-15.829333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-13.226667pt;}
.ws10{word-spacing:-12.266667pt;}
.wsb{word-spacing:-12.213333pt;}
.wse{word-spacing:-11.733333pt;}
.wsf{word-spacing:-11.605333pt;}
.ws7{word-spacing:-10.666667pt;}
.wsc{word-spacing:-8.092267pt;}
.wsd{word-spacing:-6.666667pt;}
.ws0{word-spacing:0.000000pt;}
._1e{margin-left:-1.925333pt;}
._0{margin-left:-0.970667pt;}
._1{width:0.965333pt;}
._3{width:2.240000pt;}
._2{width:3.322667pt;}
._4{width:4.928000pt;}
._5{width:6.037333pt;}
._b{width:7.424000pt;}
._c{width:8.378667pt;}
._d{width:9.797333pt;}
._11{width:10.752000pt;}
._6{width:11.648000pt;}
._a{width:13.322667pt;}
._9{width:14.336000pt;}
._14{width:17.088000pt;}
._15{width:18.298667pt;}
._16{width:19.520000pt;}
._12{width:20.480000pt;}
._18{width:24.138667pt;}
._17{width:25.077333pt;}
._19{width:26.048000pt;}
._7{width:27.136000pt;}
._8{width:28.362667pt;}
._13{width:29.824000pt;}
._e{width:30.976000pt;}
._f{width:32.064000pt;}
._10{width:33.248000pt;}
._1d{width:118.773333pt;}
._1c{width:132.480000pt;}
._1b{width:152.106667pt;}
._1a{width:165.440000pt;}
._20{width:412.906667pt;}
._1f{width:426.666667pt;}
.fs7{font-size:26.666667pt;}
.fs8{font-size:34.666667pt;}
.fs6{font-size:35.733333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y11e{bottom:2.266667pt;}
.yf2{bottom:2.400000pt;}
.yf0{bottom:2.413333pt;}
.ybb{bottom:2.533333pt;}
.yc2{bottom:2.666667pt;}
.yd1{bottom:2.680000pt;}
.ybd{bottom:2.800000pt;}
.ycd{bottom:2.813333pt;}
.ybe{bottom:2.933333pt;}
.yce{bottom:2.946667pt;}
.yb5{bottom:3.333333pt;}
.y8e{bottom:8.066667pt;}
.yb7{bottom:8.666667pt;}
.yb2{bottom:8.933333pt;}
.y8f{bottom:12.466667pt;}
.yb0{bottom:13.600000pt;}
.yba{bottom:14.800000pt;}
.y7d{bottom:17.066667pt;}
.yb4{bottom:18.666667pt;}
.y7f{bottom:26.840000pt;}
.y8c{bottom:32.733333pt;}
.yae{bottom:33.866667pt;}
.y7b{bottom:48.440000pt;}
.y84{bottom:50.066667pt;}
.ya8{bottom:51.200000pt;}
.y70{bottom:65.773333pt;}
.y85{bottom:86.733333pt;}
.y71{bottom:88.933333pt;}
.y7e{bottom:91.600000pt;}
.y5b{bottom:102.433333pt;}
.ya9{bottom:104.666667pt;}
.y129{bottom:111.100000pt;}
.y72{bottom:112.106667pt;}
.ya6{bottom:119.500000pt;}
.y6b{bottom:121.100000pt;}
.y2f{bottom:122.966667pt;}
.y86{bottom:123.400000pt;}
.y48{bottom:130.433333pt;}
.yee{bottom:130.700000pt;}
.y15{bottom:134.306667pt;}
.y73{bottom:135.240000pt;}
.y5a{bottom:139.240000pt;}
.y128{bottom:145.240000pt;}
.y136{bottom:148.706667pt;}
.ya5{bottom:154.040000pt;}
.y6a{bottom:156.040000pt;}
.yaa{bottom:158.106667pt;}
.y74{bottom:158.400000pt;}
.y2e{bottom:159.773333pt;}
.y87{bottom:160.066667pt;}
.yed{bottom:165.240000pt;}
.y47{bottom:167.240000pt;}
.y14{bottom:173.773333pt;}
.y59{bottom:176.040000pt;}
.y69{bottom:177.240000pt;}
.y127{bottom:179.773333pt;}
.y75{bottom:181.533333pt;}
.y135{bottom:182.840000pt;}
.ya4{bottom:188.440000pt;}
.y2d{bottom:196.573333pt;}
.y88{bottom:196.706667pt;}
.y134{bottom:198.306667pt;}
.yec{bottom:199.773333pt;}
.y4f{bottom:203.640000pt;}
.y46{bottom:204.040000pt;}
.y6e{bottom:204.506667pt;}
.y76{bottom:204.706667pt;}
.y83{bottom:207.733333pt;}
.y68{bottom:207.906667pt;}
.y133{bottom:210.560000pt;}
.yab{bottom:211.533333pt;}
.y58{bottom:212.840000pt;}
.y13{bottom:213.373333pt;}
.y126{bottom:214.173333pt;}
.y6d{bottom:218.240000pt;}
.y80{bottom:222.400000pt;}
.y132{bottom:222.840000pt;}
.ya3{bottom:222.973333pt;}
.y77{bottom:227.840000pt;}
.y2c{bottom:233.373333pt;}
.yeb{bottom:234.173333pt;}
.y131{bottom:235.106667pt;}
.y4d{bottom:240.440000pt;}
.y45{bottom:240.840000pt;}
.ya2{bottom:241.106667pt;}
.y130{bottom:247.373333pt;}
.y125{bottom:248.706667pt;}
.y57{bottom:249.640000pt;}
.y78{bottom:251.000000pt;}
.y12{bottom:252.840000pt;}
.y12f{bottom:259.640000pt;}
.ya1{bottom:260.440000pt;}
.y82{bottom:262.173333pt;}
.yac{bottom:265.000000pt;}
.yea{bottom:268.706667pt;}
.y2b{bottom:269.773333pt;}
.y89{bottom:270.040000pt;}
.y12e{bottom:271.893333pt;}
.ya0{bottom:272.706667pt;}
.y79{bottom:274.133333pt;}
.y4c{bottom:277.240000pt;}
.y44{bottom:277.640000pt;}
.y81{bottom:278.440000pt;}
.y9f{bottom:280.973333pt;}
.y124{bottom:283.240000pt;}
.y12d{bottom:284.173333pt;}
.y56{bottom:286.440000pt;}
.y11{bottom:292.440000pt;}
.y9e{bottom:296.306667pt;}
.y12c{bottom:296.440000pt;}
.y7a{bottom:297.306667pt;}
.ye9{bottom:303.240000pt;}
.y2a{bottom:306.573333pt;}
.y8a{bottom:306.706667pt;}
.y12b{bottom:308.706667pt;}
.y9d{bottom:311.640000pt;}
.yb6{bottom:312.840000pt;}
.y43{bottom:314.440000pt;}
.y123{bottom:317.773333pt;}
.yad{bottom:318.440000pt;}
.y12a{bottom:320.973333pt;}
.y55{bottom:323.240000pt;}
.y9c{bottom:326.973333pt;}
.y10{bottom:331.933333pt;}
.y122{bottom:333.266667pt;}
.ye8{bottom:337.666667pt;}
.yb3{bottom:340.066667pt;}
.y9b{bottom:342.333333pt;}
.y8b{bottom:343.333333pt;}
.y29{bottom:343.800000pt;}
.y121{bottom:345.533333pt;}
.y54{bottom:350.866667pt;}
.y42{bottom:351.266667pt;}
.y8d{bottom:351.333333pt;}
.y9a{bottom:357.666667pt;}
.y120{bottom:357.800000pt;}
.y11f{bottom:370.066667pt;}
.yb1{bottom:370.733333pt;}
.yf{bottom:371.533333pt;}
.ye7{bottom:372.200000pt;}
.y99{bottom:373.000000pt;}
.y53{bottom:378.466667pt;}
.y28{bottom:380.200000pt;}
.y11d{bottom:382.333333pt;}
.y41{bottom:388.066667pt;}
.y98{bottom:388.333333pt;}
.y11c{bottom:394.466667pt;}
.y52{bottom:406.066667pt;}
.ye6{bottom:406.733333pt;}
.ye{bottom:411.000000pt;}
.y62{bottom:411.533333pt;}
.y27{bottom:417.400000pt;}
.y11b{bottom:419.000000pt;}
.y97{bottom:420.333333pt;}
.y4e{bottom:424.466667pt;}
.y40{bottom:424.866667pt;}
.y11a{bottom:431.266667pt;}
.y51{bottom:433.666667pt;}
.ye5{bottom:441.133333pt;}
.y96{bottom:441.533333pt;}
.y119{bottom:443.533333pt;}
.y61{bottom:447.933333pt;}
.yd{bottom:450.600000pt;}
.y26{bottom:454.200000pt;}
.y118{bottom:455.800000pt;}
.y50{bottom:461.266667pt;}
.y3f{bottom:461.666667pt;}
.y60{bottom:466.200000pt;}
.y117{bottom:468.066667pt;}
.y95{bottom:475.666667pt;}
.y116{bottom:480.333333pt;}
.yc{bottom:490.066667pt;}
.ye4{bottom:490.733333pt;}
.y25{bottom:491.000000pt;}
.y115{bottom:492.600000pt;}
.y3e{bottom:498.466667pt;}
.ye3{bottom:503.800000pt;}
.y114{bottom:504.866667pt;}
.y94{bottom:510.200000pt;}
.ye2{bottom:516.733333pt;}
.y113{bottom:517.133333pt;}
.y24{bottom:527.666667pt;}
.y112{bottom:529.400000pt;}
.yb{bottom:529.666667pt;}
.ye1{bottom:529.800000pt;}
.y3d{bottom:535.266667pt;}
.y111{bottom:541.666667pt;}
.ye0{bottom:542.866667pt;}
.y93{bottom:544.600000pt;}
.y110{bottom:553.933333pt;}
.ydf{bottom:555.800000pt;}
.y23{bottom:564.466667pt;}
.y10f{bottom:566.200000pt;}
.yde{bottom:568.866667pt;}
.ya{bottom:569.266667pt;}
.y3c{bottom:572.066667pt;}
.y67{bottom:574.200000pt;}
.y10e{bottom:578.466667pt;}
.y92{bottom:579.133333pt;}
.ydd{bottom:581.933333pt;}
.y10d{bottom:590.733333pt;}
.y66{bottom:592.600000pt;}
.ydc{bottom:594.866667pt;}
.y9{bottom:595.400000pt;}
.y22{bottom:601.266667pt;}
.y10c{bottom:603.000000pt;}
.ydb{bottom:607.933333pt;}
.y3b{bottom:608.866667pt;}
.y65{bottom:611.000000pt;}
.y91{bottom:614.066667pt;}
.y10b{bottom:615.266667pt;}
.yda{bottom:621.000000pt;}
.y10a{bottom:627.533333pt;}
.y64{bottom:629.400000pt;}
.yd9{bottom:633.933333pt;}
.y8{bottom:635.000000pt;}
.y21{bottom:638.066667pt;}
.y109{bottom:639.800000pt;}
.ya7{bottom:644.533333pt;}
.y90{bottom:644.600000pt;}
.y3a{bottom:645.706667pt;}
.yd8{bottom:647.040000pt;}
.y108{bottom:652.106667pt;}
.y6f{bottom:659.866667pt;}
.y63{bottom:659.973333pt;}
.yd7{bottom:660.106667pt;}
.y107{bottom:664.373333pt;}
.yd6{bottom:673.040000pt;}
.y7{bottom:674.506667pt;}
.y20{bottom:674.906667pt;}
.y106{bottom:676.640000pt;}
.y39{bottom:682.106667pt;}
.y4b{bottom:682.506667pt;}
.yd5{bottom:686.093333pt;}
.y105{bottom:688.893333pt;}
.yd4{bottom:699.173333pt;}
.y104{bottom:701.173333pt;}
.y6c{bottom:707.466667pt;}
.y1f{bottom:711.306667pt;}
.yd3{bottom:712.093333pt;}
.y103{bottom:713.440000pt;}
.y6{bottom:714.106667pt;}
.y38{bottom:718.906667pt;}
.y4a{bottom:719.306667pt;}
.yd2{bottom:725.173333pt;}
.y102{bottom:725.706667pt;}
.yaf{bottom:729.866667pt;}
.y101{bottom:737.973333pt;}
.yd0{bottom:738.226667pt;}
.y5{bottom:740.240000pt;}
.y1e{bottom:748.106667pt;}
.y100{bottom:750.226667pt;}
.ycf{bottom:751.173333pt;}
.y7c{bottom:753.600000pt;}
.y37{bottom:756.106667pt;}
.yff{bottom:762.506667pt;}
.ycc{bottom:764.226667pt;}
.yfe{bottom:774.773333pt;}
.ycb{bottom:777.306667pt;}
.y4{bottom:779.840000pt;}
.y1d{bottom:781.573333pt;}
.yfd{bottom:787.040000pt;}
.yca{bottom:790.240000pt;}
.y36{bottom:792.506667pt;}
.y49{bottom:792.906667pt;}
.yfc{bottom:799.306667pt;}
.yc9{bottom:803.306667pt;}
.yfb{bottom:811.560000pt;}
.y1c{bottom:812.240000pt;}
.yc8{bottom:816.373333pt;}
.y3{bottom:817.973333pt;}
.yfa{bottom:823.840000pt;}
.yc7{bottom:829.306667pt;}
.y35{bottom:829.706667pt;}
.yf9{bottom:836.106667pt;}
.yc6{bottom:842.373333pt;}
.y1b{bottom:842.906667pt;}
.yf8{bottom:848.373333pt;}
.yc5{bottom:855.440000pt;}
.y2{bottom:855.973333pt;}
.yf7{bottom:860.640000pt;}
.y34{bottom:866.506667pt;}
.yc4{bottom:868.373333pt;}
.yf6{bottom:872.893333pt;}
.y1a{bottom:877.306667pt;}
.yc3{bottom:881.440000pt;}
.yf5{bottom:885.173333pt;}
.y1{bottom:889.973333pt;}
.yc1{bottom:894.506667pt;}
.yf4{bottom:897.440000pt;}
.y5f{bottom:902.906667pt;}
.y33{bottom:903.306667pt;}
.yc0{bottom:907.440000pt;}
.yf3{bottom:909.706667pt;}
.y19{bottom:913.706667pt;}
.ybf{bottom:920.506667pt;}
.yf1{bottom:921.973333pt;}
.ybc{bottom:933.440000pt;}
.yef{bottom:934.226667pt;}
.y5e{bottom:939.706667pt;}
.y32{bottom:940.106667pt;}
.yb9{bottom:947.173333pt;}
.y18{bottom:950.506667pt;}
.y5d{bottom:976.533333pt;}
.y31{bottom:976.933333pt;}
.y17{bottom:985.866667pt;}
.yb8{bottom:992.533333pt;}
.y16{bottom:1010.533333pt;}
.y5c{bottom:1013.200000pt;}
.y30{bottom:1013.600000pt;}
.h29{height:12.133333pt;}
.h27{height:12.266667pt;}
.h28{height:12.300000pt;}
.h25{height:12.933333pt;}
.h23{height:13.066667pt;}
.h26{height:13.100000pt;}
.h21{height:24.566667pt;}
.h17{height:26.171875pt;}
.h1b{height:26.400000pt;}
.h1d{height:26.566667pt;}
.h16{height:27.200000pt;}
.h1a{height:28.266667pt;}
.h1c{height:30.666667pt;}
.h24{height:31.479167pt;}
.h10{height:38.723958pt;}
.hd{height:39.348958pt;}
.h13{height:42.363802pt;}
.hf{height:42.596354pt;}
.h11{height:42.933333pt;}
.h9{height:44.437500pt;}
.h22{height:44.500000pt;}
.hb{height:47.109375pt;}
.h7{height:52.343750pt;}
.h1f{height:53.750000pt;}
.h3{height:54.213542pt;}
.h20{height:58.023438pt;}
.h1e{height:58.130104pt;}
.h4{height:62.781250pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.h8{height:71.208333pt;}
.h2{height:75.250000pt;}
.h15{height:114.000000pt;}
.he{height:183.333333pt;}
.h19{height:209.333333pt;}
.ha{height:231.466667pt;}
.h12{height:293.200000pt;}
.hc{height:347.066667pt;}
.h18{height:349.066667pt;}
.h14{height:362.533333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w12{width:64.933333pt;}
.w1a{width:72.800000pt;}
.w16{width:74.433333pt;}
.w1e{width:76.000000pt;}
.w19{width:84.266667pt;}
.w10{width:85.066667pt;}
.wf{width:85.100000pt;}
.w17{width:85.200000pt;}
.w1b{width:85.733333pt;}
.w15{width:86.133333pt;}
.w1d{width:87.866667pt;}
.w4{width:108.000000pt;}
.wb{width:111.600000pt;}
.w8{width:113.333333pt;}
.w18{width:117.500000pt;}
.w6{width:119.066667pt;}
.w5{width:121.600000pt;}
.w11{width:124.033333pt;}
.w14{width:124.300000pt;}
.w9{width:126.666667pt;}
.w13{width:127.333333pt;}
.w1c{width:127.500000pt;}
.w2{width:149.333333pt;}
.wd{width:177.360000pt;}
.wc{width:209.333333pt;}
.we{width:359.133333pt;}
.w3{width:540.000000pt;}
.wa{width:558.000000pt;}
.w7{width:566.933333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:7.200000pt;}
.x28{left:8.173333pt;}
.x1c{left:9.106667pt;}
.x39{left:12.800000pt;}
.x14{left:13.800000pt;}
.x26{left:14.706667pt;}
.x19{left:16.066667pt;}
.x3c{left:17.066667pt;}
.x32{left:20.800000pt;}
.x37{left:23.600000pt;}
.x4a{left:25.200000pt;}
.x43{left:29.333333pt;}
.x2d{left:30.800000pt;}
.x3a{left:31.733333pt;}
.x1a{left:32.733333pt;}
.x3e{left:34.266667pt;}
.x3f{left:37.200000pt;}
.x34{left:38.400000pt;}
.x45{left:39.600000pt;}
.x1e{left:40.866667pt;}
.x15{left:48.066667pt;}
.x41{left:49.200000pt;}
.x30{left:50.266667pt;}
.x17{left:52.360000pt;}
.x47{left:54.293333pt;}
.x46{left:55.493333pt;}
.x35{left:56.800000pt;}
.x16{left:59.066667pt;}
.x3d{left:60.666667pt;}
.x1f{left:73.466667pt;}
.x18{left:74.840000pt;}
.x2a{left:88.706667pt;}
.x29{left:106.266667pt;}
.x2{left:113.466667pt;}
.x24{left:117.866667pt;}
.x6{left:120.966667pt;}
.xf{left:124.833333pt;}
.x20{left:132.000000pt;}
.x25{left:136.533333pt;}
.x4{left:137.626667pt;}
.x23{left:140.826667pt;}
.xc{left:151.360000pt;}
.x48{left:171.773333pt;}
.x13{left:188.933333pt;}
.x33{left:190.840000pt;}
.xa{left:197.640000pt;}
.x9{left:203.506667pt;}
.x1d{left:207.733333pt;}
.x49{left:257.640000pt;}
.x7{left:269.773333pt;}
.xd{left:281.906667pt;}
.x2b{left:283.640000pt;}
.x40{left:293.240000pt;}
.x10{left:302.973333pt;}
.xb{left:306.440000pt;}
.x36{left:318.173333pt;}
.x27{left:323.600000pt;}
.x12{left:326.026667pt;}
.x1b{left:335.333333pt;}
.x21{left:341.333333pt;}
.x8{left:349.666667pt;}
.x5{left:364.600000pt;}
.x2e{left:368.733333pt;}
.x4b{left:385.133333pt;}
.x3{left:397.000000pt;}
.x42{left:410.600000pt;}
.x38{left:442.466667pt;}
.x1{left:443.533333pt;}
.x2f{left:453.800000pt;}
.x4c{left:473.000000pt;}
.x44{left:494.866667pt;}
.x3b{left:528.600000pt;}
.x31{left:577.840000pt;}
.xe{left:653.560000pt;}
.x22{left:675.973333pt;}
.x11{left:680.506667pt;}
}




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