
    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_5207f13e16fb9e9aee22ba38.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_b8c327195112a0643c21cae7.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e91024dabff617ce353e1d53.woff')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_7be5f49b90f2ee296ff0949f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.061035;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_5471e4ac1a2d1cc1c7f4efd6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_a47e0e38a703dc626c658457.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.266400px;}
.lse{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.052560px;}
.ls11{letter-spacing:-0.048960px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.068400px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls7{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.181200px;}
.ls14{letter-spacing:0.198000px;}
.ls13{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.374760px;}
.ls3{letter-spacing:6.026400px;}
.ls17{letter-spacing:47.726640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-14.441040px;}
.ws3{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.425600px;}
.wsc{word-spacing:-13.424400px;}
.wse{word-spacing:-13.407600px;}
.ws5{word-spacing:-13.399800px;}
.ws7{word-spacing:-13.294800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws8{word-spacing:-13.177440px;}
.wsd{word-spacing:-13.072800px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-3.426840px;}
._15{margin-left:-2.116080px;}
._4{margin-left:-1.022040px;}
._3{width:1.140600px;}
._10{width:2.344680px;}
._c{width:3.426840px;}
._d{width:4.569120px;}
._7{width:5.891760px;}
._8{width:7.094160px;}
._9{width:8.597160px;}
._a{width:9.607440px;}
._b{width:10.881720px;}
._e{width:11.939040px;}
._f{width:14.428800px;}
._13{width:15.631200px;}
._11{width:17.074080px;}
._17{width:18.235440px;}
._18{width:20.047080px;}
._1e{width:21.162240px;}
._1c{width:22.304520px;}
._12{width:23.326560px;}
._16{width:24.340800px;}
._2{width:25.784880px;}
._1{width:26.891760px;}
._6{width:28.917720px;}
._1d{width:31.442760px;}
._19{width:32.945760px;}
._1a{width:34.027920px;}
._1b{width:35.171880px;}
._1f{width:39.017880px;}
._20{width:40.520880px;}
._22{width:62.705160px;}
._0{width:83.786400px;}
._27{width:105.210000px;}
._28{width:106.412400px;}
._23{width:127.213920px;}
._5{width:160.892040px;}
._26{width:327.426960px;}
._21{width:380.198880px;}
._25{width:610.819200px;}
._24{width:612.213840px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:18.000000px;}
.fs1{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fs4{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs7{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y60{bottom:7.830000px;}
.y62{bottom:7.920000px;}
.yd7{bottom:7.950000px;}
.y106{bottom:25.380000px;}
.y5f{bottom:25.470000px;}
.yd6{bottom:25.500000px;}
.y5e{bottom:43.020000px;}
.y4{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y3{bottom:101.640000px;}
.y15e{bottom:111.720000px;}
.y88{bottom:117.570000px;}
.yd3{bottom:120.270000px;}
.yaf{bottom:125.760000px;}
.yf8{bottom:134.760000px;}
.y87{bottom:135.120000px;}
.yd2{bottom:137.910000px;}
.y13e{bottom:138.270000px;}
.y2a{bottom:141.690000px;}
.yae{bottom:143.310000px;}
.y17a{bottom:143.670000px;}
.y15d{bottom:147.270000px;}
.yf7{bottom:152.310000px;}
.y86{bottom:152.760000px;}
.y13d{bottom:155.910000px;}
.y29{bottom:159.330000px;}
.y179{bottom:161.310000px;}
.y5c{bottom:165.720000px;}
.yad{bottom:169.860000px;}
.y85{bottom:170.310000px;}
.yd1{bottom:173.460000px;}
.y15c{bottom:182.910000px;}
.y113{bottom:183.360000px;}
.y84{bottom:187.860000px;}
.yd0{bottom:191.100000px;}
.y28{bottom:194.880000px;}
.y112{bottom:198.300000px;}
.y15b{bottom:200.460000px;}
.y5b{bottom:201.270000px;}
.yf6{bottom:205.500000px;}
.yac{bottom:205.770000px;}
.ycf{bottom:208.650000px;}
.y13c{bottom:209.100000px;}
.y27{bottom:212.430000px;}
.y15a{bottom:218.100000px;}
.y5a{bottom:218.910000px;}
.yf5{bottom:223.050000px;}
.y83{bottom:223.500000px;}
.y111{bottom:225.660000px;}
.yce{bottom:226.200000px;}
.y13b{bottom:226.650000px;}
.y26{bottom:230.070000px;}
.y159{bottom:235.650000px;}
.y59{bottom:236.460000px;}
.y178{bottom:240.600000px;}
.yf4{bottom:240.690000px;}
.y82{bottom:241.050000px;}
.y13a{bottom:244.200000px;}
.y25{bottom:247.620000px;}
.yab{bottom:251.490000px;}
.ycd{bottom:252.840000px;}
.y110{bottom:252.930000px;}
.y158{bottom:253.200000px;}
.y58{bottom:254.100000px;}
.yf3{bottom:258.240000px;}
.y81{bottom:258.690000px;}
.y139{bottom:261.840000px;}
.y24{bottom:265.260000px;}
.y177{bottom:267.240000px;}
.y157{bottom:270.840000px;}
.y57{bottom:271.650000px;}
.yf2{bottom:275.790000px;}
.y80{bottom:276.240000px;}
.yaa{bottom:278.760000px;}
.y138{bottom:279.390000px;}
.y10f{bottom:280.290000px;}
.y23{bottom:282.810000px;}
.y176{bottom:284.790000px;}
.ycc{bottom:288.390000px;}
.y56{bottom:289.200000px;}
.y7f{bottom:293.790000px;}
.y22{bottom:300.360000px;}
.yf1{bottom:302.430000px;}
.ycb{bottom:305.940000px;}
.ya9{bottom:306.120000px;}
.y156{bottom:306.390000px;}
.y55{bottom:306.840000px;}
.y10e{bottom:307.650000px;}
.y7e{bottom:311.430000px;}
.yca{bottom:323.580000px;}
.y155{bottom:323.940000px;}
.y54{bottom:324.390000px;}
.y175{bottom:328.980000px;}
.ya8{bottom:333.480000px;}
.y10d{bottom:335.010000px;}
.y21{bottom:336.000000px;}
.y7d{bottom:337.980000px;}
.yc9{bottom:341.130000px;}
.y137{bottom:341.580000px;}
.y174{bottom:346.530000px;}
.y20{bottom:353.550000px;}
.yf0{bottom:355.620000px;}
.yc8{bottom:358.770000px;}
.y136{bottom:359.130000px;}
.y53{bottom:359.940000px;}
.ya7{bottom:360.840000px;}
.y10c{bottom:362.280000px;}
.y173{bottom:364.170000px;}
.y1f{bottom:371.190000px;}
.yef{bottom:373.170000px;}
.y7c{bottom:373.620000px;}
.y135{bottom:376.770000px;}
.y52{bottom:377.580000px;}
.y172{bottom:381.720000px;}
.ya6{bottom:388.110000px;}
.y1e{bottom:388.740000px;}
.y10b{bottom:389.640000px;}
.yee{bottom:390.720000px;}
.y7b{bottom:391.170000px;}
.yc7{bottom:394.320000px;}
.y51{bottom:395.130000px;}
.y1d{bottom:406.290000px;}
.yed{bottom:408.360000px;}
.y7a{bottom:408.720000px;}
.yc6{bottom:411.870000px;}
.y50{bottom:412.770000px;}
.ya5{bottom:415.470000px;}
.y10a{bottom:417.000000px;}
.y154{bottom:420.870000px;}
.y1c{bottom:423.930000px;}
.yec{bottom:425.910000px;}
.y79{bottom:426.360000px;}
.yc5{bottom:429.510000px;}
.y4f{bottom:430.320000px;}
.y1b{bottom:441.480000px;}
.ya4{bottom:442.830000px;}
.y171{bottom:443.460000px;}
.y78{bottom:443.910000px;}
.y109{bottom:444.270000px;}
.yc4{bottom:447.060000px;}
.y134{bottom:447.510000px;}
.y4e{bottom:447.870000px;}
.y153{bottom:456.510000px;}
.y1a{bottom:459.030000px;}
.yeb{bottom:461.550000px;}
.yc3{bottom:464.700000px;}
.y133{bottom:465.060000px;}
.y170{bottom:470.130000px;}
.ya3{bottom:470.220000px;}
.y108{bottom:471.660000px;}
.y152{bottom:474.090000px;}
.yea{bottom:479.130000px;}
.y77{bottom:479.580000px;}
.y132{bottom:482.730000px;}
.y4d{bottom:483.540000px;}
.y19{bottom:485.970000px;}
.y16f{bottom:487.680000px;}
.yc2{bottom:491.280000px;}
.y151{bottom:491.730000px;}
.ye9{bottom:496.680000px;}
.y76{bottom:497.130000px;}
.ya2{bottom:497.490000px;}
.y107{bottom:499.020000px;}
.y131{bottom:500.280000px;}
.y4c{bottom:501.090000px;}
.y150{bottom:509.280000px;}
.y16e{bottom:514.230000px;}
.ye8{bottom:514.320000px;}
.y75{bottom:514.680000px;}
.y130{bottom:517.830000px;}
.y4b{bottom:518.730000px;}
.ya1{bottom:524.850000px;}
.y105{bottom:526.380000px;}
.y14f{bottom:526.830000px;}
.yc1{bottom:527.190000px;}
.ye7{bottom:531.870000px;}
.y74{bottom:532.320000px;}
.y18{bottom:534.300000px;}
.y12f{bottom:535.470000px;}
.y4a{bottom:536.280000px;}
.y14e{bottom:544.470000px;}
.y16d{bottom:549.420000px;}
.ye6{bottom:549.510000px;}
.y73{bottom:549.870000px;}
.y17{bottom:552.210000px;}
.y49{bottom:553.830000px;}
.y12e{bottom:562.020000px;}
.ye5{bottom:567.060000px;}
.y72{bottom:567.510000px;}
.y48{bottom:571.470000px;}
.yc0{bottom:575.430000px;}
.ya0{bottom:579.480000px;}
.y71{bottom:585.060000px;}
.y47{bottom:589.020000px;}
.y16{bottom:589.200000px;}
.y104{bottom:592.620000px;}
.ybf{bottom:593.070000px;}
.ye4{bottom:593.610000px;}
.y12d{bottom:597.660000px;}
.y70{bottom:602.610000px;}
.y15{bottom:606.840000px;}
.ybe{bottom:610.620000px;}
.y16c{bottom:611.160000px;}
.y12c{bottom:615.210000px;}
.y6f{bottom:620.250000px;}
.y14{bottom:624.390000px;}
.y46{bottom:624.660000px;}
.ybd{bottom:628.260000px;}
.y16b{bottom:628.800000px;}
.ye3{bottom:629.520000px;}
.y12b{bottom:632.760000px;}
.y13{bottom:641.940000px;}
.y45{bottom:642.210000px;}
.y9f{bottom:645.810000px;}
.y16a{bottom:646.350000px;}
.y6e{bottom:646.800000px;}
.y12a{bottom:650.400000px;}
.y12{bottom:659.580000px;}
.y44{bottom:659.760000px;}
.ybc{bottom:663.360000px;}
.y129{bottom:667.950000px;}
.y169{bottom:673.260000px;}
.ye2{bottom:675.240000px;}
.y11{bottom:677.130000px;}
.y43{bottom:677.400000px;}
.y103{bottom:681.000000px;}
.y9e{bottom:681.360000px;}
.y6d{bottom:682.710000px;}
.y128{bottom:685.590000px;}
.ybb{bottom:690.000000px;}
.y10{bottom:694.770000px;}
.y42{bottom:694.950000px;}
.y102{bottom:698.550000px;}
.y9d{bottom:699.000000px;}
.ye1{bottom:702.510000px;}
.y14d{bottom:703.140000px;}
.yf{bottom:712.320000px;}
.y41{bottom:712.590000px;}
.y9c{bottom:716.550000px;}
.y127{bottom:721.140000px;}
.y168{bottom:721.590000px;}
.yba{bottom:725.550000px;}
.y6c{bottom:728.340000px;}
.y14c{bottom:729.690000px;}
.ye{bottom:729.870000px;}
.y40{bottom:730.140000px;}
.y9b{bottom:734.190000px;}
.y126{bottom:738.690000px;}
.y167{bottom:739.140000px;}
.yb9{bottom:743.190000px;}
.y3f{bottom:747.690000px;}
.y9a{bottom:751.740000px;}
.y6b{bottom:755.700000px;}
.y125{bottom:756.330000px;}
.y166{bottom:756.690000px;}
.yd{bottom:756.870000px;}
.ye0{bottom:757.230000px;}
.yb8{bottom:760.740000px;}
.y14b{bottom:765.330000px;}
.y99{bottom:769.290000px;}
.y124{bottom:773.880000px;}
.y165{bottom:774.330000px;}
.y3e{bottom:774.600000px;}
.yb7{bottom:778.290000px;}
.y14a{bottom:782.880000px;}
.y6a{bottom:783.060000px;}
.ydf{bottom:784.500000px;}
.y101{bottom:786.930000px;}
.y123{bottom:791.520000px;}
.y164{bottom:791.880000px;}
.yb6{bottom:795.930000px;}
.y149{bottom:800.520000px;}
.yc{bottom:803.580000px;}
.y100{bottom:804.480000px;}
.y98{bottom:804.930000px;}
.y163{bottom:809.520000px;}
.y69{bottom:810.420000px;}
.yde{bottom:811.860000px;}
.y17d{bottom:813.930000px;}
.y122{bottom:818.070000px;}
.y97{bottom:822.480000px;}
.y3d{bottom:822.930000px;}
.y162{bottom:827.070000px;}
.yff{bottom:831.030000px;}
.yb5{bottom:831.480000px;}
.y148{bottom:835.620000px;}
.y68{bottom:837.690000px;}
.yb{bottom:839.130000px;}
.ydd{bottom:839.220000px;}
.y96{bottom:840.030000px;}
.y3c{bottom:840.480000px;}
.y161{bottom:844.620000px;}
.yb4{bottom:849.030000px;}
.y147{bottom:853.260000px;}
.y121{bottom:853.620000px;}
.y95{bottom:857.670000px;}
.y3b{bottom:858.030000px;}
.y160{bottom:862.260000px;}
.y67{bottom:865.050000px;}
.ydc{bottom:866.580000px;}
.yb3{bottom:866.670000px;}
.y146{bottom:870.810000px;}
.y120{bottom:871.260000px;}
.ya{bottom:874.950000px;}
.y94{bottom:875.220000px;}
.y3a{bottom:875.670000px;}
.yb2{bottom:884.220000px;}
.y11f{bottom:888.810000px;}
.y15f{bottom:889.170000px;}
.y66{bottom:892.410000px;}
.y39{bottom:893.220000px;}
.ydb{bottom:893.850000px;}
.y93{bottom:901.860000px;}
.y11e{bottom:906.450000px;}
.y38{bottom:910.860000px;}
.y9{bottom:910.950000px;}
.yfe{bottom:919.410000px;}
.y65{bottom:919.680000px;}
.y17c{bottom:919.860000px;}
.yda{bottom:921.210000px;}
.y11d{bottom:924.000000px;}
.yb1{bottom:928.410000px;}
.yfd{bottom:936.960000px;}
.y92{bottom:937.410000px;}
.y145{bottom:941.550000px;}
.y37{bottom:946.410000px;}
.y8{bottom:947.040000px;}
.yd9{bottom:948.570000px;}
.y91{bottom:954.960000px;}
.y144{bottom:959.190000px;}
.y11c{bottom:959.550000px;}
.y36{bottom:963.960000px;}
.y90{bottom:972.600000px;}
.y64{bottom:974.400000px;}
.yd8{bottom:975.930000px;}
.y143{bottom:976.740000px;}
.y11b{bottom:977.190000px;}
.y35{bottom:981.600000px;}
.y7{bottom:985.380000px;}
.y8f{bottom:990.150000px;}
.y142{bottom:994.290000px;}
.y11a{bottom:994.740000px;}
.y34{bottom:999.150000px;}
.y63{bottom:1001.760000px;}
.yd5{bottom:1003.200000px;}
.y8e{bottom:1007.790000px;}
.y6{bottom:1010.070000px;}
.y141{bottom:1011.960000px;}
.y119{bottom:1012.320000px;}
.y33{bottom:1016.820000px;}
.yfc{bottom:1025.370000px;}
.y17b{bottom:1025.820000px;}
.y61{bottom:1029.060000px;}
.y118{bottom:1029.960000px;}
.yb0{bottom:1034.370000px;}
.y140{bottom:1038.510000px;}
.yfb{bottom:1042.920000px;}
.y8d{bottom:1043.370000px;}
.y117{bottom:1047.510000px;}
.y5{bottom:1047.960000px;}
.y32{bottom:1052.370000px;}
.y5d{bottom:1056.420000px;}
.yfa{bottom:1060.560000px;}
.y8c{bottom:1060.920000px;}
.y116{bottom:1065.150000px;}
.yd4{bottom:1069.560000px;}
.y31{bottom:1069.920000px;}
.y2{bottom:1071.450000px;}
.y13f{bottom:1074.420000px;}
.y1{bottom:1075.770000px;}
.y8b{bottom:1078.560000px;}
.yf9{bottom:1087.110000px;}
.y30{bottom:1087.560000px;}
.y115{bottom:1091.700000px;}
.y8a{bottom:1096.110000px;}
.y2f{bottom:1105.110000px;}
.y89{bottom:1113.750000px;}
.y2e{bottom:1122.750000px;}
.y114{bottom:1127.610000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.h2{height:15.240234px;}
.hd{height:26.550000px;}
.hc{height:26.580000px;}
.hb{height:26.640000px;}
.h12{height:26.670000px;}
.h3{height:30.022383px;}
.h4{height:38.100586px;}
.h11{height:44.100000px;}
.hf{height:44.190000px;}
.h10{height:44.220000px;}
.h7{height:50.667539px;}
.h8{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:61.740000px;}
.h13{height:61.793886px;}
.he{height:62.585859px;}
.h9{height:68.582109px;}
.h6{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:43.290000px;}
.w4{width:50.850000px;}
.w11{width:63.000000px;}
.wf{width:66.870000px;}
.w6{width:73.560000px;}
.w9{width:80.010000px;}
.w12{width:84.270000px;}
.w7{width:84.420000px;}
.w8{width:84.510000px;}
.wc{width:86.160000px;}
.wd{width:94.950000px;}
.w17{width:98.490000px;}
.w14{width:101.790000px;}
.w18{width:103.230000px;}
.wb{width:103.770000px;}
.we{width:105.480000px;}
.w13{width:105.570000px;}
.w19{width:110.520000px;}
.w16{width:126.180000px;}
.w3{width:222.510000px;}
.w10{width:230.790000px;}
.w15{width:240.420000px;}
.wa{width:248.160000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.960000px;}
.x2{left:68.039987px;}
.x1a{left:71.820000px;}
.xe{left:92.070000px;}
.x14{left:99.180000px;}
.x20{left:111.239987px;}
.x6{left:124.740000px;}
.x3{left:201.359987px;}
.x4{left:202.799987px;}
.x1b{left:313.050000px;}
.x15{left:330.780000px;}
.xf{left:340.950000px;}
.x8{left:347.970000px;}
.x16{left:394.590000px;}
.x9{left:399.630000px;}
.x1c{left:439.950000px;}
.xa{left:443.730000px;}
.x10{left:445.440000px;}
.x17{left:500.880000px;}
.xb{left:518.010000px;}
.x11{left:532.320000px;}
.x1d{left:539.250000px;}
.x18{left:585.960000px;}
.xc{left:603.150000px;}
.x12{left:628.080000px;}
.x1e{left:643.290000px;}
.xd{left:688.470000px;}
.x19{left:692.250000px;}
.x13{left:734.280000px;}
.x1f{left:754.530000px;}
.x5{left:792.059987px;}
.x1{left:824.999987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.236800pt;}
.lse{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.046720pt;}
.ls11{letter-spacing:-0.043520pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.060800pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls7{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.161067pt;}
.ls14{letter-spacing:0.176000pt;}
.ls13{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.333120pt;}
.ls3{letter-spacing:5.356800pt;}
.ls17{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws9{word-spacing:-12.836480pt;}
.ws3{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.933867pt;}
.wsc{word-spacing:-11.932800pt;}
.wse{word-spacing:-11.917867pt;}
.ws5{word-spacing:-11.910933pt;}
.ws7{word-spacing:-11.817600pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws8{word-spacing:-11.713280pt;}
.wsd{word-spacing:-11.620267pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-3.046080pt;}
._15{margin-left:-1.880960pt;}
._4{margin-left:-0.908480pt;}
._3{width:1.013867pt;}
._10{width:2.084160pt;}
._c{width:3.046080pt;}
._d{width:4.061440pt;}
._7{width:5.237120pt;}
._8{width:6.305920pt;}
._9{width:7.641920pt;}
._a{width:8.539947pt;}
._b{width:9.672640pt;}
._e{width:10.612480pt;}
._f{width:12.825600pt;}
._13{width:13.894400pt;}
._11{width:15.176960pt;}
._17{width:16.209280pt;}
._18{width:17.819627pt;}
._1e{width:18.810880pt;}
._1c{width:19.826240pt;}
._12{width:20.734720pt;}
._16{width:21.636267pt;}
._2{width:22.919893pt;}
._1{width:23.903787pt;}
._6{width:25.704640pt;}
._1d{width:27.949120pt;}
._19{width:29.285120pt;}
._1a{width:30.247040pt;}
._1b{width:31.263893pt;}
._1f{width:34.682560pt;}
._20{width:36.018560pt;}
._22{width:55.737920pt;}
._0{width:74.476800pt;}
._27{width:93.520000pt;}
._28{width:94.588800pt;}
._23{width:113.079040pt;}
._5{width:143.015147pt;}
._26{width:291.046187pt;}
._21{width:337.954560pt;}
._25{width:542.950400pt;}
._24{width:544.190080pt;}
.fs0{font-size:16.000000pt;}
.fs1{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fs4{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs7{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:6.960000pt;}
.y62{bottom:7.040000pt;}
.yd7{bottom:7.066667pt;}
.y106{bottom:22.560000pt;}
.y5f{bottom:22.640000pt;}
.yd6{bottom:22.666667pt;}
.y5e{bottom:38.240000pt;}
.y4{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y3{bottom:90.346667pt;}
.y15e{bottom:99.306667pt;}
.y88{bottom:104.506667pt;}
.yd3{bottom:106.906667pt;}
.yaf{bottom:111.786667pt;}
.yf8{bottom:119.786667pt;}
.y87{bottom:120.106667pt;}
.yd2{bottom:122.586667pt;}
.y13e{bottom:122.906667pt;}
.y2a{bottom:125.946667pt;}
.yae{bottom:127.386667pt;}
.y17a{bottom:127.706667pt;}
.y15d{bottom:130.906667pt;}
.yf7{bottom:135.386667pt;}
.y86{bottom:135.786667pt;}
.y13d{bottom:138.586667pt;}
.y29{bottom:141.626667pt;}
.y179{bottom:143.386667pt;}
.y5c{bottom:147.306667pt;}
.yad{bottom:150.986667pt;}
.y85{bottom:151.386667pt;}
.yd1{bottom:154.186667pt;}
.y15c{bottom:162.586667pt;}
.y113{bottom:162.986667pt;}
.y84{bottom:166.986667pt;}
.yd0{bottom:169.866667pt;}
.y28{bottom:173.226667pt;}
.y112{bottom:176.266667pt;}
.y15b{bottom:178.186667pt;}
.y5b{bottom:178.906667pt;}
.yf6{bottom:182.666667pt;}
.yac{bottom:182.906667pt;}
.ycf{bottom:185.466667pt;}
.y13c{bottom:185.866667pt;}
.y27{bottom:188.826667pt;}
.y15a{bottom:193.866667pt;}
.y5a{bottom:194.586667pt;}
.yf5{bottom:198.266667pt;}
.y83{bottom:198.666667pt;}
.y111{bottom:200.586667pt;}
.yce{bottom:201.066667pt;}
.y13b{bottom:201.466667pt;}
.y26{bottom:204.506667pt;}
.y159{bottom:209.466667pt;}
.y59{bottom:210.186667pt;}
.y178{bottom:213.866667pt;}
.yf4{bottom:213.946667pt;}
.y82{bottom:214.266667pt;}
.y13a{bottom:217.066667pt;}
.y25{bottom:220.106667pt;}
.yab{bottom:223.546667pt;}
.ycd{bottom:224.746667pt;}
.y110{bottom:224.826667pt;}
.y158{bottom:225.066667pt;}
.y58{bottom:225.866667pt;}
.yf3{bottom:229.546667pt;}
.y81{bottom:229.946667pt;}
.y139{bottom:232.746667pt;}
.y24{bottom:235.786667pt;}
.y177{bottom:237.546667pt;}
.y157{bottom:240.746667pt;}
.y57{bottom:241.466667pt;}
.yf2{bottom:245.146667pt;}
.y80{bottom:245.546667pt;}
.yaa{bottom:247.786667pt;}
.y138{bottom:248.346667pt;}
.y10f{bottom:249.146667pt;}
.y23{bottom:251.386667pt;}
.y176{bottom:253.146667pt;}
.ycc{bottom:256.346667pt;}
.y56{bottom:257.066667pt;}
.y7f{bottom:261.146667pt;}
.y22{bottom:266.986667pt;}
.yf1{bottom:268.826667pt;}
.ycb{bottom:271.946667pt;}
.ya9{bottom:272.106667pt;}
.y156{bottom:272.346667pt;}
.y55{bottom:272.746667pt;}
.y10e{bottom:273.466667pt;}
.y7e{bottom:276.826667pt;}
.yca{bottom:287.626667pt;}
.y155{bottom:287.946667pt;}
.y54{bottom:288.346667pt;}
.y175{bottom:292.426667pt;}
.ya8{bottom:296.426667pt;}
.y10d{bottom:297.786667pt;}
.y21{bottom:298.666667pt;}
.y7d{bottom:300.426667pt;}
.yc9{bottom:303.226667pt;}
.y137{bottom:303.626667pt;}
.y174{bottom:308.026667pt;}
.y20{bottom:314.266667pt;}
.yf0{bottom:316.106667pt;}
.yc8{bottom:318.906667pt;}
.y136{bottom:319.226667pt;}
.y53{bottom:319.946667pt;}
.ya7{bottom:320.746667pt;}
.y10c{bottom:322.026667pt;}
.y173{bottom:323.706667pt;}
.y1f{bottom:329.946667pt;}
.yef{bottom:331.706667pt;}
.y7c{bottom:332.106667pt;}
.y135{bottom:334.906667pt;}
.y52{bottom:335.626667pt;}
.y172{bottom:339.306667pt;}
.ya6{bottom:344.986667pt;}
.y1e{bottom:345.546667pt;}
.y10b{bottom:346.346667pt;}
.yee{bottom:347.306667pt;}
.y7b{bottom:347.706667pt;}
.yc7{bottom:350.506667pt;}
.y51{bottom:351.226667pt;}
.y1d{bottom:361.146667pt;}
.yed{bottom:362.986667pt;}
.y7a{bottom:363.306667pt;}
.yc6{bottom:366.106667pt;}
.y50{bottom:366.906667pt;}
.ya5{bottom:369.306667pt;}
.y10a{bottom:370.666667pt;}
.y154{bottom:374.106667pt;}
.y1c{bottom:376.826667pt;}
.yec{bottom:378.586667pt;}
.y79{bottom:378.986667pt;}
.yc5{bottom:381.786667pt;}
.y4f{bottom:382.506667pt;}
.y1b{bottom:392.426667pt;}
.ya4{bottom:393.626667pt;}
.y171{bottom:394.186667pt;}
.y78{bottom:394.586667pt;}
.y109{bottom:394.906667pt;}
.yc4{bottom:397.386667pt;}
.y134{bottom:397.786667pt;}
.y4e{bottom:398.106667pt;}
.y153{bottom:405.786667pt;}
.y1a{bottom:408.026667pt;}
.yeb{bottom:410.266667pt;}
.yc3{bottom:413.066667pt;}
.y133{bottom:413.386667pt;}
.y170{bottom:417.893333pt;}
.ya3{bottom:417.973333pt;}
.y108{bottom:419.253333pt;}
.y152{bottom:421.413333pt;}
.yea{bottom:425.893333pt;}
.y77{bottom:426.293333pt;}
.y132{bottom:429.093333pt;}
.y4d{bottom:429.813333pt;}
.y19{bottom:431.973333pt;}
.y16f{bottom:433.493333pt;}
.yc2{bottom:436.693333pt;}
.y151{bottom:437.093333pt;}
.ye9{bottom:441.493333pt;}
.y76{bottom:441.893333pt;}
.ya2{bottom:442.213333pt;}
.y107{bottom:443.573333pt;}
.y131{bottom:444.693333pt;}
.y4c{bottom:445.413333pt;}
.y150{bottom:452.693333pt;}
.y16e{bottom:457.093333pt;}
.ye8{bottom:457.173333pt;}
.y75{bottom:457.493333pt;}
.y130{bottom:460.293333pt;}
.y4b{bottom:461.093333pt;}
.ya1{bottom:466.533333pt;}
.y105{bottom:467.893333pt;}
.y14f{bottom:468.293333pt;}
.yc1{bottom:468.613333pt;}
.ye7{bottom:472.773333pt;}
.y74{bottom:473.173333pt;}
.y18{bottom:474.933333pt;}
.y12f{bottom:475.973333pt;}
.y4a{bottom:476.693333pt;}
.y14e{bottom:483.973333pt;}
.y16d{bottom:488.373333pt;}
.ye6{bottom:488.453333pt;}
.y73{bottom:488.773333pt;}
.y17{bottom:490.853333pt;}
.y49{bottom:492.293333pt;}
.y12e{bottom:499.573333pt;}
.ye5{bottom:504.053333pt;}
.y72{bottom:504.453333pt;}
.y48{bottom:507.973333pt;}
.yc0{bottom:511.493333pt;}
.ya0{bottom:515.093333pt;}
.y71{bottom:520.053333pt;}
.y47{bottom:523.573333pt;}
.y16{bottom:523.733333pt;}
.y104{bottom:526.773333pt;}
.ybf{bottom:527.173333pt;}
.ye4{bottom:527.653333pt;}
.y12d{bottom:531.253333pt;}
.y70{bottom:535.653333pt;}
.y15{bottom:539.413333pt;}
.ybe{bottom:542.773333pt;}
.y16c{bottom:543.253333pt;}
.y12c{bottom:546.853333pt;}
.y6f{bottom:551.333333pt;}
.y14{bottom:555.013333pt;}
.y46{bottom:555.253333pt;}
.ybd{bottom:558.453333pt;}
.y16b{bottom:558.933333pt;}
.ye3{bottom:559.573333pt;}
.y12b{bottom:562.453333pt;}
.y13{bottom:570.613333pt;}
.y45{bottom:570.853333pt;}
.y9f{bottom:574.053333pt;}
.y16a{bottom:574.533333pt;}
.y6e{bottom:574.933333pt;}
.y12a{bottom:578.133333pt;}
.y12{bottom:586.293333pt;}
.y44{bottom:586.453333pt;}
.ybc{bottom:589.653333pt;}
.y129{bottom:593.733333pt;}
.y169{bottom:598.453333pt;}
.ye2{bottom:600.213333pt;}
.y11{bottom:601.893333pt;}
.y43{bottom:602.133333pt;}
.y103{bottom:605.333333pt;}
.y9e{bottom:605.653333pt;}
.y6d{bottom:606.853333pt;}
.y128{bottom:609.413333pt;}
.ybb{bottom:613.333333pt;}
.y10{bottom:617.573333pt;}
.y42{bottom:617.733333pt;}
.y102{bottom:620.933333pt;}
.y9d{bottom:621.333333pt;}
.ye1{bottom:624.453333pt;}
.y14d{bottom:625.013333pt;}
.yf{bottom:633.173333pt;}
.y41{bottom:633.413333pt;}
.y9c{bottom:636.933333pt;}
.y127{bottom:641.013333pt;}
.y168{bottom:641.413333pt;}
.yba{bottom:644.933333pt;}
.y6c{bottom:647.413333pt;}
.y14c{bottom:648.613333pt;}
.ye{bottom:648.773333pt;}
.y40{bottom:649.013333pt;}
.y9b{bottom:652.613333pt;}
.y126{bottom:656.613333pt;}
.y167{bottom:657.013333pt;}
.yb9{bottom:660.613333pt;}
.y3f{bottom:664.613333pt;}
.y9a{bottom:668.213333pt;}
.y6b{bottom:671.733333pt;}
.y125{bottom:672.293333pt;}
.y166{bottom:672.613333pt;}
.yd{bottom:672.773333pt;}
.ye0{bottom:673.093333pt;}
.yb8{bottom:676.213333pt;}
.y14b{bottom:680.293333pt;}
.y99{bottom:683.813333pt;}
.y124{bottom:687.893333pt;}
.y165{bottom:688.293333pt;}
.y3e{bottom:688.533333pt;}
.yb7{bottom:691.813333pt;}
.y14a{bottom:695.893333pt;}
.y6a{bottom:696.053333pt;}
.ydf{bottom:697.333333pt;}
.y101{bottom:699.493333pt;}
.y123{bottom:703.573333pt;}
.y164{bottom:703.893333pt;}
.yb6{bottom:707.493333pt;}
.y149{bottom:711.573333pt;}
.yc{bottom:714.293333pt;}
.y100{bottom:715.093333pt;}
.y98{bottom:715.493333pt;}
.y163{bottom:719.573333pt;}
.y69{bottom:720.373333pt;}
.yde{bottom:721.653333pt;}
.y17d{bottom:723.493333pt;}
.y122{bottom:727.173333pt;}
.y97{bottom:731.093333pt;}
.y3d{bottom:731.493333pt;}
.y162{bottom:735.173333pt;}
.yff{bottom:738.693333pt;}
.yb5{bottom:739.093333pt;}
.y148{bottom:742.773333pt;}
.y68{bottom:744.613333pt;}
.yb{bottom:745.893333pt;}
.ydd{bottom:745.973333pt;}
.y96{bottom:746.693333pt;}
.y3c{bottom:747.093333pt;}
.y161{bottom:750.773333pt;}
.yb4{bottom:754.693333pt;}
.y147{bottom:758.453333pt;}
.y121{bottom:758.773333pt;}
.y95{bottom:762.373333pt;}
.y3b{bottom:762.693333pt;}
.y160{bottom:766.453333pt;}
.y67{bottom:768.933333pt;}
.ydc{bottom:770.293333pt;}
.yb3{bottom:770.373333pt;}
.y146{bottom:774.053333pt;}
.y120{bottom:774.453333pt;}
.ya{bottom:777.733333pt;}
.y94{bottom:777.973333pt;}
.y3a{bottom:778.373333pt;}
.yb2{bottom:785.973333pt;}
.y11f{bottom:790.053333pt;}
.y15f{bottom:790.373333pt;}
.y66{bottom:793.253333pt;}
.y39{bottom:793.973333pt;}
.ydb{bottom:794.533333pt;}
.y93{bottom:801.653333pt;}
.y11e{bottom:805.733333pt;}
.y38{bottom:809.653333pt;}
.y9{bottom:809.733333pt;}
.yfe{bottom:817.253333pt;}
.y65{bottom:817.493333pt;}
.y17c{bottom:817.653333pt;}
.yda{bottom:818.853333pt;}
.y11d{bottom:821.333333pt;}
.yb1{bottom:825.253333pt;}
.yfd{bottom:832.853333pt;}
.y92{bottom:833.253333pt;}
.y145{bottom:836.933333pt;}
.y37{bottom:841.253333pt;}
.y8{bottom:841.813333pt;}
.yd9{bottom:843.173333pt;}
.y91{bottom:848.853333pt;}
.y144{bottom:852.613333pt;}
.y11c{bottom:852.933333pt;}
.y36{bottom:856.853333pt;}
.y90{bottom:864.533333pt;}
.y64{bottom:866.133333pt;}
.yd8{bottom:867.493333pt;}
.y143{bottom:868.213333pt;}
.y11b{bottom:868.613333pt;}
.y35{bottom:872.533333pt;}
.y7{bottom:875.893333pt;}
.y8f{bottom:880.133333pt;}
.y142{bottom:883.813333pt;}
.y11a{bottom:884.213333pt;}
.y34{bottom:888.133333pt;}
.y63{bottom:890.453333pt;}
.yd5{bottom:891.733333pt;}
.y8e{bottom:895.813333pt;}
.y6{bottom:897.840000pt;}
.y141{bottom:899.520000pt;}
.y119{bottom:899.840000pt;}
.y33{bottom:903.840000pt;}
.yfc{bottom:911.440000pt;}
.y17b{bottom:911.840000pt;}
.y61{bottom:914.720000pt;}
.y118{bottom:915.520000pt;}
.yb0{bottom:919.440000pt;}
.y140{bottom:923.120000pt;}
.yfb{bottom:927.040000pt;}
.y8d{bottom:927.440000pt;}
.y117{bottom:931.120000pt;}
.y5{bottom:931.520000pt;}
.y32{bottom:935.440000pt;}
.y5d{bottom:939.040000pt;}
.yfa{bottom:942.720000pt;}
.y8c{bottom:943.040000pt;}
.y116{bottom:946.800000pt;}
.yd4{bottom:950.720000pt;}
.y31{bottom:951.040000pt;}
.y2{bottom:952.400000pt;}
.y13f{bottom:955.040000pt;}
.y1{bottom:956.240000pt;}
.y8b{bottom:958.720000pt;}
.yf9{bottom:966.320000pt;}
.y30{bottom:966.720000pt;}
.y115{bottom:970.400000pt;}
.y8a{bottom:974.320000pt;}
.y2f{bottom:982.320000pt;}
.y89{bottom:990.000000pt;}
.y2e{bottom:998.000000pt;}
.y114{bottom:1002.320000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.h2{height:13.546875pt;}
.hd{height:23.600000pt;}
.hc{height:23.626667pt;}
.hb{height:23.680000pt;}
.h12{height:23.706667pt;}
.h3{height:26.686562pt;}
.h4{height:33.867188pt;}
.h11{height:39.200000pt;}
.hf{height:39.280000pt;}
.h10{height:39.306667pt;}
.h7{height:45.037812pt;}
.h8{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:54.880000pt;}
.h13{height:54.927899pt;}
.he{height:55.631875pt;}
.h9{height:60.961875pt;}
.h6{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:38.480000pt;}
.w4{width:45.200000pt;}
.w11{width:56.000000pt;}
.wf{width:59.440000pt;}
.w6{width:65.386667pt;}
.w9{width:71.120000pt;}
.w12{width:74.906667pt;}
.w7{width:75.040000pt;}
.w8{width:75.120000pt;}
.wc{width:76.586667pt;}
.wd{width:84.400000pt;}
.w17{width:87.546667pt;}
.w14{width:90.480000pt;}
.w18{width:91.760000pt;}
.wb{width:92.240000pt;}
.we{width:93.760000pt;}
.w13{width:93.840000pt;}
.w19{width:98.240000pt;}
.w16{width:112.160000pt;}
.w3{width:197.786667pt;}
.w10{width:205.146667pt;}
.w15{width:213.706667pt;}
.wa{width:220.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.520000pt;}
.x2{left:60.479988pt;}
.x1a{left:63.840000pt;}
.xe{left:81.840000pt;}
.x14{left:88.160000pt;}
.x20{left:98.879988pt;}
.x6{left:110.880000pt;}
.x3{left:178.986655pt;}
.x4{left:180.266655pt;}
.x1b{left:278.266667pt;}
.x15{left:294.026667pt;}
.xf{left:303.066667pt;}
.x8{left:309.306667pt;}
.x16{left:350.746667pt;}
.x9{left:355.226667pt;}
.x1c{left:391.066667pt;}
.xa{left:394.426667pt;}
.x10{left:395.946667pt;}
.x17{left:445.226667pt;}
.xb{left:460.453333pt;}
.x11{left:473.173333pt;}
.x1d{left:479.333333pt;}
.x18{left:520.853333pt;}
.xc{left:536.133333pt;}
.x12{left:558.293333pt;}
.x1e{left:571.813333pt;}
.xd{left:611.973333pt;}
.x19{left:615.333333pt;}
.x13{left:652.693333pt;}
.x1f{left:670.693333pt;}
.x5{left:704.053322pt;}
.x1{left:733.333322pt;}
}




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