
    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_fb70034a40846896a7ad23e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_0e120284c2583de410ecd746.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.201172;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_ddf547bb54c12de6884c5fe1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136230;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_8a28f020b47e512b5a35eae6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_2806702d71fc94d3087d55b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_274df317f2cd11e8ee5f8be4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f396d20f620fc424f5cdcb69.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1010a6142c74c6c4188c84c8.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-156.240004px;}
.v4{vertical-align:-27.359942px;}
.v3{vertical-align:-20.880068px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360081px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.004916px;}
.lsc{letter-spacing:0.011532px;}
.ls5{letter-spacing:0.012094px;}
.ls1a{letter-spacing:0.061034px;}
.ls18{letter-spacing:0.070759px;}
.lsf{letter-spacing:0.071440px;}
.ls20{letter-spacing:0.149082px;}
.ls11{letter-spacing:0.173700px;}
.ls10{letter-spacing:0.173704px;}
.ls1b{letter-spacing:0.173768px;}
.ls14{letter-spacing:0.215233px;}
.lse{letter-spacing:0.359109px;}
.lsa{letter-spacing:0.359114px;}
.ls1e{letter-spacing:0.502721px;}
.ls1d{letter-spacing:0.502788px;}
.ls16{letter-spacing:0.502856px;}
.ls13{letter-spacing:0.720027px;}
.ls1c{letter-spacing:1.589114px;}
.ls15{letter-spacing:8.069195px;}
.ls1f{letter-spacing:11.735287px;}
.ls21{letter-spacing:16.055251px;}
.ls6{letter-spacing:34.055251px;}
.ls0{letter-spacing:34.847326px;}
.ls19{letter-spacing:54.935251px;}
.ls12{letter-spacing:93.815314px;}
.ls17{letter-spacing:98.135273px;}
.ls7{letter-spacing:101.735287px;}
.ls4{letter-spacing:106.055251px;}
.lsd{letter-spacing:121.895269px;}
.ls8{letter-spacing:126.215300px;}
.ls3{letter-spacing:129.815314px;}
.ls9{letter-spacing:149.975291px;}
.ls2{letter-spacing:154.295255px;}
.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:-18.072116px;}
.ws3{word-spacing:-18.012770px;}
.ws5{word-spacing:-18.012208px;}
.ws1{word-spacing:-18.000676px;}
.ws2{word-spacing:-14.940563px;}
.ws7{word-spacing:-12.060450px;}
.ws4{word-spacing:-9.720371px;}
.ws0{word-spacing:0.000000px;}
._12{margin-left:-12.381981px;}
._23{margin-left:-5.637960px;}
._2{margin-left:-4.589821px;}
._3{margin-left:-2.883662px;}
._1{margin-left:-1.025811px;}
._0{width:1.557503px;}
._7{width:2.585938px;}
._6{width:3.727692px;}
._a{width:4.839088px;}
._b{width:6.039289px;}
._e{width:7.403959px;}
._11{width:8.424660px;}
._d{width:9.454293px;}
._4{width:10.838938px;}
._5{width:11.883909px;}
._c{width:13.227442px;}
._13{width:14.449723px;}
._f{width:15.867033px;}
._10{width:16.933570px;}
._9{width:19.238839px;}
._8{width:20.353702px;}
._15{width:21.472056px;}
._14{width:22.565535px;}
._19{width:23.995863px;}
._18{width:25.393329px;}
._16{width:26.847165px;}
._17{width:28.193458px;}
._1a{width:29.581580px;}
._1b{width:30.972695px;}
._1c{width:32.556710px;}
._22{width:33.592918px;}
._1d{width:35.654302px;}
._21{width:37.156208px;}
._1f{width:39.160198px;}
._1e{width:40.442457px;}
._20{width:41.822602px;}
.fc5{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(191,143,0);}
.fc1{color:rgb(34,42,53);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.881485px;}
.fs8{font-size:48.241800px;}
.fs7{font-size:59.762250px;}
.fs2{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fs3{font-size:84.243145px;}
.fs6{font-size:95.763600px;}
.fs5{font-size:108.004050px;}
.fs1{font-size:131.764946px;}
.fs4{font-size:144.005409px;}
.y0{bottom:0.000000px;}
.y15f{bottom:4.320030px;}
.y7b{bottom:57.780121px;}
.y7a{bottom:77.760132px;}
.yc4{bottom:110.160049px;}
.y9a{bottom:115.380066px;}
.y48{bottom:117.900055px;}
.y62{bottom:121.680039px;}
.ycc{bottom:127.440033px;}
.y99{bottom:128.340088px;}
.y149{bottom:129.600083px;}
.y16c{bottom:131.760064px;}
.yc3{bottom:132.660049px;}
.y12e{bottom:137.880066px;}
.y14f{bottom:138.780052px;}
.yb3{bottom:140.940033px;}
.y17f{bottom:143.100083px;}
.yc2{bottom:144.540047px;}
.y115{bottom:145.620072px;}
.y21{bottom:147.240074px;}
.ydb{bottom:149.760064px;}
.y193{bottom:150.120072px;}
.y47{bottom:152.280052px;}
.y98{bottom:160.740074px;}
.yc1{bottom:161.820099px;}
.y16b{bottom:162.900055px;}
.y61{bottom:164.700096px;}
.ycb{bottom:167.040047px;}
.y79{bottom:167.760064px;}
.y12d{bottom:168.840088px;}
.yc0{bottom:179.100083px;}
.yfd{bottom:180.000068px;}
.y14e{bottom:181.800041px;}
.y20{bottom:182.700096px;}
.yb2{bottom:183.960091px;}
.yca{bottom:184.320099px;}
.y17e{bottom:185.760064px;}
.y46{bottom:186.660049px;}
.y97{bottom:191.700096px;}
.y192{bottom:193.140060px;}
.y162{bottom:193.860077px;}
.ybf{bottom:196.380066px;}
.y13c{bottom:197.280052px;}
.y12c{bottom:199.980079px;}
.yd7{bottom:201.600083px;}
.y148{bottom:203.760064px;}
.y60{bottom:207.900055px;}
.y45{bottom:208.800041px;}
.y78{bottom:210.780052px;}
.y1f{bottom:212.040047px;}
.ybe{bottom:213.660049px;}
.y104{bottom:214.560036px;}
.y134{bottom:218.880066px;}
.y96{bottom:222.840088px;}
.y14d{bottom:225.000068px;}
.yb1{bottom:226.980079px;}
.y17d{bottom:229.140060px;}
.y13b{bottom:229.860077px;}
.yc9{bottom:230.940033px;}
.y44{bottom:231.120072px;}
.y133{bottom:231.840088px;}
.y106{bottom:234.900055px;}
.ybd{bottom:236.160049px;}
.y1e{bottom:241.200096px;}
.y114{bottom:241.920043px;}
.y12b{bottom:243.000068px;}
.yd6{bottom:248.040047px;}
.yec{bottom:248.940033px;}
.y5f{bottom:250.920043px;}
.ybc{bottom:253.260064px;}
.y43{bottom:253.440033px;}
.y77{bottom:253.800041px;}
.y161{bottom:255.960091px;}
.y103{bottom:261.000068px;}
.ybb{bottom:265.320099px;}
.y105{bottom:265.860077px;}
.y14c{bottom:268.020058px;}
.yb0{bottom:270.000068px;}
.y1d{bottom:270.540047px;}
.y17c{bottom:272.160049px;}
.y113{bottom:272.880066px;}
.y12a{bottom:273.600083px;}
.y42{bottom:275.940033px;}
.y191{bottom:279.180039px;}
.yc8{bottom:282.600083px;}
.y146{bottom:283.500068px;}
.yfc{bottom:284.940033px;}
.y160{bottom:287.100083px;}
.yba{bottom:287.820099px;}
.y102{bottom:291.960091px;}
.y5e{bottom:293.940033px;}
.y76{bottom:297.000068px;}
.y41{bottom:298.260064px;}
.y16a{bottom:298.980079px;}
.y1c{bottom:299.880066px;}
.yb9{bottom:300.780052px;}
.y112{bottom:304.020058px;}
.y129{bottom:304.740074px;}
.yd5{bottom:305.100083px;}
.y13e{bottom:308.880066px;}
.y14b{bottom:311.040047px;}
.yaf{bottom:313.020058px;}
.y17b{bottom:315.180039px;}
.yeb{bottom:315.900055px;}
.yf4{bottom:317.160049px;}
.yd4{bottom:318.060036px;}
.y40{bottom:320.580093px;}
.y144{bottom:320.940033px;}
.y190{bottom:322.200096px;}
.yc7{bottom:322.380066px;}
.y101{bottom:323.100083px;}
.y15e{bottom:325.800041px;}
.y1b{bottom:327.420043px;}
.y95{bottom:327.960091px;}
.y15d{bottom:330.120072px;}
.yda{bottom:334.440033px;}
.y111{bottom:334.980079px;}
.yc6{bottom:335.340088px;}
.y128{bottom:336.060036px;}
.y5d{bottom:336.960091px;}
.y117{bottom:339.660049px;}
.y75{bottom:340.020058px;}
.y3f{bottom:342.900055px;}
.yea{bottom:347.040047px;}
.y1a{bottom:349.380066px;}
.yd9{bottom:351.540047px;}
.y143{bottom:351.900055px;}
.y116{bottom:352.440033px;}
.y14a{bottom:354.060036px;}
.yae{bottom:356.220085px;}
.y10e{bottom:356.760064px;}
.y17a{bottom:358.200096px;}
.y94{bottom:359.100083px;}
.y15c{bottom:361.080093px;}
.y3e{bottom:365.220085px;}
.y100{bottom:365.760064px;}
.y132{bottom:366.120072px;}
.y127{bottom:367.200096px;}
.yf3{bottom:368.820099px;}
.yd8{bottom:369.720085px;}
.yd3{bottom:370.980079px;}
.y19{bottom:371.340088px;}
.y169{bottom:373.140060px;}
.y10d{bottom:374.040047px;}
.ye9{bottom:378.000068px;}
.y5c{bottom:379.980079px;}
.y74{bottom:383.040047px;}
.y10c{bottom:386.100083px;}
.y13d{bottom:387.000068px;}
.y3d{bottom:387.540047px;}
.y93{bottom:390.060036px;}
.yf2{bottom:391.320099px;}
.y15b{bottom:392.220085px;}
.y18{bottom:393.300041px;}
.y13a{bottom:397.080093px;}
.y126{bottom:398.160049px;}
.yad{bottom:399.240074px;}
.y179{bottom:401.220085px;}
.yb8{bottom:402.120072px;}
.yf1{bottom:403.380066px;}
.y168{bottom:404.100083px;}
.y119{bottom:404.280052px;}
.y18f{bottom:408.420043px;}
.y135{bottom:408.600083px;}
.ye8{bottom:409.140060px;}
.y3c{bottom:409.860077px;}
.y142{bottom:414.000068px;}
.y17{bottom:415.260064px;}
.yf0{bottom:420.660049px;}
.y92{bottom:421.020058px;}
.y5b{bottom:423.000068px;}
.y10b{bottom:425.880066px;}
.y73{bottom:426.060036px;}
.y139{bottom:428.220085px;}
.y125{bottom:429.300041px;}
.y3b{bottom:432.180039px;}
.yb7{bottom:433.080093px;}
.y15a{bottom:435.240074px;}
.yef{bottom:437.940033px;}
.y10a{bottom:438.840088px;}
.y16{bottom:439.560036px;}
.ye7{bottom:440.100083px;}
.yac{bottom:442.260064px;}
.y178{bottom:444.420043px;}
.y141{bottom:445.140060px;}
.y167{bottom:447.120072px;}
.y18e{bottom:451.440033px;}
.y91{bottom:452.160049px;}
.y3a{bottom:454.500068px;}
.y138{bottom:459.180039px;}
.yee{bottom:460.260064px;}
.yb6{bottom:464.220085px;}
.y5a{bottom:466.020058px;}
.y159{bottom:466.200096px;}
.y72{bottom:469.080093px;}
.ye6{bottom:471.240074px;}
.y15{bottom:472.500068px;}
.yed{bottom:473.220085px;}
.y140{bottom:476.100083px;}
.y39{bottom:476.820099px;}
.y166{bottom:478.260064px;}
.yff{bottom:483.120072px;}
.yab{bottom:485.280052px;}
.y177{bottom:487.440033px;}
.y124{bottom:491.400055px;}
.y18d{bottom:494.460091px;}
.y90{bottom:495.180039px;}
.y158{bottom:497.340088px;}
.y38{bottom:499.320099px;}
.y147{bottom:501.840088px;}
.ye5{bottom:502.200096px;}
.y14{bottom:505.440033px;}
.y109{bottom:507.240074px;}
.y59{bottom:509.220085px;}
.y71{bottom:512.460091px;}
.yfe{bottom:514.260064px;}
.y37{bottom:521.640060px;}
.y123{bottom:522.360077px;}
.y8f{bottom:526.320099px;}
.yaa{bottom:528.300041px;}
.y176{bottom:530.460091px;}
.y137{bottom:532.980079px;}
.yfb{bottom:533.340088px;}
.y13{bottom:536.220085px;}
.y18c{bottom:537.480079px;}
.y108{bottom:538.200096px;}
.y157{bottom:540.360077px;}
.y36{bottom:545.040047px;}
.ye4{bottom:545.220085px;}
.y58{bottom:552.240074px;}
.y165{bottom:552.420043px;}
.y122{bottom:554.760064px;}
.y70{bottom:555.480079px;}
.y8e{bottom:557.280052px;}
.y12{bottom:558.180039px;}
.y136{bottom:563.940033px;}
.y110{bottom:564.300041px;}
.y107{bottom:569.340088px;}
.y35{bottom:569.880066px;}
.ya9{bottom:571.320099px;}
.y175{bottom:573.480079px;}
.ye3{bottom:576.360077px;}
.y11{bottom:580.140060px;}
.y18b{bottom:580.500068px;}
.y164{bottom:583.380066px;}
.y121{bottom:585.720085px;}
.y8d{bottom:588.420043px;}
.y34{bottom:592.380066px;}
.y57{bottom:595.260064px;}
.y131{bottom:595.440033px;}
.y6f{bottom:598.680039px;}
.yd2{bottom:600.300041px;}
.y10{bottom:602.100083px;}
.y10f{bottom:606.960091px;}
.ye2{bottom:607.320099px;}
.ya8{bottom:614.520058px;}
.y33{bottom:614.700096px;}
.y174{bottom:616.500068px;}
.y120{bottom:616.860077px;}
.y8c{bottom:619.380066px;}
.y18a{bottom:623.520058px;}
.yf{bottom:624.060036px;}
.y130{bottom:626.400055px;}
.yd1{bottom:631.440033px;}
.y32{bottom:637.020058px;}
.y56{bottom:638.280052px;}
.ye1{bottom:638.460091px;}
.y6e{bottom:641.700096px;}
.y156{bottom:645.480079px;}
.ye{bottom:646.020058px;}
.y11f{bottom:647.820099px;}
.y8b{bottom:650.520058px;}
.ya7{bottom:657.540047px;}
.y31{bottom:659.340088px;}
.y173{bottom:659.520058px;}
.yd0{bottom:662.400055px;}
.y189{bottom:666.540047px;}
.ye0{bottom:669.420043px;}
.yd{bottom:672.840088px;}
.y155{bottom:676.620072px;}
.y11e{bottom:678.960091px;}
.y55{bottom:681.300041px;}
.y8a{bottom:681.480079px;}
.y6d{bottom:684.720085px;}
.y163{bottom:688.500068px;}
.yc5{bottom:693.540081px;}
.ya6{bottom:700.560070px;}
.y30{bottom:700.920078px;}
.y172{bottom:702.540081px;}
.y188{bottom:709.740074px;}
.y11d{bottom:711.180073px;}
.y89{bottom:712.620072px;}
.y154{bottom:719.640060px;}
.y54{bottom:724.320065px;}
.yb5{bottom:724.500068px;}
.y6c{bottom:727.740074px;}
.ydf{bottom:731.520058px;}
.y2f{bottom:742.320065px;}
.y88{bottom:743.580059px;}
.y171{bottom:745.740074px;}
.y153{bottom:750.600083px;}
.y187{bottom:752.760064px;}
.yb4{bottom:755.640060px;}
.yc{bottom:755.820065px;}
.y6b{bottom:758.880066px;}
.yde{bottom:762.660049px;}
.y53{bottom:767.340054px;}
.y11c{bottom:773.280052px;}
.y87{bottom:774.540081px;}
.yb{bottom:777.780052px;}
.y2e{bottom:783.720051px;}
.ya5{bottom:786.600083px;}
.y170{bottom:788.760064px;}
.y6a{bottom:789.840054px;}
.yfa{bottom:793.620072px;}
.y186{bottom:795.780052px;}
.y13f{bottom:798.660049px;}
.ya{bottom:799.740074px;}
.y11b{bottom:804.420078px;}
.ydd{bottom:805.320065px;}
.y86{bottom:805.680073px;}
.y52{bottom:810.540081px;}
.ya4{bottom:817.740074px;}
.y9{bottom:822.600083px;}
.yf9{bottom:824.760064px;}
.y2d{bottom:825.120072px;}
.ycf{bottom:829.620072px;}
.y16f{bottom:831.780052px;}
.y69{bottom:832.860077px;}
.y11a{bottom:835.380066px;}
.ydc{bottom:836.280052px;}
.y85{bottom:836.640060px;}
.y185{bottom:838.800076px;}
.y8{bottom:847.440067px;}
.ya3{bottom:848.700061px;}
.y51{bottom:853.560070px;}
.yf8{bottom:855.720051px;}
.yce{bottom:860.760064px;}
.y2c{bottom:866.520058px;}
.y118{bottom:867.420078px;}
.y145{bottom:867.780052px;}
.y7{bottom:873.540081px;}
.y16e{bottom:874.800076px;}
.y68{bottom:875.880066px;}
.y84{bottom:879.840054px;}
.y194{bottom:881.460056px;}
.y184{bottom:881.820065px;}
.yf7{bottom:886.860077px;}
.y2b{bottom:888.660049px;}
.ycd{bottom:891.720051px;}
.y50{bottom:896.580059px;}
.y12f{bottom:898.740074px;}
.y83{bottom:910.800076px;}
.y2a{bottom:910.980079px;}
.y6{bottom:913.680073px;}
.y16d{bottom:917.460056px;}
.yf6{bottom:917.820065px;}
.y67{bottom:918.900055px;}
.ya2{bottom:922.860077px;}
.y183{bottom:924.840054px;}
.y152{bottom:929.880066px;}
.y29{bottom:933.300076px;}
.y4f{bottom:939.600083px;}
.y82{bottom:941.940067px;}
.y66{bottom:950.040081px;}
.ya1{bottom:953.820065px;}
.y5{bottom:958.860077px;}
.yf5{bottom:960.480079px;}
.y151{bottom:960.840054px;}
.y182{bottom:968.040081px;}
.y4e{bottom:970.020058px;}
.y81{bottom:972.900055px;}
.y28{bottom:974.520058px;}
.ya0{bottom:984.960074px;}
.y4{bottom:988.200061px;}
.y150{bottom:991.980063px;}
.y65{bottom:993.060070px;}
.y4d{bottom:999.900072px;}
.y27{bottom:1003.680073px;}
.y80{bottom:1004.040064px;}
.y181{bottom:1011.060070px;}
.y9f{bottom:1015.920061px;}
.y3{bottom:1017.180073px;}
.y4c{bottom:1029.600065px;}
.y7f{bottom:1035.000068px;}
.y64{bottom:1036.080059px;}
.y26{bottom:1038.060070px;}
.y2{bottom:1046.160067px;}
.y9e{bottom:1047.060070px;}
.y180{bottom:1054.080059px;}
.y4b{bottom:1064.160067px;}
.y7e{bottom:1066.140060px;}
.y25{bottom:1067.220068px;}
.y9d{bottom:1078.020058px;}
.y63{bottom:1079.100065px;}
.y4a{bottom:1093.320065px;}
.y7d{bottom:1097.100065px;}
.y24{bottom:1101.600065px;}
.y1{bottom:1102.500068px;}
.y9c{bottom:1109.160067px;}
.y23{bottom:1124.460065px;}
.y49{bottom:1127.520066px;}
.y7c{bottom:1139.760064px;}
.y9b{bottom:1140.120063px;}
.y22{bottom:1196.280065px;}
.h1e{height:20.520057px;}
.h12{height:34.856644px;}
.h16{height:38.561194px;}
.h18{height:38.561198px;}
.h1d{height:38.561468px;}
.ha{height:43.683637px;}
.h10{height:52.630883px;}
.h15{height:53.575923px;}
.h1b{height:59.441261px;}
.h2{height:63.951621px;}
.hc{height:64.549300px;}
.hd{height:65.886904px;}
.h1a{height:70.607822px;}
.h19{height:70.607957px;}
.h14{height:70.607961px;}
.h1c{height:70.608024px;}
.h13{height:70.608029px;}
.h17{height:70.608096px;}
.h11{height:70.608101px;}
.h7{height:71.615971px;}
.h3{height:73.725425px;}
.hb{height:74.823380px;}
.he{height:75.522664px;}
.hf{height:85.850571px;}
.h5{height:86.258729px;}
.h9{height:95.249245px;}
.h8{height:107.423950px;}
.h4{height:134.917525px;}
.h6{height:147.450851px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:22.500000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:148.860008px;}
.x4{left:152.099997px;}
.x10{left:159.479994px;}
.x11{left:175.860008px;}
.xa{left:186.479994px;}
.x9{left:202.860008px;}
.x8{left:229.860008px;}
.xb{left:244.439999px;}
.x7{left:254.340002px;}
.xc{left:271.439999px;}
.xd{left:287.819996px;}
.x5{left:328.680005px;}
.x6{left:393.480011px;}
.xf{left:458.639992px;}
.xe{left:463.139992px;}
.x3{left:467.639992px;}
.x1{left:786.600014px;}
.x12{left:870.480011px;}
@media print{
.v1{vertical-align:-138.880004pt;}
.v4{vertical-align:-24.319948pt;}
.v3{vertical-align:-18.560060pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320072pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.004370pt;}
.lsc{letter-spacing:0.010250pt;}
.ls5{letter-spacing:0.010750pt;}
.ls1a{letter-spacing:0.054252pt;}
.ls18{letter-spacing:0.062897pt;}
.lsf{letter-spacing:0.063502pt;}
.ls20{letter-spacing:0.132518pt;}
.ls11{letter-spacing:0.154400pt;}
.ls10{letter-spacing:0.154404pt;}
.ls1b{letter-spacing:0.154460pt;}
.ls14{letter-spacing:0.191318pt;}
.lse{letter-spacing:0.319208pt;}
.lsa{letter-spacing:0.319212pt;}
.ls1e{letter-spacing:0.446863pt;}
.ls1d{letter-spacing:0.446923pt;}
.ls16{letter-spacing:0.446983pt;}
.ls13{letter-spacing:0.640024pt;}
.ls1c{letter-spacing:1.412546pt;}
.ls15{letter-spacing:7.172618pt;}
.ls1f{letter-spacing:10.431366pt;}
.ls21{letter-spacing:14.271334pt;}
.ls6{letter-spacing:30.271334pt;}
.ls0{letter-spacing:30.975401pt;}
.ls19{letter-spacing:48.831334pt;}
.ls12{letter-spacing:83.391390pt;}
.ls17{letter-spacing:87.231354pt;}
.ls7{letter-spacing:90.431366pt;}
.ls4{letter-spacing:94.271334pt;}
.lsd{letter-spacing:108.351350pt;}
.ls8{letter-spacing:112.191378pt;}
.ls3{letter-spacing:115.391390pt;}
.ls9{letter-spacing:133.311370pt;}
.ls2{letter-spacing:137.151338pt;}
.ws6{word-spacing:-16.064103pt;}
.ws3{word-spacing:-16.011351pt;}
.ws5{word-spacing:-16.010851pt;}
.ws1{word-spacing:-16.000601pt;}
.ws2{word-spacing:-13.280500pt;}
.ws7{word-spacing:-10.720400pt;}
.ws4{word-spacing:-8.640330pt;}
.ws0{word-spacing:0.000000pt;}
._12{margin-left:-11.006205pt;}
._23{margin-left:-5.011520pt;}
._2{margin-left:-4.079841pt;}
._3{margin-left:-2.563255pt;}
._1{margin-left:-0.911832pt;}
._0{width:1.384447pt;}
._7{width:2.298611pt;}
._6{width:3.313504pt;}
._a{width:4.301411pt;}
._b{width:5.368257pt;}
._e{width:6.581297pt;}
._11{width:7.488587pt;}
._d{width:8.403816pt;}
._4{width:9.634612pt;}
._5{width:10.563475pt;}
._c{width:11.757726pt;}
._13{width:12.844198pt;}
._f{width:14.104030pt;}
._10{width:15.052062pt;}
._9{width:17.101190pt;}
._8{width:18.092180pt;}
._15{width:19.086272pt;}
._14{width:20.058253pt;}
._19{width:21.329656pt;}
._18{width:22.571848pt;}
._16{width:23.864146pt;}
._17{width:25.060851pt;}
._1a{width:26.294738pt;}
._1b{width:27.531284pt;}
._1c{width:28.939297pt;}
._22{width:29.860372pt;}
._1d{width:31.692713pt;}
._21{width:33.027740pt;}
._1f{width:34.809065pt;}
._1e{width:35.948850pt;}
._20{width:37.175646pt;}
.fs9{font-size:34.561320pt;}
.fs8{font-size:42.881600pt;}
.fs7{font-size:53.122000pt;}
.fs2{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs3{font-size:74.882796pt;}
.fs6{font-size:85.123200pt;}
.fs5{font-size:96.003600pt;}
.fs1{font-size:117.124396pt;}
.fs4{font-size:128.004808pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:3.840027pt;}
.y7b{bottom:51.360108pt;}
.y7a{bottom:69.120118pt;}
.yc4{bottom:97.920044pt;}
.y9a{bottom:102.560059pt;}
.y48{bottom:104.800049pt;}
.y62{bottom:108.160035pt;}
.ycc{bottom:113.280030pt;}
.y99{bottom:114.080079pt;}
.y149{bottom:115.200074pt;}
.y16c{bottom:117.120057pt;}
.yc3{bottom:117.920044pt;}
.y12e{bottom:122.560059pt;}
.y14f{bottom:123.360047pt;}
.yb3{bottom:125.280030pt;}
.y17f{bottom:127.200074pt;}
.yc2{bottom:128.480042pt;}
.y115{bottom:129.440064pt;}
.y21{bottom:130.880066pt;}
.ydb{bottom:133.120057pt;}
.y193{bottom:133.440064pt;}
.y47{bottom:135.360047pt;}
.y98{bottom:142.880066pt;}
.yc1{bottom:143.840088pt;}
.y16b{bottom:144.800049pt;}
.y61{bottom:146.400086pt;}
.ycb{bottom:148.480042pt;}
.y79{bottom:149.120057pt;}
.y12d{bottom:150.080079pt;}
.yc0{bottom:159.200074pt;}
.yfd{bottom:160.000061pt;}
.y14e{bottom:161.600037pt;}
.y20{bottom:162.400086pt;}
.yb2{bottom:163.520081pt;}
.yca{bottom:163.840088pt;}
.y17e{bottom:165.120057pt;}
.y46{bottom:165.920044pt;}
.y97{bottom:170.400086pt;}
.y192{bottom:171.680054pt;}
.y162{bottom:172.320069pt;}
.ybf{bottom:174.560059pt;}
.y13c{bottom:175.360047pt;}
.y12c{bottom:177.760071pt;}
.yd7{bottom:179.200074pt;}
.y148{bottom:181.120057pt;}
.y60{bottom:184.800049pt;}
.y45{bottom:185.600037pt;}
.y78{bottom:187.360047pt;}
.y1f{bottom:188.480042pt;}
.ybe{bottom:189.920044pt;}
.y104{bottom:190.720032pt;}
.y134{bottom:194.560059pt;}
.y96{bottom:198.080079pt;}
.y14d{bottom:200.000061pt;}
.yb1{bottom:201.760071pt;}
.y17d{bottom:203.680054pt;}
.y13b{bottom:204.320069pt;}
.yc9{bottom:205.280030pt;}
.y44{bottom:205.440064pt;}
.y133{bottom:206.080079pt;}
.y106{bottom:208.800049pt;}
.ybd{bottom:209.920044pt;}
.y1e{bottom:214.400086pt;}
.y114{bottom:215.040039pt;}
.y12b{bottom:216.000061pt;}
.yd6{bottom:220.480042pt;}
.yec{bottom:221.280030pt;}
.y5f{bottom:223.040039pt;}
.ybc{bottom:225.120057pt;}
.y43{bottom:225.280030pt;}
.y77{bottom:225.600037pt;}
.y161{bottom:227.520081pt;}
.y103{bottom:232.000061pt;}
.ybb{bottom:235.840088pt;}
.y105{bottom:236.320069pt;}
.y14c{bottom:238.240052pt;}
.yb0{bottom:240.000061pt;}
.y1d{bottom:240.480042pt;}
.y17c{bottom:241.920044pt;}
.y113{bottom:242.560059pt;}
.y12a{bottom:243.200074pt;}
.y42{bottom:245.280030pt;}
.y191{bottom:248.160035pt;}
.yc8{bottom:251.200074pt;}
.y146{bottom:252.000061pt;}
.yfc{bottom:253.280030pt;}
.y160{bottom:255.200074pt;}
.yba{bottom:255.840088pt;}
.y102{bottom:259.520081pt;}
.y5e{bottom:261.280030pt;}
.y76{bottom:264.000061pt;}
.y41{bottom:265.120057pt;}
.y16a{bottom:265.760071pt;}
.y1c{bottom:266.560059pt;}
.yb9{bottom:267.360047pt;}
.y112{bottom:270.240052pt;}
.y129{bottom:270.880066pt;}
.yd5{bottom:271.200074pt;}
.y13e{bottom:274.560059pt;}
.y14b{bottom:276.480042pt;}
.yaf{bottom:278.240052pt;}
.y17b{bottom:280.160035pt;}
.yeb{bottom:280.800049pt;}
.yf4{bottom:281.920044pt;}
.yd4{bottom:282.720032pt;}
.y40{bottom:284.960083pt;}
.y144{bottom:285.280030pt;}
.y190{bottom:286.400086pt;}
.yc7{bottom:286.560059pt;}
.y101{bottom:287.200074pt;}
.y15e{bottom:289.600037pt;}
.y1b{bottom:291.040039pt;}
.y95{bottom:291.520081pt;}
.y15d{bottom:293.440064pt;}
.yda{bottom:297.280030pt;}
.y111{bottom:297.760071pt;}
.yc6{bottom:298.080079pt;}
.y128{bottom:298.720032pt;}
.y5d{bottom:299.520081pt;}
.y117{bottom:301.920044pt;}
.y75{bottom:302.240052pt;}
.y3f{bottom:304.800049pt;}
.yea{bottom:308.480042pt;}
.y1a{bottom:310.560059pt;}
.yd9{bottom:312.480042pt;}
.y143{bottom:312.800049pt;}
.y116{bottom:313.280030pt;}
.y14a{bottom:314.720032pt;}
.yae{bottom:316.640076pt;}
.y10e{bottom:317.120057pt;}
.y17a{bottom:318.400086pt;}
.y94{bottom:319.200074pt;}
.y15c{bottom:320.960083pt;}
.y3e{bottom:324.640076pt;}
.y100{bottom:325.120057pt;}
.y132{bottom:325.440064pt;}
.y127{bottom:326.400086pt;}
.yf3{bottom:327.840088pt;}
.yd8{bottom:328.640076pt;}
.yd3{bottom:329.760071pt;}
.y19{bottom:330.080079pt;}
.y169{bottom:331.680054pt;}
.y10d{bottom:332.480042pt;}
.ye9{bottom:336.000061pt;}
.y5c{bottom:337.760071pt;}
.y74{bottom:340.480042pt;}
.y10c{bottom:343.200074pt;}
.y13d{bottom:344.000061pt;}
.y3d{bottom:344.480042pt;}
.y93{bottom:346.720032pt;}
.yf2{bottom:347.840088pt;}
.y15b{bottom:348.640076pt;}
.y18{bottom:349.600037pt;}
.y13a{bottom:352.960083pt;}
.y126{bottom:353.920044pt;}
.yad{bottom:354.880066pt;}
.y179{bottom:356.640076pt;}
.yb8{bottom:357.440064pt;}
.yf1{bottom:358.560059pt;}
.y168{bottom:359.200074pt;}
.y119{bottom:359.360047pt;}
.y18f{bottom:363.040039pt;}
.y135{bottom:363.200074pt;}
.ye8{bottom:363.680054pt;}
.y3c{bottom:364.320069pt;}
.y142{bottom:368.000061pt;}
.y17{bottom:369.120057pt;}
.yf0{bottom:373.920044pt;}
.y92{bottom:374.240052pt;}
.y5b{bottom:376.000061pt;}
.y10b{bottom:378.560059pt;}
.y73{bottom:378.720032pt;}
.y139{bottom:380.640076pt;}
.y125{bottom:381.600037pt;}
.y3b{bottom:384.160035pt;}
.yb7{bottom:384.960083pt;}
.y15a{bottom:386.880066pt;}
.yef{bottom:389.280030pt;}
.y10a{bottom:390.080079pt;}
.y16{bottom:390.720032pt;}
.ye7{bottom:391.200074pt;}
.yac{bottom:393.120057pt;}
.y178{bottom:395.040039pt;}
.y141{bottom:395.680054pt;}
.y167{bottom:397.440064pt;}
.y18e{bottom:401.280030pt;}
.y91{bottom:401.920044pt;}
.y3a{bottom:404.000061pt;}
.y138{bottom:408.160035pt;}
.yee{bottom:409.120057pt;}
.yb6{bottom:412.640076pt;}
.y5a{bottom:414.240052pt;}
.y159{bottom:414.400086pt;}
.y72{bottom:416.960083pt;}
.ye6{bottom:418.880066pt;}
.y15{bottom:420.000061pt;}
.yed{bottom:420.640076pt;}
.y140{bottom:423.200074pt;}
.y39{bottom:423.840088pt;}
.y166{bottom:425.120057pt;}
.yff{bottom:429.440064pt;}
.yab{bottom:431.360047pt;}
.y177{bottom:433.280030pt;}
.y124{bottom:436.800049pt;}
.y18d{bottom:439.520081pt;}
.y90{bottom:440.160035pt;}
.y158{bottom:442.080079pt;}
.y38{bottom:443.840088pt;}
.y147{bottom:446.080079pt;}
.ye5{bottom:446.400086pt;}
.y14{bottom:449.280030pt;}
.y109{bottom:450.880066pt;}
.y59{bottom:452.640076pt;}
.y71{bottom:455.520081pt;}
.yfe{bottom:457.120057pt;}
.y37{bottom:463.680054pt;}
.y123{bottom:464.320069pt;}
.y8f{bottom:467.840088pt;}
.yaa{bottom:469.600037pt;}
.y176{bottom:471.520081pt;}
.y137{bottom:473.760071pt;}
.yfb{bottom:474.080079pt;}
.y13{bottom:476.640076pt;}
.y18c{bottom:477.760071pt;}
.y108{bottom:478.400086pt;}
.y157{bottom:480.320069pt;}
.y36{bottom:484.480042pt;}
.ye4{bottom:484.640076pt;}
.y58{bottom:490.880066pt;}
.y165{bottom:491.040039pt;}
.y122{bottom:493.120057pt;}
.y70{bottom:493.760071pt;}
.y8e{bottom:495.360047pt;}
.y12{bottom:496.160035pt;}
.y136{bottom:501.280030pt;}
.y110{bottom:501.600037pt;}
.y107{bottom:506.080079pt;}
.y35{bottom:506.560059pt;}
.ya9{bottom:507.840088pt;}
.y175{bottom:509.760071pt;}
.ye3{bottom:512.320069pt;}
.y11{bottom:515.680054pt;}
.y18b{bottom:516.000061pt;}
.y164{bottom:518.560059pt;}
.y121{bottom:520.640076pt;}
.y8d{bottom:523.040039pt;}
.y34{bottom:526.560059pt;}
.y57{bottom:529.120057pt;}
.y131{bottom:529.280030pt;}
.y6f{bottom:532.160035pt;}
.yd2{bottom:533.600037pt;}
.y10{bottom:535.200074pt;}
.y10f{bottom:539.520081pt;}
.ye2{bottom:539.840088pt;}
.ya8{bottom:546.240052pt;}
.y33{bottom:546.400086pt;}
.y174{bottom:548.000061pt;}
.y120{bottom:548.320069pt;}
.y8c{bottom:550.560059pt;}
.y18a{bottom:554.240052pt;}
.yf{bottom:554.720032pt;}
.y130{bottom:556.800049pt;}
.yd1{bottom:561.280030pt;}
.y32{bottom:566.240052pt;}
.y56{bottom:567.360047pt;}
.ye1{bottom:567.520081pt;}
.y6e{bottom:570.400086pt;}
.y156{bottom:573.760071pt;}
.ye{bottom:574.240052pt;}
.y11f{bottom:575.840088pt;}
.y8b{bottom:578.240052pt;}
.ya7{bottom:584.480042pt;}
.y31{bottom:586.080079pt;}
.y173{bottom:586.240052pt;}
.yd0{bottom:588.800049pt;}
.y189{bottom:592.480042pt;}
.ye0{bottom:595.040039pt;}
.yd{bottom:598.080079pt;}
.y155{bottom:601.440064pt;}
.y11e{bottom:603.520081pt;}
.y55{bottom:605.600037pt;}
.y8a{bottom:605.760071pt;}
.y6d{bottom:608.640076pt;}
.y163{bottom:612.000061pt;}
.yc5{bottom:616.480072pt;}
.ya6{bottom:622.720063pt;}
.y30{bottom:623.040070pt;}
.y172{bottom:624.480072pt;}
.y188{bottom:630.880066pt;}
.y11d{bottom:632.160065pt;}
.y89{bottom:633.440064pt;}
.y154{bottom:639.680054pt;}
.y54{bottom:643.840058pt;}
.yb5{bottom:644.000061pt;}
.y6c{bottom:646.880066pt;}
.ydf{bottom:650.240052pt;}
.y2f{bottom:659.840058pt;}
.y88{bottom:660.960053pt;}
.y171{bottom:662.880066pt;}
.y153{bottom:667.200074pt;}
.y187{bottom:669.120057pt;}
.yb4{bottom:671.680054pt;}
.yc{bottom:671.840058pt;}
.y6b{bottom:674.560059pt;}
.yde{bottom:677.920044pt;}
.y53{bottom:682.080048pt;}
.y11c{bottom:687.360047pt;}
.y87{bottom:688.480072pt;}
.yb{bottom:691.360047pt;}
.y2e{bottom:696.640046pt;}
.ya5{bottom:699.200074pt;}
.y170{bottom:701.120057pt;}
.y6a{bottom:702.080048pt;}
.yfa{bottom:705.440064pt;}
.y186{bottom:707.360047pt;}
.y13f{bottom:709.920044pt;}
.ya{bottom:710.880066pt;}
.y11b{bottom:715.040070pt;}
.ydd{bottom:715.840058pt;}
.y86{bottom:716.160065pt;}
.y52{bottom:720.480072pt;}
.ya4{bottom:726.880066pt;}
.y9{bottom:731.200074pt;}
.yf9{bottom:733.120057pt;}
.y2d{bottom:733.440064pt;}
.ycf{bottom:737.440064pt;}
.y16f{bottom:739.360047pt;}
.y69{bottom:740.320069pt;}
.y11a{bottom:742.560059pt;}
.ydc{bottom:743.360047pt;}
.y85{bottom:743.680054pt;}
.y185{bottom:745.600068pt;}
.y8{bottom:753.280060pt;}
.ya3{bottom:754.400055pt;}
.y51{bottom:758.720063pt;}
.yf8{bottom:760.640046pt;}
.yce{bottom:765.120057pt;}
.y2c{bottom:770.240052pt;}
.y118{bottom:771.040070pt;}
.y145{bottom:771.360047pt;}
.y7{bottom:776.480072pt;}
.y16e{bottom:777.600068pt;}
.y68{bottom:778.560059pt;}
.y84{bottom:782.080048pt;}
.y194{bottom:783.520050pt;}
.y184{bottom:783.840058pt;}
.yf7{bottom:788.320069pt;}
.y2b{bottom:789.920044pt;}
.ycd{bottom:792.640046pt;}
.y50{bottom:796.960053pt;}
.y12f{bottom:798.880066pt;}
.y83{bottom:809.600068pt;}
.y2a{bottom:809.760071pt;}
.y6{bottom:812.160065pt;}
.y16d{bottom:815.520050pt;}
.yf6{bottom:815.840058pt;}
.y67{bottom:816.800049pt;}
.ya2{bottom:820.320069pt;}
.y183{bottom:822.080048pt;}
.y152{bottom:826.560059pt;}
.y29{bottom:829.600068pt;}
.y4f{bottom:835.200074pt;}
.y82{bottom:837.280060pt;}
.y66{bottom:844.480072pt;}
.ya1{bottom:847.840058pt;}
.y5{bottom:852.320069pt;}
.yf5{bottom:853.760071pt;}
.y151{bottom:854.080048pt;}
.y182{bottom:860.480072pt;}
.y4e{bottom:862.240052pt;}
.y81{bottom:864.800049pt;}
.y28{bottom:866.240052pt;}
.ya0{bottom:875.520066pt;}
.y4{bottom:878.400055pt;}
.y150{bottom:881.760056pt;}
.y65{bottom:882.720063pt;}
.y4d{bottom:888.800064pt;}
.y27{bottom:892.160065pt;}
.y80{bottom:892.480057pt;}
.y181{bottom:898.720063pt;}
.y9f{bottom:903.040055pt;}
.y3{bottom:904.160065pt;}
.y4c{bottom:915.200058pt;}
.y7f{bottom:920.000061pt;}
.y64{bottom:920.960053pt;}
.y26{bottom:922.720063pt;}
.y2{bottom:929.920060pt;}
.y9e{bottom:930.720063pt;}
.y180{bottom:936.960053pt;}
.y4b{bottom:945.920060pt;}
.y7e{bottom:947.680054pt;}
.y25{bottom:948.640061pt;}
.y9d{bottom:958.240052pt;}
.y63{bottom:959.200058pt;}
.y4a{bottom:971.840058pt;}
.y7d{bottom:975.200058pt;}
.y24{bottom:979.200058pt;}
.y1{bottom:980.000061pt;}
.y9c{bottom:985.920060pt;}
.y23{bottom:999.520058pt;}
.y49{bottom:1002.240059pt;}
.y7c{bottom:1013.120057pt;}
.y9b{bottom:1013.440056pt;}
.y22{bottom:1063.360058pt;}
.h1e{height:18.240051pt;}
.h12{height:30.983683pt;}
.h16{height:34.276617pt;}
.h18{height:34.276621pt;}
.h1d{height:34.276861pt;}
.ha{height:38.829899pt;}
.h10{height:46.783007pt;}
.h15{height:47.623043pt;}
.h1b{height:52.836677pt;}
.h2{height:56.845885pt;}
.hc{height:57.377155pt;}
.hd{height:58.566137pt;}
.h1a{height:62.762508pt;}
.h19{height:62.762628pt;}
.h14{height:62.762632pt;}
.h1c{height:62.762688pt;}
.h13{height:62.762692pt;}
.h17{height:62.762752pt;}
.h11{height:62.762756pt;}
.h7{height:63.658641pt;}
.h3{height:65.533712pt;}
.hb{height:66.509671pt;}
.he{height:67.131257pt;}
.hf{height:76.311619pt;}
.h5{height:76.674425pt;}
.h9{height:84.665995pt;}
.h8{height:95.487956pt;}
.h4{height:119.926689pt;}
.h6{height:131.067423pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:20.000000pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:132.320007pt;}
.x4{left:135.199997pt;}
.x10{left:141.759995pt;}
.x11{left:156.320007pt;}
.xa{left:165.759995pt;}
.x9{left:180.320007pt;}
.x8{left:204.320007pt;}
.xb{left:217.279999pt;}
.x7{left:226.080002pt;}
.xc{left:241.279999pt;}
.xd{left:255.839996pt;}
.x5{left:292.160004pt;}
.x6{left:349.760010pt;}
.xf{left:407.679993pt;}
.xe{left:411.679993pt;}
.x3{left:415.679993pt;}
.x1{left:699.200012pt;}
.x12{left:773.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; }
  