
    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_64b433e274901b875f2c5e3d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_4fbe20bd1763928eb95dc6ca.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_bb29dd7aa955fffb4c4357bf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_5bcd0b200156b868715d5a9f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_db8fdbd521cc9a6d2005a041.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_8ec17fcacc18a49cb75c9107.woff')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_e8501cef919e4dc95532ba53.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d04d4c84d94d33f251352169.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_5c20b6d219a789ffe342f48e.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e7d3f672a128d4aecfb1c69a.woff')format("woff");}.ffb{font-family:ffb;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);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls5{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lse{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls14{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:25.308000px;}
.ls7{letter-spacing:28.062720px;}
.ls13{letter-spacing:48.348000px;}
.lsa{letter-spacing:49.788000px;}
.ls9{letter-spacing:52.668000px;}
.lsd{letter-spacing:55.548000px;}
.lsf{letter-spacing:61.308000px;}
.ls10{letter-spacing:64.188000px;}
.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;}
}
.ws6{word-spacing:-19.457280px;}
.ws8{word-spacing:-19.440000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.860000px;}
.wse{word-spacing:-13.608000px;}
.wsc{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.284000px;}
.ws9{word-spacing:-13.140000px;}
.wsa{word-spacing:-12.996000px;}
.ws4{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.026000px;}
._1{width:1.200000px;}
._6{width:2.694480px;}
._4{width:3.824640px;}
._2{width:5.079600px;}
._3{width:6.136080px;}
._5{width:7.558560px;}
._8{width:9.262800px;}
._7{width:10.398240px;}
._f{width:12.258000px;}
._9{width:14.850000px;}
._c{width:15.984000px;}
._16{width:17.334000px;}
._11{width:18.522000px;}
._10{width:19.746000px;}
._b{width:21.060000px;}
._a{width:22.086000px;}
._14{width:23.142000px;}
._d{width:25.164000px;}
._e{width:26.262000px;}
._13{width:27.468000px;}
._1d{width:28.908000px;}
._1b{width:30.618000px;}
._1a{width:31.968000px;}
._21{width:33.804000px;}
._18{width:34.884000px;}
._17{width:35.964000px;}
._1e{width:37.800000px;}
._1c{width:39.258000px;}
._12{width:40.716000px;}
._19{width:42.768000px;}
._22{width:43.968000px;}
._15{width:47.358000px;}
._1f{width:49.302000px;}
._20{width:50.316000px;}
._23{width:52.542000px;}
._24{width:53.946000px;}
._2f{width:55.404000px;}
._2a{width:104.274000px;}
._2e{width:156.708000px;}
._27{width:179.532000px;}
._26{width:180.576000px;}
._28{width:198.828000px;}
._2c{width:244.836000px;}
._2d{width:310.662000px;}
._2b{width:331.230000px;}
._25{width:444.096000px;}
._29{width:946.236000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y41{bottom:-18.900000px;}
.y0{bottom:0.000000px;}
.y40{bottom:2.160000px;}
.y4{bottom:3.060000px;}
.y12e{bottom:9.720000px;}
.y131{bottom:10.080000px;}
.y137{bottom:10.260000px;}
.y5{bottom:20.160000px;}
.y3{bottom:23.400000px;}
.y133{bottom:27.900000px;}
.y130{bottom:28.080000px;}
.y136{bottom:28.125000px;}
.y6{bottom:39.780000px;}
.y13d{bottom:45.900000px;}
.y135{bottom:45.945000px;}
.y2{bottom:60.660000px;}
.y13c{bottom:63.720000px;}
.y3d{bottom:78.330000px;}
.y3c{bottom:98.130000px;}
.y1{bottom:107.100000px;}
.y3b{bottom:117.930000px;}
.y2b{bottom:131.040000px;}
.yfa{bottom:133.380000px;}
.y12c{bottom:133.740000px;}
.yd6{bottom:134.460000px;}
.y16d{bottom:135.000000px;}
.y1b8{bottom:135.180000px;}
.y2f{bottom:142.200000px;}
.y190{bottom:143.460000px;}
.yaa{bottom:143.820000px;}
.y11b{bottom:144.360000px;}
.y30{bottom:150.120000px;}
.yf9{bottom:151.200000px;}
.y12b{bottom:151.560000px;}
.yd5{bottom:152.280000px;}
.y79{bottom:152.820000px;}
.y16c{bottom:153.000000px;}
.y107{bottom:154.440000px;}
.y158{bottom:160.920000px;}
.y18f{bottom:161.280000px;}
.ya9{bottom:161.640000px;}
.y11a{bottom:162.180000px;}
.y39{bottom:166.710000px;}
.yf8{bottom:169.020000px;}
.y12a{bottom:169.380000px;}
.yd4{bottom:170.280000px;}
.y78{bottom:170.640000px;}
.y16b{bottom:170.820000px;}
.y1b7{bottom:171.000000px;}
.y2a{bottom:174.960000px;}
.y2e{bottom:177.120000px;}
.y18e{bottom:179.280000px;}
.ya8{bottom:179.460000px;}
.y3f{bottom:179.820000px;}
.y119{bottom:180.000000px;}
.y38{bottom:186.510000px;}
.y129{bottom:186.840000px;}
.y106{bottom:187.200000px;}
.yd3{bottom:187.740000px;}
.y157{bottom:188.280000px;}
.y77{bottom:188.460000px;}
.y16a{bottom:188.640000px;}
.y1b6{bottom:188.820000px;}
.yf7{bottom:196.200000px;}
.y18d{bottom:197.100000px;}
.ya7{bottom:197.280000px;}
.y118{bottom:197.820000px;}
.y105{bottom:205.200000px;}
.y156{bottom:206.130000px;}
.y37{bottom:206.310000px;}
.y1b5{bottom:206.670000px;}
.yd2{bottom:207.930000px;}
.y3e{bottom:208.620000px;}
.yf6{bottom:214.230000px;}
.ya6{bottom:215.310000px;}
.y169{bottom:215.490000px;}
.y117{bottom:215.850000px;}
.y29{bottom:218.730000px;}
.y2d{bottom:220.890000px;}
.y104{bottom:223.050000px;}
.y155{bottom:223.950000px;}
.y76{bottom:224.310000px;}
.y1b4{bottom:224.490000px;}
.y36{bottom:226.110000px;}
.yf5{bottom:232.050000px;}
.ya5{bottom:233.130000px;}
.y168{bottom:233.310000px;}
.y116{bottom:233.670000px;}
.yd1{bottom:240.690000px;}
.y103{bottom:240.870000px;}
.y154{bottom:241.770000px;}
.y75{bottom:242.130000px;}
.y1b3{bottom:242.310000px;}
.yf4{bottom:249.870000px;}
.y115{bottom:251.490000px;}
.yd0{bottom:258.510000px;}
.y102{bottom:258.690000px;}
.y153{bottom:259.230000px;}
.y18c{bottom:259.590000px;}
.y74{bottom:259.950000px;}
.y167{bottom:260.130000px;}
.y1b2{bottom:260.310000px;}
.y28{bottom:261.030000px;}
.y2c{bottom:264.630000px;}
.yf3{bottom:267.690000px;}
.y114{bottom:269.310000px;}
.y34{bottom:274.890000px;}
.ycf{bottom:276.510000px;}
.y73{bottom:277.770000px;}
.y166{bottom:278.130000px;}
.yf2{bottom:285.510000px;}
.y152{bottom:286.410000px;}
.y113{bottom:286.770000px;}
.y101{bottom:294.510000px;}
.y33{bottom:294.690000px;}
.y72{bottom:295.590000px;}
.y1b1{bottom:295.950000px;}
.y3a{bottom:297.030000px;}
.yce{bottom:303.330000px;}
.yf1{bottom:303.510000px;}
.y151{bottom:304.410000px;}
.y165{bottom:304.950000px;}
.y27{bottom:308.370000px;}
.ya4{bottom:313.410000px;}
.y1b0{bottom:313.770000px;}
.y112{bottom:313.950000px;}
.y32{bottom:314.535000px;}
.ycd{bottom:321.150000px;}
.yf0{bottom:321.330000px;}
.y150{bottom:322.230000px;}
.y71{bottom:322.410000px;}
.y164{bottom:322.770000px;}
.ya3{bottom:331.410000px;}
.y1af{bottom:331.590000px;}
.y111{bottom:331.950000px;}
.y31{bottom:335.955000px;}
.y128{bottom:338.790000px;}
.ycc{bottom:338.970000px;}
.yef{bottom:339.150000px;}
.y14f{bottom:339.690000px;}
.y70{bottom:340.410000px;}
.y26{bottom:343.290000px;}
.y18b{bottom:349.050000px;}
.ya2{bottom:349.230000px;}
.y1ae{bottom:349.410000px;}
.y163{bottom:349.590000px;}
.y110{bottom:349.770000px;}
.y100{bottom:356.970000px;}
.y6f{bottom:358.230000px;}
.ycb{bottom:365.790000px;}
.yee{bottom:365.970000px;}
.y14e{bottom:366.870000px;}
.ya1{bottom:367.050000px;}
.y162{bottom:367.410000px;}
.y10f{bottom:367.590000px;}
.yff{bottom:374.790000px;}
.y6e{bottom:376.050000px;}
.y25{bottom:378.030000px;}
.yca{bottom:383.610000px;}
.yed{bottom:383.790000px;}
.y14d{bottom:384.690000px;}
.ya0{bottom:384.870000px;}
.y1ad{bottom:385.230000px;}
.y10e{bottom:385.410000px;}
.yfe{bottom:392.610000px;}
.y6d{bottom:393.870000px;}
.y161{bottom:394.410000px;}
.y24{bottom:401.430000px;}
.yc9{bottom:401.610000px;}
.y14c{bottom:402.510000px;}
.y9f{bottom:402.690000px;}
.y1ac{bottom:403.050000px;}
.y10d{bottom:403.230000px;}
.y35{bottom:405.210000px;}
.yfd{bottom:410.610000px;}
.y6c{bottom:411.690000px;}
.y160{bottom:412.230000px;}
.y23{bottom:419.250000px;}
.yc8{bottom:419.430000px;}
.yec{bottom:419.610000px;}
.y14b{bottom:420.510000px;}
.y9e{bottom:420.690000px;}
.y10c{bottom:420.870000px;}
.yfc{bottom:428.430000px;}
.y18a{bottom:429.510000px;}
.y6b{bottom:429.690000px;}
.y15f{bottom:430.050000px;}
.y22{bottom:437.250000px;}
.yeb{bottom:437.430000px;}
.y14a{bottom:437.970000px;}
.y9d{bottom:438.510000px;}
.y1ab{bottom:438.690000px;}
.y10b{bottom:444.855000px;}
.yc7{bottom:446.295000px;}
.y189{bottom:447.375000px;}
.y6a{bottom:447.555000px;}
.y15e{bottom:447.915000px;}
.yea{bottom:455.295000px;}
.y1aa{bottom:456.735000px;}
.y21{bottom:456.915000px;}
.yc6{bottom:464.115000px;}
.y149{bottom:465.195000px;}
.y69{bottom:465.375000px;}
.y15d{bottom:465.735000px;}
.ye9{bottom:473.115000px;}
.y1a9{bottom:474.555000px;}
.y20{bottom:480.675000px;}
.yc5{bottom:481.575000px;}
.y188{bottom:482.655000px;}
.y148{bottom:483.015000px;}
.y68{bottom:483.195000px;}
.y15c{bottom:483.555000px;}
.y127{bottom:490.575000px;}
.ye8{bottom:490.935000px;}
.y1a8{bottom:492.375000px;}
.y147{bottom:500.835000px;}
.y67{bottom:501.015000px;}
.y1f{bottom:504.435000px;}
.y15b{bottom:507.315000px;}
.yc4{bottom:508.935000px;}
.y187{bottom:509.835000px;}
.y1a7{bottom:510.195000px;}
.y126{bottom:517.935000px;}
.y66{bottom:518.835000px;}
.yc3{bottom:526.755000px;}
.y186{bottom:527.835000px;}
.y1a6{bottom:528.015000px;}
.y1e{bottom:528.195000px;}
.y125{bottom:535.755000px;}
.y146{bottom:536.295000px;}
.y65{bottom:536.835000px;}
.ye7{bottom:544.215000px;}
.yc2{bottom:544.575000px;}
.y185{bottom:545.655000px;}
.y1a5{bottom:545.835000px;}
.y1d{bottom:551.955000px;}
.y124{bottom:553.575000px;}
.y145{bottom:554.115000px;}
.y9c{bottom:554.655000px;}
.yc1{bottom:562.395000px;}
.y184{bottom:563.475000px;}
.y64{bottom:563.655000px;}
.y1a4{bottom:563.835000px;}
.ye6{bottom:571.395000px;}
.y9b{bottom:572.475000px;}
.y1c{bottom:578.235000px;}
.yc0{bottom:580.215000px;}
.y144{bottom:581.295000px;}
.y63{bottom:581.475000px;}
.y1a3{bottom:581.655000px;}
.ye5{bottom:589.215000px;}
.y9a{bottom:589.935000px;}
.ybf{bottom:598.035000px;}
.y143{bottom:599.115000px;}
.y62{bottom:599.295000px;}
.y1a2{bottom:599.475000px;}
.y123{bottom:606.675000px;}
.ye4{bottom:607.035000px;}
.y1b{bottom:609.015000px;}
.y99{bottom:610.095000px;}
.ybe{bottom:616.035000px;}
.y142{bottom:616.935000px;}
.y61{bottom:617.115000px;}
.y1a1{bottom:617.295000px;}
.ye3{bottom:625.035000px;}
.y183{bottom:626.115000px;}
.ybd{bottom:633.495000px;}
.y122{bottom:634.035000px;}
.y141{bottom:634.935000px;}
.y60{bottom:635.115000px;}
.ye2{bottom:642.855000px;}
.y98{bottom:643.035000px;}
.y182{bottom:643.935000px;}
.y121{bottom:651.855000px;}
.y140{bottom:652.755000px;}
.y5f{bottom:652.935000px;}
.y1a0{bottom:653.115000px;}
.ybc{bottom:660.675000px;}
.y97{bottom:660.855000px;}
.y181{bottom:661.755000px;}
.y1a{bottom:665.535000px;}
.y120{bottom:669.675000px;}
.y13f{bottom:670.575000px;}
.y5e{bottom:670.755000px;}
.y19f{bottom:670.935000px;}
.ybb{bottom:678.525000px;}
.y96{bottom:678.705000px;}
.y180{bottom:679.605000px;}
.y11f{bottom:687.525000px;}
.y13e{bottom:688.065000px;}
.y5d{bottom:688.605000px;}
.y19e{bottom:688.785000px;}
.yba{bottom:696.345000px;}
.y95{bottom:696.525000px;}
.y17f{bottom:697.425000px;}
.ye1{bottom:705.345000px;}
.y5c{bottom:706.425000px;}
.y19d{bottom:706.605000px;}
.y19{bottom:709.305000px;}
.y13b{bottom:710.385000px;}
.yb9{bottom:714.165000px;}
.y94{bottom:714.345000px;}
.y17e{bottom:715.245000px;}
.ye0{bottom:723.165000px;}
.y5b{bottom:724.245000px;}
.y19c{bottom:724.425000px;}
.y93{bottom:732.165000px;}
.y11e{bottom:740.805000px;}
.ydf{bottom:741.165000px;}
.y17d{bottom:742.245000px;}
.yb8{bottom:749.625000px;}
.y92{bottom:750.165000px;}
.y18{bottom:751.065000px;}
.y5a{bottom:751.245000px;}
.yde{bottom:758.985000px;}
.y17c{bottom:760.065000px;}
.y19b{bottom:760.245000px;}
.y91{bottom:767.985000px;}
.y59{bottom:769.065000px;}
.yb7{bottom:776.805000px;}
.y17b{bottom:777.885000px;}
.y19a{bottom:778.065000px;}
.y17{bottom:778.785000px;}
.y90{bottom:785.805000px;}
.y58{bottom:786.885000px;}
.y13a{bottom:791.565000px;}
.yb6{bottom:794.625000px;}
.y17a{bottom:795.705000px;}
.y199{bottom:795.885000px;}
.y8f{bottom:803.625000px;}
.y57{bottom:804.705000px;}
.y10a{bottom:812.085000px;}
.yb5{bottom:812.445000px;}
.y179{bottom:813.525000px;}
.y198{bottom:813.705000px;}
.y8e{bottom:821.445000px;}
.y56{bottom:822.525000px;}
.y16{bottom:824.865000px;}
.ydd{bottom:830.085000px;}
.yb4{bottom:830.445000px;}
.y178{bottom:831.345000px;}
.y197{bottom:831.525000px;}
.y139{bottom:837.105000px;}
.y109{bottom:839.445000px;}
.y55{bottom:840.345000px;}
.y15{bottom:847.725000px;}
.yb3{bottom:848.265000px;}
.y8d{bottom:848.445000px;}
.y177{bottom:849.345000px;}
.ydc{bottom:857.265000px;}
.y54{bottom:858.345000px;}
.yb2{bottom:866.085000px;}
.y8c{bottom:866.265000px;}
.y176{bottom:867.165000px;}
.y196{bottom:867.345000px;}
.y14{bottom:869.505000px;}
.y138{bottom:869.865000px;}
.ydb{bottom:875.085000px;}
.y1c1{bottom:875.265000px;}
.y53{bottom:876.165000px;}
.y134{bottom:883.185000px;}
.yb1{bottom:883.905000px;}
.y8b{bottom:884.085000px;}
.y175{bottom:884.985000px;}
.y195{bottom:885.165000px;}
.y13{bottom:891.465000px;}
.y11d{bottom:892.545000px;}
.yda{bottom:892.905000px;}
.y1c0{bottom:893.085000px;}
.y52{bottom:893.985000px;}
.yb0{bottom:901.365000px;}
.y8a{bottom:901.905000px;}
.y174{bottom:902.805000px;}
.y194{bottom:902.985000px;}
.yd9{bottom:910.770000px;}
.y1bf{bottom:910.950000px;}
.y51{bottom:911.850000px;}
.y12{bottom:914.370000px;}
.y89{bottom:919.770000px;}
.y193{bottom:920.850000px;}
.yaf{bottom:928.590000px;}
.y1be{bottom:928.770000px;}
.y50{bottom:929.670000px;}
.y11{bottom:936.510000px;}
.y88{bottom:937.590000px;}
.y192{bottom:938.670000px;}
.yae{bottom:946.230000px;}
.yfb{bottom:946.590000px;}
.y4f{bottom:947.670000px;}
.y87{bottom:955.590000px;}
.y191{bottom:956.670000px;}
.y10{bottom:959.190000px;}
.y1bd{bottom:964.590000px;}
.y173{bottom:965.490000px;}
.y86{bottom:973.410000px;}
.y4e{bottom:974.490000px;}
.y1bc{bottom:982.410000px;}
.y172{bottom:983.310000px;}
.yf{bottom:985.650000px;}
.y85{bottom:991.230000px;}
.y132{bottom:992.130000px;}
.y4d{bottom:992.310000px;}
.ye{bottom:997.710000px;}
.y1bb{bottom:1000.230000px;}
.y171{bottom:1001.130000px;}
.y84{bottom:1009.050000px;}
.yd{bottom:1009.770000px;}
.y4c{bottom:1010.130000px;}
.y1ba{bottom:1018.050000px;}
.y170{bottom:1018.950000px;}
.yc{bottom:1021.830000px;}
.y83{bottom:1026.870000px;}
.y4b{bottom:1027.950000px;}
.y1b9{bottom:1035.870000px;}
.yb{bottom:1036.410000px;}
.y16f{bottom:1036.770000px;}
.y12f{bottom:1037.490000px;}
.y11c{bottom:1044.510000px;}
.y82{bottom:1044.870000px;}
.y4a{bottom:1045.770000px;}
.yad{bottom:1053.870000px;}
.y16e{bottom:1054.770000px;}
.ya{bottom:1061.970000px;}
.y81{bottom:1062.690000px;}
.y49{bottom:1063.770000px;}
.yac{bottom:1071.690000px;}
.yd8{bottom:1080.510000px;}
.y48{bottom:1081.590000px;}
.y12d{bottom:1083.030000px;}
.y9{bottom:1087.170000px;}
.y80{bottom:1089.510000px;}
.yd7{bottom:1098.330000px;}
.y47{bottom:1099.410000px;}
.y7f{bottom:1107.330000px;}
.y15a{bottom:1116.150000px;}
.y8{bottom:1116.870000px;}
.y46{bottom:1117.230000px;}
.y7e{bottom:1125.150000px;}
.y159{bottom:1133.610000px;}
.y45{bottom:1135.050000px;}
.y7d{bottom:1142.970000px;}
.y44{bottom:1153.080000px;}
.y7c{bottom:1161.000000px;}
.y7{bottom:1165.860000px;}
.y43{bottom:1170.900000px;}
.y108{bottom:1178.460000px;}
.y7b{bottom:1178.820000px;}
.y42{bottom:1190.700000px;}
.yab{bottom:1196.280000px;}
.y7a{bottom:1196.640000px;}
.h1a{height:26.820000px;}
.h3{height:35.635500px;}
.h18{height:39.049805px;}
.h9{height:40.985156px;}
.h1c{height:44.640000px;}
.h1b{height:44.820000px;}
.h15{height:49.255313px;}
.h16{height:52.971680px;}
.h4{height:52.998047px;}
.h10{height:54.421875px;}
.h12{height:55.291992px;}
.h1f{height:55.503491px;}
.h19{height:56.214844px;}
.h14{height:58.621992px;}
.ha{height:58.651172px;}
.hb{height:60.226875px;}
.h1d{height:62.676000px;}
.h2{height:65.884219px;}
.he{height:66.757500px;}
.hd{height:72.326250px;}
.hf{height:72.562500px;}
.h11{height:78.367500px;}
.h1e{height:80.460000px;}
.h17{height:80.949375px;}
.hc{height:82.676953px;}
.h7{height:84.898125px;}
.h8{height:90.703125px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h13{height:366.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w5{width:174.435000px;}
.w6{width:188.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.x15{left:10.800000px;}
.x1e{left:35.265000px;}
.x14{left:38.340000px;}
.x2{left:45.364500px;}
.x1d{left:46.620000px;}
.x16{left:49.140000px;}
.x1{left:54.000000px;}
.x1f{left:60.840000px;}
.xe{left:64.260000px;}
.x17{left:81.000000px;}
.x21{left:108.036000px;}
.xf{left:205.050000px;}
.x3{left:220.210500px;}
.x10{left:266.655000px;}
.xb{left:269.715000px;}
.x4{left:271.330500px;}
.xc{left:303.195000px;}
.x11{left:320.115000px;}
.x9{left:322.275000px;}
.x12{left:341.355000px;}
.x8{left:351.615000px;}
.xa{left:364.395000px;}
.xd{left:378.795000px;}
.x20{left:421.095000px;}
.x7{left:446.505000px;}
.x13{left:473.505000px;}
.x1b{left:474.600000px;}
.x18{left:500.505000px;}
.x19{left:527.505000px;}
.x1c{left:649.770000px;}
.x5{left:767.490000px;}
.x1a{left:840.600000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls14{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:22.496000pt;}
.ls7{letter-spacing:24.944640pt;}
.ls13{letter-spacing:42.976000pt;}
.lsa{letter-spacing:44.256000pt;}
.ls9{letter-spacing:46.816000pt;}
.lsd{letter-spacing:49.376000pt;}
.lsf{letter-spacing:54.496000pt;}
.ls10{letter-spacing:57.056000pt;}
.ws6{word-spacing:-17.295360pt;}
.ws8{word-spacing:-17.280000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.096000pt;}
.wsc{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.808000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsa{word-spacing:-11.552000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.066667pt;}
._6{width:2.395093pt;}
._4{width:3.399680pt;}
._2{width:4.515200pt;}
._3{width:5.454293pt;}
._5{width:6.718720pt;}
._8{width:8.233600pt;}
._7{width:9.242880pt;}
._f{width:10.896000pt;}
._9{width:13.200000pt;}
._c{width:14.208000pt;}
._16{width:15.408000pt;}
._11{width:16.464000pt;}
._10{width:17.552000pt;}
._b{width:18.720000pt;}
._a{width:19.632000pt;}
._14{width:20.570667pt;}
._d{width:22.368000pt;}
._e{width:23.344000pt;}
._13{width:24.416000pt;}
._1d{width:25.696000pt;}
._1b{width:27.216000pt;}
._1a{width:28.416000pt;}
._21{width:30.048000pt;}
._18{width:31.008000pt;}
._17{width:31.968000pt;}
._1e{width:33.600000pt;}
._1c{width:34.896000pt;}
._12{width:36.192000pt;}
._19{width:38.016000pt;}
._22{width:39.082667pt;}
._15{width:42.096000pt;}
._1f{width:43.824000pt;}
._20{width:44.725333pt;}
._23{width:46.704000pt;}
._24{width:47.952000pt;}
._2f{width:49.248000pt;}
._2a{width:92.688000pt;}
._2e{width:139.296000pt;}
._27{width:159.584000pt;}
._26{width:160.512000pt;}
._28{width:176.736000pt;}
._2c{width:217.632000pt;}
._2d{width:276.144000pt;}
._2b{width:294.426667pt;}
._25{width:394.752000pt;}
._29{width:841.098667pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y41{bottom:-16.800000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:1.920000pt;}
.y4{bottom:2.720000pt;}
.y12e{bottom:8.640000pt;}
.y131{bottom:8.960000pt;}
.y137{bottom:9.120000pt;}
.y5{bottom:17.920000pt;}
.y3{bottom:20.800000pt;}
.y133{bottom:24.800000pt;}
.y130{bottom:24.960000pt;}
.y136{bottom:25.000000pt;}
.y6{bottom:35.360000pt;}
.y13d{bottom:40.800000pt;}
.y135{bottom:40.840000pt;}
.y2{bottom:53.920000pt;}
.y13c{bottom:56.640000pt;}
.y3d{bottom:69.626667pt;}
.y3c{bottom:87.226667pt;}
.y1{bottom:95.200000pt;}
.y3b{bottom:104.826667pt;}
.y2b{bottom:116.480000pt;}
.yfa{bottom:118.560000pt;}
.y12c{bottom:118.880000pt;}
.yd6{bottom:119.520000pt;}
.y16d{bottom:120.000000pt;}
.y1b8{bottom:120.160000pt;}
.y2f{bottom:126.400000pt;}
.y190{bottom:127.520000pt;}
.yaa{bottom:127.840000pt;}
.y11b{bottom:128.320000pt;}
.y30{bottom:133.440000pt;}
.yf9{bottom:134.400000pt;}
.y12b{bottom:134.720000pt;}
.yd5{bottom:135.360000pt;}
.y79{bottom:135.840000pt;}
.y16c{bottom:136.000000pt;}
.y107{bottom:137.280000pt;}
.y158{bottom:143.040000pt;}
.y18f{bottom:143.360000pt;}
.ya9{bottom:143.680000pt;}
.y11a{bottom:144.160000pt;}
.y39{bottom:148.186667pt;}
.yf8{bottom:150.240000pt;}
.y12a{bottom:150.560000pt;}
.yd4{bottom:151.360000pt;}
.y78{bottom:151.680000pt;}
.y16b{bottom:151.840000pt;}
.y1b7{bottom:152.000000pt;}
.y2a{bottom:155.520000pt;}
.y2e{bottom:157.440000pt;}
.y18e{bottom:159.360000pt;}
.ya8{bottom:159.520000pt;}
.y3f{bottom:159.840000pt;}
.y119{bottom:160.000000pt;}
.y38{bottom:165.786667pt;}
.y129{bottom:166.080000pt;}
.y106{bottom:166.400000pt;}
.yd3{bottom:166.880000pt;}
.y157{bottom:167.360000pt;}
.y77{bottom:167.520000pt;}
.y16a{bottom:167.680000pt;}
.y1b6{bottom:167.840000pt;}
.yf7{bottom:174.400000pt;}
.y18d{bottom:175.200000pt;}
.ya7{bottom:175.360000pt;}
.y118{bottom:175.840000pt;}
.y105{bottom:182.400000pt;}
.y156{bottom:183.226667pt;}
.y37{bottom:183.386667pt;}
.y1b5{bottom:183.706667pt;}
.yd2{bottom:184.826667pt;}
.y3e{bottom:185.440000pt;}
.yf6{bottom:190.426667pt;}
.ya6{bottom:191.386667pt;}
.y169{bottom:191.546667pt;}
.y117{bottom:191.866667pt;}
.y29{bottom:194.426667pt;}
.y2d{bottom:196.346667pt;}
.y104{bottom:198.266667pt;}
.y155{bottom:199.066667pt;}
.y76{bottom:199.386667pt;}
.y1b4{bottom:199.546667pt;}
.y36{bottom:200.986667pt;}
.yf5{bottom:206.266667pt;}
.ya5{bottom:207.226667pt;}
.y168{bottom:207.386667pt;}
.y116{bottom:207.706667pt;}
.yd1{bottom:213.946667pt;}
.y103{bottom:214.106667pt;}
.y154{bottom:214.906667pt;}
.y75{bottom:215.226667pt;}
.y1b3{bottom:215.386667pt;}
.yf4{bottom:222.106667pt;}
.y115{bottom:223.546667pt;}
.yd0{bottom:229.786667pt;}
.y102{bottom:229.946667pt;}
.y153{bottom:230.426667pt;}
.y18c{bottom:230.746667pt;}
.y74{bottom:231.066667pt;}
.y167{bottom:231.226667pt;}
.y1b2{bottom:231.386667pt;}
.y28{bottom:232.026667pt;}
.y2c{bottom:235.226667pt;}
.yf3{bottom:237.946667pt;}
.y114{bottom:239.386667pt;}
.y34{bottom:244.346667pt;}
.ycf{bottom:245.786667pt;}
.y73{bottom:246.906667pt;}
.y166{bottom:247.226667pt;}
.yf2{bottom:253.786667pt;}
.y152{bottom:254.586667pt;}
.y113{bottom:254.906667pt;}
.y101{bottom:261.786667pt;}
.y33{bottom:261.946667pt;}
.y72{bottom:262.746667pt;}
.y1b1{bottom:263.066667pt;}
.y3a{bottom:264.026667pt;}
.yce{bottom:269.626667pt;}
.yf1{bottom:269.786667pt;}
.y151{bottom:270.586667pt;}
.y165{bottom:271.066667pt;}
.y27{bottom:274.106667pt;}
.ya4{bottom:278.586667pt;}
.y1b0{bottom:278.906667pt;}
.y112{bottom:279.066667pt;}
.y32{bottom:279.586667pt;}
.ycd{bottom:285.466667pt;}
.yf0{bottom:285.626667pt;}
.y150{bottom:286.426667pt;}
.y71{bottom:286.586667pt;}
.y164{bottom:286.906667pt;}
.ya3{bottom:294.586667pt;}
.y1af{bottom:294.746667pt;}
.y111{bottom:295.066667pt;}
.y31{bottom:298.626667pt;}
.y128{bottom:301.146667pt;}
.ycc{bottom:301.306667pt;}
.yef{bottom:301.466667pt;}
.y14f{bottom:301.946667pt;}
.y70{bottom:302.586667pt;}
.y26{bottom:305.146667pt;}
.y18b{bottom:310.266667pt;}
.ya2{bottom:310.426667pt;}
.y1ae{bottom:310.586667pt;}
.y163{bottom:310.746667pt;}
.y110{bottom:310.906667pt;}
.y100{bottom:317.306667pt;}
.y6f{bottom:318.426667pt;}
.ycb{bottom:325.146667pt;}
.yee{bottom:325.306667pt;}
.y14e{bottom:326.106667pt;}
.ya1{bottom:326.266667pt;}
.y162{bottom:326.586667pt;}
.y10f{bottom:326.746667pt;}
.yff{bottom:333.146667pt;}
.y6e{bottom:334.266667pt;}
.y25{bottom:336.026667pt;}
.yca{bottom:340.986667pt;}
.yed{bottom:341.146667pt;}
.y14d{bottom:341.946667pt;}
.ya0{bottom:342.106667pt;}
.y1ad{bottom:342.426667pt;}
.y10e{bottom:342.586667pt;}
.yfe{bottom:348.986667pt;}
.y6d{bottom:350.106667pt;}
.y161{bottom:350.586667pt;}
.y24{bottom:356.826667pt;}
.yc9{bottom:356.986667pt;}
.y14c{bottom:357.786667pt;}
.y9f{bottom:357.946667pt;}
.y1ac{bottom:358.266667pt;}
.y10d{bottom:358.426667pt;}
.y35{bottom:360.186667pt;}
.yfd{bottom:364.986667pt;}
.y6c{bottom:365.946667pt;}
.y160{bottom:366.426667pt;}
.y23{bottom:372.666667pt;}
.yc8{bottom:372.826667pt;}
.yec{bottom:372.986667pt;}
.y14b{bottom:373.786667pt;}
.y9e{bottom:373.946667pt;}
.y10c{bottom:374.106667pt;}
.yfc{bottom:380.826667pt;}
.y18a{bottom:381.786667pt;}
.y6b{bottom:381.946667pt;}
.y15f{bottom:382.266667pt;}
.y22{bottom:388.666667pt;}
.yeb{bottom:388.826667pt;}
.y14a{bottom:389.306667pt;}
.y9d{bottom:389.786667pt;}
.y1ab{bottom:389.946667pt;}
.y10b{bottom:395.426667pt;}
.yc7{bottom:396.706667pt;}
.y189{bottom:397.666667pt;}
.y6a{bottom:397.826667pt;}
.y15e{bottom:398.146667pt;}
.yea{bottom:404.706667pt;}
.y1aa{bottom:405.986667pt;}
.y21{bottom:406.146667pt;}
.yc6{bottom:412.546667pt;}
.y149{bottom:413.506667pt;}
.y69{bottom:413.666667pt;}
.y15d{bottom:413.986667pt;}
.ye9{bottom:420.546667pt;}
.y1a9{bottom:421.826667pt;}
.y20{bottom:427.266667pt;}
.yc5{bottom:428.066667pt;}
.y188{bottom:429.026667pt;}
.y148{bottom:429.346667pt;}
.y68{bottom:429.506667pt;}
.y15c{bottom:429.826667pt;}
.y127{bottom:436.066667pt;}
.ye8{bottom:436.386667pt;}
.y1a8{bottom:437.666667pt;}
.y147{bottom:445.186667pt;}
.y67{bottom:445.346667pt;}
.y1f{bottom:448.386667pt;}
.y15b{bottom:450.946667pt;}
.yc4{bottom:452.386667pt;}
.y187{bottom:453.186667pt;}
.y1a7{bottom:453.506667pt;}
.y126{bottom:460.386667pt;}
.y66{bottom:461.186667pt;}
.yc3{bottom:468.226667pt;}
.y186{bottom:469.186667pt;}
.y1a6{bottom:469.346667pt;}
.y1e{bottom:469.506667pt;}
.y125{bottom:476.226667pt;}
.y146{bottom:476.706667pt;}
.y65{bottom:477.186667pt;}
.ye7{bottom:483.746667pt;}
.yc2{bottom:484.066667pt;}
.y185{bottom:485.026667pt;}
.y1a5{bottom:485.186667pt;}
.y1d{bottom:490.626667pt;}
.y124{bottom:492.066667pt;}
.y145{bottom:492.546667pt;}
.y9c{bottom:493.026667pt;}
.yc1{bottom:499.906667pt;}
.y184{bottom:500.866667pt;}
.y64{bottom:501.026667pt;}
.y1a4{bottom:501.186667pt;}
.ye6{bottom:507.906667pt;}
.y9b{bottom:508.866667pt;}
.y1c{bottom:513.986667pt;}
.yc0{bottom:515.746667pt;}
.y144{bottom:516.706667pt;}
.y63{bottom:516.866667pt;}
.y1a3{bottom:517.026667pt;}
.ye5{bottom:523.746667pt;}
.y9a{bottom:524.386667pt;}
.ybf{bottom:531.586667pt;}
.y143{bottom:532.546667pt;}
.y62{bottom:532.706667pt;}
.y1a2{bottom:532.866667pt;}
.y123{bottom:539.266667pt;}
.ye4{bottom:539.586667pt;}
.y1b{bottom:541.346667pt;}
.y99{bottom:542.306667pt;}
.ybe{bottom:547.586667pt;}
.y142{bottom:548.386667pt;}
.y61{bottom:548.546667pt;}
.y1a1{bottom:548.706667pt;}
.ye3{bottom:555.586667pt;}
.y183{bottom:556.546667pt;}
.ybd{bottom:563.106667pt;}
.y122{bottom:563.586667pt;}
.y141{bottom:564.386667pt;}
.y60{bottom:564.546667pt;}
.ye2{bottom:571.426667pt;}
.y98{bottom:571.586667pt;}
.y182{bottom:572.386667pt;}
.y121{bottom:579.426667pt;}
.y140{bottom:580.226667pt;}
.y5f{bottom:580.386667pt;}
.y1a0{bottom:580.546667pt;}
.ybc{bottom:587.266667pt;}
.y97{bottom:587.426667pt;}
.y181{bottom:588.226667pt;}
.y1a{bottom:591.586667pt;}
.y120{bottom:595.266667pt;}
.y13f{bottom:596.066667pt;}
.y5e{bottom:596.226667pt;}
.y19f{bottom:596.386667pt;}
.ybb{bottom:603.133333pt;}
.y96{bottom:603.293333pt;}
.y180{bottom:604.093333pt;}
.y11f{bottom:611.133333pt;}
.y13e{bottom:611.613333pt;}
.y5d{bottom:612.093333pt;}
.y19e{bottom:612.253333pt;}
.yba{bottom:618.973333pt;}
.y95{bottom:619.133333pt;}
.y17f{bottom:619.933333pt;}
.ye1{bottom:626.973333pt;}
.y5c{bottom:627.933333pt;}
.y19d{bottom:628.093333pt;}
.y19{bottom:630.493333pt;}
.y13b{bottom:631.453333pt;}
.yb9{bottom:634.813333pt;}
.y94{bottom:634.973333pt;}
.y17e{bottom:635.773333pt;}
.ye0{bottom:642.813333pt;}
.y5b{bottom:643.773333pt;}
.y19c{bottom:643.933333pt;}
.y93{bottom:650.813333pt;}
.y11e{bottom:658.493333pt;}
.ydf{bottom:658.813333pt;}
.y17d{bottom:659.773333pt;}
.yb8{bottom:666.333333pt;}
.y92{bottom:666.813333pt;}
.y18{bottom:667.613333pt;}
.y5a{bottom:667.773333pt;}
.yde{bottom:674.653333pt;}
.y17c{bottom:675.613333pt;}
.y19b{bottom:675.773333pt;}
.y91{bottom:682.653333pt;}
.y59{bottom:683.613333pt;}
.yb7{bottom:690.493333pt;}
.y17b{bottom:691.453333pt;}
.y19a{bottom:691.613333pt;}
.y17{bottom:692.253333pt;}
.y90{bottom:698.493333pt;}
.y58{bottom:699.453333pt;}
.y13a{bottom:703.613333pt;}
.yb6{bottom:706.333333pt;}
.y17a{bottom:707.293333pt;}
.y199{bottom:707.453333pt;}
.y8f{bottom:714.333333pt;}
.y57{bottom:715.293333pt;}
.y10a{bottom:721.853333pt;}
.yb5{bottom:722.173333pt;}
.y179{bottom:723.133333pt;}
.y198{bottom:723.293333pt;}
.y8e{bottom:730.173333pt;}
.y56{bottom:731.133333pt;}
.y16{bottom:733.213333pt;}
.ydd{bottom:737.853333pt;}
.yb4{bottom:738.173333pt;}
.y178{bottom:738.973333pt;}
.y197{bottom:739.133333pt;}
.y139{bottom:744.093333pt;}
.y109{bottom:746.173333pt;}
.y55{bottom:746.973333pt;}
.y15{bottom:753.533333pt;}
.yb3{bottom:754.013333pt;}
.y8d{bottom:754.173333pt;}
.y177{bottom:754.973333pt;}
.ydc{bottom:762.013333pt;}
.y54{bottom:762.973333pt;}
.yb2{bottom:769.853333pt;}
.y8c{bottom:770.013333pt;}
.y176{bottom:770.813333pt;}
.y196{bottom:770.973333pt;}
.y14{bottom:772.893333pt;}
.y138{bottom:773.213333pt;}
.ydb{bottom:777.853333pt;}
.y1c1{bottom:778.013333pt;}
.y53{bottom:778.813333pt;}
.y134{bottom:785.053333pt;}
.yb1{bottom:785.693333pt;}
.y8b{bottom:785.853333pt;}
.y175{bottom:786.653333pt;}
.y195{bottom:786.813333pt;}
.y13{bottom:792.413333pt;}
.y11d{bottom:793.373333pt;}
.yda{bottom:793.693333pt;}
.y1c0{bottom:793.853333pt;}
.y52{bottom:794.653333pt;}
.yb0{bottom:801.213333pt;}
.y8a{bottom:801.693333pt;}
.y174{bottom:802.493333pt;}
.y194{bottom:802.653333pt;}
.yd9{bottom:809.573333pt;}
.y1bf{bottom:809.733333pt;}
.y51{bottom:810.533333pt;}
.y12{bottom:812.773333pt;}
.y89{bottom:817.573333pt;}
.y193{bottom:818.533333pt;}
.yaf{bottom:825.413333pt;}
.y1be{bottom:825.573333pt;}
.y50{bottom:826.373333pt;}
.y11{bottom:832.453333pt;}
.y88{bottom:833.413333pt;}
.y192{bottom:834.373333pt;}
.yae{bottom:841.093333pt;}
.yfb{bottom:841.413333pt;}
.y4f{bottom:842.373333pt;}
.y87{bottom:849.413333pt;}
.y191{bottom:850.373333pt;}
.y10{bottom:852.613333pt;}
.y1bd{bottom:857.413333pt;}
.y173{bottom:858.213333pt;}
.y86{bottom:865.253333pt;}
.y4e{bottom:866.213333pt;}
.y1bc{bottom:873.253333pt;}
.y172{bottom:874.053333pt;}
.yf{bottom:876.133333pt;}
.y85{bottom:881.093333pt;}
.y132{bottom:881.893333pt;}
.y4d{bottom:882.053333pt;}
.ye{bottom:886.853333pt;}
.y1bb{bottom:889.093333pt;}
.y171{bottom:889.893333pt;}
.y84{bottom:896.933333pt;}
.yd{bottom:897.573333pt;}
.y4c{bottom:897.893333pt;}
.y1ba{bottom:904.933333pt;}
.y170{bottom:905.733333pt;}
.yc{bottom:908.293333pt;}
.y83{bottom:912.773333pt;}
.y4b{bottom:913.733333pt;}
.y1b9{bottom:920.773333pt;}
.yb{bottom:921.253333pt;}
.y16f{bottom:921.573333pt;}
.y12f{bottom:922.213333pt;}
.y11c{bottom:928.453333pt;}
.y82{bottom:928.773333pt;}
.y4a{bottom:929.573333pt;}
.yad{bottom:936.773333pt;}
.y16e{bottom:937.573333pt;}
.ya{bottom:943.973333pt;}
.y81{bottom:944.613333pt;}
.y49{bottom:945.573333pt;}
.yac{bottom:952.613333pt;}
.yd8{bottom:960.453333pt;}
.y48{bottom:961.413333pt;}
.y12d{bottom:962.693333pt;}
.y9{bottom:966.373333pt;}
.y80{bottom:968.453333pt;}
.yd7{bottom:976.293333pt;}
.y47{bottom:977.253333pt;}
.y7f{bottom:984.293333pt;}
.y15a{bottom:992.133333pt;}
.y8{bottom:992.773333pt;}
.y46{bottom:993.093333pt;}
.y7e{bottom:1000.133333pt;}
.y159{bottom:1007.653333pt;}
.y45{bottom:1008.933333pt;}
.y7d{bottom:1015.973333pt;}
.y44{bottom:1024.960000pt;}
.y7c{bottom:1032.000000pt;}
.y7{bottom:1036.320000pt;}
.y43{bottom:1040.800000pt;}
.y108{bottom:1047.520000pt;}
.y7b{bottom:1047.840000pt;}
.y42{bottom:1058.400000pt;}
.yab{bottom:1063.360000pt;}
.y7a{bottom:1063.680000pt;}
.h1a{height:23.840000pt;}
.h3{height:31.676000pt;}
.h18{height:34.710938pt;}
.h9{height:36.431250pt;}
.h1c{height:39.680000pt;}
.h1b{height:39.840000pt;}
.h15{height:43.782500pt;}
.h16{height:47.085938pt;}
.h4{height:47.109375pt;}
.h10{height:48.375000pt;}
.h12{height:49.148438pt;}
.h1f{height:49.336436pt;}
.h19{height:49.968750pt;}
.h14{height:52.108438pt;}
.ha{height:52.134375pt;}
.hb{height:53.535000pt;}
.h1d{height:55.712000pt;}
.h2{height:58.563750pt;}
.he{height:59.340000pt;}
.hd{height:64.290000pt;}
.hf{height:64.500000pt;}
.h11{height:69.660000pt;}
.h1e{height:71.520000pt;}
.h17{height:71.955000pt;}
.hc{height:73.490625pt;}
.h7{height:75.465000pt;}
.h8{height:80.625000pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h13{height:325.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w5{width:155.053333pt;}
.w6{width:167.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.x15{left:9.600000pt;}
.x1e{left:31.346667pt;}
.x14{left:34.080000pt;}
.x2{left:40.324000pt;}
.x1d{left:41.440000pt;}
.x16{left:43.680000pt;}
.x1{left:48.000000pt;}
.x1f{left:54.080000pt;}
.xe{left:57.120000pt;}
.x17{left:72.000000pt;}
.x21{left:96.032000pt;}
.xf{left:182.266667pt;}
.x3{left:195.742667pt;}
.x10{left:237.026667pt;}
.xb{left:239.746667pt;}
.x4{left:241.182667pt;}
.xc{left:269.506667pt;}
.x11{left:284.546667pt;}
.x9{left:286.466667pt;}
.x12{left:303.426667pt;}
.x8{left:312.546667pt;}
.xa{left:323.906667pt;}
.xd{left:336.706667pt;}
.x20{left:374.306667pt;}
.x7{left:396.893333pt;}
.x13{left:420.893333pt;}
.x1b{left:421.866667pt;}
.x18{left:444.893333pt;}
.x19{left:468.893333pt;}
.x1c{left:577.573333pt;}
.x5{left:682.213333pt;}
.x1a{left:747.200000pt;}
}




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