
    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_b84307f22d5c7162a34c6ab0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_597647ad75f60e9df065aa03.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_46b4275163846fdd8d3e3748.woff2')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_28ca3e226a7e0f6f8601f82e.woff2')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_d73791558252515c73f26289.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_83abb23e21ed45e7db824736.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0408de8187ef09a6337848d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_53f04dbfca4d1916a60b29ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d6b8eef22b102b61a19416fb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6e1ec153d7b6f719ef8d6e97.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e98ba56f9922bfacf59515e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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:ffd;src:url('chunks/assets/font_6ecea7fde7520de368a9498c.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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:-76.320000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.lsb{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.828000px;}
.ls8{letter-spacing:-0.792000px;}
.ls20{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.ls1b{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.126000px;}
.ls16{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.306600px;}
.ls18{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.336000px;}
.ls1e{letter-spacing:0.342000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.540000px;}
.ls3{letter-spacing:1.049760px;}
.ls15{letter-spacing:25.308000px;}
.ls19{letter-spacing:49.788000px;}
.lse{letter-spacing:52.668000px;}
.ls17{letter-spacing:55.386720px;}
.ls14{letter-spacing:64.026720px;}
.ls13{letter-spacing:64.170720px;}
.lsf{letter-spacing:68.508000px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.wsd{word-spacing:-54.000000px;}
.ws7{word-spacing:-19.457280px;}
.wsa{word-spacing:-19.431360px;}
.ws2{word-spacing:-17.208000px;}
.ws6{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.246600px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.940000px;}
.wsc{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.716000px;}
.wse{word-spacing:-13.626000px;}
.ws11{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.284000px;}
.wsb{word-spacing:-12.672000px;}
.ws4{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.026000px;}
._1{width:1.488000px;}
._a{width:3.000000px;}
._8{width:4.225680px;}
._9{width:5.397360px;}
._b{width:6.629760px;}
._7{width:7.960080px;}
._6{width:9.023760px;}
._17{width:10.032480px;}
._3{width:11.321856px;}
._4{width:12.349824px;}
._5{width:13.386240px;}
._20{width:14.526000px;}
._13{width:15.606000px;}
._14{width:16.740000px;}
._15{width:17.874000px;}
._11{width:19.332000px;}
._1c{width:20.544000px;}
._c{width:21.816000px;}
._d{width:23.382000px;}
._e{width:24.462000px;}
._1d{width:26.082000px;}
._16{width:27.216000px;}
._10{width:28.350000px;}
._12{width:29.916000px;}
._23{width:31.320000px;}
._27{width:33.048000px;}
._1a{width:34.776000px;}
._1b{width:35.910000px;}
._1f{width:37.200000px;}
._19{width:39.258000px;}
._1e{width:41.202000px;}
._2c{width:43.146000px;}
._22{width:44.604000px;}
._29{width:46.796400px;}
._24{width:50.328000px;}
._f{width:52.758000px;}
._21{width:54.270000px;}
._28{width:59.076000px;}
._18{width:60.534000px;}
._2b{width:68.234400px;}
._25{width:70.254000px;}
._26{width:71.442000px;}
._2a{width:81.324000px;}
._2{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc8{color:rgb(51,51,51);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y151{bottom:9.720000px;}
.y16c{bottom:10.065000px;}
.y153{bottom:10.080000px;}
.y16a{bottom:10.245000px;}
.y156{bottom:10.260000px;}
.y15e{bottom:10.620000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y162{bottom:19.080000px;}
.y161{bottom:27.900000px;}
.y5{bottom:39.780000px;}
.y3b{bottom:45.390000px;}
.y1{bottom:60.660000px;}
.y38{bottom:93.990000px;}
.y14e{bottom:101.520000px;}
.yf5{bottom:103.680000px;}
.y2d{bottom:104.760000px;}
.yaa{bottom:112.140000px;}
.y37{bottom:113.790000px;}
.y198{bottom:118.620000px;}
.y14d{bottom:119.340000px;}
.y2c{bottom:122.580000px;}
.ya9{bottom:129.960000px;}
.yf4{bottom:130.500000px;}
.y11f{bottom:133.560000px;}
.y36{bottom:133.770000px;}
.y76{bottom:135.000000px;}
.y197{bottom:136.440000px;}
.y14c{bottom:137.340000px;}
.y2b{bottom:140.400000px;}
.ya8{bottom:147.960000px;}
.y1bd{bottom:150.840000px;}
.y11e{bottom:151.380000px;}
.y75{bottom:152.820000px;}
.y35{bottom:153.570000px;}
.y14b{bottom:155.160000px;}
.yf3{bottom:157.320000px;}
.y2a{bottom:158.220000px;}
.y174{bottom:163.620000px;}
.y196{bottom:165.240000px;}
.ya7{bottom:165.780000px;}
.y1bc{bottom:168.660000px;}
.y11d{bottom:168.840000px;}
.y74{bottom:170.640000px;}
.y14a{bottom:172.980000px;}
.y34{bottom:173.370000px;}
.y29{bottom:176.040000px;}
.y173{bottom:181.440000px;}
.ya6{bottom:183.600000px;}
.yf2{bottom:184.320000px;}
.y11c{bottom:186.840000px;}
.y73{bottom:188.460000px;}
.y195{bottom:189.180000px;}
.y149{bottom:190.440000px;}
.y33{bottom:193.170000px;}
.y28{bottom:193.860000px;}
.y1bb{bottom:195.480000px;}
.ya5{bottom:201.060000px;}
.y2e{bottom:203.220000px;}
.y72{bottom:206.310000px;}
.y194{bottom:207.210000px;}
.y172{bottom:208.470000px;}
.y27{bottom:211.890000px;}
.y32{bottom:212.970000px;}
.yf1{bottom:213.510000px;}
.y11b{bottom:214.050000px;}
.yd4{bottom:215.310000px;}
.y148{bottom:217.650000px;}
.ya4{bottom:221.250000px;}
.y71{bottom:224.310000px;}
.y3c{bottom:228.630000px;}
.y26{bottom:229.710000px;}
.y11a{bottom:231.870000px;}
.y31{bottom:232.950000px;}
.yd3{bottom:233.130000px;}
.y147{bottom:235.470000px;}
.y193{bottom:236.550000px;}
.y171{bottom:237.810000px;}
.y1ba{bottom:240.330000px;}
.yf0{bottom:240.510000px;}
.y70{bottom:242.130000px;}
.y25{bottom:247.530000px;}
.y3a{bottom:248.610000px;}
.y119{bottom:249.690000px;}
.yd2{bottom:250.590000px;}
.y30{bottom:252.795000px;}
.y146{bottom:253.470000px;}
.ya3{bottom:254.190000px;}
.y1b9{bottom:258.150000px;}
.y6f{bottom:259.950000px;}
.y192{bottom:265.710000px;}
.y170{bottom:266.610000px;}
.yef{bottom:267.330000px;}
.y118{bottom:267.510000px;}
.ya2{bottom:272.010000px;}
.y24{bottom:274.350000px;}
.y39{bottom:277.410000px;}
.y6e{bottom:277.770000px;}
.y145{bottom:282.810000px;}
.y2f{bottom:283.035000px;}
.y191{bottom:283.710000px;}
.y1b8{bottom:284.970000px;}
.y16f{bottom:293.085000px;}
.yee{bottom:294.150000px;}
.y117{bottom:294.510000px;}
.y6d{bottom:295.590000px;}
.yd1{bottom:295.770000px;}
.ya1{bottom:298.830000px;}
.y144{bottom:300.630000px;}
.y23{bottom:301.170000px;}
.y1b7{bottom:302.790000px;}
.y190{bottom:312.870000px;}
.yd0{bottom:313.230000px;}
.ya0{bottom:316.650000px;}
.y1b6{bottom:320.610000px;}
.yed{bottom:320.970000px;}
.y6c{bottom:322.410000px;}
.y116{bottom:323.850000px;}
.y16e{bottom:326.025000px;}
.y22{bottom:328.170000px;}
.y143{bottom:329.970000px;}
.y18f{bottom:330.690000px;}
.y6b{bottom:340.410000px;}
.y9f{bottom:343.650000px;}
.y1b5{bottom:347.610000px;}
.yec{bottom:347.970000px;}
.y115{bottom:353.190000px;}
.y21{bottom:354.990000px;}
.y18e{bottom:357.150000px;}
.y6a{bottom:358.230000px;}
.y16d{bottom:358.785000px;}
.y1b4{bottom:365.430000px;}
.y9e{bottom:371.370000px;}
.y69{bottom:376.050000px;}
.yeb{bottom:377.130000px;}
.y20{bottom:381.810000px;}
.y114{bottom:382.530000px;}
.y1b3{bottom:383.250000px;}
.y18d{bottom:384.330000px;}
.y16b{bottom:391.725000px;}
.y68{bottom:393.870000px;}
.ycf{bottom:394.050000px;}
.yea{bottom:394.950000px;}
.y9d{bottom:399.270000px;}
.y18c{bottom:402.330000px;}
.y1b2{bottom:410.070000px;}
.yce{bottom:411.510000px;}
.y67{bottom:411.690000px;}
.y142{bottom:412.410000px;}
.ye9{bottom:412.590000px;}
.y1f{bottom:417.450000px;}
.y169{bottom:424.485000px;}
.y9c{bottom:426.990000px;}
.y1b1{bottom:427.890000px;}
.y113{bottom:429.150000px;}
.y66{bottom:429.690000px;}
.y18b{bottom:431.670000px;}
.y1e{bottom:435.270000px;}
.ycd{bottom:438.690000px;}
.y141{bottom:439.590000px;}
.ye8{bottom:439.770000px;}
.y1b0{bottom:445.935000px;}
.y65{bottom:447.555000px;}
.y9b{bottom:454.935000px;}
.y1d{bottom:455.115000px;}
.ycc{bottom:456.555000px;}
.ye7{bottom:457.275000px;}
.y168{bottom:457.455000px;}
.y140{bottom:457.635000px;}
.y18a{bottom:460.515000px;}
.y1af{bottom:463.755000px;}
.y64{bottom:465.375000px;}
.y9a{bottom:472.755000px;}
.y112{bottom:474.375000px;}
.ycb{bottom:474.555000px;}
.y1c{bottom:478.875000px;}
.y1ae{bottom:481.575000px;}
.y63{bottom:483.195000px;}
.ye6{bottom:484.455000px;}
.y13f{bottom:486.795000px;}
.y189{bottom:487.875000px;}
.y111{bottom:492.195000px;}
.y167{bottom:494.715000px;}
.y1ad{bottom:499.395000px;}
.y99{bottom:499.575000px;}
.y62{bottom:501.015000px;}
.ye5{bottom:502.275000px;}
.y1b{bottom:502.635000px;}
.yca{bottom:503.715000px;}
.y13e{bottom:504.795000px;}
.y188{bottom:517.215000px;}
.y98{bottom:517.395000px;}
.y110{bottom:519.195000px;}
.ye4{bottom:520.275000px;}
.y166{bottom:521.355000px;}
.yc9{bottom:521.715000px;}
.y1ac{bottom:526.215000px;}
.y1a{bottom:526.395000px;}
.y61{bottom:527.835000px;}
.y13d{bottom:534.135000px;}
.y97{bottom:535.215000px;}
.ye3{bottom:538.095000px;}
.y1ab{bottom:544.035000px;}
.y60{bottom:545.835000px;}
.y187{bottom:546.015000px;}
.y10f{bottom:548.535000px;}
.y19{bottom:550.155000px;}
.yc8{bottom:550.875000px;}
.y13c{bottom:551.955000px;}
.ye2{bottom:555.915000px;}
.y96{bottom:562.035000px;}
.y5f{bottom:563.655000px;}
.y165{bottom:566.355000px;}
.yc7{bottom:568.875000px;}
.y186{bottom:573.375000px;}
.ye1{bottom:573.735000px;}
.y10e{bottom:577.875000px;}
.y18{bottom:580.935000px;}
.y13b{bottom:581.295000px;}
.y5e{bottom:581.475000px;}
.y95{bottom:588.675000px;}
.y1aa{bottom:588.855000px;}
.y164{bottom:592.455000px;}
.yc6{bottom:597.675000px;}
.y13a{bottom:599.115000px;}
.y5d{bottom:599.295000px;}
.ye0{bottom:600.555000px;}
.y185{bottom:602.715000px;}
.y1a9{bottom:606.675000px;}
.y10d{bottom:607.215000px;}
.y17{bottom:611.715000px;}
.y94{bottom:615.855000px;}
.y5c{bottom:617.115000px;}
.ydf{bottom:618.555000px;}
.y1a8{bottom:624.495000px;}
.yc5{bottom:625.035000px;}
.y184{bottom:631.695000px;}
.y93{bottom:633.675000px;}
.y5b{bottom:635.115000px;}
.y10c{bottom:636.555000px;}
.yc4{bottom:642.855000px;}
.y163{bottom:643.215000px;}
.y139{bottom:646.275000px;}
.yde{bottom:647.715000px;}
.y1a7{bottom:651.315000px;}
.y5a{bottom:652.935000px;}
.y183{bottom:658.875000px;}
.y92{bottom:660.495000px;}
.yc3{bottom:660.675000px;}
.y138{bottom:663.735000px;}
.ydd{bottom:665.715000px;}
.y16{bottom:668.055000px;}
.y1a6{bottom:669.135000px;}
.y59{bottom:670.755000px;}
.y160{bottom:676.365000px;}
.y182{bottom:676.905000px;}
.y91{bottom:678.345000px;}
.yc2{bottom:678.525000px;}
.y10b{bottom:683.565000px;}
.y58{bottom:688.605000px;}
.y137{bottom:690.945000px;}
.y15{bottom:691.305000px;}
.ydc{bottom:694.905000px;}
.y1a5{bottom:696.165000px;}
.yc1{bottom:696.345000px;}
.y10a{bottom:701.385000px;}
.y90{bottom:705.165000px;}
.y181{bottom:706.065000px;}
.y57{bottom:706.425000px;}
.y136{bottom:708.945000px;}
.ydb{bottom:712.905000px;}
.y1a4{bottom:713.985000px;}
.yc0{bottom:714.165000px;}
.y109{bottom:718.845000px;}
.y8f{bottom:723.165000px;}
.y180{bottom:724.065000px;}
.y56{bottom:724.245000px;}
.y135{bottom:726.765000px;}
.y15f{bottom:727.125000px;}
.y1a3{bottom:731.805000px;}
.ybf{bottom:732.165000px;}
.y14{bottom:739.905000px;}
.y8e{bottom:740.985000px;}
.y55{bottom:742.245000px;}
.y134{bottom:744.585000px;}
.y108{bottom:746.205000px;}
.ybe{bottom:749.625000px;}
.y17f{bottom:752.865000px;}
.y1a2{bottom:758.625000px;}
.y54{bottom:760.065000px;}
.y15d{bottom:760.245000px;}
.y133{bottom:762.045000px;}
.y107{bottom:764.025000px;}
.y8d{bottom:767.805000px;}
.y1a1{bottom:776.445000px;}
.ybd{bottom:776.805000px;}
.y53{bottom:777.885000px;}
.y17e{bottom:779.685000px;}
.y106{bottom:781.845000px;}
.y8c{bottom:785.625000px;}
.y13{bottom:786.165000px;}
.y132{bottom:789.225000px;}
.y15c{bottom:794.265000px;}
.y1a0{bottom:794.445000px;}
.ybc{bottom:794.625000px;}
.yda{bottom:795.705000px;}
.y8b{bottom:803.445000px;}
.y52{bottom:804.705000px;}
.y17d{bottom:806.865000px;}
.y131{bottom:807.045000px;}
.y105{bottom:808.845000px;}
.ybb{bottom:812.445000px;}
.yd9{bottom:813.525000px;}
.y12{bottom:814.965000px;}
.y19f{bottom:821.265000px;}
.y51{bottom:822.525000px;}
.y17c{bottom:824.685000px;}
.y130{bottom:825.045000px;}
.y8a{bottom:830.445000px;}
.yd8{bottom:830.985000px;}
.y15b{bottom:831.165000px;}
.y104{bottom:838.005000px;}
.y50{bottom:840.345000px;}
.y19e{bottom:848.085000px;}
.yba{bottom:848.265000px;}
.y17b{bottom:851.685000px;}
.y12f{bottom:851.865000px;}
.y103{bottom:856.005000px;}
.y89{bottom:856.905000px;}
.y15a{bottom:857.625000px;}
.y4f{bottom:858.345000px;}
.y19d{bottom:865.905000px;}
.yb9{bottom:866.085000px;}
.y11{bottom:866.445000px;}
.y4e{bottom:876.165000px;}
.y12e{bottom:878.685000px;}
.y17a{bottom:881.025000px;}
.y19c{bottom:883.725000px;}
.y88{bottom:884.085000px;}
.y102{bottom:885.165000px;}
.y10{bottom:889.125000px;}
.y159{bottom:890.565000px;}
.yb8{bottom:892.905000px;}
.y4d{bottom:893.985000px;}
.y87{bottom:901.905000px;}
.y101{bottom:903.165000px;}
.y12d{bottom:905.505000px;}
.y179{bottom:910.410000px;}
.y19b{bottom:910.590000px;}
.yb7{bottom:910.770000px;}
.yf{bottom:910.950000px;}
.y4c{bottom:911.850000px;}
.y86{bottom:919.770000px;}
.y158{bottom:923.370000px;}
.yb6{bottom:928.590000px;}
.y4b{bottom:929.670000px;}
.y12c{bottom:932.370000px;}
.y100{bottom:932.550000px;}
.ye{bottom:932.730000px;}
.y85{bottom:937.590000px;}
.yd7{bottom:938.670000px;}
.y178{bottom:939.570000px;}
.y19a{bottom:946.410000px;}
.yb5{bottom:946.590000px;}
.y4a{bottom:947.670000px;}
.yd{bottom:954.150000px;}
.y84{bottom:955.590000px;}
.y157{bottom:956.310000px;}
.yd6{bottom:956.670000px;}
.y177{bottom:957.570000px;}
.y12b{bottom:959.190000px;}
.yff{bottom:961.890000px;}
.yb4{bottom:964.410000px;}
.y199{bottom:973.230000px;}
.y83{bottom:973.410000px;}
.y49{bottom:974.490000px;}
.y176{bottom:975.390000px;}
.yc{bottom:976.290000px;}
.yb3{bottom:982.230000px;}
.y12a{bottom:986.190000px;}
.y155{bottom:989.070000px;}
.yfe{bottom:991.050000px;}
.y82{bottom:991.230000px;}
.y48{bottom:992.310000px;}
.y175{bottom:995.190000px;}
.yb2{bottom:1000.050000px;}
.y129{bottom:1004.010000px;}
.yfd{bottom:1008.870000px;}
.y81{bottom:1009.050000px;}
.y47{bottom:1010.130000px;}
.yb{bottom:1017.510000px;}
.yb1{bottom:1017.870000px;}
.y128{bottom:1021.470000px;}
.y154{bottom:1022.010000px;}
.yfc{bottom:1026.870000px;}
.y46{bottom:1027.950000px;}
.ya{bottom:1029.570000px;}
.y1c1{bottom:1033.350000px;}
.yb0{bottom:1035.510000px;}
.y80{bottom:1035.870000px;}
.y9{bottom:1041.630000px;}
.yfb{bottom:1044.330000px;}
.y45{bottom:1045.770000px;}
.y127{bottom:1048.650000px;}
.y8{bottom:1053.690000px;}
.y7f{bottom:1053.870000px;}
.y152{bottom:1054.950000px;}
.yaf{bottom:1062.690000px;}
.y44{bottom:1063.770000px;}
.y126{bottom:1066.470000px;}
.y7{bottom:1068.270000px;}
.y1c0{bottom:1070.970000px;}
.yfa{bottom:1071.510000px;}
.y7e{bottom:1071.690000px;}
.yae{bottom:1080.510000px;}
.y43{bottom:1081.590000px;}
.y150{bottom:1087.710000px;}
.yf9{bottom:1089.330000px;}
.y7d{bottom:1089.510000px;}
.y125{bottom:1093.470000px;}
.y6{bottom:1093.830000px;}
.yad{bottom:1098.330000px;}
.y42{bottom:1099.410000px;}
.yf8{bottom:1107.150000px;}
.y7c{bottom:1107.330000px;}
.y124{bottom:1111.290000px;}
.y1bf{bottom:1113.990000px;}
.yac{bottom:1116.150000px;}
.y41{bottom:1117.230000px;}
.yf7{bottom:1124.970000px;}
.y7b{bottom:1125.150000px;}
.y123{bottom:1129.290000px;}
.yab{bottom:1133.970000px;}
.y40{bottom:1135.050000px;}
.y1be{bottom:1139.730000px;}
.y7a{bottom:1142.970000px;}
.y14f{bottom:1151.640000px;}
.y3f{bottom:1153.080000px;}
.y122{bottom:1158.480000px;}
.y79{bottom:1161.000000px;}
.yf6{bottom:1169.820000px;}
.yd5{bottom:1170.540000px;}
.y3e{bottom:1170.900000px;}
.y121{bottom:1176.300000px;}
.y78{bottom:1178.820000px;}
.y3d{bottom:1190.700000px;}
.y120{bottom:1194.300000px;}
.y77{bottom:1196.640000px;}
.h1f{height:26.805000px;}
.h18{height:26.820000px;}
.h1a{height:26.856000px;}
.h21{height:26.985000px;}
.h19{height:27.000000px;}
.h20{height:27.021000px;}
.h1d{height:27.165000px;}
.h1b{height:28.080000px;}
.h2{height:31.135500px;}
.h7{height:40.985156px;}
.h1e{height:44.625000px;}
.h1c{height:44.640000px;}
.h3{height:52.998047px;}
.h10{height:54.421875px;}
.h15{height:55.503491px;}
.h17{height:56.214844px;}
.h14{height:58.621992px;}
.h8{height:58.651172px;}
.h13{height:58.763250px;}
.h9{height:60.226875px;}
.h16{height:61.423863px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.h22{height:70.664062px;}
.hd{height:71.225156px;}
.hc{height:72.326250px;}
.hf{height:72.562500px;}
.h12{height:78.367500px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.hb{height:87.800625px;}
.h6{height:90.703125px;}
.h11{height:310.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:27.000000px;}
.w9{width:33.840000px;}
.wd{width:36.360000px;}
.wa{width:38.160000px;}
.w7{width:40.140000px;}
.we{width:51.480000px;}
.w6{width:54.360000px;}
.w3{width:80.310000px;}
.wb{width:235.870500px;}
.w5{width:257.470500px;}
.w8{width:277.270500px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:1.075500px;}
.x2b{left:5.040000px;}
.x2c{left:6.300000px;}
.x5{left:8.640000px;}
.x14{left:10.800000px;}
.x24{left:14.040000px;}
.x20{left:15.480000px;}
.x2a{left:21.960000px;}
.x13{left:39.240000px;}
.x1{left:45.364500px;}
.x15{left:50.040000px;}
.x6{left:54.000000px;}
.x25{left:55.804500px;}
.x1b{left:57.244500px;}
.x21{left:58.504500px;}
.xc{left:63.720000px;}
.x16{left:80.856000px;}
.x26{left:90.571500px;}
.x1c{left:103.525500px;}
.x1a{left:108.036000px;}
.x22{left:110.905500px;}
.xf{left:175.170000px;}
.x2{left:222.370500px;}
.x10{left:223.410000px;}
.xd{left:232.590000px;}
.xe{left:255.630000px;}
.x3{left:271.330500px;}
.x9{left:283.575000px;}
.xa{left:288.435000px;}
.x27{left:295.455000px;}
.x7{left:300.495000px;}
.x11{left:314.355000px;}
.x1d{left:318.315000px;}
.x28{left:326.235000px;}
.x23{left:339.375000px;}
.x8{left:364.395000px;}
.x29{left:366.375000px;}
.x1e{left:376.275000px;}
.xb{left:378.795000px;}
.x12{left:473.505000px;}
.x17{left:500.505000px;}
.x18{left:527.505000px;}
.x19{left:558.825000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.lsb{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.736000pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.112000pt;}
.ls16{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.272533pt;}
.ls18{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.298667pt;}
.ls1e{letter-spacing:0.304000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.933120pt;}
.ls15{letter-spacing:22.496000pt;}
.ls19{letter-spacing:44.256000pt;}
.lse{letter-spacing:46.816000pt;}
.ls17{letter-spacing:49.232640pt;}
.ls14{letter-spacing:56.912640pt;}
.ls13{letter-spacing:57.040640pt;}
.lsf{letter-spacing:60.896000pt;}
.ws10{word-spacing:-53.120000pt;}
.wsd{word-spacing:-48.000000pt;}
.ws7{word-spacing:-17.295360pt;}
.wsa{word-spacing:-17.272320pt;}
.ws2{word-spacing:-15.296000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.552533pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.192000pt;}
.wse{word-spacing:-12.112000pt;}
.ws11{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.264000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.322667pt;}
._a{width:2.666667pt;}
._8{width:3.756160pt;}
._9{width:4.797653pt;}
._b{width:5.893120pt;}
._7{width:7.075627pt;}
._6{width:8.021120pt;}
._17{width:8.917760pt;}
._3{width:10.063872pt;}
._4{width:10.977621pt;}
._5{width:11.898880pt;}
._20{width:12.912000pt;}
._13{width:13.872000pt;}
._14{width:14.880000pt;}
._15{width:15.888000pt;}
._11{width:17.184000pt;}
._1c{width:18.261333pt;}
._c{width:19.392000pt;}
._d{width:20.784000pt;}
._e{width:21.744000pt;}
._1d{width:23.184000pt;}
._16{width:24.192000pt;}
._10{width:25.200000pt;}
._12{width:26.592000pt;}
._23{width:27.840000pt;}
._27{width:29.376000pt;}
._1a{width:30.912000pt;}
._1b{width:31.920000pt;}
._1f{width:33.066667pt;}
._19{width:34.896000pt;}
._1e{width:36.624000pt;}
._2c{width:38.352000pt;}
._22{width:39.648000pt;}
._29{width:41.596800pt;}
._24{width:44.736000pt;}
._f{width:46.896000pt;}
._21{width:48.240000pt;}
._28{width:52.512000pt;}
._18{width:53.808000pt;}
._2b{width:60.652800pt;}
._25{width:62.448000pt;}
._26{width:63.504000pt;}
._2a{width:72.288000pt;}
._2{width:1088.266667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y151{bottom:8.640000pt;}
.y16c{bottom:8.946667pt;}
.y153{bottom:8.960000pt;}
.y16a{bottom:9.106667pt;}
.y156{bottom:9.120000pt;}
.y15e{bottom:9.440000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y162{bottom:16.960000pt;}
.y161{bottom:24.800000pt;}
.y5{bottom:35.360000pt;}
.y3b{bottom:40.346667pt;}
.y1{bottom:53.920000pt;}
.y38{bottom:83.546667pt;}
.y14e{bottom:90.240000pt;}
.yf5{bottom:92.160000pt;}
.y2d{bottom:93.120000pt;}
.yaa{bottom:99.680000pt;}
.y37{bottom:101.146667pt;}
.y198{bottom:105.440000pt;}
.y14d{bottom:106.080000pt;}
.y2c{bottom:108.960000pt;}
.ya9{bottom:115.520000pt;}
.yf4{bottom:116.000000pt;}
.y11f{bottom:118.720000pt;}
.y36{bottom:118.906667pt;}
.y76{bottom:120.000000pt;}
.y197{bottom:121.280000pt;}
.y14c{bottom:122.080000pt;}
.y2b{bottom:124.800000pt;}
.ya8{bottom:131.520000pt;}
.y1bd{bottom:134.080000pt;}
.y11e{bottom:134.560000pt;}
.y75{bottom:135.840000pt;}
.y35{bottom:136.506667pt;}
.y14b{bottom:137.920000pt;}
.yf3{bottom:139.840000pt;}
.y2a{bottom:140.640000pt;}
.y174{bottom:145.440000pt;}
.y196{bottom:146.880000pt;}
.ya7{bottom:147.360000pt;}
.y1bc{bottom:149.920000pt;}
.y11d{bottom:150.080000pt;}
.y74{bottom:151.680000pt;}
.y14a{bottom:153.760000pt;}
.y34{bottom:154.106667pt;}
.y29{bottom:156.480000pt;}
.y173{bottom:161.280000pt;}
.ya6{bottom:163.200000pt;}
.yf2{bottom:163.840000pt;}
.y11c{bottom:166.080000pt;}
.y73{bottom:167.520000pt;}
.y195{bottom:168.160000pt;}
.y149{bottom:169.280000pt;}
.y33{bottom:171.706667pt;}
.y28{bottom:172.320000pt;}
.y1bb{bottom:173.760000pt;}
.ya5{bottom:178.720000pt;}
.y2e{bottom:180.640000pt;}
.y72{bottom:183.386667pt;}
.y194{bottom:184.186667pt;}
.y172{bottom:185.306667pt;}
.y27{bottom:188.346667pt;}
.y32{bottom:189.306667pt;}
.yf1{bottom:189.786667pt;}
.y11b{bottom:190.266667pt;}
.yd4{bottom:191.386667pt;}
.y148{bottom:193.466667pt;}
.ya4{bottom:196.666667pt;}
.y71{bottom:199.386667pt;}
.y3c{bottom:203.226667pt;}
.y26{bottom:204.186667pt;}
.y11a{bottom:206.106667pt;}
.y31{bottom:207.066667pt;}
.yd3{bottom:207.226667pt;}
.y147{bottom:209.306667pt;}
.y193{bottom:210.266667pt;}
.y171{bottom:211.386667pt;}
.y1ba{bottom:213.626667pt;}
.yf0{bottom:213.786667pt;}
.y70{bottom:215.226667pt;}
.y25{bottom:220.026667pt;}
.y3a{bottom:220.986667pt;}
.y119{bottom:221.946667pt;}
.yd2{bottom:222.746667pt;}
.y30{bottom:224.706667pt;}
.y146{bottom:225.306667pt;}
.ya3{bottom:225.946667pt;}
.y1b9{bottom:229.466667pt;}
.y6f{bottom:231.066667pt;}
.y192{bottom:236.186667pt;}
.y170{bottom:236.986667pt;}
.yef{bottom:237.626667pt;}
.y118{bottom:237.786667pt;}
.ya2{bottom:241.786667pt;}
.y24{bottom:243.866667pt;}
.y39{bottom:246.586667pt;}
.y6e{bottom:246.906667pt;}
.y145{bottom:251.386667pt;}
.y2f{bottom:251.586667pt;}
.y191{bottom:252.186667pt;}
.y1b8{bottom:253.306667pt;}
.y16f{bottom:260.520000pt;}
.yee{bottom:261.466667pt;}
.y117{bottom:261.786667pt;}
.y6d{bottom:262.746667pt;}
.yd1{bottom:262.906667pt;}
.ya1{bottom:265.626667pt;}
.y144{bottom:267.226667pt;}
.y23{bottom:267.706667pt;}
.y1b7{bottom:269.146667pt;}
.y190{bottom:278.106667pt;}
.yd0{bottom:278.426667pt;}
.ya0{bottom:281.466667pt;}
.y1b6{bottom:284.986667pt;}
.yed{bottom:285.306667pt;}
.y6c{bottom:286.586667pt;}
.y116{bottom:287.866667pt;}
.y16e{bottom:289.800000pt;}
.y22{bottom:291.706667pt;}
.y143{bottom:293.306667pt;}
.y18f{bottom:293.946667pt;}
.y6b{bottom:302.586667pt;}
.y9f{bottom:305.466667pt;}
.y1b5{bottom:308.986667pt;}
.yec{bottom:309.306667pt;}
.y115{bottom:313.946667pt;}
.y21{bottom:315.546667pt;}
.y18e{bottom:317.466667pt;}
.y6a{bottom:318.426667pt;}
.y16d{bottom:318.920000pt;}
.y1b4{bottom:324.826667pt;}
.y9e{bottom:330.106667pt;}
.y69{bottom:334.266667pt;}
.yeb{bottom:335.226667pt;}
.y20{bottom:339.386667pt;}
.y114{bottom:340.026667pt;}
.y1b3{bottom:340.666667pt;}
.y18d{bottom:341.626667pt;}
.y16b{bottom:348.200000pt;}
.y68{bottom:350.106667pt;}
.ycf{bottom:350.266667pt;}
.yea{bottom:351.066667pt;}
.y9d{bottom:354.906667pt;}
.y18c{bottom:357.626667pt;}
.y1b2{bottom:364.506667pt;}
.yce{bottom:365.786667pt;}
.y67{bottom:365.946667pt;}
.y142{bottom:366.586667pt;}
.ye9{bottom:366.746667pt;}
.y1f{bottom:371.066667pt;}
.y169{bottom:377.320000pt;}
.y9c{bottom:379.546667pt;}
.y1b1{bottom:380.346667pt;}
.y113{bottom:381.466667pt;}
.y66{bottom:381.946667pt;}
.y18b{bottom:383.706667pt;}
.y1e{bottom:386.906667pt;}
.ycd{bottom:389.946667pt;}
.y141{bottom:390.746667pt;}
.ye8{bottom:390.906667pt;}
.y1b0{bottom:396.386667pt;}
.y65{bottom:397.826667pt;}
.y9b{bottom:404.386667pt;}
.y1d{bottom:404.546667pt;}
.ycc{bottom:405.826667pt;}
.ye7{bottom:406.466667pt;}
.y168{bottom:406.626667pt;}
.y140{bottom:406.786667pt;}
.y18a{bottom:409.346667pt;}
.y1af{bottom:412.226667pt;}
.y64{bottom:413.666667pt;}
.y9a{bottom:420.226667pt;}
.y112{bottom:421.666667pt;}
.ycb{bottom:421.826667pt;}
.y1c{bottom:425.666667pt;}
.y1ae{bottom:428.066667pt;}
.y63{bottom:429.506667pt;}
.ye6{bottom:430.626667pt;}
.y13f{bottom:432.706667pt;}
.y189{bottom:433.666667pt;}
.y111{bottom:437.506667pt;}
.y167{bottom:439.746667pt;}
.y1ad{bottom:443.906667pt;}
.y99{bottom:444.066667pt;}
.y62{bottom:445.346667pt;}
.ye5{bottom:446.466667pt;}
.y1b{bottom:446.786667pt;}
.yca{bottom:447.746667pt;}
.y13e{bottom:448.706667pt;}
.y188{bottom:459.746667pt;}
.y98{bottom:459.906667pt;}
.y110{bottom:461.506667pt;}
.ye4{bottom:462.466667pt;}
.y166{bottom:463.426667pt;}
.yc9{bottom:463.746667pt;}
.y1ac{bottom:467.746667pt;}
.y1a{bottom:467.906667pt;}
.y61{bottom:469.186667pt;}
.y13d{bottom:474.786667pt;}
.y97{bottom:475.746667pt;}
.ye3{bottom:478.306667pt;}
.y1ab{bottom:483.586667pt;}
.y60{bottom:485.186667pt;}
.y187{bottom:485.346667pt;}
.y10f{bottom:487.586667pt;}
.y19{bottom:489.026667pt;}
.yc8{bottom:489.666667pt;}
.y13c{bottom:490.626667pt;}
.ye2{bottom:494.146667pt;}
.y96{bottom:499.586667pt;}
.y5f{bottom:501.026667pt;}
.y165{bottom:503.426667pt;}
.yc7{bottom:505.666667pt;}
.y186{bottom:509.666667pt;}
.ye1{bottom:509.986667pt;}
.y10e{bottom:513.666667pt;}
.y18{bottom:516.386667pt;}
.y13b{bottom:516.706667pt;}
.y5e{bottom:516.866667pt;}
.y95{bottom:523.266667pt;}
.y1aa{bottom:523.426667pt;}
.y164{bottom:526.626667pt;}
.yc6{bottom:531.266667pt;}
.y13a{bottom:532.546667pt;}
.y5d{bottom:532.706667pt;}
.ye0{bottom:533.826667pt;}
.y185{bottom:535.746667pt;}
.y1a9{bottom:539.266667pt;}
.y10d{bottom:539.746667pt;}
.y17{bottom:543.746667pt;}
.y94{bottom:547.426667pt;}
.y5c{bottom:548.546667pt;}
.ydf{bottom:549.826667pt;}
.y1a8{bottom:555.106667pt;}
.yc5{bottom:555.586667pt;}
.y184{bottom:561.506667pt;}
.y93{bottom:563.266667pt;}
.y5b{bottom:564.546667pt;}
.y10c{bottom:565.826667pt;}
.yc4{bottom:571.426667pt;}
.y163{bottom:571.746667pt;}
.y139{bottom:574.466667pt;}
.yde{bottom:575.746667pt;}
.y1a7{bottom:578.946667pt;}
.y5a{bottom:580.386667pt;}
.y183{bottom:585.666667pt;}
.y92{bottom:587.106667pt;}
.yc3{bottom:587.266667pt;}
.y138{bottom:589.986667pt;}
.ydd{bottom:591.746667pt;}
.y16{bottom:593.826667pt;}
.y1a6{bottom:594.786667pt;}
.y59{bottom:596.226667pt;}
.y160{bottom:601.213333pt;}
.y182{bottom:601.693333pt;}
.y91{bottom:602.973333pt;}
.yc2{bottom:603.133333pt;}
.y10b{bottom:607.613333pt;}
.y58{bottom:612.093333pt;}
.y137{bottom:614.173333pt;}
.y15{bottom:614.493333pt;}
.ydc{bottom:617.693333pt;}
.y1a5{bottom:618.813333pt;}
.yc1{bottom:618.973333pt;}
.y10a{bottom:623.453333pt;}
.y90{bottom:626.813333pt;}
.y181{bottom:627.613333pt;}
.y57{bottom:627.933333pt;}
.y136{bottom:630.173333pt;}
.ydb{bottom:633.693333pt;}
.y1a4{bottom:634.653333pt;}
.yc0{bottom:634.813333pt;}
.y109{bottom:638.973333pt;}
.y8f{bottom:642.813333pt;}
.y180{bottom:643.613333pt;}
.y56{bottom:643.773333pt;}
.y135{bottom:646.013333pt;}
.y15f{bottom:646.333333pt;}
.y1a3{bottom:650.493333pt;}
.ybf{bottom:650.813333pt;}
.y14{bottom:657.693333pt;}
.y8e{bottom:658.653333pt;}
.y55{bottom:659.773333pt;}
.y134{bottom:661.853333pt;}
.y108{bottom:663.293333pt;}
.ybe{bottom:666.333333pt;}
.y17f{bottom:669.213333pt;}
.y1a2{bottom:674.333333pt;}
.y54{bottom:675.613333pt;}
.y15d{bottom:675.773333pt;}
.y133{bottom:677.373333pt;}
.y107{bottom:679.133333pt;}
.y8d{bottom:682.493333pt;}
.y1a1{bottom:690.173333pt;}
.ybd{bottom:690.493333pt;}
.y53{bottom:691.453333pt;}
.y17e{bottom:693.053333pt;}
.y106{bottom:694.973333pt;}
.y8c{bottom:698.333333pt;}
.y13{bottom:698.813333pt;}
.y132{bottom:701.533333pt;}
.y15c{bottom:706.013333pt;}
.y1a0{bottom:706.173333pt;}
.ybc{bottom:706.333333pt;}
.yda{bottom:707.293333pt;}
.y8b{bottom:714.173333pt;}
.y52{bottom:715.293333pt;}
.y17d{bottom:717.213333pt;}
.y131{bottom:717.373333pt;}
.y105{bottom:718.973333pt;}
.ybb{bottom:722.173333pt;}
.yd9{bottom:723.133333pt;}
.y12{bottom:724.413333pt;}
.y19f{bottom:730.013333pt;}
.y51{bottom:731.133333pt;}
.y17c{bottom:733.053333pt;}
.y130{bottom:733.373333pt;}
.y8a{bottom:738.173333pt;}
.yd8{bottom:738.653333pt;}
.y15b{bottom:738.813333pt;}
.y104{bottom:744.893333pt;}
.y50{bottom:746.973333pt;}
.y19e{bottom:753.853333pt;}
.yba{bottom:754.013333pt;}
.y17b{bottom:757.053333pt;}
.y12f{bottom:757.213333pt;}
.y103{bottom:760.893333pt;}
.y89{bottom:761.693333pt;}
.y15a{bottom:762.333333pt;}
.y4f{bottom:762.973333pt;}
.y19d{bottom:769.693333pt;}
.yb9{bottom:769.853333pt;}
.y11{bottom:770.173333pt;}
.y4e{bottom:778.813333pt;}
.y12e{bottom:781.053333pt;}
.y17a{bottom:783.133333pt;}
.y19c{bottom:785.533333pt;}
.y88{bottom:785.853333pt;}
.y102{bottom:786.813333pt;}
.y10{bottom:790.333333pt;}
.y159{bottom:791.613333pt;}
.yb8{bottom:793.693333pt;}
.y4d{bottom:794.653333pt;}
.y87{bottom:801.693333pt;}
.y101{bottom:802.813333pt;}
.y12d{bottom:804.893333pt;}
.y179{bottom:809.253333pt;}
.y19b{bottom:809.413333pt;}
.yb7{bottom:809.573333pt;}
.yf{bottom:809.733333pt;}
.y4c{bottom:810.533333pt;}
.y86{bottom:817.573333pt;}
.y158{bottom:820.773333pt;}
.yb6{bottom:825.413333pt;}
.y4b{bottom:826.373333pt;}
.y12c{bottom:828.773333pt;}
.y100{bottom:828.933333pt;}
.ye{bottom:829.093333pt;}
.y85{bottom:833.413333pt;}
.yd7{bottom:834.373333pt;}
.y178{bottom:835.173333pt;}
.y19a{bottom:841.253333pt;}
.yb5{bottom:841.413333pt;}
.y4a{bottom:842.373333pt;}
.yd{bottom:848.133333pt;}
.y84{bottom:849.413333pt;}
.y157{bottom:850.053333pt;}
.yd6{bottom:850.373333pt;}
.y177{bottom:851.173333pt;}
.y12b{bottom:852.613333pt;}
.yff{bottom:855.013333pt;}
.yb4{bottom:857.253333pt;}
.y199{bottom:865.093333pt;}
.y83{bottom:865.253333pt;}
.y49{bottom:866.213333pt;}
.y176{bottom:867.013333pt;}
.yc{bottom:867.813333pt;}
.yb3{bottom:873.093333pt;}
.y12a{bottom:876.613333pt;}
.y155{bottom:879.173333pt;}
.yfe{bottom:880.933333pt;}
.y82{bottom:881.093333pt;}
.y48{bottom:882.053333pt;}
.y175{bottom:884.613333pt;}
.yb2{bottom:888.933333pt;}
.y129{bottom:892.453333pt;}
.yfd{bottom:896.773333pt;}
.y81{bottom:896.933333pt;}
.y47{bottom:897.893333pt;}
.yb{bottom:904.453333pt;}
.yb1{bottom:904.773333pt;}
.y128{bottom:907.973333pt;}
.y154{bottom:908.453333pt;}
.yfc{bottom:912.773333pt;}
.y46{bottom:913.733333pt;}
.ya{bottom:915.173333pt;}
.y1c1{bottom:918.533333pt;}
.yb0{bottom:920.453333pt;}
.y80{bottom:920.773333pt;}
.y9{bottom:925.893333pt;}
.yfb{bottom:928.293333pt;}
.y45{bottom:929.573333pt;}
.y127{bottom:932.133333pt;}
.y8{bottom:936.613333pt;}
.y7f{bottom:936.773333pt;}
.y152{bottom:937.733333pt;}
.yaf{bottom:944.613333pt;}
.y44{bottom:945.573333pt;}
.y126{bottom:947.973333pt;}
.y7{bottom:949.573333pt;}
.y1c0{bottom:951.973333pt;}
.yfa{bottom:952.453333pt;}
.y7e{bottom:952.613333pt;}
.yae{bottom:960.453333pt;}
.y43{bottom:961.413333pt;}
.y150{bottom:966.853333pt;}
.yf9{bottom:968.293333pt;}
.y7d{bottom:968.453333pt;}
.y125{bottom:971.973333pt;}
.y6{bottom:972.293333pt;}
.yad{bottom:976.293333pt;}
.y42{bottom:977.253333pt;}
.yf8{bottom:984.133333pt;}
.y7c{bottom:984.293333pt;}
.y124{bottom:987.813333pt;}
.y1bf{bottom:990.213333pt;}
.yac{bottom:992.133333pt;}
.y41{bottom:993.093333pt;}
.yf7{bottom:999.973333pt;}
.y7b{bottom:1000.133333pt;}
.y123{bottom:1003.813333pt;}
.yab{bottom:1007.973333pt;}
.y40{bottom:1008.933333pt;}
.y1be{bottom:1013.093333pt;}
.y7a{bottom:1015.973333pt;}
.y14f{bottom:1023.680000pt;}
.y3f{bottom:1024.960000pt;}
.y122{bottom:1029.760000pt;}
.y79{bottom:1032.000000pt;}
.yf6{bottom:1039.840000pt;}
.yd5{bottom:1040.480000pt;}
.y3e{bottom:1040.800000pt;}
.y121{bottom:1045.600000pt;}
.y78{bottom:1047.840000pt;}
.y3d{bottom:1058.400000pt;}
.y120{bottom:1061.600000pt;}
.y77{bottom:1063.680000pt;}
.h1f{height:23.826667pt;}
.h18{height:23.840000pt;}
.h1a{height:23.872000pt;}
.h21{height:23.986667pt;}
.h19{height:24.000000pt;}
.h20{height:24.018667pt;}
.h1d{height:24.146667pt;}
.h1b{height:24.960000pt;}
.h2{height:27.676000pt;}
.h7{height:36.431250pt;}
.h1e{height:39.666667pt;}
.h1c{height:39.680000pt;}
.h3{height:47.109375pt;}
.h10{height:48.375000pt;}
.h15{height:49.336436pt;}
.h17{height:49.968750pt;}
.h14{height:52.108438pt;}
.h8{height:52.134375pt;}
.h13{height:52.234000pt;}
.h9{height:53.535000pt;}
.h16{height:54.598989pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.h22{height:62.812500pt;}
.hd{height:63.311250pt;}
.hc{height:64.290000pt;}
.hf{height:64.500000pt;}
.h12{height:69.660000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.hb{height:78.045000pt;}
.h6{height:80.625000pt;}
.h11{height:275.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:24.000000pt;}
.w9{width:30.080000pt;}
.wd{width:32.320000pt;}
.wa{width:33.920000pt;}
.w7{width:35.680000pt;}
.we{width:45.760000pt;}
.w6{width:48.320000pt;}
.w3{width:71.386667pt;}
.wb{width:209.662667pt;}
.w5{width:228.862667pt;}
.w8{width:246.462667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:0.956000pt;}
.x2b{left:4.480000pt;}
.x2c{left:5.600000pt;}
.x5{left:7.680000pt;}
.x14{left:9.600000pt;}
.x24{left:12.480000pt;}
.x20{left:13.760000pt;}
.x2a{left:19.520000pt;}
.x13{left:34.880000pt;}
.x1{left:40.324000pt;}
.x15{left:44.480000pt;}
.x6{left:48.000000pt;}
.x25{left:49.604000pt;}
.x1b{left:50.884000pt;}
.x21{left:52.004000pt;}
.xc{left:56.640000pt;}
.x16{left:71.872000pt;}
.x26{left:80.508000pt;}
.x1c{left:92.022667pt;}
.x1a{left:96.032000pt;}
.x22{left:98.582667pt;}
.xf{left:155.706667pt;}
.x2{left:197.662667pt;}
.x10{left:198.586667pt;}
.xd{left:206.746667pt;}
.xe{left:227.226667pt;}
.x3{left:241.182667pt;}
.x9{left:252.066667pt;}
.xa{left:256.386667pt;}
.x27{left:262.626667pt;}
.x7{left:267.106667pt;}
.x11{left:279.426667pt;}
.x1d{left:282.946667pt;}
.x28{left:289.986667pt;}
.x23{left:301.666667pt;}
.x8{left:323.906667pt;}
.x29{left:325.666667pt;}
.x1e{left:334.466667pt;}
.xb{left:336.706667pt;}
.x12{left:420.893333pt;}
.x17{left:444.893333pt;}
.x18{left:468.893333pt;}
.x19{left:496.733333pt;}
.x4{left:682.213333pt;}
}




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