
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_6ccaf02fb3c521f9c4ef3ed4.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_8de49004d98b01d226e49635.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f5941752937aa2fdd37c2e84.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_355c40d11d2be418cc407d94.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c22b8119d6cd64e9ee766b47.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_c7aac47e43c0f539eee2bc15.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_dc52edaf4de7965ff77ab762.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_936fc101a252eb35905960cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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_baa7baa62fb1628e9ee03fd5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.966000px;}
.lsc{letter-spacing:-0.960000px;}
.ls21{letter-spacing:-0.533400px;}
.ls5{letter-spacing:-0.463800px;}
.ls2c{letter-spacing:-0.326400px;}
.ls30{letter-spacing:-0.303000px;}
.ls1f{letter-spacing:-0.186600px;}
.ls27{letter-spacing:-0.143400px;}
.ls9{letter-spacing:-0.115800px;}
.ls17{letter-spacing:-0.106800px;}
.ls20{letter-spacing:-0.078600px;}
.ls18{letter-spacing:-0.069600px;}
.ls16{letter-spacing:-0.064800px;}
.ls15{letter-spacing:-0.058320px;}
.ls2f{letter-spacing:-0.049680px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.060600px;}
.ls19{letter-spacing:0.066240px;}
.ls1b{letter-spacing:0.140400px;}
.lsa{letter-spacing:0.174000px;}
.ls13{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.186600px;}
.ls25{letter-spacing:0.195120px;}
.ls14{letter-spacing:0.210240px;}
.ls7{letter-spacing:0.306000px;}
.ls24{letter-spacing:0.314640px;}
.ls11{letter-spacing:0.319680px;}
.ls2a{letter-spacing:0.357000px;}
.ls28{letter-spacing:0.368400px;}
.ls22{letter-spacing:0.393600px;}
.ls1a{letter-spacing:0.479520px;}
.ls10{letter-spacing:0.617760px;}
.ls2d{letter-spacing:0.659520px;}
.ls26{letter-spacing:0.894240px;}
.ls1d{letter-spacing:0.906000px;}
.ls23{letter-spacing:0.963360px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls29{letter-spacing:2.106720px;}
.lsf{letter-spacing:5.706720px;}
.ls2e{letter-spacing:12.186720px;}
.ls1e{letter-spacing:19.386720px;}
.lsd{letter-spacing:21.546720px;}
.ls12{letter-spacing:28.026720px;}
.ls3{letter-spacing:38.106720px;}
.ls2b{letter-spacing:42.426720px;}
.lse{letter-spacing:202.638240px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.wsa{word-spacing:-16.506480px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws15{word-spacing:-14.411760px;}
.ws11{word-spacing:-13.862760px;}
.ws13{word-spacing:-13.811760px;}
.wsc{word-spacing:-13.692360px;}
.ws5{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.456080px;}
.ws8{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.440960px;}
.wsb{word-spacing:-13.436160px;}
.wse{word-spacing:-13.427160px;}
.ws6{word-spacing:-13.389960px;}
.wsf{word-spacing:-13.362360px;}
.wsd{word-spacing:-13.319160px;}
.ws14{word-spacing:-13.202760px;}
.ws10{word-spacing:-13.179360px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.313600px;}
._17{margin-left:-10.734480px;}
._18{margin-left:-7.854480px;}
._a{margin-left:-3.337680px;}
._8{margin-left:-2.274480px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._6{width:2.974560px;}
._7{width:4.968720px;}
._9{width:6.244800px;}
._12{width:7.429440px;}
._10{width:9.134640px;}
._f{width:10.218960px;}
._b{width:11.234880px;}
._c{width:12.354000px;}
._16{width:14.740800px;}
._1d{width:16.633200px;}
._11{width:17.947920px;}
._e{width:18.983760px;}
._d{width:20.139120px;}
._14{width:21.931920px;}
._13{width:23.067360px;}
._1e{width:30.575520px;}
._1b{width:31.792320px;}
._1c{width:34.780320px;}
._15{width:48.628080px;}
._1a{width:58.963200px;}
._19{width:60.417360px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y65{bottom:6.660000px;}
.y10c{bottom:6.840000px;}
.yf6{bottom:7.920000px;}
.y6f{bottom:8.640000px;}
.y10a{bottom:18.000000px;}
.y83{bottom:19.800000px;}
.ya4{bottom:20.520000px;}
.ycf{bottom:27.720000px;}
.y6b{bottom:29.700000px;}
.y7f{bottom:40.860000px;}
.ya0{bottom:41.580000px;}
.y114{bottom:48.780000px;}
.y6a{bottom:50.760000px;}
.y6{bottom:61.236000px;}
.y7e{bottom:61.920000px;}
.y9f{bottom:62.640000px;}
.y69{bottom:71.820000px;}
.y7d{bottom:82.980000px;}
.y9e{bottom:83.700000px;}
.y12f{bottom:89.316000px;}
.ycb{bottom:92.556000px;}
.y68{bottom:92.880000px;}
.y9a{bottom:93.096000px;}
.y136{bottom:93.996000px;}
.y117{bottom:102.636000px;}
.y7c{bottom:104.040000px;}
.y78{bottom:104.436000px;}
.y108{bottom:104.616000px;}
.y9d{bottom:104.760000px;}
.y63{bottom:109.296000px;}
.y12e{bottom:110.376000px;}
.yca{bottom:113.616000px;}
.y99{bottom:114.156000px;}
.y30{bottom:115.956000px;}
.y116{bottom:123.696000px;}
.y77{bottom:125.496000px;}
.y107{bottom:125.676000px;}
.yf4{bottom:127.296000px;}
.y62{bottom:130.356000px;}
.y12d{bottom:131.436000px;}
.yc9{bottom:134.676000px;}
.y98{bottom:135.216000px;}
.y2f{bottom:137.016000px;}
.y115{bottom:144.756000px;}
.y76{bottom:146.556000px;}
.y106{bottom:146.736000px;}
.yf3{bottom:148.356000px;}
.y61{bottom:151.410000px;}
.y12c{bottom:152.490000px;}
.yc8{bottom:155.730000px;}
.y97{bottom:156.270000px;}
.y2e{bottom:158.070000px;}
.y113{bottom:159.150000px;}
.y75{bottom:167.610000px;}
.y105{bottom:167.790000px;}
.yf2{bottom:169.410000px;}
.y60{bottom:172.470000px;}
.y12b{bottom:173.550000px;}
.yc7{bottom:176.790000px;}
.y96{bottom:177.330000px;}
.y2d{bottom:179.130000px;}
.y74{bottom:188.670000px;}
.y104{bottom:188.850000px;}
.yf1{bottom:190.470000px;}
.y5f{bottom:193.530000px;}
.y12a{bottom:194.610000px;}
.y135{bottom:197.490000px;}
.yc6{bottom:197.850000px;}
.y95{bottom:198.390000px;}
.y2c{bottom:200.190000px;}
.y73{bottom:209.730000px;}
.y103{bottom:209.910000px;}
.yf0{bottom:211.530000px;}
.y5e{bottom:214.590000px;}
.y129{bottom:215.670000px;}
.y134{bottom:218.550000px;}
.yc5{bottom:218.910000px;}
.y94{bottom:219.450000px;}
.y2b{bottom:221.250000px;}
.y112{bottom:223.230000px;}
.y72{bottom:230.790000px;}
.y102{bottom:230.970000px;}
.yef{bottom:232.590000px;}
.y5d{bottom:235.650000px;}
.y128{bottom:236.730000px;}
.y133{bottom:239.610000px;}
.yc4{bottom:239.970000px;}
.y93{bottom:240.330000px;}
.y2a{bottom:242.310000px;}
.y111{bottom:244.830000px;}
.y71{bottom:251.850000px;}
.y101{bottom:252.030000px;}
.yee{bottom:253.650000px;}
.y127{bottom:256.350000px;}
.y5c{bottom:256.710000px;}
.y132{bottom:260.670000px;}
.yc3{bottom:261.030000px;}
.y92{bottom:261.390000px;}
.y29{bottom:263.370000px;}
.y110{bottom:266.430000px;}
.y70{bottom:266.970000px;}
.y100{bottom:273.090000px;}
.yed{bottom:274.710000px;}
.y126{bottom:276.150000px;}
.y5b{bottom:277.770000px;}
.y131{bottom:281.775000px;}
.yc2{bottom:282.135000px;}
.y91{bottom:282.495000px;}
.y28{bottom:284.475000px;}
.y10f{bottom:288.075000px;}
.y67{bottom:288.795000px;}
.yff{bottom:294.195000px;}
.yec{bottom:295.815000px;}
.y125{bottom:295.995000px;}
.y5a{bottom:298.875000px;}
.yc1{bottom:303.195000px;}
.y90{bottom:303.555000px;}
.y27{bottom:305.535000px;}
.y10e{bottom:309.675000px;}
.y6e{bottom:311.835000px;}
.yfe{bottom:315.255000px;}
.y124{bottom:315.795000px;}
.yeb{bottom:316.875000px;}
.y130{bottom:318.675000px;}
.y59{bottom:319.935000px;}
.yc0{bottom:324.255000px;}
.y8f{bottom:324.615000px;}
.y26{bottom:326.595000px;}
.y10d{bottom:331.275000px;}
.y6d{bottom:332.895000px;}
.y123{bottom:335.415000px;}
.yfd{bottom:336.315000px;}
.yea{bottom:337.935000px;}
.y58{bottom:340.995000px;}
.ybf{bottom:345.135000px;}
.y8e{bottom:345.675000px;}
.y25{bottom:347.655000px;}
.y109{bottom:352.875000px;}
.y6c{bottom:353.955000px;}
.y122{bottom:355.215000px;}
.yfc{bottom:357.375000px;}
.ye9{bottom:358.995000px;}
.y57{bottom:362.055000px;}
.ybe{bottom:366.195000px;}
.y8d{bottom:366.735000px;}
.y24{bottom:368.715000px;}
.y66{bottom:375.015000px;}
.y10b{bottom:375.195000px;}
.yfb{bottom:378.435000px;}
.ye8{bottom:380.055000px;}
.y56{bottom:383.115000px;}
.ybd{bottom:387.255000px;}
.y8c{bottom:387.795000px;}
.y23{bottom:389.775000px;}
.y121{bottom:394.815000px;}
.y64{bottom:396.795000px;}
.yfa{bottom:399.495000px;}
.ye7{bottom:401.115000px;}
.y55{bottom:404.175000px;}
.ybc{bottom:408.315000px;}
.y8b{bottom:408.855000px;}
.y22{bottom:410.835000px;}
.yf9{bottom:414.615000px;}
.y120{bottom:415.875000px;}
.ye6{bottom:422.175000px;}
.y54{bottom:425.235000px;}
.ybb{bottom:429.375000px;}
.y8a{bottom:429.915000px;}
.y21{bottom:431.895000px;}
.yf8{bottom:436.935000px;}
.ye5{bottom:443.235000px;}
.y53{bottom:446.295000px;}
.yba{bottom:450.435000px;}
.y89{bottom:450.975000px;}
.y20{bottom:452.955000px;}
.yf7{bottom:457.995000px;}
.ye4{bottom:464.295000px;}
.y52{bottom:467.355000px;}
.yb9{bottom:471.495000px;}
.y88{bottom:472.035000px;}
.y1f{bottom:474.015000px;}
.y11f{bottom:477.615000px;}
.yf5{bottom:479.775000px;}
.ye3{bottom:485.355000px;}
.y51{bottom:488.415000px;}
.yb8{bottom:492.555000px;}
.y87{bottom:493.095000px;}
.y1e{bottom:495.075000px;}
.y11e{bottom:497.415000px;}
.ye2{bottom:506.415000px;}
.y50{bottom:509.475000px;}
.yb7{bottom:513.615000px;}
.y86{bottom:514.155000px;}
.y1d{bottom:516.135000px;}
.y11d{bottom:517.215000px;}
.ye1{bottom:527.475000px;}
.y4f{bottom:530.535000px;}
.yb6{bottom:534.675000px;}
.y85{bottom:535.215000px;}
.y11c{bottom:537.015000px;}
.y1c{bottom:537.195000px;}
.ye0{bottom:548.535000px;}
.y84{bottom:550.335000px;}
.y4e{bottom:551.595000px;}
.yb5{bottom:555.735000px;}
.y11b{bottom:556.815000px;}
.y1b{bottom:558.255000px;}
.ydf{bottom:569.625000px;}
.y7b{bottom:572.325000px;}
.y4d{bottom:572.685000px;}
.y11a{bottom:576.465000px;}
.yb4{bottom:576.825000px;}
.yde{bottom:590.685000px;}
.y4c{bottom:593.745000px;}
.y119{bottom:596.265000px;}
.yb3{bottom:597.885000px;}
.y1a{bottom:602.745000px;}
.y82{bottom:606.525000px;}
.ydd{bottom:611.745000px;}
.y4b{bottom:614.805000px;}
.y118{bottom:616.065000px;}
.yb2{bottom:618.945000px;}
.y81{bottom:627.585000px;}
.y19{bottom:632.625000px;}
.ydc{bottom:632.805000px;}
.y4a{bottom:635.865000px;}
.yb1{bottom:640.005000px;}
.y80{bottom:648.645000px;}
.y18{bottom:653.685000px;}
.ydb{bottom:653.865000px;}
.y49{bottom:656.925000px;}
.yb0{bottom:661.065000px;}
.y7a{bottom:669.705000px;}
.y17{bottom:674.745000px;}
.yda{bottom:674.925000px;}
.y48{bottom:677.985000px;}
.yaf{bottom:682.125000px;}
.y79{bottom:691.665000px;}
.y16{bottom:695.805000px;}
.yd9{bottom:695.985000px;}
.y47{bottom:699.045000px;}
.yae{bottom:703.185000px;}
.y15{bottom:716.865000px;}
.yd8{bottom:717.045000px;}
.y46{bottom:720.105000px;}
.yad{bottom:724.245000px;}
.y14{bottom:737.925000px;}
.yd7{bottom:738.105000px;}
.y45{bottom:741.165000px;}
.yac{bottom:745.305000px;}
.y13{bottom:758.985000px;}
.yd6{bottom:759.165000px;}
.y44{bottom:762.225000px;}
.yab{bottom:766.365000px;}
.y12{bottom:780.045000px;}
.yd5{bottom:780.225000px;}
.y43{bottom:783.285000px;}
.yaa{bottom:787.425000px;}
.yd4{bottom:795.345000px;}
.y11{bottom:801.105000px;}
.y42{bottom:804.345000px;}
.ya9{bottom:808.485000px;}
.yd3{bottom:817.125000px;}
.y10{bottom:822.165000px;}
.y41{bottom:825.405000px;}
.ya8{bottom:829.545000px;}
.yf{bottom:843.225000px;}
.y40{bottom:846.465000px;}
.ya7{bottom:850.650000px;}
.yd2{bottom:859.290000px;}
.ye{bottom:864.330000px;}
.y3f{bottom:867.570000px;}
.ya6{bottom:871.710000px;}
.yd{bottom:885.390000px;}
.ya5{bottom:886.830000px;}
.y3e{bottom:888.630000px;}
.yd1{bottom:901.410000px;}
.yc{bottom:908.610000px;}
.y3d{bottom:909.690000px;}
.yd0{bottom:922.470000px;}
.y3c{bottom:930.570000px;}
.yb{bottom:934.890000px;}
.ya3{bottom:943.530000px;}
.y3b{bottom:951.630000px;}
.ya{bottom:955.950000px;}
.ya2{bottom:964.590000px;}
.y9{bottom:972.690000px;}
.ya1{bottom:985.650000px;}
.y3a{bottom:993.750000px;}
.y8{bottom:995.010000px;}
.y9c{bottom:1006.710000px;}
.y39{bottom:1014.810000px;}
.y7{bottom:1020.210000px;}
.y9b{bottom:1028.490000px;}
.y38{bottom:1035.870000px;}
.yce{bottom:1048.830000px;}
.y37{bottom:1056.930000px;}
.y5{bottom:1060.350000px;}
.y36{bottom:1077.990000px;}
.ycd{bottom:1090.950000px;}
.y4{bottom:1092.570000px;}
.y35{bottom:1099.050000px;}
.ycc{bottom:1112.730000px;}
.y34{bottom:1120.110000px;}
.y3{bottom:1124.610000px;}
.y33{bottom:1141.200000px;}
.y2{bottom:1156.860000px;}
.y32{bottom:1162.260000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.hb{height:21.060000px;}
.he{height:21.096000px;}
.h19{height:21.600000px;}
.h1a{height:21.636000px;}
.h16{height:22.320000px;}
.hd{height:23.040000px;}
.h10{height:34.200000px;}
.h13{height:34.920000px;}
.h7{height:38.671172px;}
.h14{height:42.120000px;}
.h15{height:42.156000px;}
.h18{height:43.920000px;}
.h11{height:45.140977px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h17{height:59.551172px;}
.h5{height:61.189805px;}
.h9{height:62.211094px;}
.ha{height:62.327813px;}
.h1b{height:63.180000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.hc{height:107.280000px;}
.hf{height:118.440000px;}
.h12{height:119.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:47.340000px;}
.w15{width:54.036000px;}
.w23{width:64.296000px;}
.w24{width:64.620000px;}
.w7{width:77.940000px;}
.wd{width:78.120000px;}
.w20{width:80.640000px;}
.wa{width:81.396000px;}
.w3{width:81.576000px;}
.w26{width:82.620000px;}
.w1a{width:97.020000px;}
.w10{width:100.440000px;}
.wc{width:100.800000px;}
.w5{width:101.160000px;}
.w1f{width:106.056000px;}
.w22{width:106.920000px;}
.w8{width:107.136000px;}
.we{width:107.316000px;}
.w12{width:108.396000px;}
.w11{width:115.236000px;}
.w6{width:115.596000px;}
.w1c{width:124.740000px;}
.w21{width:126.036000px;}
.w1e{width:128.916000px;}
.w1b{width:138.636000px;}
.w19{width:138.816000px;}
.w13{width:142.020000px;}
.w9{width:142.380000px;}
.w25{width:150.330000px;}
.w4{width:159.330000px;}
.wb{width:159.510000px;}
.wf{width:159.690000px;}
.w17{width:197.130000px;}
.w1d{width:202.530000px;}
.w18{width:291.495000px;}
.w14{width:391.575000px;}
.w27{width:751.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:6.660000px;}
.x10{left:8.100000px;}
.x25{left:10.260000px;}
.x24{left:13.680000px;}
.x20{left:15.300000px;}
.x26{left:16.740000px;}
.x8{left:18.180000px;}
.x4{left:21.420000px;}
.xa{left:22.860000px;}
.x13{left:25.560000px;}
.xf{left:26.820000px;}
.x32{left:27.945000px;}
.x27{left:29.745000px;}
.x16{left:30.780000px;}
.x19{left:32.940000px;}
.x35{left:34.380000px;}
.x15{left:35.460000px;}
.x12{left:38.880000px;}
.x11{left:40.680000px;}
.x1b{left:42.660000px;}
.x6{left:43.914000px;}
.xd{left:45.360000px;}
.x17{left:46.800000px;}
.x34{left:48.600000px;}
.x2c{left:50.040000px;}
.x1d{left:52.920000px;}
.x1{left:53.999987px;}
.x18{left:55.440000px;}
.x1c{left:57.240000px;}
.x14{left:71.280000px;}
.x37{left:74.339987px;}
.x1a{left:79.554000px;}
.x39{left:80.999987px;}
.x38{left:87.839987px;}
.x2{left:108.035987px;}
.x5{left:135.576000px;}
.x3{left:162.029987px;}
.x2d{left:256.530000px;}
.x7{left:294.915000px;}
.x33{left:320.835000px;}
.x28{left:345.495000px;}
.x2e{left:385.455000px;}
.x9{left:396.075000px;}
.x1e{left:445.575000px;}
.x29{left:484.305000px;}
.x2f{left:491.505000px;}
.x1f{left:499.605000px;}
.xb{left:511.665000px;}
.x21{left:546.945000px;}
.x30{left:572.145000px;}
.x2a{left:581.325000px;}
.xc{left:589.605000px;}
.x22{left:648.105000px;}
.xe{left:696.750000px;}
.x31{left:698.190000px;}
.x2b{left:719.970000px;}
.x36{left:722.490000px;}
.x3a{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.858667pt;}
.lsc{letter-spacing:-0.853333pt;}
.ls21{letter-spacing:-0.474133pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls2c{letter-spacing:-0.290133pt;}
.ls30{letter-spacing:-0.269333pt;}
.ls1f{letter-spacing:-0.165867pt;}
.ls27{letter-spacing:-0.127467pt;}
.ls9{letter-spacing:-0.102933pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls20{letter-spacing:-0.069867pt;}
.ls18{letter-spacing:-0.061867pt;}
.ls16{letter-spacing:-0.057600pt;}
.ls15{letter-spacing:-0.051840pt;}
.ls2f{letter-spacing:-0.044160pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.053867pt;}
.ls19{letter-spacing:0.058880pt;}
.ls1b{letter-spacing:0.124800pt;}
.lsa{letter-spacing:0.154667pt;}
.ls13{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.165867pt;}
.ls25{letter-spacing:0.173440pt;}
.ls14{letter-spacing:0.186880pt;}
.ls7{letter-spacing:0.272000pt;}
.ls24{letter-spacing:0.279680pt;}
.ls11{letter-spacing:0.284160pt;}
.ls2a{letter-spacing:0.317333pt;}
.ls28{letter-spacing:0.327467pt;}
.ls22{letter-spacing:0.349867pt;}
.ls1a{letter-spacing:0.426240pt;}
.ls10{letter-spacing:0.549120pt;}
.ls2d{letter-spacing:0.586240pt;}
.ls26{letter-spacing:0.794880pt;}
.ls1d{letter-spacing:0.805333pt;}
.ls23{letter-spacing:0.856320pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls29{letter-spacing:1.872640pt;}
.lsf{letter-spacing:5.072640pt;}
.ls2e{letter-spacing:10.832640pt;}
.ls1e{letter-spacing:17.232640pt;}
.lsd{letter-spacing:19.152640pt;}
.ls12{letter-spacing:24.912640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls2b{letter-spacing:37.712640pt;}
.lse{letter-spacing:180.122880pt;}
.ws0{word-spacing:-36.480000pt;}
.wsa{word-spacing:-14.672427pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws15{word-spacing:-12.810453pt;}
.ws11{word-spacing:-12.322453pt;}
.ws13{word-spacing:-12.277120pt;}
.wsc{word-spacing:-12.170987pt;}
.ws5{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.960960pt;}
.ws8{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.947520pt;}
.wsb{word-spacing:-11.943253pt;}
.wse{word-spacing:-11.935253pt;}
.ws6{word-spacing:-11.902187pt;}
.wsf{word-spacing:-11.877653pt;}
.wsd{word-spacing:-11.839253pt;}
.ws14{word-spacing:-11.735787pt;}
.ws10{word-spacing:-11.714987pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-516.723200pt;}
._17{margin-left:-9.541760pt;}
._18{margin-left:-6.981760pt;}
._a{margin-left:-2.966827pt;}
._8{margin-left:-2.021760pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._6{width:2.644053pt;}
._7{width:4.416640pt;}
._9{width:5.550933pt;}
._12{width:6.603947pt;}
._10{width:8.119680pt;}
._f{width:9.083520pt;}
._b{width:9.986560pt;}
._c{width:10.981333pt;}
._16{width:13.102933pt;}
._1d{width:14.785067pt;}
._11{width:15.953707pt;}
._e{width:16.874453pt;}
._d{width:17.901440pt;}
._14{width:19.495040pt;}
._13{width:20.504320pt;}
._1e{width:27.178240pt;}
._1b{width:28.259840pt;}
._1c{width:30.915840pt;}
._15{width:43.224960pt;}
._1a{width:52.411733pt;}
._19{width:53.704320pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:5.920000pt;}
.y10c{bottom:6.080000pt;}
.yf6{bottom:7.040000pt;}
.y6f{bottom:7.680000pt;}
.y10a{bottom:16.000000pt;}
.y83{bottom:17.600000pt;}
.ya4{bottom:18.240000pt;}
.ycf{bottom:24.640000pt;}
.y6b{bottom:26.400000pt;}
.y7f{bottom:36.320000pt;}
.ya0{bottom:36.960000pt;}
.y114{bottom:43.360000pt;}
.y6a{bottom:45.120000pt;}
.y6{bottom:54.432000pt;}
.y7e{bottom:55.040000pt;}
.y9f{bottom:55.680000pt;}
.y69{bottom:63.840000pt;}
.y7d{bottom:73.760000pt;}
.y9e{bottom:74.400000pt;}
.y12f{bottom:79.392000pt;}
.ycb{bottom:82.272000pt;}
.y68{bottom:82.560000pt;}
.y9a{bottom:82.752000pt;}
.y136{bottom:83.552000pt;}
.y117{bottom:91.232000pt;}
.y7c{bottom:92.480000pt;}
.y78{bottom:92.832000pt;}
.y108{bottom:92.992000pt;}
.y9d{bottom:93.120000pt;}
.y63{bottom:97.152000pt;}
.y12e{bottom:98.112000pt;}
.yca{bottom:100.992000pt;}
.y99{bottom:101.472000pt;}
.y30{bottom:103.072000pt;}
.y116{bottom:109.952000pt;}
.y77{bottom:111.552000pt;}
.y107{bottom:111.712000pt;}
.yf4{bottom:113.152000pt;}
.y62{bottom:115.872000pt;}
.y12d{bottom:116.832000pt;}
.yc9{bottom:119.712000pt;}
.y98{bottom:120.192000pt;}
.y2f{bottom:121.792000pt;}
.y115{bottom:128.672000pt;}
.y76{bottom:130.272000pt;}
.y106{bottom:130.432000pt;}
.yf3{bottom:131.872000pt;}
.y61{bottom:134.586667pt;}
.y12c{bottom:135.546667pt;}
.yc8{bottom:138.426667pt;}
.y97{bottom:138.906667pt;}
.y2e{bottom:140.506667pt;}
.y113{bottom:141.466667pt;}
.y75{bottom:148.986667pt;}
.y105{bottom:149.146667pt;}
.yf2{bottom:150.586667pt;}
.y60{bottom:153.306667pt;}
.y12b{bottom:154.266667pt;}
.yc7{bottom:157.146667pt;}
.y96{bottom:157.626667pt;}
.y2d{bottom:159.226667pt;}
.y74{bottom:167.706667pt;}
.y104{bottom:167.866667pt;}
.yf1{bottom:169.306667pt;}
.y5f{bottom:172.026667pt;}
.y12a{bottom:172.986667pt;}
.y135{bottom:175.546667pt;}
.yc6{bottom:175.866667pt;}
.y95{bottom:176.346667pt;}
.y2c{bottom:177.946667pt;}
.y73{bottom:186.426667pt;}
.y103{bottom:186.586667pt;}
.yf0{bottom:188.026667pt;}
.y5e{bottom:190.746667pt;}
.y129{bottom:191.706667pt;}
.y134{bottom:194.266667pt;}
.yc5{bottom:194.586667pt;}
.y94{bottom:195.066667pt;}
.y2b{bottom:196.666667pt;}
.y112{bottom:198.426667pt;}
.y72{bottom:205.146667pt;}
.y102{bottom:205.306667pt;}
.yef{bottom:206.746667pt;}
.y5d{bottom:209.466667pt;}
.y128{bottom:210.426667pt;}
.y133{bottom:212.986667pt;}
.yc4{bottom:213.306667pt;}
.y93{bottom:213.626667pt;}
.y2a{bottom:215.386667pt;}
.y111{bottom:217.626667pt;}
.y71{bottom:223.866667pt;}
.y101{bottom:224.026667pt;}
.yee{bottom:225.466667pt;}
.y127{bottom:227.866667pt;}
.y5c{bottom:228.186667pt;}
.y132{bottom:231.706667pt;}
.yc3{bottom:232.026667pt;}
.y92{bottom:232.346667pt;}
.y29{bottom:234.106667pt;}
.y110{bottom:236.826667pt;}
.y70{bottom:237.306667pt;}
.y100{bottom:242.746667pt;}
.yed{bottom:244.186667pt;}
.y126{bottom:245.466667pt;}
.y5b{bottom:246.906667pt;}
.y131{bottom:250.466667pt;}
.yc2{bottom:250.786667pt;}
.y91{bottom:251.106667pt;}
.y28{bottom:252.866667pt;}
.y10f{bottom:256.066667pt;}
.y67{bottom:256.706667pt;}
.yff{bottom:261.506667pt;}
.yec{bottom:262.946667pt;}
.y125{bottom:263.106667pt;}
.y5a{bottom:265.666667pt;}
.yc1{bottom:269.506667pt;}
.y90{bottom:269.826667pt;}
.y27{bottom:271.586667pt;}
.y10e{bottom:275.266667pt;}
.y6e{bottom:277.186667pt;}
.yfe{bottom:280.226667pt;}
.y124{bottom:280.706667pt;}
.yeb{bottom:281.666667pt;}
.y130{bottom:283.266667pt;}
.y59{bottom:284.386667pt;}
.yc0{bottom:288.226667pt;}
.y8f{bottom:288.546667pt;}
.y26{bottom:290.306667pt;}
.y10d{bottom:294.466667pt;}
.y6d{bottom:295.906667pt;}
.y123{bottom:298.146667pt;}
.yfd{bottom:298.946667pt;}
.yea{bottom:300.386667pt;}
.y58{bottom:303.106667pt;}
.ybf{bottom:306.786667pt;}
.y8e{bottom:307.266667pt;}
.y25{bottom:309.026667pt;}
.y109{bottom:313.666667pt;}
.y6c{bottom:314.626667pt;}
.y122{bottom:315.746667pt;}
.yfc{bottom:317.666667pt;}
.ye9{bottom:319.106667pt;}
.y57{bottom:321.826667pt;}
.ybe{bottom:325.506667pt;}
.y8d{bottom:325.986667pt;}
.y24{bottom:327.746667pt;}
.y66{bottom:333.346667pt;}
.y10b{bottom:333.506667pt;}
.yfb{bottom:336.386667pt;}
.ye8{bottom:337.826667pt;}
.y56{bottom:340.546667pt;}
.ybd{bottom:344.226667pt;}
.y8c{bottom:344.706667pt;}
.y23{bottom:346.466667pt;}
.y121{bottom:350.946667pt;}
.y64{bottom:352.706667pt;}
.yfa{bottom:355.106667pt;}
.ye7{bottom:356.546667pt;}
.y55{bottom:359.266667pt;}
.ybc{bottom:362.946667pt;}
.y8b{bottom:363.426667pt;}
.y22{bottom:365.186667pt;}
.yf9{bottom:368.546667pt;}
.y120{bottom:369.666667pt;}
.ye6{bottom:375.266667pt;}
.y54{bottom:377.986667pt;}
.ybb{bottom:381.666667pt;}
.y8a{bottom:382.146667pt;}
.y21{bottom:383.906667pt;}
.yf8{bottom:388.386667pt;}
.ye5{bottom:393.986667pt;}
.y53{bottom:396.706667pt;}
.yba{bottom:400.386667pt;}
.y89{bottom:400.866667pt;}
.y20{bottom:402.626667pt;}
.yf7{bottom:407.106667pt;}
.ye4{bottom:412.706667pt;}
.y52{bottom:415.426667pt;}
.yb9{bottom:419.106667pt;}
.y88{bottom:419.586667pt;}
.y1f{bottom:421.346667pt;}
.y11f{bottom:424.546667pt;}
.yf5{bottom:426.466667pt;}
.ye3{bottom:431.426667pt;}
.y51{bottom:434.146667pt;}
.yb8{bottom:437.826667pt;}
.y87{bottom:438.306667pt;}
.y1e{bottom:440.066667pt;}
.y11e{bottom:442.146667pt;}
.ye2{bottom:450.146667pt;}
.y50{bottom:452.866667pt;}
.yb7{bottom:456.546667pt;}
.y86{bottom:457.026667pt;}
.y1d{bottom:458.786667pt;}
.y11d{bottom:459.746667pt;}
.ye1{bottom:468.866667pt;}
.y4f{bottom:471.586667pt;}
.yb6{bottom:475.266667pt;}
.y85{bottom:475.746667pt;}
.y11c{bottom:477.346667pt;}
.y1c{bottom:477.506667pt;}
.ye0{bottom:487.586667pt;}
.y84{bottom:489.186667pt;}
.y4e{bottom:490.306667pt;}
.yb5{bottom:493.986667pt;}
.y11b{bottom:494.946667pt;}
.y1b{bottom:496.226667pt;}
.ydf{bottom:506.333333pt;}
.y7b{bottom:508.733333pt;}
.y4d{bottom:509.053333pt;}
.y11a{bottom:512.413333pt;}
.yb4{bottom:512.733333pt;}
.yde{bottom:525.053333pt;}
.y4c{bottom:527.773333pt;}
.y119{bottom:530.013333pt;}
.yb3{bottom:531.453333pt;}
.y1a{bottom:535.773333pt;}
.y82{bottom:539.133333pt;}
.ydd{bottom:543.773333pt;}
.y4b{bottom:546.493333pt;}
.y118{bottom:547.613333pt;}
.yb2{bottom:550.173333pt;}
.y81{bottom:557.853333pt;}
.y19{bottom:562.333333pt;}
.ydc{bottom:562.493333pt;}
.y4a{bottom:565.213333pt;}
.yb1{bottom:568.893333pt;}
.y80{bottom:576.573333pt;}
.y18{bottom:581.053333pt;}
.ydb{bottom:581.213333pt;}
.y49{bottom:583.933333pt;}
.yb0{bottom:587.613333pt;}
.y7a{bottom:595.293333pt;}
.y17{bottom:599.773333pt;}
.yda{bottom:599.933333pt;}
.y48{bottom:602.653333pt;}
.yaf{bottom:606.333333pt;}
.y79{bottom:614.813333pt;}
.y16{bottom:618.493333pt;}
.yd9{bottom:618.653333pt;}
.y47{bottom:621.373333pt;}
.yae{bottom:625.053333pt;}
.y15{bottom:637.213333pt;}
.yd8{bottom:637.373333pt;}
.y46{bottom:640.093333pt;}
.yad{bottom:643.773333pt;}
.y14{bottom:655.933333pt;}
.yd7{bottom:656.093333pt;}
.y45{bottom:658.813333pt;}
.yac{bottom:662.493333pt;}
.y13{bottom:674.653333pt;}
.yd6{bottom:674.813333pt;}
.y44{bottom:677.533333pt;}
.yab{bottom:681.213333pt;}
.y12{bottom:693.373333pt;}
.yd5{bottom:693.533333pt;}
.y43{bottom:696.253333pt;}
.yaa{bottom:699.933333pt;}
.yd4{bottom:706.973333pt;}
.y11{bottom:712.093333pt;}
.y42{bottom:714.973333pt;}
.ya9{bottom:718.653333pt;}
.yd3{bottom:726.333333pt;}
.y10{bottom:730.813333pt;}
.y41{bottom:733.693333pt;}
.ya8{bottom:737.373333pt;}
.yf{bottom:749.533333pt;}
.y40{bottom:752.413333pt;}
.ya7{bottom:756.133333pt;}
.yd2{bottom:763.813333pt;}
.ye{bottom:768.293333pt;}
.y3f{bottom:771.173333pt;}
.ya6{bottom:774.853333pt;}
.yd{bottom:787.013333pt;}
.ya5{bottom:788.293333pt;}
.y3e{bottom:789.893333pt;}
.yd1{bottom:801.253333pt;}
.yc{bottom:807.653333pt;}
.y3d{bottom:808.613333pt;}
.yd0{bottom:819.973333pt;}
.y3c{bottom:827.173333pt;}
.yb{bottom:831.013333pt;}
.ya3{bottom:838.693333pt;}
.y3b{bottom:845.893333pt;}
.ya{bottom:849.733333pt;}
.ya2{bottom:857.413333pt;}
.y9{bottom:864.613333pt;}
.ya1{bottom:876.133333pt;}
.y3a{bottom:883.333333pt;}
.y8{bottom:884.453333pt;}
.y9c{bottom:894.853333pt;}
.y39{bottom:902.053333pt;}
.y7{bottom:906.853333pt;}
.y9b{bottom:914.213333pt;}
.y38{bottom:920.773333pt;}
.yce{bottom:932.293333pt;}
.y37{bottom:939.493333pt;}
.y5{bottom:942.533333pt;}
.y36{bottom:958.213333pt;}
.ycd{bottom:969.733333pt;}
.y4{bottom:971.173333pt;}
.y35{bottom:976.933333pt;}
.ycc{bottom:989.093333pt;}
.y34{bottom:995.653333pt;}
.y3{bottom:999.653333pt;}
.y33{bottom:1014.400000pt;}
.y2{bottom:1028.320000pt;}
.y32{bottom:1033.120000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.hb{height:18.720000pt;}
.he{height:18.752000pt;}
.h19{height:19.200000pt;}
.h1a{height:19.232000pt;}
.h16{height:19.840000pt;}
.hd{height:20.480000pt;}
.h10{height:30.400000pt;}
.h13{height:31.040000pt;}
.h7{height:34.374375pt;}
.h14{height:37.440000pt;}
.h15{height:37.472000pt;}
.h18{height:39.040000pt;}
.h11{height:40.125312pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h17{height:52.934375pt;}
.h5{height:54.390938pt;}
.h9{height:55.298750pt;}
.ha{height:55.402500pt;}
.h1b{height:56.160000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.hc{height:95.360000pt;}
.hf{height:105.280000pt;}
.h12{height:105.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:42.080000pt;}
.w15{width:48.032000pt;}
.w23{width:57.152000pt;}
.w24{width:57.440000pt;}
.w7{width:69.280000pt;}
.wd{width:69.440000pt;}
.w20{width:71.680000pt;}
.wa{width:72.352000pt;}
.w3{width:72.512000pt;}
.w26{width:73.440000pt;}
.w1a{width:86.240000pt;}
.w10{width:89.280000pt;}
.wc{width:89.600000pt;}
.w5{width:89.920000pt;}
.w1f{width:94.272000pt;}
.w22{width:95.040000pt;}
.w8{width:95.232000pt;}
.we{width:95.392000pt;}
.w12{width:96.352000pt;}
.w11{width:102.432000pt;}
.w6{width:102.752000pt;}
.w1c{width:110.880000pt;}
.w21{width:112.032000pt;}
.w1e{width:114.592000pt;}
.w1b{width:123.232000pt;}
.w19{width:123.392000pt;}
.w13{width:126.240000pt;}
.w9{width:126.560000pt;}
.w25{width:133.626667pt;}
.w4{width:141.626667pt;}
.wb{width:141.786667pt;}
.wf{width:141.946667pt;}
.w17{width:175.226667pt;}
.w1d{width:180.026667pt;}
.w18{width:259.106667pt;}
.w14{width:348.066667pt;}
.w27{width:667.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:5.920000pt;}
.x10{left:7.200000pt;}
.x25{left:9.120000pt;}
.x24{left:12.160000pt;}
.x20{left:13.600000pt;}
.x26{left:14.880000pt;}
.x8{left:16.160000pt;}
.x4{left:19.040000pt;}
.xa{left:20.320000pt;}
.x13{left:22.720000pt;}
.xf{left:23.840000pt;}
.x32{left:24.840000pt;}
.x27{left:26.440000pt;}
.x16{left:27.360000pt;}
.x19{left:29.280000pt;}
.x35{left:30.560000pt;}
.x15{left:31.520000pt;}
.x12{left:34.560000pt;}
.x11{left:36.160000pt;}
.x1b{left:37.920000pt;}
.x6{left:39.034667pt;}
.xd{left:40.320000pt;}
.x17{left:41.600000pt;}
.x34{left:43.200000pt;}
.x2c{left:44.480000pt;}
.x1d{left:47.040000pt;}
.x1{left:47.999988pt;}
.x18{left:49.280000pt;}
.x1c{left:50.880000pt;}
.x14{left:63.360000pt;}
.x37{left:66.079988pt;}
.x1a{left:70.714667pt;}
.x39{left:71.999988pt;}
.x38{left:78.079988pt;}
.x2{left:96.031988pt;}
.x5{left:120.512000pt;}
.x3{left:144.026655pt;}
.x2d{left:228.026667pt;}
.x7{left:262.146667pt;}
.x33{left:285.186667pt;}
.x28{left:307.106667pt;}
.x2e{left:342.626667pt;}
.x9{left:352.066667pt;}
.x1e{left:396.066667pt;}
.x29{left:430.493333pt;}
.x2f{left:436.893333pt;}
.x1f{left:444.093333pt;}
.xb{left:454.813333pt;}
.x21{left:486.173333pt;}
.x30{left:508.573333pt;}
.x2a{left:516.733333pt;}
.xc{left:524.093333pt;}
.x22{left:576.093333pt;}
.xe{left:619.333333pt;}
.x31{left:620.613333pt;}
.x2b{left:639.973333pt;}
.x36{left:642.213333pt;}
.x3a{left:746.053322pt;}
}




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