
    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_c05f6a792e2d5c3c6611aeba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aef8ecc00389cdfdcd78970d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5a2585176352de96aab248ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_48c403ed8c268d62c7286230.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_703cfec95f653f2b7f2d354e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_703485ac5a0e3af1ee5ff7cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6{letter-spacing:-1.260000px;}
.ls8{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.269400px;}
.ls11{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.053400px;}
.ls15{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.053400px;}
.ls16{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.181200px;}
.lsb{letter-spacing:0.223800px;}
.ls1c{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.424080px;}
.lsf{letter-spacing:10.026720px;}
.ls13{letter-spacing:10.170720px;}
.lse{letter-spacing:13.626720px;}
.ls14{letter-spacing:25.866720px;}
.ls1b{letter-spacing:64.026720px;}
.ls1d{letter-spacing:78.893280px;}
.ls18{letter-spacing:90.642720px;}
.ls1a{letter-spacing:90.666720px;}
.ls17{letter-spacing:91.362720px;}
.ls19{letter-spacing:91.386720px;}
.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;}
}
.ws13{word-spacing:-59.760000px;}
.ws2{word-spacing:-35.712000px;}
.wse{word-spacing:-16.254600px;}
.ws0{word-spacing:-15.300000px;}
.ws10{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.886600px;}
.ws12{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.680200px;}
.ws7{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.ws14{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.283800px;}
.ws15{word-spacing:-12.241200px;}
.ws1{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.790600px;}
.wsa{word-spacing:-11.700000px;}
.wsd{word-spacing:0.000000px;}
.wsb{word-spacing:11.893080px;}
.ws4{word-spacing:28.132560px;}
._1d{margin-left:-4.438225px;}
._1c{margin-left:-3.132000px;}
._1{margin-left:-1.282560px;}
._0{width:1.060560px;}
._7{width:2.060640px;}
._3{width:3.294000px;}
._2{width:4.356000px;}
._e{width:5.467440px;}
._9{width:6.790560px;}
._8{width:8.424000px;}
._f{width:10.098000px;}
._4{width:11.718000px;}
._17{width:12.744239px;}
._25{width:13.780922px;}
._5{width:15.012000px;}
._6{width:16.772880px;}
._2d{width:17.810640px;}
._d{width:18.954000px;}
._c{width:20.304000px;}
._b{width:21.606000px;}
._a{width:22.620000px;}
._16{width:24.171955px;}
._15{width:25.338001px;}
._21{width:26.473800px;}
._14{width:27.586320px;}
._11{width:29.419680px;}
._10{width:30.672000px;}
._24{width:31.832639px;}
._1b{width:33.226560px;}
._1a{width:34.452000px;}
._23{width:35.600398px;}
._22{width:36.827041px;}
._13{width:38.251440px;}
._27{width:40.198200px;}
._2f{width:41.309160px;}
._2a{width:42.936839px;}
._12{width:44.388000px;}
._26{width:46.209779px;}
._28{width:47.389740px;}
._3f{width:48.679440px;}
._36{width:50.034240px;}
._32{width:51.685680px;}
._2e{width:52.766640px;}
._20{width:53.769600px;}
._1f{width:54.865440px;}
._2c{width:57.049680px;}
._2b{width:61.567920px;}
._19{width:62.823179px;}
._39{width:64.055701px;}
._3b{width:65.107499px;}
._37{width:66.229200px;}
._30{width:68.320800px;}
._1e{width:73.518098px;}
._3a{width:77.404320px;}
._3d{width:79.410960px;}
._3e{width:92.269440px;}
._18{width:98.210220px;}
._3c{width:101.044080px;}
._34{width:109.439760px;}
._35{width:115.359600px;}
._40{width:154.319760px;}
._41{width:156.442320px;}
._38{width:193.622400px;}
._33{width:211.729440px;}
._31{width:244.971360px;}
._29{width:359.454240px;}
.fc4{color:rgb(51,51,255);}
.fc3{color:rgb(0,0,204);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:2.340000px;}
.y7{bottom:4.860000px;}
.y81{bottom:4.860150px;}
.y7e{bottom:10.979850px;}
.y4{bottom:10.980000px;}
.y8{bottom:14.040000px;}
.ya{bottom:16.200000px;}
.y6{bottom:18.540000px;}
.y80{bottom:18.540150px;}
.y3{bottom:19.260000px;}
.y9{bottom:30.060000px;}
.y5{bottom:32.220000px;}
.y7f{bottom:32.220150px;}
.y103{bottom:80.640000px;}
.y14c{bottom:85.140000px;}
.y17c{bottom:86.040000px;}
.yb6{bottom:86.580000px;}
.yeb{bottom:94.140000px;}
.y45{bottom:94.500000px;}
.y102{bottom:97.920000px;}
.y14b{bottom:102.420000px;}
.yb5{bottom:103.860000px;}
.y17b{bottom:104.220000px;}
.y161{bottom:107.640000px;}
.y7b{bottom:107.820000px;}
.y44{bottom:108.360000px;}
.yea{bottom:111.420000px;}
.y101{bottom:115.020000px;}
.y14a{bottom:119.520000px;}
.yb4{bottom:121.140000px;}
.y43{bottom:122.040000px;}
.y17a{bottom:122.220000px;}
.y160{bottom:124.920000px;}
.y7a{bottom:125.100000px;}
.ye9{bottom:128.520000px;}
.y100{bottom:132.300000px;}
.y149{bottom:136.836000px;}
.yb3{bottom:138.456000px;}
.y179{bottom:140.436000px;}
.y15f{bottom:142.056000px;}
.y79{bottom:142.416000px;}
.ye8{bottom:145.836000px;}
.yff{bottom:149.616000px;}
.y42{bottom:149.796000px;}
.y148{bottom:154.110000px;}
.yb2{bottom:155.550000px;}
.y178{bottom:158.610000px;}
.y15e{bottom:159.330000px;}
.y78{bottom:159.690000px;}
.ye7{bottom:163.110000px;}
.y41{bottom:163.470000px;}
.yfe{bottom:166.890000px;}
.y147{bottom:171.390000px;}
.yb1{bottom:172.830000px;}
.y15d{bottom:176.610000px;}
.y77{bottom:176.790000px;}
.y40{bottom:178.050000px;}
.ye6{bottom:180.390000px;}
.yfd{bottom:184.170000px;}
.y146{bottom:188.670000px;}
.yb0{bottom:190.110000px;}
.y15c{bottom:193.890000px;}
.y76{bottom:194.070000px;}
.y177{bottom:194.790000px;}
.y3f{bottom:194.970000px;}
.ye5{bottom:197.670000px;}
.yfc{bottom:201.450000px;}
.y145{bottom:205.950000px;}
.yaf{bottom:207.390000px;}
.y3e{bottom:210.450000px;}
.y15b{bottom:211.170000px;}
.y75{bottom:211.350000px;}
.y176{bottom:212.790000px;}
.ye4{bottom:214.950000px;}
.yfb{bottom:218.550000px;}
.yae{bottom:224.670000px;}
.y3d{bottom:226.110000px;}
.y144{bottom:227.550000px;}
.y15a{bottom:228.450000px;}
.y74{bottom:228.630000px;}
.y175{bottom:230.970000px;}
.ye3{bottom:232.050000px;}
.yfa{bottom:235.830000px;}
.y3c{bottom:241.590000px;}
.yad{bottom:241.950000px;}
.y159{bottom:245.550000px;}
.y73{bottom:245.910000px;}
.y174{bottom:249.150000px;}
.ye2{bottom:249.330000px;}
.yf9{bottom:253.110000px;}
.y143{bottom:253.830000px;}
.y3b{bottom:257.070000px;}
.yac{bottom:259.050000px;}
.y158{bottom:262.830000px;}
.y72{bottom:263.010000px;}
.ye1{bottom:266.610000px;}
.y173{bottom:267.150000px;}
.yf8{bottom:270.390000px;}
.y142{bottom:271.110000px;}
.y3a{bottom:272.550000px;}
.yab{bottom:276.330000px;}
.y157{bottom:280.110000px;}
.y71{bottom:280.290000px;}
.ye0{bottom:283.890000px;}
.y172{bottom:285.330000px;}
.yf7{bottom:287.670000px;}
.y141{bottom:288.390000px;}
.yaa{bottom:293.610000px;}
.y156{bottom:297.390000px;}
.y70{bottom:297.570000px;}
.ydf{bottom:301.170000px;}
.y171{bottom:303.330000px;}
.yf6{bottom:304.950000px;}
.y140{bottom:305.670000px;}
.y39{bottom:310.890000px;}
.y155{bottom:314.670000px;}
.y6f{bottom:314.850000px;}
.yde{bottom:318.450000px;}
.y170{bottom:321.510000px;}
.yf5{bottom:322.050000px;}
.y13f{bottom:322.950000px;}
.y38{bottom:328.170000px;}
.y154{bottom:331.950000px;}
.y6e{bottom:332.130000px;}
.ydd{bottom:335.550000px;}
.yf4{bottom:339.330000px;}
.y16f{bottom:339.690000px;}
.y13e{bottom:340.050000px;}
.y37{bottom:345.450000px;}
.y153{bottom:349.050000px;}
.y6d{bottom:349.410000px;}
.ydc{bottom:352.830000px;}
.yf3{bottom:356.610000px;}
.y13d{bottom:357.330000px;}
.y16e{bottom:357.690000px;}
.y36{bottom:362.550000px;}
.y152{bottom:366.330000px;}
.y6c{bottom:366.510000px;}
.ydb{bottom:370.110000px;}
.yf2{bottom:373.890000px;}
.y13c{bottom:374.610000px;}
.y16d{bottom:375.870000px;}
.y35{bottom:379.830000px;}
.y151{bottom:383.610000px;}
.y6b{bottom:383.790000px;}
.yda{bottom:387.435000px;}
.yf1{bottom:391.215000px;}
.y13b{bottom:391.935000px;}
.y16c{bottom:394.095000px;}
.y34{bottom:397.155000px;}
.y150{bottom:400.935000px;}
.yd9{bottom:404.715000px;}
.y6a{bottom:405.615000px;}
.yf0{bottom:408.495000px;}
.y13a{bottom:409.215000px;}
.y16b{bottom:412.095000px;}
.y33{bottom:414.435000px;}
.y14f{bottom:418.215000px;}
.y10f{bottom:421.995000px;}
.y69{bottom:422.895000px;}
.yef{bottom:425.595000px;}
.yd8{bottom:426.315000px;}
.y139{bottom:426.495000px;}
.y32{bottom:431.715000px;}
.y14e{bottom:435.495000px;}
.y16a{bottom:438.375000px;}
.y10e{bottom:439.095000px;}
.yee{bottom:442.875000px;}
.y138{bottom:443.595000px;}
.y31{bottom:448.815000px;}
.ya9{bottom:448.995000px;}
.y68{bottom:449.175000px;}
.yd7{bottom:452.595000px;}
.y10d{bottom:456.375000px;}
.y137{bottom:460.875000px;}
.y30{bottom:466.095000px;}
.y67{bottom:466.455000px;}
.yed{bottom:469.155000px;}
.yd6{bottom:469.875000px;}
.y10c{bottom:473.655000px;}
.y136{bottom:478.155000px;}
.y2f{bottom:483.375000px;}
.y66{bottom:483.555000px;}
.y1a0{bottom:485.715000px;}
.yd5{bottom:487.155000px;}
.y10b{bottom:490.935000px;}
.y135{bottom:495.435000px;}
.y2e{bottom:500.655000px;}
.y65{bottom:500.835000px;}
.yd4{bottom:504.435000px;}
.y115{bottom:508.215000px;}
.y10a{bottom:512.535000px;}
.y134{bottom:512.715000px;}
.ya8{bottom:517.935000px;}
.y64{bottom:518.115000px;}
.y2d{bottom:521.175000px;}
.yd3{bottom:521.715000px;}
.y114{bottom:525.315000px;}
.y133{bottom:529.815000px;}
.y19f{bottom:530.715000px;}
.ya7{bottom:535.215000px;}
.y63{bottom:535.395000px;}
.yd2{bottom:538.815000px;}
.y113{bottom:542.595000px;}
.y132{bottom:547.095000px;}
.ya6{bottom:552.315000px;}
.y62{bottom:552.675000px;}
.yd1{bottom:556.095000px;}
.y112{bottom:559.875000px;}
.y2c{bottom:561.315000px;}
.y131{bottom:564.375000px;}
.ya5{bottom:569.595000px;}
.y61{bottom:569.955000px;}
.yd0{bottom:573.375000px;}
.y111{bottom:577.155000px;}
.y19e{bottom:581.475000px;}
.y130{bottom:581.655000px;}
.ya4{bottom:586.875000px;}
.y60{bottom:587.055000px;}
.ycf{bottom:590.655000px;}
.y169{bottom:594.435000px;}
.y2b{bottom:596.415000px;}
.y110{bottom:598.935000px;}
.ya3{bottom:604.155000px;}
.y5f{bottom:604.335000px;}
.y19d{bottom:606.315000px;}
.yce{bottom:607.935000px;}
.y168{bottom:611.715000px;}
.y2a{bottom:611.895000px;}
.y12f{bottom:616.215000px;}
.y19c{bottom:620.895000px;}
.ya2{bottom:621.435000px;}
.y5e{bottom:621.615000px;}
.ycd{bottom:625.215000px;}
.y167{bottom:628.815000px;}
.y29{bottom:633.315000px;}
.y19b{bottom:638.175000px;}
.ya1{bottom:638.715000px;}
.y5d{bottom:638.895000px;}
.ycc{bottom:642.345000px;}
.y166{bottom:646.125000px;}
.y28{bottom:649.005000px;}
.y12e{bottom:650.625000px;}
.y19a{bottom:655.305000px;}
.ya0{bottom:655.845000px;}
.y5c{bottom:656.205000px;}
.ycb{bottom:659.625000px;}
.y165{bottom:663.405000px;}
.y27{bottom:664.485000px;}
.y12d{bottom:667.905000px;}
.y199{bottom:672.585000px;}
.y9f{bottom:673.125000px;}
.y5b{bottom:673.305000px;}
.yca{bottom:676.905000px;}
.y26{bottom:679.965000px;}
.y164{bottom:680.685000px;}
.y14d{bottom:681.405000px;}
.y12c{bottom:685.185000px;}
.y198{bottom:689.865000px;}
.y9e{bottom:690.405000px;}
.y5a{bottom:690.585000px;}
.yc9{bottom:694.185000px;}
.y25{bottom:695.445000px;}
.y163{bottom:697.965000px;}
.y12b{bottom:702.465000px;}
.y197{bottom:707.145000px;}
.y9d{bottom:707.685000px;}
.y59{bottom:707.865000px;}
.y24{bottom:711.105000px;}
.yc8{bottom:711.465000px;}
.y12a{bottom:719.745000px;}
.y162{bottom:724.065000px;}
.y196{bottom:724.425000px;}
.y9c{bottom:724.965000px;}
.y58{bottom:725.145000px;}
.y23{bottom:726.585000px;}
.yc7{bottom:728.745000px;}
.y129{bottom:736.845000px;}
.y195{bottom:741.705000px;}
.y22{bottom:742.065000px;}
.y9b{bottom:742.245000px;}
.y57{bottom:742.425000px;}
.yc6{bottom:745.845000px;}
.y194{bottom:755.565000px;}
.y21{bottom:757.545000px;}
.y128{bottom:758.625000px;}
.y9a{bottom:759.345000px;}
.y56{bottom:759.705000px;}
.yc5{bottom:763.125000px;}
.y20{bottom:773.205000px;}
.y193{bottom:775.365000px;}
.y99{bottom:776.625000px;}
.y55{bottom:776.805000px;}
.yc4{bottom:780.405000px;}
.y127{bottom:784.905000px;}
.y1f{bottom:788.685000px;}
.y192{bottom:789.225000px;}
.y98{bottom:793.905000px;}
.y54{bottom:794.085000px;}
.yc3{bottom:797.685000px;}
.y126{bottom:802.185000px;}
.y191{bottom:803.085000px;}
.y1e{bottom:804.165000px;}
.y97{bottom:811.185000px;}
.y53{bottom:811.365000px;}
.yc2{bottom:814.965000px;}
.y190{bottom:816.765000px;}
.y125{bottom:819.465000px;}
.y1d{bottom:819.645000px;}
.y96{bottom:828.465000px;}
.y52{bottom:828.645000px;}
.y18f{bottom:830.625000px;}
.yc1{bottom:832.065000px;}
.y1c{bottom:835.125000px;}
.y124{bottom:836.565000px;}
.y18e{bottom:844.485000px;}
.y95{bottom:845.565000px;}
.y51{bottom:845.925000px;}
.yc0{bottom:849.345000px;}
.y1b{bottom:850.785000px;}
.y123{bottom:853.845000px;}
.y18d{bottom:858.165000px;}
.y94{bottom:862.845000px;}
.y50{bottom:863.205000px;}
.y1a{bottom:866.265000px;}
.ybf{bottom:866.625000px;}
.y122{bottom:871.125000px;}
.y18c{bottom:872.025000px;}
.y93{bottom:880.125000px;}
.y4f{bottom:880.305000px;}
.y19{bottom:881.745000px;}
.ybe{bottom:883.905000px;}
.y18b{bottom:885.885000px;}
.y121{bottom:888.405000px;}
.y18{bottom:897.270000px;}
.y92{bottom:897.450000px;}
.y4e{bottom:897.630000px;}
.ybd{bottom:901.230000px;}
.y120{bottom:905.730000px;}
.y18a{bottom:909.330000px;}
.y17{bottom:912.930000px;}
.y91{bottom:914.730000px;}
.y4d{bottom:914.910000px;}
.ybc{bottom:918.510000px;}
.y11f{bottom:923.010000px;}
.y16{bottom:928.410000px;}
.y90{bottom:932.010000px;}
.y4c{bottom:932.190000px;}
.ybb{bottom:935.610000px;}
.y11e{bottom:940.110000px;}
.y15{bottom:943.890000px;}
.y8f{bottom:949.110000px;}
.y4b{bottom:949.470000px;}
.yba{bottom:952.890000px;}
.y11d{bottom:957.390000px;}
.y189{bottom:957.750000px;}
.y14{bottom:959.370000px;}
.y8e{bottom:966.390000px;}
.y4a{bottom:966.750000px;}
.yb9{bottom:970.170000px;}
.y188{bottom:971.430000px;}
.y11c{bottom:974.670000px;}
.y13{bottom:975.030000px;}
.y8d{bottom:983.670000px;}
.y49{bottom:983.850000px;}
.y187{bottom:985.290000px;}
.yec{bottom:987.450000px;}
.y12{bottom:990.510000px;}
.yb8{bottom:991.950000px;}
.y186{bottom:999.150000px;}
.y8c{bottom:1000.950000px;}
.y48{bottom:1001.130000px;}
.y109{bottom:1004.730000px;}
.y11{bottom:1005.990000px;}
.yb7{bottom:1009.230000px;}
.y185{bottom:1012.830000px;}
.y8b{bottom:1018.230000px;}
.y47{bottom:1018.410000px;}
.y10{bottom:1021.470000px;}
.y108{bottom:1022.010000px;}
.y11b{bottom:1026.510000px;}
.y184{bottom:1026.690000px;}
.y8a{bottom:1035.510000px;}
.y46{bottom:1035.690000px;}
.yf{bottom:1037.130000px;}
.y107{bottom:1039.110000px;}
.y183{bottom:1040.550000px;}
.y11a{bottom:1043.610000px;}
.y89{bottom:1052.610000px;}
.y182{bottom:1054.230000px;}
.y106{bottom:1056.390000px;}
.y119{bottom:1060.890000px;}
.y181{bottom:1068.090000px;}
.y88{bottom:1069.890000px;}
.ye{bottom:1071.150000px;}
.y105{bottom:1078.170000px;}
.y180{bottom:1081.950000px;}
.y87{bottom:1087.170000px;}
.y104{bottom:1095.450000px;}
.y17f{bottom:1095.630000px;}
.y86{bottom:1104.450000px;}
.yd{bottom:1112.370000px;}
.y118{bottom:1112.730000px;}
.y17e{bottom:1119.210000px;}
.y85{bottom:1121.730000px;}
.y117{bottom:1130.010000px;}
.y84{bottom:1139.010000px;}
.y116{bottom:1147.140000px;}
.yc{bottom:1153.800000px;}
.y17d{bottom:1155.240000px;}
.y83{bottom:1156.140000px;}
.y82{bottom:1173.420000px;}
.y7d{bottom:1214.820000px;}
.y2{bottom:1217.700000px;}
.y7c{bottom:1233.720000px;}
.y1{bottom:1234.980000px;}
.hc{height:33.683203px;}
.h10{height:34.036523px;}
.hf{height:35.120039px;}
.h5{height:36.698203px;}
.hb{height:38.100586px;}
.h6{height:41.220000px;}
.h3{height:41.726953px;}
.h2{height:42.164648px;}
.hd{height:43.506914px;}
.h4{height:43.560000px;}
.h9{height:43.822266px;}
.he{height:44.265586px;}
.h8{height:46.736719px;}
.h12{height:50.273438px;}
.h13{height:65.884219px;}
.h11{height:67.565039px;}
.ha{height:83.956641px;}
.h7{height:100.546875px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:186.330000px;}
.w2{width:267.915000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x4{left:60.480000px;}
.xb{left:70.200000px;}
.xa{left:80.820000px;}
.x8{left:82.440000px;}
.x7{left:87.480000px;}
.x10{left:94.535987px;}
.x21{left:97.235987px;}
.x23{left:102.275987px;}
.x16{left:108.035987px;}
.x15{left:112.175987px;}
.x14{left:116.315987px;}
.x22{left:124.235987px;}
.x11{left:136.475987px;}
.x24{left:142.955987px;}
.x17{left:151.229987px;}
.xc{left:178.050000px;}
.x9{left:390.855000px;}
.x2{left:435.855000px;}
.x12{left:439.094987px;}
.x3{left:442.695000px;}
.xf{left:446.474987px;}
.xe{left:457.455000px;}
.xd{left:468.105000px;}
.x1{left:472.785000px;}
.x1d{left:480.164987px;}
.x6{left:484.845000px;}
.x1b{left:487.724987px;}
.x1a{left:491.864987px;}
.x18{left:496.004987px;}
.x1c{left:500.324987px;}
.x13{left:504.644987px;}
.x20{left:511.484987px;}
.x1f{left:534.884987px;}
.x19{left:538.484987px;}
.x1e{left:563.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.120000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.239467pt;}
.ls11{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.047467pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.047467pt;}
.ls16{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.161067pt;}
.lsb{letter-spacing:0.198933pt;}
.ls1c{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.376960pt;}
.lsf{letter-spacing:8.912640pt;}
.ls13{letter-spacing:9.040640pt;}
.lse{letter-spacing:12.112640pt;}
.ls14{letter-spacing:22.992640pt;}
.ls1b{letter-spacing:56.912640pt;}
.ls1d{letter-spacing:70.127360pt;}
.ls18{letter-spacing:80.571307pt;}
.ls1a{letter-spacing:80.592640pt;}
.ls17{letter-spacing:81.211307pt;}
.ls19{letter-spacing:81.232640pt;}
.ws13{word-spacing:-53.120000pt;}
.ws2{word-spacing:-31.744000pt;}
.wse{word-spacing:-14.448533pt;}
.ws0{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.232533pt;}
.ws12{word-spacing:-13.096533pt;}
.wsf{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws14{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.918933pt;}
.ws15{word-spacing:-10.881067pt;}
.ws1{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.480533pt;}
.wsa{word-spacing:-10.400000pt;}
.wsd{word-spacing:0.000000pt;}
.wsb{word-spacing:10.571627pt;}
.ws4{word-spacing:25.006720pt;}
._1d{margin-left:-3.945089pt;}
._1c{margin-left:-2.784000pt;}
._1{margin-left:-1.140053pt;}
._0{width:0.942720pt;}
._7{width:1.831680pt;}
._3{width:2.928000pt;}
._2{width:3.872000pt;}
._e{width:4.859947pt;}
._9{width:6.036053pt;}
._8{width:7.488000pt;}
._f{width:8.976000pt;}
._4{width:10.416000pt;}
._17{width:11.328212pt;}
._25{width:12.249709pt;}
._5{width:13.344000pt;}
._6{width:14.909227pt;}
._2d{width:15.831680pt;}
._d{width:16.848000pt;}
._c{width:18.048000pt;}
._b{width:19.205333pt;}
._a{width:20.106667pt;}
._16{width:21.486182pt;}
._15{width:22.522668pt;}
._21{width:23.532266pt;}
._14{width:24.521173pt;}
._11{width:26.150827pt;}
._10{width:27.264000pt;}
._24{width:28.295679pt;}
._1b{width:29.534720pt;}
._1a{width:30.624000pt;}
._23{width:31.644798pt;}
._22{width:32.735148pt;}
._13{width:34.001280pt;}
._27{width:35.731733pt;}
._2f{width:36.719254pt;}
._2a{width:38.166079pt;}
._12{width:39.456000pt;}
._26{width:41.075359pt;}
._28{width:42.124213pt;}
._3f{width:43.270613pt;}
._36{width:44.474880pt;}
._32{width:45.942827pt;}
._2e{width:46.903680pt;}
._20{width:47.795200pt;}
._1f{width:48.769280pt;}
._2c{width:50.710827pt;}
._2b{width:54.727040pt;}
._19{width:55.842826pt;}
._39{width:56.938401pt;}
._3b{width:57.873332pt;}
._37{width:58.870400pt;}
._30{width:60.729600pt;}
._1e{width:65.349420pt;}
._3a{width:68.803840pt;}
._3d{width:70.587520pt;}
._3e{width:82.017280pt;}
._18{width:87.297973pt;}
._3c{width:89.816960pt;}
._34{width:97.279787pt;}
._35{width:102.541867pt;}
._40{width:137.173120pt;}
._41{width:139.059840pt;}
._38{width:172.108800pt;}
._33{width:188.203947pt;}
._31{width:217.752320pt;}
._29{width:319.514880pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.080000pt;}
.y7{bottom:4.320000pt;}
.y81{bottom:4.320133pt;}
.y7e{bottom:9.759867pt;}
.y4{bottom:9.760000pt;}
.y8{bottom:12.480000pt;}
.ya{bottom:14.400000pt;}
.y6{bottom:16.480000pt;}
.y80{bottom:16.480133pt;}
.y3{bottom:17.120000pt;}
.y9{bottom:26.720000pt;}
.y5{bottom:28.640000pt;}
.y7f{bottom:28.640133pt;}
.y103{bottom:71.680000pt;}
.y14c{bottom:75.680000pt;}
.y17c{bottom:76.480000pt;}
.yb6{bottom:76.960000pt;}
.yeb{bottom:83.680000pt;}
.y45{bottom:84.000000pt;}
.y102{bottom:87.040000pt;}
.y14b{bottom:91.040000pt;}
.yb5{bottom:92.320000pt;}
.y17b{bottom:92.640000pt;}
.y161{bottom:95.680000pt;}
.y7b{bottom:95.840000pt;}
.y44{bottom:96.320000pt;}
.yea{bottom:99.040000pt;}
.y101{bottom:102.240000pt;}
.y14a{bottom:106.240000pt;}
.yb4{bottom:107.680000pt;}
.y43{bottom:108.480000pt;}
.y17a{bottom:108.640000pt;}
.y160{bottom:111.040000pt;}
.y7a{bottom:111.200000pt;}
.ye9{bottom:114.240000pt;}
.y100{bottom:117.600000pt;}
.y149{bottom:121.632000pt;}
.yb3{bottom:123.072000pt;}
.y179{bottom:124.832000pt;}
.y15f{bottom:126.272000pt;}
.y79{bottom:126.592000pt;}
.ye8{bottom:129.632000pt;}
.yff{bottom:132.992000pt;}
.y42{bottom:133.152000pt;}
.y148{bottom:136.986667pt;}
.yb2{bottom:138.266667pt;}
.y178{bottom:140.986667pt;}
.y15e{bottom:141.626667pt;}
.y78{bottom:141.946667pt;}
.ye7{bottom:144.986667pt;}
.y41{bottom:145.306667pt;}
.yfe{bottom:148.346667pt;}
.y147{bottom:152.346667pt;}
.yb1{bottom:153.626667pt;}
.y15d{bottom:156.986667pt;}
.y77{bottom:157.146667pt;}
.y40{bottom:158.266667pt;}
.ye6{bottom:160.346667pt;}
.yfd{bottom:163.706667pt;}
.y146{bottom:167.706667pt;}
.yb0{bottom:168.986667pt;}
.y15c{bottom:172.346667pt;}
.y76{bottom:172.506667pt;}
.y177{bottom:173.146667pt;}
.y3f{bottom:173.306667pt;}
.ye5{bottom:175.706667pt;}
.yfc{bottom:179.066667pt;}
.y145{bottom:183.066667pt;}
.yaf{bottom:184.346667pt;}
.y3e{bottom:187.066667pt;}
.y15b{bottom:187.706667pt;}
.y75{bottom:187.866667pt;}
.y176{bottom:189.146667pt;}
.ye4{bottom:191.066667pt;}
.yfb{bottom:194.266667pt;}
.yae{bottom:199.706667pt;}
.y3d{bottom:200.986667pt;}
.y144{bottom:202.266667pt;}
.y15a{bottom:203.066667pt;}
.y74{bottom:203.226667pt;}
.y175{bottom:205.306667pt;}
.ye3{bottom:206.266667pt;}
.yfa{bottom:209.626667pt;}
.y3c{bottom:214.746667pt;}
.yad{bottom:215.066667pt;}
.y159{bottom:218.266667pt;}
.y73{bottom:218.586667pt;}
.y174{bottom:221.466667pt;}
.ye2{bottom:221.626667pt;}
.yf9{bottom:224.986667pt;}
.y143{bottom:225.626667pt;}
.y3b{bottom:228.506667pt;}
.yac{bottom:230.266667pt;}
.y158{bottom:233.626667pt;}
.y72{bottom:233.786667pt;}
.ye1{bottom:236.986667pt;}
.y173{bottom:237.466667pt;}
.yf8{bottom:240.346667pt;}
.y142{bottom:240.986667pt;}
.y3a{bottom:242.266667pt;}
.yab{bottom:245.626667pt;}
.y157{bottom:248.986667pt;}
.y71{bottom:249.146667pt;}
.ye0{bottom:252.346667pt;}
.y172{bottom:253.626667pt;}
.yf7{bottom:255.706667pt;}
.y141{bottom:256.346667pt;}
.yaa{bottom:260.986667pt;}
.y156{bottom:264.346667pt;}
.y70{bottom:264.506667pt;}
.ydf{bottom:267.706667pt;}
.y171{bottom:269.626667pt;}
.yf6{bottom:271.066667pt;}
.y140{bottom:271.706667pt;}
.y39{bottom:276.346667pt;}
.y155{bottom:279.706667pt;}
.y6f{bottom:279.866667pt;}
.yde{bottom:283.066667pt;}
.y170{bottom:285.786667pt;}
.yf5{bottom:286.266667pt;}
.y13f{bottom:287.066667pt;}
.y38{bottom:291.706667pt;}
.y154{bottom:295.066667pt;}
.y6e{bottom:295.226667pt;}
.ydd{bottom:298.266667pt;}
.yf4{bottom:301.626667pt;}
.y16f{bottom:301.946667pt;}
.y13e{bottom:302.266667pt;}
.y37{bottom:307.066667pt;}
.y153{bottom:310.266667pt;}
.y6d{bottom:310.586667pt;}
.ydc{bottom:313.626667pt;}
.yf3{bottom:316.986667pt;}
.y13d{bottom:317.626667pt;}
.y16e{bottom:317.946667pt;}
.y36{bottom:322.266667pt;}
.y152{bottom:325.626667pt;}
.y6c{bottom:325.786667pt;}
.ydb{bottom:328.986667pt;}
.yf2{bottom:332.346667pt;}
.y13c{bottom:332.986667pt;}
.y16d{bottom:334.106667pt;}
.y35{bottom:337.626667pt;}
.y151{bottom:340.986667pt;}
.y6b{bottom:341.146667pt;}
.yda{bottom:344.386667pt;}
.yf1{bottom:347.746667pt;}
.y13b{bottom:348.386667pt;}
.y16c{bottom:350.306667pt;}
.y34{bottom:353.026667pt;}
.y150{bottom:356.386667pt;}
.yd9{bottom:359.746667pt;}
.y6a{bottom:360.546667pt;}
.yf0{bottom:363.106667pt;}
.y13a{bottom:363.746667pt;}
.y16b{bottom:366.306667pt;}
.y33{bottom:368.386667pt;}
.y14f{bottom:371.746667pt;}
.y10f{bottom:375.106667pt;}
.y69{bottom:375.906667pt;}
.yef{bottom:378.306667pt;}
.yd8{bottom:378.946667pt;}
.y139{bottom:379.106667pt;}
.y32{bottom:383.746667pt;}
.y14e{bottom:387.106667pt;}
.y16a{bottom:389.666667pt;}
.y10e{bottom:390.306667pt;}
.yee{bottom:393.666667pt;}
.y138{bottom:394.306667pt;}
.y31{bottom:398.946667pt;}
.ya9{bottom:399.106667pt;}
.y68{bottom:399.266667pt;}
.yd7{bottom:402.306667pt;}
.y10d{bottom:405.666667pt;}
.y137{bottom:409.666667pt;}
.y30{bottom:414.306667pt;}
.y67{bottom:414.626667pt;}
.yed{bottom:417.026667pt;}
.yd6{bottom:417.666667pt;}
.y10c{bottom:421.026667pt;}
.y136{bottom:425.026667pt;}
.y2f{bottom:429.666667pt;}
.y66{bottom:429.826667pt;}
.y1a0{bottom:431.746667pt;}
.yd5{bottom:433.026667pt;}
.y10b{bottom:436.386667pt;}
.y135{bottom:440.386667pt;}
.y2e{bottom:445.026667pt;}
.y65{bottom:445.186667pt;}
.yd4{bottom:448.386667pt;}
.y115{bottom:451.746667pt;}
.y10a{bottom:455.586667pt;}
.y134{bottom:455.746667pt;}
.ya8{bottom:460.386667pt;}
.y64{bottom:460.546667pt;}
.y2d{bottom:463.266667pt;}
.yd3{bottom:463.746667pt;}
.y114{bottom:466.946667pt;}
.y133{bottom:470.946667pt;}
.y19f{bottom:471.746667pt;}
.ya7{bottom:475.746667pt;}
.y63{bottom:475.906667pt;}
.yd2{bottom:478.946667pt;}
.y113{bottom:482.306667pt;}
.y132{bottom:486.306667pt;}
.ya6{bottom:490.946667pt;}
.y62{bottom:491.266667pt;}
.yd1{bottom:494.306667pt;}
.y112{bottom:497.666667pt;}
.y2c{bottom:498.946667pt;}
.y131{bottom:501.666667pt;}
.ya5{bottom:506.306667pt;}
.y61{bottom:506.626667pt;}
.yd0{bottom:509.666667pt;}
.y111{bottom:513.026667pt;}
.y19e{bottom:516.866667pt;}
.y130{bottom:517.026667pt;}
.ya4{bottom:521.666667pt;}
.y60{bottom:521.826667pt;}
.ycf{bottom:525.026667pt;}
.y169{bottom:528.386667pt;}
.y2b{bottom:530.146667pt;}
.y110{bottom:532.386667pt;}
.ya3{bottom:537.026667pt;}
.y5f{bottom:537.186667pt;}
.y19d{bottom:538.946667pt;}
.yce{bottom:540.386667pt;}
.y168{bottom:543.746667pt;}
.y2a{bottom:543.906667pt;}
.y12f{bottom:547.746667pt;}
.y19c{bottom:551.906667pt;}
.ya2{bottom:552.386667pt;}
.y5e{bottom:552.546667pt;}
.ycd{bottom:555.746667pt;}
.y167{bottom:558.946667pt;}
.y29{bottom:562.946667pt;}
.y19b{bottom:567.266667pt;}
.ya1{bottom:567.746667pt;}
.y5d{bottom:567.906667pt;}
.ycc{bottom:570.973333pt;}
.y166{bottom:574.333333pt;}
.y28{bottom:576.893333pt;}
.y12e{bottom:578.333333pt;}
.y19a{bottom:582.493333pt;}
.ya0{bottom:582.973333pt;}
.y5c{bottom:583.293333pt;}
.ycb{bottom:586.333333pt;}
.y165{bottom:589.693333pt;}
.y27{bottom:590.653333pt;}
.y12d{bottom:593.693333pt;}
.y199{bottom:597.853333pt;}
.y9f{bottom:598.333333pt;}
.y5b{bottom:598.493333pt;}
.yca{bottom:601.693333pt;}
.y26{bottom:604.413333pt;}
.y164{bottom:605.053333pt;}
.y14d{bottom:605.693333pt;}
.y12c{bottom:609.053333pt;}
.y198{bottom:613.213333pt;}
.y9e{bottom:613.693333pt;}
.y5a{bottom:613.853333pt;}
.yc9{bottom:617.053333pt;}
.y25{bottom:618.173333pt;}
.y163{bottom:620.413333pt;}
.y12b{bottom:624.413333pt;}
.y197{bottom:628.573333pt;}
.y9d{bottom:629.053333pt;}
.y59{bottom:629.213333pt;}
.y24{bottom:632.093333pt;}
.yc8{bottom:632.413333pt;}
.y12a{bottom:639.773333pt;}
.y162{bottom:643.613333pt;}
.y196{bottom:643.933333pt;}
.y9c{bottom:644.413333pt;}
.y58{bottom:644.573333pt;}
.y23{bottom:645.853333pt;}
.yc7{bottom:647.773333pt;}
.y129{bottom:654.973333pt;}
.y195{bottom:659.293333pt;}
.y22{bottom:659.613333pt;}
.y9b{bottom:659.773333pt;}
.y57{bottom:659.933333pt;}
.yc6{bottom:662.973333pt;}
.y194{bottom:671.613333pt;}
.y21{bottom:673.373333pt;}
.y128{bottom:674.333333pt;}
.y9a{bottom:674.973333pt;}
.y56{bottom:675.293333pt;}
.yc5{bottom:678.333333pt;}
.y20{bottom:687.293333pt;}
.y193{bottom:689.213333pt;}
.y99{bottom:690.333333pt;}
.y55{bottom:690.493333pt;}
.yc4{bottom:693.693333pt;}
.y127{bottom:697.693333pt;}
.y1f{bottom:701.053333pt;}
.y192{bottom:701.533333pt;}
.y98{bottom:705.693333pt;}
.y54{bottom:705.853333pt;}
.yc3{bottom:709.053333pt;}
.y126{bottom:713.053333pt;}
.y191{bottom:713.853333pt;}
.y1e{bottom:714.813333pt;}
.y97{bottom:721.053333pt;}
.y53{bottom:721.213333pt;}
.yc2{bottom:724.413333pt;}
.y190{bottom:726.013333pt;}
.y125{bottom:728.413333pt;}
.y1d{bottom:728.573333pt;}
.y96{bottom:736.413333pt;}
.y52{bottom:736.573333pt;}
.y18f{bottom:738.333333pt;}
.yc1{bottom:739.613333pt;}
.y1c{bottom:742.333333pt;}
.y124{bottom:743.613333pt;}
.y18e{bottom:750.653333pt;}
.y95{bottom:751.613333pt;}
.y51{bottom:751.933333pt;}
.yc0{bottom:754.973333pt;}
.y1b{bottom:756.253333pt;}
.y123{bottom:758.973333pt;}
.y18d{bottom:762.813333pt;}
.y94{bottom:766.973333pt;}
.y50{bottom:767.293333pt;}
.y1a{bottom:770.013333pt;}
.ybf{bottom:770.333333pt;}
.y122{bottom:774.333333pt;}
.y18c{bottom:775.133333pt;}
.y93{bottom:782.333333pt;}
.y4f{bottom:782.493333pt;}
.y19{bottom:783.773333pt;}
.ybe{bottom:785.693333pt;}
.y18b{bottom:787.453333pt;}
.y121{bottom:789.693333pt;}
.y18{bottom:797.573333pt;}
.y92{bottom:797.733333pt;}
.y4e{bottom:797.893333pt;}
.ybd{bottom:801.093333pt;}
.y120{bottom:805.093333pt;}
.y18a{bottom:808.293333pt;}
.y17{bottom:811.493333pt;}
.y91{bottom:813.093333pt;}
.y4d{bottom:813.253333pt;}
.ybc{bottom:816.453333pt;}
.y11f{bottom:820.453333pt;}
.y16{bottom:825.253333pt;}
.y90{bottom:828.453333pt;}
.y4c{bottom:828.613333pt;}
.ybb{bottom:831.653333pt;}
.y11e{bottom:835.653333pt;}
.y15{bottom:839.013333pt;}
.y8f{bottom:843.653333pt;}
.y4b{bottom:843.973333pt;}
.yba{bottom:847.013333pt;}
.y11d{bottom:851.013333pt;}
.y189{bottom:851.333333pt;}
.y14{bottom:852.773333pt;}
.y8e{bottom:859.013333pt;}
.y4a{bottom:859.333333pt;}
.yb9{bottom:862.373333pt;}
.y188{bottom:863.493333pt;}
.y11c{bottom:866.373333pt;}
.y13{bottom:866.693333pt;}
.y8d{bottom:874.373333pt;}
.y49{bottom:874.533333pt;}
.y187{bottom:875.813333pt;}
.yec{bottom:877.733333pt;}
.y12{bottom:880.453333pt;}
.yb8{bottom:881.733333pt;}
.y186{bottom:888.133333pt;}
.y8c{bottom:889.733333pt;}
.y48{bottom:889.893333pt;}
.y109{bottom:893.093333pt;}
.y11{bottom:894.213333pt;}
.yb7{bottom:897.093333pt;}
.y185{bottom:900.293333pt;}
.y8b{bottom:905.093333pt;}
.y47{bottom:905.253333pt;}
.y10{bottom:907.973333pt;}
.y108{bottom:908.453333pt;}
.y11b{bottom:912.453333pt;}
.y184{bottom:912.613333pt;}
.y8a{bottom:920.453333pt;}
.y46{bottom:920.613333pt;}
.yf{bottom:921.893333pt;}
.y107{bottom:923.653333pt;}
.y183{bottom:924.933333pt;}
.y11a{bottom:927.653333pt;}
.y89{bottom:935.653333pt;}
.y182{bottom:937.093333pt;}
.y106{bottom:939.013333pt;}
.y119{bottom:943.013333pt;}
.y181{bottom:949.413333pt;}
.y88{bottom:951.013333pt;}
.ye{bottom:952.133333pt;}
.y105{bottom:958.373333pt;}
.y180{bottom:961.733333pt;}
.y87{bottom:966.373333pt;}
.y104{bottom:973.733333pt;}
.y17f{bottom:973.893333pt;}
.y86{bottom:981.733333pt;}
.yd{bottom:988.773333pt;}
.y118{bottom:989.093333pt;}
.y17e{bottom:994.853333pt;}
.y85{bottom:997.093333pt;}
.y117{bottom:1004.453333pt;}
.y84{bottom:1012.453333pt;}
.y116{bottom:1019.680000pt;}
.yc{bottom:1025.600000pt;}
.y17d{bottom:1026.880000pt;}
.y83{bottom:1027.680000pt;}
.y82{bottom:1043.040000pt;}
.y7d{bottom:1079.840000pt;}
.y2{bottom:1082.400000pt;}
.y7c{bottom:1096.640000pt;}
.y1{bottom:1097.760000pt;}
.hc{height:29.940625pt;}
.h10{height:30.254687pt;}
.hf{height:31.217812pt;}
.h5{height:32.620625pt;}
.hb{height:33.867188pt;}
.h6{height:36.640000pt;}
.h3{height:37.090625pt;}
.h2{height:37.479688pt;}
.hd{height:38.672812pt;}
.h4{height:38.720000pt;}
.h9{height:38.953125pt;}
.he{height:39.347188pt;}
.h8{height:41.543750pt;}
.h12{height:44.687500pt;}
.h13{height:58.563750pt;}
.h11{height:60.057813pt;}
.ha{height:74.628125pt;}
.h7{height:89.375000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:165.626667pt;}
.w2{width:238.146667pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x4{left:53.760000pt;}
.xb{left:62.400000pt;}
.xa{left:71.840000pt;}
.x8{left:73.280000pt;}
.x7{left:77.760000pt;}
.x10{left:84.031988pt;}
.x21{left:86.431988pt;}
.x23{left:90.911988pt;}
.x16{left:96.031988pt;}
.x15{left:99.711988pt;}
.x14{left:103.391988pt;}
.x22{left:110.431988pt;}
.x11{left:121.311988pt;}
.x24{left:127.071988pt;}
.x17{left:134.426655pt;}
.xc{left:158.266667pt;}
.x9{left:347.426667pt;}
.x2{left:387.426667pt;}
.x12{left:390.306655pt;}
.x3{left:393.506667pt;}
.xf{left:396.866655pt;}
.xe{left:406.626667pt;}
.xd{left:416.093333pt;}
.x1{left:420.253333pt;}
.x1d{left:426.813322pt;}
.x6{left:430.973333pt;}
.x1b{left:433.533322pt;}
.x1a{left:437.213322pt;}
.x18{left:440.893322pt;}
.x1c{left:444.733322pt;}
.x13{left:448.573322pt;}
.x20{left:454.653322pt;}
.x1f{left:475.453322pt;}
.x19{left:478.653322pt;}
.x1e{left:501.053322pt;}
}




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