
    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_cd7b2cdf06ebf410f84c2dcf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6285e2d22cece4f845046d82.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b8fb8fc25021504153b7b101.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_7b18a6f97220d710670a1026.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bce5ee403c078feed1d4da16.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5c4d417779ee72da5b390045.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_ff3f941a67cba8d4e66b8014.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.896000px;}
.lsf{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.134000px;}
.ls3{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.382800px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012000px;}
.ls11{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.305400px;}
.ls6{letter-spacing:0.438000px;}
.ls1{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.984960px;}
.lsa{letter-spacing:7.649280px;}
.lsd{letter-spacing:13.409280px;}
.ls9{letter-spacing:33.276000px;}
.lse{letter-spacing:83.837280px;}
.lsb{letter-spacing:92.609280px;}
.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;}
}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.865400px;}
.ws3{word-spacing:-16.560000px;}
.ws5{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.506440px;}
.ws9{word-spacing:-13.680000px;}
.wsa{word-spacing:-12.240000px;}
.ws2{word-spacing:-11.983920px;}
.ws1{word-spacing:-10.739520px;}
.ws4{word-spacing:-0.066240px;}
.ws6{word-spacing:0.000000px;}
._a{margin-left:-2.310720px;}
._0{margin-left:-1.126080px;}
._1{width:1.261920px;}
._8{width:2.589120px;}
._b{width:3.628320px;}
._9{width:4.968000px;}
._13{width:5.991840px;}
._c{width:7.030080px;}
._6{width:8.544960px;}
._7{width:9.733920px;}
._5{width:11.580720px;}
._f{width:12.649200px;}
._10{width:14.639040px;}
._21{width:15.676800px;}
._11{width:17.136000px;}
._e{width:18.345120px;}
._d{width:19.474560px;}
._14{width:21.025440px;}
._1b{width:22.558080px;}
._1c{width:24.152160px;}
._1a{width:25.740000px;}
._18{width:26.751360px;}
._19{width:28.597440px;}
._1d{width:30.470400px;}
._1e{width:31.808160px;}
._17{width:33.064320px;}
._15{width:34.230720px;}
._16{width:35.959200px;}
._1f{width:38.212800px;}
._20{width:39.935040px;}
._12{width:106.319040px;}
._3{width:395.333280px;}
._2{width:1101.485760px;}
._4{width:1647.336000px;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:47.520000px;}
.fs1{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:119.520000px;}
.y8{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.240000px;}
.y3c{bottom:3.600000px;}
.y4{bottom:4.320000px;}
.yd{bottom:17.316000px;}
.yb{bottom:17.676000px;}
.y3{bottom:24.480000px;}
.ye{bottom:30.600000px;}
.ya{bottom:32.436000px;}
.y2{bottom:44.670000px;}
.y9{bottom:57.240000px;}
.y3b{bottom:84.636000px;}
.y7{bottom:111.996000px;}
.y91{bottom:113.076000px;}
.yd4{bottom:113.436000px;}
.y138{bottom:115.956000px;}
.yb3{bottom:122.076000px;}
.y12f{bottom:127.116000px;}
.y18e{bottom:127.836000px;}
.y66{bottom:131.076000px;}
.y164{bottom:131.436000px;}
.y110{bottom:133.956000px;}
.y90{bottom:135.036000px;}
.yd3{bottom:135.396000px;}
.y137{bottom:137.556000px;}
.y39{bottom:139.716000px;}
.yb2{bottom:144.036000px;}
.y18d{bottom:147.276000px;}
.y65{bottom:152.670000px;}
.y163{bottom:153.750000px;}
.y8f{bottom:156.630000px;}
.yd2{bottom:157.350000px;}
.y12e{bottom:158.070000px;}
.y136{bottom:159.510000px;}
.yb1{bottom:165.630000px;}
.y38{bottom:168.150000px;}
.y18c{bottom:169.230000px;}
.y10f{bottom:171.030000px;}
.y162{bottom:171.390000px;}
.y64{bottom:174.630000px;}
.y8e{bottom:178.590000px;}
.y12d{bottom:180.030000px;}
.y135{bottom:181.470000px;}
.yd1{bottom:187.950000px;}
.y18b{bottom:191.550000px;}
.y161{bottom:193.350000px;}
.y63{bottom:196.230000px;}
.y37{bottom:196.590000px;}
.y8d{bottom:200.235000px;}
.y12c{bottom:201.675000px;}
.y18a{bottom:209.595000px;}
.yd0{bottom:209.955000px;}
.y10e{bottom:210.675000px;}
.y160{bottom:215.715000px;}
.yb0{bottom:218.235000px;}
.y134{bottom:221.115000px;}
.y12b{bottom:223.635000px;}
.y36{bottom:225.435000px;}
.y62{bottom:227.235000px;}
.y8c{bottom:231.195000px;}
.ycf{bottom:231.555000px;}
.y10d{bottom:232.635000px;}
.y15f{bottom:233.715000px;}
.yaf{bottom:240.195000px;}
.y12a{bottom:245.235000px;}
.yf1{bottom:249.195000px;}
.y35{bottom:249.555000px;}
.y8b{bottom:253.155000px;}
.y189{bottom:253.875000px;}
.y10c{bottom:254.235000px;}
.y15e{bottom:255.675000px;}
.y61{bottom:258.195000px;}
.y133{bottom:261.075000px;}
.yae{bottom:262.155000px;}
.yce{bottom:262.515000px;}
.y129{bottom:267.195000px;}
.yf0{bottom:271.155000px;}
.y188{bottom:271.515000px;}
.y34{bottom:272.595000px;}
.y15d{bottom:273.675000px;}
.y8a{bottom:274.755000px;}
.y10b{bottom:276.195000px;}
.y60{bottom:279.795000px;}
.yd8{bottom:283.755000px;}
.ycd{bottom:284.475000px;}
.y132{bottom:288.075000px;}
.y128{bottom:289.155000px;}
.yad{bottom:292.755000px;}
.y187{bottom:293.835000px;}
.y33{bottom:294.555000px;}
.y15c{bottom:295.635000px;}
.y89{bottom:296.715000px;}
.y5f{bottom:301.755000px;}
.ycc{bottom:306.075000px;}
.y10a{bottom:307.155000px;}
.y186{bottom:311.475000px;}
.y15b{bottom:313.635000px;}
.yac{bottom:314.715000px;}
.y32{bottom:316.515000px;}
.y88{bottom:318.315000px;}
.y127{bottom:319.755000px;}
.y5e{bottom:323.385000px;}
.yef{bottom:323.745000px;}
.ycb{bottom:328.065000px;}
.y109{bottom:328.785000px;}
.y185{bottom:333.825000px;}
.y15a{bottom:335.625000px;}
.yab{bottom:336.345000px;}
.y31{bottom:338.505000px;}
.y87{bottom:340.305000px;}
.y126{bottom:341.745000px;}
.yee{bottom:345.345000px;}
.y108{bottom:350.745000px;}
.y184{bottom:351.825000px;}
.y5d{bottom:354.345000px;}
.y159{bottom:357.945000px;}
.yaa{bottom:358.305000px;}
.yca{bottom:359.025000px;}
.y30{bottom:360.105000px;}
.y86{bottom:362.265000px;}
.y125{bottom:363.345000px;}
.yed{bottom:367.305000px;}
.y107{bottom:372.345000px;}
.y183{bottom:373.785000px;}
.y158{bottom:375.585000px;}
.y5c{bottom:376.305000px;}
.ya9{bottom:380.265000px;}
.yc9{bottom:380.625000px;}
.y2f{bottom:382.065000px;}
.y124{bottom:385.305000px;}
.yec{bottom:389.265000px;}
.y182{bottom:391.785000px;}
.y85{bottom:392.865000px;}
.y106{bottom:394.305000px;}
.y5b{bottom:397.905000px;}
.ya8{bottom:401.865000px;}
.yc8{bottom:402.585000px;}
.y2e{bottom:403.665000px;}
.y123{bottom:407.265000px;}
.yeb{bottom:410.865000px;}
.y181{bottom:413.745000px;}
.y157{bottom:415.905000px;}
.y105{bottom:416.265000px;}
.y5a{bottom:419.865000px;}
.y84{bottom:423.825000px;}
.y2d{bottom:425.625000px;}
.y122{bottom:428.865000px;}
.y180{bottom:431.745000px;}
.ya7{bottom:432.825000px;}
.yc7{bottom:433.185000px;}
.y156{bottom:437.865000px;}
.y83{bottom:445.785000px;}
.y104{bottom:446.865000px;}
.y2c{bottom:447.585000px;}
.y59{bottom:451.230000px;}
.y17f{bottom:454.110000px;}
.ya6{bottom:454.830000px;}
.y155{bottom:455.910000px;}
.y121{bottom:459.870000px;}
.yea{bottom:463.830000px;}
.yc6{bottom:464.190000px;}
.y82{bottom:467.430000px;}
.y103{bottom:468.870000px;}
.y2b{bottom:469.230000px;}
.y17e{bottom:471.750000px;}
.ya5{bottom:476.430000px;}
.y154{bottom:478.230000px;}
.y120{bottom:481.830000px;}
.ye9{bottom:485.430000px;}
.yc5{bottom:486.150000px;}
.y81{bottom:489.390000px;}
.y102{bottom:490.830000px;}
.y2a{bottom:491.190000px;}
.y58{bottom:492.630000px;}
.y17d{bottom:494.070000px;}
.y153{bottom:495.870000px;}
.ya4{bottom:498.390000px;}
.y11f{bottom:503.430000px;}
.ye8{bottom:507.390000px;}
.yc4{bottom:507.750000px;}
.y17c{bottom:511.710000px;}
.y101{bottom:512.430000px;}
.y29{bottom:512.790000px;}
.y57{bottom:514.230000px;}
.y152{bottom:519.270000px;}
.y80{bottom:519.990000px;}
.y11e{bottom:525.390000px;}
.ye7{bottom:528.990000px;}
.yc3{bottom:529.710000px;}
.y17b{bottom:534.030000px;}
.y100{bottom:534.390000px;}
.y28{bottom:534.750000px;}
.y56{bottom:536.190000px;}
.y7f{bottom:541.950000px;}
.y11d{bottom:546.990000px;}
.y151{bottom:549.870000px;}
.ye6{bottom:550.950000px;}
.yff{bottom:555.990000px;}
.y27{bottom:556.710000px;}
.yc2{bottom:560.310000px;}
.y7e{bottom:563.910000px;}
.y55{bottom:566.790000px;}
.y11c{bottom:568.950000px;}
.y150{bottom:571.830000px;}
.ya3{bottom:572.910000px;}
.yfe{bottom:577.980000px;}
.y26{bottom:578.340000px;}
.ye5{bottom:581.940000px;}
.y7d{bottom:585.540000px;}
.y54{bottom:588.780000px;}
.y11b{bottom:590.940000px;}
.yc1{bottom:591.300000px;}
.y14f{bottom:593.460000px;}
.y25{bottom:600.300000px;}
.ya2{bottom:603.540000px;}
.yfd{bottom:608.940000px;}
.y53{bottom:610.740000px;}
.ye4{bottom:612.540000px;}
.y14e{bottom:615.420000px;}
.y7c{bottom:616.500000px;}
.y17a{bottom:618.300000px;}
.y11a{bottom:621.540000px;}
.y24{bottom:622.260000px;}
.ya1{bottom:625.500000px;}
.yfc{bottom:630.540000px;}
.y52{bottom:632.340000px;}
.ye3{bottom:634.500000px;}
.y7b{bottom:638.100000px;}
.y179{bottom:640.260000px;}
.y14d{bottom:641.700000px;}
.y119{bottom:643.500000px;}
.yc0{bottom:643.860000px;}
.y23{bottom:645.300000px;}
.ya0{bottom:647.100000px;}
.yfb{bottom:652.500000px;}
.y51{bottom:654.300000px;}
.yd7{bottom:656.100000px;}
.y7a{bottom:660.060000px;}
.y178{bottom:662.580000px;}
.y22{bottom:662.940000px;}
.y14c{bottom:663.660000px;}
.ye2{bottom:665.100000px;}
.ybf{bottom:665.820000px;}
.y9f{bottom:669.060000px;}
.yfa{bottom:674.100000px;}
.y50{bottom:676.260000px;}
.yd6{bottom:678.060000px;}
.y177{bottom:680.220000px;}
.y21{bottom:682.380000px;}
.y14b{bottom:685.260000px;}
.ye1{bottom:687.060000px;}
.ybe{bottom:687.420000px;}
.y79{bottom:691.020000px;}
.yf9{bottom:696.060000px;}
.y9e{bottom:700.020000px;}
.y176{bottom:702.570000px;}
.y20{bottom:704.010000px;}
.y4f{bottom:706.890000px;}
.y14a{bottom:707.250000px;}
.ye0{bottom:709.050000px;}
.ybd{bottom:709.410000px;}
.y78{bottom:712.650000px;}
.yf8{bottom:718.050000px;}
.y175{bottom:720.570000px;}
.y9d{bottom:721.650000px;}
.y1f{bottom:725.970000px;}
.y118{bottom:727.050000px;}
.y4e{bottom:728.850000px;}
.ydf{bottom:730.650000px;}
.ybc{bottom:731.370000px;}
.y149{bottom:733.530000px;}
.y77{bottom:734.610000px;}
.yf7{bottom:739.650000px;}
.y174{bottom:742.530000px;}
.y9c{bottom:743.610000px;}
.y1e{bottom:747.570000px;}
.y117{bottom:748.650000px;}
.y4d{bottom:750.450000px;}
.y148{bottom:755.490000px;}
.yde{bottom:761.610000px;}
.y173{bottom:764.850000px;}
.y76{bottom:765.210000px;}
.ybb{bottom:768.090000px;}
.y1d{bottom:769.530000px;}
.yf6{bottom:770.610000px;}
.y4c{bottom:772.410000px;}
.y9b{bottom:774.210000px;}
.y147{bottom:777.090000px;}
.ydd{bottom:783.210000px;}
.y172{bottom:786.810000px;}
.y75{bottom:787.170000px;}
.y1c{bottom:791.490000px;}
.yf5{bottom:792.210000px;}
.y4b{bottom:794.370000px;}
.y9a{bottom:796.170000px;}
.y146{bottom:799.050000px;}
.ydc{bottom:805.170000px;}
.y74{bottom:809.130000px;}
.y1b{bottom:813.090000px;}
.yf4{bottom:814.170000px;}
.y4a{bottom:815.970000px;}
.y99{bottom:818.130000px;}
.y145{bottom:821.010000px;}
.yba{bottom:827.175000px;}
.y171{bottom:831.135000px;}
.y1a{bottom:835.095000px;}
.yf3{bottom:836.175000px;}
.y49{bottom:837.975000px;}
.y73{bottom:839.775000px;}
.y144{bottom:842.655000px;}
.y116{bottom:845.175000px;}
.yb9{bottom:848.775000px;}
.y170{bottom:849.135000px;}
.y19{bottom:856.695000px;}
.ydb{bottom:857.775000px;}
.y72{bottom:861.735000px;}
.y115{bottom:866.775000px;}
.y48{bottom:868.575000px;}
.yb8{bottom:870.735000px;}
.y16f{bottom:871.455000px;}
.y143{bottom:873.615000px;}
.y18{bottom:878.655000px;}
.yda{bottom:879.735000px;}
.yd5{bottom:883.695000px;}
.y114{bottom:888.735000px;}
.y16e{bottom:889.095000px;}
.y47{bottom:890.535000px;}
.y71{bottom:892.695000px;}
.y142{bottom:895.215000px;}
.y17{bottom:898.095000px;}
.yb7{bottom:901.695000px;}
.y113{bottom:910.695000px;}
.y16d{bottom:911.055000px;}
.y46{bottom:912.495000px;}
.y98{bottom:914.295000px;}
.y141{bottom:917.175000px;}
.y70{bottom:923.295000px;}
.yf2{bottom:932.295000px;}
.y16c{bottom:933.375000px;}
.y45{bottom:934.095000px;}
.y97{bottom:936.255000px;}
.y140{bottom:939.135000px;}
.y16{bottom:942.375000px;}
.yb6{bottom:945.255000px;}
.y16b{bottom:951.375000px;}
.y6f{bottom:954.285000px;}
.y96{bottom:957.885000px;}
.y13f{bottom:960.765000px;}
.y15{bottom:964.005000px;}
.y44{bottom:965.085000px;}
.yb5{bottom:966.885000px;}
.y16a{bottom:973.365000px;}
.y6e{bottom:975.885000px;}
.y95{bottom:979.845000px;}
.y14{bottom:986.325000px;}
.y43{bottom:986.685000px;}
.yd9{bottom:988.845000px;}
.y169{bottom:991.365000px;}
.y13e{bottom:991.725000px;}
.y6d{bottom:997.845000px;}
.y131{bottom:1006.845000px;}
.y42{bottom:1008.645000px;}
.y94{bottom:1010.805000px;}
.y13d{bottom:1013.325000px;}
.y13{bottom:1018.725000px;}
.y6c{bottom:1019.805000px;}
.y130{bottom:1028.805000px;}
.y93{bottom:1032.405000px;}
.y13c{bottom:1035.285000px;}
.y168{bottom:1035.645000px;}
.y41{bottom:1039.605000px;}
.y6b{bottom:1041.405000px;}
.y112{bottom:1050.405000px;}
.y12{bottom:1053.285000px;}
.y13b{bottom:1057.245000px;}
.y40{bottom:1061.205000px;}
.y6a{bottom:1063.365000px;}
.y111{bottom:1072.365000px;}
.y167{bottom:1075.605000px;}
.y13a{bottom:1078.890000px;}
.y3f{bottom:1083.210000px;}
.y69{bottom:1085.010000px;}
.y11{bottom:1087.890000px;}
.y166{bottom:1093.650000px;}
.y92{bottom:1094.010000px;}
.y139{bottom:1100.850000px;}
.y3e{bottom:1104.810000px;}
.yb4{bottom:1106.970000px;}
.y165{bottom:1115.610000px;}
.y68{bottom:1115.970000px;}
.y10{bottom:1122.810000px;}
.y3d{bottom:1136.490000px;}
.y67{bottom:1137.930000px;}
.yf{bottom:1146.570000px;}
.y3a{bottom:1157.730000px;}
.y1{bottom:1168.890000px;}
.y6{bottom:1173.570000px;}
.y5{bottom:1193.730000px;}
.h5{height:8.639850px;}
.hf{height:8.640000px;}
.h10{height:16.596000px;}
.he{height:38.608594px;}
.h13{height:39.570469px;}
.h7{height:43.956000px;}
.hb{height:46.736719px;}
.h8{height:47.264766px;}
.hd{height:47.901094px;}
.h12{height:48.224531px;}
.h9{height:50.800781px;}
.h11{height:52.417969px;}
.h6{height:54.426094px;}
.hc{height:56.563594px;}
.h2{height:60.516000px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.ha{height:84.329297px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:119.196000px;}
.w7{width:347.190000px;}
.w6{width:350.790000px;}
.w4{width:637.095000px;}
.w2{width:680.685000px;}
.w1{width:892.500000px;}
.w3{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.x5{left:68.436000px;}
.x9{left:90.045000px;}
.x15{left:97.596000px;}
.x1{left:106.236000px;}
.x2{left:108.039000px;}
.xc{left:114.155987px;}
.x18{left:133.271987px;}
.x1a{left:142.271987px;}
.x8{left:144.399000px;}
.x14{left:154.154987px;}
.x4{left:171.429000px;}
.x19{left:180.794987px;}
.xb{left:182.234987px;}
.x1c{left:283.784987px;}
.x10{left:284.864987px;}
.x3{left:287.394000px;}
.x11{left:299.624987px;}
.x17{left:318.030000px;}
.xd{left:339.269987px;}
.xe{left:353.669987px;}
.x12{left:364.109987px;}
.xf{left:365.549987px;}
.x1d{left:368.429987px;}
.x13{left:377.429987px;}
.xa{left:446.579987px;}
.x16{left:448.380000px;}
.x7{left:705.525000px;}
.x1b{left:778.289987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.685333pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.008000pt;}
.ls3{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.340267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.010667pt;}
.ls11{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.271467pt;}
.ls6{letter-spacing:0.389333pt;}
.ls1{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.875520pt;}
.lsa{letter-spacing:6.799360pt;}
.lsd{letter-spacing:11.919360pt;}
.ls9{letter-spacing:29.578667pt;}
.lse{letter-spacing:74.522027pt;}
.lsb{letter-spacing:82.319360pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.991467pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.306880pt;}
.ws0{word-spacing:-12.894613pt;}
.ws9{word-spacing:-12.160000pt;}
.wsa{word-spacing:-10.880000pt;}
.ws2{word-spacing:-10.652373pt;}
.ws1{word-spacing:-9.546240pt;}
.ws4{word-spacing:-0.058880pt;}
.ws6{word-spacing:0.000000pt;}
._a{margin-left:-2.053973pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.121707pt;}
._8{width:2.301440pt;}
._b{width:3.225173pt;}
._9{width:4.416000pt;}
._13{width:5.326080pt;}
._c{width:6.248960pt;}
._6{width:7.595520pt;}
._7{width:8.652373pt;}
._5{width:10.293973pt;}
._f{width:11.243733pt;}
._10{width:13.012480pt;}
._21{width:13.934933pt;}
._11{width:15.232000pt;}
._e{width:16.306773pt;}
._d{width:17.310720pt;}
._14{width:18.689280pt;}
._1b{width:20.051627pt;}
._1c{width:21.468587pt;}
._1a{width:22.880000pt;}
._18{width:23.778987pt;}
._19{width:25.419947pt;}
._1d{width:27.084800pt;}
._1e{width:28.273920pt;}
._17{width:29.390507pt;}
._15{width:30.427307pt;}
._16{width:31.963733pt;}
._1f{width:33.966933pt;}
._20{width:35.497813pt;}
._12{width:94.505813pt;}
._3{width:351.407360pt;}
._2{width:979.098453pt;}
._4{width:1464.298667pt;}
.fs2{font-size:42.240000pt;}
.fs1{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:106.240000pt;}
.y8{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.880000pt;}
.y3c{bottom:3.200000pt;}
.y4{bottom:3.840000pt;}
.yd{bottom:15.392000pt;}
.yb{bottom:15.712000pt;}
.y3{bottom:21.760000pt;}
.ye{bottom:27.200000pt;}
.ya{bottom:28.832000pt;}
.y2{bottom:39.706667pt;}
.y9{bottom:50.880000pt;}
.y3b{bottom:75.232000pt;}
.y7{bottom:99.552000pt;}
.y91{bottom:100.512000pt;}
.yd4{bottom:100.832000pt;}
.y138{bottom:103.072000pt;}
.yb3{bottom:108.512000pt;}
.y12f{bottom:112.992000pt;}
.y18e{bottom:113.632000pt;}
.y66{bottom:116.512000pt;}
.y164{bottom:116.832000pt;}
.y110{bottom:119.072000pt;}
.y90{bottom:120.032000pt;}
.yd3{bottom:120.352000pt;}
.y137{bottom:122.272000pt;}
.y39{bottom:124.192000pt;}
.yb2{bottom:128.032000pt;}
.y18d{bottom:130.912000pt;}
.y65{bottom:135.706667pt;}
.y163{bottom:136.666667pt;}
.y8f{bottom:139.226667pt;}
.yd2{bottom:139.866667pt;}
.y12e{bottom:140.506667pt;}
.y136{bottom:141.786667pt;}
.yb1{bottom:147.226667pt;}
.y38{bottom:149.466667pt;}
.y18c{bottom:150.426667pt;}
.y10f{bottom:152.026667pt;}
.y162{bottom:152.346667pt;}
.y64{bottom:155.226667pt;}
.y8e{bottom:158.746667pt;}
.y12d{bottom:160.026667pt;}
.y135{bottom:161.306667pt;}
.yd1{bottom:167.066667pt;}
.y18b{bottom:170.266667pt;}
.y161{bottom:171.866667pt;}
.y63{bottom:174.426667pt;}
.y37{bottom:174.746667pt;}
.y8d{bottom:177.986667pt;}
.y12c{bottom:179.266667pt;}
.y18a{bottom:186.306667pt;}
.yd0{bottom:186.626667pt;}
.y10e{bottom:187.266667pt;}
.y160{bottom:191.746667pt;}
.yb0{bottom:193.986667pt;}
.y134{bottom:196.546667pt;}
.y12b{bottom:198.786667pt;}
.y36{bottom:200.386667pt;}
.y62{bottom:201.986667pt;}
.y8c{bottom:205.506667pt;}
.ycf{bottom:205.826667pt;}
.y10d{bottom:206.786667pt;}
.y15f{bottom:207.746667pt;}
.yaf{bottom:213.506667pt;}
.y12a{bottom:217.986667pt;}
.yf1{bottom:221.506667pt;}
.y35{bottom:221.826667pt;}
.y8b{bottom:225.026667pt;}
.y189{bottom:225.666667pt;}
.y10c{bottom:225.986667pt;}
.y15e{bottom:227.266667pt;}
.y61{bottom:229.506667pt;}
.y133{bottom:232.066667pt;}
.yae{bottom:233.026667pt;}
.yce{bottom:233.346667pt;}
.y129{bottom:237.506667pt;}
.yf0{bottom:241.026667pt;}
.y188{bottom:241.346667pt;}
.y34{bottom:242.306667pt;}
.y15d{bottom:243.266667pt;}
.y8a{bottom:244.226667pt;}
.y10b{bottom:245.506667pt;}
.y60{bottom:248.706667pt;}
.yd8{bottom:252.226667pt;}
.ycd{bottom:252.866667pt;}
.y132{bottom:256.066667pt;}
.y128{bottom:257.026667pt;}
.yad{bottom:260.226667pt;}
.y187{bottom:261.186667pt;}
.y33{bottom:261.826667pt;}
.y15c{bottom:262.786667pt;}
.y89{bottom:263.746667pt;}
.y5f{bottom:268.226667pt;}
.ycc{bottom:272.066667pt;}
.y10a{bottom:273.026667pt;}
.y186{bottom:276.866667pt;}
.y15b{bottom:278.786667pt;}
.yac{bottom:279.746667pt;}
.y32{bottom:281.346667pt;}
.y88{bottom:282.946667pt;}
.y127{bottom:284.226667pt;}
.y5e{bottom:287.453333pt;}
.yef{bottom:287.773333pt;}
.ycb{bottom:291.613333pt;}
.y109{bottom:292.253333pt;}
.y185{bottom:296.733333pt;}
.y15a{bottom:298.333333pt;}
.yab{bottom:298.973333pt;}
.y31{bottom:300.893333pt;}
.y87{bottom:302.493333pt;}
.y126{bottom:303.773333pt;}
.yee{bottom:306.973333pt;}
.y108{bottom:311.773333pt;}
.y184{bottom:312.733333pt;}
.y5d{bottom:314.973333pt;}
.y159{bottom:318.173333pt;}
.yaa{bottom:318.493333pt;}
.yca{bottom:319.133333pt;}
.y30{bottom:320.093333pt;}
.y86{bottom:322.013333pt;}
.y125{bottom:322.973333pt;}
.yed{bottom:326.493333pt;}
.y107{bottom:330.973333pt;}
.y183{bottom:332.253333pt;}
.y158{bottom:333.853333pt;}
.y5c{bottom:334.493333pt;}
.ya9{bottom:338.013333pt;}
.yc9{bottom:338.333333pt;}
.y2f{bottom:339.613333pt;}
.y124{bottom:342.493333pt;}
.yec{bottom:346.013333pt;}
.y182{bottom:348.253333pt;}
.y85{bottom:349.213333pt;}
.y106{bottom:350.493333pt;}
.y5b{bottom:353.693333pt;}
.ya8{bottom:357.213333pt;}
.yc8{bottom:357.853333pt;}
.y2e{bottom:358.813333pt;}
.y123{bottom:362.013333pt;}
.yeb{bottom:365.213333pt;}
.y181{bottom:367.773333pt;}
.y157{bottom:369.693333pt;}
.y105{bottom:370.013333pt;}
.y5a{bottom:373.213333pt;}
.y84{bottom:376.733333pt;}
.y2d{bottom:378.333333pt;}
.y122{bottom:381.213333pt;}
.y180{bottom:383.773333pt;}
.ya7{bottom:384.733333pt;}
.yc7{bottom:385.053333pt;}
.y156{bottom:389.213333pt;}
.y83{bottom:396.253333pt;}
.y104{bottom:397.213333pt;}
.y2c{bottom:397.853333pt;}
.y59{bottom:401.093333pt;}
.y17f{bottom:403.653333pt;}
.ya6{bottom:404.293333pt;}
.y155{bottom:405.253333pt;}
.y121{bottom:408.773333pt;}
.yea{bottom:412.293333pt;}
.yc6{bottom:412.613333pt;}
.y82{bottom:415.493333pt;}
.y103{bottom:416.773333pt;}
.y2b{bottom:417.093333pt;}
.y17e{bottom:419.333333pt;}
.ya5{bottom:423.493333pt;}
.y154{bottom:425.093333pt;}
.y120{bottom:428.293333pt;}
.ye9{bottom:431.493333pt;}
.yc5{bottom:432.133333pt;}
.y81{bottom:435.013333pt;}
.y102{bottom:436.293333pt;}
.y2a{bottom:436.613333pt;}
.y58{bottom:437.893333pt;}
.y17d{bottom:439.173333pt;}
.y153{bottom:440.773333pt;}
.ya4{bottom:443.013333pt;}
.y11f{bottom:447.493333pt;}
.ye8{bottom:451.013333pt;}
.yc4{bottom:451.333333pt;}
.y17c{bottom:454.853333pt;}
.y101{bottom:455.493333pt;}
.y29{bottom:455.813333pt;}
.y57{bottom:457.093333pt;}
.y152{bottom:461.573333pt;}
.y80{bottom:462.213333pt;}
.y11e{bottom:467.013333pt;}
.ye7{bottom:470.213333pt;}
.yc3{bottom:470.853333pt;}
.y17b{bottom:474.693333pt;}
.y100{bottom:475.013333pt;}
.y28{bottom:475.333333pt;}
.y56{bottom:476.613333pt;}
.y7f{bottom:481.733333pt;}
.y11d{bottom:486.213333pt;}
.y151{bottom:488.773333pt;}
.ye6{bottom:489.733333pt;}
.yff{bottom:494.213333pt;}
.y27{bottom:494.853333pt;}
.yc2{bottom:498.053333pt;}
.y7e{bottom:501.253333pt;}
.y55{bottom:503.813333pt;}
.y11c{bottom:505.733333pt;}
.y150{bottom:508.293333pt;}
.ya3{bottom:509.253333pt;}
.yfe{bottom:513.760000pt;}
.y26{bottom:514.080000pt;}
.ye5{bottom:517.280000pt;}
.y7d{bottom:520.480000pt;}
.y54{bottom:523.360000pt;}
.y11b{bottom:525.280000pt;}
.yc1{bottom:525.600000pt;}
.y14f{bottom:527.520000pt;}
.y25{bottom:533.600000pt;}
.ya2{bottom:536.480000pt;}
.yfd{bottom:541.280000pt;}
.y53{bottom:542.880000pt;}
.ye4{bottom:544.480000pt;}
.y14e{bottom:547.040000pt;}
.y7c{bottom:548.000000pt;}
.y17a{bottom:549.600000pt;}
.y11a{bottom:552.480000pt;}
.y24{bottom:553.120000pt;}
.ya1{bottom:556.000000pt;}
.yfc{bottom:560.480000pt;}
.y52{bottom:562.080000pt;}
.ye3{bottom:564.000000pt;}
.y7b{bottom:567.200000pt;}
.y179{bottom:569.120000pt;}
.y14d{bottom:570.400000pt;}
.y119{bottom:572.000000pt;}
.yc0{bottom:572.320000pt;}
.y23{bottom:573.600000pt;}
.ya0{bottom:575.200000pt;}
.yfb{bottom:580.000000pt;}
.y51{bottom:581.600000pt;}
.yd7{bottom:583.200000pt;}
.y7a{bottom:586.720000pt;}
.y178{bottom:588.960000pt;}
.y22{bottom:589.280000pt;}
.y14c{bottom:589.920000pt;}
.ye2{bottom:591.200000pt;}
.ybf{bottom:591.840000pt;}
.y9f{bottom:594.720000pt;}
.yfa{bottom:599.200000pt;}
.y50{bottom:601.120000pt;}
.yd6{bottom:602.720000pt;}
.y177{bottom:604.640000pt;}
.y21{bottom:606.560000pt;}
.y14b{bottom:609.120000pt;}
.ye1{bottom:610.720000pt;}
.ybe{bottom:611.040000pt;}
.y79{bottom:614.240000pt;}
.yf9{bottom:618.720000pt;}
.y9e{bottom:622.240000pt;}
.y176{bottom:624.506667pt;}
.y20{bottom:625.786667pt;}
.y4f{bottom:628.346667pt;}
.y14a{bottom:628.666667pt;}
.ye0{bottom:630.266667pt;}
.ybd{bottom:630.586667pt;}
.y78{bottom:633.466667pt;}
.yf8{bottom:638.266667pt;}
.y175{bottom:640.506667pt;}
.y9d{bottom:641.466667pt;}
.y1f{bottom:645.306667pt;}
.y118{bottom:646.266667pt;}
.y4e{bottom:647.866667pt;}
.ydf{bottom:649.466667pt;}
.ybc{bottom:650.106667pt;}
.y149{bottom:652.026667pt;}
.y77{bottom:652.986667pt;}
.yf7{bottom:657.466667pt;}
.y174{bottom:660.026667pt;}
.y9c{bottom:660.986667pt;}
.y1e{bottom:664.506667pt;}
.y117{bottom:665.466667pt;}
.y4d{bottom:667.066667pt;}
.y148{bottom:671.546667pt;}
.yde{bottom:676.986667pt;}
.y173{bottom:679.866667pt;}
.y76{bottom:680.186667pt;}
.ybb{bottom:682.746667pt;}
.y1d{bottom:684.026667pt;}
.yf6{bottom:684.986667pt;}
.y4c{bottom:686.586667pt;}
.y9b{bottom:688.186667pt;}
.y147{bottom:690.746667pt;}
.ydd{bottom:696.186667pt;}
.y172{bottom:699.386667pt;}
.y75{bottom:699.706667pt;}
.y1c{bottom:703.546667pt;}
.yf5{bottom:704.186667pt;}
.y4b{bottom:706.106667pt;}
.y9a{bottom:707.706667pt;}
.y146{bottom:710.266667pt;}
.ydc{bottom:715.706667pt;}
.y74{bottom:719.226667pt;}
.y1b{bottom:722.746667pt;}
.yf4{bottom:723.706667pt;}
.y4a{bottom:725.306667pt;}
.y99{bottom:727.226667pt;}
.y145{bottom:729.786667pt;}
.yba{bottom:735.266667pt;}
.y171{bottom:738.786667pt;}
.y1a{bottom:742.306667pt;}
.yf3{bottom:743.266667pt;}
.y49{bottom:744.866667pt;}
.y73{bottom:746.466667pt;}
.y144{bottom:749.026667pt;}
.y116{bottom:751.266667pt;}
.yb9{bottom:754.466667pt;}
.y170{bottom:754.786667pt;}
.y19{bottom:761.506667pt;}
.ydb{bottom:762.466667pt;}
.y72{bottom:765.986667pt;}
.y115{bottom:770.466667pt;}
.y48{bottom:772.066667pt;}
.yb8{bottom:773.986667pt;}
.y16f{bottom:774.626667pt;}
.y143{bottom:776.546667pt;}
.y18{bottom:781.026667pt;}
.yda{bottom:781.986667pt;}
.yd5{bottom:785.506667pt;}
.y114{bottom:789.986667pt;}
.y16e{bottom:790.306667pt;}
.y47{bottom:791.586667pt;}
.y71{bottom:793.506667pt;}
.y142{bottom:795.746667pt;}
.y17{bottom:798.306667pt;}
.yb7{bottom:801.506667pt;}
.y113{bottom:809.506667pt;}
.y16d{bottom:809.826667pt;}
.y46{bottom:811.106667pt;}
.y98{bottom:812.706667pt;}
.y141{bottom:815.266667pt;}
.y70{bottom:820.706667pt;}
.yf2{bottom:828.706667pt;}
.y16c{bottom:829.666667pt;}
.y45{bottom:830.306667pt;}
.y97{bottom:832.226667pt;}
.y140{bottom:834.786667pt;}
.y16{bottom:837.666667pt;}
.yb6{bottom:840.226667pt;}
.y16b{bottom:845.666667pt;}
.y6f{bottom:848.253333pt;}
.y96{bottom:851.453333pt;}
.y13f{bottom:854.013333pt;}
.y15{bottom:856.893333pt;}
.y44{bottom:857.853333pt;}
.yb5{bottom:859.453333pt;}
.y16a{bottom:865.213333pt;}
.y6e{bottom:867.453333pt;}
.y95{bottom:870.973333pt;}
.y14{bottom:876.733333pt;}
.y43{bottom:877.053333pt;}
.yd9{bottom:878.973333pt;}
.y169{bottom:881.213333pt;}
.y13e{bottom:881.533333pt;}
.y6d{bottom:886.973333pt;}
.y131{bottom:894.973333pt;}
.y42{bottom:896.573333pt;}
.y94{bottom:898.493333pt;}
.y13d{bottom:900.733333pt;}
.y13{bottom:905.533333pt;}
.y6c{bottom:906.493333pt;}
.y130{bottom:914.493333pt;}
.y93{bottom:917.693333pt;}
.y13c{bottom:920.253333pt;}
.y168{bottom:920.573333pt;}
.y41{bottom:924.093333pt;}
.y6b{bottom:925.693333pt;}
.y112{bottom:933.693333pt;}
.y12{bottom:936.253333pt;}
.y13b{bottom:939.773333pt;}
.y40{bottom:943.293333pt;}
.y6a{bottom:945.213333pt;}
.y111{bottom:953.213333pt;}
.y167{bottom:956.093333pt;}
.y13a{bottom:959.013333pt;}
.y3f{bottom:962.853333pt;}
.y69{bottom:964.453333pt;}
.y11{bottom:967.013333pt;}
.y166{bottom:972.133333pt;}
.y92{bottom:972.453333pt;}
.y139{bottom:978.533333pt;}
.y3e{bottom:982.053333pt;}
.yb4{bottom:983.973333pt;}
.y165{bottom:991.653333pt;}
.y68{bottom:991.973333pt;}
.y10{bottom:998.053333pt;}
.y3d{bottom:1010.213333pt;}
.y67{bottom:1011.493333pt;}
.yf{bottom:1019.173333pt;}
.y3a{bottom:1029.093333pt;}
.y1{bottom:1039.013333pt;}
.y6{bottom:1043.173333pt;}
.y5{bottom:1061.093333pt;}
.h5{height:7.679867pt;}
.hf{height:7.680000pt;}
.h10{height:14.752000pt;}
.he{height:34.318750pt;}
.h13{height:35.173750pt;}
.h7{height:39.072000pt;}
.hb{height:41.543750pt;}
.h8{height:42.013125pt;}
.hd{height:42.578750pt;}
.h12{height:42.866250pt;}
.h9{height:45.156250pt;}
.h11{height:46.593750pt;}
.h6{height:48.378750pt;}
.hc{height:50.278750pt;}
.h2{height:53.792000pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.ha{height:74.959375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:105.952000pt;}
.w7{width:308.613333pt;}
.w6{width:311.813333pt;}
.w4{width:566.306667pt;}
.w2{width:605.053333pt;}
.w1{width:793.333333pt;}
.w3{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.x5{left:60.832000pt;}
.x9{left:80.040000pt;}
.x15{left:86.752000pt;}
.x1{left:94.432000pt;}
.x2{left:96.034667pt;}
.xc{left:101.471988pt;}
.x18{left:118.463988pt;}
.x1a{left:126.463988pt;}
.x8{left:128.354667pt;}
.x14{left:137.026655pt;}
.x4{left:152.381333pt;}
.x19{left:160.706655pt;}
.xb{left:161.986655pt;}
.x1c{left:252.253322pt;}
.x10{left:253.213322pt;}
.x3{left:255.461333pt;}
.x11{left:266.333322pt;}
.x17{left:282.693333pt;}
.xd{left:301.573322pt;}
.xe{left:314.373322pt;}
.x12{left:323.653322pt;}
.xf{left:324.933322pt;}
.x1d{left:327.493322pt;}
.x13{left:335.493322pt;}
.xa{left:396.959988pt;}
.x16{left:398.560000pt;}
.x7{left:627.133333pt;}
.x1b{left:691.813322pt;}
}




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