
    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_f22f1d4f0b1118e608347ba7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c05f1c1cff9e2b2f7963e4e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_de7ed5d126ac2c9e67f398ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_54efd91769a78f726f010e98.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752441;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_a4e1c300d3f00a451dd8ffd6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_4474080eb62915dbaaa5c431.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752441;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_371806be9ad4578494ca3a35.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.776855;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_12de15fd32c89c2cadc68866.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_39535f5774613cb0eca8c8c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.989258;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_87ba35c1928a31b29c0c6cda.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-77.184000px;}
.v2{vertical-align:-14.400000px;}
.v15{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:2.880000px;}
.v16{vertical-align:5.760000px;}
.v3{vertical-align:14.400000px;}
.v11{vertical-align:21.600000px;}
.v8{vertical-align:23.040000px;}
.v10{vertical-align:26.640000px;}
.vc{vertical-align:36.000000px;}
.va{vertical-align:42.480000px;}
.v7{vertical-align:46.800000px;}
.v6{vertical-align:48.240000px;}
.vb{vertical-align:50.400000px;}
.v4{vertical-align:54.720000px;}
.v9{vertical-align:62.640000px;}
.v14{vertical-align:74.880000px;}
.v5{vertical-align:81.360000px;}
.v12{vertical-align:102.960000px;}
.vd{vertical-align:113.040000px;}
.v13{vertical-align:129.600000px;}
.ve{vertical-align:136.080000px;}
.ls2a{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.ls27{letter-spacing:-0.172800px;}
.ls1b{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.078600px;}
.ls19{letter-spacing:-0.072000px;}
.ls29{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.245400px;}
.ls9{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.576000px;}
.ls1{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.792000px;}
.ls11{letter-spacing:2.081520px;}
.ls1e{letter-spacing:2.520000px;}
.lsd{letter-spacing:2.801520px;}
.ls10{letter-spacing:3.521520px;}
.ls12{letter-spacing:4.032000px;}
.ls1c{letter-spacing:4.692960px;}
.ls15{letter-spacing:5.400000px;}
.ls25{letter-spacing:5.472000px;}
.lsc{letter-spacing:7.320000px;}
.lsb{letter-spacing:8.561520px;}
.lse{letter-spacing:10.721520px;}
.ls16{letter-spacing:10.800000px;}
.ls20{letter-spacing:18.144000px;}
.ls23{letter-spacing:18.641520px;}
.ls13{letter-spacing:19.656000px;}
.ls24{letter-spacing:20.376000px;}
.lsa{letter-spacing:22.961520px;}
.ls17{letter-spacing:31.680000px;}
.ls22{letter-spacing:34.416000px;}
.ls21{letter-spacing:38.736000px;}
.ls1d{letter-spacing:46.656000px;}
.ls4{letter-spacing:51.552000px;}
.ls18{letter-spacing:65.232000px;}
.lsf{letter-spacing:168.744000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws0{word-spacing:-23.940000px;}
.ws1e{word-spacing:-18.792000px;}
.ws5{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws1f{word-spacing:-17.712000px;}
.ws9{word-spacing:-16.128000px;}
.wsf{word-spacing:-16.056000px;}
.ws6{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.768000px;}
.ws10{word-spacing:-15.696000px;}
.wse{word-spacing:-15.552000px;}
.ws1d{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.491800px;}
.wsb{word-spacing:-11.246400px;}
.ws14{word-spacing:-11.167800px;}
.ws16{word-spacing:-11.073600px;}
.ws1c{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:5.616000px;}
.ws17{word-spacing:11.644560px;}
.ws8{word-spacing:12.283200px;}
.ws12{word-spacing:12.702960px;}
.ws11{word-spacing:13.050000px;}
.wsa{word-spacing:13.116960px;}
.ws13{word-spacing:13.883040px;}
.ws15{word-spacing:14.063040px;}
.ws1a{word-spacing:144.882000px;}
.ws1b{word-spacing:145.194000px;}
.ws19{word-spacing:145.254000px;}
.ws18{word-spacing:172.638000px;}
._2a{margin-left:-13.993200px;}
._28{margin-left:-9.720000px;}
._22{margin-left:-7.920000px;}
._24{margin-left:-5.904000px;}
._1b{margin-left:-4.896000px;}
._1c{margin-left:-3.480000px;}
._11{margin-left:-2.404800px;}
._0{margin-left:-1.324800px;}
._2{width:1.436400px;}
._b{width:2.808000px;}
._c{width:4.188000px;}
._1d{width:5.688000px;}
._12{width:7.128000px;}
._f{width:8.352000px;}
._10{width:9.432000px;}
._1a{width:10.512000px;}
._8{width:11.520000px;}
._9{width:12.780000px;}
._a{width:13.875600px;}
._15{width:15.736800px;}
._19{width:16.807200px;}
._23{width:17.914560px;}
._16{width:19.584000px;}
._2d{width:20.599200px;}
._1f{width:21.744000px;}
._20{width:22.824000px;}
._21{width:23.976000px;}
._2f{width:25.113600px;}
._1e{width:26.136000px;}
._18{width:27.984000px;}
._27{width:29.748000px;}
._13{width:32.040000px;}
._14{width:33.084000px;}
._2c{width:34.920000px;}
._3{width:40.314960px;}
._d{width:43.992000px;}
._e{width:45.252000px;}
._25{width:60.592800px;}
._17{width:66.396000px;}
._30{width:68.316000px;}
._5{width:80.476320px;}
._31{width:99.360000px;}
._6{width:115.007760px;}
._7{width:116.444160px;}
._29{width:129.240000px;}
._2e{width:170.862000px;}
._4{width:175.528080px;}
._32{width:191.448000px;}
._26{width:299.520000px;}
._2b{width:849.185760px;}
._1{width:2070.778560px;}
.fc1{color:rgb(0,0,10);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:10.800000px;}
.y78{bottom:11.880000px;}
.ye2{bottom:13.290000px;}
.y7c{bottom:14.265000px;}
.y82{bottom:16.374000px;}
.y7a{bottom:16.380000px;}
.yad{bottom:16.560000px;}
.yb0{bottom:16.605000px;}
.y56{bottom:17.640000px;}
.yda{bottom:30.855000px;}
.ydb{bottom:63.465000px;}
.y4{bottom:76.716000px;}
.y3{bottom:95.796000px;}
.ydc{bottom:96.120000px;}
.y2{bottom:115.056000px;}
.ydd{bottom:128.775000px;}
.ya8{bottom:141.696000px;}
.y81{bottom:142.416000px;}
.y33{bottom:146.196000px;}
.y54{bottom:147.096000px;}
.y76{bottom:153.570000px;}
.ya7{bottom:153.750000px;}
.yde{bottom:161.430000px;}
.y32{bottom:166.890000px;}
.y55{bottom:171.390000px;}
.y146{bottom:176.970000px;}
.yff{bottom:177.330000px;}
.y53{bottom:178.230000px;}
.y75{bottom:180.750000px;}
.yd8{bottom:186.150000px;}
.y31{bottom:187.590000px;}
.y74{bottom:192.810000px;}
.ydf{bottom:194.040000px;}
.y127{bottom:194.970000px;}
.ya6{bottom:196.410000px;}
.y145{bottom:197.670000px;}
.y30{bottom:208.290000px;}
.y52{bottom:209.190000px;}
.yfe{bottom:210.630000px;}
.yd7{bottom:217.290000px;}
.y144{bottom:218.370000px;}
.y80{bottom:219.990000px;}
.ya5{bottom:226.110000px;}
.ye0{bottom:226.695000px;}
.y2f{bottom:228.990000px;}
.y73{bottom:238.170000px;}
.y10a{bottom:239.430000px;}
.y51{bottom:240.330000px;}
.yfd{bottom:244.470000px;}
.y143{bottom:245.730000px;}
.yd6{bottom:248.250000px;}
.y2e{bottom:249.690000px;}
.y126{bottom:253.290000px;}
.ye1{bottom:259.350000px;}
.y142{bottom:262.290000px;}
.y72{bottom:269.130000px;}
.y2d{bottom:270.390000px;}
.y50{bottom:271.290000px;}
.ya4{bottom:273.090000px;}
.yfc{bottom:275.610000px;}
.yd5{bottom:279.390000px;}
.y141{bottom:282.990000px;}
.ye3{bottom:287.535000px;}
.y2c{bottom:291.090000px;}
.y125{bottom:296.310000px;}
.y71{bottom:300.270000px;}
.y109{bottom:301.350000px;}
.y4f{bottom:302.250000px;}
.y140{bottom:303.690000px;}
.ya3{bottom:304.230000px;}
.yfb{bottom:306.570000px;}
.yd4{bottom:310.350000px;}
.y2b{bottom:311.790000px;}
.y124{bottom:327.270000px;}
.y70{bottom:331.230000px;}
.y2a{bottom:332.490000px;}
.y4e{bottom:333.390000px;}
.y13f{bottom:334.650000px;}
.ya2{bottom:335.190000px;}
.yfa{bottom:337.755000px;}
.yd3{bottom:341.355000px;}
.y29{bottom:353.235000px;}
.y13e{bottom:355.395000px;}
.y123{bottom:358.455000px;}
.y6f{bottom:362.415000px;}
.y108{bottom:363.495000px;}
.y4d{bottom:364.395000px;}
.ya1{bottom:366.375000px;}
.yf9{bottom:368.715000px;}
.yd2{bottom:372.495000px;}
.y28{bottom:373.935000px;}
.y13d{bottom:376.095000px;}
.y122{bottom:389.415000px;}
.y6e{bottom:393.375000px;}
.y27{bottom:394.635000px;}
.y4c{bottom:395.535000px;}
.ya0{bottom:397.335000px;}
.yf8{bottom:399.855000px;}
.yd1{bottom:407.235000px;}
.y26{bottom:415.335000px;}
.y121{bottom:420.555000px;}
.yd9{bottom:423.720000px;}
.y6d{bottom:424.515000px;}
.y107{bottom:425.595000px;}
.y4b{bottom:426.495000px;}
.y13c{bottom:427.935000px;}
.y9f{bottom:428.475000px;}
.yf7{bottom:430.815000px;}
.y25{bottom:436.035000px;}
.y13b{bottom:448.635000px;}
.y120{bottom:451.515000px;}
.y6c{bottom:455.475000px;}
.y24{bottom:456.735000px;}
.y4a{bottom:457.635000px;}
.y9e{bottom:459.435000px;}
.yf6{bottom:461.955000px;}
.yc8{bottom:463.935000px;}
.y23{bottom:477.435000px;}
.y13a{bottom:479.595000px;}
.y11f{bottom:482.655000px;}
.y6b{bottom:486.615000px;}
.y9d{bottom:486.795000px;}
.y106{bottom:487.695000px;}
.y49{bottom:488.595000px;}
.yf5{bottom:492.915000px;}
.y84{bottom:493.095000px;}
.yc7{bottom:497.775000px;}
.y22{bottom:498.135000px;}
.y9c{bottom:498.855000px;}
.y139{bottom:500.295000px;}
.y11e{bottom:513.615000px;}
.yc6{bottom:516.855000px;}
.y6a{bottom:517.575000px;}
.y21{bottom:518.835000px;}
.y48{bottom:519.735000px;}
.y138{bottom:520.995000px;}
.yf4{bottom:524.055000px;}
.yc5{bottom:535.395000px;}
.y20{bottom:539.535000px;}
.y137{bottom:541.695000px;}
.y11d{bottom:544.755000px;}
.y9b{bottom:545.295000px;}
.y69{bottom:548.715000px;}
.y105{bottom:549.795000px;}
.y47{bottom:550.695000px;}
.yf3{bottom:555.015000px;}
.yc4{bottom:556.095000px;}
.y1f{bottom:560.235000px;}
.y136{bottom:562.395000px;}
.y11c{bottom:575.715000px;}
.y9a{bottom:576.435000px;}
.yc3{bottom:576.795000px;}
.y68{bottom:579.675000px;}
.y1e{bottom:580.935000px;}
.y46{bottom:581.835000px;}
.y135{bottom:583.095000px;}
.y83{bottom:585.075000px;}
.yf2{bottom:586.155000px;}
.y99{bottom:588.495000px;}
.yc2{bottom:597.495000px;}
.y1d{bottom:601.635000px;}
.y134{bottom:603.825000px;}
.y11b{bottom:606.885000px;}
.y67{bottom:610.845000px;}
.y104{bottom:611.925000px;}
.y45{bottom:612.825000px;}
.yf1{bottom:617.145000px;}
.y1c{bottom:622.365000px;}
.ya9{bottom:628.485000px;}
.y98{bottom:633.885000px;}
.y133{bottom:634.965000px;}
.y11a{bottom:637.845000px;}
.yc1{bottom:640.545000px;}
.y66{bottom:641.805000px;}
.y1b{bottom:643.065000px;}
.y44{bottom:643.965000px;}
.yf0{bottom:648.285000px;}
.y132{bottom:655.665000px;}
.y1a{bottom:663.765000px;}
.y97{bottom:665.025000px;}
.y119{bottom:668.985000px;}
.y65{bottom:672.945000px;}
.y7d{bottom:673.485000px;}
.y103{bottom:674.025000px;}
.y43{bottom:674.925000px;}
.y131{bottom:676.365000px;}
.y96{bottom:677.085000px;}
.yef{bottom:679.245000px;}
.yc0{bottom:683.205000px;}
.y19{bottom:684.465000px;}
.y118{bottom:699.945000px;}
.yaa{bottom:700.665000px;}
.y64{bottom:703.905000px;}
.y18{bottom:705.165000px;}
.y42{bottom:706.065000px;}
.y130{bottom:707.325000px;}
.yee{bottom:710.385000px;}
.ybf{bottom:714.525000px;}
.y95{bottom:722.445000px;}
.y17{bottom:725.865000px;}
.y12f{bottom:728.025000px;}
.y117{bottom:731.085000px;}
.y63{bottom:735.045000px;}
.y102{bottom:736.125000px;}
.y41{bottom:737.025000px;}
.yed{bottom:741.345000px;}
.ybe{bottom:745.845000px;}
.y16{bottom:746.565000px;}
.y12e{bottom:748.725000px;}
.y94{bottom:753.225000px;}
.yd0{bottom:754.305000px;}
.y116{bottom:762.045000px;}
.y93{bottom:762.225000px;}
.y62{bottom:766.005000px;}
.y15{bottom:767.265000px;}
.y40{bottom:768.165000px;}
.y85{bottom:769.425000px;}
.yec{bottom:772.485000px;}
.ybd{bottom:773.745000px;}
.yab{bottom:780.405000px;}
.ybc{bottom:785.805000px;}
.y92{bottom:787.245000px;}
.y14{bottom:787.965000px;}
.ycf{bottom:791.385000px;}
.y115{bottom:793.005000px;}
.y61{bottom:797.145000px;}
.y101{bottom:798.225000px;}
.y3f{bottom:799.125000px;}
.y12d{bottom:800.565000px;}
.yeb{bottom:803.445000px;}
.y13{bottom:808.665000px;}
.y12c{bottom:821.265000px;}
.yce{bottom:822.345000px;}
.y114{bottom:824.145000px;}
.y60{bottom:828.105000px;}
.ybb{bottom:828.645000px;}
.y12{bottom:829.365000px;}
.y91{bottom:829.905000px;}
.y3e{bottom:830.265000px;}
.yea{bottom:834.405000px;}
.y12b{bottom:841.965000px;}
.y11{bottom:850.065000px;}
.ycd{bottom:853.485000px;}
.y113{bottom:855.105000px;}
.y5f{bottom:855.465000px;}
.yba{bottom:855.825000px;}
.yaf{bottom:856.545000px;}
.y100{bottom:860.325000px;}
.y90{bottom:860.685000px;}
.y3d{bottom:861.225000px;}
.y12a{bottom:862.665000px;}
.y7b{bottom:863.385000px;}
.ye9{bottom:865.545000px;}
.y10{bottom:870.810000px;}
.y8f{bottom:872.790000px;}
.yb9{bottom:881.610000px;}
.y129{bottom:883.410000px;}
.ycc{bottom:884.490000px;}
.y112{bottom:886.290000px;}
.y5e{bottom:888.630000px;}
.yf{bottom:891.510000px;}
.y3c{bottom:892.410000px;}
.ye8{bottom:896.550000px;}
.y14c{bottom:901.590000px;}
.y128{bottom:910.590000px;}
.yb8{bottom:910.770000px;}
.ye{bottom:912.210000px;}
.y8e{bottom:915.450000px;}
.y111{bottom:917.250000px;}
.ycb{bottom:917.790000px;}
.y5d{bottom:922.470000px;}
.y3b{bottom:923.370000px;}
.ye7{bottom:927.690000px;}
.yd{bottom:932.910000px;}
.yb7{bottom:937.950000px;}
.yae{bottom:938.310000px;}
.y7f{bottom:943.170000px;}
.y8d{bottom:946.410000px;}
.yca{bottom:948.030000px;}
.y110{bottom:948.390000px;}
.yb6{bottom:950.010000px;}
.y5c{bottom:953.610000px;}
.y3a{bottom:954.510000px;}
.yc{bottom:954.870000px;}
.y8c{bottom:958.470000px;}
.ye6{bottom:958.650000px;}
.y14b{bottom:974.310000px;}
.y10f{bottom:979.350000px;}
.yb{bottom:982.410000px;}
.y5b{bottom:984.570000px;}
.y39{bottom:985.470000px;}
.yc9{bottom:985.650000px;}
.ye5{bottom:988.530000px;}
.yb5{bottom:992.670000px;}
.y8b{bottom:997.710000px;}
.y14a{bottom:1005.270000px;}
.ya{bottom:1010.130000px;}
.y10e{bottom:1010.490000px;}
.y5a{bottom:1015.710000px;}
.y38{bottom:1016.610000px;}
.ye4{bottom:1016.970000px;}
.yb4{bottom:1019.850000px;}
.y79{bottom:1022.550000px;}
.y149{bottom:1025.970000px;}
.y8a{bottom:1028.670000px;}
.y9{bottom:1036.410000px;}
.y10d{bottom:1041.450000px;}
.y89{bottom:1042.530000px;}
.yb3{bottom:1045.590000px;}
.y59{bottom:1046.670000px;}
.y37{bottom:1047.570000px;}
.y8{bottom:1058.370000px;}
.y10c{bottom:1072.590000px;}
.yb2{bottom:1077.090000px;}
.y58{bottom:1077.810000px;}
.y36{bottom:1078.710000px;}
.y7{bottom:1085.910000px;}
.y88{bottom:1088.970000px;}
.y148{bottom:1098.510000px;}
.yac{bottom:1099.050000px;}
.y10b{bottom:1105.890000px;}
.yb1{bottom:1108.410000px;}
.y57{bottom:1108.770000px;}
.y35{bottom:1109.670000px;}
.y6{bottom:1113.630000px;}
.y87{bottom:1116.330000px;}
.y147{bottom:1119.210000px;}
.y77{bottom:1122.450000px;}
.y86{bottom:1128.390000px;}
.y34{bottom:1137.030000px;}
.y5{bottom:1139.940000px;}
.y1{bottom:1194.120000px;}
.he{height:27.540000px;}
.hf{height:27.576000px;}
.hb{height:28.656000px;}
.hd{height:30.996000px;}
.hc{height:33.120000px;}
.h1b{height:33.300000px;}
.h1c{height:33.336000px;}
.h8{height:34.380000px;}
.h1f{height:41.317383px;}
.h25{height:48.410156px;}
.h26{height:52.417969px;}
.h22{height:53.709961px;}
.h5{height:59.343750px;}
.h4{height:59.383125px;}
.h3{height:64.546875px;}
.h2{height:65.884219px;}
.h20{height:70.606406px;}
.h24{height:70.786406px;}
.h7{height:74.820586px;}
.h23{height:83.787539px;}
.h6{height:85.052461px;}
.h1d{height:92.179688px;}
.h1a{height:112.762875px;}
.h11{height:112.786875px;}
.h14{height:112.966875px;}
.h13{height:119.986875px;}
.h15{height:134.659688px;}
.ha{height:140.419688px;}
.h9{height:146.899688px;}
.h19{height:146.927578px;}
.h10{height:147.019688px;}
.h12{height:152.567578px;}
.h16{height:170.659688px;}
.h18{height:195.139687px;}
.h1e{height:195.319688px;}
.h17{height:200.626875px;}
.h21{height:318.960000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:43.920000px;}
.w4{width:45.000000px;}
.w3{width:45.180000px;}
.w5{width:46.080000px;}
.w8{width:46.260000px;}
.w6{width:48.420000px;}
.w9{width:54.000000px;}
.wf{width:54.180000px;}
.wa{width:55.260000px;}
.wc{width:57.060000px;}
.we{width:59.580000px;}
.wd{width:59.940000px;}
.wb{width:60.840000px;}
.w10{width:63.000000px;}
.w11{width:613.440000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:9.792000px;}
.x9{left:10.800000px;}
.x3a{left:16.665000px;}
.x38{left:40.530000px;}
.x3b{left:56.490000px;}
.x1{left:127.655987px;}
.x4{left:137.555987px;}
.x37{left:139.320000px;}
.x35{left:151.949987px;}
.x3{left:169.229987px;}
.xc{left:180.749987px;}
.x36{left:192.089987px;}
.x3c{left:199.335000px;}
.x31{left:230.069987px;}
.x5{left:258.689987px;}
.xa{left:298.694987px;}
.x32{left:318.854987px;}
.x33{left:321.194987px;}
.x15{left:328.754987px;}
.x19{left:348.914987px;}
.x2f{left:355.754987px;}
.x1c{left:362.234987px;}
.x16{left:366.554987px;}
.x2a{left:373.394987px;}
.x14{left:375.734987px;}
.x2b{left:379.514987px;}
.x20{left:381.314987px;}
.x29{left:387.434987px;}
.x1e{left:390.134987px;}
.x10{left:391.934987px;}
.x11{left:398.054987px;}
.x2d{left:404.714987px;}
.x21{left:421.454987px;}
.x22{left:430.814987px;}
.xb{left:439.454987px;}
.x2e{left:443.954987px;}
.x13{left:465.734987px;}
.x12{left:467.564987px;}
.x17{left:472.244987px;}
.x1a{left:474.764987px;}
.x1f{left:476.924987px;}
.x2c{left:481.604987px;}
.x30{left:486.824987px;}
.x1d{left:509.684987px;}
.x34{left:514.904987px;}
.x1b{left:523.004987px;}
.x18{left:527.324987px;}
.x8{left:709.530000px;}
.xd{left:715.110000px;}
.xe{left:719.250000px;}
.xf{left:721.050000px;}
.x26{left:725.370000px;}
.x27{left:727.350000px;}
.x28{left:728.970000px;}
.x25{left:734.010000px;}
.x24{left:739.770000px;}
.x23{left:742.290000px;}
.x6{left:756.509987px;}
.x2{left:761.009987px;}
.x7{left:765.509987px;}
@media print{
.v1{vertical-align:-68.608000pt;}
.v2{vertical-align:-12.800000pt;}
.v15{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:2.560000pt;}
.v16{vertical-align:5.120000pt;}
.v3{vertical-align:12.800000pt;}
.v11{vertical-align:19.200000pt;}
.v8{vertical-align:20.480000pt;}
.v10{vertical-align:23.680000pt;}
.vc{vertical-align:32.000000pt;}
.va{vertical-align:37.760000pt;}
.v7{vertical-align:41.600000pt;}
.v6{vertical-align:42.880000pt;}
.vb{vertical-align:44.800000pt;}
.v4{vertical-align:48.640000pt;}
.v9{vertical-align:55.680000pt;}
.v14{vertical-align:66.560000pt;}
.v5{vertical-align:72.320000pt;}
.v12{vertical-align:91.520000pt;}
.vd{vertical-align:100.480000pt;}
.v13{vertical-align:115.200000pt;}
.ve{vertical-align:120.960000pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls27{letter-spacing:-0.153600pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.069867pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls29{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.218133pt;}
.ls9{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.704000pt;}
.ls11{letter-spacing:1.850240pt;}
.ls1e{letter-spacing:2.240000pt;}
.lsd{letter-spacing:2.490240pt;}
.ls10{letter-spacing:3.130240pt;}
.ls12{letter-spacing:3.584000pt;}
.ls1c{letter-spacing:4.171520pt;}
.ls15{letter-spacing:4.800000pt;}
.ls25{letter-spacing:4.864000pt;}
.lsc{letter-spacing:6.506667pt;}
.lsb{letter-spacing:7.610240pt;}
.lse{letter-spacing:9.530240pt;}
.ls16{letter-spacing:9.600000pt;}
.ls20{letter-spacing:16.128000pt;}
.ls23{letter-spacing:16.570240pt;}
.ls13{letter-spacing:17.472000pt;}
.ls24{letter-spacing:18.112000pt;}
.lsa{letter-spacing:20.410240pt;}
.ls17{letter-spacing:28.160000pt;}
.ls22{letter-spacing:30.592000pt;}
.ls21{letter-spacing:34.432000pt;}
.ls1d{letter-spacing:41.472000pt;}
.ls4{letter-spacing:45.824000pt;}
.ls18{letter-spacing:57.984000pt;}
.lsf{letter-spacing:149.994667pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws1e{word-spacing:-16.704000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws1f{word-spacing:-15.744000pt;}
.ws9{word-spacing:-14.336000pt;}
.wsf{word-spacing:-14.272000pt;}
.ws6{word-spacing:-14.080000pt;}
.wsd{word-spacing:-14.016000pt;}
.ws10{word-spacing:-13.952000pt;}
.wse{word-spacing:-13.824000pt;}
.ws1d{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.214933pt;}
.wsb{word-spacing:-9.996800pt;}
.ws14{word-spacing:-9.926933pt;}
.ws16{word-spacing:-9.843200pt;}
.ws1c{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:4.992000pt;}
.ws17{word-spacing:10.350720pt;}
.ws8{word-spacing:10.918400pt;}
.ws12{word-spacing:11.291520pt;}
.ws11{word-spacing:11.600000pt;}
.wsa{word-spacing:11.659520pt;}
.ws13{word-spacing:12.340480pt;}
.ws15{word-spacing:12.500480pt;}
.ws1a{word-spacing:128.784000pt;}
.ws1b{word-spacing:129.061333pt;}
.ws19{word-spacing:129.114667pt;}
.ws18{word-spacing:153.456000pt;}
._2a{margin-left:-12.438400pt;}
._28{margin-left:-8.640000pt;}
._22{margin-left:-7.040000pt;}
._24{margin-left:-5.248000pt;}
._1b{margin-left:-4.352000pt;}
._1c{margin-left:-3.093333pt;}
._11{margin-left:-2.137600pt;}
._0{margin-left:-1.177600pt;}
._2{width:1.276800pt;}
._b{width:2.496000pt;}
._c{width:3.722667pt;}
._1d{width:5.056000pt;}
._12{width:6.336000pt;}
._f{width:7.424000pt;}
._10{width:8.384000pt;}
._1a{width:9.344000pt;}
._8{width:10.240000pt;}
._9{width:11.360000pt;}
._a{width:12.333867pt;}
._15{width:13.988267pt;}
._19{width:14.939733pt;}
._23{width:15.924053pt;}
._16{width:17.408000pt;}
._2d{width:18.310400pt;}
._1f{width:19.328000pt;}
._20{width:20.288000pt;}
._21{width:21.312000pt;}
._2f{width:22.323200pt;}
._1e{width:23.232000pt;}
._18{width:24.874667pt;}
._27{width:26.442667pt;}
._13{width:28.480000pt;}
._14{width:29.408000pt;}
._2c{width:31.040000pt;}
._3{width:35.835520pt;}
._d{width:39.104000pt;}
._e{width:40.224000pt;}
._25{width:53.860267pt;}
._17{width:59.018667pt;}
._30{width:60.725333pt;}
._5{width:71.534507pt;}
._31{width:88.320000pt;}
._6{width:102.229120pt;}
._7{width:103.505920pt;}
._29{width:114.880000pt;}
._2e{width:151.877333pt;}
._4{width:156.024960pt;}
._32{width:170.176000pt;}
._26{width:266.240000pt;}
._2b{width:754.831787pt;}
._1{width:1840.692053pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:9.600000pt;}
.y78{bottom:10.560000pt;}
.ye2{bottom:11.813333pt;}
.y7c{bottom:12.680000pt;}
.y82{bottom:14.554667pt;}
.y7a{bottom:14.560000pt;}
.yad{bottom:14.720000pt;}
.yb0{bottom:14.760000pt;}
.y56{bottom:15.680000pt;}
.yda{bottom:27.426667pt;}
.ydb{bottom:56.413333pt;}
.y4{bottom:68.192000pt;}
.y3{bottom:85.152000pt;}
.ydc{bottom:85.440000pt;}
.y2{bottom:102.272000pt;}
.ydd{bottom:114.466667pt;}
.ya8{bottom:125.952000pt;}
.y81{bottom:126.592000pt;}
.y33{bottom:129.952000pt;}
.y54{bottom:130.752000pt;}
.y76{bottom:136.506667pt;}
.ya7{bottom:136.666667pt;}
.yde{bottom:143.493333pt;}
.y32{bottom:148.346667pt;}
.y55{bottom:152.346667pt;}
.y146{bottom:157.306667pt;}
.yff{bottom:157.626667pt;}
.y53{bottom:158.426667pt;}
.y75{bottom:160.666667pt;}
.yd8{bottom:165.466667pt;}
.y31{bottom:166.746667pt;}
.y74{bottom:171.386667pt;}
.ydf{bottom:172.480000pt;}
.y127{bottom:173.306667pt;}
.ya6{bottom:174.586667pt;}
.y145{bottom:175.706667pt;}
.y30{bottom:185.146667pt;}
.y52{bottom:185.946667pt;}
.yfe{bottom:187.226667pt;}
.yd7{bottom:193.146667pt;}
.y144{bottom:194.106667pt;}
.y80{bottom:195.546667pt;}
.ya5{bottom:200.986667pt;}
.ye0{bottom:201.506667pt;}
.y2f{bottom:203.546667pt;}
.y73{bottom:211.706667pt;}
.y10a{bottom:212.826667pt;}
.y51{bottom:213.626667pt;}
.yfd{bottom:217.306667pt;}
.y143{bottom:218.426667pt;}
.yd6{bottom:220.666667pt;}
.y2e{bottom:221.946667pt;}
.y126{bottom:225.146667pt;}
.ye1{bottom:230.533333pt;}
.y142{bottom:233.146667pt;}
.y72{bottom:239.226667pt;}
.y2d{bottom:240.346667pt;}
.y50{bottom:241.146667pt;}
.ya4{bottom:242.746667pt;}
.yfc{bottom:244.986667pt;}
.yd5{bottom:248.346667pt;}
.y141{bottom:251.546667pt;}
.ye3{bottom:255.586667pt;}
.y2c{bottom:258.746667pt;}
.y125{bottom:263.386667pt;}
.y71{bottom:266.906667pt;}
.y109{bottom:267.866667pt;}
.y4f{bottom:268.666667pt;}
.y140{bottom:269.946667pt;}
.ya3{bottom:270.426667pt;}
.yfb{bottom:272.506667pt;}
.yd4{bottom:275.866667pt;}
.y2b{bottom:277.146667pt;}
.y124{bottom:290.906667pt;}
.y70{bottom:294.426667pt;}
.y2a{bottom:295.546667pt;}
.y4e{bottom:296.346667pt;}
.y13f{bottom:297.466667pt;}
.ya2{bottom:297.946667pt;}
.yfa{bottom:300.226667pt;}
.yd3{bottom:303.426667pt;}
.y29{bottom:313.986667pt;}
.y13e{bottom:315.906667pt;}
.y123{bottom:318.626667pt;}
.y6f{bottom:322.146667pt;}
.y108{bottom:323.106667pt;}
.y4d{bottom:323.906667pt;}
.ya1{bottom:325.666667pt;}
.yf9{bottom:327.746667pt;}
.yd2{bottom:331.106667pt;}
.y28{bottom:332.386667pt;}
.y13d{bottom:334.306667pt;}
.y122{bottom:346.146667pt;}
.y6e{bottom:349.666667pt;}
.y27{bottom:350.786667pt;}
.y4c{bottom:351.586667pt;}
.ya0{bottom:353.186667pt;}
.yf8{bottom:355.426667pt;}
.yd1{bottom:361.986667pt;}
.y26{bottom:369.186667pt;}
.y121{bottom:373.826667pt;}
.yd9{bottom:376.640000pt;}
.y6d{bottom:377.346667pt;}
.y107{bottom:378.306667pt;}
.y4b{bottom:379.106667pt;}
.y13c{bottom:380.386667pt;}
.y9f{bottom:380.866667pt;}
.yf7{bottom:382.946667pt;}
.y25{bottom:387.586667pt;}
.y13b{bottom:398.786667pt;}
.y120{bottom:401.346667pt;}
.y6c{bottom:404.866667pt;}
.y24{bottom:405.986667pt;}
.y4a{bottom:406.786667pt;}
.y9e{bottom:408.386667pt;}
.yf6{bottom:410.626667pt;}
.yc8{bottom:412.386667pt;}
.y23{bottom:424.386667pt;}
.y13a{bottom:426.306667pt;}
.y11f{bottom:429.026667pt;}
.y6b{bottom:432.546667pt;}
.y9d{bottom:432.706667pt;}
.y106{bottom:433.506667pt;}
.y49{bottom:434.306667pt;}
.yf5{bottom:438.146667pt;}
.y84{bottom:438.306667pt;}
.yc7{bottom:442.466667pt;}
.y22{bottom:442.786667pt;}
.y9c{bottom:443.426667pt;}
.y139{bottom:444.706667pt;}
.y11e{bottom:456.546667pt;}
.yc6{bottom:459.426667pt;}
.y6a{bottom:460.066667pt;}
.y21{bottom:461.186667pt;}
.y48{bottom:461.986667pt;}
.y138{bottom:463.106667pt;}
.yf4{bottom:465.826667pt;}
.yc5{bottom:475.906667pt;}
.y20{bottom:479.586667pt;}
.y137{bottom:481.506667pt;}
.y11d{bottom:484.226667pt;}
.y9b{bottom:484.706667pt;}
.y69{bottom:487.746667pt;}
.y105{bottom:488.706667pt;}
.y47{bottom:489.506667pt;}
.yf3{bottom:493.346667pt;}
.yc4{bottom:494.306667pt;}
.y1f{bottom:497.986667pt;}
.y136{bottom:499.906667pt;}
.y11c{bottom:511.746667pt;}
.y9a{bottom:512.386667pt;}
.yc3{bottom:512.706667pt;}
.y68{bottom:515.266667pt;}
.y1e{bottom:516.386667pt;}
.y46{bottom:517.186667pt;}
.y135{bottom:518.306667pt;}
.y83{bottom:520.066667pt;}
.yf2{bottom:521.026667pt;}
.y99{bottom:523.106667pt;}
.yc2{bottom:531.106667pt;}
.y1d{bottom:534.786667pt;}
.y134{bottom:536.733333pt;}
.y11b{bottom:539.453333pt;}
.y67{bottom:542.973333pt;}
.y104{bottom:543.933333pt;}
.y45{bottom:544.733333pt;}
.yf1{bottom:548.573333pt;}
.y1c{bottom:553.213333pt;}
.ya9{bottom:558.653333pt;}
.y98{bottom:563.453333pt;}
.y133{bottom:564.413333pt;}
.y11a{bottom:566.973333pt;}
.yc1{bottom:569.373333pt;}
.y66{bottom:570.493333pt;}
.y1b{bottom:571.613333pt;}
.y44{bottom:572.413333pt;}
.yf0{bottom:576.253333pt;}
.y132{bottom:582.813333pt;}
.y1a{bottom:590.013333pt;}
.y97{bottom:591.133333pt;}
.y119{bottom:594.653333pt;}
.y65{bottom:598.173333pt;}
.y7d{bottom:598.653333pt;}
.y103{bottom:599.133333pt;}
.y43{bottom:599.933333pt;}
.y131{bottom:601.213333pt;}
.y96{bottom:601.853333pt;}
.yef{bottom:603.773333pt;}
.yc0{bottom:607.293333pt;}
.y19{bottom:608.413333pt;}
.y118{bottom:622.173333pt;}
.yaa{bottom:622.813333pt;}
.y64{bottom:625.693333pt;}
.y18{bottom:626.813333pt;}
.y42{bottom:627.613333pt;}
.y130{bottom:628.733333pt;}
.yee{bottom:631.453333pt;}
.ybf{bottom:635.133333pt;}
.y95{bottom:642.173333pt;}
.y17{bottom:645.213333pt;}
.y12f{bottom:647.133333pt;}
.y117{bottom:649.853333pt;}
.y63{bottom:653.373333pt;}
.y102{bottom:654.333333pt;}
.y41{bottom:655.133333pt;}
.yed{bottom:658.973333pt;}
.ybe{bottom:662.973333pt;}
.y16{bottom:663.613333pt;}
.y12e{bottom:665.533333pt;}
.y94{bottom:669.533333pt;}
.yd0{bottom:670.493333pt;}
.y116{bottom:677.373333pt;}
.y93{bottom:677.533333pt;}
.y62{bottom:680.893333pt;}
.y15{bottom:682.013333pt;}
.y40{bottom:682.813333pt;}
.y85{bottom:683.933333pt;}
.yec{bottom:686.653333pt;}
.ybd{bottom:687.773333pt;}
.yab{bottom:693.693333pt;}
.ybc{bottom:698.493333pt;}
.y92{bottom:699.773333pt;}
.y14{bottom:700.413333pt;}
.ycf{bottom:703.453333pt;}
.y115{bottom:704.893333pt;}
.y61{bottom:708.573333pt;}
.y101{bottom:709.533333pt;}
.y3f{bottom:710.333333pt;}
.y12d{bottom:711.613333pt;}
.yeb{bottom:714.173333pt;}
.y13{bottom:718.813333pt;}
.y12c{bottom:730.013333pt;}
.yce{bottom:730.973333pt;}
.y114{bottom:732.573333pt;}
.y60{bottom:736.093333pt;}
.ybb{bottom:736.573333pt;}
.y12{bottom:737.213333pt;}
.y91{bottom:737.693333pt;}
.y3e{bottom:738.013333pt;}
.yea{bottom:741.693333pt;}
.y12b{bottom:748.413333pt;}
.y11{bottom:755.613333pt;}
.ycd{bottom:758.653333pt;}
.y113{bottom:760.093333pt;}
.y5f{bottom:760.413333pt;}
.yba{bottom:760.733333pt;}
.yaf{bottom:761.373333pt;}
.y100{bottom:764.733333pt;}
.y90{bottom:765.053333pt;}
.y3d{bottom:765.533333pt;}
.y12a{bottom:766.813333pt;}
.y7b{bottom:767.453333pt;}
.ye9{bottom:769.373333pt;}
.y10{bottom:774.053333pt;}
.y8f{bottom:775.813333pt;}
.yb9{bottom:783.653333pt;}
.y129{bottom:785.253333pt;}
.ycc{bottom:786.213333pt;}
.y112{bottom:787.813333pt;}
.y5e{bottom:789.893333pt;}
.yf{bottom:792.453333pt;}
.y3c{bottom:793.253333pt;}
.ye8{bottom:796.933333pt;}
.y14c{bottom:801.413333pt;}
.y128{bottom:809.413333pt;}
.yb8{bottom:809.573333pt;}
.ye{bottom:810.853333pt;}
.y8e{bottom:813.733333pt;}
.y111{bottom:815.333333pt;}
.ycb{bottom:815.813333pt;}
.y5d{bottom:819.973333pt;}
.y3b{bottom:820.773333pt;}
.ye7{bottom:824.613333pt;}
.yd{bottom:829.253333pt;}
.yb7{bottom:833.733333pt;}
.yae{bottom:834.053333pt;}
.y7f{bottom:838.373333pt;}
.y8d{bottom:841.253333pt;}
.yca{bottom:842.693333pt;}
.y110{bottom:843.013333pt;}
.yb6{bottom:844.453333pt;}
.y5c{bottom:847.653333pt;}
.y3a{bottom:848.453333pt;}
.yc{bottom:848.773333pt;}
.y8c{bottom:851.973333pt;}
.ye6{bottom:852.133333pt;}
.y14b{bottom:866.053333pt;}
.y10f{bottom:870.533333pt;}
.yb{bottom:873.253333pt;}
.y5b{bottom:875.173333pt;}
.y39{bottom:875.973333pt;}
.yc9{bottom:876.133333pt;}
.ye5{bottom:878.693333pt;}
.yb5{bottom:882.373333pt;}
.y8b{bottom:886.853333pt;}
.y14a{bottom:893.573333pt;}
.ya{bottom:897.893333pt;}
.y10e{bottom:898.213333pt;}
.y5a{bottom:902.853333pt;}
.y38{bottom:903.653333pt;}
.ye4{bottom:903.973333pt;}
.yb4{bottom:906.533333pt;}
.y79{bottom:908.933333pt;}
.y149{bottom:911.973333pt;}
.y8a{bottom:914.373333pt;}
.y9{bottom:921.253333pt;}
.y10d{bottom:925.733333pt;}
.y89{bottom:926.693333pt;}
.yb3{bottom:929.413333pt;}
.y59{bottom:930.373333pt;}
.y37{bottom:931.173333pt;}
.y8{bottom:940.773333pt;}
.y10c{bottom:953.413333pt;}
.yb2{bottom:957.413333pt;}
.y58{bottom:958.053333pt;}
.y36{bottom:958.853333pt;}
.y7{bottom:965.253333pt;}
.y88{bottom:967.973333pt;}
.y148{bottom:976.453333pt;}
.yac{bottom:976.933333pt;}
.y10b{bottom:983.013333pt;}
.yb1{bottom:985.253333pt;}
.y57{bottom:985.573333pt;}
.y35{bottom:986.373333pt;}
.y6{bottom:989.893333pt;}
.y87{bottom:992.293333pt;}
.y147{bottom:994.853333pt;}
.y77{bottom:997.733333pt;}
.y86{bottom:1003.013333pt;}
.y34{bottom:1010.693333pt;}
.y5{bottom:1013.280000pt;}
.y1{bottom:1061.440000pt;}
.he{height:24.480000pt;}
.hf{height:24.512000pt;}
.hb{height:25.472000pt;}
.hd{height:27.552000pt;}
.hc{height:29.440000pt;}
.h1b{height:29.600000pt;}
.h1c{height:29.632000pt;}
.h8{height:30.560000pt;}
.h1f{height:36.726562pt;}
.h25{height:43.031250pt;}
.h26{height:46.593750pt;}
.h22{height:47.742188pt;}
.h5{height:52.750000pt;}
.h4{height:52.785000pt;}
.h3{height:57.375000pt;}
.h2{height:58.563750pt;}
.h20{height:62.761250pt;}
.h24{height:62.921250pt;}
.h7{height:66.507188pt;}
.h23{height:74.477812pt;}
.h6{height:75.602187pt;}
.h1d{height:81.937500pt;}
.h1a{height:100.233667pt;}
.h11{height:100.255000pt;}
.h14{height:100.415000pt;}
.h13{height:106.655000pt;}
.h15{height:119.697500pt;}
.ha{height:124.817500pt;}
.h9{height:130.577500pt;}
.h19{height:130.602292pt;}
.h10{height:130.684167pt;}
.h12{height:135.615625pt;}
.h16{height:151.697500pt;}
.h18{height:173.457500pt;}
.h1e{height:173.617500pt;}
.h17{height:178.335000pt;}
.h21{height:283.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:39.040000pt;}
.w4{width:40.000000pt;}
.w3{width:40.160000pt;}
.w5{width:40.960000pt;}
.w8{width:41.120000pt;}
.w6{width:43.040000pt;}
.w9{width:48.000000pt;}
.wf{width:48.160000pt;}
.wa{width:49.120000pt;}
.wc{width:50.720000pt;}
.we{width:52.960000pt;}
.wd{width:53.280000pt;}
.wb{width:54.080000pt;}
.w10{width:56.000000pt;}
.w11{width:545.280000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:8.704000pt;}
.x9{left:9.600000pt;}
.x3a{left:14.813333pt;}
.x38{left:36.026667pt;}
.x3b{left:50.213333pt;}
.x1{left:113.471988pt;}
.x4{left:122.271988pt;}
.x37{left:123.840000pt;}
.x35{left:135.066655pt;}
.x3{left:150.426655pt;}
.xc{left:160.666655pt;}
.x36{left:170.746655pt;}
.x3c{left:177.186667pt;}
.x31{left:204.506655pt;}
.x5{left:229.946655pt;}
.xa{left:265.506655pt;}
.x32{left:283.426655pt;}
.x33{left:285.506655pt;}
.x15{left:292.226655pt;}
.x19{left:310.146655pt;}
.x2f{left:316.226655pt;}
.x1c{left:321.986655pt;}
.x16{left:325.826655pt;}
.x2a{left:331.906655pt;}
.x14{left:333.986655pt;}
.x2b{left:337.346655pt;}
.x20{left:338.946655pt;}
.x29{left:344.386655pt;}
.x1e{left:346.786655pt;}
.x10{left:348.386655pt;}
.x11{left:353.826655pt;}
.x2d{left:359.746655pt;}
.x21{left:374.626655pt;}
.x22{left:382.946655pt;}
.xb{left:390.626655pt;}
.x2e{left:394.626655pt;}
.x13{left:413.986655pt;}
.x12{left:415.613322pt;}
.x17{left:419.773322pt;}
.x1a{left:422.013322pt;}
.x1f{left:423.933322pt;}
.x2c{left:428.093322pt;}
.x30{left:432.733322pt;}
.x1d{left:453.053322pt;}
.x34{left:457.693322pt;}
.x1b{left:464.893322pt;}
.x18{left:468.733322pt;}
.x8{left:630.693333pt;}
.xd{left:635.653333pt;}
.xe{left:639.333333pt;}
.xf{left:640.933333pt;}
.x26{left:644.773333pt;}
.x27{left:646.533333pt;}
.x28{left:647.973333pt;}
.x25{left:652.453333pt;}
.x24{left:657.573333pt;}
.x23{left:659.813333pt;}
.x6{left:672.453322pt;}
.x2{left:676.453322pt;}
.x7{left:680.453322pt;}
}




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