
    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_cde51e00b12df28e9817dd2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_6e3eae5124b4997d47c9081a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b63417f6c147438c76d796e9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8693d958ea141edf2c4b01c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_a3a7bc66d0c5dc10ce7d9016.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5788c27ae7979c784b1ab203.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;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_111db87e1756f0026fb554f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_17669680555fe60cf57c4b3a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.493800px;}
.lsd{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.wsc{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.wsb{word-spacing:-12.204000px;}
.ws6{word-spacing:-10.933800px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.272240px;}
._4{width:2.275200px;}
._3{width:3.402000px;}
._c{width:4.464720px;}
._6{width:5.724000px;}
._5{width:7.236000px;}
._8{width:9.234000px;}
._7{width:11.034000px;}
._9{width:12.079440px;}
._b{width:13.208400px;}
._2{width:15.984000px;}
._a{width:17.434800px;}
._10{width:23.110560px;}
._f{width:24.382080px;}
._e{width:25.889520px;}
._d{width:27.071280px;}
._13{width:34.362000px;}
._1c{width:35.403840px;}
._1b{width:36.450000px;}
._12{width:56.532960px;}
._11{width:68.963040px;}
._19{width:80.784000px;}
._18{width:171.212400px;}
._17{width:173.184480px;}
._1a{width:179.436000px;}
._16{width:210.636000px;}
._15{width:212.016000px;}
._14{width:226.891440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y59{bottom:1.620000px;}
.y4f{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y66{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y58{bottom:10.260000px;}
.y64{bottom:10.440000px;}
.yf0{bottom:15.840000px;}
.yf2{bottom:16.020000px;}
.yf5{bottom:16.065000px;}
.ya6{bottom:16.560000px;}
.yaa{bottom:16.740000px;}
.yee{bottom:17.604000px;}
.y11a{bottom:17.610000px;}
.ydd{bottom:17.640000px;}
.y4e{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.y63{bottom:25.920000px;}
.y10d{bottom:26.460000px;}
.y10b{bottom:27.534000px;}
.y107{bottom:27.540000px;}
.y109{bottom:27.720000px;}
.ya5{bottom:35.280000px;}
.y4d{bottom:37.800000px;}
.y62{bottom:41.580000px;}
.yf7{bottom:44.820000px;}
.y57{bottom:46.440000px;}
.ydc{bottom:47.520000px;}
.y3{bottom:47.910000px;}
.y4c{bottom:55.125000px;}
.y56{bottom:55.434000px;}
.y7{bottom:57.060000px;}
.y61{bottom:59.214000px;}
.ydb{bottom:64.005000px;}
.y55{bottom:66.234000px;}
.y28{bottom:68.985000px;}
.y4b{bottom:72.405000px;}
.y60{bottom:74.874000px;}
.y54{bottom:78.294000px;}
.y119{bottom:80.460000px;}
.yda{bottom:80.490000px;}
.y4a{bottom:89.505000px;}
.y53{bottom:90.354000px;}
.y5f{bottom:92.514000px;}
.y27{bottom:94.005000px;}
.y50{bottom:95.976000px;}
.ydf{bottom:98.025000px;}
.yc7{bottom:98.070000px;}
.y10c{bottom:99.036000px;}
.yc5{bottom:101.556000px;}
.yde{bottom:104.400000px;}
.y9e{bottom:105.336000px;}
.y49{bottom:106.785000px;}
.y5e{bottom:108.174000px;}
.y10f{bottom:114.090000px;}
.y140{bottom:114.270000px;}
.ye6{bottom:114.735000px;}
.yd1{bottom:115.530000px;}
.y13e{bottom:115.956000px;}
.yc8{bottom:117.435000px;}
.y26{bottom:119.025000px;}
.y9d{bottom:122.616000px;}
.y5d{bottom:123.654000px;}
.y48{bottom:124.065000px;}
.ye0{bottom:125.850000px;}
.y110{bottom:130.140000px;}
.y141{bottom:130.500000px;}
.ye7{bottom:131.400000px;}
.yd2{bottom:132.945000px;}
.y13d{bottom:133.056000px;}
.yc9{bottom:136.830000px;}
.y5c{bottom:139.134000px;}
.y9c{bottom:139.896000px;}
.y10a{bottom:140.256000px;}
.y47{bottom:141.345000px;}
.y25{bottom:144.045000px;}
.y111{bottom:146.160000px;}
.y142{bottom:146.730000px;}
.ye8{bottom:148.110000px;}
.y13c{bottom:150.330000px;}
.yd3{bottom:150.405000px;}
.y52{bottom:151.374000px;}
.ye1{bottom:153.645000px;}
.y5b{bottom:154.614000px;}
.yca{bottom:156.240000px;}
.y9b{bottom:157.170000px;}
.y46{bottom:158.625000px;}
.y51{bottom:161.094000px;}
.y112{bottom:162.210000px;}
.y143{bottom:162.975000px;}
.ye9{bottom:164.775000px;}
.y13b{bottom:167.610000px;}
.yd4{bottom:167.865000px;}
.y24{bottom:169.065000px;}
.y5a{bottom:170.274000px;}
.y9a{bottom:174.450000px;}
.ycb{bottom:175.650000px;}
.y45{bottom:175.725000px;}
.y113{bottom:178.275000px;}
.y144{bottom:179.205000px;}
.ye2{bottom:181.440000px;}
.y108{bottom:182.550000px;}
.y13a{bottom:184.890000px;}
.yd5{bottom:185.325000px;}
.y99{bottom:191.550000px;}
.y44{bottom:193.005000px;}
.y23{bottom:194.085000px;}
.y114{bottom:194.295000px;}
.ycc{bottom:195.015000px;}
.y145{bottom:195.450000px;}
.yea{bottom:198.150000px;}
.y139{bottom:202.170000px;}
.yd6{bottom:202.785000px;}
.y98{bottom:208.830000px;}
.ye3{bottom:209.265000px;}
.y43{bottom:210.285000px;}
.y115{bottom:210.345000px;}
.y146{bottom:211.680000px;}
.ycd{bottom:214.410000px;}
.yeb{bottom:214.815000px;}
.y22{bottom:219.105000px;}
.y138{bottom:219.450000px;}
.yd7{bottom:220.245000px;}
.y106{bottom:225.030000px;}
.y97{bottom:226.110000px;}
.y116{bottom:226.410000px;}
.y42{bottom:227.565000px;}
.y147{bottom:227.880000px;}
.yec{bottom:231.510000px;}
.yce{bottom:233.820000px;}
.y137{bottom:236.550000px;}
.ye4{bottom:237.060000px;}
.yd8{bottom:237.705000px;}
.y117{bottom:242.430000px;}
.y96{bottom:243.390000px;}
.y148{bottom:244.110000px;}
.y21{bottom:244.125000px;}
.y41{bottom:244.845000px;}
.yed{bottom:248.190000px;}
.ycf{bottom:253.230000px;}
.y136{bottom:253.830000px;}
.yd9{bottom:255.165000px;}
.y118{bottom:258.480000px;}
.y149{bottom:260.355000px;}
.y40{bottom:262.125000px;}
.ye5{bottom:264.885000px;}
.y105{bottom:267.330000px;}
.y20{bottom:269.145000px;}
.y95{bottom:269.670000px;}
.y135{bottom:271.110000px;}
.yd0{bottom:272.595000px;}
.y3f{bottom:279.225000px;}
.yf{bottom:286.950000px;}
.y134{bottom:288.390000px;}
.yb1{bottom:292.170000px;}
.y1f{bottom:294.165000px;}
.y3e{bottom:296.505000px;}
.y94{bottom:304.050000px;}
.y133{bottom:305.670000px;}
.yb0{bottom:309.450000px;}
.y3d{bottom:313.785000px;}
.y1e{bottom:319.215000px;}
.y104{bottom:320.610000px;}
.y93{bottom:321.330000px;}
.y132{bottom:322.770000px;}
.yaf{bottom:326.730000px;}
.y3c{bottom:331.095000px;}
.y1d{bottom:332.355000px;}
.y103{bottom:337.890000px;}
.y92{bottom:338.610000px;}
.y131{bottom:340.095000px;}
.yae{bottom:344.055000px;}
.y3b{bottom:348.375000px;}
.y102{bottom:355.035000px;}
.y91{bottom:355.935000px;}
.y1c{bottom:356.475000px;}
.y130{bottom:357.375000px;}
.yad{bottom:361.155000px;}
.y3a{bottom:365.655000px;}
.y101{bottom:372.315000px;}
.y90{bottom:373.215000px;}
.y12f{bottom:374.655000px;}
.yac{bottom:378.435000px;}
.y1b{bottom:380.595000px;}
.y39{bottom:382.755000px;}
.y100{bottom:389.595000px;}
.y8f{bottom:390.495000px;}
.y12e{bottom:391.935000px;}
.yc4{bottom:392.835000px;}
.yab{bottom:393.195000px;}
.y38{bottom:400.035000px;}
.y1a{bottom:404.715000px;}
.yff{bottom:406.875000px;}
.y8e{bottom:407.595000px;}
.y12d{bottom:409.215000px;}
.yc3{bottom:410.115000px;}
.yfe{bottom:420.915000px;}
.y10e{bottom:423.360000px;}
.ya9{bottom:424.515000px;}
.y8d{bottom:424.875000px;}
.y37{bottom:425.955000px;}
.y12c{bottom:426.315000px;}
.yc2{bottom:427.395000px;}
.y19{bottom:428.835000px;}
.y36{bottom:441.615000px;}
.y8c{bottom:442.155000px;}
.y12b{bottom:443.595000px;}
.yc1{bottom:444.495000px;}
.y18{bottom:452.955000px;}
.ya8{bottom:456.015000px;}
.y35{bottom:457.095000px;}
.y8b{bottom:459.435000px;}
.y12a{bottom:460.875000px;}
.yc0{bottom:461.775000px;}
.y34{bottom:472.575000px;}
.y8a{bottom:476.715000px;}
.y17{bottom:477.255000px;}
.y129{bottom:478.155000px;}
.ybf{bottom:479.055000px;}
.ya7{bottom:487.335000px;}
.y33{bottom:488.055000px;}
.ybe{bottom:493.815000px;}
.y89{bottom:493.995000px;}
.y128{bottom:495.435000px;}
.y16{bottom:501.375000px;}
.y32{bottom:503.535000px;}
.y88{bottom:511.095000px;}
.y127{bottom:512.715000px;}
.ya4{bottom:518.655000px;}
.y31{bottom:519.195000px;}
.ybd{bottom:525.135000px;}
.y15{bottom:525.495000px;}
.y87{bottom:528.375000px;}
.y126{bottom:529.815000px;}
.y30{bottom:534.675000px;}
.y86{bottom:545.655000px;}
.y125{bottom:547.095000px;}
.y14{bottom:549.615000px;}
.y2f{bottom:550.155000px;}
.y85{bottom:562.935000px;}
.y124{bottom:564.375000px;}
.y2e{bottom:565.635000px;}
.ya3{bottom:571.935000px;}
.y13{bottom:573.735000px;}
.ybc{bottom:575.175000px;}
.y84{bottom:580.215000px;}
.y2d{bottom:581.340000px;}
.y123{bottom:581.655000px;}
.ya2{bottom:589.215000px;}
.y2c{bottom:596.820000px;}
.y83{bottom:597.315000px;}
.y12{bottom:597.900000px;}
.y122{bottom:598.935000px;}
.ya1{bottom:606.345000px;}
.ybb{bottom:606.525000px;}
.y2b{bottom:612.300000px;}
.y82{bottom:614.625000px;}
.y121{bottom:616.065000px;}
.y11{bottom:622.200000px;}
.ya0{bottom:623.625000px;}
.y2a{bottom:627.780000px;}
.y81{bottom:631.905000px;}
.y120{bottom:633.345000px;}
.yba{bottom:637.845000px;}
.y9f{bottom:640.905000px;}
.y29{bottom:643.440000px;}
.y10{bottom:646.320000px;}
.y11f{bottom:650.625000px;}
.y80{bottom:658.185000px;}
.y11e{bottom:667.905000px;}
.y7f{bottom:675.465000px;}
.y11d{bottom:685.185000px;}
.yb9{bottom:691.125000px;}
.y7e{bottom:692.745000px;}
.y11c{bottom:702.465000px;}
.yfd{bottom:705.345000px;}
.yb8{bottom:708.405000px;}
.y7d{bottom:709.845000px;}
.y11b{bottom:716.325000px;}
.y13f{bottom:719.280000px;}
.yfc{bottom:722.625000px;}
.yb7{bottom:725.685000px;}
.y7c{bottom:727.125000px;}
.yfb{bottom:739.905000px;}
.yb6{bottom:742.965000px;}
.y7b{bottom:744.405000px;}
.yfa{bottom:757.185000px;}
.yb5{bottom:760.065000px;}
.y7a{bottom:761.685000px;}
.yf9{bottom:774.465000px;}
.yb4{bottom:777.345000px;}
.y79{bottom:778.965000px;}
.yf8{bottom:791.565000px;}
.yb3{bottom:794.625000px;}
.y78{bottom:796.245000px;}
.yf6{bottom:806.325000px;}
.yb2{bottom:808.665000px;}
.yc6{bottom:810.540000px;}
.y77{bottom:813.345000px;}
.y76{bottom:830.625000px;}
.y75{bottom:847.905000px;}
.yf4{bottom:864.645000px;}
.y74{bottom:865.185000px;}
.y73{bottom:882.510000px;}
.yf3{bottom:894.210000px;}
.y72{bottom:899.610000px;}
.y71{bottom:916.890000px;}
.yf1{bottom:923.730000px;}
.y70{bottom:934.170000px;}
.ye{bottom:948.390000px;}
.y6f{bottom:951.450000px;}
.yef{bottom:953.250000px;}
.y6e{bottom:968.730000px;}
.yd{bottom:970.890000px;}
.y6d{bottom:986.010000px;}
.yc{bottom:988.170000px;}
.yb{bottom:1000.230000px;}
.y6c{bottom:1003.110000px;}
.ya{bottom:1018.950000px;}
.y6b{bottom:1020.390000px;}
.y6a{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.y69{bottom:1054.950000px;}
.y8{bottom:1071.870000px;}
.y68{bottom:1072.230000px;}
.y65{bottom:1075.140000px;}
.y67{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h13{height:21.114844px;}
.h12{height:25.136719px;}
.ha{height:27.147656px;}
.h14{height:27.720000px;}
.h1d{height:28.620000px;}
.h1f{height:28.800000px;}
.h21{height:28.836000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h17{height:30.600000px;}
.h19{height:30.636000px;}
.h18{height:30.780000px;}
.h20{height:37.705078px;}
.h1e{height:38.100586px;}
.h7{height:40.132617px;}
.h25{height:40.500000px;}
.h23{height:41.580000px;}
.h6{height:41.726953px;}
.h24{height:41.760000px;}
.hb{height:42.164648px;}
.h28{height:43.506914px;}
.hf{height:43.822266px;}
.h10{height:44.507812px;}
.h5{height:46.251562px;}
.h9{height:48.312422px;}
.h27{height:48.496641px;}
.h16{height:49.320000px;}
.h1b{height:53.709961px;}
.h22{height:57.600000px;}
.h15{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h11{height:190.260000px;}
.h26{height:278.820000px;}
.h29{height:280.620000px;}
.h1c{height:285.300000px;}
.h1a{height:292.860000px;}
.hc{height:656.025000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:42.840000px;}
.w1b{width:43.020000px;}
.w18{width:45.360000px;}
.w10{width:50.040000px;}
.wd{width:52.200000px;}
.w16{width:79.920000px;}
.w2{width:104.076000px;}
.wf{width:108.936000px;}
.w11{width:120.996000px;}
.wc{width:129.636000px;}
.w5{width:131.940000px;}
.w15{width:137.556000px;}
.w1a{width:138.096000px;}
.wa{width:140.616000px;}
.w1c{width:155.190000px;}
.w17{width:161.670000px;}
.w8{width:162.900000px;}
.w19{width:185.070000px;}
.w14{width:190.470000px;}
.we{width:193.350000px;}
.w9{width:228.990000px;}
.w1e{width:415.800000px;}
.w13{width:450.720000px;}
.w1d{width:457.560000px;}
.w12{width:477.000000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.056000px;}
.x17{left:8.100000px;}
.x2b{left:9.930000px;}
.x4{left:12.780000px;}
.x2a{left:16.770000px;}
.x15{left:18.180000px;}
.x6{left:19.260000px;}
.xf{left:25.560000px;}
.x10{left:28.980000px;}
.xe{left:31.140000px;}
.x14{left:37.260000px;}
.x13{left:40.320000px;}
.x12{left:42.480000px;}
.x1a{left:47.340000px;}
.x34{left:48.420000px;}
.x45{left:55.650000px;}
.x1b{left:56.700000px;}
.x18{left:62.145000px;}
.x11{left:65.874000px;}
.x35{left:69.765000px;}
.x3a{left:75.930000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x31{left:88.770000px;}
.x2{left:95.790000px;}
.x19{left:106.374000px;}
.x4c{left:113.435987px;}
.x4f{left:122.730000px;}
.x46{left:129.345000px;}
.x36{left:133.350000px;}
.x2c{left:138.450000px;}
.x5{left:141.345000px;}
.x1d{left:147.816000px;}
.x37{left:151.230000px;}
.x40{left:162.930000px;}
.x3{left:182.370000px;}
.x23{left:183.450000px;}
.x28{left:206.820000px;}
.x44{left:217.080000px;}
.x16{left:218.370000px;}
.x32{left:220.320000px;}
.x50{left:223.560000px;}
.x4d{left:237.240000px;}
.x38{left:240.330000px;}
.x47{left:241.350000px;}
.x48{left:243.210000px;}
.x2d{left:249.270000px;}
.xc{left:257.834987px;}
.x2e{left:269.130000px;}
.xb{left:271.154987px;}
.x51{left:296.205000px;}
.x52{left:307.005000px;}
.x39{left:313.485000px;}
.x4a{left:318.855000px;}
.x3b{left:328.935000px;}
.x49{left:341.895000px;}
.x30{left:343.005000px;}
.x41{left:348.735000px;}
.x2f{left:364.965000px;}
.x4e{left:376.170000px;}
.x1e{left:377.535000px;}
.x33{left:417.780000px;}
.x29{left:444.210000px;}
.x3c{left:467.205000px;}
.x24{left:487.365000px;}
.x1f{left:519.045000px;}
.x42{left:531.285000px;}
.x25{left:538.125000px;}
.x3d{left:547.845000px;}
.x20{left:562.605000px;}
.xd{left:587.624987px;}
.xa{left:605.129987px;}
.x4b{left:655.889987px;}
.x26{left:659.850000px;}
.x27{left:672.809987px;}
.x3f{left:676.229987px;}
.x22{left:686.309987px;}
.x43{left:687.390000px;}
.x21{left:693.150000px;}
.x3e{left:710.250000px;}
.x8{left:766.049987px;}
.x7{left:784.439987px;}
.x53{left:806.939987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.438933pt;}
.lsd{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.wsb{word-spacing:-10.848000pt;}
.ws6{word-spacing:-9.718933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.130880pt;}
._4{width:2.022400pt;}
._3{width:3.024000pt;}
._c{width:3.968640pt;}
._6{width:5.088000pt;}
._5{width:6.432000pt;}
._8{width:8.208000pt;}
._7{width:9.808000pt;}
._9{width:10.737280pt;}
._b{width:11.740800pt;}
._2{width:14.208000pt;}
._a{width:15.497600pt;}
._10{width:20.542720pt;}
._f{width:21.672960pt;}
._e{width:23.012907pt;}
._d{width:24.063360pt;}
._13{width:30.544000pt;}
._1c{width:31.470080pt;}
._1b{width:32.400000pt;}
._12{width:50.251520pt;}
._11{width:61.300480pt;}
._19{width:71.808000pt;}
._18{width:152.188800pt;}
._17{width:153.941760pt;}
._1a{width:159.498667pt;}
._16{width:187.232000pt;}
._15{width:188.458667pt;}
._14{width:201.681280pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:1.440000pt;}
.y4f{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y66{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y58{bottom:9.120000pt;}
.y64{bottom:9.280000pt;}
.yf0{bottom:14.080000pt;}
.yf2{bottom:14.240000pt;}
.yf5{bottom:14.280000pt;}
.ya6{bottom:14.720000pt;}
.yaa{bottom:14.880000pt;}
.yee{bottom:15.648000pt;}
.y11a{bottom:15.653333pt;}
.ydd{bottom:15.680000pt;}
.y4e{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.y63{bottom:23.040000pt;}
.y10d{bottom:23.520000pt;}
.y10b{bottom:24.474667pt;}
.y107{bottom:24.480000pt;}
.y109{bottom:24.640000pt;}
.ya5{bottom:31.360000pt;}
.y4d{bottom:33.600000pt;}
.y62{bottom:36.960000pt;}
.yf7{bottom:39.840000pt;}
.y57{bottom:41.280000pt;}
.ydc{bottom:42.240000pt;}
.y3{bottom:42.586667pt;}
.y4c{bottom:49.000000pt;}
.y56{bottom:49.274667pt;}
.y7{bottom:50.720000pt;}
.y61{bottom:52.634667pt;}
.ydb{bottom:56.893333pt;}
.y55{bottom:58.874667pt;}
.y28{bottom:61.320000pt;}
.y4b{bottom:64.360000pt;}
.y60{bottom:66.554667pt;}
.y54{bottom:69.594667pt;}
.y119{bottom:71.520000pt;}
.yda{bottom:71.546667pt;}
.y4a{bottom:79.560000pt;}
.y53{bottom:80.314667pt;}
.y5f{bottom:82.234667pt;}
.y27{bottom:83.560000pt;}
.y50{bottom:85.312000pt;}
.ydf{bottom:87.133333pt;}
.yc7{bottom:87.173333pt;}
.y10c{bottom:88.032000pt;}
.yc5{bottom:90.272000pt;}
.yde{bottom:92.800000pt;}
.y9e{bottom:93.632000pt;}
.y49{bottom:94.920000pt;}
.y5e{bottom:96.154667pt;}
.y10f{bottom:101.413333pt;}
.y140{bottom:101.573333pt;}
.ye6{bottom:101.986667pt;}
.yd1{bottom:102.693333pt;}
.y13e{bottom:103.072000pt;}
.yc8{bottom:104.386667pt;}
.y26{bottom:105.800000pt;}
.y9d{bottom:108.992000pt;}
.y5d{bottom:109.914667pt;}
.y48{bottom:110.280000pt;}
.ye0{bottom:111.866667pt;}
.y110{bottom:115.680000pt;}
.y141{bottom:116.000000pt;}
.ye7{bottom:116.800000pt;}
.yd2{bottom:118.173333pt;}
.y13d{bottom:118.272000pt;}
.yc9{bottom:121.626667pt;}
.y5c{bottom:123.674667pt;}
.y9c{bottom:124.352000pt;}
.y10a{bottom:124.672000pt;}
.y47{bottom:125.640000pt;}
.y25{bottom:128.040000pt;}
.y111{bottom:129.920000pt;}
.y142{bottom:130.426667pt;}
.ye8{bottom:131.653333pt;}
.y13c{bottom:133.626667pt;}
.yd3{bottom:133.693333pt;}
.y52{bottom:134.554667pt;}
.ye1{bottom:136.573333pt;}
.y5b{bottom:137.434667pt;}
.yca{bottom:138.880000pt;}
.y9b{bottom:139.706667pt;}
.y46{bottom:141.000000pt;}
.y51{bottom:143.194667pt;}
.y112{bottom:144.186667pt;}
.y143{bottom:144.866667pt;}
.ye9{bottom:146.466667pt;}
.y13b{bottom:148.986667pt;}
.yd4{bottom:149.213333pt;}
.y24{bottom:150.280000pt;}
.y5a{bottom:151.354667pt;}
.y9a{bottom:155.066667pt;}
.ycb{bottom:156.133333pt;}
.y45{bottom:156.200000pt;}
.y113{bottom:158.466667pt;}
.y144{bottom:159.293333pt;}
.ye2{bottom:161.280000pt;}
.y108{bottom:162.266667pt;}
.y13a{bottom:164.346667pt;}
.yd5{bottom:164.733333pt;}
.y99{bottom:170.266667pt;}
.y44{bottom:171.560000pt;}
.y23{bottom:172.520000pt;}
.y114{bottom:172.706667pt;}
.ycc{bottom:173.346667pt;}
.y145{bottom:173.733333pt;}
.yea{bottom:176.133333pt;}
.y139{bottom:179.706667pt;}
.yd6{bottom:180.253333pt;}
.y98{bottom:185.626667pt;}
.ye3{bottom:186.013333pt;}
.y43{bottom:186.920000pt;}
.y115{bottom:186.973333pt;}
.y146{bottom:188.160000pt;}
.ycd{bottom:190.586667pt;}
.yeb{bottom:190.946667pt;}
.y22{bottom:194.760000pt;}
.y138{bottom:195.066667pt;}
.yd7{bottom:195.773333pt;}
.y106{bottom:200.026667pt;}
.y97{bottom:200.986667pt;}
.y116{bottom:201.253333pt;}
.y42{bottom:202.280000pt;}
.y147{bottom:202.560000pt;}
.yec{bottom:205.786667pt;}
.yce{bottom:207.840000pt;}
.y137{bottom:210.266667pt;}
.ye4{bottom:210.720000pt;}
.yd8{bottom:211.293333pt;}
.y117{bottom:215.493333pt;}
.y96{bottom:216.346667pt;}
.y148{bottom:216.986667pt;}
.y21{bottom:217.000000pt;}
.y41{bottom:217.640000pt;}
.yed{bottom:220.613333pt;}
.ycf{bottom:225.093333pt;}
.y136{bottom:225.626667pt;}
.yd9{bottom:226.813333pt;}
.y118{bottom:229.760000pt;}
.y149{bottom:231.426667pt;}
.y40{bottom:233.000000pt;}
.ye5{bottom:235.453333pt;}
.y105{bottom:237.626667pt;}
.y20{bottom:239.240000pt;}
.y95{bottom:239.706667pt;}
.y135{bottom:240.986667pt;}
.yd0{bottom:242.306667pt;}
.y3f{bottom:248.200000pt;}
.yf{bottom:255.066667pt;}
.y134{bottom:256.346667pt;}
.yb1{bottom:259.706667pt;}
.y1f{bottom:261.480000pt;}
.y3e{bottom:263.560000pt;}
.y94{bottom:270.266667pt;}
.y133{bottom:271.706667pt;}
.yb0{bottom:275.066667pt;}
.y3d{bottom:278.920000pt;}
.y1e{bottom:283.746667pt;}
.y104{bottom:284.986667pt;}
.y93{bottom:285.626667pt;}
.y132{bottom:286.906667pt;}
.yaf{bottom:290.426667pt;}
.y3c{bottom:294.306667pt;}
.y1d{bottom:295.426667pt;}
.y103{bottom:300.346667pt;}
.y92{bottom:300.986667pt;}
.y131{bottom:302.306667pt;}
.yae{bottom:305.826667pt;}
.y3b{bottom:309.666667pt;}
.y102{bottom:315.586667pt;}
.y91{bottom:316.386667pt;}
.y1c{bottom:316.866667pt;}
.y130{bottom:317.666667pt;}
.yad{bottom:321.026667pt;}
.y3a{bottom:325.026667pt;}
.y101{bottom:330.946667pt;}
.y90{bottom:331.746667pt;}
.y12f{bottom:333.026667pt;}
.yac{bottom:336.386667pt;}
.y1b{bottom:338.306667pt;}
.y39{bottom:340.226667pt;}
.y100{bottom:346.306667pt;}
.y8f{bottom:347.106667pt;}
.y12e{bottom:348.386667pt;}
.yc4{bottom:349.186667pt;}
.yab{bottom:349.506667pt;}
.y38{bottom:355.586667pt;}
.y1a{bottom:359.746667pt;}
.yff{bottom:361.666667pt;}
.y8e{bottom:362.306667pt;}
.y12d{bottom:363.746667pt;}
.yc3{bottom:364.546667pt;}
.yfe{bottom:374.146667pt;}
.y10e{bottom:376.320000pt;}
.ya9{bottom:377.346667pt;}
.y8d{bottom:377.666667pt;}
.y37{bottom:378.626667pt;}
.y12c{bottom:378.946667pt;}
.yc2{bottom:379.906667pt;}
.y19{bottom:381.186667pt;}
.y36{bottom:392.546667pt;}
.y8c{bottom:393.026667pt;}
.y12b{bottom:394.306667pt;}
.yc1{bottom:395.106667pt;}
.y18{bottom:402.626667pt;}
.ya8{bottom:405.346667pt;}
.y35{bottom:406.306667pt;}
.y8b{bottom:408.386667pt;}
.y12a{bottom:409.666667pt;}
.yc0{bottom:410.466667pt;}
.y34{bottom:420.066667pt;}
.y8a{bottom:423.746667pt;}
.y17{bottom:424.226667pt;}
.y129{bottom:425.026667pt;}
.ybf{bottom:425.826667pt;}
.ya7{bottom:433.186667pt;}
.y33{bottom:433.826667pt;}
.ybe{bottom:438.946667pt;}
.y89{bottom:439.106667pt;}
.y128{bottom:440.386667pt;}
.y16{bottom:445.666667pt;}
.y32{bottom:447.586667pt;}
.y88{bottom:454.306667pt;}
.y127{bottom:455.746667pt;}
.ya4{bottom:461.026667pt;}
.y31{bottom:461.506667pt;}
.ybd{bottom:466.786667pt;}
.y15{bottom:467.106667pt;}
.y87{bottom:469.666667pt;}
.y126{bottom:470.946667pt;}
.y30{bottom:475.266667pt;}
.y86{bottom:485.026667pt;}
.y125{bottom:486.306667pt;}
.y14{bottom:488.546667pt;}
.y2f{bottom:489.026667pt;}
.y85{bottom:500.386667pt;}
.y124{bottom:501.666667pt;}
.y2e{bottom:502.786667pt;}
.ya3{bottom:508.386667pt;}
.y13{bottom:509.986667pt;}
.ybc{bottom:511.266667pt;}
.y84{bottom:515.746667pt;}
.y2d{bottom:516.746667pt;}
.y123{bottom:517.026667pt;}
.ya2{bottom:523.746667pt;}
.y2c{bottom:530.506667pt;}
.y83{bottom:530.946667pt;}
.y12{bottom:531.466667pt;}
.y122{bottom:532.386667pt;}
.ya1{bottom:538.973333pt;}
.ybb{bottom:539.133333pt;}
.y2b{bottom:544.266667pt;}
.y82{bottom:546.333333pt;}
.y121{bottom:547.613333pt;}
.y11{bottom:553.066667pt;}
.ya0{bottom:554.333333pt;}
.y2a{bottom:558.026667pt;}
.y81{bottom:561.693333pt;}
.y120{bottom:562.973333pt;}
.yba{bottom:566.973333pt;}
.y9f{bottom:569.693333pt;}
.y29{bottom:571.946667pt;}
.y10{bottom:574.506667pt;}
.y11f{bottom:578.333333pt;}
.y80{bottom:585.053333pt;}
.y11e{bottom:593.693333pt;}
.y7f{bottom:600.413333pt;}
.y11d{bottom:609.053333pt;}
.yb9{bottom:614.333333pt;}
.y7e{bottom:615.773333pt;}
.y11c{bottom:624.413333pt;}
.yfd{bottom:626.973333pt;}
.yb8{bottom:629.693333pt;}
.y7d{bottom:630.973333pt;}
.y11b{bottom:636.733333pt;}
.y13f{bottom:639.360000pt;}
.yfc{bottom:642.333333pt;}
.yb7{bottom:645.053333pt;}
.y7c{bottom:646.333333pt;}
.yfb{bottom:657.693333pt;}
.yb6{bottom:660.413333pt;}
.y7b{bottom:661.693333pt;}
.yfa{bottom:673.053333pt;}
.yb5{bottom:675.613333pt;}
.y7a{bottom:677.053333pt;}
.yf9{bottom:688.413333pt;}
.yb4{bottom:690.973333pt;}
.y79{bottom:692.413333pt;}
.yf8{bottom:703.613333pt;}
.yb3{bottom:706.333333pt;}
.y78{bottom:707.773333pt;}
.yf6{bottom:716.733333pt;}
.yb2{bottom:718.813333pt;}
.yc6{bottom:720.480000pt;}
.y77{bottom:722.973333pt;}
.y76{bottom:738.333333pt;}
.y75{bottom:753.693333pt;}
.yf4{bottom:768.573333pt;}
.y74{bottom:769.053333pt;}
.y73{bottom:784.453333pt;}
.yf3{bottom:794.853333pt;}
.y72{bottom:799.653333pt;}
.y71{bottom:815.013333pt;}
.yf1{bottom:821.093333pt;}
.y70{bottom:830.373333pt;}
.ye{bottom:843.013333pt;}
.y6f{bottom:845.733333pt;}
.yef{bottom:847.333333pt;}
.y6e{bottom:861.093333pt;}
.yd{bottom:863.013333pt;}
.y6d{bottom:876.453333pt;}
.yc{bottom:878.373333pt;}
.yb{bottom:889.093333pt;}
.y6c{bottom:891.653333pt;}
.ya{bottom:905.733333pt;}
.y6b{bottom:907.013333pt;}
.y6a{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.y69{bottom:937.733333pt;}
.y8{bottom:952.773333pt;}
.y68{bottom:953.093333pt;}
.y65{bottom:955.680000pt;}
.y67{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h13{height:18.768750pt;}
.h12{height:22.343750pt;}
.ha{height:24.131250pt;}
.h14{height:24.640000pt;}
.h1d{height:25.440000pt;}
.h1f{height:25.600000pt;}
.h21{height:25.632000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h17{height:27.200000pt;}
.h19{height:27.232000pt;}
.h18{height:27.360000pt;}
.h20{height:33.515625pt;}
.h1e{height:33.867188pt;}
.h7{height:35.673437pt;}
.h25{height:36.000000pt;}
.h23{height:36.960000pt;}
.h6{height:37.090625pt;}
.h24{height:37.120000pt;}
.hb{height:37.479688pt;}
.h28{height:38.672812pt;}
.hf{height:38.953125pt;}
.h10{height:39.562500pt;}
.h5{height:41.112500pt;}
.h9{height:42.944375pt;}
.h27{height:43.108125pt;}
.h16{height:43.840000pt;}
.h1b{height:47.742188pt;}
.h22{height:51.200000pt;}
.h15{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h11{height:169.120000pt;}
.h26{height:247.840000pt;}
.h29{height:249.440000pt;}
.h1c{height:253.600000pt;}
.h1a{height:260.320000pt;}
.hc{height:583.133333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:38.080000pt;}
.w1b{width:38.240000pt;}
.w18{width:40.320000pt;}
.w10{width:44.480000pt;}
.wd{width:46.400000pt;}
.w16{width:71.040000pt;}
.w2{width:92.512000pt;}
.wf{width:96.832000pt;}
.w11{width:107.552000pt;}
.wc{width:115.232000pt;}
.w5{width:117.280000pt;}
.w15{width:122.272000pt;}
.w1a{width:122.752000pt;}
.wa{width:124.992000pt;}
.w1c{width:137.946667pt;}
.w17{width:143.706667pt;}
.w8{width:144.800000pt;}
.w19{width:164.506667pt;}
.w14{width:169.306667pt;}
.we{width:171.866667pt;}
.w9{width:203.546667pt;}
.w1e{width:369.600000pt;}
.w13{width:400.640000pt;}
.w1d{width:406.720000pt;}
.w12{width:424.000000pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.272000pt;}
.x17{left:7.200000pt;}
.x2b{left:8.826667pt;}
.x4{left:11.360000pt;}
.x2a{left:14.906667pt;}
.x15{left:16.160000pt;}
.x6{left:17.120000pt;}
.xf{left:22.720000pt;}
.x10{left:25.760000pt;}
.xe{left:27.680000pt;}
.x14{left:33.120000pt;}
.x13{left:35.840000pt;}
.x12{left:37.760000pt;}
.x1a{left:42.080000pt;}
.x34{left:43.040000pt;}
.x45{left:49.466667pt;}
.x1b{left:50.400000pt;}
.x18{left:55.240000pt;}
.x11{left:58.554667pt;}
.x35{left:62.013333pt;}
.x3a{left:67.493333pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x31{left:78.906667pt;}
.x2{left:85.146667pt;}
.x19{left:94.554667pt;}
.x4c{left:100.831988pt;}
.x4f{left:109.093333pt;}
.x46{left:114.973333pt;}
.x36{left:118.533333pt;}
.x2c{left:123.066667pt;}
.x5{left:125.640000pt;}
.x1d{left:131.392000pt;}
.x37{left:134.426667pt;}
.x40{left:144.826667pt;}
.x3{left:162.106667pt;}
.x23{left:163.066667pt;}
.x28{left:183.840000pt;}
.x44{left:192.960000pt;}
.x16{left:194.106667pt;}
.x32{left:195.840000pt;}
.x50{left:198.720000pt;}
.x4d{left:210.880000pt;}
.x38{left:213.626667pt;}
.x47{left:214.533333pt;}
.x48{left:216.186667pt;}
.x2d{left:221.573333pt;}
.xc{left:229.186655pt;}
.x2e{left:239.226667pt;}
.xb{left:241.026655pt;}
.x51{left:263.293333pt;}
.x52{left:272.893333pt;}
.x39{left:278.653333pt;}
.x4a{left:283.426667pt;}
.x3b{left:292.386667pt;}
.x49{left:303.906667pt;}
.x30{left:304.893333pt;}
.x41{left:309.986667pt;}
.x2f{left:324.413333pt;}
.x4e{left:334.373333pt;}
.x1e{left:335.586667pt;}
.x33{left:371.360000pt;}
.x29{left:394.853333pt;}
.x3c{left:415.293333pt;}
.x24{left:433.213333pt;}
.x1f{left:461.373333pt;}
.x42{left:472.253333pt;}
.x25{left:478.333333pt;}
.x3d{left:486.973333pt;}
.x20{left:500.093333pt;}
.xd{left:522.333322pt;}
.xa{left:537.893322pt;}
.x4b{left:583.013322pt;}
.x26{left:586.533333pt;}
.x27{left:598.053322pt;}
.x3f{left:601.093322pt;}
.x22{left:610.053322pt;}
.x43{left:611.013333pt;}
.x21{left:616.133333pt;}
.x3e{left:631.333333pt;}
.x8{left:680.933322pt;}
.x7{left:697.279988pt;}
.x53{left:717.279988pt;}
}




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