
    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_a7b071a8b7c54a9f6ca8f9c7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8a4ae89d33183fc43a6f5e50.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_011d9bfb66885295ecde69e5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4f5124506a126abec19f1576.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_3be2adbd652032cec8c84f24.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_7641661769bf9d91f1ba2b58.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_10d3aee6efbf5dbd310de311.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_85cd82324eb4e27a934b604a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7c5fee4ec4b7ed275f047e69.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.930000px;}
.ls19{letter-spacing:-0.852000px;}
.lsc{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.463800px;}
.lsd{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.195600px;}
.ls4{letter-spacing:-0.187200px;}
.ls15{letter-spacing:-0.132600px;}
.ls5{letter-spacing:-0.097800px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls1a{letter-spacing:0.086400px;}
.ls11{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.149760px;}
.ls12{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.532800px;}
.ls0{letter-spacing:0.622080px;}
.ls13{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.732000px;}
.lse{letter-spacing:1.008000px;}
.lsf{letter-spacing:3.888000px;}
.ls10{letter-spacing:15.408000px;}
.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;}
}
.ws9{word-spacing:-16.488000px;}
.ws3{word-spacing:-16.272000px;}
.ws8{word-spacing:-16.056000px;}
.ws6{word-spacing:-15.226440px;}
.wsc{word-spacing:-15.056640px;}
.ws4{word-spacing:-14.970240px;}
.wsa{word-spacing:-14.837640px;}
.wsb{word-spacing:-14.774640px;}
.ws5{word-spacing:-14.506440px;}
.ws1{word-spacing:-13.879200px;}
.ws2{word-spacing:-13.160160px;}
.ws0{word-spacing:-13.049400px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-1.288320px;}
._0{width:1.075680px;}
._1{width:2.372400px;}
._d{width:3.684960px;}
._9{width:5.263680px;}
._4{width:6.976320px;}
._3{width:8.280000px;}
._13{width:9.796320px;}
._11{width:10.872000px;}
._8{width:12.096000px;}
._c{width:13.680000px;}
._12{width:15.176640px;}
._f{width:16.732800px;}
._e{width:17.748720px;}
._14{width:18.756720px;}
._7{width:19.872000px;}
._16{width:21.528000px;}
._17{width:23.112000px;}
._b{width:24.480000px;}
._a{width:25.488000px;}
._10{width:26.568000px;}
._18{width:28.440000px;}
._1d{width:29.736000px;}
._1e{width:30.833280px;}
._21{width:32.134080px;}
._1a{width:33.232320px;}
._6{width:34.272000px;}
._5{width:35.424000px;}
._1c{width:36.512640px;}
._1b{width:37.584000px;}
._15{width:38.664000px;}
._19{width:39.816000px;}
._24{width:41.237760px;}
._23{width:43.019520px;}
._20{width:52.200000px;}
._1f{width:53.280000px;}
._22{width:59.880960px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:4.845000px;}
.y8a{bottom:4.860000px;}
.y9e{bottom:5.025000px;}
.y90{bottom:5.040000px;}
.y2{bottom:7.380000px;}
.ya3{bottom:26.805000px;}
.y8c{bottom:26.820000px;}
.y8f{bottom:27.000000px;}
.y9d{bottom:27.030000px;}
.ya2{bottom:48.765000px;}
.y94{bottom:48.780000px;}
.y5{bottom:56.196000px;}
.y4{bottom:73.836000px;}
.y3a{bottom:110.196000px;}
.y39{bottom:117.756000px;}
.y19f{bottom:118.116000px;}
.yf4{bottom:118.656000px;}
.yd9{bottom:120.096000px;}
.y145{bottom:120.996000px;}
.y38{bottom:128.556000px;}
.y81{bottom:133.596000px;}
.y12d{bottom:135.936000px;}
.yc3{bottom:136.116000px;}
.y19e{bottom:141.516000px;}
.y5f{bottom:142.776000px;}
.y144{bottom:142.956000px;}
.y11d{bottom:144.756000px;}
.y165{bottom:145.836000px;}
.y37{bottom:146.916000px;}
.yf3{bottom:147.096000px;}
.ya4{bottom:148.176000px;}
.yd8{bottom:148.536000px;}
.y36{bottom:154.470000px;}
.y12c{bottom:158.070000px;}
.y80{bottom:162.210000px;}
.y158{bottom:163.470000px;}
.y143{bottom:164.910000px;}
.y35{bottom:165.090000px;}
.ya1{bottom:166.005000px;}
.y164{bottom:169.050000px;}
.y185{bottom:171.210000px;}
.y5e{bottom:171.390000px;}
.yc2{bottom:172.650000px;}
.y11c{bottom:173.550000px;}
.yf2{bottom:175.710000px;}
.y132{bottom:176.970000px;}
.yd7{bottom:177.150000px;}
.y19d{bottom:179.490000px;}
.y12b{bottom:180.030000px;}
.y34{bottom:183.450000px;}
.yc1{bottom:183.810000px;}
.y142{bottom:186.870000px;}
.y101{bottom:190.650000px;}
.y157{bottom:192.270000px;}
.y184{bottom:194.610000px;}
.y5d{bottom:199.830000px;}
.y33{bottom:201.810000px;}
.y12a{bottom:201.990000px;}
.y11b{bottom:202.170000px;}
.yf1{bottom:204.330000px;}
.y7f{bottom:205.590000px;}
.y130{bottom:205.770000px;}
.y163{bottom:207.030000px;}
.y1b2{bottom:208.290000px;}
.y141{bottom:208.830000px;}
.y19c{bottom:217.650000px;}
.y100{bottom:219.270000px;}
.y32{bottom:220.170000px;}
.yd6{bottom:220.530000px;}
.y156{bottom:220.710000px;}
.y1b1{bottom:222.870000px;}
.y129{bottom:223.950000px;}
.y31{bottom:227.730000px;}
.y5c{bottom:228.450000px;}
.y162{bottom:230.430000px;}
.y11a{bottom:230.610000px;}
.y140{bottom:230.790000px;}
.y183{bottom:232.590000px;}
.y9f{bottom:232.605000px;}
.yfc{bottom:232.950000px;}
.y7e{bottom:234.390000px;}
.y30{bottom:238.890000px;}
.y19b{bottom:240.870000px;}
.y1b0{bottom:243.030000px;}
.y128{bottom:245.910000px;}
.yf0{bottom:247.710000px;}
.yff{bottom:247.890000px;}
.yd5{bottom:249.330000px;}
.y13f{bottom:252.930000px;}
.y9c{bottom:255.285000px;}
.y182{bottom:255.990000px;}
.y5b{bottom:257.070000px;}
.y119{bottom:259.230000px;}
.yc0{bottom:261.210000px;}
.y139{bottom:261.390000px;}
.y7d{bottom:262.830000px;}
.y1af{bottom:263.190000px;}
.y127{bottom:267.870000px;}
.y161{bottom:268.410000px;}
.y13e{bottom:274.935000px;}
.yfb{bottom:276.375000px;}
.yef{bottom:276.555000px;}
.yd4{bottom:277.995000px;}
.y19a{bottom:278.895000px;}
.y181{bottom:279.075000px;}
.y2f{bottom:280.335000px;}
.y1ae{bottom:283.395000px;}
.y118{bottom:287.895000px;}
.y126{bottom:289.875000px;}
.ybf{bottom:290.055000px;}
.y7c{bottom:291.495000px;}
.y9b{bottom:300.135000px;}
.y5a{bottom:300.495000px;}
.y2e{bottom:302.295000px;}
.y1ad{bottom:303.375000px;}
.yee{bottom:304.995000px;}
.yd3{bottom:306.435000px;}
.y160{bottom:306.615000px;}
.y117{bottom:316.335000px;}
.y180{bottom:317.235000px;}
.y13d{bottom:318.495000px;}
.ybe{bottom:318.675000px;}
.yfe{bottom:319.935000px;}
.y7b{bottom:320.115000px;}
.y9a{bottom:322.815000px;}
.y1ac{bottom:323.535000px;}
.y2d{bottom:324.255000px;}
.y59{bottom:329.115000px;}
.y15f{bottom:330.015000px;}
.y125{bottom:333.435000px;}
.yed{bottom:333.615000px;}
.y12f{bottom:334.875000px;}
.yd2{bottom:335.055000px;}
.y199{bottom:340.275000px;}
.y17f{bottom:340.455000px;}
.y116{bottom:344.955000px;}
.y2c{bottom:345.855000px;}
.ybd{bottom:347.115000px;}
.y7a{bottom:348.555000px;}
.y58{bottom:357.735000px;}
.y138{bottom:362.055000px;}
.yec{bottom:362.235000px;}
.yd1{bottom:363.675000px;}
.y2b{bottom:366.915000px;}
.y99{bottom:367.455000px;}
.y15e{bottom:367.995000px;}
.y1ab{bottom:371.775000px;}
.ybc{bottom:375.735000px;}
.y79{bottom:377.175000px;}
.y155{bottom:378.435000px;}
.y57{bottom:386.355000px;}
.y115{bottom:388.335000px;}
.y2a{bottom:388.515000px;}
.y98{bottom:390.315000px;}
.y13c{bottom:390.495000px;}
.yeb{bottom:390.675000px;}
.y15d{bottom:391.215000px;}
.yd0{bottom:392.115000px;}
.y198{bottom:401.655000px;}
.y17e{bottom:401.835000px;}
.ybb{bottom:404.355000px;}
.y78{bottom:405.795000px;}
.y154{bottom:407.235000px;}
.y29{bottom:409.575000px;}
.y1aa{bottom:409.755000px;}
.y97{bottom:412.995000px;}
.y56{bottom:414.795000px;}
.y114{bottom:417.135000px;}
.y124{bottom:419.295000px;}
.y131{bottom:420.555000px;}
.ycf{bottom:420.735000px;}
.y197{bottom:425.055000px;}
.y15c{bottom:429.195000px;}
.y28{bottom:431.535000px;}
.yba{bottom:432.795000px;}
.yea{bottom:434.055000px;}
.y77{bottom:434.235000px;}
.y96{bottom:435.675000px;}
.y153{bottom:435.855000px;}
.y17d{bottom:439.815000px;}
.y55{bottom:443.415000px;}
.y113{bottom:445.755000px;}
.y123{bottom:447.915000px;}
.y196{bottom:448.095000px;}
.yce{bottom:449.355000px;}
.y15b{bottom:452.595000px;}
.y27{bottom:453.675000px;}
.y95{bottom:458.355000px;}
.yb9{bottom:461.415000px;}
.ye9{bottom:462.855000px;}
.y17c{bottom:463.215000px;}
.y152{bottom:464.295000px;}
.y195{bottom:471.315000px;}
.y54{bottom:472.035000px;}
.y112{bottom:474.195000px;}
.y26{bottom:475.635000px;}
.y122{bottom:476.355000px;}
.y76{bottom:477.615000px;}
.ycd{bottom:477.795000px;}
.y1a9{bottom:486.075000px;}
.y15a{bottom:491.295000px;}
.ye8{bottom:491.475000px;}
.y151{bottom:492.915000px;}
.y194{bottom:494.535000px;}
.y25{bottom:497.595000px;}
.y53{bottom:500.655000px;}
.y17b{bottom:501.195000px;}
.y111{bottom:502.815000px;}
.y93{bottom:503.175000px;}
.yb8{bottom:504.795000px;}
.y137{bottom:504.975000px;}
.ycc{bottom:506.415000px;}
.y24{bottom:519.555000px;}
.y121{bottom:519.735000px;}
.ye7{bottom:519.915000px;}
.y75{bottom:521.175000px;}
.y1a8{bottom:524.235000px;}
.y17a{bottom:524.415000px;}
.y52{bottom:529.095000px;}
.y193{bottom:532.515000px;}
.yb7{bottom:533.595000px;}
.y159{bottom:534.855000px;}
.ycb{bottom:535.035000px;}
.y150{bottom:536.295000px;}
.y23{bottom:541.515000px;}
.y110{bottom:546.195000px;}
.y136{bottom:548.355000px;}
.ye6{bottom:548.535000px;}
.y74{bottom:549.975000px;}
.y192{bottom:555.765000px;}
.yb6{bottom:562.065000px;}
.y179{bottom:562.425000px;}
.y22{bottom:563.145000px;}
.y120{bottom:563.325000px;}
.yca{bottom:563.505000px;}
.y14f{bottom:565.125000px;}
.y92{bottom:569.805000px;}
.y51{bottom:572.505000px;}
.y10f{bottom:575.025000px;}
.ye5{bottom:577.185000px;}
.y73{bottom:578.625000px;}
.y21{bottom:584.205000px;}
.yb5{bottom:590.685000px;}
.yfa{bottom:591.945000px;}
.yc9{bottom:592.125000px;}
.y91{bottom:592.485000px;}
.y14e{bottom:593.565000px;}
.y191{bottom:593.745000px;}
.y178{bottom:600.585000px;}
.y50{bottom:601.305000px;}
.y10e{bottom:603.465000px;}
.y20{bottom:605.805000px;}
.y72{bottom:607.065000px;}
.y190{bottom:617.145000px;}
.yb4{bottom:619.305000px;}
.yc8{bottom:620.745000px;}
.y14d{bottom:622.185000px;}
.y177{bottom:623.985000px;}
.y1f{bottom:626.865000px;}
.y4f{bottom:629.925000px;}
.y10d{bottom:632.085000px;}
.y13b{bottom:634.065000px;}
.ye4{bottom:634.245000px;}
.y12e{bottom:635.505000px;}
.y71{bottom:635.685000px;}
.y8e{bottom:637.125000px;}
.yb3{bottom:647.925000px;}
.y1e{bottom:648.825000px;}
.yf9{bottom:649.365000px;}
.y18f{bottom:655.125000px;}
.y4e{bottom:658.365000px;}
.y10c{bottom:660.705000px;}
.y176{bottom:661.965000px;}
.y14c{bottom:662.325000px;}
.ye3{bottom:662.865000px;}
.yc7{bottom:664.125000px;}
.y70{bottom:664.305000px;}
.y1d{bottom:670.785000px;}
.yf8{bottom:677.805000px;}
.y8d{bottom:681.945000px;}
.y175{bottom:685.365000px;}
.y4d{bottom:686.985000px;}
.y14b{bottom:687.525000px;}
.y10b{bottom:689.145000px;}
.yb2{bottom:691.305000px;}
.ye2{bottom:691.485000px;}
.y1c{bottom:692.745000px;}
.y6f{bottom:692.925000px;}
.y18e{bottom:693.285000px;}
.y1a7{bottom:700.125000px;}
.yf7{bottom:706.425000px;}
.y14a{bottom:712.905000px;}
.y1b{bottom:714.705000px;}
.y4c{bottom:715.605000px;}
.yb1{bottom:719.925000px;}
.y11f{bottom:721.185000px;}
.y6e{bottom:721.365000px;}
.y174{bottom:723.345000px;}
.y1a6{bottom:723.525000px;}
.y8b{bottom:726.585000px;}
.y10a{bottom:729.285000px;}
.y18d{bottom:731.445000px;}
.ye1{bottom:734.865000px;}
.yf6{bottom:735.045000px;}
.y1a{bottom:736.665000px;}
.y149{bottom:738.105000px;}
.y4b{bottom:744.045000px;}
.y173{bottom:746.565000px;}
.yb0{bottom:748.545000px;}
.y6d{bottom:749.985000px;}
.y109{bottom:754.485000px;}
.y18c{bottom:754.845000px;}
.y19{bottom:758.625000px;}
.y13a{bottom:763.305000px;}
.ye0{bottom:763.485000px;}
.y89{bottom:771.225000px;}
.y4a{bottom:772.665000px;}
.yaf{bottom:777.165000px;}
.yfd{bottom:778.425000px;}
.y6c{bottom:778.605000px;}
.y108{bottom:779.865000px;}
.y18{bottom:780.585000px;}
.y172{bottom:784.545000px;}
.ydf{bottom:792.105000px;}
.y18b{bottom:792.825000px;}
.y17{bottom:802.545000px;}
.y107{bottom:805.065000px;}
.yae{bottom:805.605000px;}
.yf5{bottom:806.865000px;}
.y6b{bottom:807.045000px;}
.y171{bottom:807.945000px;}
.y49{bottom:816.045000px;}
.y88{bottom:820.545000px;}
.yde{bottom:820.725000px;}
.y16{bottom:824.325000px;}
.y106{bottom:830.445000px;}
.y18a{bottom:830.985000px;}
.y170{bottom:831.165000px;}
.yad{bottom:834.225000px;}
.y6a{bottom:835.665000px;}
.y15{bottom:844.530000px;}
.y1a5{bottom:845.970000px;}
.ydd{bottom:849.210000px;}
.y48{bottom:852.450000px;}
.y189{bottom:854.250000px;}
.y105{bottom:855.690000px;}
.yac{bottom:862.890000px;}
.y87{bottom:864.150000px;}
.y69{bottom:864.330000px;}
.y14{bottom:864.870000px;}
.y16f{bottom:869.190000px;}
.y1a4{bottom:869.370000px;}
.y47{bottom:873.690000px;}
.ydc{bottom:877.830000px;}
.y148{bottom:879.090000px;}
.y104{bottom:880.890000px;}
.y12{bottom:886.830000px;}
.yab{bottom:891.330000px;}
.y188{bottom:892.230000px;}
.y16e{bottom:892.410000px;}
.y68{bottom:892.770000px;}
.y13{bottom:895.110000px;}
.y46{bottom:895.830000px;}
.y103{bottom:906.270000px;}
.ydb{bottom:906.450000px;}
.y1a3{bottom:907.350000px;}
.y147{bottom:907.890000px;}
.y11{bottom:908.790000px;}
.y187{bottom:915.630000px;}
.y45{bottom:917.790000px;}
.yaa{bottom:919.950000px;}
.y67{bottom:921.390000px;}
.y16d{bottom:930.390000px;}
.y1a2{bottom:930.570000px;}
.yf{bottom:930.930000px;}
.y135{bottom:934.890000px;}
.yc6{bottom:936.150000px;}
.y146{bottom:936.330000px;}
.y10{bottom:939.210000px;}
.y44{bottom:939.750000px;}
.yda{bottom:949.830000px;}
.y66{bottom:950.010000px;}
.ye{bottom:952.890000px;}
.y186{bottom:953.610000px;}
.y16c{bottom:953.790000px;}
.y43{bottom:961.710000px;}
.ya9{bottom:963.330000px;}
.y11e{bottom:964.770000px;}
.yc5{bottom:964.950000px;}
.y1a1{bottom:968.550000px;}
.yc{bottom:974.850000px;}
.y134{bottom:978.270000px;}
.y65{bottom:978.450000px;}
.yd{bottom:983.130000px;}
.y42{bottom:983.670000px;}
.y16b{bottom:991.770000px;}
.y1a0{bottom:991.950000px;}
.y86{bottom:993.390000px;}
.yc4{bottom:993.570000px;}
.yb{bottom:996.450000px;}
.y41{bottom:1005.270000px;}
.ya8{bottom:1006.890000px;}
.y64{bottom:1007.070000px;}
.y16a{bottom:1015.170000px;}
.ya{bottom:1018.050000px;}
.y133{bottom:1021.830000px;}
.y85{bottom:1022.010000px;}
.y40{bottom:1026.330000px;}
.y63{bottom:1035.690000px;}
.y9{bottom:1046.130000px;}
.y3f{bottom:1048.290000px;}
.ya6{bottom:1050.450000px;}
.y84{bottom:1050.630000px;}
.y169{bottom:1053.150000px;}
.ya7{bottom:1058.730000px;}
.y62{bottom:1064.310000px;}
.y3e{bottom:1070.250000px;}
.y8{bottom:1074.390000px;}
.y168{bottom:1076.550000px;}
.y102{bottom:1079.070000px;}
.y83{bottom:1079.250000px;}
.ya5{bottom:1087.530000px;}
.y3d{bottom:1092.210000px;}
.y7{bottom:1102.470000px;}
.y61{bottom:1107.690000px;}
.y82{bottom:1107.870000px;}
.y3c{bottom:1114.170000px;}
.y167{bottom:1114.530000px;}
.y6{bottom:1130.580000px;}
.y3b{bottom:1136.160000px;}
.y60{bottom:1136.340000px;}
.y166{bottom:1137.780000px;}
.y3{bottom:1157.760000px;}
.y1{bottom:1182.780000px;}
.h2{height:21.600000px;}
.h15{height:21.945000px;}
.h10{height:21.960000px;}
.hd{height:34.001016px;}
.h1b{height:36.519609px;}
.h18{height:36.839531px;}
.ha{height:42.186445px;}
.h14{height:43.905000px;}
.h11{height:43.920000px;}
.h12{height:44.100000px;}
.h16{height:44.121000px;}
.h3{height:51.998203px;}
.he{height:52.260820px;}
.h4{height:52.465078px;}
.h1a{height:54.628594px;}
.h19{height:54.984375px;}
.hc{height:57.927656px;}
.hb{height:59.378906px;}
.hf{height:61.423863px;}
.h8{height:62.964844px;}
.h17{height:65.865000px;}
.h13{height:65.910000px;}
.h5{height:74.004654px;}
.h7{height:83.322422px;}
.h6{height:84.070547px;}
.h9{height:1262.877945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:85.125000px;}
.w6{width:239.779500px;}
.w7{width:439.275000px;}
.w2{width:609.030000px;}
.w5{width:679.770000px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.840000px;}
.x2a{left:12.240000px;}
.x31{left:22.309500px;}
.x30{left:25.549500px;}
.x37{left:28.609500px;}
.x2d{left:39.769500px;}
.x24{left:41.749500px;}
.x22{left:42.829500px;}
.x33{left:46.603500px;}
.x25{left:47.863500px;}
.x1e{left:51.103500px;}
.x3c{left:53.640000px;}
.x2{left:58.843500px;}
.x29{left:63.703500px;}
.x1d{left:70.723500px;}
.x3a{left:77.040000px;}
.x34{left:80.460000px;}
.x35{left:83.323500px;}
.x3b{left:87.823500px;}
.x27{left:90.000000px;}
.x2c{left:93.420000px;}
.x26{left:96.300000px;}
.x1{left:97.786500px;}
.x2f{left:104.040000px;}
.x5{left:106.416000px;}
.xb{left:111.096000px;}
.x38{left:112.680000px;}
.x20{left:116.100000px;}
.x18{left:127.116000px;}
.x7{left:135.936000px;}
.x23{left:145.440000px;}
.x36{left:149.580000px;}
.x2e{left:153.030000px;}
.x32{left:155.010000px;}
.xa{left:156.450000px;}
.x8{left:158.430000px;}
.x21{left:159.690000px;}
.x39{left:167.610000px;}
.x2b{left:173.190000px;}
.x1c{left:262.468500px;}
.x15{left:272.730000px;}
.x19{left:278.310000px;}
.x28{left:283.528500px;}
.x1b{left:305.535000px;}
.x9{left:312.915000px;}
.x1a{left:322.455000px;}
.x14{left:338.655000px;}
.x1f{left:347.295000px;}
.x45{left:351.075000px;}
.x10{left:359.535000px;}
.x3f{left:367.633125px;}
.x40{left:373.755000px;}
.x11{left:379.515000px;}
.xd{left:399.855000px;}
.xc{left:446.655000px;}
.xe{left:487.333125px;}
.xf{left:493.455000px;}
.x12{left:507.703125px;}
.x13{left:513.825000px;}
.x16{left:533.983125px;}
.x17{left:540.105000px;}
.x41{left:552.163125px;}
.x42{left:558.285000px;}
.x43{left:618.943125px;}
.x44{left:625.065000px;}
.x3{left:710.250000px;}
.x3d{left:776.308125px;}
.x3e{left:782.430000px;}
.x6{left:786.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.826667pt;}
.ls19{letter-spacing:-0.757333pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.412267pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.173867pt;}
.ls4{letter-spacing:-0.166400pt;}
.ls15{letter-spacing:-0.117867pt;}
.ls5{letter-spacing:-0.086933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls1a{letter-spacing:0.076800pt;}
.ls11{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.133120pt;}
.ls12{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.473600pt;}
.ls0{letter-spacing:0.552960pt;}
.ls13{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.650667pt;}
.lse{letter-spacing:0.896000pt;}
.lsf{letter-spacing:3.456000pt;}
.ls10{letter-spacing:13.696000pt;}
.ws9{word-spacing:-14.656000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws8{word-spacing:-14.272000pt;}
.ws6{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.383680pt;}
.ws4{word-spacing:-13.306880pt;}
.wsa{word-spacing:-13.189013pt;}
.wsb{word-spacing:-13.133013pt;}
.ws5{word-spacing:-12.894613pt;}
.ws1{word-spacing:-12.337067pt;}
.ws2{word-spacing:-11.697920pt;}
.ws0{word-spacing:-11.599467pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-1.145173pt;}
._0{width:0.956160pt;}
._1{width:2.108800pt;}
._d{width:3.275520pt;}
._9{width:4.678827pt;}
._4{width:6.201173pt;}
._3{width:7.360000pt;}
._13{width:8.707840pt;}
._11{width:9.664000pt;}
._8{width:10.752000pt;}
._c{width:12.160000pt;}
._12{width:13.490347pt;}
._f{width:14.873600pt;}
._e{width:15.776640pt;}
._14{width:16.672640pt;}
._7{width:17.664000pt;}
._16{width:19.136000pt;}
._17{width:20.544000pt;}
._b{width:21.760000pt;}
._a{width:22.656000pt;}
._10{width:23.616000pt;}
._18{width:25.280000pt;}
._1d{width:26.432000pt;}
._1e{width:27.407360pt;}
._21{width:28.563627pt;}
._1a{width:29.539840pt;}
._6{width:30.464000pt;}
._5{width:31.488000pt;}
._1c{width:32.455680pt;}
._1b{width:33.408000pt;}
._15{width:34.368000pt;}
._19{width:35.392000pt;}
._24{width:36.655787pt;}
._23{width:38.239573pt;}
._20{width:46.400000pt;}
._1f{width:47.360000pt;}
._22{width:53.227520pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:4.306667pt;}
.y8a{bottom:4.320000pt;}
.y9e{bottom:4.466667pt;}
.y90{bottom:4.480000pt;}
.y2{bottom:6.560000pt;}
.ya3{bottom:23.826667pt;}
.y8c{bottom:23.840000pt;}
.y8f{bottom:24.000000pt;}
.y9d{bottom:24.026667pt;}
.ya2{bottom:43.346667pt;}
.y94{bottom:43.360000pt;}
.y5{bottom:49.952000pt;}
.y4{bottom:65.632000pt;}
.y3a{bottom:97.952000pt;}
.y39{bottom:104.672000pt;}
.y19f{bottom:104.992000pt;}
.yf4{bottom:105.472000pt;}
.yd9{bottom:106.752000pt;}
.y145{bottom:107.552000pt;}
.y38{bottom:114.272000pt;}
.y81{bottom:118.752000pt;}
.y12d{bottom:120.832000pt;}
.yc3{bottom:120.992000pt;}
.y19e{bottom:125.792000pt;}
.y5f{bottom:126.912000pt;}
.y144{bottom:127.072000pt;}
.y11d{bottom:128.672000pt;}
.y165{bottom:129.632000pt;}
.y37{bottom:130.592000pt;}
.yf3{bottom:130.752000pt;}
.ya4{bottom:131.712000pt;}
.yd8{bottom:132.032000pt;}
.y36{bottom:137.306667pt;}
.y12c{bottom:140.506667pt;}
.y80{bottom:144.186667pt;}
.y158{bottom:145.306667pt;}
.y143{bottom:146.586667pt;}
.y35{bottom:146.746667pt;}
.ya1{bottom:147.560000pt;}
.y164{bottom:150.266667pt;}
.y185{bottom:152.186667pt;}
.y5e{bottom:152.346667pt;}
.yc2{bottom:153.466667pt;}
.y11c{bottom:154.266667pt;}
.yf2{bottom:156.186667pt;}
.y132{bottom:157.306667pt;}
.yd7{bottom:157.466667pt;}
.y19d{bottom:159.546667pt;}
.y12b{bottom:160.026667pt;}
.y34{bottom:163.066667pt;}
.yc1{bottom:163.386667pt;}
.y142{bottom:166.106667pt;}
.y101{bottom:169.466667pt;}
.y157{bottom:170.906667pt;}
.y184{bottom:172.986667pt;}
.y5d{bottom:177.626667pt;}
.y33{bottom:179.386667pt;}
.y12a{bottom:179.546667pt;}
.y11b{bottom:179.706667pt;}
.yf1{bottom:181.626667pt;}
.y7f{bottom:182.746667pt;}
.y130{bottom:182.906667pt;}
.y163{bottom:184.026667pt;}
.y1b2{bottom:185.146667pt;}
.y141{bottom:185.626667pt;}
.y19c{bottom:193.466667pt;}
.y100{bottom:194.906667pt;}
.y32{bottom:195.706667pt;}
.yd6{bottom:196.026667pt;}
.y156{bottom:196.186667pt;}
.y1b1{bottom:198.106667pt;}
.y129{bottom:199.066667pt;}
.y31{bottom:202.426667pt;}
.y5c{bottom:203.066667pt;}
.y162{bottom:204.826667pt;}
.y11a{bottom:204.986667pt;}
.y140{bottom:205.146667pt;}
.y183{bottom:206.746667pt;}
.y9f{bottom:206.760000pt;}
.yfc{bottom:207.066667pt;}
.y7e{bottom:208.346667pt;}
.y30{bottom:212.346667pt;}
.y19b{bottom:214.106667pt;}
.y1b0{bottom:216.026667pt;}
.y128{bottom:218.586667pt;}
.yf0{bottom:220.186667pt;}
.yff{bottom:220.346667pt;}
.yd5{bottom:221.626667pt;}
.y13f{bottom:224.826667pt;}
.y9c{bottom:226.920000pt;}
.y182{bottom:227.546667pt;}
.y5b{bottom:228.506667pt;}
.y119{bottom:230.426667pt;}
.yc0{bottom:232.186667pt;}
.y139{bottom:232.346667pt;}
.y7d{bottom:233.626667pt;}
.y1af{bottom:233.946667pt;}
.y127{bottom:238.106667pt;}
.y161{bottom:238.586667pt;}
.y13e{bottom:244.386667pt;}
.yfb{bottom:245.666667pt;}
.yef{bottom:245.826667pt;}
.yd4{bottom:247.106667pt;}
.y19a{bottom:247.906667pt;}
.y181{bottom:248.066667pt;}
.y2f{bottom:249.186667pt;}
.y1ae{bottom:251.906667pt;}
.y118{bottom:255.906667pt;}
.y126{bottom:257.666667pt;}
.ybf{bottom:257.826667pt;}
.y7c{bottom:259.106667pt;}
.y9b{bottom:266.786667pt;}
.y5a{bottom:267.106667pt;}
.y2e{bottom:268.706667pt;}
.y1ad{bottom:269.666667pt;}
.yee{bottom:271.106667pt;}
.yd3{bottom:272.386667pt;}
.y160{bottom:272.546667pt;}
.y117{bottom:281.186667pt;}
.y180{bottom:281.986667pt;}
.y13d{bottom:283.106667pt;}
.ybe{bottom:283.266667pt;}
.yfe{bottom:284.386667pt;}
.y7b{bottom:284.546667pt;}
.y9a{bottom:286.946667pt;}
.y1ac{bottom:287.586667pt;}
.y2d{bottom:288.226667pt;}
.y59{bottom:292.546667pt;}
.y15f{bottom:293.346667pt;}
.y125{bottom:296.386667pt;}
.yed{bottom:296.546667pt;}
.y12f{bottom:297.666667pt;}
.yd2{bottom:297.826667pt;}
.y199{bottom:302.466667pt;}
.y17f{bottom:302.626667pt;}
.y116{bottom:306.626667pt;}
.y2c{bottom:307.426667pt;}
.ybd{bottom:308.546667pt;}
.y7a{bottom:309.826667pt;}
.y58{bottom:317.986667pt;}
.y138{bottom:321.826667pt;}
.yec{bottom:321.986667pt;}
.yd1{bottom:323.266667pt;}
.y2b{bottom:326.146667pt;}
.y99{bottom:326.626667pt;}
.y15e{bottom:327.106667pt;}
.y1ab{bottom:330.466667pt;}
.ybc{bottom:333.986667pt;}
.y79{bottom:335.266667pt;}
.y155{bottom:336.386667pt;}
.y57{bottom:343.426667pt;}
.y115{bottom:345.186667pt;}
.y2a{bottom:345.346667pt;}
.y98{bottom:346.946667pt;}
.y13c{bottom:347.106667pt;}
.yeb{bottom:347.266667pt;}
.y15d{bottom:347.746667pt;}
.yd0{bottom:348.546667pt;}
.y198{bottom:357.026667pt;}
.y17e{bottom:357.186667pt;}
.ybb{bottom:359.426667pt;}
.y78{bottom:360.706667pt;}
.y154{bottom:361.986667pt;}
.y29{bottom:364.066667pt;}
.y1aa{bottom:364.226667pt;}
.y97{bottom:367.106667pt;}
.y56{bottom:368.706667pt;}
.y114{bottom:370.786667pt;}
.y124{bottom:372.706667pt;}
.y131{bottom:373.826667pt;}
.ycf{bottom:373.986667pt;}
.y197{bottom:377.826667pt;}
.y15c{bottom:381.506667pt;}
.y28{bottom:383.586667pt;}
.yba{bottom:384.706667pt;}
.yea{bottom:385.826667pt;}
.y77{bottom:385.986667pt;}
.y96{bottom:387.266667pt;}
.y153{bottom:387.426667pt;}
.y17d{bottom:390.946667pt;}
.y55{bottom:394.146667pt;}
.y113{bottom:396.226667pt;}
.y123{bottom:398.146667pt;}
.y196{bottom:398.306667pt;}
.yce{bottom:399.426667pt;}
.y15b{bottom:402.306667pt;}
.y27{bottom:403.266667pt;}
.y95{bottom:407.426667pt;}
.yb9{bottom:410.146667pt;}
.ye9{bottom:411.426667pt;}
.y17c{bottom:411.746667pt;}
.y152{bottom:412.706667pt;}
.y195{bottom:418.946667pt;}
.y54{bottom:419.586667pt;}
.y112{bottom:421.506667pt;}
.y26{bottom:422.786667pt;}
.y122{bottom:423.426667pt;}
.y76{bottom:424.546667pt;}
.ycd{bottom:424.706667pt;}
.y1a9{bottom:432.066667pt;}
.y15a{bottom:436.706667pt;}
.ye8{bottom:436.866667pt;}
.y151{bottom:438.146667pt;}
.y194{bottom:439.586667pt;}
.y25{bottom:442.306667pt;}
.y53{bottom:445.026667pt;}
.y17b{bottom:445.506667pt;}
.y111{bottom:446.946667pt;}
.y93{bottom:447.266667pt;}
.yb8{bottom:448.706667pt;}
.y137{bottom:448.866667pt;}
.ycc{bottom:450.146667pt;}
.y24{bottom:461.826667pt;}
.y121{bottom:461.986667pt;}
.ye7{bottom:462.146667pt;}
.y75{bottom:463.266667pt;}
.y1a8{bottom:465.986667pt;}
.y17a{bottom:466.146667pt;}
.y52{bottom:470.306667pt;}
.y193{bottom:473.346667pt;}
.yb7{bottom:474.306667pt;}
.y159{bottom:475.426667pt;}
.ycb{bottom:475.586667pt;}
.y150{bottom:476.706667pt;}
.y23{bottom:481.346667pt;}
.y110{bottom:485.506667pt;}
.y136{bottom:487.426667pt;}
.ye6{bottom:487.586667pt;}
.y74{bottom:488.866667pt;}
.y192{bottom:494.013333pt;}
.yb6{bottom:499.613333pt;}
.y179{bottom:499.933333pt;}
.y22{bottom:500.573333pt;}
.y120{bottom:500.733333pt;}
.yca{bottom:500.893333pt;}
.y14f{bottom:502.333333pt;}
.y92{bottom:506.493333pt;}
.y51{bottom:508.893333pt;}
.y10f{bottom:511.133333pt;}
.ye5{bottom:513.053333pt;}
.y73{bottom:514.333333pt;}
.y21{bottom:519.293333pt;}
.yb5{bottom:525.053333pt;}
.yfa{bottom:526.173333pt;}
.yc9{bottom:526.333333pt;}
.y91{bottom:526.653333pt;}
.y14e{bottom:527.613333pt;}
.y191{bottom:527.773333pt;}
.y178{bottom:533.853333pt;}
.y50{bottom:534.493333pt;}
.y10e{bottom:536.413333pt;}
.y20{bottom:538.493333pt;}
.y72{bottom:539.613333pt;}
.y190{bottom:548.573333pt;}
.yb4{bottom:550.493333pt;}
.yc8{bottom:551.773333pt;}
.y14d{bottom:553.053333pt;}
.y177{bottom:554.653333pt;}
.y1f{bottom:557.213333pt;}
.y4f{bottom:559.933333pt;}
.y10d{bottom:561.853333pt;}
.y13b{bottom:563.613333pt;}
.ye4{bottom:563.773333pt;}
.y12e{bottom:564.893333pt;}
.y71{bottom:565.053333pt;}
.y8e{bottom:566.333333pt;}
.yb3{bottom:575.933333pt;}
.y1e{bottom:576.733333pt;}
.yf9{bottom:577.213333pt;}
.y18f{bottom:582.333333pt;}
.y4e{bottom:585.213333pt;}
.y10c{bottom:587.293333pt;}
.y176{bottom:588.413333pt;}
.y14c{bottom:588.733333pt;}
.ye3{bottom:589.213333pt;}
.yc7{bottom:590.333333pt;}
.y70{bottom:590.493333pt;}
.y1d{bottom:596.253333pt;}
.yf8{bottom:602.493333pt;}
.y8d{bottom:606.173333pt;}
.y175{bottom:609.213333pt;}
.y4d{bottom:610.653333pt;}
.y14b{bottom:611.133333pt;}
.y10b{bottom:612.573333pt;}
.yb2{bottom:614.493333pt;}
.ye2{bottom:614.653333pt;}
.y1c{bottom:615.773333pt;}
.y6f{bottom:615.933333pt;}
.y18e{bottom:616.253333pt;}
.y1a7{bottom:622.333333pt;}
.yf7{bottom:627.933333pt;}
.y14a{bottom:633.693333pt;}
.y1b{bottom:635.293333pt;}
.y4c{bottom:636.093333pt;}
.yb1{bottom:639.933333pt;}
.y11f{bottom:641.053333pt;}
.y6e{bottom:641.213333pt;}
.y174{bottom:642.973333pt;}
.y1a6{bottom:643.133333pt;}
.y8b{bottom:645.853333pt;}
.y10a{bottom:648.253333pt;}
.y18d{bottom:650.173333pt;}
.ye1{bottom:653.213333pt;}
.yf6{bottom:653.373333pt;}
.y1a{bottom:654.813333pt;}
.y149{bottom:656.093333pt;}
.y4b{bottom:661.373333pt;}
.y173{bottom:663.613333pt;}
.yb0{bottom:665.373333pt;}
.y6d{bottom:666.653333pt;}
.y109{bottom:670.653333pt;}
.y18c{bottom:670.973333pt;}
.y19{bottom:674.333333pt;}
.y13a{bottom:678.493333pt;}
.ye0{bottom:678.653333pt;}
.y89{bottom:685.533333pt;}
.y4a{bottom:686.813333pt;}
.yaf{bottom:690.813333pt;}
.yfd{bottom:691.933333pt;}
.y6c{bottom:692.093333pt;}
.y108{bottom:693.213333pt;}
.y18{bottom:693.853333pt;}
.y172{bottom:697.373333pt;}
.ydf{bottom:704.093333pt;}
.y18b{bottom:704.733333pt;}
.y17{bottom:713.373333pt;}
.y107{bottom:715.613333pt;}
.yae{bottom:716.093333pt;}
.yf5{bottom:717.213333pt;}
.y6b{bottom:717.373333pt;}
.y171{bottom:718.173333pt;}
.y49{bottom:725.373333pt;}
.y88{bottom:729.373333pt;}
.yde{bottom:729.533333pt;}
.y16{bottom:732.733333pt;}
.y106{bottom:738.173333pt;}
.y18a{bottom:738.653333pt;}
.y170{bottom:738.813333pt;}
.yad{bottom:741.533333pt;}
.y6a{bottom:742.813333pt;}
.y15{bottom:750.693333pt;}
.y1a5{bottom:751.973333pt;}
.ydd{bottom:754.853333pt;}
.y48{bottom:757.733333pt;}
.y189{bottom:759.333333pt;}
.y105{bottom:760.613333pt;}
.yac{bottom:767.013333pt;}
.y87{bottom:768.133333pt;}
.y69{bottom:768.293333pt;}
.y14{bottom:768.773333pt;}
.y16f{bottom:772.613333pt;}
.y1a4{bottom:772.773333pt;}
.y47{bottom:776.613333pt;}
.ydc{bottom:780.293333pt;}
.y148{bottom:781.413333pt;}
.y104{bottom:783.013333pt;}
.y12{bottom:788.293333pt;}
.yab{bottom:792.293333pt;}
.y188{bottom:793.093333pt;}
.y16e{bottom:793.253333pt;}
.y68{bottom:793.573333pt;}
.y13{bottom:795.653333pt;}
.y46{bottom:796.293333pt;}
.y103{bottom:805.573333pt;}
.ydb{bottom:805.733333pt;}
.y1a3{bottom:806.533333pt;}
.y147{bottom:807.013333pt;}
.y11{bottom:807.813333pt;}
.y187{bottom:813.893333pt;}
.y45{bottom:815.813333pt;}
.yaa{bottom:817.733333pt;}
.y67{bottom:819.013333pt;}
.y16d{bottom:827.013333pt;}
.y1a2{bottom:827.173333pt;}
.yf{bottom:827.493333pt;}
.y135{bottom:831.013333pt;}
.yc6{bottom:832.133333pt;}
.y146{bottom:832.293333pt;}
.y10{bottom:834.853333pt;}
.y44{bottom:835.333333pt;}
.yda{bottom:844.293333pt;}
.y66{bottom:844.453333pt;}
.ye{bottom:847.013333pt;}
.y186{bottom:847.653333pt;}
.y16c{bottom:847.813333pt;}
.y43{bottom:854.853333pt;}
.ya9{bottom:856.293333pt;}
.y11e{bottom:857.573333pt;}
.yc5{bottom:857.733333pt;}
.y1a1{bottom:860.933333pt;}
.yc{bottom:866.533333pt;}
.y134{bottom:869.573333pt;}
.y65{bottom:869.733333pt;}
.yd{bottom:873.893333pt;}
.y42{bottom:874.373333pt;}
.y16b{bottom:881.573333pt;}
.y1a0{bottom:881.733333pt;}
.y86{bottom:883.013333pt;}
.yc4{bottom:883.173333pt;}
.yb{bottom:885.733333pt;}
.y41{bottom:893.573333pt;}
.ya8{bottom:895.013333pt;}
.y64{bottom:895.173333pt;}
.y16a{bottom:902.373333pt;}
.ya{bottom:904.933333pt;}
.y133{bottom:908.293333pt;}
.y85{bottom:908.453333pt;}
.y40{bottom:912.293333pt;}
.y63{bottom:920.613333pt;}
.y9{bottom:929.893333pt;}
.y3f{bottom:931.813333pt;}
.ya6{bottom:933.733333pt;}
.y84{bottom:933.893333pt;}
.y169{bottom:936.133333pt;}
.ya7{bottom:941.093333pt;}
.y62{bottom:946.053333pt;}
.y3e{bottom:951.333333pt;}
.y8{bottom:955.013333pt;}
.y168{bottom:956.933333pt;}
.y102{bottom:959.173333pt;}
.y83{bottom:959.333333pt;}
.ya5{bottom:966.693333pt;}
.y3d{bottom:970.853333pt;}
.y7{bottom:979.973333pt;}
.y61{bottom:984.613333pt;}
.y82{bottom:984.773333pt;}
.y3c{bottom:990.373333pt;}
.y167{bottom:990.693333pt;}
.y6{bottom:1004.960000pt;}
.y3b{bottom:1009.920000pt;}
.y60{bottom:1010.080000pt;}
.y166{bottom:1011.360000pt;}
.y3{bottom:1029.120000pt;}
.y1{bottom:1051.360000pt;}
.h2{height:19.200000pt;}
.h15{height:19.506667pt;}
.h10{height:19.520000pt;}
.hd{height:30.223125pt;}
.h1b{height:32.461875pt;}
.h18{height:32.746250pt;}
.ha{height:37.499062pt;}
.h14{height:39.026667pt;}
.h11{height:39.040000pt;}
.h12{height:39.200000pt;}
.h16{height:39.218667pt;}
.h3{height:46.220625pt;}
.he{height:46.454062pt;}
.h4{height:46.635625pt;}
.h1a{height:48.558750pt;}
.h19{height:48.875000pt;}
.hc{height:51.491250pt;}
.hb{height:52.781250pt;}
.hf{height:54.598989pt;}
.h8{height:55.968750pt;}
.h17{height:58.546667pt;}
.h13{height:58.586667pt;}
.h5{height:65.781915pt;}
.h7{height:74.064375pt;}
.h6{height:74.729375pt;}
.h9{height:1122.558173pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:75.666667pt;}
.w6{width:213.137333pt;}
.w7{width:390.466667pt;}
.w2{width:541.360000pt;}
.w5{width:604.240000pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.080000pt;}
.x2a{left:10.880000pt;}
.x31{left:19.830667pt;}
.x30{left:22.710667pt;}
.x37{left:25.430667pt;}
.x2d{left:35.350667pt;}
.x24{left:37.110667pt;}
.x22{left:38.070667pt;}
.x33{left:41.425333pt;}
.x25{left:42.545333pt;}
.x1e{left:45.425333pt;}
.x3c{left:47.680000pt;}
.x2{left:52.305333pt;}
.x29{left:56.625333pt;}
.x1d{left:62.865333pt;}
.x3a{left:68.480000pt;}
.x34{left:71.520000pt;}
.x35{left:74.065333pt;}
.x3b{left:78.065333pt;}
.x27{left:80.000000pt;}
.x2c{left:83.040000pt;}
.x26{left:85.600000pt;}
.x1{left:86.921333pt;}
.x2f{left:92.480000pt;}
.x5{left:94.592000pt;}
.xb{left:98.752000pt;}
.x38{left:100.160000pt;}
.x20{left:103.200000pt;}
.x18{left:112.992000pt;}
.x7{left:120.832000pt;}
.x23{left:129.280000pt;}
.x36{left:132.960000pt;}
.x2e{left:136.026667pt;}
.x32{left:137.786667pt;}
.xa{left:139.066667pt;}
.x8{left:140.826667pt;}
.x21{left:141.946667pt;}
.x39{left:148.986667pt;}
.x2b{left:153.946667pt;}
.x1c{left:233.305333pt;}
.x15{left:242.426667pt;}
.x19{left:247.386667pt;}
.x28{left:252.025333pt;}
.x1b{left:271.586667pt;}
.x9{left:278.146667pt;}
.x1a{left:286.626667pt;}
.x14{left:301.026667pt;}
.x1f{left:308.706667pt;}
.x45{left:312.066667pt;}
.x10{left:319.586667pt;}
.x3f{left:326.785000pt;}
.x40{left:332.226667pt;}
.x11{left:337.346667pt;}
.xd{left:355.426667pt;}
.xc{left:397.026667pt;}
.xe{left:433.185000pt;}
.xf{left:438.626667pt;}
.x12{left:451.291667pt;}
.x13{left:456.733333pt;}
.x16{left:474.651667pt;}
.x17{left:480.093333pt;}
.x41{left:490.811667pt;}
.x42{left:496.253333pt;}
.x43{left:550.171667pt;}
.x44{left:555.613333pt;}
.x3{left:631.333333pt;}
.x3d{left:690.051667pt;}
.x3e{left:695.493333pt;}
.x6{left:699.493333pt;}
}




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