
    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_895ca29eb7694c380a348597.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bac0435fb24d6bcdb312a2ac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_f504352b8c495c9caad66eb1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_6895208c48873ca4f09dc1cf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_2c51307af7cd3099bb6a0938.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_4d59b74f03ceaff9ac5ae520.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_61959a550a74e6a8efc55ffb.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_029218d88cea28f0c478f7ec.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_77b87aa609c9c8d2646b126e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_f8c4a70256dc6f3f1866361f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1b{letter-spacing:-1.260000px;}
.ls12{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.180000px;}
.lse{letter-spacing:0.197280px;}
.ls17{letter-spacing:0.206640px;}
.ls13{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.306600px;}
.ls4{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.828000px;}
.ls8{letter-spacing:1.386000px;}
.ls2{letter-spacing:1.589760px;}
.ls0{letter-spacing:1.590000px;}
.ls9{letter-spacing:2.052000px;}
.ls1{letter-spacing:2.100000px;}
.lsa{letter-spacing:2.106000px;}
.ls1a{letter-spacing:40.986720px;}
.ls6{letter-spacing:46.026720px;}
.ls18{letter-spacing:56.826720px;}
.ls11{letter-spacing:64.026720px;}
.ls3{letter-spacing:201.060000px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.665280px;}
.ws1{word-spacing:-16.613280px;}
.ws5{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.605760px;}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.ws2{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.940000px;}
.wse{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.284000px;}
.wsa{word-spacing:-12.060000px;}
.wsb{word-spacing:0.000000px;}
._6{margin-left:-176.400000px;}
._c{margin-left:-7.768800px;}
._d{margin-left:-6.454080px;}
._9{margin-left:-5.078160px;}
._3{margin-left:-3.231600px;}
._2{margin-left:-2.152800px;}
._5{margin-left:-1.047120px;}
._0{width:1.374480px;}
._1{width:3.016800px;}
._e{width:4.025520px;}
._7{width:5.039760px;}
._f{width:6.106560px;}
._8{width:7.325040px;}
._b{width:8.784720px;}
._a{width:10.398240px;}
._12{width:11.653200px;}
._13{width:12.700320px;}
._15{width:13.804560px;}
._14{width:16.673040px;}
._19{width:19.063440px;}
._18{width:20.079360px;}
._17{width:21.136800px;}
._16{width:22.589280px;}
._1d{width:23.968800px;}
._10{width:24.979680px;}
._11{width:26.312160px;}
._1b{width:30.636720px;}
._1a{width:31.677840px;}
._1c{width:33.072960px;}
._1e{width:43.211520px;}
._1f{width:44.274720px;}
._20{width:98.730000px;}
._22{width:121.551840px;}
._21{width:123.351120px;}
._4{width:201.060000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:149.760000px;}
.y0{bottom:0.000000px;}
.yab{bottom:3.240000px;}
.yed{bottom:3.285000px;}
.ycd{bottom:4.860000px;}
.yb7{bottom:11.880000px;}
.ybc{bottom:11.925000px;}
.yb8{bottom:20.520000px;}
.ybb{bottom:20.565000px;}
.y7{bottom:25.560000px;}
.y6{bottom:46.080000px;}
.yb5{bottom:91.476000px;}
.y157{bottom:98.496000px;}
.y3e{bottom:99.936000px;}
.yd7{bottom:104.796000px;}
.yb4{bottom:106.236000px;}
.yf9{bottom:106.956000px;}
.y156{bottom:113.076000px;}
.y79{bottom:115.236000px;}
.y128{bottom:116.136000px;}
.y3d{bottom:117.036000px;}
.yd6{bottom:122.076000px;}
.yb3{bottom:124.236000px;}
.y155{bottom:130.356000px;}
.y18d{bottom:130.716000px;}
.y78{bottom:132.516000px;}
.y127{bottom:133.236000px;}
.y3c{bottom:134.316000px;}
.yd5{bottom:139.356000px;}
.yb2{bottom:142.236000px;}
.yf8{bottom:142.596000px;}
.y154{bottom:147.636000px;}
.y18c{bottom:147.996000px;}
.y77{bottom:149.796000px;}
.y3b{bottom:151.590000px;}
.yd4{bottom:156.450000px;}
.yb1{bottom:160.230000px;}
.yf7{bottom:160.770000px;}
.y153{bottom:164.730000px;}
.y18b{bottom:165.270000px;}
.y76{bottom:167.070000px;}
.y3a{bottom:168.870000px;}
.y126{bottom:169.950000px;}
.yd3{bottom:170.490000px;}
.yb0{bottom:178.230000px;}
.yf6{bottom:179.130000px;}
.y152{bottom:182.010000px;}
.y18a{bottom:182.550000px;}
.y75{bottom:184.170000px;}
.y39{bottom:186.150000px;}
.y125{bottom:188.310000px;}
.yaf{bottom:196.230000px;}
.yf5{bottom:196.410000px;}
.y151{bottom:199.290000px;}
.y189{bottom:199.830000px;}
.y74{bottom:201.450000px;}
.y38{bottom:203.430000px;}
.y124{bottom:205.590000px;}
.yf4{bottom:213.690000px;}
.yae{bottom:214.230000px;}
.y150{bottom:216.570000px;}
.y188{bottom:217.110000px;}
.y73{bottom:218.730000px;}
.y37{bottom:220.530000px;}
.y123{bottom:222.690000px;}
.yf3{bottom:230.970000px;}
.yad{bottom:232.230000px;}
.y14f{bottom:233.850000px;}
.y187{bottom:234.210000px;}
.y72{bottom:236.010000px;}
.y36{bottom:237.810000px;}
.y122{bottom:239.970000px;}
.yf2{bottom:248.070000px;}
.yac{bottom:250.230000px;}
.y14e{bottom:250.950000px;}
.y186{bottom:251.490000px;}
.y71{bottom:253.290000px;}
.y35{bottom:255.090000px;}
.y121{bottom:257.250000px;}
.yf1{bottom:265.350000px;}
.yaa{bottom:268.230000px;}
.y185{bottom:268.770000px;}
.y70{bottom:270.570000px;}
.y34{bottom:272.370000px;}
.y120{bottom:274.530000px;}
.yf0{bottom:280.110000px;}
.y14d{bottom:285.510000px;}
.y184{bottom:286.050000px;}
.y6f{bottom:287.670000px;}
.ya9{bottom:289.470000px;}
.y33{bottom:289.650000px;}
.y11f{bottom:291.810000px;}
.yef{bottom:298.110000px;}
.y14c{bottom:302.790000px;}
.y183{bottom:303.330000px;}
.y6e{bottom:304.950000px;}
.ya8{bottom:305.490000px;}
.y32{bottom:306.930000px;}
.y11e{bottom:309.090000px;}
.yee{bottom:316.110000px;}
.ya7{bottom:317.010000px;}
.y14b{bottom:320.070000px;}
.y182{bottom:320.430000px;}
.y6d{bottom:322.230000px;}
.y31{bottom:324.030000px;}
.y11d{bottom:326.190000px;}
.yec{bottom:334.110000px;}
.ya6{bottom:334.290000px;}
.y14a{bottom:337.395000px;}
.y181{bottom:337.755000px;}
.y6c{bottom:339.555000px;}
.y30{bottom:341.355000px;}
.y11c{bottom:343.515000px;}
.ya5{bottom:351.615000px;}
.y180{bottom:355.035000px;}
.yeb{bottom:355.395000px;}
.y149{bottom:355.575000px;}
.y6b{bottom:356.835000px;}
.y2f{bottom:358.635000px;}
.y11b{bottom:360.795000px;}
.ya4{bottom:368.895000px;}
.y17f{bottom:372.315000px;}
.yea{bottom:372.675000px;}
.y148{bottom:373.935000px;}
.y6a{bottom:374.115000px;}
.y2e{bottom:375.915000px;}
.y11a{bottom:378.075000px;}
.ya3{bottom:386.175000px;}
.y17e{bottom:389.595000px;}
.ye9{bottom:389.955000px;}
.y69{bottom:391.215000px;}
.y147{bottom:392.295000px;}
.y2d{bottom:393.195000px;}
.y119{bottom:395.355000px;}
.ya2{bottom:403.275000px;}
.y17d{bottom:406.875000px;}
.ye8{bottom:407.235000px;}
.y68{bottom:408.495000px;}
.y146{bottom:409.575000px;}
.y2c{bottom:410.475000px;}
.y118{bottom:412.455000px;}
.ya1{bottom:420.735000px;}
.yd2{bottom:423.615000px;}
.y17c{bottom:423.975000px;}
.ye7{bottom:424.335000px;}
.y67{bottom:425.775000px;}
.y145{bottom:426.855000px;}
.y2b{bottom:427.575000px;}
.y117{bottom:429.735000px;}
.ya0{bottom:437.835000px;}
.yd1{bottom:440.895000px;}
.y17b{bottom:441.255000px;}
.ye6{bottom:442.695000px;}
.y66{bottom:443.055000px;}
.y2a{bottom:444.855000px;}
.y144{bottom:445.035000px;}
.y116{bottom:447.015000px;}
.y9f{bottom:455.115000px;}
.yd0{bottom:455.655000px;}
.y17a{bottom:458.535000px;}
.y65{bottom:460.335000px;}
.ye5{bottom:461.055000px;}
.y29{bottom:462.135000px;}
.y143{bottom:463.395000px;}
.y115{bottom:464.295000px;}
.y9e{bottom:472.395000px;}
.ycf{bottom:473.655000px;}
.y179{bottom:475.815000px;}
.y64{bottom:477.435000px;}
.ye4{bottom:478.335000px;}
.y28{bottom:479.415000px;}
.y114{bottom:481.575000px;}
.y142{bottom:481.755000px;}
.y9d{bottom:489.675000px;}
.yce{bottom:491.655000px;}
.y178{bottom:493.095000px;}
.y63{bottom:494.715000px;}
.ye3{bottom:495.615000px;}
.y27{bottom:496.695000px;}
.y113{bottom:498.855000px;}
.y141{bottom:499.035000px;}
.y9c{bottom:506.775000px;}
.ycc{bottom:509.655000px;}
.y177{bottom:510.375000px;}
.y62{bottom:511.995000px;}
.ye2{bottom:512.895000px;}
.y26{bottom:513.975000px;}
.y112{bottom:515.955000px;}
.y140{bottom:516.315000px;}
.y9b{bottom:524.055000px;}
.y176{bottom:527.475000px;}
.y61{bottom:529.275000px;}
.ye1{bottom:529.995000px;}
.y25{bottom:531.075000px;}
.y111{bottom:533.235000px;}
.y13f{bottom:534.675000px;}
.y9a{bottom:541.335000px;}
.y175{bottom:544.755000px;}
.y60{bottom:546.555000px;}
.ye0{bottom:547.275000px;}
.y24{bottom:548.355000px;}
.y110{bottom:550.515000px;}
.y13e{bottom:552.855000px;}
.y99{bottom:558.615000px;}
.ydf{bottom:561.315000px;}
.y174{bottom:562.035000px;}
.y5f{bottom:563.835000px;}
.y23{bottom:565.635000px;}
.ycb{bottom:567.795000px;}
.y13d{bottom:571.215000px;}
.y98{bottom:575.895000px;}
.y173{bottom:579.315000px;}
.y5e{bottom:580.935000px;}
.y22{bottom:582.915000px;}
.yca{bottom:585.075000px;}
.y13c{bottom:588.495000px;}
.y97{bottom:593.175000px;}
.y172{bottom:596.595000px;}
.y5d{bottom:598.215000px;}
.y21{bottom:600.195000px;}
.yc9{bottom:602.355000px;}
.y13b{bottom:605.805000px;}
.y96{bottom:610.305000px;}
.y171{bottom:613.725000px;}
.y5c{bottom:615.525000px;}
.y20{bottom:617.505000px;}
.yc8{bottom:619.485000px;}
.y13a{bottom:624.165000px;}
.y95{bottom:627.585000px;}
.y170{bottom:631.005000px;}
.y5b{bottom:632.805000px;}
.y1f{bottom:634.605000px;}
.yc7{bottom:636.765000px;}
.y139{bottom:642.345000px;}
.y94{bottom:644.865000px;}
.y16f{bottom:648.285000px;}
.y5a{bottom:650.085000px;}
.y1e{bottom:651.885000px;}
.yc6{bottom:654.045000px;}
.y138{bottom:660.705000px;}
.y93{bottom:662.145000px;}
.y16e{bottom:665.565000px;}
.y59{bottom:667.365000px;}
.y1d{bottom:668.985000px;}
.yc5{bottom:671.325000px;}
.y137{bottom:677.985000px;}
.y92{bottom:679.425000px;}
.y16d{bottom:682.845000px;}
.y58{bottom:684.465000px;}
.y1c{bottom:686.265000px;}
.y10f{bottom:688.605000px;}
.yc4{bottom:689.685000px;}
.y136{bottom:695.265000px;}
.y91{bottom:696.525000px;}
.y16c{bottom:700.125000px;}
.y57{bottom:701.745000px;}
.y1b{bottom:703.545000px;}
.y10e{bottom:705.885000px;}
.yc3{bottom:707.865000px;}
.y135{bottom:712.545000px;}
.y90{bottom:713.805000px;}
.y16b{bottom:717.225000px;}
.y56{bottom:719.025000px;}
.y1a{bottom:720.465000px;}
.y10d{bottom:722.985000px;}
.yc2{bottom:726.225000px;}
.y134{bottom:729.825000px;}
.y8f{bottom:731.085000px;}
.y16a{bottom:734.505000px;}
.y19{bottom:734.685000px;}
.y55{bottom:736.305000px;}
.y10c{bottom:740.265000px;}
.y18{bottom:744.585000px;}
.y133{bottom:746.925000px;}
.y8e{bottom:748.365000px;}
.y169{bottom:751.785000px;}
.y54{bottom:753.585000px;}
.y10b{bottom:757.545000px;}
.y17{bottom:760.065000px;}
.yc1{bottom:761.865000px;}
.y132{bottom:764.205000px;}
.y8d{bottom:765.645000px;}
.y168{bottom:769.065000px;}
.y53{bottom:770.865000px;}
.y10a{bottom:774.825000px;}
.y16{bottom:775.545000px;}
.yc0{bottom:779.145000px;}
.y131{bottom:781.485000px;}
.y8c{bottom:782.925000px;}
.y167{bottom:786.345000px;}
.y52{bottom:787.965000px;}
.y15{bottom:791.205000px;}
.y109{bottom:792.105000px;}
.ybf{bottom:796.425000px;}
.y130{bottom:798.765000px;}
.y8b{bottom:800.025000px;}
.y166{bottom:803.625000px;}
.y51{bottom:805.245000px;}
.y14{bottom:806.685000px;}
.y108{bottom:809.385000px;}
.yde{bottom:812.085000px;}
.ybe{bottom:813.525000px;}
.y12f{bottom:816.045000px;}
.y8a{bottom:817.305000px;}
.y165{bottom:820.725000px;}
.y13{bottom:822.165000px;}
.y50{bottom:822.525000px;}
.y107{bottom:826.485000px;}
.ybd{bottom:828.285000px;}
.ydd{bottom:829.365000px;}
.y12e{bottom:833.145000px;}
.y89{bottom:834.585000px;}
.y12{bottom:837.645000px;}
.y164{bottom:838.005000px;}
.y4f{bottom:839.805000px;}
.y106{bottom:843.765000px;}
.ydc{bottom:844.125000px;}
.y12d{bottom:850.425000px;}
.y88{bottom:851.865000px;}
.y11{bottom:854.025000px;}
.y163{bottom:855.285000px;}
.y4e{bottom:857.085000px;}
.y105{bottom:861.045000px;}
.ydb{bottom:862.125000px;}
.yba{bottom:863.565000px;}
.y12c{bottom:867.705000px;}
.y87{bottom:869.145000px;}
.y162{bottom:872.610000px;}
.y10{bottom:872.790000px;}
.y4d{bottom:874.230000px;}
.y104{bottom:879.450000px;}
.yda{bottom:880.170000px;}
.y12b{bottom:885.030000px;}
.y86{bottom:886.470000px;}
.y161{bottom:889.890000px;}
.yf{bottom:890.790000px;}
.y4c{bottom:891.510000px;}
.y103{bottom:897.810000px;}
.yd9{bottom:898.170000px;}
.yb9{bottom:898.890000px;}
.y12a{bottom:902.310000px;}
.y85{bottom:903.570000px;}
.y160{bottom:907.170000px;}
.y4b{bottom:908.790000px;}
.ye{bottom:908.970000px;}
.y102{bottom:915.990000px;}
.yd8{bottom:916.170000px;}
.y84{bottom:920.850000px;}
.y15f{bottom:924.270000px;}
.y4a{bottom:926.070000px;}
.yd{bottom:932.010000px;}
.yb6{bottom:934.170000px;}
.y101{bottom:934.350000px;}
.y83{bottom:938.130000px;}
.y129{bottom:938.310000px;}
.y15e{bottom:941.550000px;}
.y49{bottom:943.350000px;}
.yc{bottom:945.870000px;}
.y100{bottom:951.630000px;}
.y82{bottom:955.410000px;}
.y15d{bottom:958.830000px;}
.y48{bottom:960.630000px;}
.yff{bottom:968.910000px;}
.y81{bottom:972.690000px;}
.yb{bottom:973.950000px;}
.y15c{bottom:976.110000px;}
.y47{bottom:977.730000px;}
.yfe{bottom:986.190000px;}
.y80{bottom:989.790000px;}
.y15b{bottom:993.390000px;}
.y46{bottom:995.010000px;}
.yfd{bottom:1000.950000px;}
.ya{bottom:1006.890000px;}
.y7f{bottom:1007.070000px;}
.y15a{bottom:1010.490000px;}
.y45{bottom:1012.290000px;}
.yfc{bottom:1018.950000px;}
.y7e{bottom:1024.350000px;}
.y159{bottom:1027.770000px;}
.y44{bottom:1029.570000px;}
.yfb{bottom:1036.950000px;}
.y7d{bottom:1041.630000px;}
.y158{bottom:1044.330000px;}
.y43{bottom:1046.850000px;}
.y9{bottom:1049.010000px;}
.yfa{bottom:1054.950000px;}
.y7c{bottom:1058.910000px;}
.y42{bottom:1064.130000px;}
.y7b{bottom:1076.190000px;}
.y41{bottom:1081.230000px;}
.y8{bottom:1090.950000px;}
.y7a{bottom:1093.290000px;}
.y40{bottom:1097.610000px;}
.y3f{bottom:1110.570000px;}
.y5{bottom:1140.120000px;}
.y4{bottom:1160.280000px;}
.y3{bottom:1179.180000px;}
.y2{bottom:1196.460000px;}
.y1{bottom:1215.360000px;}
.h11{height:12.568359px;}
.h18{height:17.100000px;}
.h12{height:17.280000px;}
.h19{height:17.316000px;}
.h17{height:18.900000px;}
.hd{height:21.114844px;}
.h9{height:25.136719px;}
.h1a{height:33.683203px;}
.h14{height:34.380000px;}
.h15{height:34.560000px;}
.h16{height:34.596000px;}
.h7{height:37.705078px;}
.hc{height:38.100586px;}
.hf{height:41.726953px;}
.he{height:42.164648px;}
.h10{height:43.506914px;}
.h3{height:43.681992px;}
.ha{height:44.240625px;}
.h13{height:45.549492px;}
.h2{height:46.251562px;}
.hb{height:48.293437px;}
.h4{height:63.070312px;}
.h5{height:65.884219px;}
.h8{height:75.410156px;}
.h6{height:105.665625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:59.940000px;}
.wf{width:66.780000px;}
.w19{width:66.816000px;}
.wb{width:73.476000px;}
.w1b{width:73.620000px;}
.w15{width:81.180000px;}
.w10{width:83.016000px;}
.w4{width:83.736000px;}
.w8{width:86.940000px;}
.w9{width:86.976000px;}
.w14{width:92.196000px;}
.wa{width:93.780000px;}
.wc{width:100.440000px;}
.we{width:101.160000px;}
.w13{width:105.480000px;}
.w16{width:106.236000px;}
.w1d{width:107.316000px;}
.w5{width:115.200000px;}
.w11{width:118.620000px;}
.w17{width:127.620000px;}
.w3{width:137.700000px;}
.w7{width:174.450000px;}
.w12{width:177.690000px;}
.w18{width:181.290000px;}
.w1c{width:187.950000px;}
.wd{width:249.150000px;}
.w6{width:338.070000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x22{left:8.820000px;}
.x1e{left:9.900000px;}
.x31{left:10.980000px;}
.x36{left:14.400000px;}
.x1d{left:15.840000px;}
.x2d{left:20.880000px;}
.x25{left:22.500000px;}
.x23{left:24.120000px;}
.x39{left:26.280000px;}
.x27{left:27.360000px;}
.x2a{left:28.980000px;}
.x26{left:30.240000px;}
.x32{left:32.040000px;}
.x15{left:34.380000px;}
.x30{left:37.440000px;}
.x3d{left:39.600000px;}
.x28{left:40.680000px;}
.x16{left:44.280000px;}
.x3c{left:45.360000px;}
.x33{left:49.860000px;}
.x1b{left:54.714000px;}
.x6{left:63.899987px;}
.xb{left:67.499987px;}
.x4a{left:78.479987px;}
.x49{left:82.079987px;}
.xf{left:85.139987px;}
.x8{left:87.839987px;}
.xd{left:90.935987px;}
.x29{left:103.896000px;}
.xe{left:117.935987px;}
.x7{left:119.375987px;}
.x14{left:137.880000px;}
.x1a{left:141.876000px;}
.x17{left:148.500000px;}
.x1{left:183.449987px;}
.x9{left:195.689987px;}
.x2{left:223.409987px;}
.x45{left:233.489987px;}
.x40{left:235.469987px;}
.x3f{left:240.869987px;}
.x41{left:259.950000px;}
.x18{left:265.889987px;}
.x19{left:272.729987px;}
.xc{left:277.814987px;}
.x10{left:282.494987px;}
.x34{left:287.894987px;}
.x35{left:300.134987px;}
.x1c{left:317.055000px;}
.x3{left:354.314987px;}
.x4{left:364.754987px;}
.x37{left:389.415000px;}
.x1f{left:404.895000px;}
.x12{left:421.275000px;}
.x46{left:425.055000px;}
.x42{left:441.975000px;}
.xa{left:452.054987px;}
.x2b{left:455.835000px;}
.x38{left:482.505000px;}
.x20{left:492.585000px;}
.x5{left:494.744987px;}
.x13{left:505.725000px;}
.x43{left:509.505000px;}
.x2c{left:530.025000px;}
.x47{left:533.085000px;}
.x3a{left:564.405000px;}
.x44{left:570.165000px;}
.x21{left:587.085000px;}
.x2e{left:597.525000px;}
.x48{left:600.585000px;}
.x3e{left:644.864987px;}
.x24{left:661.470000px;}
.x3b{left:671.370000px;}
.x2f{left:681.270000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-1.120000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.175360pt;}
.ls17{letter-spacing:0.183680pt;}
.ls13{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.272533pt;}
.ls4{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.736000pt;}
.ls8{letter-spacing:1.232000pt;}
.ls2{letter-spacing:1.413120pt;}
.ls0{letter-spacing:1.413333pt;}
.ls9{letter-spacing:1.824000pt;}
.ls1{letter-spacing:1.866667pt;}
.lsa{letter-spacing:1.872000pt;}
.ls1a{letter-spacing:36.432640pt;}
.ls6{letter-spacing:40.912640pt;}
.ls18{letter-spacing:50.512640pt;}
.ls11{letter-spacing:56.912640pt;}
.ls3{letter-spacing:178.720000pt;}
.wsd{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.591360pt;}
.ws1{word-spacing:-14.767360pt;}
.ws5{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.871787pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.ws2{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.096533pt;}
.wsf{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.808000pt;}
.wsa{word-spacing:-10.720000pt;}
.wsb{word-spacing:0.000000pt;}
._6{margin-left:-156.800000pt;}
._c{margin-left:-6.905600pt;}
._d{margin-left:-5.736960pt;}
._9{margin-left:-4.513920pt;}
._3{margin-left:-2.872533pt;}
._2{margin-left:-1.913600pt;}
._5{margin-left:-0.930773pt;}
._0{width:1.221760pt;}
._1{width:2.681600pt;}
._e{width:3.578240pt;}
._7{width:4.479787pt;}
._f{width:5.428053pt;}
._8{width:6.511147pt;}
._b{width:7.808640pt;}
._a{width:9.242880pt;}
._12{width:10.358400pt;}
._13{width:11.289173pt;}
._15{width:12.270720pt;}
._14{width:14.820480pt;}
._19{width:16.945280pt;}
._18{width:17.848320pt;}
._17{width:18.788267pt;}
._16{width:20.079360pt;}
._1d{width:21.305600pt;}
._10{width:22.204160pt;}
._11{width:23.388587pt;}
._1b{width:27.232640pt;}
._1a{width:28.158080pt;}
._1c{width:29.398187pt;}
._1e{width:38.410240pt;}
._1f{width:39.355307pt;}
._20{width:87.760000pt;}
._22{width:108.046080pt;}
._21{width:109.645440pt;}
._4{width:178.720000pt;}
.fs9{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:133.120000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:2.880000pt;}
.yed{bottom:2.920000pt;}
.ycd{bottom:4.320000pt;}
.yb7{bottom:10.560000pt;}
.ybc{bottom:10.600000pt;}
.yb8{bottom:18.240000pt;}
.ybb{bottom:18.280000pt;}
.y7{bottom:22.720000pt;}
.y6{bottom:40.960000pt;}
.yb5{bottom:81.312000pt;}
.y157{bottom:87.552000pt;}
.y3e{bottom:88.832000pt;}
.yd7{bottom:93.152000pt;}
.yb4{bottom:94.432000pt;}
.yf9{bottom:95.072000pt;}
.y156{bottom:100.512000pt;}
.y79{bottom:102.432000pt;}
.y128{bottom:103.232000pt;}
.y3d{bottom:104.032000pt;}
.yd6{bottom:108.512000pt;}
.yb3{bottom:110.432000pt;}
.y155{bottom:115.872000pt;}
.y18d{bottom:116.192000pt;}
.y78{bottom:117.792000pt;}
.y127{bottom:118.432000pt;}
.y3c{bottom:119.392000pt;}
.yd5{bottom:123.872000pt;}
.yb2{bottom:126.432000pt;}
.yf8{bottom:126.752000pt;}
.y154{bottom:131.232000pt;}
.y18c{bottom:131.552000pt;}
.y77{bottom:133.152000pt;}
.y3b{bottom:134.746667pt;}
.yd4{bottom:139.066667pt;}
.yb1{bottom:142.426667pt;}
.yf7{bottom:142.906667pt;}
.y153{bottom:146.426667pt;}
.y18b{bottom:146.906667pt;}
.y76{bottom:148.506667pt;}
.y3a{bottom:150.106667pt;}
.y126{bottom:151.066667pt;}
.yd3{bottom:151.546667pt;}
.yb0{bottom:158.426667pt;}
.yf6{bottom:159.226667pt;}
.y152{bottom:161.786667pt;}
.y18a{bottom:162.266667pt;}
.y75{bottom:163.706667pt;}
.y39{bottom:165.466667pt;}
.y125{bottom:167.386667pt;}
.yaf{bottom:174.426667pt;}
.yf5{bottom:174.586667pt;}
.y151{bottom:177.146667pt;}
.y189{bottom:177.626667pt;}
.y74{bottom:179.066667pt;}
.y38{bottom:180.826667pt;}
.y124{bottom:182.746667pt;}
.yf4{bottom:189.946667pt;}
.yae{bottom:190.426667pt;}
.y150{bottom:192.506667pt;}
.y188{bottom:192.986667pt;}
.y73{bottom:194.426667pt;}
.y37{bottom:196.026667pt;}
.y123{bottom:197.946667pt;}
.yf3{bottom:205.306667pt;}
.yad{bottom:206.426667pt;}
.y14f{bottom:207.866667pt;}
.y187{bottom:208.186667pt;}
.y72{bottom:209.786667pt;}
.y36{bottom:211.386667pt;}
.y122{bottom:213.306667pt;}
.yf2{bottom:220.506667pt;}
.yac{bottom:222.426667pt;}
.y14e{bottom:223.066667pt;}
.y186{bottom:223.546667pt;}
.y71{bottom:225.146667pt;}
.y35{bottom:226.746667pt;}
.y121{bottom:228.666667pt;}
.yf1{bottom:235.866667pt;}
.yaa{bottom:238.426667pt;}
.y185{bottom:238.906667pt;}
.y70{bottom:240.506667pt;}
.y34{bottom:242.106667pt;}
.y120{bottom:244.026667pt;}
.yf0{bottom:248.986667pt;}
.y14d{bottom:253.786667pt;}
.y184{bottom:254.266667pt;}
.y6f{bottom:255.706667pt;}
.ya9{bottom:257.306667pt;}
.y33{bottom:257.466667pt;}
.y11f{bottom:259.386667pt;}
.yef{bottom:264.986667pt;}
.y14c{bottom:269.146667pt;}
.y183{bottom:269.626667pt;}
.y6e{bottom:271.066667pt;}
.ya8{bottom:271.546667pt;}
.y32{bottom:272.826667pt;}
.y11e{bottom:274.746667pt;}
.yee{bottom:280.986667pt;}
.ya7{bottom:281.786667pt;}
.y14b{bottom:284.506667pt;}
.y182{bottom:284.826667pt;}
.y6d{bottom:286.426667pt;}
.y31{bottom:288.026667pt;}
.y11d{bottom:289.946667pt;}
.yec{bottom:296.986667pt;}
.ya6{bottom:297.146667pt;}
.y14a{bottom:299.906667pt;}
.y181{bottom:300.226667pt;}
.y6c{bottom:301.826667pt;}
.y30{bottom:303.426667pt;}
.y11c{bottom:305.346667pt;}
.ya5{bottom:312.546667pt;}
.y180{bottom:315.586667pt;}
.yeb{bottom:315.906667pt;}
.y149{bottom:316.066667pt;}
.y6b{bottom:317.186667pt;}
.y2f{bottom:318.786667pt;}
.y11b{bottom:320.706667pt;}
.ya4{bottom:327.906667pt;}
.y17f{bottom:330.946667pt;}
.yea{bottom:331.266667pt;}
.y148{bottom:332.386667pt;}
.y6a{bottom:332.546667pt;}
.y2e{bottom:334.146667pt;}
.y11a{bottom:336.066667pt;}
.ya3{bottom:343.266667pt;}
.y17e{bottom:346.306667pt;}
.ye9{bottom:346.626667pt;}
.y69{bottom:347.746667pt;}
.y147{bottom:348.706667pt;}
.y2d{bottom:349.506667pt;}
.y119{bottom:351.426667pt;}
.ya2{bottom:358.466667pt;}
.y17d{bottom:361.666667pt;}
.ye8{bottom:361.986667pt;}
.y68{bottom:363.106667pt;}
.y146{bottom:364.066667pt;}
.y2c{bottom:364.866667pt;}
.y118{bottom:366.626667pt;}
.ya1{bottom:373.986667pt;}
.yd2{bottom:376.546667pt;}
.y17c{bottom:376.866667pt;}
.ye7{bottom:377.186667pt;}
.y67{bottom:378.466667pt;}
.y145{bottom:379.426667pt;}
.y2b{bottom:380.066667pt;}
.y117{bottom:381.986667pt;}
.ya0{bottom:389.186667pt;}
.yd1{bottom:391.906667pt;}
.y17b{bottom:392.226667pt;}
.ye6{bottom:393.506667pt;}
.y66{bottom:393.826667pt;}
.y2a{bottom:395.426667pt;}
.y144{bottom:395.586667pt;}
.y116{bottom:397.346667pt;}
.y9f{bottom:404.546667pt;}
.yd0{bottom:405.026667pt;}
.y17a{bottom:407.586667pt;}
.y65{bottom:409.186667pt;}
.ye5{bottom:409.826667pt;}
.y29{bottom:410.786667pt;}
.y143{bottom:411.906667pt;}
.y115{bottom:412.706667pt;}
.y9e{bottom:419.906667pt;}
.ycf{bottom:421.026667pt;}
.y179{bottom:422.946667pt;}
.y64{bottom:424.386667pt;}
.ye4{bottom:425.186667pt;}
.y28{bottom:426.146667pt;}
.y114{bottom:428.066667pt;}
.y142{bottom:428.226667pt;}
.y9d{bottom:435.266667pt;}
.yce{bottom:437.026667pt;}
.y178{bottom:438.306667pt;}
.y63{bottom:439.746667pt;}
.ye3{bottom:440.546667pt;}
.y27{bottom:441.506667pt;}
.y113{bottom:443.426667pt;}
.y141{bottom:443.586667pt;}
.y9c{bottom:450.466667pt;}
.ycc{bottom:453.026667pt;}
.y177{bottom:453.666667pt;}
.y62{bottom:455.106667pt;}
.ye2{bottom:455.906667pt;}
.y26{bottom:456.866667pt;}
.y112{bottom:458.626667pt;}
.y140{bottom:458.946667pt;}
.y9b{bottom:465.826667pt;}
.y176{bottom:468.866667pt;}
.y61{bottom:470.466667pt;}
.ye1{bottom:471.106667pt;}
.y25{bottom:472.066667pt;}
.y111{bottom:473.986667pt;}
.y13f{bottom:475.266667pt;}
.y9a{bottom:481.186667pt;}
.y175{bottom:484.226667pt;}
.y60{bottom:485.826667pt;}
.ye0{bottom:486.466667pt;}
.y24{bottom:487.426667pt;}
.y110{bottom:489.346667pt;}
.y13e{bottom:491.426667pt;}
.y99{bottom:496.546667pt;}
.ydf{bottom:498.946667pt;}
.y174{bottom:499.586667pt;}
.y5f{bottom:501.186667pt;}
.y23{bottom:502.786667pt;}
.ycb{bottom:504.706667pt;}
.y13d{bottom:507.746667pt;}
.y98{bottom:511.906667pt;}
.y173{bottom:514.946667pt;}
.y5e{bottom:516.386667pt;}
.y22{bottom:518.146667pt;}
.yca{bottom:520.066667pt;}
.y13c{bottom:523.106667pt;}
.y97{bottom:527.266667pt;}
.y172{bottom:530.306667pt;}
.y5d{bottom:531.746667pt;}
.y21{bottom:533.506667pt;}
.yc9{bottom:535.426667pt;}
.y13b{bottom:538.493333pt;}
.y96{bottom:542.493333pt;}
.y171{bottom:545.533333pt;}
.y5c{bottom:547.133333pt;}
.y20{bottom:548.893333pt;}
.yc8{bottom:550.653333pt;}
.y13a{bottom:554.813333pt;}
.y95{bottom:557.853333pt;}
.y170{bottom:560.893333pt;}
.y5b{bottom:562.493333pt;}
.y1f{bottom:564.093333pt;}
.yc7{bottom:566.013333pt;}
.y139{bottom:570.973333pt;}
.y94{bottom:573.213333pt;}
.y16f{bottom:576.253333pt;}
.y5a{bottom:577.853333pt;}
.y1e{bottom:579.453333pt;}
.yc6{bottom:581.373333pt;}
.y138{bottom:587.293333pt;}
.y93{bottom:588.573333pt;}
.y16e{bottom:591.613333pt;}
.y59{bottom:593.213333pt;}
.y1d{bottom:594.653333pt;}
.yc5{bottom:596.733333pt;}
.y137{bottom:602.653333pt;}
.y92{bottom:603.933333pt;}
.y16d{bottom:606.973333pt;}
.y58{bottom:608.413333pt;}
.y1c{bottom:610.013333pt;}
.y10f{bottom:612.093333pt;}
.yc4{bottom:613.053333pt;}
.y136{bottom:618.013333pt;}
.y91{bottom:619.133333pt;}
.y16c{bottom:622.333333pt;}
.y57{bottom:623.773333pt;}
.y1b{bottom:625.373333pt;}
.y10e{bottom:627.453333pt;}
.yc3{bottom:629.213333pt;}
.y135{bottom:633.373333pt;}
.y90{bottom:634.493333pt;}
.y16b{bottom:637.533333pt;}
.y56{bottom:639.133333pt;}
.y1a{bottom:640.413333pt;}
.y10d{bottom:642.653333pt;}
.yc2{bottom:645.533333pt;}
.y134{bottom:648.733333pt;}
.y8f{bottom:649.853333pt;}
.y16a{bottom:652.893333pt;}
.y19{bottom:653.053333pt;}
.y55{bottom:654.493333pt;}
.y10c{bottom:658.013333pt;}
.y18{bottom:661.853333pt;}
.y133{bottom:663.933333pt;}
.y8e{bottom:665.213333pt;}
.y169{bottom:668.253333pt;}
.y54{bottom:669.853333pt;}
.y10b{bottom:673.373333pt;}
.y17{bottom:675.613333pt;}
.yc1{bottom:677.213333pt;}
.y132{bottom:679.293333pt;}
.y8d{bottom:680.573333pt;}
.y168{bottom:683.613333pt;}
.y53{bottom:685.213333pt;}
.y10a{bottom:688.733333pt;}
.y16{bottom:689.373333pt;}
.yc0{bottom:692.573333pt;}
.y131{bottom:694.653333pt;}
.y8c{bottom:695.933333pt;}
.y167{bottom:698.973333pt;}
.y52{bottom:700.413333pt;}
.y15{bottom:703.293333pt;}
.y109{bottom:704.093333pt;}
.ybf{bottom:707.933333pt;}
.y130{bottom:710.013333pt;}
.y8b{bottom:711.133333pt;}
.y166{bottom:714.333333pt;}
.y51{bottom:715.773333pt;}
.y14{bottom:717.053333pt;}
.y108{bottom:719.453333pt;}
.yde{bottom:721.853333pt;}
.ybe{bottom:723.133333pt;}
.y12f{bottom:725.373333pt;}
.y8a{bottom:726.493333pt;}
.y165{bottom:729.533333pt;}
.y13{bottom:730.813333pt;}
.y50{bottom:731.133333pt;}
.y107{bottom:734.653333pt;}
.ybd{bottom:736.253333pt;}
.ydd{bottom:737.213333pt;}
.y12e{bottom:740.573333pt;}
.y89{bottom:741.853333pt;}
.y12{bottom:744.573333pt;}
.y164{bottom:744.893333pt;}
.y4f{bottom:746.493333pt;}
.y106{bottom:750.013333pt;}
.ydc{bottom:750.333333pt;}
.y12d{bottom:755.933333pt;}
.y88{bottom:757.213333pt;}
.y11{bottom:759.133333pt;}
.y163{bottom:760.253333pt;}
.y4e{bottom:761.853333pt;}
.y105{bottom:765.373333pt;}
.ydb{bottom:766.333333pt;}
.yba{bottom:767.613333pt;}
.y12c{bottom:771.293333pt;}
.y87{bottom:772.573333pt;}
.y162{bottom:775.653333pt;}
.y10{bottom:775.813333pt;}
.y4d{bottom:777.093333pt;}
.y104{bottom:781.733333pt;}
.yda{bottom:782.373333pt;}
.y12b{bottom:786.693333pt;}
.y86{bottom:787.973333pt;}
.y161{bottom:791.013333pt;}
.yf{bottom:791.813333pt;}
.y4c{bottom:792.453333pt;}
.y103{bottom:798.053333pt;}
.yd9{bottom:798.373333pt;}
.yb9{bottom:799.013333pt;}
.y12a{bottom:802.053333pt;}
.y85{bottom:803.173333pt;}
.y160{bottom:806.373333pt;}
.y4b{bottom:807.813333pt;}
.ye{bottom:807.973333pt;}
.y102{bottom:814.213333pt;}
.yd8{bottom:814.373333pt;}
.y84{bottom:818.533333pt;}
.y15f{bottom:821.573333pt;}
.y4a{bottom:823.173333pt;}
.yd{bottom:828.453333pt;}
.yb6{bottom:830.373333pt;}
.y101{bottom:830.533333pt;}
.y83{bottom:833.893333pt;}
.y129{bottom:834.053333pt;}
.y15e{bottom:836.933333pt;}
.y49{bottom:838.533333pt;}
.yc{bottom:840.773333pt;}
.y100{bottom:845.893333pt;}
.y82{bottom:849.253333pt;}
.y15d{bottom:852.293333pt;}
.y48{bottom:853.893333pt;}
.yff{bottom:861.253333pt;}
.y81{bottom:864.613333pt;}
.yb{bottom:865.733333pt;}
.y15c{bottom:867.653333pt;}
.y47{bottom:869.093333pt;}
.yfe{bottom:876.613333pt;}
.y80{bottom:879.813333pt;}
.y15b{bottom:883.013333pt;}
.y46{bottom:884.453333pt;}
.yfd{bottom:889.733333pt;}
.ya{bottom:895.013333pt;}
.y7f{bottom:895.173333pt;}
.y15a{bottom:898.213333pt;}
.y45{bottom:899.813333pt;}
.yfc{bottom:905.733333pt;}
.y7e{bottom:910.533333pt;}
.y159{bottom:913.573333pt;}
.y44{bottom:915.173333pt;}
.yfb{bottom:921.733333pt;}
.y7d{bottom:925.893333pt;}
.y158{bottom:928.293333pt;}
.y43{bottom:930.533333pt;}
.y9{bottom:932.453333pt;}
.yfa{bottom:937.733333pt;}
.y7c{bottom:941.253333pt;}
.y42{bottom:945.893333pt;}
.y7b{bottom:956.613333pt;}
.y41{bottom:961.093333pt;}
.y8{bottom:969.733333pt;}
.y7a{bottom:971.813333pt;}
.y40{bottom:975.653333pt;}
.y3f{bottom:987.173333pt;}
.y5{bottom:1013.440000pt;}
.y4{bottom:1031.360000pt;}
.y3{bottom:1048.160000pt;}
.y2{bottom:1063.520000pt;}
.y1{bottom:1080.320000pt;}
.h11{height:11.171875pt;}
.h18{height:15.200000pt;}
.h12{height:15.360000pt;}
.h19{height:15.392000pt;}
.h17{height:16.800000pt;}
.hd{height:18.768750pt;}
.h9{height:22.343750pt;}
.h1a{height:29.940625pt;}
.h14{height:30.560000pt;}
.h15{height:30.720000pt;}
.h16{height:30.752000pt;}
.h7{height:33.515625pt;}
.hc{height:33.867188pt;}
.hf{height:37.090625pt;}
.he{height:37.479688pt;}
.h10{height:38.672812pt;}
.h3{height:38.828437pt;}
.ha{height:39.325000pt;}
.h13{height:40.488438pt;}
.h2{height:41.112500pt;}
.hb{height:42.927500pt;}
.h4{height:56.062500pt;}
.h5{height:58.563750pt;}
.h8{height:67.031250pt;}
.h6{height:93.925000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:53.280000pt;}
.wf{width:59.360000pt;}
.w19{width:59.392000pt;}
.wb{width:65.312000pt;}
.w1b{width:65.440000pt;}
.w15{width:72.160000pt;}
.w10{width:73.792000pt;}
.w4{width:74.432000pt;}
.w8{width:77.280000pt;}
.w9{width:77.312000pt;}
.w14{width:81.952000pt;}
.wa{width:83.360000pt;}
.wc{width:89.280000pt;}
.we{width:89.920000pt;}
.w13{width:93.760000pt;}
.w16{width:94.432000pt;}
.w1d{width:95.392000pt;}
.w5{width:102.400000pt;}
.w11{width:105.440000pt;}
.w17{width:113.440000pt;}
.w3{width:122.400000pt;}
.w7{width:155.066667pt;}
.w12{width:157.946667pt;}
.w18{width:161.146667pt;}
.w1c{width:167.066667pt;}
.wd{width:221.466667pt;}
.w6{width:300.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x22{left:7.840000pt;}
.x1e{left:8.800000pt;}
.x31{left:9.760000pt;}
.x36{left:12.800000pt;}
.x1d{left:14.080000pt;}
.x2d{left:18.560000pt;}
.x25{left:20.000000pt;}
.x23{left:21.440000pt;}
.x39{left:23.360000pt;}
.x27{left:24.320000pt;}
.x2a{left:25.760000pt;}
.x26{left:26.880000pt;}
.x32{left:28.480000pt;}
.x15{left:30.560000pt;}
.x30{left:33.280000pt;}
.x3d{left:35.200000pt;}
.x28{left:36.160000pt;}
.x16{left:39.360000pt;}
.x3c{left:40.320000pt;}
.x33{left:44.320000pt;}
.x1b{left:48.634667pt;}
.x6{left:56.799988pt;}
.xb{left:59.999988pt;}
.x4a{left:69.759988pt;}
.x49{left:72.959988pt;}
.xf{left:75.679988pt;}
.x8{left:78.079988pt;}
.xd{left:80.831988pt;}
.x29{left:92.352000pt;}
.xe{left:104.831988pt;}
.x7{left:106.111988pt;}
.x14{left:122.560000pt;}
.x1a{left:126.112000pt;}
.x17{left:132.000000pt;}
.x1{left:163.066655pt;}
.x9{left:173.946655pt;}
.x2{left:198.586655pt;}
.x45{left:207.546655pt;}
.x40{left:209.306655pt;}
.x3f{left:214.106655pt;}
.x41{left:231.066667pt;}
.x18{left:236.346655pt;}
.x19{left:242.426655pt;}
.xc{left:246.946655pt;}
.x10{left:251.106655pt;}
.x34{left:255.906655pt;}
.x35{left:266.786655pt;}
.x1c{left:281.826667pt;}
.x3{left:314.946655pt;}
.x4{left:324.226655pt;}
.x37{left:346.146667pt;}
.x1f{left:359.906667pt;}
.x12{left:374.466667pt;}
.x46{left:377.826667pt;}
.x42{left:392.866667pt;}
.xa{left:401.826655pt;}
.x2b{left:405.186667pt;}
.x38{left:428.893333pt;}
.x20{left:437.853333pt;}
.x5{left:439.773322pt;}
.x13{left:449.533333pt;}
.x43{left:452.893333pt;}
.x2c{left:471.133333pt;}
.x47{left:473.853333pt;}
.x3a{left:501.693333pt;}
.x44{left:506.813333pt;}
.x21{left:521.853333pt;}
.x2e{left:531.133333pt;}
.x48{left:533.853333pt;}
.x3e{left:573.213322pt;}
.x24{left:587.973333pt;}
.x3b{left:596.773333pt;}
.x2f{left:605.573333pt;}
}




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