
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_a73a8339c7948343171760fe.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9561c4840824deff6efd5dc1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_6c229014190a315c264607c5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_414c15f5b9a7cb752856fc6a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_e265f1e13a9973494a6adfbe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_d65fba80b46e73a5f24d6573.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_da3558c386ec929fa78f5990.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.274800px;}
.ls10{letter-spacing:-0.262200px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.lsf{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.457800px;}
.lse{letter-spacing:6.785280px;}
.lsb{letter-spacing:34.020000px;}
.lsd{letter-spacing:39.905280px;}
.ls8{letter-spacing:59.345280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws0{word-spacing:-59.760000px;}
.wse{word-spacing:-28.987200px;}
.ws7{word-spacing:-28.712400px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.297800px;}
.wsc{word-spacing:-16.254600px;}
.ws6{word-spacing:-13.939200px;}
.ws5{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-2.028000px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._c{width:2.572800px;}
._5{width:3.643200px;}
._d{width:5.070720px;}
._6{width:6.160320px;}
._7{width:7.220160px;}
._b{width:9.163200px;}
._a{width:10.215360px;}
._16{width:11.728800px;}
._19{width:12.750240px;}
._4{width:14.175360px;}
._20{width:15.342240px;}
._14{width:18.414720px;}
._15{width:19.444800px;}
._13{width:20.472480px;}
._9{width:22.183680px;}
._8{width:23.794560px;}
._f{width:24.840000px;}
._10{width:26.007840px;}
._1b{width:27.228960px;}
._25{width:28.549440px;}
._24{width:29.675520px;}
._22{width:31.397760px;}
._1c{width:32.689440px;}
._1d{width:33.955680px;}
._26{width:35.078880px;}
._2d{width:36.245280px;}
._11{width:37.690560px;}
._12{width:38.882880px;}
._1a{width:40.207680px;}
._21{width:41.904480px;}
._2c{width:42.923520px;}
._17{width:45.164160px;}
._18{width:46.180320px;}
._23{width:48.186240px;}
._1e{width:49.348800px;}
._1f{width:50.515680px;}
._35{width:51.956160px;}
._3{width:53.588160px;}
._2e{width:55.244160px;}
._2f{width:56.808480px;}
._39{width:58.226880px;}
._38{width:59.314560px;}
._34{width:63.143520px;}
._33{width:64.695360px;}
._3c{width:66.972960px;}
._3b{width:68.227200px;}
._3f{width:71.152320px;}
._30{width:72.345600px;}
._28{width:73.440000px;}
._2a{width:76.176000px;}
._2b{width:77.907360px;}
._31{width:83.151360px;}
._36{width:85.449600px;}
._37{width:86.748960px;}
._32{width:101.016000px;}
._27{width:136.189440px;}
._3a{width:154.339200px;}
._29{width:199.440000px;}
._3d{width:227.269440px;}
._3e{width:228.436320px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.ye7{bottom:9.720000px;}
.y143{bottom:9.894000px;}
.yd7{bottom:9.900000px;}
.yf1{bottom:9.945000px;}
.y8{bottom:10.800000px;}
.y145{bottom:11.520000px;}
.y141{bottom:13.140000px;}
.y11e{bottom:13.320000px;}
.y140{bottom:16.380000px;}
.y11d{bottom:16.920000px;}
.yd9{bottom:20.160000px;}
.y10a{bottom:20.205000px;}
.ydf{bottom:20.340000px;}
.ye1{bottom:20.385000px;}
.ya{bottom:20.880000px;}
.ye6{bottom:30.420000px;}
.y37{bottom:30.600000px;}
.ye0{bottom:30.645000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.yd6{bottom:51.300000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y34{bottom:79.056000px;}
.y30{bottom:97.596000px;}
.y71{bottom:108.576000px;}
.yd4{bottom:108.756000px;}
.y12c{bottom:109.296000px;}
.y5d{bottom:109.836000px;}
.y160{bottom:112.176000px;}
.y144{bottom:120.636000px;}
.y2f{bottom:126.036000px;}
.y96{bottom:132.156000px;}
.y130{bottom:136.260000px;}
.yea{bottom:136.290000px;}
.y10d{bottom:136.305000px;}
.ydc{bottom:136.485000px;}
.yd3{bottom:137.196000px;}
.y70{bottom:137.376000px;}
.y12b{bottom:137.736000px;}
.y164{bottom:138.096000px;}
.y5c{bottom:138.456000px;}
.y15f{bottom:140.616000px;}
.y111{bottom:142.776000px;}
.y142{bottom:145.296000px;}
.ya7{bottom:153.210000px;}
.y2e{bottom:154.470000px;}
.y12f{bottom:156.960000px;}
.ye9{bottom:156.990000px;}
.y10c{bottom:157.005000px;}
.y115{bottom:157.140000px;}
.ydb{bottom:157.185000px;}
.y95{bottom:160.590000px;}
.y6f{bottom:162.030000px;}
.yd2{bottom:165.630000px;}
.y12a{bottom:166.170000px;}
.y5b{bottom:166.530000px;}
.y13f{bottom:166.710000px;}
.y5e{bottom:166.890000px;}
.y15e{bottom:169.050000px;}
.y110{bottom:171.210000px;}
.ya6{bottom:181.650000px;}
.y2d{bottom:182.910000px;}
.y94{bottom:185.250000px;}
.y10b{bottom:187.050000px;}
.yd1{bottom:194.070000px;}
.y129{bottom:194.610000px;}
.y5a{bottom:195.330000px;}
.y15d{bottom:197.490000px;}
.y82{bottom:198.930000px;}
.ya5{bottom:210.090000px;}
.y2c{bottom:211.350000px;}
.y13e{bottom:216.030000px;}
.yb8{bottom:220.530000px;}
.yd0{bottom:222.510000px;}
.y128{bottom:223.050000px;}
.y59{bottom:223.770000px;}
.y15c{bottom:225.930000px;}
.y81{bottom:227.370000px;}
.yf5{bottom:228.450000px;}
.y10f{bottom:229.170000px;}
.ya4{bottom:238.710000px;}
.y2b{bottom:239.790000px;}
.yb7{bottom:248.970000px;}
.ycf{bottom:251.310000px;}
.y127{bottom:251.670000px;}
.y58{bottom:252.210000px;}
.y15b{bottom:254.370000px;}
.y80{bottom:255.810000px;}
.yf4{bottom:256.890000px;}
.ya3{bottom:267.150000px;}
.y2a{bottom:268.230000px;}
.y10e{bottom:271.290000px;}
.y13d{bottom:271.650000px;}
.yf3{bottom:272.550000px;}
.yb6{bottom:277.410000px;}
.yce{bottom:279.750000px;}
.y126{bottom:280.110000px;}
.y57{bottom:280.650000px;}
.y15a{bottom:282.810000px;}
.y7f{bottom:284.250000px;}
.yf2{bottom:293.970000px;}
.ya2{bottom:295.590000px;}
.y29{bottom:296.850000px;}
.y13c{bottom:300.090000px;}
.yb5{bottom:305.850000px;}
.ycd{bottom:308.370000px;}
.y125{bottom:308.550000px;}
.y56{bottom:309.090000px;}
.y159{bottom:311.250000px;}
.y7e{bottom:312.870000px;}
.y109{bottom:313.410000px;}
.yf0{bottom:315.390000px;}
.ya1{bottom:324.075000px;}
.y28{bottom:324.975000px;}
.y31{bottom:325.335000px;}
.y13b{bottom:328.575000px;}
.y124{bottom:333.255000px;}
.yb4{bottom:334.335000px;}
.ycc{bottom:336.855000px;}
.y55{bottom:337.575000px;}
.y158{bottom:339.915000px;}
.y7d{bottom:341.355000px;}
.y138{bottom:344.415000px;}
.ya0{bottom:352.515000px;}
.y108{bottom:355.575000px;}
.y27{bottom:357.555000px;}
.yef{bottom:358.275000px;}
.yb3{bottom:362.775000px;}
.ycb{bottom:365.295000px;}
.y54{bottom:366.015000px;}
.y157{bottom:367.995000px;}
.y7c{bottom:369.795000px;}
.y26{bottom:385.995000px;}
.y13a{bottom:386.535000px;}
.yb2{bottom:391.215000px;}
.yca{bottom:393.735000px;}
.y53{bottom:394.635000px;}
.y156{bottom:396.795000px;}
.y7b{bottom:398.235000px;}
.yee{bottom:414.075000px;}
.y25{bottom:414.435000px;}
.y6e{bottom:414.795000px;}
.yb1{bottom:415.695000px;}
.yc9{bottom:422.175000px;}
.y52{bottom:423.075000px;}
.y155{bottom:425.235000px;}
.y7a{bottom:426.675000px;}
.y139{bottom:428.655000px;}
.y107{bottom:431.895000px;}
.y93{bottom:437.835000px;}
.yed{bottom:442.515000px;}
.y24{bottom:442.875000px;}
.y6d{bottom:443.235000px;}
.yc8{bottom:450.615000px;}
.y51{bottom:451.515000px;}
.y154{bottom:453.675000px;}
.y79{bottom:455.115000px;}
.y106{bottom:460.335000px;}
.y92{bottom:466.275000px;}
.y137{bottom:470.775000px;}
.yec{bottom:470.955000px;}
.y23{bottom:471.315000px;}
.y6c{bottom:471.855000px;}
.yc7{bottom:479.055000px;}
.y50{bottom:479.955000px;}
.y153{bottom:482.115000px;}
.y78{bottom:483.555000px;}
.ye8{bottom:486.615000px;}
.y105{bottom:488.955000px;}
.y91{bottom:494.715000px;}
.y22{bottom:499.755000px;}
.y6b{bottom:500.295000px;}
.yc6{bottom:507.495000px;}
.y4f{bottom:508.395000px;}
.y152{bottom:510.555000px;}
.y77{bottom:511.995000px;}
.y9f{bottom:512.535000px;}
.y136{bottom:512.895000px;}
.y104{bottom:517.395000px;}
.y90{bottom:523.155000px;}
.y21{bottom:528.195000px;}
.y6a{bottom:528.735000px;}
.yc5{bottom:535.935000px;}
.y4e{bottom:536.835000px;}
.y9e{bottom:537.015000px;}
.y151{bottom:538.995000px;}
.y76{bottom:540.075000px;}
.y103{bottom:545.835000px;}
.y8f{bottom:551.595000px;}
.y20{bottom:556.635000px;}
.y69{bottom:557.175000px;}
.yc4{bottom:564.555000px;}
.y4d{bottom:565.275000px;}
.y123{bottom:567.255000px;}
.y150{bottom:567.435000px;}
.y75{bottom:568.725000px;}
.yeb{bottom:570.885000px;}
.y102{bottom:574.305000px;}
.y8e{bottom:580.065000px;}
.y1f{bottom:585.105000px;}
.y68{bottom:585.285000px;}
.y135{bottom:589.245000px;}
.yc3{bottom:593.025000px;}
.y4c{bottom:593.745000px;}
.y122{bottom:595.725000px;}
.y14f{bottom:596.085000px;}
.y74{bottom:597.525000px;}
.y101{bottom:602.745000px;}
.y8d{bottom:608.505000px;}
.y121{bottom:611.385000px;}
.ye5{bottom:613.185000px;}
.y1e{bottom:613.725000px;}
.y67{bottom:614.085000px;}
.y134{bottom:617.685000px;}
.yc2{bottom:621.465000px;}
.y4b{bottom:622.185000px;}
.y14e{bottom:624.525000px;}
.y73{bottom:625.965000px;}
.y100{bottom:631.185000px;}
.y8c{bottom:636.945000px;}
.yb0{bottom:638.565000px;}
.y120{bottom:639.825000px;}
.y1d{bottom:642.165000px;}
.y66{bottom:642.705000px;}
.y133{bottom:646.305000px;}
.yc1{bottom:649.905000px;}
.y72{bottom:650.445000px;}
.y4a{bottom:650.805000px;}
.y14d{bottom:652.965000px;}
.ye4{bottom:655.305000px;}
.yff{bottom:659.625000px;}
.y12e{bottom:661.965000px;}
.y8b{bottom:665.565000px;}
.yaf{bottom:667.005000px;}
.y11f{bottom:668.265000px;}
.y1c{bottom:670.605000px;}
.y65{bottom:672.225000px;}
.yc0{bottom:678.345000px;}
.y49{bottom:679.245000px;}
.y14c{bottom:681.405000px;}
.yfe{bottom:688.065000px;}
.y8a{bottom:694.005000px;}
.yae{bottom:695.625000px;}
.y11c{bottom:696.705000px;}
.y1b{bottom:699.045000px;}
.y64{bottom:700.845000px;}
.y132{bottom:704.085000px;}
.ybf{bottom:706.785000px;}
.y163{bottom:707.325000px;}
.y48{bottom:707.685000px;}
.y9d{bottom:708.225000px;}
.y14b{bottom:709.845000px;}
.yfd{bottom:716.505000px;}
.y89{bottom:722.445000px;}
.yad{bottom:724.065000px;}
.y11b{bottom:725.145000px;}
.y63{bottom:730.365000px;}
.ye3{bottom:731.625000px;}
.y1a{bottom:733.425000px;}
.ybe{bottom:735.225000px;}
.y162{bottom:735.765000px;}
.y47{bottom:736.125000px;}
.y9c{bottom:736.665000px;}
.y14a{bottom:738.285000px;}
.yfc{bottom:745.125000px;}
.y131{bottom:746.205000px;}
.y88{bottom:750.885000px;}
.yac{bottom:752.505000px;}
.y19{bottom:755.925000px;}
.y62{bottom:760.065000px;}
.ybd{bottom:763.665000px;}
.y46{bottom:764.565000px;}
.y9b{bottom:765.105000px;}
.y149{bottom:766.725000px;}
.yfb{bottom:773.565000px;}
.y87{bottom:778.965000px;}
.y11a{bottom:780.765000px;}
.yab{bottom:780.945000px;}
.y12d{bottom:788.325000px;}
.ye2{bottom:788.505000px;}
.y61{bottom:789.585000px;}
.y18{bottom:790.305000px;}
.ybc{bottom:792.105000px;}
.y45{bottom:793.005000px;}
.y9a{bottom:793.545000px;}
.y148{bottom:795.165000px;}
.yfa{bottom:802.005000px;}
.yda{bottom:804.165000px;}
.y86{bottom:807.405000px;}
.y119{bottom:809.205000px;}
.yaa{bottom:809.385000px;}
.y17{bottom:812.805000px;}
.y60{bottom:814.245000px;}
.ybb{bottom:820.770000px;}
.y44{bottom:821.490000px;}
.y99{bottom:822.030000px;}
.y147{bottom:823.650000px;}
.yf9{bottom:830.490000px;}
.y85{bottom:836.250000px;}
.y118{bottom:837.690000px;}
.ya9{bottom:837.870000px;}
.yde{bottom:846.330000px;}
.y16{bottom:847.230000px;}
.y146{bottom:848.310000px;}
.yba{bottom:849.210000px;}
.y43{bottom:849.930000px;}
.y98{bottom:850.650000px;}
.y114{bottom:853.350000px;}
.yf8{bottom:858.930000px;}
.ya8{bottom:862.350000px;}
.y84{bottom:864.690000px;}
.y15{bottom:869.910000px;}
.yb9{bottom:873.690000px;}
.y97{bottom:875.130000px;}
.y42{bottom:878.370000px;}
.yf7{bottom:887.370000px;}
.ydd{bottom:888.630000px;}
.y83{bottom:889.170000px;}
.y117{bottom:895.650000px;}
.y14{bottom:904.290000px;}
.y41{bottom:906.990000px;}
.yf6{bottom:911.850000px;}
.y13{bottom:926.790000px;}
.yd8{bottom:930.750000px;}
.y40{bottom:935.430000px;}
.y116{bottom:937.770000px;}
.y12{bottom:961.170000px;}
.y161{bottom:963.510000px;}
.y3f{bottom:963.870000px;}
.yd5{bottom:972.870000px;}
.y113{bottom:979.890000px;}
.y11{bottom:983.310000px;}
.y3e{bottom:992.310000px;}
.y10{bottom:1011.750000px;}
.y3d{bottom:1020.750000px;}
.y112{bottom:1022.010000px;}
.y4{bottom:1032.810000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y2{bottom:1072.620000px;}
.y3b{bottom:1077.660000px;}
.y5f{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h1a{height:20.700000px;}
.h1b{height:20.736000px;}
.h21{height:23.940000px;}
.h20{height:27.180000px;}
.h1d{height:27.720000px;}
.h6{height:33.480000px;}
.h18{height:41.220000px;}
.hb{height:41.250937px;}
.h15{height:41.400000px;}
.h17{height:41.436000px;}
.h14{height:47.344922px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h11{height:58.121719px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h13{height:62.100000px;}
.h1e{height:62.136000px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h12{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h22{height:111.043849px;}
.hf{height:111.043854px;}
.h4{height:167.250000px;}
.h1f{height:167.760000px;}
.h19{height:167.790000px;}
.h1c{height:167.940000px;}
.h16{height:167.970000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w27{width:50.760000px;}
.wd{width:55.116000px;}
.w1e{width:59.400000px;}
.w16{width:59.760000px;}
.w2a{width:59.940000px;}
.w8{width:59.976000px;}
.w23{width:60.300000px;}
.w12{width:60.876000px;}
.wb{width:61.200000px;}
.w1b{width:67.536000px;}
.w19{width:71.280000px;}
.w24{width:71.820000px;}
.w1a{width:72.900000px;}
.w26{width:73.080000px;}
.w1c{width:73.440000px;}
.wc{width:73.620000px;}
.w11{width:73.980000px;}
.w17{width:75.780000px;}
.w9{width:76.140000px;}
.we{width:78.300000px;}
.w10{width:80.136000px;}
.w15{width:82.080000px;}
.w29{width:83.016000px;}
.w1f{width:84.780000px;}
.wf{width:93.600000px;}
.w1d{width:94.356000px;}
.w28{width:94.860000px;}
.w25{width:96.696000px;}
.w22{width:101.700000px;}
.w18{width:102.636000px;}
.w2c{width:105.696000px;}
.w20{width:107.280000px;}
.wa{width:110.016000px;}
.w14{width:113.976000px;}
.w21{width:114.156000px;}
.w13{width:120.420000px;}
.w2b{width:122.400000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x19{left:52.740000px;}
.x2{left:53.999986px;}
.x1d{left:55.260000px;}
.xd{left:80.999986px;}
.x1a{left:108.576000px;}
.x16{left:113.796000px;}
.x1e{left:116.856000px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x1b{left:187.770000px;}
.x17{left:190.650000px;}
.x26{left:196.230000px;}
.x29{left:221.070000px;}
.x10{left:232.589986px;}
.x1f{left:237.990000px;}
.x12{left:247.529986px;}
.x1c{left:282.270000px;}
.x27{left:291.315000px;}
.xe{left:301.574986px;}
.x13{left:333.254986px;}
.x2a{left:335.955000px;}
.x28{left:351.435000px;}
.x20{left:352.695000px;}
.x18{left:363.315000px;}
.xc{left:369.074986px;}
.x2b{left:435.314986px;}
.x21{left:480.525000px;}
.x8{left:482.144986px;}
.x2c{left:483.945000px;}
.x33{left:509.144986px;}
.x5{left:521.025000px;}
.x30{left:535.605000px;}
.x22{left:541.005000px;}
.x2d{left:544.965000px;}
.x23{left:617.505000px;}
.xf{left:630.644986px;}
.x31{left:664.485000px;}
.x14{left:694.049986px;}
.x2e{left:714.930000px;}
.x24{left:720.870000px;}
.x32{left:770.910000px;}
.x2f{left:789.270000px;}
.x25{left:792.870000px;}
.x11{left:863.429986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.244267pt;}
.ls10{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.lsf{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.406933pt;}
.lse{letter-spacing:6.031360pt;}
.lsb{letter-spacing:30.240000pt;}
.lsd{letter-spacing:35.471360pt;}
.ls8{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws8{word-spacing:-58.880000pt;}
.ws0{word-spacing:-53.120000pt;}
.wse{word-spacing:-25.766400pt;}
.ws7{word-spacing:-25.522133pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.486933pt;}
.wsc{word-spacing:-14.448533pt;}
.ws6{word-spacing:-12.390400pt;}
.ws5{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-1.802667pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._c{width:2.286933pt;}
._5{width:3.238400pt;}
._d{width:4.507307pt;}
._6{width:5.475840pt;}
._7{width:6.417920pt;}
._b{width:8.145067pt;}
._a{width:9.080320pt;}
._16{width:10.425600pt;}
._19{width:11.333547pt;}
._4{width:12.600320pt;}
._20{width:13.637547pt;}
._14{width:16.368640pt;}
._15{width:17.284267pt;}
._13{width:18.197760pt;}
._9{width:19.718827pt;}
._8{width:21.150720pt;}
._f{width:22.080000pt;}
._10{width:23.118080pt;}
._1b{width:24.203520pt;}
._25{width:25.377280pt;}
._24{width:26.378240pt;}
._22{width:27.909120pt;}
._1c{width:29.057280pt;}
._1d{width:30.182827pt;}
._26{width:31.181227pt;}
._2d{width:32.218027pt;}
._11{width:33.502720pt;}
._12{width:34.562560pt;}
._1a{width:35.740160pt;}
._21{width:37.248427pt;}
._2c{width:38.154240pt;}
._17{width:40.145920pt;}
._18{width:41.049173pt;}
._23{width:42.832213pt;}
._1e{width:43.865600pt;}
._1f{width:44.902827pt;}
._35{width:46.183253pt;}
._3{width:47.633920pt;}
._2e{width:49.105920pt;}
._2f{width:50.496427pt;}
._39{width:51.757227pt;}
._38{width:52.724053pt;}
._34{width:56.127573pt;}
._33{width:57.506987pt;}
._3c{width:59.531520pt;}
._3b{width:60.646400pt;}
._3f{width:63.246507pt;}
._30{width:64.307200pt;}
._28{width:65.280000pt;}
._2a{width:67.712000pt;}
._2b{width:69.250987pt;}
._31{width:73.912320pt;}
._36{width:75.955200pt;}
._37{width:77.110187pt;}
._32{width:89.792000pt;}
._27{width:121.057280pt;}
._3a{width:137.190400pt;}
._29{width:177.280000pt;}
._3d{width:202.017280pt;}
._3e{width:203.054507pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.ye7{bottom:8.640000pt;}
.y143{bottom:8.794667pt;}
.yd7{bottom:8.800000pt;}
.yf1{bottom:8.840000pt;}
.y8{bottom:9.600000pt;}
.y145{bottom:10.240000pt;}
.y141{bottom:11.680000pt;}
.y11e{bottom:11.840000pt;}
.y140{bottom:14.560000pt;}
.y11d{bottom:15.040000pt;}
.yd9{bottom:17.920000pt;}
.y10a{bottom:17.960000pt;}
.ydf{bottom:18.080000pt;}
.ye1{bottom:18.120000pt;}
.ya{bottom:18.560000pt;}
.ye6{bottom:27.040000pt;}
.y37{bottom:27.200000pt;}
.ye0{bottom:27.240000pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.yd6{bottom:45.600000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y34{bottom:70.272000pt;}
.y30{bottom:86.752000pt;}
.y71{bottom:96.512000pt;}
.yd4{bottom:96.672000pt;}
.y12c{bottom:97.152000pt;}
.y5d{bottom:97.632000pt;}
.y160{bottom:99.712000pt;}
.y144{bottom:107.232000pt;}
.y2f{bottom:112.032000pt;}
.y96{bottom:117.472000pt;}
.y130{bottom:121.120000pt;}
.yea{bottom:121.146667pt;}
.y10d{bottom:121.160000pt;}
.ydc{bottom:121.320000pt;}
.yd3{bottom:121.952000pt;}
.y70{bottom:122.112000pt;}
.y12b{bottom:122.432000pt;}
.y164{bottom:122.752000pt;}
.y5c{bottom:123.072000pt;}
.y15f{bottom:124.992000pt;}
.y111{bottom:126.912000pt;}
.y142{bottom:129.152000pt;}
.ya7{bottom:136.186667pt;}
.y2e{bottom:137.306667pt;}
.y12f{bottom:139.520000pt;}
.ye9{bottom:139.546667pt;}
.y10c{bottom:139.560000pt;}
.y115{bottom:139.680000pt;}
.ydb{bottom:139.720000pt;}
.y95{bottom:142.746667pt;}
.y6f{bottom:144.026667pt;}
.yd2{bottom:147.226667pt;}
.y12a{bottom:147.706667pt;}
.y5b{bottom:148.026667pt;}
.y13f{bottom:148.186667pt;}
.y5e{bottom:148.346667pt;}
.y15e{bottom:150.266667pt;}
.y110{bottom:152.186667pt;}
.ya6{bottom:161.466667pt;}
.y2d{bottom:162.586667pt;}
.y94{bottom:164.666667pt;}
.y10b{bottom:166.266667pt;}
.yd1{bottom:172.506667pt;}
.y129{bottom:172.986667pt;}
.y5a{bottom:173.626667pt;}
.y15d{bottom:175.546667pt;}
.y82{bottom:176.826667pt;}
.ya5{bottom:186.746667pt;}
.y2c{bottom:187.866667pt;}
.y13e{bottom:192.026667pt;}
.yb8{bottom:196.026667pt;}
.yd0{bottom:197.786667pt;}
.y128{bottom:198.266667pt;}
.y59{bottom:198.906667pt;}
.y15c{bottom:200.826667pt;}
.y81{bottom:202.106667pt;}
.yf5{bottom:203.066667pt;}
.y10f{bottom:203.706667pt;}
.ya4{bottom:212.186667pt;}
.y2b{bottom:213.146667pt;}
.yb7{bottom:221.306667pt;}
.ycf{bottom:223.386667pt;}
.y127{bottom:223.706667pt;}
.y58{bottom:224.186667pt;}
.y15b{bottom:226.106667pt;}
.y80{bottom:227.386667pt;}
.yf4{bottom:228.346667pt;}
.ya3{bottom:237.466667pt;}
.y2a{bottom:238.426667pt;}
.y10e{bottom:241.146667pt;}
.y13d{bottom:241.466667pt;}
.yf3{bottom:242.266667pt;}
.yb6{bottom:246.586667pt;}
.yce{bottom:248.666667pt;}
.y126{bottom:248.986667pt;}
.y57{bottom:249.466667pt;}
.y15a{bottom:251.386667pt;}
.y7f{bottom:252.666667pt;}
.yf2{bottom:261.306667pt;}
.ya2{bottom:262.746667pt;}
.y29{bottom:263.866667pt;}
.y13c{bottom:266.746667pt;}
.yb5{bottom:271.866667pt;}
.ycd{bottom:274.106667pt;}
.y125{bottom:274.266667pt;}
.y56{bottom:274.746667pt;}
.y159{bottom:276.666667pt;}
.y7e{bottom:278.106667pt;}
.y109{bottom:278.586667pt;}
.yf0{bottom:280.346667pt;}
.ya1{bottom:288.066667pt;}
.y28{bottom:288.866667pt;}
.y31{bottom:289.186667pt;}
.y13b{bottom:292.066667pt;}
.y124{bottom:296.226667pt;}
.yb4{bottom:297.186667pt;}
.ycc{bottom:299.426667pt;}
.y55{bottom:300.066667pt;}
.y158{bottom:302.146667pt;}
.y7d{bottom:303.426667pt;}
.y138{bottom:306.146667pt;}
.ya0{bottom:313.346667pt;}
.y108{bottom:316.066667pt;}
.y27{bottom:317.826667pt;}
.yef{bottom:318.466667pt;}
.yb3{bottom:322.466667pt;}
.ycb{bottom:324.706667pt;}
.y54{bottom:325.346667pt;}
.y157{bottom:327.106667pt;}
.y7c{bottom:328.706667pt;}
.y26{bottom:343.106667pt;}
.y13a{bottom:343.586667pt;}
.yb2{bottom:347.746667pt;}
.yca{bottom:349.986667pt;}
.y53{bottom:350.786667pt;}
.y156{bottom:352.706667pt;}
.y7b{bottom:353.986667pt;}
.yee{bottom:368.066667pt;}
.y25{bottom:368.386667pt;}
.y6e{bottom:368.706667pt;}
.yb1{bottom:369.506667pt;}
.yc9{bottom:375.266667pt;}
.y52{bottom:376.066667pt;}
.y155{bottom:377.986667pt;}
.y7a{bottom:379.266667pt;}
.y139{bottom:381.026667pt;}
.y107{bottom:383.906667pt;}
.y93{bottom:389.186667pt;}
.yed{bottom:393.346667pt;}
.y24{bottom:393.666667pt;}
.y6d{bottom:393.986667pt;}
.yc8{bottom:400.546667pt;}
.y51{bottom:401.346667pt;}
.y154{bottom:403.266667pt;}
.y79{bottom:404.546667pt;}
.y106{bottom:409.186667pt;}
.y92{bottom:414.466667pt;}
.y137{bottom:418.466667pt;}
.yec{bottom:418.626667pt;}
.y23{bottom:418.946667pt;}
.y6c{bottom:419.426667pt;}
.yc7{bottom:425.826667pt;}
.y50{bottom:426.626667pt;}
.y153{bottom:428.546667pt;}
.y78{bottom:429.826667pt;}
.ye8{bottom:432.546667pt;}
.y105{bottom:434.626667pt;}
.y91{bottom:439.746667pt;}
.y22{bottom:444.226667pt;}
.y6b{bottom:444.706667pt;}
.yc6{bottom:451.106667pt;}
.y4f{bottom:451.906667pt;}
.y152{bottom:453.826667pt;}
.y77{bottom:455.106667pt;}
.y9f{bottom:455.586667pt;}
.y136{bottom:455.906667pt;}
.y104{bottom:459.906667pt;}
.y90{bottom:465.026667pt;}
.y21{bottom:469.506667pt;}
.y6a{bottom:469.986667pt;}
.yc5{bottom:476.386667pt;}
.y4e{bottom:477.186667pt;}
.y9e{bottom:477.346667pt;}
.y151{bottom:479.106667pt;}
.y76{bottom:480.066667pt;}
.y103{bottom:485.186667pt;}
.y8f{bottom:490.306667pt;}
.y20{bottom:494.786667pt;}
.y69{bottom:495.266667pt;}
.yc4{bottom:501.826667pt;}
.y4d{bottom:502.466667pt;}
.y123{bottom:504.226667pt;}
.y150{bottom:504.386667pt;}
.y75{bottom:505.533333pt;}
.yeb{bottom:507.453333pt;}
.y102{bottom:510.493333pt;}
.y8e{bottom:515.613333pt;}
.y1f{bottom:520.093333pt;}
.y68{bottom:520.253333pt;}
.y135{bottom:523.773333pt;}
.yc3{bottom:527.133333pt;}
.y4c{bottom:527.773333pt;}
.y122{bottom:529.533333pt;}
.y14f{bottom:529.853333pt;}
.y74{bottom:531.133333pt;}
.y101{bottom:535.773333pt;}
.y8d{bottom:540.893333pt;}
.y121{bottom:543.453333pt;}
.ye5{bottom:545.053333pt;}
.y1e{bottom:545.533333pt;}
.y67{bottom:545.853333pt;}
.y134{bottom:549.053333pt;}
.yc2{bottom:552.413333pt;}
.y4b{bottom:553.053333pt;}
.y14e{bottom:555.133333pt;}
.y73{bottom:556.413333pt;}
.y100{bottom:561.053333pt;}
.y8c{bottom:566.173333pt;}
.yb0{bottom:567.613333pt;}
.y120{bottom:568.733333pt;}
.y1d{bottom:570.813333pt;}
.y66{bottom:571.293333pt;}
.y133{bottom:574.493333pt;}
.yc1{bottom:577.693333pt;}
.y72{bottom:578.173333pt;}
.y4a{bottom:578.493333pt;}
.y14d{bottom:580.413333pt;}
.ye4{bottom:582.493333pt;}
.yff{bottom:586.333333pt;}
.y12e{bottom:588.413333pt;}
.y8b{bottom:591.613333pt;}
.yaf{bottom:592.893333pt;}
.y11f{bottom:594.013333pt;}
.y1c{bottom:596.093333pt;}
.y65{bottom:597.533333pt;}
.yc0{bottom:602.973333pt;}
.y49{bottom:603.773333pt;}
.y14c{bottom:605.693333pt;}
.yfe{bottom:611.613333pt;}
.y8a{bottom:616.893333pt;}
.yae{bottom:618.333333pt;}
.y11c{bottom:619.293333pt;}
.y1b{bottom:621.373333pt;}
.y64{bottom:622.973333pt;}
.y132{bottom:625.853333pt;}
.ybf{bottom:628.253333pt;}
.y163{bottom:628.733333pt;}
.y48{bottom:629.053333pt;}
.y9d{bottom:629.533333pt;}
.y14b{bottom:630.973333pt;}
.yfd{bottom:636.893333pt;}
.y89{bottom:642.173333pt;}
.yad{bottom:643.613333pt;}
.y11b{bottom:644.573333pt;}
.y63{bottom:649.213333pt;}
.ye3{bottom:650.333333pt;}
.y1a{bottom:651.933333pt;}
.ybe{bottom:653.533333pt;}
.y162{bottom:654.013333pt;}
.y47{bottom:654.333333pt;}
.y9c{bottom:654.813333pt;}
.y14a{bottom:656.253333pt;}
.yfc{bottom:662.333333pt;}
.y131{bottom:663.293333pt;}
.y88{bottom:667.453333pt;}
.yac{bottom:668.893333pt;}
.y19{bottom:671.933333pt;}
.y62{bottom:675.613333pt;}
.ybd{bottom:678.813333pt;}
.y46{bottom:679.613333pt;}
.y9b{bottom:680.093333pt;}
.y149{bottom:681.533333pt;}
.yfb{bottom:687.613333pt;}
.y87{bottom:692.413333pt;}
.y11a{bottom:694.013333pt;}
.yab{bottom:694.173333pt;}
.y12d{bottom:700.733333pt;}
.ye2{bottom:700.893333pt;}
.y61{bottom:701.853333pt;}
.y18{bottom:702.493333pt;}
.ybc{bottom:704.093333pt;}
.y45{bottom:704.893333pt;}
.y9a{bottom:705.373333pt;}
.y148{bottom:706.813333pt;}
.yfa{bottom:712.893333pt;}
.yda{bottom:714.813333pt;}
.y86{bottom:717.693333pt;}
.y119{bottom:719.293333pt;}
.yaa{bottom:719.453333pt;}
.y17{bottom:722.493333pt;}
.y60{bottom:723.773333pt;}
.ybb{bottom:729.573333pt;}
.y44{bottom:730.213333pt;}
.y99{bottom:730.693333pt;}
.y147{bottom:732.133333pt;}
.yf9{bottom:738.213333pt;}
.y85{bottom:743.333333pt;}
.y118{bottom:744.613333pt;}
.ya9{bottom:744.773333pt;}
.yde{bottom:752.293333pt;}
.y16{bottom:753.093333pt;}
.y146{bottom:754.053333pt;}
.yba{bottom:754.853333pt;}
.y43{bottom:755.493333pt;}
.y98{bottom:756.133333pt;}
.y114{bottom:758.533333pt;}
.yf8{bottom:763.493333pt;}
.ya8{bottom:766.533333pt;}
.y84{bottom:768.613333pt;}
.y15{bottom:773.253333pt;}
.yb9{bottom:776.613333pt;}
.y97{bottom:777.893333pt;}
.y42{bottom:780.773333pt;}
.yf7{bottom:788.773333pt;}
.ydd{bottom:789.893333pt;}
.y83{bottom:790.373333pt;}
.y117{bottom:796.133333pt;}
.y14{bottom:803.813333pt;}
.y41{bottom:806.213333pt;}
.yf6{bottom:810.533333pt;}
.y13{bottom:823.813333pt;}
.yd8{bottom:827.333333pt;}
.y40{bottom:831.493333pt;}
.y116{bottom:833.573333pt;}
.y12{bottom:854.373333pt;}
.y161{bottom:856.453333pt;}
.y3f{bottom:856.773333pt;}
.yd5{bottom:864.773333pt;}
.y113{bottom:871.013333pt;}
.y11{bottom:874.053333pt;}
.y3e{bottom:882.053333pt;}
.y10{bottom:899.333333pt;}
.y3d{bottom:907.333333pt;}
.y112{bottom:908.453333pt;}
.y4{bottom:918.053333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y2{bottom:953.440000pt;}
.y3b{bottom:957.920000pt;}
.y5f{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h1a{height:18.400000pt;}
.h1b{height:18.432000pt;}
.h21{height:21.280000pt;}
.h20{height:24.160000pt;}
.h1d{height:24.640000pt;}
.h6{height:29.760000pt;}
.h18{height:36.640000pt;}
.hb{height:36.667500pt;}
.h15{height:36.800000pt;}
.h17{height:36.832000pt;}
.h14{height:42.084375pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h11{height:51.663750pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h13{height:55.200000pt;}
.h1e{height:55.232000pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h12{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h22{height:98.705643pt;}
.hf{height:98.705648pt;}
.h4{height:148.666667pt;}
.h1f{height:149.120000pt;}
.h19{height:149.146667pt;}
.h1c{height:149.280000pt;}
.h16{height:149.306667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w27{width:45.120000pt;}
.wd{width:48.992000pt;}
.w1e{width:52.800000pt;}
.w16{width:53.120000pt;}
.w2a{width:53.280000pt;}
.w8{width:53.312000pt;}
.w23{width:53.600000pt;}
.w12{width:54.112000pt;}
.wb{width:54.400000pt;}
.w1b{width:60.032000pt;}
.w19{width:63.360000pt;}
.w24{width:63.840000pt;}
.w1a{width:64.800000pt;}
.w26{width:64.960000pt;}
.w1c{width:65.280000pt;}
.wc{width:65.440000pt;}
.w11{width:65.760000pt;}
.w17{width:67.360000pt;}
.w9{width:67.680000pt;}
.we{width:69.600000pt;}
.w10{width:71.232000pt;}
.w15{width:72.960000pt;}
.w29{width:73.792000pt;}
.w1f{width:75.360000pt;}
.wf{width:83.200000pt;}
.w1d{width:83.872000pt;}
.w28{width:84.320000pt;}
.w25{width:85.952000pt;}
.w22{width:90.400000pt;}
.w18{width:91.232000pt;}
.w2c{width:93.952000pt;}
.w20{width:95.360000pt;}
.wa{width:97.792000pt;}
.w14{width:101.312000pt;}
.w21{width:101.472000pt;}
.w13{width:107.040000pt;}
.w2b{width:108.800000pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x19{left:46.880000pt;}
.x2{left:47.999988pt;}
.x1d{left:49.120000pt;}
.xd{left:71.999988pt;}
.x1a{left:96.512000pt;}
.x16{left:101.152000pt;}
.x1e{left:103.872000pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x1b{left:166.906667pt;}
.x17{left:169.466667pt;}
.x26{left:174.426667pt;}
.x29{left:196.506667pt;}
.x10{left:206.746655pt;}
.x1f{left:211.546667pt;}
.x12{left:220.026655pt;}
.x1c{left:250.906667pt;}
.x27{left:258.946667pt;}
.xe{left:268.066655pt;}
.x13{left:296.226655pt;}
.x2a{left:298.626667pt;}
.x28{left:312.386667pt;}
.x20{left:313.506667pt;}
.x18{left:322.946667pt;}
.xc{left:328.066655pt;}
.x2b{left:386.946655pt;}
.x21{left:427.133333pt;}
.x8{left:428.573321pt;}
.x2c{left:430.173333pt;}
.x33{left:452.573321pt;}
.x5{left:463.133333pt;}
.x30{left:476.093333pt;}
.x22{left:480.893333pt;}
.x2d{left:484.413333pt;}
.x23{left:548.893333pt;}
.xf{left:560.573321pt;}
.x31{left:590.653333pt;}
.x14{left:616.933321pt;}
.x2e{left:635.493333pt;}
.x24{left:640.773333pt;}
.x32{left:685.253333pt;}
.x2f{left:701.573333pt;}
.x25{left:704.773333pt;}
.x11{left:767.493321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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