
    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_e9ec1d099cff655b2f7e60bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.147461;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_84d139449d0976e31975ee04.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.769531;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_db7d20554ca36c9fd521701c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.157715;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_573ae1d235f3e910edb84f6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_0c925543bc1689155dc9686b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_780de5ed4c02df8cd5926db6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.055116px;}
.ls3{letter-spacing:0.261208px;}
.ls0{letter-spacing:0.317062px;}
.ls4{letter-spacing:64.085852px;}
.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;}
}
.ws2{word-spacing:-59.762250px;}
.ws0{word-spacing:-18.349228px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-5.079470px;}
._13{margin-left:-3.633257px;}
._5{margin-left:-2.619044px;}
._1{margin-left:-1.489556px;}
._0{width:1.215608px;}
._6{width:3.154163px;}
._16{width:4.274847px;}
._11{width:5.325165px;}
._2{width:6.514038px;}
._7{width:7.865933px;}
._a{width:9.144598px;}
._1c{width:10.272276px;}
._14{width:11.536321px;}
._15{width:13.038814px;}
._f{width:14.880802px;}
._e{width:16.536741px;}
._b{width:19.541079px;}
._8{width:21.275033px;}
._9{width:22.451489px;}
._1b{width:23.525470px;}
._19{width:25.304711px;}
._18{width:26.723419px;}
._17{width:28.099404px;}
._4{width:30.029344px;}
._3{width:31.078436px;}
._21{width:32.310525px;}
._10{width:33.463690px;}
._22{width:41.324836px;}
._c{width:51.602028px;}
._d{width:53.399638px;}
._1a{width:54.490882px;}
._1d{width:56.300474px;}
._1e{width:57.488183px;}
._1f{width:64.565676px;}
._20{width:65.958709px;}
.fc5{color:rgb(17,85,204);}
.fc3{color:transparent;}
.fc2{color:rgb(206,55,54);}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(229,0,62);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.881485px;}
.fs8{font-size:41.761620px;}
.fs2{font-size:48.241800px;}
.fsb{font-size:59.762250px;}
.fs3{font-size:63.362250px;}
.fs0{font-size:66.242700px;}
.fs4{font-size:72.002705px;}
.fs7{font-size:84.243145px;}
.fsa{font-size:95.763600px;}
.fs9{font-size:108.004050px;}
.fs6{font-size:131.764946px;}
.fs5{font-size:144.005409px;}
.yb{bottom:-3.600082px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.700027px;}
.y28{bottom:31.500000px;}
.ya{bottom:32.040115px;}
.y4{bottom:32.400055px;}
.y27{bottom:42.300110px;}
.y9{bottom:50.580093px;}
.y7{bottom:68.220016px;}
.y6{bottom:70.920043px;}
.y5{bottom:86.940033px;}
.yd5{bottom:117.180039px;}
.y13e{bottom:117.900055px;}
.yaf{bottom:119.160049px;}
.y161{bottom:127.080093px;}
.y4b{bottom:130.860077px;}
.y24{bottom:133.200096px;}
.y6e{bottom:137.700096px;}
.yd4{bottom:138.960091px;}
.y13d{bottom:139.860077px;}
.yae{bottom:140.940033px;}
.y23{bottom:151.920043px;}
.y4a{bottom:152.640060px;}
.y11c{bottom:153.180039px;}
.y6d{bottom:159.660049px;}
.yd3{bottom:160.740074px;}
.y13c{bottom:161.640060px;}
.yad{bottom:162.720085px;}
.y160{bottom:169.920043px;}
.y49{bottom:174.420043px;}
.y11b{bottom:174.960091px;}
.y6c{bottom:181.440033px;}
.yd2{bottom:182.520058px;}
.y13b{bottom:183.420043px;}
.yac{bottom:184.500068px;}
.yf7{bottom:185.940033px;}
.y48{bottom:196.380066px;}
.y11a{bottom:196.740074px;}
.y6b{bottom:203.400055px;}
.yd1{bottom:204.480079px;}
.yab{bottom:206.460091px;}
.yf6{bottom:207.900055px;}
.y22{bottom:208.080093px;}
.y15f{bottom:212.760064px;}
.y47{bottom:218.160049px;}
.y119{bottom:218.700096px;}
.y6a{bottom:225.180039px;}
.y13a{bottom:226.080093px;}
.yd0{bottom:226.260064px;}
.yaa{bottom:228.240074px;}
.yf5{bottom:229.860077px;}
.y21{bottom:230.220085px;}
.y15e{bottom:234.720085px;}
.y46{bottom:239.940033px;}
.y118{bottom:240.480079px;}
.y92{bottom:241.560036px;}
.ycf{bottom:248.040047px;}
.ya9{bottom:250.020058px;}
.yf4{bottom:251.640060px;}
.y20{bottom:252.360077px;}
.y15d{bottom:256.500068px;}
.y117{bottom:262.260064px;}
.y91{bottom:263.340088px;}
.y181{bottom:264.240074px;}
.y69{bottom:268.920043px;}
.yce{bottom:269.820099px;}
.ya8{bottom:271.800041px;}
.yf3{bottom:273.420043px;}
.y1f{bottom:274.500068px;}
.y15c{bottom:278.460091px;}
.y45{bottom:283.680039px;}
.y116{bottom:284.040047px;}
.y90{bottom:285.120072px;}
.y180{bottom:286.020058px;}
.y139{bottom:290.880066px;}
.ycd{bottom:291.600083px;}
.ya7{bottom:293.580093px;}
.yf2{bottom:295.200096px;}
.y1e{bottom:300.240074px;}
.y115{bottom:305.820099px;}
.y8f{bottom:306.900055px;}
.y17f{bottom:307.980079px;}
.y138{bottom:312.840088px;}
.y68{bottom:313.020058px;}
.ycc{bottom:313.560036px;}
.ya6{bottom:315.540047px;}
.yf1{bottom:317.160049px;}
.y114{bottom:327.780052px;}
.y44{bottom:328.320099px;}
.y8e{bottom:328.680039px;}
.y17e{bottom:329.760064px;}
.y67{bottom:334.980079px;}
.ycb{bottom:335.340088px;}
.ya5{bottom:337.320099px;}
.y1d{bottom:342.360077px;}
.y15b{bottom:342.900055px;}
.y113{bottom:349.560036px;}
.y8d{bottom:350.640060px;}
.y17d{bottom:351.540047px;}
.y137{bottom:356.580093px;}
.y66{bottom:356.760064px;}
.yca{bottom:357.120072px;}
.ya4{bottom:359.100083px;}
.yf0{bottom:360.720085px;}
.y15a{bottom:364.860077px;}
.y112{bottom:371.340088px;}
.y8c{bottom:372.420043px;}
.y17c{bottom:373.320099px;}
.y43{bottom:378.000068px;}
.y65{bottom:378.540047px;}
.yc9{bottom:378.900055px;}
.ya3{bottom:380.880066px;}
.y1c{bottom:384.480079px;}
.y159{bottom:386.640060px;}
.y111{bottom:393.120072px;}
.y8b{bottom:394.200096px;}
.y17b{bottom:395.280052px;}
.y136{bottom:399.780052px;}
.y42{bottom:399.960091px;}
.y64{bottom:400.320099px;}
.yc8{bottom:400.860077px;}
.yef{bottom:402.120072px;}
.ya2{bottom:402.660049px;}
.y158{bottom:408.420043px;}
.y110{bottom:415.080093px;}
.y8a{bottom:415.980079px;}
.y17a{bottom:417.060036px;}
.y41{bottom:421.740074px;}
.y63{bottom:422.280052px;}
.yc7{bottom:422.640060px;}
.yee{bottom:423.900055px;}
.ya1{bottom:424.620072px;}
.y1b{bottom:426.060036px;}
.y135{bottom:429.300041px;}
.y157{bottom:430.380066px;}
.y10f{bottom:436.860077px;}
.y89{bottom:437.760064px;}
.yc6{bottom:444.420043px;}
.yed{bottom:445.680039px;}
.ya0{bottom:446.400055px;}
.y1a{bottom:448.200096px;}
.y156{bottom:452.160049px;}
.y134{bottom:458.100083px;}
.y10e{bottom:458.640060px;}
.y88{bottom:459.720085px;}
.y179{bottom:463.320099px;}
.y62{bottom:464.940033px;}
.y40{bottom:465.480079px;}
.yc5{bottom:466.200096px;}
.yec{bottom:467.460091px;}
.y9f{bottom:468.180039px;}
.y19{bottom:470.340088px;}
.y155{bottom:473.940033px;}
.y10d{bottom:480.420043px;}
.y87{bottom:481.500068px;}
.y61{bottom:486.900055px;}
.yc4{bottom:487.980079px;}
.yeb{bottom:489.240074px;}
.y9e{bottom:489.960091px;}
.y18{bottom:492.480079px;}
.y178{bottom:495.000068px;}
.y154{bottom:495.720085px;}
.y133{bottom:497.880066px;}
.y10c{bottom:502.200096px;}
.y86{bottom:503.640060px;}
.y60{bottom:508.680039px;}
.yc3{bottom:509.940033px;}
.y3f{bottom:510.120072px;}
.yea{bottom:511.200096px;}
.y9d{bottom:511.920043px;}
.y17{bottom:514.620072px;}
.y177{bottom:516.960091px;}
.y153{bottom:517.500068px;}
.y132{bottom:519.840088px;}
.y10b{bottom:524.160049px;}
.y85{bottom:529.380066px;}
.y5f{bottom:530.460091px;}
.yc2{bottom:531.720085px;}
.ye9{bottom:532.980079px;}
.y9c{bottom:533.700096px;}
.y16{bottom:536.760064px;}
.y176{bottom:538.740074px;}
.y152{bottom:539.460091px;}
.y131{bottom:541.620072px;}
.y3e{bottom:542.340088px;}
.y10a{bottom:545.940033px;}
.y84{bottom:553.500068px;}
.ye8{bottom:554.760064px;}
.y9b{bottom:555.480079px;}
.y15{bottom:558.900055px;}
.y175{bottom:560.520058px;}
.y151{bottom:561.240074px;}
.y130{bottom:563.400055px;}
.y5e{bottom:573.120072px;}
.yc1{bottom:575.280052px;}
.ye7{bottom:576.540047px;}
.y9a{bottom:577.260064px;}
.y14{bottom:581.040047px;}
.y150{bottom:583.020058px;}
.y12f{bottom:585.180039px;}
.y174{bottom:586.800041px;}
.y109{bottom:589.680039px;}
.y3d{bottom:591.120072px;}
.y5d{bottom:595.080093px;}
.yc0{bottom:597.240074px;}
.y83{bottom:597.600083px;}
.ye6{bottom:598.500068px;}
.y99{bottom:599.040047px;}
.y12e{bottom:606.960091px;}
.y173{bottom:613.260064px;}
.y108{bottom:613.800041px;}
.y5c{bottom:617.040047px;}
.ybf{bottom:619.020058px;}
.y82{bottom:619.560036px;}
.ye5{bottom:620.280052px;}
.y98{bottom:621.000068px;}
.y13{bottom:621.720085px;}
.y3c{bottom:622.800041px;}
.y14f{bottom:625.680039px;}
.y12d{bottom:628.920043px;}
.y5b{bottom:638.820099px;}
.y172{bottom:639.540047px;}
.ybe{bottom:640.800041px;}
.y81{bottom:641.340088px;}
.ye4{bottom:642.060036px;}
.y97{bottom:642.780052px;}
.y3b{bottom:644.760064px;}
.y14e{bottom:647.640060px;}
.y12c{bottom:650.700096px;}
.y107{bottom:655.020058px;}
.ybd{bottom:662.580093px;}
.y80{bottom:663.120072px;}
.ye3{bottom:663.840088px;}
.y171{bottom:665.820099px;}
.y3a{bottom:666.540047px;}
.y96{bottom:668.520058px;}
.y14d{bottom:669.420043px;}
.y12b{bottom:672.480079px;}
.y12{bottom:676.260064px;}
.y106{bottom:676.800041px;}
.y5a{bottom:681.480079px;}
.y7f{bottom:685.080093px;}
.ye2{bottom:685.620072px;}
.y39{bottom:688.320065px;}
.y170{bottom:692.100083px;}
.y95{bottom:692.640060px;}
.y12a{bottom:694.260064px;}
.y105{bottom:698.760064px;}
.y7e{bottom:706.860077px;}
.ye1{bottom:707.580059px;}
.y38{bottom:710.100083px;}
.y14c{bottom:712.080059px;}
.ybc{bottom:712.440067px;}
.y129{bottom:716.400055px;}
.y16f{bottom:718.380066px;}
.y104{bottom:720.540081px;}
.y59{bottom:724.320065px;}
.y7d{bottom:728.640060px;}
.ye0{bottom:729.360077px;}
.y37{bottom:731.880066px;}
.y94{bottom:733.860077px;}
.y128{bottom:742.140060px;}
.y103{bottom:742.320065px;}
.y16e{bottom:744.840054px;}
.y58{bottom:746.280052px;}
.y7c{bottom:750.420078px;}
.ydf{bottom:751.140060px;}
.y93{bottom:752.400055px;}
.y11{bottom:752.760064px;}
.y36{bottom:753.840054px;}
.y14b{bottom:754.920078px;}
.ybb{bottom:757.080059px;}
.y102{bottom:764.100083px;}
.y127{bottom:766.260064px;}
.y57{bottom:768.060070px;}
.y16d{bottom:771.120072px;}
.y7b{bottom:772.380066px;}
.yde{bottom:772.920078px;}
.y35{bottom:775.620072px;}
.y14a{bottom:776.880066px;}
.yba{bottom:789.300076px;}
.y10{bottom:791.640060px;}
.y7a{bottom:794.160049px;}
.ydd{bottom:794.880066px;}
.y16c{bottom:797.400055px;}
.y149{bottom:798.840054px;}
.y101{bottom:803.880066px;}
.y126{bottom:810.360077px;}
.y56{bottom:810.720051px;}
.y79{bottom:815.940067px;}
.ydc{bottom:816.660049px;}
.y34{bottom:817.380066px;}
.yb9{bottom:818.100083px;}
.y148{bottom:820.620072px;}
.y100{bottom:825.840054px;}
.y125{bottom:832.320065px;}
.y55{bottom:832.680073px;}
.y78{bottom:837.720051px;}
.ydb{bottom:838.440067px;}
.yf{bottom:839.880066px;}
.y147{bottom:842.400055px;}
.y16b{bottom:843.840054px;}
.yff{bottom:847.620072px;}
.y33{bottom:849.240074px;}
.y124{bottom:854.280052px;}
.y54{bottom:854.460056px;}
.yda{bottom:860.220051px;}
.yb8{bottom:861.840054px;}
.yfe{bottom:869.400055px;}
.y32{bottom:871.020058px;}
.y16a{bottom:875.520058px;}
.y123{bottom:876.060070px;}
.y53{bottom:876.420078px;}
.y77{bottom:881.460056px;}
.yd9{bottom:882.000068px;}
.yb7{bottom:883.620072px;}
.y146{bottom:885.060070px;}
.ye{bottom:888.300076px;}
.y31{bottom:892.800076px;}
.y169{bottom:897.300076px;}
.y122{bottom:897.840054px;}
.y52{bottom:898.200061px;}
.yd8{bottom:903.960056px;}
.yb6{bottom:905.400055px;}
.yfd{bottom:909.180073px;}
.y30{bottom:914.580059px;}
.y168{bottom:919.080059px;}
.y76{bottom:925.560070px;}
.yd7{bottom:925.740074px;}
.yb5{bottom:927.180073px;}
.y145{bottom:927.900055px;}
.yfc{bottom:930.960056px;}
.y2f{bottom:936.360077px;}
.y167{bottom:940.860077px;}
.y121{bottom:941.580059px;}
.y51{bottom:941.940067px;}
.y75{bottom:947.520058px;}
.yb4{bottom:948.960056px;}
.y144{bottom:949.860077px;}
.yfb{bottom:952.920078px;}
.y2e{bottom:958.320065px;}
.y166{bottom:962.820065px;}
.y74{bottom:969.300076px;}
.yb3{bottom:970.920078px;}
.y143{bottom:971.640060px;}
.yd{bottom:972.540081px;}
.yfa{bottom:974.700061px;}
.y2d{bottom:980.100065px;}
.y120{bottom:983.160067px;}
.y165{bottom:984.600065px;}
.y50{bottom:986.400072px;}
.y73{bottom:991.260064px;}
.yb2{bottom:992.700061px;}
.y142{bottom:993.420061px;}
.yd6{bottom:995.040064px;}
.yf9{bottom:996.480063px;}
.y2c{bottom:1001.880066px;}
.y164{bottom:1006.380066px;}
.y11f{bottom:1008.360060px;}
.y72{bottom:1013.040064px;}
.yb1{bottom:1014.480063px;}
.y141{bottom:1015.380066px;}
.yf8{bottom:1018.260064px;}
.y2b{bottom:1023.660067px;}
.y163{bottom:1028.160067px;}
.y71{bottom:1034.820065px;}
.y4f{bottom:1036.080059px;}
.yb0{bottom:1036.260064px;}
.y11e{bottom:1037.160067px;}
.y2a{bottom:1045.620072px;}
.y162{bottom:1050.120072px;}
.y70{bottom:1056.600065px;}
.yc{bottom:1056.780069px;}
.y4e{bottom:1058.220068px;}
.y140{bottom:1058.940067px;}
.y11d{bottom:1079.820065px;}
.y4d{bottom:1080.000068px;}
.y29{bottom:1091.880066px;}
.y6f{bottom:1100.340070px;}
.y13f{bottom:1101.600065px;}
.y4c{bottom:1101.780069px;}
.y26{bottom:1120.680064px;}
.y3{bottom:1136.160067px;}
.y25{bottom:1136.340063px;}
.y2{bottom:1227.060066px;}
.y1{bottom:1243.080066px;}
.h8{height:11.339950px;}
.h6{height:13.500000px;}
.h3{height:36.432407px;}
.hd{height:39.131127px;}
.h5{height:45.203132px;}
.h4{height:48.140459px;}
.h2{height:62.070186px;}
.h10{height:62.749433px;}
.h7{height:67.467378px;}
.hb{height:68.205687px;}
.hc{height:78.936815px;}
.h11{height:79.800636px;}
.hf{height:90.713566px;}
.he{height:102.308524px;}
.ha{height:124.816403px;}
.h9{height:136.411374px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:8.819962px;}
.w2{width:10.799973px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.xa{left:106.560001px;}
.xf{left:111.959997px;}
.x10{left:138.959997px;}
.x9{left:376.379998px;}
.xc{left:430.199993px;}
.xb{left:456.300007px;}
.x3{left:490.319996px;}
.x8{left:510.300007px;}
.x11{left:745.200027px;}
.xe{left:754.379998px;}
.x4{left:761.940033px;}
.xd{left:765.360008px;}
.x6{left:783.899987px;}
.x7{left:786.419975px;}
.x5{left:815.940033px;}
.x2{left:879.480011px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.048992pt;}
.ls3{letter-spacing:0.232185pt;}
.ls0{letter-spacing:0.281833pt;}
.ls4{letter-spacing:56.965202pt;}
.ws2{word-spacing:-53.122000pt;}
.ws0{word-spacing:-16.310425pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-4.515084pt;}
._13{margin-left:-3.229562pt;}
._5{margin-left:-2.328039pt;}
._1{margin-left:-1.324050pt;}
._0{width:1.080541pt;}
._6{width:2.803700pt;}
._16{width:3.799864pt;}
._11{width:4.733480pt;}
._2{width:5.790256pt;}
._7{width:6.991941pt;}
._a{width:8.128531pt;}
._1c{width:9.130912pt;}
._14{width:10.254508pt;}
._15{width:11.590057pt;}
._f{width:13.227379pt;}
._e{width:14.699325pt;}
._b{width:17.369848pt;}
._8{width:18.911141pt;}
._9{width:19.956879pt;}
._1b{width:20.911529pt;}
._19{width:22.493077pt;}
._18{width:23.754150pt;}
._17{width:24.977248pt;}
._4{width:26.692750pt;}
._3{width:27.625276pt;}
._21{width:28.720466pt;}
._10{width:29.745502pt;}
._22{width:36.733187pt;}
._c{width:45.868470pt;}
._d{width:47.466345pt;}
._1a{width:48.436339pt;}
._1d{width:50.044866pt;}
._1e{width:51.100607pt;}
._1f{width:57.391712pt;}
._20{width:58.629964pt;}
.fs1{font-size:34.561320pt;}
.fs8{font-size:37.121440pt;}
.fs2{font-size:42.881600pt;}
.fsb{font-size:53.122000pt;}
.fs3{font-size:56.322000pt;}
.fs0{font-size:58.882400pt;}
.fs4{font-size:64.002404pt;}
.fs7{font-size:74.882796pt;}
.fsa{font-size:85.123200pt;}
.fs9{font-size:96.003600pt;}
.fs6{font-size:117.124396pt;}
.fs5{font-size:128.004808pt;}
.yb{bottom:-3.200073pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.400024pt;}
.y28{bottom:28.000000pt;}
.ya{bottom:28.480103pt;}
.y4{bottom:28.800049pt;}
.y27{bottom:37.600098pt;}
.y9{bottom:44.960083pt;}
.y7{bottom:60.640015pt;}
.y6{bottom:63.040039pt;}
.y5{bottom:77.280030pt;}
.yd5{bottom:104.160035pt;}
.y13e{bottom:104.800049pt;}
.yaf{bottom:105.920044pt;}
.y161{bottom:112.960083pt;}
.y4b{bottom:116.320069pt;}
.y24{bottom:118.400086pt;}
.y6e{bottom:122.400086pt;}
.yd4{bottom:123.520081pt;}
.y13d{bottom:124.320069pt;}
.yae{bottom:125.280030pt;}
.y23{bottom:135.040039pt;}
.y4a{bottom:135.680054pt;}
.y11c{bottom:136.160035pt;}
.y6d{bottom:141.920044pt;}
.yd3{bottom:142.880066pt;}
.y13c{bottom:143.680054pt;}
.yad{bottom:144.640076pt;}
.y160{bottom:151.040039pt;}
.y49{bottom:155.040039pt;}
.y11b{bottom:155.520081pt;}
.y6c{bottom:161.280030pt;}
.yd2{bottom:162.240052pt;}
.y13b{bottom:163.040039pt;}
.yac{bottom:164.000061pt;}
.yf7{bottom:165.280030pt;}
.y48{bottom:174.560059pt;}
.y11a{bottom:174.880066pt;}
.y6b{bottom:180.800049pt;}
.yd1{bottom:181.760071pt;}
.yab{bottom:183.520081pt;}
.yf6{bottom:184.800049pt;}
.y22{bottom:184.960083pt;}
.y15f{bottom:189.120057pt;}
.y47{bottom:193.920044pt;}
.y119{bottom:194.400086pt;}
.y6a{bottom:200.160035pt;}
.y13a{bottom:200.960083pt;}
.yd0{bottom:201.120057pt;}
.yaa{bottom:202.880066pt;}
.yf5{bottom:204.320069pt;}
.y21{bottom:204.640076pt;}
.y15e{bottom:208.640076pt;}
.y46{bottom:213.280030pt;}
.y118{bottom:213.760071pt;}
.y92{bottom:214.720032pt;}
.ycf{bottom:220.480042pt;}
.ya9{bottom:222.240052pt;}
.yf4{bottom:223.680054pt;}
.y20{bottom:224.320069pt;}
.y15d{bottom:228.000061pt;}
.y117{bottom:233.120057pt;}
.y91{bottom:234.080079pt;}
.y181{bottom:234.880066pt;}
.y69{bottom:239.040039pt;}
.yce{bottom:239.840088pt;}
.ya8{bottom:241.600037pt;}
.yf3{bottom:243.040039pt;}
.y1f{bottom:244.000061pt;}
.y15c{bottom:247.520081pt;}
.y45{bottom:252.160035pt;}
.y116{bottom:252.480042pt;}
.y90{bottom:253.440064pt;}
.y180{bottom:254.240052pt;}
.y139{bottom:258.560059pt;}
.ycd{bottom:259.200074pt;}
.ya7{bottom:260.960083pt;}
.yf2{bottom:262.400086pt;}
.y1e{bottom:266.880066pt;}
.y115{bottom:271.840088pt;}
.y8f{bottom:272.800049pt;}
.y17f{bottom:273.760071pt;}
.y138{bottom:278.080079pt;}
.y68{bottom:278.240052pt;}
.ycc{bottom:278.720032pt;}
.ya6{bottom:280.480042pt;}
.yf1{bottom:281.920044pt;}
.y114{bottom:291.360047pt;}
.y44{bottom:291.840088pt;}
.y8e{bottom:292.160035pt;}
.y17e{bottom:293.120057pt;}
.y67{bottom:297.760071pt;}
.ycb{bottom:298.080079pt;}
.ya5{bottom:299.840088pt;}
.y1d{bottom:304.320069pt;}
.y15b{bottom:304.800049pt;}
.y113{bottom:310.720032pt;}
.y8d{bottom:311.680054pt;}
.y17d{bottom:312.480042pt;}
.y137{bottom:316.960083pt;}
.y66{bottom:317.120057pt;}
.yca{bottom:317.440064pt;}
.ya4{bottom:319.200074pt;}
.yf0{bottom:320.640076pt;}
.y15a{bottom:324.320069pt;}
.y112{bottom:330.080079pt;}
.y8c{bottom:331.040039pt;}
.y17c{bottom:331.840088pt;}
.y43{bottom:336.000061pt;}
.y65{bottom:336.480042pt;}
.yc9{bottom:336.800049pt;}
.ya3{bottom:338.560059pt;}
.y1c{bottom:341.760071pt;}
.y159{bottom:343.680054pt;}
.y111{bottom:349.440064pt;}
.y8b{bottom:350.400086pt;}
.y17b{bottom:351.360047pt;}
.y136{bottom:355.360047pt;}
.y42{bottom:355.520081pt;}
.y64{bottom:355.840088pt;}
.yc8{bottom:356.320069pt;}
.yef{bottom:357.440064pt;}
.ya2{bottom:357.920044pt;}
.y158{bottom:363.040039pt;}
.y110{bottom:368.960083pt;}
.y8a{bottom:369.760071pt;}
.y17a{bottom:370.720032pt;}
.y41{bottom:374.880066pt;}
.y63{bottom:375.360047pt;}
.yc7{bottom:375.680054pt;}
.yee{bottom:376.800049pt;}
.ya1{bottom:377.440064pt;}
.y1b{bottom:378.720032pt;}
.y135{bottom:381.600037pt;}
.y157{bottom:382.560059pt;}
.y10f{bottom:388.320069pt;}
.y89{bottom:389.120057pt;}
.yc6{bottom:395.040039pt;}
.yed{bottom:396.160035pt;}
.ya0{bottom:396.800049pt;}
.y1a{bottom:398.400086pt;}
.y156{bottom:401.920044pt;}
.y134{bottom:407.200074pt;}
.y10e{bottom:407.680054pt;}
.y88{bottom:408.640076pt;}
.y179{bottom:411.840088pt;}
.y62{bottom:413.280030pt;}
.y40{bottom:413.760071pt;}
.yc5{bottom:414.400086pt;}
.yec{bottom:415.520081pt;}
.y9f{bottom:416.160035pt;}
.y19{bottom:418.080079pt;}
.y155{bottom:421.280030pt;}
.y10d{bottom:427.040039pt;}
.y87{bottom:428.000061pt;}
.y61{bottom:432.800049pt;}
.yc4{bottom:433.760071pt;}
.yeb{bottom:434.880066pt;}
.y9e{bottom:435.520081pt;}
.y18{bottom:437.760071pt;}
.y178{bottom:440.000061pt;}
.y154{bottom:440.640076pt;}
.y133{bottom:442.560059pt;}
.y10c{bottom:446.400086pt;}
.y86{bottom:447.680054pt;}
.y60{bottom:452.160035pt;}
.yc3{bottom:453.280030pt;}
.y3f{bottom:453.440064pt;}
.yea{bottom:454.400086pt;}
.y9d{bottom:455.040039pt;}
.y17{bottom:457.440064pt;}
.y177{bottom:459.520081pt;}
.y153{bottom:460.000061pt;}
.y132{bottom:462.080079pt;}
.y10b{bottom:465.920044pt;}
.y85{bottom:470.560059pt;}
.y5f{bottom:471.520081pt;}
.yc2{bottom:472.640076pt;}
.ye9{bottom:473.760071pt;}
.y9c{bottom:474.400086pt;}
.y16{bottom:477.120057pt;}
.y176{bottom:478.880066pt;}
.y152{bottom:479.520081pt;}
.y131{bottom:481.440064pt;}
.y3e{bottom:482.080079pt;}
.y10a{bottom:485.280030pt;}
.y84{bottom:492.000061pt;}
.ye8{bottom:493.120057pt;}
.y9b{bottom:493.760071pt;}
.y15{bottom:496.800049pt;}
.y175{bottom:498.240052pt;}
.y151{bottom:498.880066pt;}
.y130{bottom:500.800049pt;}
.y5e{bottom:509.440064pt;}
.yc1{bottom:511.360047pt;}
.ye7{bottom:512.480042pt;}
.y9a{bottom:513.120057pt;}
.y14{bottom:516.480042pt;}
.y150{bottom:518.240052pt;}
.y12f{bottom:520.160035pt;}
.y174{bottom:521.600037pt;}
.y109{bottom:524.160035pt;}
.y3d{bottom:525.440064pt;}
.y5d{bottom:528.960083pt;}
.yc0{bottom:530.880066pt;}
.y83{bottom:531.200074pt;}
.ye6{bottom:532.000061pt;}
.y99{bottom:532.480042pt;}
.y12e{bottom:539.520081pt;}
.y173{bottom:545.120057pt;}
.y108{bottom:545.600037pt;}
.y5c{bottom:548.480042pt;}
.ybf{bottom:550.240052pt;}
.y82{bottom:550.720032pt;}
.ye5{bottom:551.360047pt;}
.y98{bottom:552.000061pt;}
.y13{bottom:552.640076pt;}
.y3c{bottom:553.600037pt;}
.y14f{bottom:556.160035pt;}
.y12d{bottom:559.040039pt;}
.y5b{bottom:567.840088pt;}
.y172{bottom:568.480042pt;}
.ybe{bottom:569.600037pt;}
.y81{bottom:570.080079pt;}
.ye4{bottom:570.720032pt;}
.y97{bottom:571.360047pt;}
.y3b{bottom:573.120057pt;}
.y14e{bottom:575.680054pt;}
.y12c{bottom:578.400086pt;}
.y107{bottom:582.240052pt;}
.ybd{bottom:588.960083pt;}
.y80{bottom:589.440064pt;}
.ye3{bottom:590.080079pt;}
.y171{bottom:591.840088pt;}
.y3a{bottom:592.480042pt;}
.y96{bottom:594.240052pt;}
.y14d{bottom:595.040039pt;}
.y12b{bottom:597.760071pt;}
.y12{bottom:601.120057pt;}
.y106{bottom:601.600037pt;}
.y5a{bottom:605.760071pt;}
.y7f{bottom:608.960083pt;}
.ye2{bottom:609.440064pt;}
.y39{bottom:611.840058pt;}
.y170{bottom:615.200074pt;}
.y95{bottom:615.680054pt;}
.y12a{bottom:617.120057pt;}
.y105{bottom:621.120057pt;}
.y7e{bottom:628.320069pt;}
.ye1{bottom:628.960053pt;}
.y38{bottom:631.200074pt;}
.y14c{bottom:632.960053pt;}
.ybc{bottom:633.280060pt;}
.y129{bottom:636.800049pt;}
.y16f{bottom:638.560059pt;}
.y104{bottom:640.480072pt;}
.y59{bottom:643.840058pt;}
.y7d{bottom:647.680054pt;}
.ye0{bottom:648.320069pt;}
.y37{bottom:650.560059pt;}
.y94{bottom:652.320069pt;}
.y128{bottom:659.680054pt;}
.y103{bottom:659.840058pt;}
.y16e{bottom:662.080048pt;}
.y58{bottom:663.360047pt;}
.y7c{bottom:667.040070pt;}
.ydf{bottom:667.680054pt;}
.y93{bottom:668.800049pt;}
.y11{bottom:669.120057pt;}
.y36{bottom:670.080048pt;}
.y14b{bottom:671.040070pt;}
.ybb{bottom:672.960053pt;}
.y102{bottom:679.200074pt;}
.y127{bottom:681.120057pt;}
.y57{bottom:682.720063pt;}
.y16d{bottom:685.440064pt;}
.y7b{bottom:686.560059pt;}
.yde{bottom:687.040070pt;}
.y35{bottom:689.440064pt;}
.y14a{bottom:690.560059pt;}
.yba{bottom:701.600068pt;}
.y10{bottom:703.680054pt;}
.y7a{bottom:705.920044pt;}
.ydd{bottom:706.560059pt;}
.y16c{bottom:708.800049pt;}
.y149{bottom:710.080048pt;}
.y101{bottom:714.560059pt;}
.y126{bottom:720.320069pt;}
.y56{bottom:720.640046pt;}
.y79{bottom:725.280060pt;}
.ydc{bottom:725.920044pt;}
.y34{bottom:726.560059pt;}
.yb9{bottom:727.200074pt;}
.y148{bottom:729.440064pt;}
.y100{bottom:734.080048pt;}
.y125{bottom:739.840058pt;}
.y55{bottom:740.160065pt;}
.y78{bottom:744.640046pt;}
.ydb{bottom:745.280060pt;}
.yf{bottom:746.560059pt;}
.y147{bottom:748.800049pt;}
.y16b{bottom:750.080048pt;}
.yff{bottom:753.440064pt;}
.y33{bottom:754.880066pt;}
.y124{bottom:759.360047pt;}
.y54{bottom:759.520050pt;}
.yda{bottom:764.640046pt;}
.yb8{bottom:766.080048pt;}
.yfe{bottom:772.800049pt;}
.y32{bottom:774.240052pt;}
.y16a{bottom:778.240052pt;}
.y123{bottom:778.720063pt;}
.y53{bottom:779.040070pt;}
.y77{bottom:783.520050pt;}
.yd9{bottom:784.000061pt;}
.yb7{bottom:785.440064pt;}
.y146{bottom:786.720063pt;}
.ye{bottom:789.600068pt;}
.y31{bottom:793.600068pt;}
.y169{bottom:797.600068pt;}
.y122{bottom:798.080048pt;}
.y52{bottom:798.400055pt;}
.yd8{bottom:803.520050pt;}
.yb6{bottom:804.800049pt;}
.yfd{bottom:808.160065pt;}
.y30{bottom:812.960053pt;}
.y168{bottom:816.960053pt;}
.y76{bottom:822.720063pt;}
.yd7{bottom:822.880066pt;}
.yb5{bottom:824.160065pt;}
.y145{bottom:824.800049pt;}
.yfc{bottom:827.520050pt;}
.y2f{bottom:832.320069pt;}
.y167{bottom:836.320069pt;}
.y121{bottom:836.960053pt;}
.y51{bottom:837.280060pt;}
.y75{bottom:842.240052pt;}
.yb4{bottom:843.520050pt;}
.y144{bottom:844.320069pt;}
.yfb{bottom:847.040070pt;}
.y2e{bottom:851.840058pt;}
.y166{bottom:855.840058pt;}
.y74{bottom:861.600068pt;}
.yb3{bottom:863.040070pt;}
.y143{bottom:863.680054pt;}
.yd{bottom:864.480072pt;}
.yfa{bottom:866.400055pt;}
.y2d{bottom:871.200058pt;}
.y120{bottom:873.920060pt;}
.y165{bottom:875.200058pt;}
.y50{bottom:876.800064pt;}
.y73{bottom:881.120057pt;}
.yb2{bottom:882.400055pt;}
.y142{bottom:883.040055pt;}
.yd6{bottom:884.480057pt;}
.yf9{bottom:885.760056pt;}
.y2c{bottom:890.560059pt;}
.y164{bottom:894.560059pt;}
.y11f{bottom:896.320054pt;}
.y72{bottom:900.480057pt;}
.yb1{bottom:901.760056pt;}
.y141{bottom:902.560059pt;}
.yf8{bottom:905.120057pt;}
.y2b{bottom:909.920060pt;}
.y163{bottom:913.920060pt;}
.y71{bottom:919.840058pt;}
.y4f{bottom:920.960053pt;}
.yb0{bottom:921.120057pt;}
.y11e{bottom:921.920060pt;}
.y2a{bottom:929.440064pt;}
.y162{bottom:933.440064pt;}
.y70{bottom:939.200058pt;}
.yc{bottom:939.360062pt;}
.y4e{bottom:940.640061pt;}
.y140{bottom:941.280060pt;}
.y11d{bottom:959.840058pt;}
.y4d{bottom:960.000061pt;}
.y29{bottom:970.560059pt;}
.y6f{bottom:978.080063pt;}
.y13f{bottom:979.200058pt;}
.y4c{bottom:979.360062pt;}
.y26{bottom:996.160057pt;}
.y3{bottom:1009.920060pt;}
.y25{bottom:1010.080056pt;}
.y2{bottom:1090.720059pt;}
.y1{bottom:1104.960059pt;}
.h8{height:10.079956pt;}
.h6{height:12.000000pt;}
.h3{height:32.384362pt;}
.hd{height:34.783224pt;}
.h5{height:40.180562pt;}
.h4{height:42.791520pt;}
.h2{height:55.173499pt;}
.h10{height:55.777273pt;}
.h7{height:59.971003pt;}
.hb{height:60.627277pt;}
.hc{height:70.166057pt;}
.h11{height:70.933899pt;}
.hf{height:80.634281pt;}
.he{height:90.940910pt;}
.ha{height:110.947914pt;}
.h9{height:121.254554pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:7.839966pt;}
.w2{width:9.599976pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.xa{left:94.720001pt;}
.xf{left:99.519997pt;}
.x10{left:123.519997pt;}
.x9{left:334.559998pt;}
.xc{left:382.399994pt;}
.xb{left:405.600006pt;}
.x3{left:435.839996pt;}
.x8{left:453.600006pt;}
.x11{left:662.400024pt;}
.xe{left:670.559998pt;}
.x4{left:677.280029pt;}
.xd{left:680.320007pt;}
.x6{left:696.799988pt;}
.x7{left:699.039978pt;}
.x5{left:725.280029pt;}
.x2{left:781.760010pt;}
}




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