
    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_03741c849a6bd7dd4d85d887.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7a431518f5a6abb47ab0c228.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_23395042de4eeea1b2f824cc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_c746543b3607b79136a30ac4.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a60e7a6ad4d34ddce0dbdfce.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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);}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.ls8{letter-spacing:-1.260000px;}
.ls4{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:25.308000px;}
.ls10{letter-spacing:52.668000px;}
.lsf{letter-spacing:52.812000px;}
.ls9{letter-spacing:68.508000px;}
.lse{letter-spacing:68.652000px;}
.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;}
}
.wsb{word-spacing:-54.000000px;}
.ws0{word-spacing:-32.940000px;}
.ws4{word-spacing:-19.457280px;}
.ws3{word-spacing:-19.431360px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.940000px;}
.wsc{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.608000px;}
.ws6{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.284000px;}
.wse{word-spacing:-13.140000px;}
.ws9{word-spacing:-9.072000px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-775.644480px;}
._6{margin-left:-33.480000px;}
._1a{margin-left:-4.320000px;}
._d{margin-left:-2.754000px;}
._1{margin-left:-1.404000px;}
._0{width:1.116000px;}
._a{width:2.484000px;}
._f{width:3.519840px;}
._c{width:4.644000px;}
._8{width:6.053760px;}
._3{width:7.356000px;}
._9{width:9.180000px;}
._e{width:10.818000px;}
._7{width:12.122400px;}
._10{width:13.685040px;}
._17{width:14.688000px;}
._16{width:15.822000px;}
._15{width:16.848000px;}
._13{width:18.522000px;}
._12{width:20.466000px;}
._11{width:21.546000px;}
._1d{width:22.896000px;}
._19{width:24.030000px;}
._18{width:25.110000px;}
._b{width:26.676000px;}
._20{width:27.882000px;}
._1f{width:28.998000px;}
._1c{width:30.276000px;}
._2a{width:31.374000px;}
._27{width:32.562000px;}
._26{width:33.858000px;}
._21{width:36.018000px;}
._24{width:37.746000px;}
._25{width:40.824000px;}
._1b{width:42.012000px;}
._1e{width:43.362000px;}
._29{width:44.388000px;}
._28{width:45.900000px;}
._23{width:47.754000px;}
._22{width:48.870000px;}
._14{width:52.164000px;}
._4{width:76.500000px;}
._2{width:971.040000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:131.760000px;}
.fs2{font-size:131.904000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y3d{bottom:4.320000px;}
.y7{bottom:5.940000px;}
.y9{bottom:6.630000px;}
.y4{bottom:15.480000px;}
.y2{bottom:18.540000px;}
.y3c{bottom:22.680000px;}
.y5{bottom:39.600000px;}
.y3b{bottom:51.480000px;}
.y1{bottom:60.660000px;}
.y3a{bottom:71.280000px;}
.y39{bottom:91.260000px;}
.y30{bottom:103.140000px;}
.y78{bottom:106.740000px;}
.y15f{bottom:107.460000px;}
.y38{bottom:111.060000px;}
.y12f{bottom:115.200000px;}
.y13a{bottom:115.560000px;}
.yb0{bottom:115.740000px;}
.y1c4{bottom:116.460000px;}
.y2f{bottom:120.960000px;}
.yc4{bottom:122.760000px;}
.yfc{bottom:124.380000px;}
.y19d{bottom:124.560000px;}
.y77{bottom:124.740000px;}
.y15e{bottom:125.280000px;}
.y37{bottom:130.905000px;}
.y12e{bottom:133.020000px;}
.y139{bottom:133.380000px;}
.yaf{bottom:133.560000px;}
.y1c3{bottom:134.280000px;}
.y2e{bottom:138.780000px;}
.yc3{bottom:140.580000px;}
.yfb{bottom:142.200000px;}
.y19c{bottom:142.380000px;}
.y76{bottom:142.560000px;}
.y15d{bottom:143.100000px;}
.y36{bottom:150.705000px;}
.y12d{bottom:150.840000px;}
.y138{bottom:151.200000px;}
.yae{bottom:151.380000px;}
.y1c2{bottom:152.100000px;}
.y2d{bottom:156.600000px;}
.yc2{bottom:158.220000px;}
.y194{bottom:160.020000px;}
.y19b{bottom:160.200000px;}
.y75{bottom:160.380000px;}
.y15c{bottom:160.920000px;}
.y17e{bottom:161.100000px;}
.y12c{bottom:168.840000px;}
.yfa{bottom:169.020000px;}
.yad{bottom:169.200000px;}
.y1b1{bottom:169.380000px;}
.y1c1{bottom:169.920000px;}
.y35{bottom:170.505000px;}
.y2c{bottom:174.420000px;}
.yc1{bottom:177.150000px;}
.y193{bottom:177.870000px;}
.y137{bottom:178.050000px;}
.y74{bottom:178.230000px;}
.y15b{bottom:178.950000px;}
.y12b{bottom:186.690000px;}
.yf9{bottom:186.870000px;}
.yac{bottom:187.050000px;}
.y1b0{bottom:187.230000px;}
.y34{bottom:190.485000px;}
.y2b{bottom:192.450000px;}
.yc0{bottom:195.150000px;}
.y136{bottom:195.870000px;}
.y73{bottom:196.050000px;}
.y15a{bottom:196.770000px;}
.y17d{bottom:196.950000px;}
.y12a{bottom:204.510000px;}
.yf8{bottom:204.690000px;}
.yab{bottom:204.870000px;}
.y1af{bottom:205.050000px;}
.y2a{bottom:210.270000px;}
.y33{bottom:210.285000px;}
.ybf{bottom:212.970000px;}
.y1db{bottom:213.510000px;}
.y72{bottom:213.870000px;}
.y159{bottom:214.590000px;}
.y17c{bottom:214.770000px;}
.y129{bottom:222.330000px;}
.yf7{bottom:222.690000px;}
.y19a{bottom:222.870000px;}
.y29{bottom:228.090000px;}
.ybe{bottom:230.790000px;}
.y1da{bottom:231.330000px;}
.y135{bottom:231.690000px;}
.y71{bottom:231.870000px;}
.y32{bottom:231.885000px;}
.y158{bottom:232.410000px;}
.y17b{bottom:232.590000px;}
.y128{bottom:240.150000px;}
.yf6{bottom:240.510000px;}
.y199{bottom:240.690000px;}
.y1ae{bottom:240.870000px;}
.y28{bottom:248.250000px;}
.ybd{bottom:248.610000px;}
.y1d9{bottom:249.150000px;}
.y134{bottom:249.510000px;}
.y70{bottom:249.690000px;}
.y17a{bottom:250.410000px;}
.y127{bottom:258.150000px;}
.y192{bottom:258.330000px;}
.y198{bottom:258.510000px;}
.y1ad{bottom:258.690000px;}
.y157{bottom:259.230000px;}
.y1d8{bottom:267.150000px;}
.yf5{bottom:267.330000px;}
.y6f{bottom:267.510000px;}
.y179{bottom:268.230000px;}
.y191{bottom:276.150000px;}
.y133{bottom:276.330000px;}
.y93{bottom:276.510000px;}
.y156{bottom:277.050000px;}
.y126{bottom:284.970000px;}
.yf4{bottom:285.150000px;}
.y6e{bottom:285.330000px;}
.y178{bottom:286.050000px;}
.y132{bottom:294.150000px;}
.y92{bottom:294.330000px;}
.y155{bottom:295.050000px;}
.y27{bottom:300.990000px;}
.y31{bottom:302.070000px;}
.y125{bottom:302.790000px;}
.yf3{bottom:302.970000px;}
.y6d{bottom:303.150000px;}
.y1ac{bottom:303.330000px;}
.y1c0{bottom:304.050000px;}
.y190{bottom:311.970000px;}
.y91{bottom:312.150000px;}
.y154{bottom:312.870000px;}
.y177{bottom:313.050000px;}
.y124{bottom:320.610000px;}
.yf2{bottom:320.790000px;}
.ybc{bottom:320.970000px;}
.y6c{bottom:321.150000px;}
.y1bf{bottom:321.870000px;}
.y18f{bottom:329.790000px;}
.y131{bottom:329.970000px;}
.y90{bottom:330.150000px;}
.y153{bottom:330.690000px;}
.y176{bottom:330.870000px;}
.y123{bottom:338.430000px;}
.yf1{bottom:338.790000px;}
.yaa{bottom:338.970000px;}
.y1be{bottom:339.690000px;}
.y18e{bottom:347.610000px;}
.y197{bottom:347.790000px;}
.y6b{bottom:347.970000px;}
.y1ab{bottom:348.150000px;}
.y175{bottom:348.690000px;}
.ybb{bottom:348.870000px;}
.y122{bottom:356.250000px;}
.yf0{bottom:356.610000px;}
.ya9{bottom:356.790000px;}
.y152{bottom:357.510000px;}
.y26{bottom:363.450000px;}
.y1d7{bottom:365.250000px;}
.y18d{bottom:365.430000px;}
.y196{bottom:365.610000px;}
.y6a{bottom:365.790000px;}
.y1aa{bottom:365.970000px;}
.y174{bottom:366.510000px;}
.yba{bottom:366.690000px;}
.yef{bottom:374.430000px;}
.ya8{bottom:374.610000px;}
.y151{bottom:375.330000px;}
.y121{bottom:383.250000px;}
.y195{bottom:383.430000px;}
.y69{bottom:383.610000px;}
.y1a9{bottom:383.790000px;}
.y173{bottom:384.330000px;}
.yb9{bottom:384.510000px;}
.ya7{bottom:392.430000px;}
.y150{bottom:393.330000px;}
.y120{bottom:401.070000px;}
.yee{bottom:401.250000px;}
.y68{bottom:401.430000px;}
.y1a8{bottom:401.610000px;}
.yb8{bottom:402.330000px;}
.ya6{bottom:410.250000px;}
.y11f{bottom:418.935000px;}
.yed{bottom:419.115000px;}
.y67{bottom:419.295000px;}
.y1a7{bottom:419.475000px;}
.y14f{bottom:420.195000px;}
.yb7{bottom:420.375000px;}
.ya5{bottom:428.295000px;}
.y25{bottom:434.775000px;}
.y11e{bottom:436.755000px;}
.yec{bottom:437.115000px;}
.y8f{bottom:437.295000px;}
.y14e{bottom:438.015000px;}
.yb6{bottom:438.195000px;}
.y1d6{bottom:445.755000px;}
.y18c{bottom:445.935000px;}
.ya4{bottom:446.115000px;}
.y66{bottom:446.295000px;}
.y11d{bottom:454.575000px;}
.yeb{bottom:454.935000px;}
.y8e{bottom:455.115000px;}
.y1a6{bottom:455.295000px;}
.y14d{bottom:455.835000px;}
.yb5{bottom:456.015000px;}
.y24{bottom:458.715000px;}
.y1d5{bottom:463.575000px;}
.y18b{bottom:463.755000px;}
.ya3{bottom:463.935000px;}
.y65{bottom:464.115000px;}
.y172{bottom:464.835000px;}
.yea{bottom:472.755000px;}
.y8d{bottom:472.935000px;}
.y1a5{bottom:473.115000px;}
.y14c{bottom:473.655000px;}
.yb4{bottom:473.835000px;}
.y11c{bottom:481.575000px;}
.ya2{bottom:481.755000px;}
.y64{bottom:481.935000px;}
.y23{bottom:482.475000px;}
.y171{bottom:482.655000px;}
.y8c{bottom:490.755000px;}
.y1a4{bottom:490.935000px;}
.y14b{bottom:491.475000px;}
.yb3{bottom:491.655000px;}
.ye9{bottom:492.915000px;}
.y11b{bottom:499.395000px;}
.y18a{bottom:499.575000px;}
.y63{bottom:499.755000px;}
.y170{bottom:500.475000px;}
.y22{bottom:506.235000px;}
.y1d4{bottom:508.395000px;}
.y8b{bottom:508.575000px;}
.y1a3{bottom:508.755000px;}
.yb2{bottom:509.475000px;}
.y11a{bottom:517.215000px;}
.y189{bottom:517.395000px;}
.y62{bottom:517.575000px;}
.y16f{bottom:518.475000px;}
.y1f8{bottom:518.655000px;}
.ye8{bottom:525.315000px;}
.y1d3{bottom:526.215000px;}
.y8a{bottom:526.575000px;}
.y14a{bottom:527.295000px;}
.yb1{bottom:529.815000px;}
.y21{bottom:529.995000px;}
.y119{bottom:535.035000px;}
.y61{bottom:535.575000px;}
.y1f7{bottom:536.475000px;}
.ye7{bottom:543.135000px;}
.y1d2{bottom:544.035000px;}
.y188{bottom:544.215000px;}
.ya1{bottom:544.395000px;}
.y1a2{bottom:544.575000px;}
.y16e{bottom:545.295000px;}
.y1bd{bottom:547.455000px;}
.y118{bottom:552.855000px;}
.y60{bottom:553.395000px;}
.y20{bottom:553.935000px;}
.y149{bottom:554.115000px;}
.y1f6{bottom:554.475000px;}
.ye6{bottom:561.135000px;}
.y1d1{bottom:561.855000px;}
.y187{bottom:562.035000px;}
.ya0{bottom:562.215000px;}
.y1a1{bottom:562.395000px;}
.y16d{bottom:563.115000px;}
.y5f{bottom:571.215000px;}
.y148{bottom:571.935000px;}
.y1f5{bottom:572.295000px;}
.y1f{bottom:576.975000px;}
.ye5{bottom:578.955000px;}
.y117{bottom:579.675000px;}
.y186{bottom:579.855000px;}
.y9f{bottom:580.035000px;}
.y1a0{bottom:580.215000px;}
.y16c{bottom:580.935000px;}
.y1d0{bottom:588.675000px;}
.y5e{bottom:589.035000px;}
.y147{bottom:589.755000px;}
.y1f4{bottom:590.115000px;}
.ye4{bottom:596.775000px;}
.y116{bottom:597.675000px;}
.y9e{bottom:597.855000px;}
.y19f{bottom:598.035000px;}
.y1e{bottom:598.755000px;}
.y1cf{bottom:606.675000px;}
.y5d{bottom:606.855000px;}
.y146{bottom:607.755000px;}
.y1f3{bottom:607.935000px;}
.ye3{bottom:614.595000px;}
.y115{bottom:615.495000px;}
.y9d{bottom:615.675000px;}
.y19e{bottom:615.855000px;}
.y16b{bottom:616.755000px;}
.y1ce{bottom:624.495000px;}
.y89{bottom:624.675000px;}
.y145{bottom:625.575000px;}
.y1f2{bottom:625.755000px;}
.y1d{bottom:629.535000px;}
.ye2{bottom:632.415000px;}
.y114{bottom:633.315000px;}
.y1bc{bottom:633.495000px;}
.y5c{bottom:633.675000px;}
.y16a{bottom:634.575000px;}
.y1cd{bottom:642.315000px;}
.y185{bottom:642.495000px;}
.y88{bottom:642.675000px;}
.y144{bottom:643.395000px;}
.y1f1{bottom:643.755000px;}
.ye1{bottom:650.415000px;}
.y113{bottom:651.135000px;}
.y1bb{bottom:651.315000px;}
.y9c{bottom:651.495000px;}
.y5b{bottom:651.675000px;}
.y169{bottom:652.395000px;}
.y1c{bottom:657.615000px;}
.y1cc{bottom:660.165000px;}
.y184{bottom:660.345000px;}
.y87{bottom:660.525000px;}
.y143{bottom:661.245000px;}
.y1f0{bottom:661.605000px;}
.ye0{bottom:668.265000px;}
.y1ba{bottom:669.165000px;}
.y9b{bottom:669.345000px;}
.y5a{bottom:669.525000px;}
.y112{bottom:677.985000px;}
.y183{bottom:678.165000px;}
.y86{bottom:678.345000px;}
.y168{bottom:679.245000px;}
.y1ef{bottom:679.425000px;}
.y142{bottom:681.405000px;}
.y1b9{bottom:686.985000px;}
.y9a{bottom:687.165000px;}
.y59{bottom:687.345000px;}
.ydf{bottom:695.085000px;}
.y111{bottom:695.805000px;}
.y182{bottom:695.985000px;}
.y85{bottom:696.165000px;}
.y167{bottom:697.065000px;}
.y1ee{bottom:697.245000px;}
.y1b8{bottom:704.805000px;}
.y58{bottom:705.165000px;}
.y1b{bottom:712.185000px;}
.yde{bottom:712.905000px;}
.y110{bottom:713.805000px;}
.y84{bottom:713.985000px;}
.y166{bottom:714.885000px;}
.y1ed{bottom:715.065000px;}
.y1b7{bottom:722.805000px;}
.y57{bottom:722.985000px;}
.ydd{bottom:730.725000px;}
.y83{bottom:731.805000px;}
.y165{bottom:732.885000px;}
.y10f{bottom:740.625000px;}
.y56{bottom:740.805000px;}
.ydc{bottom:748.545000px;}
.y141{bottom:749.625000px;}
.y82{bottom:749.805000px;}
.y164{bottom:750.705000px;}
.y1ec{bottom:750.885000px;}
.y1a{bottom:752.325000px;}
.y19{bottom:758.265000px;}
.y10e{bottom:758.445000px;}
.y181{bottom:758.625000px;}
.y55{bottom:758.805000px;}
.ydb{bottom:766.545000px;}
.y140{bottom:767.445000px;}
.y81{bottom:767.625000px;}
.y163{bottom:768.525000px;}
.y1eb{bottom:768.705000px;}
.y1b6{bottom:776.265000px;}
.y180{bottom:776.445000px;}
.y54{bottom:776.625000px;}
.y10d{bottom:785.265000px;}
.y80{bottom:785.445000px;}
.y162{bottom:786.345000px;}
.y1ea{bottom:786.525000px;}
.yda{bottom:793.365000px;}
.y1b5{bottom:794.085000px;}
.y17f{bottom:794.265000px;}
.y53{bottom:794.445000px;}
.y18{bottom:798.405000px;}
.y10c{bottom:803.085000px;}
.y7f{bottom:803.265000px;}
.y1e9{bottom:804.345000px;}
.y161{bottom:806.505000px;}
.yd9{bottom:811.185000px;}
.y13f{bottom:812.085000px;}
.y52{bottom:812.265000px;}
.y7e{bottom:821.085000px;}
.y1e8{bottom:822.165000px;}
.y17{bottom:826.305000px;}
.yd8{bottom:829.005000px;}
.y1cb{bottom:829.905000px;}
.y51{bottom:830.085000px;}
.y10b{bottom:838.905000px;}
.y7d{bottom:839.085000px;}
.y1e7{bottom:839.985000px;}
.yd7{bottom:846.825000px;}
.y1ca{bottom:847.725000px;}
.y13e{bottom:847.905000px;}
.y50{bottom:848.085000px;}
.y1b4{bottom:856.725000px;}
.y7c{bottom:856.905000px;}
.y1e6{bottom:857.985000px;}
.yd6{bottom:864.825000px;}
.y10a{bottom:865.725000px;}
.y4f{bottom:865.905000px;}
.y1b3{bottom:874.545000px;}
.y7b{bottom:874.725000px;}
.y1e5{bottom:875.805000px;}
.y16{bottom:881.025000px;}
.yd5{bottom:882.645000px;}
.y109{bottom:883.545000px;}
.y4e{bottom:883.725000px;}
.y1c9{bottom:892.365000px;}
.y160{bottom:892.545000px;}
.y1e4{bottom:893.625000px;}
.yd4{bottom:900.510000px;}
.y108{bottom:901.410000px;}
.y4d{bottom:901.590000px;}
.y15{bottom:903.930000px;}
.y1c8{bottom:910.230000px;}
.y13d{bottom:910.410000px;}
.y1e3{bottom:911.490000px;}
.yd3{bottom:918.330000px;}
.y107{bottom:919.230000px;}
.y4c{bottom:919.410000px;}
.y14{bottom:921.210000px;}
.y13c{bottom:928.230000px;}
.y1e2{bottom:929.310000px;}
.yd2{bottom:936.150000px;}
.y4b{bottom:937.230000px;}
.y13{bottom:938.490000px;}
.y1c7{bottom:946.050000px;}
.y13b{bottom:946.230000px;}
.y1e1{bottom:947.310000px;}
.yd1{bottom:953.970000px;}
.y1b2{bottom:955.050000px;}
.y4a{bottom:955.230000px;}
.y12{bottom:955.770000px;}
.y106{bottom:964.050000px;}
.y99{bottom:964.230000px;}
.y1e0{bottom:965.130000px;}
.y11{bottom:972.870000px;}
.y49{bottom:973.050000px;}
.yd0{bottom:980.970000px;}
.y105{bottom:981.870000px;}
.y98{bottom:982.050000px;}
.y1df{bottom:982.950000px;}
.y1c6{bottom:990.690000px;}
.y10{bottom:990.870000px;}
.ycf{bottom:998.790000px;}
.y104{bottom:999.690000px;}
.y97{bottom:999.870000px;}
.y1de{bottom:1000.770000px;}
.y1c5{bottom:1008.510000px;}
.y48{bottom:1008.690000px;}
.yce{bottom:1016.610000px;}
.y103{bottom:1017.510000px;}
.y96{bottom:1017.690000px;}
.y1dd{bottom:1018.590000px;}
.y47{bottom:1026.510000px;}
.yf{bottom:1027.950000px;}
.ycd{bottom:1034.430000px;}
.y95{bottom:1035.510000px;}
.y1dc{bottom:1038.930000px;}
.ye{bottom:1040.010000px;}
.y46{bottom:1044.510000px;}
.yd{bottom:1052.070000px;}
.y102{bottom:1053.330000px;}
.y94{bottom:1053.510000px;}
.ycc{bottom:1061.250000px;}
.y7a{bottom:1062.330000px;}
.yc{bottom:1064.130000px;}
.y101{bottom:1071.150000px;}
.y45{bottom:1071.330000px;}
.yb{bottom:1078.710000px;}
.ycb{bottom:1079.250000px;}
.y79{bottom:1080.150000px;}
.y100{bottom:1088.970000px;}
.y44{bottom:1089.150000px;}
.yca{bottom:1097.070000px;}
.y130{bottom:1097.970000px;}
.ya{bottom:1104.270000px;}
.y43{bottom:1106.970000px;}
.yc9{bottom:1114.890000px;}
.yff{bottom:1115.790000px;}
.y8{bottom:1124.460000px;}
.y42{bottom:1124.790000px;}
.yfe{bottom:1133.610000px;}
.yc8{bottom:1141.710000px;}
.y41{bottom:1142.640000px;}
.yfd{bottom:1151.640000px;}
.yc7{bottom:1159.560000px;}
.y40{bottom:1160.640000px;}
.y6{bottom:1163.160000px;}
.yc6{bottom:1177.380000px;}
.y3f{bottom:1178.460000px;}
.yc5{bottom:1195.200000px;}
.y3e{bottom:1196.280000px;}
.h6{height:28.440000px;}
.hc{height:29.158594px;}
.h8{height:29.160000px;}
.h11{height:29.464453px;}
.h2{height:31.140000px;}
.h3{height:37.705078px;}
.h4{height:38.100586px;}
.h18{height:39.313477px;}
.he{height:41.726953px;}
.hf{height:42.164648px;}
.h17{height:43.136719px;}
.h13{height:46.251562px;}
.h12{height:46.736719px;}
.h16{height:49.255313px;}
.hd{height:50.800781px;}
.h14{height:54.864844px;}
.h10{height:58.819922px;}
.ha{height:59.436914px;}
.hb{height:63.500977px;}
.h5{height:65.884219px;}
.h9{height:92.965430px;}
.h7{height:93.067031px;}
.h15{height:259.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:78.480000px;}
.w6{width:202.860000px;}
.w2{width:706.650000px;}
.w5{width:762.660000px;}
.w7{width:813.750000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x8{left:-1.185000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x1b{left:10.800000px;}
.x1a{left:39.240000px;}
.x1{left:54.000000px;}
.x6{left:64.800000px;}
.x1e{left:80.999987px;}
.xe{left:87.119987px;}
.x1f{left:108.035987px;}
.x16{left:176.609987px;}
.x15{left:200.009987px;}
.x2{left:214.590000px;}
.x17{left:229.529987px;}
.xb{left:281.729987px;}
.xa{left:285.689987px;}
.xc{left:299.594987px;}
.x18{left:324.074987px;}
.x7{left:345.060000px;}
.x9{left:365.294987px;}
.xd{left:378.794987px;}
.x14{left:389.954987px;}
.x13{left:395.174987px;}
.xf{left:400.394987px;}
.x5{left:446.474987px;}
.x19{left:473.474987px;}
.x1c{left:500.504987px;}
.x1d{left:527.504987px;}
.x12{left:560.624987px;}
.x11{left:565.844987px;}
.x10{left:711.869987px;}
.x4{left:760.650000px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls4{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:22.496000pt;}
.ls10{letter-spacing:46.816000pt;}
.lsf{letter-spacing:46.944000pt;}
.ls9{letter-spacing:60.896000pt;}
.lse{letter-spacing:61.024000pt;}
.wsb{word-spacing:-48.000000pt;}
.ws0{word-spacing:-29.280000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws3{word-spacing:-17.272320pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.096000pt;}
.ws6{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.808000pt;}
.wse{word-spacing:-11.680000pt;}
.ws9{word-spacing:-8.064000pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-689.461760pt;}
._6{margin-left:-29.760000pt;}
._1a{margin-left:-3.840000pt;}
._d{margin-left:-2.448000pt;}
._1{margin-left:-1.248000pt;}
._0{width:0.992000pt;}
._a{width:2.208000pt;}
._f{width:3.128747pt;}
._c{width:4.128000pt;}
._8{width:5.381120pt;}
._3{width:6.538667pt;}
._9{width:8.160000pt;}
._e{width:9.616000pt;}
._7{width:10.775467pt;}
._10{width:12.164480pt;}
._17{width:13.056000pt;}
._16{width:14.064000pt;}
._15{width:14.976000pt;}
._13{width:16.464000pt;}
._12{width:18.192000pt;}
._11{width:19.152000pt;}
._1d{width:20.352000pt;}
._19{width:21.360000pt;}
._18{width:22.320000pt;}
._b{width:23.712000pt;}
._20{width:24.784000pt;}
._1f{width:25.776000pt;}
._1c{width:26.912000pt;}
._2a{width:27.888000pt;}
._27{width:28.944000pt;}
._26{width:30.096000pt;}
._21{width:32.016000pt;}
._24{width:33.552000pt;}
._25{width:36.288000pt;}
._1b{width:37.344000pt;}
._1e{width:38.544000pt;}
._29{width:39.456000pt;}
._28{width:40.800000pt;}
._23{width:42.448000pt;}
._22{width:43.440000pt;}
._14{width:46.368000pt;}
._4{width:68.000000pt;}
._2{width:863.146667pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:117.120000pt;}
.fs2{font-size:117.248000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y3d{bottom:3.840000pt;}
.y7{bottom:5.280000pt;}
.y9{bottom:5.893333pt;}
.y4{bottom:13.760000pt;}
.y2{bottom:16.480000pt;}
.y3c{bottom:20.160000pt;}
.y5{bottom:35.200000pt;}
.y3b{bottom:45.760000pt;}
.y1{bottom:53.920000pt;}
.y3a{bottom:63.360000pt;}
.y39{bottom:81.120000pt;}
.y30{bottom:91.680000pt;}
.y78{bottom:94.880000pt;}
.y15f{bottom:95.520000pt;}
.y38{bottom:98.720000pt;}
.y12f{bottom:102.400000pt;}
.y13a{bottom:102.720000pt;}
.yb0{bottom:102.880000pt;}
.y1c4{bottom:103.520000pt;}
.y2f{bottom:107.520000pt;}
.yc4{bottom:109.120000pt;}
.yfc{bottom:110.560000pt;}
.y19d{bottom:110.720000pt;}
.y77{bottom:110.880000pt;}
.y15e{bottom:111.360000pt;}
.y37{bottom:116.360000pt;}
.y12e{bottom:118.240000pt;}
.y139{bottom:118.560000pt;}
.yaf{bottom:118.720000pt;}
.y1c3{bottom:119.360000pt;}
.y2e{bottom:123.360000pt;}
.yc3{bottom:124.960000pt;}
.yfb{bottom:126.400000pt;}
.y19c{bottom:126.560000pt;}
.y76{bottom:126.720000pt;}
.y15d{bottom:127.200000pt;}
.y36{bottom:133.960000pt;}
.y12d{bottom:134.080000pt;}
.y138{bottom:134.400000pt;}
.yae{bottom:134.560000pt;}
.y1c2{bottom:135.200000pt;}
.y2d{bottom:139.200000pt;}
.yc2{bottom:140.640000pt;}
.y194{bottom:142.240000pt;}
.y19b{bottom:142.400000pt;}
.y75{bottom:142.560000pt;}
.y15c{bottom:143.040000pt;}
.y17e{bottom:143.200000pt;}
.y12c{bottom:150.080000pt;}
.yfa{bottom:150.240000pt;}
.yad{bottom:150.400000pt;}
.y1b1{bottom:150.560000pt;}
.y1c1{bottom:151.040000pt;}
.y35{bottom:151.560000pt;}
.y2c{bottom:155.040000pt;}
.yc1{bottom:157.466667pt;}
.y193{bottom:158.106667pt;}
.y137{bottom:158.266667pt;}
.y74{bottom:158.426667pt;}
.y15b{bottom:159.066667pt;}
.y12b{bottom:165.946667pt;}
.yf9{bottom:166.106667pt;}
.yac{bottom:166.266667pt;}
.y1b0{bottom:166.426667pt;}
.y34{bottom:169.320000pt;}
.y2b{bottom:171.066667pt;}
.yc0{bottom:173.466667pt;}
.y136{bottom:174.106667pt;}
.y73{bottom:174.266667pt;}
.y15a{bottom:174.906667pt;}
.y17d{bottom:175.066667pt;}
.y12a{bottom:181.786667pt;}
.yf8{bottom:181.946667pt;}
.yab{bottom:182.106667pt;}
.y1af{bottom:182.266667pt;}
.y2a{bottom:186.906667pt;}
.y33{bottom:186.920000pt;}
.ybf{bottom:189.306667pt;}
.y1db{bottom:189.786667pt;}
.y72{bottom:190.106667pt;}
.y159{bottom:190.746667pt;}
.y17c{bottom:190.906667pt;}
.y129{bottom:197.626667pt;}
.yf7{bottom:197.946667pt;}
.y19a{bottom:198.106667pt;}
.y29{bottom:202.746667pt;}
.ybe{bottom:205.146667pt;}
.y1da{bottom:205.626667pt;}
.y135{bottom:205.946667pt;}
.y71{bottom:206.106667pt;}
.y32{bottom:206.120000pt;}
.y158{bottom:206.586667pt;}
.y17b{bottom:206.746667pt;}
.y128{bottom:213.466667pt;}
.yf6{bottom:213.786667pt;}
.y199{bottom:213.946667pt;}
.y1ae{bottom:214.106667pt;}
.y28{bottom:220.666667pt;}
.ybd{bottom:220.986667pt;}
.y1d9{bottom:221.466667pt;}
.y134{bottom:221.786667pt;}
.y70{bottom:221.946667pt;}
.y17a{bottom:222.586667pt;}
.y127{bottom:229.466667pt;}
.y192{bottom:229.626667pt;}
.y198{bottom:229.786667pt;}
.y1ad{bottom:229.946667pt;}
.y157{bottom:230.426667pt;}
.y1d8{bottom:237.466667pt;}
.yf5{bottom:237.626667pt;}
.y6f{bottom:237.786667pt;}
.y179{bottom:238.426667pt;}
.y191{bottom:245.466667pt;}
.y133{bottom:245.626667pt;}
.y93{bottom:245.786667pt;}
.y156{bottom:246.266667pt;}
.y126{bottom:253.306667pt;}
.yf4{bottom:253.466667pt;}
.y6e{bottom:253.626667pt;}
.y178{bottom:254.266667pt;}
.y132{bottom:261.466667pt;}
.y92{bottom:261.626667pt;}
.y155{bottom:262.266667pt;}
.y27{bottom:267.546667pt;}
.y31{bottom:268.506667pt;}
.y125{bottom:269.146667pt;}
.yf3{bottom:269.306667pt;}
.y6d{bottom:269.466667pt;}
.y1ac{bottom:269.626667pt;}
.y1c0{bottom:270.266667pt;}
.y190{bottom:277.306667pt;}
.y91{bottom:277.466667pt;}
.y154{bottom:278.106667pt;}
.y177{bottom:278.266667pt;}
.y124{bottom:284.986667pt;}
.yf2{bottom:285.146667pt;}
.ybc{bottom:285.306667pt;}
.y6c{bottom:285.466667pt;}
.y1bf{bottom:286.106667pt;}
.y18f{bottom:293.146667pt;}
.y131{bottom:293.306667pt;}
.y90{bottom:293.466667pt;}
.y153{bottom:293.946667pt;}
.y176{bottom:294.106667pt;}
.y123{bottom:300.826667pt;}
.yf1{bottom:301.146667pt;}
.yaa{bottom:301.306667pt;}
.y1be{bottom:301.946667pt;}
.y18e{bottom:308.986667pt;}
.y197{bottom:309.146667pt;}
.y6b{bottom:309.306667pt;}
.y1ab{bottom:309.466667pt;}
.y175{bottom:309.946667pt;}
.ybb{bottom:310.106667pt;}
.y122{bottom:316.666667pt;}
.yf0{bottom:316.986667pt;}
.ya9{bottom:317.146667pt;}
.y152{bottom:317.786667pt;}
.y26{bottom:323.066667pt;}
.y1d7{bottom:324.666667pt;}
.y18d{bottom:324.826667pt;}
.y196{bottom:324.986667pt;}
.y6a{bottom:325.146667pt;}
.y1aa{bottom:325.306667pt;}
.y174{bottom:325.786667pt;}
.yba{bottom:325.946667pt;}
.yef{bottom:332.826667pt;}
.ya8{bottom:332.986667pt;}
.y151{bottom:333.626667pt;}
.y121{bottom:340.666667pt;}
.y195{bottom:340.826667pt;}
.y69{bottom:340.986667pt;}
.y1a9{bottom:341.146667pt;}
.y173{bottom:341.626667pt;}
.yb9{bottom:341.786667pt;}
.ya7{bottom:348.826667pt;}
.y150{bottom:349.626667pt;}
.y120{bottom:356.506667pt;}
.yee{bottom:356.666667pt;}
.y68{bottom:356.826667pt;}
.y1a8{bottom:356.986667pt;}
.yb8{bottom:357.626667pt;}
.ya6{bottom:364.666667pt;}
.y11f{bottom:372.386667pt;}
.yed{bottom:372.546667pt;}
.y67{bottom:372.706667pt;}
.y1a7{bottom:372.866667pt;}
.y14f{bottom:373.506667pt;}
.yb7{bottom:373.666667pt;}
.ya5{bottom:380.706667pt;}
.y25{bottom:386.466667pt;}
.y11e{bottom:388.226667pt;}
.yec{bottom:388.546667pt;}
.y8f{bottom:388.706667pt;}
.y14e{bottom:389.346667pt;}
.yb6{bottom:389.506667pt;}
.y1d6{bottom:396.226667pt;}
.y18c{bottom:396.386667pt;}
.ya4{bottom:396.546667pt;}
.y66{bottom:396.706667pt;}
.y11d{bottom:404.066667pt;}
.yeb{bottom:404.386667pt;}
.y8e{bottom:404.546667pt;}
.y1a6{bottom:404.706667pt;}
.y14d{bottom:405.186667pt;}
.yb5{bottom:405.346667pt;}
.y24{bottom:407.746667pt;}
.y1d5{bottom:412.066667pt;}
.y18b{bottom:412.226667pt;}
.ya3{bottom:412.386667pt;}
.y65{bottom:412.546667pt;}
.y172{bottom:413.186667pt;}
.yea{bottom:420.226667pt;}
.y8d{bottom:420.386667pt;}
.y1a5{bottom:420.546667pt;}
.y14c{bottom:421.026667pt;}
.yb4{bottom:421.186667pt;}
.y11c{bottom:428.066667pt;}
.ya2{bottom:428.226667pt;}
.y64{bottom:428.386667pt;}
.y23{bottom:428.866667pt;}
.y171{bottom:429.026667pt;}
.y8c{bottom:436.226667pt;}
.y1a4{bottom:436.386667pt;}
.y14b{bottom:436.866667pt;}
.yb3{bottom:437.026667pt;}
.ye9{bottom:438.146667pt;}
.y11b{bottom:443.906667pt;}
.y18a{bottom:444.066667pt;}
.y63{bottom:444.226667pt;}
.y170{bottom:444.866667pt;}
.y22{bottom:449.986667pt;}
.y1d4{bottom:451.906667pt;}
.y8b{bottom:452.066667pt;}
.y1a3{bottom:452.226667pt;}
.yb2{bottom:452.866667pt;}
.y11a{bottom:459.746667pt;}
.y189{bottom:459.906667pt;}
.y62{bottom:460.066667pt;}
.y16f{bottom:460.866667pt;}
.y1f8{bottom:461.026667pt;}
.ye8{bottom:466.946667pt;}
.y1d3{bottom:467.746667pt;}
.y8a{bottom:468.066667pt;}
.y14a{bottom:468.706667pt;}
.yb1{bottom:470.946667pt;}
.y21{bottom:471.106667pt;}
.y119{bottom:475.586667pt;}
.y61{bottom:476.066667pt;}
.y1f7{bottom:476.866667pt;}
.ye7{bottom:482.786667pt;}
.y1d2{bottom:483.586667pt;}
.y188{bottom:483.746667pt;}
.ya1{bottom:483.906667pt;}
.y1a2{bottom:484.066667pt;}
.y16e{bottom:484.706667pt;}
.y1bd{bottom:486.626667pt;}
.y118{bottom:491.426667pt;}
.y60{bottom:491.906667pt;}
.y20{bottom:492.386667pt;}
.y149{bottom:492.546667pt;}
.y1f6{bottom:492.866667pt;}
.ye6{bottom:498.786667pt;}
.y1d1{bottom:499.426667pt;}
.y187{bottom:499.586667pt;}
.ya0{bottom:499.746667pt;}
.y1a1{bottom:499.906667pt;}
.y16d{bottom:500.546667pt;}
.y5f{bottom:507.746667pt;}
.y148{bottom:508.386667pt;}
.y1f5{bottom:508.706667pt;}
.y1f{bottom:512.866667pt;}
.ye5{bottom:514.626667pt;}
.y117{bottom:515.266667pt;}
.y186{bottom:515.426667pt;}
.y9f{bottom:515.586667pt;}
.y1a0{bottom:515.746667pt;}
.y16c{bottom:516.386667pt;}
.y1d0{bottom:523.266667pt;}
.y5e{bottom:523.586667pt;}
.y147{bottom:524.226667pt;}
.y1f4{bottom:524.546667pt;}
.ye4{bottom:530.466667pt;}
.y116{bottom:531.266667pt;}
.y9e{bottom:531.426667pt;}
.y19f{bottom:531.586667pt;}
.y1e{bottom:532.226667pt;}
.y1cf{bottom:539.266667pt;}
.y5d{bottom:539.426667pt;}
.y146{bottom:540.226667pt;}
.y1f3{bottom:540.386667pt;}
.ye3{bottom:546.306667pt;}
.y115{bottom:547.106667pt;}
.y9d{bottom:547.266667pt;}
.y19e{bottom:547.426667pt;}
.y16b{bottom:548.226667pt;}
.y1ce{bottom:555.106667pt;}
.y89{bottom:555.266667pt;}
.y145{bottom:556.066667pt;}
.y1f2{bottom:556.226667pt;}
.y1d{bottom:559.586667pt;}
.ye2{bottom:562.146667pt;}
.y114{bottom:562.946667pt;}
.y1bc{bottom:563.106667pt;}
.y5c{bottom:563.266667pt;}
.y16a{bottom:564.066667pt;}
.y1cd{bottom:570.946667pt;}
.y185{bottom:571.106667pt;}
.y88{bottom:571.266667pt;}
.y144{bottom:571.906667pt;}
.y1f1{bottom:572.226667pt;}
.ye1{bottom:578.146667pt;}
.y113{bottom:578.786667pt;}
.y1bb{bottom:578.946667pt;}
.y9c{bottom:579.106667pt;}
.y5b{bottom:579.266667pt;}
.y169{bottom:579.906667pt;}
.y1c{bottom:584.546667pt;}
.y1cc{bottom:586.813333pt;}
.y184{bottom:586.973333pt;}
.y87{bottom:587.133333pt;}
.y143{bottom:587.773333pt;}
.y1f0{bottom:588.093333pt;}
.ye0{bottom:594.013333pt;}
.y1ba{bottom:594.813333pt;}
.y9b{bottom:594.973333pt;}
.y5a{bottom:595.133333pt;}
.y112{bottom:602.653333pt;}
.y183{bottom:602.813333pt;}
.y86{bottom:602.973333pt;}
.y168{bottom:603.773333pt;}
.y1ef{bottom:603.933333pt;}
.y142{bottom:605.693333pt;}
.y1b9{bottom:610.653333pt;}
.y9a{bottom:610.813333pt;}
.y59{bottom:610.973333pt;}
.ydf{bottom:617.853333pt;}
.y111{bottom:618.493333pt;}
.y182{bottom:618.653333pt;}
.y85{bottom:618.813333pt;}
.y167{bottom:619.613333pt;}
.y1ee{bottom:619.773333pt;}
.y1b8{bottom:626.493333pt;}
.y58{bottom:626.813333pt;}
.y1b{bottom:633.053333pt;}
.yde{bottom:633.693333pt;}
.y110{bottom:634.493333pt;}
.y84{bottom:634.653333pt;}
.y166{bottom:635.453333pt;}
.y1ed{bottom:635.613333pt;}
.y1b7{bottom:642.493333pt;}
.y57{bottom:642.653333pt;}
.ydd{bottom:649.533333pt;}
.y83{bottom:650.493333pt;}
.y165{bottom:651.453333pt;}
.y10f{bottom:658.333333pt;}
.y56{bottom:658.493333pt;}
.ydc{bottom:665.373333pt;}
.y141{bottom:666.333333pt;}
.y82{bottom:666.493333pt;}
.y164{bottom:667.293333pt;}
.y1ec{bottom:667.453333pt;}
.y1a{bottom:668.733333pt;}
.y19{bottom:674.013333pt;}
.y10e{bottom:674.173333pt;}
.y181{bottom:674.333333pt;}
.y55{bottom:674.493333pt;}
.ydb{bottom:681.373333pt;}
.y140{bottom:682.173333pt;}
.y81{bottom:682.333333pt;}
.y163{bottom:683.133333pt;}
.y1eb{bottom:683.293333pt;}
.y1b6{bottom:690.013333pt;}
.y180{bottom:690.173333pt;}
.y54{bottom:690.333333pt;}
.y10d{bottom:698.013333pt;}
.y80{bottom:698.173333pt;}
.y162{bottom:698.973333pt;}
.y1ea{bottom:699.133333pt;}
.yda{bottom:705.213333pt;}
.y1b5{bottom:705.853333pt;}
.y17f{bottom:706.013333pt;}
.y53{bottom:706.173333pt;}
.y18{bottom:709.693333pt;}
.y10c{bottom:713.853333pt;}
.y7f{bottom:714.013333pt;}
.y1e9{bottom:714.973333pt;}
.y161{bottom:716.893333pt;}
.yd9{bottom:721.053333pt;}
.y13f{bottom:721.853333pt;}
.y52{bottom:722.013333pt;}
.y7e{bottom:729.853333pt;}
.y1e8{bottom:730.813333pt;}
.y17{bottom:734.493333pt;}
.yd8{bottom:736.893333pt;}
.y1cb{bottom:737.693333pt;}
.y51{bottom:737.853333pt;}
.y10b{bottom:745.693333pt;}
.y7d{bottom:745.853333pt;}
.y1e7{bottom:746.653333pt;}
.yd7{bottom:752.733333pt;}
.y1ca{bottom:753.533333pt;}
.y13e{bottom:753.693333pt;}
.y50{bottom:753.853333pt;}
.y1b4{bottom:761.533333pt;}
.y7c{bottom:761.693333pt;}
.y1e6{bottom:762.653333pt;}
.yd6{bottom:768.733333pt;}
.y10a{bottom:769.533333pt;}
.y4f{bottom:769.693333pt;}
.y1b3{bottom:777.373333pt;}
.y7b{bottom:777.533333pt;}
.y1e5{bottom:778.493333pt;}
.y16{bottom:783.133333pt;}
.yd5{bottom:784.573333pt;}
.y109{bottom:785.373333pt;}
.y4e{bottom:785.533333pt;}
.y1c9{bottom:793.213333pt;}
.y160{bottom:793.373333pt;}
.y1e4{bottom:794.333333pt;}
.yd4{bottom:800.453333pt;}
.y108{bottom:801.253333pt;}
.y4d{bottom:801.413333pt;}
.y15{bottom:803.493333pt;}
.y1c8{bottom:809.093333pt;}
.y13d{bottom:809.253333pt;}
.y1e3{bottom:810.213333pt;}
.yd3{bottom:816.293333pt;}
.y107{bottom:817.093333pt;}
.y4c{bottom:817.253333pt;}
.y14{bottom:818.853333pt;}
.y13c{bottom:825.093333pt;}
.y1e2{bottom:826.053333pt;}
.yd2{bottom:832.133333pt;}
.y4b{bottom:833.093333pt;}
.y13{bottom:834.213333pt;}
.y1c7{bottom:840.933333pt;}
.y13b{bottom:841.093333pt;}
.y1e1{bottom:842.053333pt;}
.yd1{bottom:847.973333pt;}
.y1b2{bottom:848.933333pt;}
.y4a{bottom:849.093333pt;}
.y12{bottom:849.573333pt;}
.y106{bottom:856.933333pt;}
.y99{bottom:857.093333pt;}
.y1e0{bottom:857.893333pt;}
.y11{bottom:864.773333pt;}
.y49{bottom:864.933333pt;}
.yd0{bottom:871.973333pt;}
.y105{bottom:872.773333pt;}
.y98{bottom:872.933333pt;}
.y1df{bottom:873.733333pt;}
.y1c6{bottom:880.613333pt;}
.y10{bottom:880.773333pt;}
.ycf{bottom:887.813333pt;}
.y104{bottom:888.613333pt;}
.y97{bottom:888.773333pt;}
.y1de{bottom:889.573333pt;}
.y1c5{bottom:896.453333pt;}
.y48{bottom:896.613333pt;}
.yce{bottom:903.653333pt;}
.y103{bottom:904.453333pt;}
.y96{bottom:904.613333pt;}
.y1dd{bottom:905.413333pt;}
.y47{bottom:912.453333pt;}
.yf{bottom:913.733333pt;}
.ycd{bottom:919.493333pt;}
.y95{bottom:920.453333pt;}
.y1dc{bottom:923.493333pt;}
.ye{bottom:924.453333pt;}
.y46{bottom:928.453333pt;}
.yd{bottom:935.173333pt;}
.y102{bottom:936.293333pt;}
.y94{bottom:936.453333pt;}
.ycc{bottom:943.333333pt;}
.y7a{bottom:944.293333pt;}
.yc{bottom:945.893333pt;}
.y101{bottom:952.133333pt;}
.y45{bottom:952.293333pt;}
.yb{bottom:958.853333pt;}
.ycb{bottom:959.333333pt;}
.y79{bottom:960.133333pt;}
.y100{bottom:967.973333pt;}
.y44{bottom:968.133333pt;}
.yca{bottom:975.173333pt;}
.y130{bottom:975.973333pt;}
.ya{bottom:981.573333pt;}
.y43{bottom:983.973333pt;}
.yc9{bottom:991.013333pt;}
.yff{bottom:991.813333pt;}
.y8{bottom:999.520000pt;}
.y42{bottom:999.813333pt;}
.yfe{bottom:1007.653333pt;}
.yc8{bottom:1014.853333pt;}
.y41{bottom:1015.680000pt;}
.yfd{bottom:1023.680000pt;}
.yc7{bottom:1030.720000pt;}
.y40{bottom:1031.680000pt;}
.y6{bottom:1033.920000pt;}
.yc6{bottom:1046.560000pt;}
.y3f{bottom:1047.520000pt;}
.yc5{bottom:1062.400000pt;}
.y3e{bottom:1063.360000pt;}
.h6{height:25.280000pt;}
.hc{height:25.918750pt;}
.h8{height:25.920000pt;}
.h11{height:26.190625pt;}
.h2{height:27.680000pt;}
.h3{height:33.515625pt;}
.h4{height:33.867188pt;}
.h18{height:34.945312pt;}
.he{height:37.090625pt;}
.hf{height:37.479688pt;}
.h17{height:38.343750pt;}
.h13{height:41.112500pt;}
.h12{height:41.543750pt;}
.h16{height:43.782500pt;}
.hd{height:45.156250pt;}
.h14{height:48.768750pt;}
.h10{height:52.284375pt;}
.ha{height:52.832812pt;}
.hb{height:56.445312pt;}
.h5{height:58.563750pt;}
.h9{height:82.635937pt;}
.h7{height:82.726250pt;}
.h15{height:230.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:69.760000pt;}
.w6{width:180.320000pt;}
.w2{width:628.133333pt;}
.w5{width:677.920000pt;}
.w7{width:723.333333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x8{left:-1.053333pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x1b{left:9.600000pt;}
.x1a{left:34.880000pt;}
.x1{left:48.000000pt;}
.x6{left:57.600000pt;}
.x1e{left:71.999988pt;}
.xe{left:77.439988pt;}
.x1f{left:96.031988pt;}
.x16{left:156.986655pt;}
.x15{left:177.786655pt;}
.x2{left:190.746667pt;}
.x17{left:204.026655pt;}
.xb{left:250.426655pt;}
.xa{left:253.946655pt;}
.xc{left:266.306655pt;}
.x18{left:288.066655pt;}
.x7{left:306.720000pt;}
.x9{left:324.706655pt;}
.xd{left:336.706655pt;}
.x14{left:346.626655pt;}
.x13{left:351.266655pt;}
.xf{left:355.906655pt;}
.x5{left:396.866655pt;}
.x19{left:420.866655pt;}
.x1c{left:444.893322pt;}
.x1d{left:468.893322pt;}
.x12{left:498.333322pt;}
.x11{left:502.973322pt;}
.x10{left:632.773322pt;}
.x4{left:676.133333pt;}
}




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