
    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_a1cd3476cd8c3a2c29e5d32b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.096680;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_0ae24c6aa7d6446b177f6323.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_ea19ff933ed04f25ec9803eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_ff786c3adc1fde6e854a9259.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_1e5b0e2394e1eeb2f29a446c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_5c8c976d7edd6d965dd6ba37.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_885024a23a307e1232984e8f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056152;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_8dda9525d0ddd6defbda23eb.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_97a91454578709a9c9a40947.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.096680;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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.696000px;}
.ls14{letter-spacing:-0.618000px;}
.ls1c{letter-spacing:-0.414600px;}
.ls15{letter-spacing:-0.403200px;}
.ls8{letter-spacing:-0.334200px;}
.lsb{letter-spacing:-0.241800px;}
.lsd{letter-spacing:-0.233400px;}
.ls5{letter-spacing:-0.218400px;}
.ls7{letter-spacing:-0.051840px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.023040px;}
.ls1b{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.075000px;}
.ls4{letter-spacing:0.100800px;}
.ls1{letter-spacing:0.144720px;}
.ls19{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.270720px;}
.ls1a{letter-spacing:0.305280px;}
.ls17{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.308400px;}
.ls2{letter-spacing:0.319680px;}
.ls6{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.354000px;}
.ls11{letter-spacing:0.360000px;}
.lsa{letter-spacing:28.385280px;}
.ls9{letter-spacing:31.985280px;}
.lse{letter-spacing:35.585280px;}
.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;}
}
.ws2{word-spacing:-18.532800px;}
.ws12{word-spacing:-14.926800px;}
.wsd{word-spacing:-14.881200px;}
.ws11{word-spacing:-14.878200px;}
.wsb{word-spacing:-14.647800px;}
.ws13{word-spacing:-14.621760px;}
.wsf{word-spacing:-14.595840px;}
.ws1{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.339400px;}
.wsa{word-spacing:-14.331000px;}
.ws9{word-spacing:-14.238600px;}
.ws14{word-spacing:-14.158200px;}
.ws10{word-spacing:-13.876800px;}
.wse{word-spacing:-13.160160px;}
.ws3{word-spacing:-13.147200px;}
.ws7{word-spacing:-12.204000px;}
.ws5{word-spacing:-0.084240px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:-0.059760px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:3.047040px;}
._a{margin-left:-6.361200px;}
._b{margin-left:-5.194800px;}
._0{margin-left:-1.126080px;}
._2{width:1.004400px;}
._9{width:2.203200px;}
._3{width:3.568800px;}
._f{width:5.438160px;}
._12{width:7.197840px;}
._4{width:8.519760px;}
._c{width:9.979920px;}
._d{width:11.172960px;}
._14{width:12.186720px;}
._7{width:13.941360px;}
._8{width:15.050880px;}
._15{width:16.824960px;}
._13{width:18.783360px;}
._11{width:19.996080px;}
._10{width:20.999280px;}
._1b{width:22.189200px;}
._1a{width:23.448960px;}
._19{width:24.575040px;}
._1c{width:25.591920px;}
._e{width:27.201360px;}
._16{width:28.473840px;}
._17{width:29.879760px;}
._18{width:31.925040px;}
._1e{width:33.241440px;}
._1f{width:36.233280px;}
._20{width:37.304160px;}
._1d{width:39.081600px;}
._5{width:40.569840px;}
._6{width:42.425760px;}
._23{width:43.500960px;}
._25{width:57.152160px;}
._24{width:62.663040px;}
._22{width:169.970400px;}
._21{width:175.668480px;}
._1{width:201.403200px;}
.fc2{color:transparent;}
.fc1{color:rgb(23,54,93);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:18.000000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y10e{bottom:3.225000px;}
.yf6{bottom:3.240000px;}
.y112{bottom:3.405000px;}
.yf5{bottom:3.420000px;}
.y103{bottom:3.450000px;}
.y151{bottom:3.585000px;}
.y159{bottom:3.592500px;}
.y122{bottom:3.600000px;}
.y157{bottom:3.772500px;}
.y12b{bottom:3.780000px;}
.y160{bottom:3.825000px;}
.y10d{bottom:20.865000px;}
.yf3{bottom:20.880000px;}
.y102{bottom:20.910000px;}
.y111{bottom:21.045000px;}
.yfd{bottom:21.060000px;}
.y142{bottom:22.860000px;}
.y150{bottom:23.025000px;}
.y156{bottom:23.026500px;}
.y121{bottom:23.040000px;}
.y125{bottom:23.070000px;}
.y13d{bottom:23.085000px;}
.yf2{bottom:38.520000px;}
.y10c{bottom:38.550000px;}
.y153{bottom:42.285000px;}
.y127{bottom:42.300000px;}
.y155{bottom:42.466500px;}
.y140{bottom:42.480000px;}
.y15f{bottom:42.525000px;}
.y33{bottom:57.420000px;}
.yd{bottom:58.176000px;}
.yc{bottom:73.656000px;}
.yfa{bottom:73.800000px;}
.y110{bottom:73.830000px;}
.yb{bottom:89.136000px;}
.y108{bottom:91.260000px;}
.ya{bottom:104.616000px;}
.y5d{bottom:111.816000px;}
.y118{bottom:112.356000px;}
.ye9{bottom:116.676000px;}
.yac{bottom:117.036000px;}
.y9{bottom:120.096000px;}
.y158{bottom:121.903500px;}
.y100{bottom:126.570000px;}
.y192{bottom:129.096000px;}
.y17b{bottom:129.996000px;}
.y5c{bottom:131.076000px;}
.y117{bottom:131.796000px;}
.y1c3{bottom:134.136000px;}
.y88{bottom:135.036000px;}
.y8{bottom:135.576000px;}
.ye8{bottom:136.116000px;}
.yab{bottom:136.476000px;}
.y136{bottom:136.656000px;}
.y154{bottom:141.163500px;}
.yff{bottom:144.030000px;}
.yc1{bottom:148.356000px;}
.y17a{bottom:149.436000px;}
.y116{bottom:151.050000px;}
.y1c2{bottom:153.390000px;}
.y87{bottom:154.470000px;}
.ye7{bottom:155.370000px;}
.y1da{bottom:162.210000px;}
.yc0{bottom:167.790000px;}
.y5b{bottom:168.510000px;}
.y179{bottom:168.690000px;}
.y115{bottom:170.490000px;}
.yaa{bottom:170.670000px;}
.y135{bottom:171.030000px;}
.y86{bottom:173.730000px;}
.ye6{bottom:174.810000px;}
.y31{bottom:181.290000px;}
.y1d9{bottom:181.470000px;}
.ybf{bottom:187.050000px;}
.y1c1{bottom:187.770000px;}
.y5a{bottom:187.950000px;}
.y114{bottom:189.750000px;}
.ya9{bottom:190.110000px;}
.y85{bottom:193.170000px;}
.ye5{bottom:194.070000px;}
.y152{bottom:199.305000px;}
.y1d8{bottom:200.910000px;}
.y30{bottom:203.970000px;}
.y134{bottom:205.230000px;}
.y178{bottom:206.130000px;}
.ybe{bottom:206.490000px;}
.y59{bottom:207.210000px;}
.y1b0{bottom:209.190000px;}
.y198{bottom:212.430000px;}
.ye4{bottom:213.510000px;}
.y113{bottom:224.130000px;}
.ya8{bottom:224.490000px;}
.y133{bottom:224.670000px;}
.y177{bottom:225.390000px;}
.ybd{bottom:225.750000px;}
.y58{bottom:226.650000px;}
.y84{bottom:227.370000px;}
.y1af{bottom:228.450000px;}
.y197{bottom:231.690000px;}
.ye3{bottom:232.770000px;}
.y1d7{bottom:235.110000px;}
.y1c0{bottom:241.410000px;}
.y10f{bottom:241.965000px;}
.ya7{bottom:243.750000px;}
.y132{bottom:243.930000px;}
.y2f{bottom:244.830000px;}
.ybc{bottom:245.010000px;}
.y191{bottom:245.190000px;}
.y57{bottom:245.910000px;}
.ye2{bottom:252.210000px;}
.y14f{bottom:260.685000px;}
.y1bf{bottom:260.850000px;}
.y83{bottom:261.750000px;}
.ya6{bottom:263.190000px;}
.y131{bottom:263.370000px;}
.y176{bottom:264.090000px;}
.y190{bottom:264.450000px;}
.y2e{bottom:264.990000px;}
.y56{bottom:265.170000px;}
.y1ae{bottom:265.890000px;}
.y196{bottom:266.070000px;}
.y1d6{bottom:269.490000px;}
.ye1{bottom:271.470000px;}
.y10b{bottom:277.245000px;}
.y1be{bottom:280.110000px;}
.y82{bottom:281.190000px;}
.ya5{bottom:282.450000px;}
.y130{bottom:282.630000px;}
.y175{bottom:283.350000px;}
.y18f{bottom:283.890000px;}
.y55{bottom:284.610000px;}
.y2d{bottom:285.150000px;}
.y195{bottom:285.510000px;}
.ye0{bottom:290.910000px;}
.y81{bottom:300.450000px;}
.ya4{bottom:301.890000px;}
.y12f{bottom:302.070000px;}
.y174{bottom:302.790000px;}
.y18e{bottom:303.150000px;}
.y54{bottom:303.870000px;}
.y1ad{bottom:304.410000px;}
.y2c{bottom:305.490000px;}
.ydf{bottom:310.215000px;}
.y1bd{bottom:314.535000px;}
.y80{bottom:319.935000px;}
.ya3{bottom:321.195000px;}
.y12e{bottom:321.375000px;}
.y173{bottom:322.095000px;}
.y1d5{bottom:323.175000px;}
.y53{bottom:323.355000px;}
.y1ac{bottom:323.895000px;}
.y2b{bottom:325.695000px;}
.y107{bottom:330.015000px;}
.y1bc{bottom:333.975000px;}
.y7f{bottom:339.195000px;}
.ya2{bottom:340.455000px;}
.y12d{bottom:340.815000px;}
.y52{bottom:342.615000px;}
.y1ab{bottom:343.155000px;}
.yde{bottom:344.595000px;}
.y2a{bottom:346.035000px;}
.y1d4{bottom:357.555000px;}
.y7e{bottom:358.455000px;}
.y172{bottom:359.535000px;}
.ya1{bottom:359.895000px;}
.y51{bottom:362.055000px;}
.y1aa{bottom:362.595000px;}
.y10a{bottom:365.115000px;}
.y29{bottom:366.195000px;}
.y1e9{bottom:366.375000px;}
.y1bb{bottom:368.175000px;}
.y12c{bottom:375.015000px;}
.y1d3{bottom:376.995000px;}
.y7d{bottom:377.895000px;}
.y171{bottom:378.795000px;}
.ydd{bottom:378.975000px;}
.ya0{bottom:379.155000px;}
.y1a9{bottom:381.855000px;}
.y109{bottom:382.755000px;}
.y28{bottom:386.355000px;}
.y1ba{bottom:387.615000px;}
.y12a{bottom:394.095000px;}
.y14e{bottom:394.455000px;}
.y1d2{bottom:396.255000px;}
.y50{bottom:396.435000px;}
.y7c{bottom:397.155000px;}
.ydc{bottom:398.235000px;}
.y9f{bottom:398.595000px;}
.y106{bottom:400.395000px;}
.y1e8{bottom:400.575000px;}
.y1a8{bottom:401.295000px;}
.y27{bottom:406.695000px;}
.y1b9{bottom:406.875000px;}
.y129{bottom:413.535000px;}
.y7b{bottom:416.595000px;}
.y170{bottom:417.495000px;}
.ydb{bottom:417.675000px;}
.y9e{bottom:417.855000px;}
.y1a7{bottom:420.555000px;}
.y26{bottom:426.855000px;}
.y14d{bottom:428.835000px;}
.y1d1{bottom:430.635000px;}
.y4f{bottom:433.695000px;}
.y1e7{bottom:434.955000px;}
.yfe{bottom:435.495000px;}
.y7a{bottom:435.855000px;}
.y16f{bottom:436.755000px;}
.yda{bottom:436.935000px;}
.ybb{bottom:437.295000px;}
.y1b8{bottom:441.255000px;}
.y25{bottom:447.015000px;}
.y14c{bottom:448.095000px;}
.y1d0{bottom:449.895000px;}
.y128{bottom:452.235000px;}
.y1e6{bottom:454.395000px;}
.y1a6{bottom:454.935000px;}
.y9d{bottom:455.295000px;}
.y4e{bottom:455.835000px;}
.yd9{bottom:456.375000px;}
.yba{bottom:456.555000px;}
.y24{bottom:467.355000px;}
.y14b{bottom:467.535000px;}
.y79{bottom:473.295000px;}
.y1e5{bottom:473.655000px;}
.y16e{bottom:474.195000px;}
.y9c{bottom:474.555000px;}
.yd8{bottom:475.635000px;}
.y18d{bottom:475.995000px;}
.y1cf{bottom:484.275000px;}
.y14a{bottom:486.795000px;}
.y23{bottom:487.515000px;}
.y105{bottom:488.235000px;}
.y1a5{bottom:489.315000px;}
.y126{bottom:490.935000px;}
.y78{bottom:492.555000px;}
.y4d{bottom:493.095000px;}
.y9b{bottom:493.995000px;}
.yd7{bottom:494.895000px;}
.y18c{bottom:495.255000px;}
.y1ce{bottom:503.715000px;}
.y149{bottom:506.235000px;}
.y22{bottom:507.675000px;}
.y1e4{bottom:508.035000px;}
.y16d{bottom:508.575000px;}
.y77{bottom:511.995000px;}
.y9a{bottom:513.255000px;}
.yd6{bottom:514.335000px;}
.y18b{bottom:514.695000px;}
.y4c{bottom:515.415000px;}
.y104{bottom:523.335000px;}
.y148{bottom:525.495000px;}
.y1e3{bottom:527.295000px;}
.y21{bottom:528.015000px;}
.y1b7{bottom:529.275000px;}
.y76{bottom:531.255000px;}
.y99{bottom:532.695000px;}
.y18a{bottom:533.955000px;}
.y4b{bottom:537.555000px;}
.y1cd{bottom:538.095000px;}
.y16c{bottom:542.955000px;}
.y147{bottom:544.935000px;}
.y1e2{bottom:546.735000px;}
.y1a4{bottom:547.275000px;}
.y20{bottom:548.175000px;}
.yd5{bottom:548.715000px;}
.y124{bottom:548.895000px;}
.y75{bottom:550.695000px;}
.y98{bottom:551.955000px;}
.y189{bottom:553.395000px;}
.y1cc{bottom:557.355000px;}
.y101{bottom:558.615000px;}
.y4a{bottom:559.875000px;}
.y16b{bottom:562.245000px;}
.y146{bottom:564.225000px;}
.y1a3{bottom:566.565000px;}
.y1f{bottom:568.365000px;}
.y74{bottom:569.985000px;}
.y97{bottom:571.425000px;}
.y188{bottom:572.685000px;}
.y1cb{bottom:576.645000px;}
.y1e1{bottom:581.145000px;}
.y16a{bottom:581.685000px;}
.y49{bottom:582.045000px;}
.yd4{bottom:583.125000px;}
.y145{bottom:583.485000px;}
.y123{bottom:587.625000px;}
.y73{bottom:589.425000px;}
.y96{bottom:590.685000px;}
.y1e{bottom:591.225000px;}
.yf9{bottom:593.745000px;}
.y1e0{bottom:600.405000px;}
.y169{bottom:600.945000px;}
.yd3{bottom:602.385000px;}
.y1a2{bottom:604.005000px;}
.y48{bottom:604.365000px;}
.y187{bottom:607.065000px;}
.y72{bottom:608.685000px;}
.y95{bottom:610.125000px;}
.y1ca{bottom:611.025000px;}
.y1b6{bottom:617.325000px;}
.y1d{bottom:617.505000px;}
.y144{bottom:617.865000px;}
.y168{bottom:620.385000px;}
.yd2{bottom:621.645000px;}
.y1a1{bottom:623.445000px;}
.y47{bottom:626.685000px;}
.y71{bottom:628.125000px;}
.yfc{bottom:629.025000px;}
.y94{bottom:629.385000px;}
.y120{bottom:629.745000px;}
.y1c9{bottom:630.465000px;}
.y1df{bottom:634.785000px;}
.y1b5{bottom:636.765000px;}
.y143{bottom:636.945000px;}
.y167{bottom:639.645000px;}
.y1c{bottom:639.825000px;}
.yd1{bottom:641.085000px;}
.y186{bottom:641.445000px;}
.y1a0{bottom:642.705000px;}
.yfb{bottom:646.485000px;}
.yb9{bottom:648.645000px;}
.y46{bottom:648.825000px;}
.y1b4{bottom:656.025000px;}
.y141{bottom:656.385000px;}
.y166{bottom:659.085000px;}
.yd0{bottom:660.345000px;}
.y185{bottom:660.705000px;}
.y1b{bottom:661.965000px;}
.y19f{bottom:662.145000px;}
.y70{bottom:662.325000px;}
.yf8{bottom:664.125000px;}
.y1c8{bottom:664.845000px;}
.y93{bottom:666.645000px;}
.yb8{bottom:668.085000px;}
.y1de{bottom:669.165000px;}
.y45{bottom:671.145000px;}
.y165{bottom:678.345000px;}
.ycf{bottom:679.785000px;}
.y184{bottom:680.145000px;}
.y19e{bottom:681.405000px;}
.y6f{bottom:681.765000px;}
.y1c7{bottom:684.105000px;}
.y1a{bottom:684.285000px;}
.y92{bottom:686.085000px;}
.y11f{bottom:690.405000px;}
.y44{bottom:693.285000px;}
.y13f{bottom:694.905000px;}
.y164{bottom:697.785000px;}
.yce{bottom:699.045000px;}
.yf7{bottom:699.225000px;}
.y183{bottom:699.405000px;}
.y6e{bottom:701.025000px;}
.yb7{bottom:702.465000px;}
.y1dd{bottom:703.365000px;}
.y19{bottom:704.265000px;}
.y91{bottom:705.345000px;}
.y1b3{bottom:709.845000px;}
.y43{bottom:715.605000px;}
.y163{bottom:717.045000px;}
.ycd{bottom:718.485000px;}
.y182{bottom:718.845000px;}
.yf1{bottom:719.205000px;}
.y6d{bottom:720.465000px;}
.y18{bottom:720.645000px;}
.yb6{bottom:721.725000px;}
.y90{bottom:724.785000px;}
.y1b2{bottom:729.105000px;}
.y42{bottom:737.745000px;}
.y181{bottom:738.105000px;}
.y6c{bottom:739.725000px;}
.y17{bottom:742.965000px;}
.y8f{bottom:744.045000px;}
.y162{bottom:751.425000px;}
.y13e{bottom:753.045000px;}
.yf4{bottom:754.305000px;}
.yb5{bottom:756.105000px;}
.y1c6{bottom:757.185000px;}
.y19d{bottom:757.365000px;}
.y6b{bottom:759.165000px;}
.y41{bottom:760.065000px;}
.y8e{bottom:763.485000px;}
.y16{bottom:765.105000px;}
.y161{bottom:770.505000px;}
.ycc{bottom:772.125000px;}
.yb4{bottom:775.365000px;}
.y1dc{bottom:776.445000px;}
.y19c{bottom:776.805000px;}
.y6a{bottom:778.425000px;}
.y40{bottom:782.385000px;}
.y8d{bottom:782.745000px;}
.y15{bottom:785.085000px;}
.y1c5{bottom:791.565000px;}
.y13c{bottom:791.745000px;}
.yf0{bottom:792.825000px;}
.yb3{bottom:794.805000px;}
.y19b{bottom:796.065000px;}
.y69{bottom:797.865000px;}
.y14{bottom:801.645000px;}
.y8c{bottom:802.185000px;}
.y3f{bottom:804.525000px;}
.ycb{bottom:806.505000px;}
.y15e{bottom:809.025000px;}
.y1c4{bottom:810.825000px;}
.yb2{bottom:814.110000px;}
.y68{bottom:817.170000px;}
.y8b{bottom:821.490000px;}
.y13{bottom:823.830000px;}
.yca{bottom:825.810000px;}
.y3e{bottom:826.890000px;}
.yef{bottom:827.250000px;}
.y1db{bottom:830.130000px;}
.y13b{bottom:830.490000px;}
.yb1{bottom:833.550000px;}
.y67{bottom:836.610000px;}
.y8a{bottom:840.930000px;}
.yc9{bottom:845.250000px;}
.y12{bottom:846.150000px;}
.y3d{bottom:849.030000px;}
.yb0{bottom:852.810000px;}
.y66{bottom:855.870000px;}
.y194{bottom:860.190000px;}
.yee{bottom:861.450000px;}
.yc8{bottom:864.510000px;}
.y15d{bottom:867.210000px;}
.y13a{bottom:869.190000px;}
.y1b1{bottom:870.810000px;}
.y3c{bottom:871.350000px;}
.yaf{bottom:872.250000px;}
.y89{bottom:875.130000px;}
.y193{bottom:879.630000px;}
.yc7{bottom:883.950000px;}
.y65{bottom:890.250000px;}
.yae{bottom:891.510000px;}
.y3b{bottom:893.670000px;}
.y11e{bottom:894.570000px;}
.y11{bottom:896.730000px;}
.yed{bottom:898.890000px;}
.yc6{bottom:903.210000px;}
.y64{bottom:909.510000px;}
.yad{bottom:910.770000px;}
.y180{bottom:910.950000px;}
.y11d{bottom:913.830000px;}
.y3a{bottom:915.810000px;}
.yec{bottom:918.330000px;}
.y10{bottom:921.030000px;}
.yc5{bottom:922.650000px;}
.y15c{bottom:925.170000px;}
.y139{bottom:927.150000px;}
.y63{bottom:928.950000px;}
.y17f{bottom:930.210000px;}
.y11c{bottom:933.270000px;}
.yeb{bottom:937.590000px;}
.y39{bottom:938.130000px;}
.yc4{bottom:941.910000px;}
.y62{bottom:948.210000px;}
.y17e{bottom:949.650000px;}
.y11b{bottom:952.530000px;}
.yf{bottom:953.970000px;}
.yea{bottom:956.850000px;}
.y38{bottom:960.270000px;}
.y61{bottom:967.650000px;}
.y17d{bottom:968.910000px;}
.y138{bottom:969.270000px;}
.y11a{bottom:971.970000px;}
.yc3{bottom:976.290000px;}
.y37{bottom:982.590000px;}
.y15b{bottom:983.310000px;}
.ye{bottom:986.910000px;}
.y17c{bottom:988.170000px;}
.y19a{bottom:988.350000px;}
.y119{bottom:991.230000px;}
.y36{bottom:1004.730000px;}
.y60{bottom:1006.350000px;}
.y199{bottom:1007.610000px;}
.yc2{bottom:1010.670000px;}
.y7{bottom:1013.730000px;}
.y6{bottom:1021.650000px;}
.y5f{bottom:1025.610000px;}
.y35{bottom:1027.050000px;}
.y137{bottom:1029.930000px;}
.y5{bottom:1040.910000px;}
.y15a{bottom:1041.270000px;}
.y5e{bottom:1045.050000px;}
.y4{bottom:1060.350000px;}
.y34{bottom:1064.340000px;}
.y3{bottom:1079.640000px;}
.y2{bottom:1099.080000px;}
.y1{bottom:1118.340000px;}
.y32{bottom:1121.220000px;}
.h4{height:15.662109px;}
.h13{height:17.460000px;}
.h1c{height:17.625000px;}
.h11{height:17.640000px;}
.h29{height:19.252500px;}
.h23{height:19.425000px;}
.h27{height:19.440000px;}
.h19{height:35.085000px;}
.h12{height:35.100000px;}
.h17{height:35.130000px;}
.h18{height:35.265000px;}
.h15{height:35.280000px;}
.h9{height:36.662344px;}
.h26{height:38.520000px;}
.h22{height:38.685000px;}
.h1f{height:38.700000px;}
.h24{height:38.722500px;}
.h20{height:38.730000px;}
.h5{height:41.974453px;}
.h6{height:42.351328px;}
.hd{height:46.986328px;}
.hb{height:51.998203px;}
.h10{height:52.465078px;}
.h1a{height:52.725000px;}
.hf{height:52.740000px;}
.h1d{height:52.761000px;}
.h2{height:56.084062px;}
.h3{height:57.636562px;}
.h21{height:57.945000px;}
.h2a{height:58.125000px;}
.h28{height:58.132500px;}
.h25{height:58.140000px;}
.h1{height:58.154062px;}
.h2b{height:58.162500px;}
.he{height:68.084282px;}
.hc{height:71.324297px;}
.h8{height:73.722656px;}
.ha{height:73.956797px;}
.h14{height:88.020000px;}
.h1e{height:88.041000px;}
.h1b{height:105.465000px;}
.h7{height:110.583984px;}
.h16{height:158.250000px;}
.h0{height:1188.000000px;}
.w7{width:59.025000px;}
.w6{width:81.345000px;}
.wa{width:84.780000px;}
.w12{width:84.816000px;}
.w3{width:94.500000px;}
.w2{width:97.041000px;}
.we{width:99.396000px;}
.w4{width:101.376000px;}
.w1{width:105.469500px;}
.w8{width:115.941000px;}
.w10{width:120.045000px;}
.w14{width:128.541000px;}
.w13{width:145.065000px;}
.wb{width:153.930000px;}
.wf{width:154.995000px;}
.wc{width:176.595000px;}
.w5{width:256.335000px;}
.w9{width:261.199500px;}
.w11{width:283.159500px;}
.wd{width:298.459500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:8.089500px;}
.x1c{left:35.100000px;}
.x1a{left:126.946500px;}
.x1{left:135.036000px;}
.xc{left:137.556000px;}
.x4{left:148.356000px;}
.x5{left:149.436000px;}
.x11{left:162.030000px;}
.x12{left:189.030000px;}
.x25{left:198.930000px;}
.x9{left:203.790000px;}
.x14{left:240.525000px;}
.x3{left:262.470000px;}
.xd{left:331.995000px;}
.x15{left:337.575000px;}
.xa{left:350.175000px;}
.xb{left:354.495000px;}
.xf{left:357.915000px;}
.x6{left:373.035000px;}
.x8{left:378.435000px;}
.x1b{left:388.155000px;}
.xe{left:403.995000px;}
.x10{left:412.275000px;}
.x22{left:418.215000px;}
.x1f{left:425.415000px;}
.x16{left:432.075000px;}
.x7{left:459.075000px;}
.x1d{left:472.935000px;}
.x23{left:503.040000px;}
.x20{left:524.820000px;}
.x17{left:533.460000px;}
.x18{left:614.820000px;}
.x1e{left:626.880000px;}
.x24{left:648.120000px;}
.x19{left:673.860000px;}
.x21{left:679.830000px;}
.x2{left:783.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.618667pt;}
.ls14{letter-spacing:-0.549333pt;}
.ls1c{letter-spacing:-0.368533pt;}
.ls15{letter-spacing:-0.358400pt;}
.ls8{letter-spacing:-0.297067pt;}
.lsb{letter-spacing:-0.214933pt;}
.lsd{letter-spacing:-0.207467pt;}
.ls5{letter-spacing:-0.194133pt;}
.ls7{letter-spacing:-0.046080pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.020480pt;}
.ls1b{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.066667pt;}
.ls4{letter-spacing:0.089600pt;}
.ls1{letter-spacing:0.128640pt;}
.ls19{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.240640pt;}
.ls1a{letter-spacing:0.271360pt;}
.ls17{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.274133pt;}
.ls2{letter-spacing:0.284160pt;}
.ls6{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.314667pt;}
.ls11{letter-spacing:0.320000pt;}
.lsa{letter-spacing:25.231360pt;}
.ls9{letter-spacing:28.431360pt;}
.lse{letter-spacing:31.631360pt;}
.ws2{word-spacing:-16.473600pt;}
.ws12{word-spacing:-13.268267pt;}
.wsd{word-spacing:-13.227733pt;}
.ws11{word-spacing:-13.225067pt;}
.wsb{word-spacing:-13.020267pt;}
.ws13{word-spacing:-12.997120pt;}
.wsf{word-spacing:-12.974080pt;}
.ws1{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.746133pt;}
.wsa{word-spacing:-12.738667pt;}
.ws9{word-spacing:-12.656533pt;}
.ws14{word-spacing:-12.585067pt;}
.ws10{word-spacing:-12.334933pt;}
.wse{word-spacing:-11.697920pt;}
.ws3{word-spacing:-11.686400pt;}
.ws7{word-spacing:-10.848000pt;}
.ws5{word-spacing:-0.074880pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:-0.053120pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:2.708480pt;}
._a{margin-left:-5.654400pt;}
._b{margin-left:-4.617600pt;}
._0{margin-left:-1.000960pt;}
._2{width:0.892800pt;}
._9{width:1.958400pt;}
._3{width:3.172267pt;}
._f{width:4.833920pt;}
._12{width:6.398080pt;}
._4{width:7.573120pt;}
._c{width:8.871040pt;}
._d{width:9.931520pt;}
._14{width:10.832640pt;}
._7{width:12.392320pt;}
._8{width:13.378560pt;}
._15{width:14.955520pt;}
._13{width:16.696320pt;}
._11{width:17.774293pt;}
._10{width:18.666027pt;}
._1b{width:19.723733pt;}
._1a{width:20.843520pt;}
._19{width:21.844480pt;}
._1c{width:22.748373pt;}
._e{width:24.178987pt;}
._16{width:25.310080pt;}
._17{width:26.559787pt;}
._18{width:28.377813pt;}
._1e{width:29.547947pt;}
._1f{width:32.207360pt;}
._20{width:33.159253pt;}
._1d{width:34.739200pt;}
._5{width:36.062080pt;}
._6{width:37.711787pt;}
._23{width:38.667520pt;}
._25{width:50.801920pt;}
._24{width:55.700480pt;}
._22{width:151.084800pt;}
._21{width:156.149760pt;}
._1{width:179.025067pt;}
.fs1{font-size:16.000000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y10e{bottom:2.866667pt;}
.yf6{bottom:2.880000pt;}
.y112{bottom:3.026667pt;}
.yf5{bottom:3.040000pt;}
.y103{bottom:3.066667pt;}
.y151{bottom:3.186667pt;}
.y159{bottom:3.193333pt;}
.y122{bottom:3.200000pt;}
.y157{bottom:3.353333pt;}
.y12b{bottom:3.360000pt;}
.y160{bottom:3.400000pt;}
.y10d{bottom:18.546667pt;}
.yf3{bottom:18.560000pt;}
.y102{bottom:18.586667pt;}
.y111{bottom:18.706667pt;}
.yfd{bottom:18.720000pt;}
.y142{bottom:20.320000pt;}
.y150{bottom:20.466667pt;}
.y156{bottom:20.468000pt;}
.y121{bottom:20.480000pt;}
.y125{bottom:20.506667pt;}
.y13d{bottom:20.520000pt;}
.yf2{bottom:34.240000pt;}
.y10c{bottom:34.266667pt;}
.y153{bottom:37.586667pt;}
.y127{bottom:37.600000pt;}
.y155{bottom:37.748000pt;}
.y140{bottom:37.760000pt;}
.y15f{bottom:37.800000pt;}
.y33{bottom:51.040000pt;}
.yd{bottom:51.712000pt;}
.yc{bottom:65.472000pt;}
.yfa{bottom:65.600000pt;}
.y110{bottom:65.626667pt;}
.yb{bottom:79.232000pt;}
.y108{bottom:81.120000pt;}
.ya{bottom:92.992000pt;}
.y5d{bottom:99.392000pt;}
.y118{bottom:99.872000pt;}
.ye9{bottom:103.712000pt;}
.yac{bottom:104.032000pt;}
.y9{bottom:106.752000pt;}
.y158{bottom:108.358667pt;}
.y100{bottom:112.506667pt;}
.y192{bottom:114.752000pt;}
.y17b{bottom:115.552000pt;}
.y5c{bottom:116.512000pt;}
.y117{bottom:117.152000pt;}
.y1c3{bottom:119.232000pt;}
.y88{bottom:120.032000pt;}
.y8{bottom:120.512000pt;}
.ye8{bottom:120.992000pt;}
.yab{bottom:121.312000pt;}
.y136{bottom:121.472000pt;}
.y154{bottom:125.478667pt;}
.yff{bottom:128.026667pt;}
.yc1{bottom:131.872000pt;}
.y17a{bottom:132.832000pt;}
.y116{bottom:134.266667pt;}
.y1c2{bottom:136.346667pt;}
.y87{bottom:137.306667pt;}
.ye7{bottom:138.106667pt;}
.y1da{bottom:144.186667pt;}
.yc0{bottom:149.146667pt;}
.y5b{bottom:149.786667pt;}
.y179{bottom:149.946667pt;}
.y115{bottom:151.546667pt;}
.yaa{bottom:151.706667pt;}
.y135{bottom:152.026667pt;}
.y86{bottom:154.426667pt;}
.ye6{bottom:155.386667pt;}
.y31{bottom:161.146667pt;}
.y1d9{bottom:161.306667pt;}
.ybf{bottom:166.266667pt;}
.y1c1{bottom:166.906667pt;}
.y5a{bottom:167.066667pt;}
.y114{bottom:168.666667pt;}
.ya9{bottom:168.986667pt;}
.y85{bottom:171.706667pt;}
.ye5{bottom:172.506667pt;}
.y152{bottom:177.160000pt;}
.y1d8{bottom:178.586667pt;}
.y30{bottom:181.306667pt;}
.y134{bottom:182.426667pt;}
.y178{bottom:183.226667pt;}
.ybe{bottom:183.546667pt;}
.y59{bottom:184.186667pt;}
.y1b0{bottom:185.946667pt;}
.y198{bottom:188.826667pt;}
.ye4{bottom:189.786667pt;}
.y113{bottom:199.226667pt;}
.ya8{bottom:199.546667pt;}
.y133{bottom:199.706667pt;}
.y177{bottom:200.346667pt;}
.ybd{bottom:200.666667pt;}
.y58{bottom:201.466667pt;}
.y84{bottom:202.106667pt;}
.y1af{bottom:203.066667pt;}
.y197{bottom:205.946667pt;}
.ye3{bottom:206.906667pt;}
.y1d7{bottom:208.986667pt;}
.y1c0{bottom:214.586667pt;}
.y10f{bottom:215.080000pt;}
.ya7{bottom:216.666667pt;}
.y132{bottom:216.826667pt;}
.y2f{bottom:217.626667pt;}
.ybc{bottom:217.786667pt;}
.y191{bottom:217.946667pt;}
.y57{bottom:218.586667pt;}
.ye2{bottom:224.186667pt;}
.y14f{bottom:231.720000pt;}
.y1bf{bottom:231.866667pt;}
.y83{bottom:232.666667pt;}
.ya6{bottom:233.946667pt;}
.y131{bottom:234.106667pt;}
.y176{bottom:234.746667pt;}
.y190{bottom:235.066667pt;}
.y2e{bottom:235.546667pt;}
.y56{bottom:235.706667pt;}
.y1ae{bottom:236.346667pt;}
.y196{bottom:236.506667pt;}
.y1d6{bottom:239.546667pt;}
.ye1{bottom:241.306667pt;}
.y10b{bottom:246.440000pt;}
.y1be{bottom:248.986667pt;}
.y82{bottom:249.946667pt;}
.ya5{bottom:251.066667pt;}
.y130{bottom:251.226667pt;}
.y175{bottom:251.866667pt;}
.y18f{bottom:252.346667pt;}
.y55{bottom:252.986667pt;}
.y2d{bottom:253.466667pt;}
.y195{bottom:253.786667pt;}
.ye0{bottom:258.586667pt;}
.y81{bottom:267.066667pt;}
.ya4{bottom:268.346667pt;}
.y12f{bottom:268.506667pt;}
.y174{bottom:269.146667pt;}
.y18e{bottom:269.466667pt;}
.y54{bottom:270.106667pt;}
.y1ad{bottom:270.586667pt;}
.y2c{bottom:271.546667pt;}
.ydf{bottom:275.746667pt;}
.y1bd{bottom:279.586667pt;}
.y80{bottom:284.386667pt;}
.ya3{bottom:285.506667pt;}
.y12e{bottom:285.666667pt;}
.y173{bottom:286.306667pt;}
.y1d5{bottom:287.266667pt;}
.y53{bottom:287.426667pt;}
.y1ac{bottom:287.906667pt;}
.y2b{bottom:289.506667pt;}
.y107{bottom:293.346667pt;}
.y1bc{bottom:296.866667pt;}
.y7f{bottom:301.506667pt;}
.ya2{bottom:302.626667pt;}
.y12d{bottom:302.946667pt;}
.y52{bottom:304.546667pt;}
.y1ab{bottom:305.026667pt;}
.yde{bottom:306.306667pt;}
.y2a{bottom:307.586667pt;}
.y1d4{bottom:317.826667pt;}
.y7e{bottom:318.626667pt;}
.y172{bottom:319.586667pt;}
.ya1{bottom:319.906667pt;}
.y51{bottom:321.826667pt;}
.y1aa{bottom:322.306667pt;}
.y10a{bottom:324.546667pt;}
.y29{bottom:325.506667pt;}
.y1e9{bottom:325.666667pt;}
.y1bb{bottom:327.266667pt;}
.y12c{bottom:333.346667pt;}
.y1d3{bottom:335.106667pt;}
.y7d{bottom:335.906667pt;}
.y171{bottom:336.706667pt;}
.ydd{bottom:336.866667pt;}
.ya0{bottom:337.026667pt;}
.y1a9{bottom:339.426667pt;}
.y109{bottom:340.226667pt;}
.y28{bottom:343.426667pt;}
.y1ba{bottom:344.546667pt;}
.y12a{bottom:350.306667pt;}
.y14e{bottom:350.626667pt;}
.y1d2{bottom:352.226667pt;}
.y50{bottom:352.386667pt;}
.y7c{bottom:353.026667pt;}
.ydc{bottom:353.986667pt;}
.y9f{bottom:354.306667pt;}
.y106{bottom:355.906667pt;}
.y1e8{bottom:356.066667pt;}
.y1a8{bottom:356.706667pt;}
.y27{bottom:361.506667pt;}
.y1b9{bottom:361.666667pt;}
.y129{bottom:367.586667pt;}
.y7b{bottom:370.306667pt;}
.y170{bottom:371.106667pt;}
.ydb{bottom:371.266667pt;}
.y9e{bottom:371.426667pt;}
.y1a7{bottom:373.826667pt;}
.y26{bottom:379.426667pt;}
.y14d{bottom:381.186667pt;}
.y1d1{bottom:382.786667pt;}
.y4f{bottom:385.506667pt;}
.y1e7{bottom:386.626667pt;}
.yfe{bottom:387.106667pt;}
.y7a{bottom:387.426667pt;}
.y16f{bottom:388.226667pt;}
.yda{bottom:388.386667pt;}
.ybb{bottom:388.706667pt;}
.y1b8{bottom:392.226667pt;}
.y25{bottom:397.346667pt;}
.y14c{bottom:398.306667pt;}
.y1d0{bottom:399.906667pt;}
.y128{bottom:401.986667pt;}
.y1e6{bottom:403.906667pt;}
.y1a6{bottom:404.386667pt;}
.y9d{bottom:404.706667pt;}
.y4e{bottom:405.186667pt;}
.yd9{bottom:405.666667pt;}
.yba{bottom:405.826667pt;}
.y24{bottom:415.426667pt;}
.y14b{bottom:415.586667pt;}
.y79{bottom:420.706667pt;}
.y1e5{bottom:421.026667pt;}
.y16e{bottom:421.506667pt;}
.y9c{bottom:421.826667pt;}
.yd8{bottom:422.786667pt;}
.y18d{bottom:423.106667pt;}
.y1cf{bottom:430.466667pt;}
.y14a{bottom:432.706667pt;}
.y23{bottom:433.346667pt;}
.y105{bottom:433.986667pt;}
.y1a5{bottom:434.946667pt;}
.y126{bottom:436.386667pt;}
.y78{bottom:437.826667pt;}
.y4d{bottom:438.306667pt;}
.y9b{bottom:439.106667pt;}
.yd7{bottom:439.906667pt;}
.y18c{bottom:440.226667pt;}
.y1ce{bottom:447.746667pt;}
.y149{bottom:449.986667pt;}
.y22{bottom:451.266667pt;}
.y1e4{bottom:451.586667pt;}
.y16d{bottom:452.066667pt;}
.y77{bottom:455.106667pt;}
.y9a{bottom:456.226667pt;}
.yd6{bottom:457.186667pt;}
.y18b{bottom:457.506667pt;}
.y4c{bottom:458.146667pt;}
.y104{bottom:465.186667pt;}
.y148{bottom:467.106667pt;}
.y1e3{bottom:468.706667pt;}
.y21{bottom:469.346667pt;}
.y1b7{bottom:470.466667pt;}
.y76{bottom:472.226667pt;}
.y99{bottom:473.506667pt;}
.y18a{bottom:474.626667pt;}
.y4b{bottom:477.826667pt;}
.y1cd{bottom:478.306667pt;}
.y16c{bottom:482.626667pt;}
.y147{bottom:484.386667pt;}
.y1e2{bottom:485.986667pt;}
.y1a4{bottom:486.466667pt;}
.y20{bottom:487.266667pt;}
.yd5{bottom:487.746667pt;}
.y124{bottom:487.906667pt;}
.y75{bottom:489.506667pt;}
.y98{bottom:490.626667pt;}
.y189{bottom:491.906667pt;}
.y1cc{bottom:495.426667pt;}
.y101{bottom:496.546667pt;}
.y4a{bottom:497.666667pt;}
.y16b{bottom:499.773333pt;}
.y146{bottom:501.533333pt;}
.y1a3{bottom:503.613333pt;}
.y1f{bottom:505.213333pt;}
.y74{bottom:506.653333pt;}
.y97{bottom:507.933333pt;}
.y188{bottom:509.053333pt;}
.y1cb{bottom:512.573333pt;}
.y1e1{bottom:516.573333pt;}
.y16a{bottom:517.053333pt;}
.y49{bottom:517.373333pt;}
.yd4{bottom:518.333333pt;}
.y145{bottom:518.653333pt;}
.y123{bottom:522.333333pt;}
.y73{bottom:523.933333pt;}
.y96{bottom:525.053333pt;}
.y1e{bottom:525.533333pt;}
.yf9{bottom:527.773333pt;}
.y1e0{bottom:533.693333pt;}
.y169{bottom:534.173333pt;}
.yd3{bottom:535.453333pt;}
.y1a2{bottom:536.893333pt;}
.y48{bottom:537.213333pt;}
.y187{bottom:539.613333pt;}
.y72{bottom:541.053333pt;}
.y95{bottom:542.333333pt;}
.y1ca{bottom:543.133333pt;}
.y1b6{bottom:548.733333pt;}
.y1d{bottom:548.893333pt;}
.y144{bottom:549.213333pt;}
.y168{bottom:551.453333pt;}
.yd2{bottom:552.573333pt;}
.y1a1{bottom:554.173333pt;}
.y47{bottom:557.053333pt;}
.y71{bottom:558.333333pt;}
.yfc{bottom:559.133333pt;}
.y94{bottom:559.453333pt;}
.y120{bottom:559.773333pt;}
.y1c9{bottom:560.413333pt;}
.y1df{bottom:564.253333pt;}
.y1b5{bottom:566.013333pt;}
.y143{bottom:566.173333pt;}
.y167{bottom:568.573333pt;}
.y1c{bottom:568.733333pt;}
.yd1{bottom:569.853333pt;}
.y186{bottom:570.173333pt;}
.y1a0{bottom:571.293333pt;}
.yfb{bottom:574.653333pt;}
.yb9{bottom:576.573333pt;}
.y46{bottom:576.733333pt;}
.y1b4{bottom:583.133333pt;}
.y141{bottom:583.453333pt;}
.y166{bottom:585.853333pt;}
.yd0{bottom:586.973333pt;}
.y185{bottom:587.293333pt;}
.y1b{bottom:588.413333pt;}
.y19f{bottom:588.573333pt;}
.y70{bottom:588.733333pt;}
.yf8{bottom:590.333333pt;}
.y1c8{bottom:590.973333pt;}
.y93{bottom:592.573333pt;}
.yb8{bottom:593.853333pt;}
.y1de{bottom:594.813333pt;}
.y45{bottom:596.573333pt;}
.y165{bottom:602.973333pt;}
.ycf{bottom:604.253333pt;}
.y184{bottom:604.573333pt;}
.y19e{bottom:605.693333pt;}
.y6f{bottom:606.013333pt;}
.y1c7{bottom:608.093333pt;}
.y1a{bottom:608.253333pt;}
.y92{bottom:609.853333pt;}
.y11f{bottom:613.693333pt;}
.y44{bottom:616.253333pt;}
.y13f{bottom:617.693333pt;}
.y164{bottom:620.253333pt;}
.yce{bottom:621.373333pt;}
.yf7{bottom:621.533333pt;}
.y183{bottom:621.693333pt;}
.y6e{bottom:623.133333pt;}
.yb7{bottom:624.413333pt;}
.y1dd{bottom:625.213333pt;}
.y19{bottom:626.013333pt;}
.y91{bottom:626.973333pt;}
.y1b3{bottom:630.973333pt;}
.y43{bottom:636.093333pt;}
.y163{bottom:637.373333pt;}
.ycd{bottom:638.653333pt;}
.y182{bottom:638.973333pt;}
.yf1{bottom:639.293333pt;}
.y6d{bottom:640.413333pt;}
.y18{bottom:640.573333pt;}
.yb6{bottom:641.533333pt;}
.y90{bottom:644.253333pt;}
.y1b2{bottom:648.093333pt;}
.y42{bottom:655.773333pt;}
.y181{bottom:656.093333pt;}
.y6c{bottom:657.533333pt;}
.y17{bottom:660.413333pt;}
.y8f{bottom:661.373333pt;}
.y162{bottom:667.933333pt;}
.y13e{bottom:669.373333pt;}
.yf4{bottom:670.493333pt;}
.yb5{bottom:672.093333pt;}
.y1c6{bottom:673.053333pt;}
.y19d{bottom:673.213333pt;}
.y6b{bottom:674.813333pt;}
.y41{bottom:675.613333pt;}
.y8e{bottom:678.653333pt;}
.y16{bottom:680.093333pt;}
.y161{bottom:684.893333pt;}
.ycc{bottom:686.333333pt;}
.yb4{bottom:689.213333pt;}
.y1dc{bottom:690.173333pt;}
.y19c{bottom:690.493333pt;}
.y6a{bottom:691.933333pt;}
.y40{bottom:695.453333pt;}
.y8d{bottom:695.773333pt;}
.y15{bottom:697.853333pt;}
.y1c5{bottom:703.613333pt;}
.y13c{bottom:703.773333pt;}
.yf0{bottom:704.733333pt;}
.yb3{bottom:706.493333pt;}
.y19b{bottom:707.613333pt;}
.y69{bottom:709.213333pt;}
.y14{bottom:712.573333pt;}
.y8c{bottom:713.053333pt;}
.y3f{bottom:715.133333pt;}
.ycb{bottom:716.893333pt;}
.y15e{bottom:719.133333pt;}
.y1c4{bottom:720.733333pt;}
.yb2{bottom:723.653333pt;}
.y68{bottom:726.373333pt;}
.y8b{bottom:730.213333pt;}
.y13{bottom:732.293333pt;}
.yca{bottom:734.053333pt;}
.y3e{bottom:735.013333pt;}
.yef{bottom:735.333333pt;}
.y1db{bottom:737.893333pt;}
.y13b{bottom:738.213333pt;}
.yb1{bottom:740.933333pt;}
.y67{bottom:743.653333pt;}
.y8a{bottom:747.493333pt;}
.yc9{bottom:751.333333pt;}
.y12{bottom:752.133333pt;}
.y3d{bottom:754.693333pt;}
.yb0{bottom:758.053333pt;}
.y66{bottom:760.773333pt;}
.y194{bottom:764.613333pt;}
.yee{bottom:765.733333pt;}
.yc8{bottom:768.453333pt;}
.y15d{bottom:770.853333pt;}
.y13a{bottom:772.613333pt;}
.y1b1{bottom:774.053333pt;}
.y3c{bottom:774.533333pt;}
.yaf{bottom:775.333333pt;}
.y89{bottom:777.893333pt;}
.y193{bottom:781.893333pt;}
.yc7{bottom:785.733333pt;}
.y65{bottom:791.333333pt;}
.yae{bottom:792.453333pt;}
.y3b{bottom:794.373333pt;}
.y11e{bottom:795.173333pt;}
.y11{bottom:797.093333pt;}
.yed{bottom:799.013333pt;}
.yc6{bottom:802.853333pt;}
.y64{bottom:808.453333pt;}
.yad{bottom:809.573333pt;}
.y180{bottom:809.733333pt;}
.y11d{bottom:812.293333pt;}
.y3a{bottom:814.053333pt;}
.yec{bottom:816.293333pt;}
.y10{bottom:818.693333pt;}
.yc5{bottom:820.133333pt;}
.y15c{bottom:822.373333pt;}
.y139{bottom:824.133333pt;}
.y63{bottom:825.733333pt;}
.y17f{bottom:826.853333pt;}
.y11c{bottom:829.573333pt;}
.yeb{bottom:833.413333pt;}
.y39{bottom:833.893333pt;}
.yc4{bottom:837.253333pt;}
.y62{bottom:842.853333pt;}
.y17e{bottom:844.133333pt;}
.y11b{bottom:846.693333pt;}
.yf{bottom:847.973333pt;}
.yea{bottom:850.533333pt;}
.y38{bottom:853.573333pt;}
.y61{bottom:860.133333pt;}
.y17d{bottom:861.253333pt;}
.y138{bottom:861.573333pt;}
.y11a{bottom:863.973333pt;}
.yc3{bottom:867.813333pt;}
.y37{bottom:873.413333pt;}
.y15b{bottom:874.053333pt;}
.ye{bottom:877.253333pt;}
.y17c{bottom:878.373333pt;}
.y19a{bottom:878.533333pt;}
.y119{bottom:881.093333pt;}
.y36{bottom:893.093333pt;}
.y60{bottom:894.533333pt;}
.y199{bottom:895.653333pt;}
.yc2{bottom:898.373333pt;}
.y7{bottom:901.093333pt;}
.y6{bottom:908.133333pt;}
.y5f{bottom:911.653333pt;}
.y35{bottom:912.933333pt;}
.y137{bottom:915.493333pt;}
.y5{bottom:925.253333pt;}
.y15a{bottom:925.573333pt;}
.y5e{bottom:928.933333pt;}
.y4{bottom:942.533333pt;}
.y34{bottom:946.080000pt;}
.y3{bottom:959.680000pt;}
.y2{bottom:976.960000pt;}
.y1{bottom:994.080000pt;}
.y32{bottom:996.640000pt;}
.h4{height:13.921875pt;}
.h13{height:15.520000pt;}
.h1c{height:15.666667pt;}
.h11{height:15.680000pt;}
.h29{height:17.113333pt;}
.h23{height:17.266667pt;}
.h27{height:17.280000pt;}
.h19{height:31.186667pt;}
.h12{height:31.200000pt;}
.h17{height:31.226667pt;}
.h18{height:31.346667pt;}
.h15{height:31.360000pt;}
.h9{height:32.588750pt;}
.h26{height:34.240000pt;}
.h22{height:34.386667pt;}
.h1f{height:34.400000pt;}
.h24{height:34.420000pt;}
.h20{height:34.426667pt;}
.h5{height:37.310625pt;}
.h6{height:37.645625pt;}
.hd{height:41.765625pt;}
.hb{height:46.220625pt;}
.h10{height:46.635625pt;}
.h1a{height:46.866667pt;}
.hf{height:46.880000pt;}
.h1d{height:46.898667pt;}
.h2{height:49.852500pt;}
.h3{height:51.232500pt;}
.h21{height:51.506667pt;}
.h2a{height:51.666667pt;}
.h28{height:51.673333pt;}
.h25{height:51.680000pt;}
.h1{height:51.692500pt;}
.h2b{height:51.700000pt;}
.he{height:60.519362pt;}
.hc{height:63.399375pt;}
.h8{height:65.531250pt;}
.ha{height:65.739375pt;}
.h14{height:78.240000pt;}
.h1e{height:78.258667pt;}
.h1b{height:93.746667pt;}
.h7{height:98.296875pt;}
.h16{height:140.666667pt;}
.h0{height:1056.000000pt;}
.w7{width:52.466667pt;}
.w6{width:72.306667pt;}
.wa{width:75.360000pt;}
.w12{width:75.392000pt;}
.w3{width:84.000000pt;}
.w2{width:86.258667pt;}
.we{width:88.352000pt;}
.w4{width:90.112000pt;}
.w1{width:93.750667pt;}
.w8{width:103.058667pt;}
.w10{width:106.706667pt;}
.w14{width:114.258667pt;}
.w13{width:128.946667pt;}
.wb{width:136.826667pt;}
.wf{width:137.773333pt;}
.wc{width:156.973333pt;}
.w5{width:227.853333pt;}
.w9{width:232.177333pt;}
.w11{width:251.697333pt;}
.wd{width:265.297333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.190667pt;}
.x1c{left:31.200000pt;}
.x1a{left:112.841333pt;}
.x1{left:120.032000pt;}
.xc{left:122.272000pt;}
.x4{left:131.872000pt;}
.x5{left:132.832000pt;}
.x11{left:144.026667pt;}
.x12{left:168.026667pt;}
.x25{left:176.826667pt;}
.x9{left:181.146667pt;}
.x14{left:213.800000pt;}
.x3{left:233.306667pt;}
.xd{left:295.106667pt;}
.x15{left:300.066667pt;}
.xa{left:311.266667pt;}
.xb{left:315.106667pt;}
.xf{left:318.146667pt;}
.x6{left:331.586667pt;}
.x8{left:336.386667pt;}
.x1b{left:345.026667pt;}
.xe{left:359.106667pt;}
.x10{left:366.466667pt;}
.x22{left:371.746667pt;}
.x1f{left:378.146667pt;}
.x16{left:384.066667pt;}
.x7{left:408.066667pt;}
.x1d{left:420.386667pt;}
.x23{left:447.146667pt;}
.x20{left:466.506667pt;}
.x17{left:474.186667pt;}
.x18{left:546.506667pt;}
.x1e{left:557.226667pt;}
.x24{left:576.106667pt;}
.x19{left:598.986667pt;}
.x21{left:604.293333pt;}
.x2{left:696.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; }
  