
    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_28c6ba9b3a0a759719b1494c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_52ca44a3ae3c7663ff4935c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_2165b60596322cda74793ec0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.077637;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_d1cf35e942a9c18d9ae34ec8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_41db962559588a16a717198d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_55368fab6aab138a89f5ec26.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_6dc619a87892e30fff7f228f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a9d23200028112d640a71848.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_36d3c688f32885a9b9ad4abc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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;}
.m3{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(0.254944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v3{vertical-align:-90.720000px;}
.v2{vertical-align:-87.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls9{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.078000px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.468080px;}
.ls4{letter-spacing:746.796000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(196,89,17),0 0.015em rgb(196,89,17),0.015em 0 rgb(196,89,17),0 -0.015em  rgb(196,89,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(196,89,17);text-shadow:none;}
}
.ws0{word-spacing:-19.728000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws3{word-spacing:-16.272000px;}
.ws4{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.993280px;}
.ws1{word-spacing:-13.695581px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-12.240000px;}
._3{margin-left:-4.449674px;}
._21{margin-left:-2.885001px;}
._0{margin-left:-1.728000px;}
._2{width:1.781001px;}
._4{width:3.041569px;}
._e{width:4.824000px;}
._1b{width:5.832000px;}
._18{width:6.942999px;}
._17{width:7.992000px;}
._1a{width:9.840000px;}
._14{width:11.232000px;}
._13{width:13.032000px;}
._20{width:14.400000px;}
._16{width:15.552000px;}
._15{width:16.848000px;}
._9{width:19.152000px;}
._a{width:20.269998px;}
._8{width:22.176000px;}
._28{width:23.184000px;}
._f{width:24.264000px;}
._1e{width:25.344000px;}
._b{width:26.928000px;}
._19{width:28.800000px;}
._c{width:30.240000px;}
._5{width:31.536000px;}
._6{width:32.760000px;}
._10{width:33.805998px;}
._1c{width:35.352000px;}
._1d{width:36.973998px;}
._1f{width:38.228003px;}
._22{width:39.240000px;}
._23{width:40.476000px;}
._32{width:41.688000px;}
._26{width:42.912000px;}
._27{width:44.148000px;}
._25{width:45.720000px;}
._d{width:53.064000px;}
._11{width:59.760000px;}
._12{width:61.056000px;}
._2a{width:62.208000px;}
._29{width:63.432000px;}
._2e{width:102.168000px;}
._2d{width:103.608000px;}
._2c{width:135.360000px;}
._24{width:190.872000px;}
._31{width:241.128000px;}
._30{width:388.872000px;}
._1{width:431.998320px;}
._2b{width:615.024000px;}
._2f{width:721.152000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc0{color:rgb(196,89,17);}
.fs2{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:49.264682px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:3.240000px;}
.y9{bottom:3.330266px;}
.y45{bottom:3.600000px;}
.ycc{bottom:4.140000px;}
.y51{bottom:4.500000px;}
.y3e{bottom:4.860000px;}
.y49{bottom:7.920000px;}
.ya2{bottom:8.445000px;}
.ya3{bottom:8.805000px;}
.yb{bottom:9.180000px;}
.y9f{bottom:10.080000px;}
.ya0{bottom:10.440000px;}
.ya9{bottom:11.505000px;}
.yb6{bottom:11.520000px;}
.yb1{bottom:11.550000px;}
.yab{bottom:11.685000px;}
.yb2{bottom:11.700000px;}
.ye5{bottom:14.040000px;}
.ye6{bottom:14.400000px;}
.yd1{bottom:15.480000px;}
.y10{bottom:15.840000px;}
.ye9{bottom:17.460000px;}
.yd4{bottom:18.900000px;}
.yd5{bottom:19.260000px;}
.yd{bottom:19.980000px;}
.y44{bottom:21.600000px;}
.y9d{bottom:22.680000px;}
.ycb{bottom:24.840000px;}
.yec{bottom:25.200000px;}
.y50{bottom:26.100000px;}
.ycf{bottom:26.820000px;}
.yc{bottom:27.000000px;}
.yf{bottom:27.540000px;}
.y48{bottom:29.520000px;}
.y7{bottom:35.100000px;}
.yad{bottom:39.765000px;}
.yb4{bottom:39.780000px;}
.yaf{bottom:39.810000px;}
.y43{bottom:42.300000px;}
.y4f{bottom:44.100000px;}
.yca{bottom:45.570000px;}
.yce{bottom:47.520000px;}
.yd2{bottom:47.880000px;}
.y47{bottom:51.120000px;}
.y42{bottom:63.000000px;}
.y4e{bottom:64.800000px;}
.y11a{bottom:65.700000px;}
.ya7{bottom:68.385000px;}
.yd3{bottom:72.720000px;}
.y85{bottom:82.260000px;}
.y13c{bottom:82.800000px;}
.y41{bottom:83.700000px;}
.y4d{bottom:85.530000px;}
.y119{bottom:86.400000px;}
.ye7{bottom:91.800000px;}
.yea{bottom:92.160000px;}
.yb7{bottom:93.060000px;}
.y84{bottom:102.960000px;}
.y13b{bottom:103.500000px;}
.y3c{bottom:105.120000px;}
.y4c{bottom:105.870000px;}
.y118{bottom:107.460000px;}
.ycd{bottom:108.900000px;}
.yb3{bottom:110.160000px;}
.y83{bottom:123.660000px;}
.y13a{bottom:124.200000px;}
.y3b{bottom:125.820000px;}
.y117{bottom:128.160000px;}
.y4b{bottom:130.350000px;}
.y4a{bottom:138.420000px;}
.yb5{bottom:138.600000px;}
.yd0{bottom:141.300000px;}
.y82{bottom:144.360000px;}
.y139{bottom:144.900000px;}
.y3a{bottom:146.520000px;}
.y116{bottom:148.860000px;}
.y81{bottom:165.060000px;}
.y138{bottom:165.600000px;}
.y39{bottom:167.220000px;}
.y115{bottom:169.560000px;}
.yc9{bottom:173.700000px;}
.y80{bottom:185.400000px;}
.y137{bottom:186.300000px;}
.y38{bottom:187.920000px;}
.y114{bottom:190.260000px;}
.yb0{bottom:195.840000px;}
.y7f{bottom:206.130000px;}
.y136{bottom:207.030000px;}
.yde{bottom:207.105000px;}
.y37{bottom:208.650000px;}
.ydc{bottom:209.700000px;}
.y113{bottom:210.990000px;}
.ydb{bottom:212.250000px;}
.ydd{bottom:214.815000px;}
.ye3{bottom:217.335000px;}
.yda{bottom:219.930000px;}
.ydf{bottom:222.480000px;}
.yac{bottom:224.505000px;}
.y7e{bottom:227.190000px;}
.y135{bottom:227.730000px;}
.y36{bottom:229.350000px;}
.y112{bottom:231.690000px;}
.ye2{bottom:237.810000px;}
.yc8{bottom:243.030000px;}
.yd9{bottom:245.520000px;}
.y7d{bottom:247.890000px;}
.y134{bottom:248.430000px;}
.y35{bottom:250.050000px;}
.y111{bottom:252.390000px;}
.yae{bottom:252.945000px;}
.yc7{bottom:262.470000px;}
.y7c{bottom:268.590000px;}
.y133{bottom:269.130000px;}
.y34{bottom:270.750000px;}
.y110{bottom:273.090000px;}
.ye1{bottom:276.225000px;}
.ya6{bottom:281.565000px;}
.yc6{bottom:283.170000px;}
.y46{bottom:283.350000px;}
.y7b{bottom:289.290000px;}
.y132{bottom:289.830000px;}
.y33{bottom:291.450000px;}
.y10f{bottom:293.790000px;}
.yd7{bottom:299.265000px;}
.yc5{bottom:303.870000px;}
.y7a{bottom:309.990000px;}
.y131{bottom:310.170000px;}
.yaa{bottom:310.185000px;}
.y141{bottom:310.530000px;}
.y32{bottom:312.150000px;}
.y10e{bottom:314.490000px;}
.yd8{bottom:324.900000px;}
.yc4{bottom:324.930000px;}
.y79{bottom:330.690000px;}
.y130{bottom:330.870000px;}
.y140{bottom:331.230000px;}
.y31{bottom:332.850000px;}
.y10d{bottom:335.190000px;}
.ya8{bottom:338.805000px;}
.yc3{bottom:345.630000px;}
.y40{bottom:349.230000px;}
.y78{bottom:351.390000px;}
.y12f{bottom:351.930000px;}
.y30{bottom:353.550000px;}
.y10c{bottom:355.890000px;}
.yc2{bottom:366.330000px;}
.ya5{bottom:367.245000px;}
.ye0{bottom:370.950000px;}
.y77{bottom:372.090000px;}
.y12e{bottom:372.630000px;}
.y2f{bottom:374.250000px;}
.y10b{bottom:376.590000px;}
.yc1{bottom:387.030000px;}
.y76{bottom:392.790000px;}
.ya4{bottom:393.165000px;}
.y12d{bottom:393.330000px;}
.y2e{bottom:394.950000px;}
.y10a{bottom:397.290000px;}
.yc0{bottom:407.730000px;}
.y75{bottom:413.490000px;}
.y12c{bottom:414.030000px;}
.y2d{bottom:415.650000px;}
.y109{bottom:417.990000px;}
.ya1{bottom:418.905000px;}
.ybf{bottom:428.430000px;}
.y74{bottom:434.190000px;}
.y12b{bottom:434.370000px;}
.y13f{bottom:434.730000px;}
.y2c{bottom:436.350000px;}
.y108{bottom:438.690000px;}
.y9e{bottom:444.675000px;}
.ybe{bottom:449.175000px;}
.y3f{bottom:450.615000px;}
.y73{bottom:454.935000px;}
.y12a{bottom:455.475000px;}
.y107{bottom:459.435000px;}
.ybd{bottom:469.875000px;}
.y9c{bottom:472.035000px;}
.y3d{bottom:474.015000px;}
.y72{bottom:475.635000px;}
.y129{bottom:476.175000px;}
.y106{bottom:480.135000px;}
.ybc{bottom:490.575000px;}
.y71{bottom:496.335000px;}
.y128{bottom:496.515000px;}
.y13e{bottom:496.875000px;}
.y105{bottom:500.835000px;}
.y2b{bottom:501.555000px;}
.ybb{bottom:510.915000px;}
.y70{bottom:517.035000px;}
.y127{bottom:517.215000px;}
.y13d{bottom:517.575000px;}
.y9b{bottom:518.475000px;}
.y104{bottom:521.355000px;}
.y2a{bottom:522.255000px;}
.yba{bottom:531.615000px;}
.y6f{bottom:537.735000px;}
.y9a{bottom:537.915000px;}
.y126{bottom:538.275000px;}
.y103{bottom:542.055000px;}
.y29{bottom:542.595000px;}
.yb9{bottom:552.675000px;}
.y6e{bottom:558.435000px;}
.y99{bottom:558.615000px;}
.y125{bottom:558.975000px;}
.y102{bottom:562.755000px;}
.y28{bottom:563.655000px;}
.yb8{bottom:568.875000px;}
.yd6{bottom:571.320000px;}
.y6d{bottom:579.135000px;}
.y124{bottom:579.315000px;}
.y98{bottom:579.675000px;}
.y101{bottom:583.455000px;}
.y27{bottom:584.355000px;}
.y6c{bottom:599.835000px;}
.y97{bottom:600.375000px;}
.y100{bottom:604.155000px;}
.y26{bottom:604.695000px;}
.y6b{bottom:620.535000px;}
.y123{bottom:620.715000px;}
.y96{bottom:621.075000px;}
.yff{bottom:624.855000px;}
.y25{bottom:625.755000px;}
.y6a{bottom:641.235000px;}
.y122{bottom:641.415000px;}
.y95{bottom:641.775000px;}
.yfe{bottom:645.555000px;}
.y24{bottom:646.455000px;}
.y69{bottom:661.935000px;}
.y94{bottom:662.475000px;}
.yfd{bottom:666.255000px;}
.y23{bottom:666.795000px;}
.y68{bottom:682.665000px;}
.y93{bottom:683.205000px;}
.yfc{bottom:686.985000px;}
.y22{bottom:687.885000px;}
.y67{bottom:703.365000px;}
.y92{bottom:703.905000px;}
.yfb{bottom:707.685000px;}
.y21{bottom:708.585000px;}
.y66{bottom:724.065000px;}
.y91{bottom:724.245000px;}
.y121{bottom:724.605000px;}
.yfa{bottom:728.385000px;}
.y20{bottom:728.925000px;}
.y65{bottom:744.765000px;}
.y90{bottom:744.945000px;}
.y120{bottom:745.305000px;}
.yf9{bottom:749.085000px;}
.y1f{bottom:749.985000px;}
.y64{bottom:765.465000px;}
.y11f{bottom:765.645000px;}
.y8f{bottom:766.005000px;}
.yf8{bottom:769.785000px;}
.y1e{bottom:770.685000px;}
.y63{bottom:786.165000px;}
.y11e{bottom:786.345000px;}
.y8e{bottom:786.705000px;}
.yf7{bottom:790.485000px;}
.y1d{bottom:791.025000px;}
.y62{bottom:806.865000px;}
.y8d{bottom:807.405000px;}
.yf6{bottom:811.185000px;}
.y1c{bottom:812.085000px;}
.y61{bottom:827.565000px;}
.y8c{bottom:828.105000px;}
.yf5{bottom:831.885000px;}
.y1b{bottom:832.785000px;}
.y60{bottom:848.265000px;}
.y8b{bottom:848.805000px;}
.yf4{bottom:852.585000px;}
.y1a{bottom:853.125000px;}
.y5f{bottom:868.965000px;}
.y11d{bottom:869.145000px;}
.y8a{bottom:869.505000px;}
.yf3{bottom:873.285000px;}
.y19{bottom:874.185000px;}
.y5e{bottom:889.665000px;}
.y11c{bottom:889.845000px;}
.y89{bottom:890.205000px;}
.yf2{bottom:893.985000px;}
.y18{bottom:894.885000px;}
.y5d{bottom:910.365000px;}
.y88{bottom:910.950000px;}
.yf1{bottom:914.730000px;}
.y17{bottom:915.270000px;}
.y5c{bottom:930.750000px;}
.y87{bottom:931.650000px;}
.yf0{bottom:935.430000px;}
.y16{bottom:936.330000px;}
.y5b{bottom:951.630000px;}
.y86{bottom:952.350000px;}
.yef{bottom:956.130000px;}
.y15{bottom:957.030000px;}
.y5a{bottom:973.050000px;}
.yee{bottom:976.470000px;}
.y14{bottom:977.370000px;}
.y59{bottom:993.750000px;}
.yed{bottom:997.530000px;}
.y13{bottom:998.070000px;}
.y58{bottom:1014.450000px;}
.y12{bottom:1019.310000px;}
.y57{bottom:1035.150000px;}
.y11{bottom:1043.430000px;}
.yeb{bottom:1046.850000px;}
.y56{bottom:1055.850000px;}
.y6{bottom:1066.650000px;}
.y55{bottom:1076.550000px;}
.y5{bottom:1084.110000px;}
.ye8{bottom:1089.150000px;}
.y54{bottom:1097.250000px;}
.y4{bottom:1103.370000px;}
.y8{bottom:1110.215319px;}
.y53{bottom:1117.950000px;}
.ye4{bottom:1123.530000px;}
.y3{bottom:1133.430000px;}
.y11b{bottom:1138.290000px;}
.y52{bottom:1138.650000px;}
.y2{bottom:1150.920000px;}
.y1{bottom:1179.720000px;}
.ya{bottom:1219.140000px;}
.h7{height:15.648467px;}
.h1a{height:20.160000px;}
.h14{height:21.960000px;}
.h20{height:25.005000px;}
.h1f{height:25.041000px;}
.h1e{height:26.625000px;}
.h22{height:27.705000px;}
.h2a{height:27.718500px;}
.h26{height:27.756000px;}
.h23{height:27.885000px;}
.h29{height:27.898500px;}
.h27{height:27.900000px;}
.h30{height:30.630000px;}
.h34{height:31.665000px;}
.h2d{height:31.678500px;}
.h5{height:31.952109px;}
.h9{height:32.400000px;}
.hd{height:33.120000px;}
.h32{height:33.645000px;}
.h2e{height:35.458500px;}
.h1d{height:39.225000px;}
.hb{height:40.140000px;}
.h33{height:41.385000px;}
.h4{height:41.738906px;}
.hc{height:45.116367px;}
.h35{height:50.273438px;}
.h8{height:51.381523px;}
.h6{height:53.709961px;}
.h3{height:54.070312px;}
.h24{height:56.325000px;}
.h28{height:56.338500px;}
.h25{height:56.376000px;}
.h16{height:58.651172px;}
.hf{height:59.436914px;}
.h18{height:60.226875px;}
.h2b{height:62.136000px;}
.h2c{height:64.078500px;}
.h17{height:64.980000px;}
.h1b{height:67.824844px;}
.h1c{height:69.086250px;}
.h12{height:70.664062px;}
.ha{height:71.613281px;}
.h11{height:72.562500px;}
.he{height:73.722656px;}
.h2{height:81.105469px;}
.h13{height:81.736875px;}
.h10{height:84.898125px;}
.h21{height:84.945000px;}
.h15{height:100.656000px;}
.h31{height:108.345000px;}
.h19{height:144.216000px;}
.h2f{height:438.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:70.200000px;}
.w5{width:76.500000px;}
.w2{width:103.946873px;}
.we{width:112.860000px;}
.w11{width:131.970000px;}
.w10{width:148.521000px;}
.wd{width:149.422500px;}
.wf{width:162.750000px;}
.w3{width:193.320000px;}
.wc{width:205.770000px;}
.wb{width:243.379500px;}
.wa{width:255.840000px;}
.w7{width:263.595000px;}
.w6{width:418.755000px;}
.w4{width:442.980000px;}
.w9{width:449.164500px;}
.w12{width:699.660000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:8.100000px;}
.x9{left:9.540000px;}
.x7{left:11.281912px;}
.xa{left:15.120000px;}
.xb{left:22.860000px;}
.x11{left:49.500000px;}
.x1d{left:65.310000px;}
.x12{left:77.616000px;}
.x27{left:82.080000px;}
.x1e{left:130.065000px;}
.x2{left:135.036000px;}
.x15{left:136.476000px;}
.xd{left:144.756000px;}
.x28{left:146.805000px;}
.x1{left:148.536000px;}
.x3{left:172.110000px;}
.x10{left:177.870000px;}
.x2e{left:183.090000px;}
.x1f{left:194.790000px;}
.x29{left:211.575000px;}
.x20{left:259.560000px;}
.x2a{left:276.330000px;}
.x19{left:284.835000px;}
.x21{left:324.330000px;}
.xe{left:327.675000px;}
.xf{left:340.815000px;}
.x17{left:378.795000px;}
.x22{left:389.055000px;}
.x1a{left:397.695000px;}
.x2b{left:405.825000px;}
.x5{left:446.505000px;}
.x23{left:453.810000px;}
.x2c{left:470.595000px;}
.x24{left:518.580000px;}
.x6{left:524.083689px;}
.x1b{left:560.460000px;}
.x25{left:583.305000px;}
.x16{left:584.580000px;}
.x2d{left:600.090000px;}
.x4{left:629.970000px;}
.x26{left:648.075000px;}
.x8{left:652.213689px;}
.xc{left:682.740000px;}
.x14{left:687.240000px;}
.x1c{left:708.990000px;}
.x18{left:837.180000px;}
@media print{
.v3{vertical-align:-80.640000pt;}
.v2{vertical-align:-77.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.069333pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.304960pt;}
.ls4{letter-spacing:663.818667pt;}
.ws0{word-spacing:-17.536000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.327360pt;}
.ws1{word-spacing:-12.173850pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-10.880000pt;}
._3{margin-left:-3.955266pt;}
._21{margin-left:-2.564445pt;}
._0{margin-left:-1.536000pt;}
._2{width:1.583112pt;}
._4{width:2.703616pt;}
._e{width:4.288000pt;}
._1b{width:5.184000pt;}
._18{width:6.171555pt;}
._17{width:7.104000pt;}
._1a{width:8.746667pt;}
._14{width:9.984000pt;}
._13{width:11.584000pt;}
._20{width:12.800000pt;}
._16{width:13.824000pt;}
._15{width:14.976000pt;}
._9{width:17.024000pt;}
._a{width:18.017776pt;}
._8{width:19.712000pt;}
._28{width:20.608000pt;}
._f{width:21.568000pt;}
._1e{width:22.528000pt;}
._b{width:23.936000pt;}
._19{width:25.600000pt;}
._c{width:26.880000pt;}
._5{width:28.032000pt;}
._6{width:29.120000pt;}
._10{width:30.049776pt;}
._1c{width:31.424000pt;}
._1d{width:32.865776pt;}
._1f{width:33.980447pt;}
._22{width:34.880000pt;}
._23{width:35.978667pt;}
._32{width:37.056000pt;}
._26{width:38.144000pt;}
._27{width:39.242667pt;}
._25{width:40.640000pt;}
._d{width:47.168000pt;}
._11{width:53.120000pt;}
._12{width:54.272000pt;}
._2a{width:55.296000pt;}
._29{width:56.384000pt;}
._2e{width:90.816000pt;}
._2d{width:92.096000pt;}
._2c{width:120.320000pt;}
._24{width:169.664000pt;}
._31{width:214.336000pt;}
._30{width:345.664000pt;}
._1{width:383.998507pt;}
._2b{width:546.688000pt;}
._2f{width:641.024000pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:43.790828pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.880000pt;}
.y9{bottom:2.960237pt;}
.y45{bottom:3.200000pt;}
.ycc{bottom:3.680000pt;}
.y51{bottom:4.000000pt;}
.y3e{bottom:4.320000pt;}
.y49{bottom:7.040000pt;}
.ya2{bottom:7.506667pt;}
.ya3{bottom:7.826667pt;}
.yb{bottom:8.160000pt;}
.y9f{bottom:8.960000pt;}
.ya0{bottom:9.280000pt;}
.ya9{bottom:10.226667pt;}
.yb6{bottom:10.240000pt;}
.yb1{bottom:10.266667pt;}
.yab{bottom:10.386667pt;}
.yb2{bottom:10.400000pt;}
.ye5{bottom:12.480000pt;}
.ye6{bottom:12.800000pt;}
.yd1{bottom:13.760000pt;}
.y10{bottom:14.080000pt;}
.ye9{bottom:15.520000pt;}
.yd4{bottom:16.800000pt;}
.yd5{bottom:17.120000pt;}
.yd{bottom:17.760000pt;}
.y44{bottom:19.200000pt;}
.y9d{bottom:20.160000pt;}
.ycb{bottom:22.080000pt;}
.yec{bottom:22.400000pt;}
.y50{bottom:23.200000pt;}
.ycf{bottom:23.840000pt;}
.yc{bottom:24.000000pt;}
.yf{bottom:24.480000pt;}
.y48{bottom:26.240000pt;}
.y7{bottom:31.200000pt;}
.yad{bottom:35.346667pt;}
.yb4{bottom:35.360000pt;}
.yaf{bottom:35.386667pt;}
.y43{bottom:37.600000pt;}
.y4f{bottom:39.200000pt;}
.yca{bottom:40.506667pt;}
.yce{bottom:42.240000pt;}
.yd2{bottom:42.560000pt;}
.y47{bottom:45.440000pt;}
.y42{bottom:56.000000pt;}
.y4e{bottom:57.600000pt;}
.y11a{bottom:58.400000pt;}
.ya7{bottom:60.786667pt;}
.yd3{bottom:64.640000pt;}
.y85{bottom:73.120000pt;}
.y13c{bottom:73.600000pt;}
.y41{bottom:74.400000pt;}
.y4d{bottom:76.026667pt;}
.y119{bottom:76.800000pt;}
.ye7{bottom:81.600000pt;}
.yea{bottom:81.920000pt;}
.yb7{bottom:82.720000pt;}
.y84{bottom:91.520000pt;}
.y13b{bottom:92.000000pt;}
.y3c{bottom:93.440000pt;}
.y4c{bottom:94.106667pt;}
.y118{bottom:95.520000pt;}
.ycd{bottom:96.800000pt;}
.yb3{bottom:97.920000pt;}
.y83{bottom:109.920000pt;}
.y13a{bottom:110.400000pt;}
.y3b{bottom:111.840000pt;}
.y117{bottom:113.920000pt;}
.y4b{bottom:115.866667pt;}
.y4a{bottom:123.040000pt;}
.yb5{bottom:123.200000pt;}
.yd0{bottom:125.600000pt;}
.y82{bottom:128.320000pt;}
.y139{bottom:128.800000pt;}
.y3a{bottom:130.240000pt;}
.y116{bottom:132.320000pt;}
.y81{bottom:146.720000pt;}
.y138{bottom:147.200000pt;}
.y39{bottom:148.640000pt;}
.y115{bottom:150.720000pt;}
.yc9{bottom:154.400000pt;}
.y80{bottom:164.800000pt;}
.y137{bottom:165.600000pt;}
.y38{bottom:167.040000pt;}
.y114{bottom:169.120000pt;}
.yb0{bottom:174.080000pt;}
.y7f{bottom:183.226667pt;}
.y136{bottom:184.026667pt;}
.yde{bottom:184.093333pt;}
.y37{bottom:185.466667pt;}
.ydc{bottom:186.400000pt;}
.y113{bottom:187.546667pt;}
.ydb{bottom:188.666667pt;}
.ydd{bottom:190.946667pt;}
.ye3{bottom:193.186667pt;}
.yda{bottom:195.493333pt;}
.ydf{bottom:197.760000pt;}
.yac{bottom:199.560000pt;}
.y7e{bottom:201.946667pt;}
.y135{bottom:202.426667pt;}
.y36{bottom:203.866667pt;}
.y112{bottom:205.946667pt;}
.ye2{bottom:211.386667pt;}
.yc8{bottom:216.026667pt;}
.yd9{bottom:218.240000pt;}
.y7d{bottom:220.346667pt;}
.y134{bottom:220.826667pt;}
.y35{bottom:222.266667pt;}
.y111{bottom:224.346667pt;}
.yae{bottom:224.840000pt;}
.yc7{bottom:233.306667pt;}
.y7c{bottom:238.746667pt;}
.y133{bottom:239.226667pt;}
.y34{bottom:240.666667pt;}
.y110{bottom:242.746667pt;}
.ye1{bottom:245.533333pt;}
.ya6{bottom:250.280000pt;}
.yc6{bottom:251.706667pt;}
.y46{bottom:251.866667pt;}
.y7b{bottom:257.146667pt;}
.y132{bottom:257.626667pt;}
.y33{bottom:259.066667pt;}
.y10f{bottom:261.146667pt;}
.yd7{bottom:266.013333pt;}
.yc5{bottom:270.106667pt;}
.y7a{bottom:275.546667pt;}
.y131{bottom:275.706667pt;}
.yaa{bottom:275.720000pt;}
.y141{bottom:276.026667pt;}
.y32{bottom:277.466667pt;}
.y10e{bottom:279.546667pt;}
.yd8{bottom:288.800000pt;}
.yc4{bottom:288.826667pt;}
.y79{bottom:293.946667pt;}
.y130{bottom:294.106667pt;}
.y140{bottom:294.426667pt;}
.y31{bottom:295.866667pt;}
.y10d{bottom:297.946667pt;}
.ya8{bottom:301.160000pt;}
.yc3{bottom:307.226667pt;}
.y40{bottom:310.426667pt;}
.y78{bottom:312.346667pt;}
.y12f{bottom:312.826667pt;}
.y30{bottom:314.266667pt;}
.y10c{bottom:316.346667pt;}
.yc2{bottom:325.626667pt;}
.ya5{bottom:326.440000pt;}
.ye0{bottom:329.733333pt;}
.y77{bottom:330.746667pt;}
.y12e{bottom:331.226667pt;}
.y2f{bottom:332.666667pt;}
.y10b{bottom:334.746667pt;}
.yc1{bottom:344.026667pt;}
.y76{bottom:349.146667pt;}
.ya4{bottom:349.480000pt;}
.y12d{bottom:349.626667pt;}
.y2e{bottom:351.066667pt;}
.y10a{bottom:353.146667pt;}
.yc0{bottom:362.426667pt;}
.y75{bottom:367.546667pt;}
.y12c{bottom:368.026667pt;}
.y2d{bottom:369.466667pt;}
.y109{bottom:371.546667pt;}
.ya1{bottom:372.360000pt;}
.ybf{bottom:380.826667pt;}
.y74{bottom:385.946667pt;}
.y12b{bottom:386.106667pt;}
.y13f{bottom:386.426667pt;}
.y2c{bottom:387.866667pt;}
.y108{bottom:389.946667pt;}
.y9e{bottom:395.266667pt;}
.ybe{bottom:399.266667pt;}
.y3f{bottom:400.546667pt;}
.y73{bottom:404.386667pt;}
.y12a{bottom:404.866667pt;}
.y107{bottom:408.386667pt;}
.ybd{bottom:417.666667pt;}
.y9c{bottom:419.586667pt;}
.y3d{bottom:421.346667pt;}
.y72{bottom:422.786667pt;}
.y129{bottom:423.266667pt;}
.y106{bottom:426.786667pt;}
.ybc{bottom:436.066667pt;}
.y71{bottom:441.186667pt;}
.y128{bottom:441.346667pt;}
.y13e{bottom:441.666667pt;}
.y105{bottom:445.186667pt;}
.y2b{bottom:445.826667pt;}
.ybb{bottom:454.146667pt;}
.y70{bottom:459.586667pt;}
.y127{bottom:459.746667pt;}
.y13d{bottom:460.066667pt;}
.y9b{bottom:460.866667pt;}
.y104{bottom:463.426667pt;}
.y2a{bottom:464.226667pt;}
.yba{bottom:472.546667pt;}
.y6f{bottom:477.986667pt;}
.y9a{bottom:478.146667pt;}
.y126{bottom:478.466667pt;}
.y103{bottom:481.826667pt;}
.y29{bottom:482.306667pt;}
.yb9{bottom:491.266667pt;}
.y6e{bottom:496.386667pt;}
.y99{bottom:496.546667pt;}
.y125{bottom:496.866667pt;}
.y102{bottom:500.226667pt;}
.y28{bottom:501.026667pt;}
.yb8{bottom:505.666667pt;}
.yd6{bottom:507.840000pt;}
.y6d{bottom:514.786667pt;}
.y124{bottom:514.946667pt;}
.y98{bottom:515.266667pt;}
.y101{bottom:518.626667pt;}
.y27{bottom:519.426667pt;}
.y6c{bottom:533.186667pt;}
.y97{bottom:533.666667pt;}
.y100{bottom:537.026667pt;}
.y26{bottom:537.506667pt;}
.y6b{bottom:551.586667pt;}
.y123{bottom:551.746667pt;}
.y96{bottom:552.066667pt;}
.yff{bottom:555.426667pt;}
.y25{bottom:556.226667pt;}
.y6a{bottom:569.986667pt;}
.y122{bottom:570.146667pt;}
.y95{bottom:570.466667pt;}
.yfe{bottom:573.826667pt;}
.y24{bottom:574.626667pt;}
.y69{bottom:588.386667pt;}
.y94{bottom:588.866667pt;}
.yfd{bottom:592.226667pt;}
.y23{bottom:592.706667pt;}
.y68{bottom:606.813333pt;}
.y93{bottom:607.293333pt;}
.yfc{bottom:610.653333pt;}
.y22{bottom:611.453333pt;}
.y67{bottom:625.213333pt;}
.y92{bottom:625.693333pt;}
.yfb{bottom:629.053333pt;}
.y21{bottom:629.853333pt;}
.y66{bottom:643.613333pt;}
.y91{bottom:643.773333pt;}
.y121{bottom:644.093333pt;}
.yfa{bottom:647.453333pt;}
.y20{bottom:647.933333pt;}
.y65{bottom:662.013333pt;}
.y90{bottom:662.173333pt;}
.y120{bottom:662.493333pt;}
.yf9{bottom:665.853333pt;}
.y1f{bottom:666.653333pt;}
.y64{bottom:680.413333pt;}
.y11f{bottom:680.573333pt;}
.y8f{bottom:680.893333pt;}
.yf8{bottom:684.253333pt;}
.y1e{bottom:685.053333pt;}
.y63{bottom:698.813333pt;}
.y11e{bottom:698.973333pt;}
.y8e{bottom:699.293333pt;}
.yf7{bottom:702.653333pt;}
.y1d{bottom:703.133333pt;}
.y62{bottom:717.213333pt;}
.y8d{bottom:717.693333pt;}
.yf6{bottom:721.053333pt;}
.y1c{bottom:721.853333pt;}
.y61{bottom:735.613333pt;}
.y8c{bottom:736.093333pt;}
.yf5{bottom:739.453333pt;}
.y1b{bottom:740.253333pt;}
.y60{bottom:754.013333pt;}
.y8b{bottom:754.493333pt;}
.yf4{bottom:757.853333pt;}
.y1a{bottom:758.333333pt;}
.y5f{bottom:772.413333pt;}
.y11d{bottom:772.573333pt;}
.y8a{bottom:772.893333pt;}
.yf3{bottom:776.253333pt;}
.y19{bottom:777.053333pt;}
.y5e{bottom:790.813333pt;}
.y11c{bottom:790.973333pt;}
.y89{bottom:791.293333pt;}
.yf2{bottom:794.653333pt;}
.y18{bottom:795.453333pt;}
.y5d{bottom:809.213333pt;}
.y88{bottom:809.733333pt;}
.yf1{bottom:813.093333pt;}
.y17{bottom:813.573333pt;}
.y5c{bottom:827.333333pt;}
.y87{bottom:828.133333pt;}
.yf0{bottom:831.493333pt;}
.y16{bottom:832.293333pt;}
.y5b{bottom:845.893333pt;}
.y86{bottom:846.533333pt;}
.yef{bottom:849.893333pt;}
.y15{bottom:850.693333pt;}
.y5a{bottom:864.933333pt;}
.yee{bottom:867.973333pt;}
.y14{bottom:868.773333pt;}
.y59{bottom:883.333333pt;}
.yed{bottom:886.693333pt;}
.y13{bottom:887.173333pt;}
.y58{bottom:901.733333pt;}
.y12{bottom:906.053333pt;}
.y57{bottom:920.133333pt;}
.y11{bottom:927.493333pt;}
.yeb{bottom:930.533333pt;}
.y56{bottom:938.533333pt;}
.y6{bottom:948.133333pt;}
.y55{bottom:956.933333pt;}
.y5{bottom:963.653333pt;}
.ye8{bottom:968.133333pt;}
.y54{bottom:975.333333pt;}
.y4{bottom:980.773333pt;}
.y8{bottom:986.858061pt;}
.y53{bottom:993.733333pt;}
.ye4{bottom:998.693333pt;}
.y3{bottom:1007.493333pt;}
.y11b{bottom:1011.813333pt;}
.y52{bottom:1012.133333pt;}
.y2{bottom:1023.040000pt;}
.y1{bottom:1048.640000pt;}
.ya{bottom:1083.680000pt;}
.h7{height:13.909749pt;}
.h1a{height:17.920000pt;}
.h14{height:19.520000pt;}
.h20{height:22.226667pt;}
.h1f{height:22.258667pt;}
.h1e{height:23.666667pt;}
.h22{height:24.626667pt;}
.h2a{height:24.638667pt;}
.h26{height:24.672000pt;}
.h23{height:24.786667pt;}
.h29{height:24.798667pt;}
.h27{height:24.800000pt;}
.h30{height:27.226667pt;}
.h34{height:28.146667pt;}
.h2d{height:28.158667pt;}
.h5{height:28.401875pt;}
.h9{height:28.800000pt;}
.hd{height:29.440000pt;}
.h32{height:29.906667pt;}
.h2e{height:31.518667pt;}
.h1d{height:34.866667pt;}
.hb{height:35.680000pt;}
.h33{height:36.786667pt;}
.h4{height:37.101250pt;}
.hc{height:40.103437pt;}
.h35{height:44.687500pt;}
.h8{height:45.672465pt;}
.h6{height:47.742188pt;}
.h3{height:48.062500pt;}
.h24{height:50.066667pt;}
.h28{height:50.078667pt;}
.h25{height:50.112000pt;}
.h16{height:52.134375pt;}
.hf{height:52.832812pt;}
.h18{height:53.535000pt;}
.h2b{height:55.232000pt;}
.h2c{height:56.958667pt;}
.h17{height:57.760000pt;}
.h1b{height:60.288750pt;}
.h1c{height:61.410000pt;}
.h12{height:62.812500pt;}
.ha{height:63.656250pt;}
.h11{height:64.500000pt;}
.he{height:65.531250pt;}
.h2{height:72.093750pt;}
.h13{height:72.655000pt;}
.h10{height:75.465000pt;}
.h21{height:75.506667pt;}
.h15{height:89.472000pt;}
.h31{height:96.306667pt;}
.h19{height:128.192000pt;}
.h2f{height:389.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:62.400000pt;}
.w5{width:68.000000pt;}
.w2{width:92.397221pt;}
.we{width:100.320000pt;}
.w11{width:117.306667pt;}
.w10{width:132.018667pt;}
.wd{width:132.820000pt;}
.wf{width:144.666667pt;}
.w3{width:171.840000pt;}
.wc{width:182.906667pt;}
.wb{width:216.337333pt;}
.wa{width:227.413333pt;}
.w7{width:234.306667pt;}
.w6{width:372.226667pt;}
.w4{width:393.760000pt;}
.w9{width:399.257333pt;}
.w12{width:621.920000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.200000pt;}
.x9{left:8.480000pt;}
.x7{left:10.028367pt;}
.xa{left:13.440000pt;}
.xb{left:20.320000pt;}
.x11{left:44.000000pt;}
.x1d{left:58.053333pt;}
.x12{left:68.992000pt;}
.x27{left:72.960000pt;}
.x1e{left:115.613333pt;}
.x2{left:120.032000pt;}
.x15{left:121.312000pt;}
.xd{left:128.672000pt;}
.x28{left:130.493333pt;}
.x1{left:132.032000pt;}
.x3{left:152.986667pt;}
.x10{left:158.106667pt;}
.x2e{left:162.746667pt;}
.x1f{left:173.146667pt;}
.x29{left:188.066667pt;}
.x20{left:230.720000pt;}
.x2a{left:245.626667pt;}
.x19{left:253.186667pt;}
.x21{left:288.293333pt;}
.xe{left:291.266667pt;}
.xf{left:302.946667pt;}
.x17{left:336.706667pt;}
.x22{left:345.826667pt;}
.x1a{left:353.506667pt;}
.x2b{left:360.733333pt;}
.x5{left:396.893333pt;}
.x23{left:403.386667pt;}
.x2c{left:418.306667pt;}
.x24{left:460.960000pt;}
.x6{left:465.852168pt;}
.x1b{left:498.186667pt;}
.x25{left:518.493333pt;}
.x16{left:519.626667pt;}
.x2d{left:533.413333pt;}
.x4{left:559.973333pt;}
.x26{left:576.066667pt;}
.x8{left:579.745501pt;}
.xc{left:606.880000pt;}
.x14{left:610.880000pt;}
.x1c{left:630.213333pt;}
.x18{left:744.160000pt;}
}




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