
    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_f1f620fba9e8db885542aa5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.734131;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_fd80f8d004497a6fedec8f92.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926270;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_99d52627361ecc13fbc171c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.770000;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_23a282a20d3d7db37401bc44.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929199;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_5e3e00e630eee0e503cd0e61.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.094238;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_3c42260300be89fff23087a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_d00805fb4a73ba7eb76a6be6.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5100664dc2b5d30651b4116c.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.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-14.400000px;}
.v4{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v5{vertical-align:11.520000px;}
.v1{vertical-align:14.400000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.046660px;}
.ls3{letter-spacing:0.054002px;}
.lsc{letter-spacing:0.104625px;}
.ls0{letter-spacing:0.160421px;}
.ls8{letter-spacing:0.209093px;}
.lsb{letter-spacing:0.209954px;}
.ls2{letter-spacing:0.353095px;}
.ls5{letter-spacing:0.364321px;}
.lsa{letter-spacing:0.648000px;}
.lsf{letter-spacing:8.115686px;}
.lsd{letter-spacing:9.555254px;}
.ls9{letter-spacing:11.167058px;}
.ls4{letter-spacing:16.925331px;}
.lse{letter-spacing:26.830071px;}
.ls6{letter-spacing:38.518853px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.374400px;}
.ws1{word-spacing:-14.572668px;}
.ws2{word-spacing:-13.305600px;}
.ws6{word-spacing:-12.038268px;}
.ws3{word-spacing:-10.454400px;}
.ws5{word-spacing:-9.187200px;}
.ws7{word-spacing:-7.920000px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-15.204439px;}
._24{margin-left:-4.429667px;}
._12{margin-left:-2.966533px;}
._1{margin-left:-1.910436px;}
._0{width:1.235520px;}
._7{width:2.489316px;}
._5{width:3.689280px;}
._6{width:4.811705px;}
._4{width:6.768109px;}
._3{width:8.285760px;}
._a{width:9.759214px;}
._8{width:10.956516px;}
._9{width:12.000960px;}
._1d{width:13.241345px;}
._f{width:14.952245px;}
._2{width:15.966720px;}
._20{width:17.940371px;}
._d{width:19.432939px;}
._e{width:20.497069px;}
._10{width:21.601997px;}
._21{width:22.685252px;}
._1f{width:23.962391px;}
._1c{width:25.030059px;}
._25{width:26.040329px;}
._1b{width:27.200713px;}
._23{width:29.280181px;}
._1a{width:30.664759px;}
._22{width:31.763394px;}
._16{width:32.806668px;}
._15{width:33.999396px;}
._14{width:35.266151px;}
._13{width:36.329873px;}
._b{width:37.558080px;}
._c{width:38.907936px;}
._26{width:45.106843px;}
._27{width:46.367580px;}
._28{width:47.609687px;}
._18{width:51.166080px;}
._19{width:52.436160px;}
._17{width:53.681316px;}
._29{width:604.771038px;}
._11{width:733.199732px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs7{font-size:54.719400px;}
.fs2{font-size:60.480000px;}
.fs4{font-size:66.239400px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.320000px;}
.y2{bottom:56.160000px;}
.y60{bottom:87.840000px;}
.y11f{bottom:88.560000px;}
.y158{bottom:88.920000px;}
.y168{bottom:96.479850px;}
.y104{bottom:97.560000px;}
.y12a{bottom:102.600000px;}
.y159{bottom:102.960000px;}
.y94{bottom:103.680000px;}
.y135{bottom:105.479850px;}
.y5f{bottom:106.560000px;}
.ybb{bottom:107.280000px;}
.y11e{bottom:108.000000px;}
.y167{bottom:112.320000px;}
.ya8{bottom:115.200000px;}
.y14d{bottom:115.920000px;}
.y103{bottom:117.000000px;}
.yd8{bottom:119.520000px;}
.y129{bottom:120.240000px;}
.y157{bottom:120.600000px;}
.y5e{bottom:120.960000px;}
.y93{bottom:122.400000px;}
.y134{bottom:123.120000px;}
.yba{bottom:124.560000px;}
.ye2{bottom:126.360000px;}
.y11d{bottom:127.439850px;}
.y166{bottom:128.160000px;}
.ya7{bottom:134.640000px;}
.y92{bottom:135.360000px;}
.y102{bottom:136.439850px;}
.y128{bottom:137.880000px;}
.yd7{bottom:138.240000px;}
.yb9{bottom:138.600000px;}
.y133{bottom:140.760000px;}
.y111{bottom:141.120000px;}
.ye1{bottom:144.000000px;}
.y11c{bottom:146.520000px;}
.y14a{bottom:149.040000px;}
.yd6{bottom:151.200000px;}
.y127{bottom:151.920000px;}
.y91{bottom:154.080000px;}
.y132{bottom:154.800000px;}
.y101{bottom:155.880000px;}
.ye0{bottom:158.040000px;}
.y5d{bottom:158.400000px;}
.y165{bottom:159.840000px;}
.y8b{bottom:160.200000px;}
.y110{bottom:160.560000px;}
.y11b{bottom:163.800000px;}
.y156{bottom:166.680000px;}
.yd5{bottom:167.040000px;}
.y14c{bottom:168.120000px;}
.y90{bottom:168.480000px;}
.yf1{bottom:169.920000px;}
.ya6{bottom:173.520000px;}
.y100{bottom:174.960000px;}
.y164{bottom:175.680000px;}
.y5c{bottom:177.840000px;}
.y11a{bottom:178.200000px;}
.y8a{bottom:179.640000px;}
.y10f{bottom:180.000000px;}
.yd4{bottom:182.880000px;}
.y155{bottom:184.320000px;}
.y149{bottom:187.560000px;}
.yf0{bottom:189.360000px;}
.y163{bottom:191.520000px;}
.ya5{bottom:192.600000px;}
.yff{bottom:194.400000px;}
.y5b{bottom:197.280000px;}
.y154{bottom:198.360000px;}
.yd3{bottom:198.720000px;}
.y89{bottom:199.080000px;}
.y10e{bottom:199.440000px;}
.y148{bottom:207.000000px;}
.yef{bottom:208.440000px;}
.ya4{bottom:212.040000px;}
.yfe{bottom:213.840000px;}
.y5a{bottom:216.720000px;}
.yd2{bottom:217.440000px;}
.y8f{bottom:217.800000px;}
.y88{bottom:218.160000px;}
.y10d{bottom:218.520000px;}
.y162{bottom:222.840000px;}
.y147{bottom:226.440000px;}
.yee{bottom:227.880000px;}
.yd1{bottom:230.400000px;}
.ya3{bottom:231.480000px;}
.yfd{bottom:232.920000px;}
.y59{bottom:235.800000px;}
.y87{bottom:237.600000px;}
.y10c{bottom:237.960000px;}
.y161{bottom:238.680000px;}
.y146{bottom:245.880000px;}
.yed{bottom:247.320000px;}
.yd0{bottom:249.120000px;}
.ya2{bottom:250.920000px;}
.yfc{bottom:252.360000px;}
.y160{bottom:254.520000px;}
.y58{bottom:254.880000px;}
.y8e{bottom:255.240000px;}
.y2f{bottom:256.680000px;}
.y86{bottom:257.040000px;}
.y10b{bottom:257.400000px;}
.ycf{bottom:263.520000px;}
.y145{bottom:264.960000px;}
.yec{bottom:266.400000px;}
.y8d{bottom:269.280000px;}
.ya1{bottom:270.000000px;}
.y15f{bottom:270.360000px;}
.yfb{bottom:271.800000px;}
.y57{bottom:272.520000px;}
.y2e{bottom:274.320000px;}
.y85{bottom:276.480000px;}
.y144{bottom:284.400000px;}
.yeb{bottom:285.840000px;}
.y15e{bottom:286.200000px;}
.ya0{bottom:289.440000px;}
.y56{bottom:290.160000px;}
.yfa{bottom:291.240000px;}
.y2d{bottom:291.960000px;}
.yce{bottom:293.400000px;}
.y84{bottom:295.560000px;}
.y10a{bottom:295.920000px;}
.y15d{bottom:302.040000px;}
.y143{bottom:303.840000px;}
.yea{bottom:305.280000px;}
.y55{bottom:307.800000px;}
.y9f{bottom:308.880000px;}
.y2c{bottom:309.600000px;}
.yf9{bottom:310.320000px;}
.ycd{bottom:312.480000px;}
.y83{bottom:315.000000px;}
.y109{bottom:315.360000px;}
.y15c{bottom:318.240000px;}
.y142{bottom:322.920000px;}
.ye9{bottom:324.720000px;}
.y54{bottom:325.440000px;}
.y2b{bottom:327.240000px;}
.y9e{bottom:328.320000px;}
.yf8{bottom:329.760000px;}
.ycc{bottom:331.920000px;}
.y82{bottom:334.440000px;}
.y108{bottom:334.800000px;}
.y15b{bottom:335.880000px;}
.y141{bottom:342.360000px;}
.y53{bottom:342.720000px;}
.ye8{bottom:344.160000px;}
.y2a{bottom:344.520000px;}
.y9d{bottom:347.400000px;}
.yf7{bottom:349.200000px;}
.ycb{bottom:351.360000px;}
.y81{bottom:353.880000px;}
.y52{bottom:360.360000px;}
.y140{bottom:361.800000px;}
.y29{bottom:362.160000px;}
.ye7{bottom:364.680000px;}
.y9c{bottom:366.840000px;}
.yf6{bottom:368.280000px;}
.yca{bottom:370.440000px;}
.y80{bottom:372.960000px;}
.y107{bottom:373.680000px;}
.y51{bottom:378.000000px;}
.y28{bottom:379.800000px;}
.y13f{bottom:381.240000px;}
.ye6{bottom:382.320000px;}
.yb8{bottom:385.560000px;}
.yf5{bottom:385.920000px;}
.y9b{bottom:386.280000px;}
.yc9{bottom:389.880000px;}
.y7f{bottom:392.400000px;}
.y106{bottom:394.200000px;}
.y50{bottom:395.640000px;}
.y27{bottom:397.440000px;}
.ye5{bottom:399.960000px;}
.y13e{bottom:400.320000px;}
.yf4{bottom:403.200000px;}
.yb7{bottom:405.000000px;}
.y9a{bottom:405.360000px;}
.yc8{bottom:409.320000px;}
.y7e{bottom:411.840000px;}
.y4f{bottom:413.280000px;}
.y26{bottom:415.080000px;}
.ye4{bottom:417.600000px;}
.y13d{bottom:419.760000px;}
.yf3{bottom:420.840000px;}
.yb6{bottom:424.440000px;}
.y99{bottom:424.800000px;}
.yc7{bottom:428.760000px;}
.y105{bottom:429.480000px;}
.y4e{bottom:430.920000px;}
.y15a{bottom:431.280000px;}
.ye3{bottom:431.640000px;}
.y25{bottom:432.720000px;}
.yf2{bottom:434.880000px;}
.y13c{bottom:439.200000px;}
.yb5{bottom:443.520000px;}
.y98{bottom:444.240000px;}
.yc6{bottom:447.840000px;}
.y4d{bottom:448.200000px;}
.y24{bottom:450.000000px;}
.y7d{bottom:450.360000px;}
.y13b{bottom:458.280000px;}
.y119{bottom:458.640000px;}
.yb4{bottom:462.960000px;}
.y97{bottom:464.040000px;}
.y4c{bottom:465.840000px;}
.yc5{bottom:467.280000px;}
.y23{bottom:467.640000px;}
.y7c{bottom:469.800000px;}
.y13a{bottom:475.920000px;}
.y118{bottom:479.520000px;}
.yb3{bottom:482.400000px;}
.y4b{bottom:483.480000px;}
.y96{bottom:484.200000px;}
.y22{bottom:485.280000px;}
.yc4{bottom:486.720000px;}
.ydf{bottom:488.880000px;}
.y7b{bottom:489.240000px;}
.y139{bottom:493.200000px;}
.y126{bottom:493.560000px;}
.y95{bottom:498.240000px;}
.y117{bottom:498.960000px;}
.y4a{bottom:501.120000px;}
.yb2{bottom:501.840000px;}
.y131{bottom:502.560000px;}
.y21{bottom:502.920000px;}
.yc3{bottom:506.160000px;}
.y7a{bottom:508.320000px;}
.y138{bottom:510.840000px;}
.y125{bottom:512.640000px;}
.y116{bottom:518.040000px;}
.y49{bottom:518.760000px;}
.y20{bottom:520.560000px;}
.yb1{bottom:520.920000px;}
.y130{bottom:523.440000px;}
.y137{bottom:524.880000px;}
.yc2{bottom:525.240000px;}
.y79{bottom:527.760000px;}
.y124{bottom:531.720000px;}
.y48{bottom:536.400000px;}
.y115{bottom:537.120000px;}
.y1f{bottom:538.200000px;}
.yb0{bottom:540.360000px;}
.y12f{bottom:542.520000px;}
.y153{bottom:543.960000px;}
.yc1{bottom:544.680000px;}
.yde{bottom:546.840000px;}
.y78{bottom:547.200000px;}
.y123{bottom:549.360000px;}
.y47{bottom:554.040000px;}
.y114{bottom:554.760000px;}
.y1e{bottom:555.840000px;}
.yaf{bottom:559.800000px;}
.y12e{bottom:560.160000px;}
.y152{bottom:561.960000px;}
.yc0{bottom:564.120000px;}
.ydd{bottom:566.280000px;}
.y77{bottom:566.640000px;}
.y122{bottom:567.000000px;}
.y46{bottom:571.320000px;}
.y113{bottom:572.400000px;}
.y1d{bottom:573.120000px;}
.y12d{bottom:577.440000px;}
.yae{bottom:579.240000px;}
.y151{bottom:583.200000px;}
.ybf{bottom:583.560000px;}
.y121{bottom:584.640000px;}
.y76{bottom:585.720000px;}
.y112{bottom:586.440000px;}
.y45{bottom:588.960000px;}
.y1c{bottom:590.760000px;}
.y12c{bottom:595.080000px;}
.yad{bottom:598.320000px;}
.y120{bottom:598.680000px;}
.ybe{bottom:602.280000px;}
.y150{bottom:603.720000px;}
.y75{bottom:605.160000px;}
.y44{bottom:606.600000px;}
.y1b{bottom:608.400000px;}
.y12b{bottom:609.480000px;}
.yac{bottom:617.400000px;}
.ybd{bottom:619.920000px;}
.y14f{bottom:621.000000px;}
.ydc{bottom:623.880000px;}
.y43{bottom:624.240000px;}
.y74{bottom:624.600000px;}
.y1a{bottom:626.040000px;}
.ybc{bottom:633.960000px;}
.yab{bottom:635.040000px;}
.y14e{bottom:638.640000px;}
.ydb{bottom:641.520000px;}
.y42{bottom:641.880000px;}
.y19{bottom:643.680000px;}
.y73{bottom:644.040000px;}
.yaa{bottom:652.680000px;}
.yda{bottom:655.560000px;}
.y41{bottom:659.520000px;}
.y18{bottom:661.320000px;}
.y72{bottom:663.120000px;}
.ya9{bottom:666.720000px;}
.y40{bottom:677.160000px;}
.y17{bottom:678.600000px;}
.y71{bottom:682.560000px;}
.y3f{bottom:694.440000px;}
.y16{bottom:696.240000px;}
.y8c{bottom:700.560000px;}
.y70{bottom:702.000000px;}
.y3e{bottom:712.080000px;}
.y15{bottom:713.880000px;}
.y6f{bottom:721.080000px;}
.y3d{bottom:729.720000px;}
.y14{bottom:731.520000px;}
.y6e{bottom:740.520000px;}
.y3c{bottom:747.360000px;}
.y13{bottom:749.160000px;}
.y6d{bottom:759.960000px;}
.y3b{bottom:765.000000px;}
.y12{bottom:766.800000px;}
.y6c{bottom:779.400000px;}
.y3a{bottom:782.640000px;}
.y176{bottom:785.160000px;}
.y11{bottom:787.680000px;}
.y6b{bottom:798.480000px;}
.y39{bottom:799.920000px;}
.y10{bottom:805.320000px;}
.y175{bottom:806.400000px;}
.y6a{bottom:817.920000px;}
.yf{bottom:819.360000px;}
.y174{bottom:820.800000px;}
.y38{bottom:821.160000px;}
.y173{bottom:836.640000px;}
.y69{bottom:837.360000px;}
.y37{bottom:838.800000px;}
.ye{bottom:840.600000px;}
.y172{bottom:852.480000px;}
.y36{bottom:852.840000px;}
.yd{bottom:854.640000px;}
.y68{bottom:856.800000px;}
.y171{bottom:868.320000px;}
.y35{bottom:870.480000px;}
.yc{bottom:872.640000px;}
.y67{bottom:875.880000px;}
.y170{bottom:884.160000px;}
.y34{bottom:891.720000px;}
.yb{bottom:892.800000px;}
.y66{bottom:895.320000px;}
.y16f{bottom:900.000000px;}
.y33{bottom:905.760000px;}
.y136{bottom:913.320000px;}
.y65{bottom:914.760000px;}
.y16e{bottom:915.840000px;}
.ya{bottom:917.280000px;}
.y32{bottom:925.200000px;}
.y16d{bottom:931.680000px;}
.y64{bottom:934.200000px;}
.y9{bottom:940.680000px;}
.y31{bottom:945.720000px;}
.y16c{bottom:947.520000px;}
.y63{bottom:953.280000px;}
.yd9{bottom:956.160000px;}
.y8{bottom:958.320000px;}
.y16b{bottom:963.360000px;}
.y30{bottom:970.200000px;}
.y62{bottom:972.720000px;}
.y7{bottom:975.960000px;}
.y16a{bottom:979.200000px;}
.y14b{bottom:990.720000px;}
.y61{bottom:992.160000px;}
.y6{bottom:993.600000px;}
.y169{bottom:995.040000px;}
.y4{bottom:1018.440000px;}
.y1{bottom:1022.040000px;}
.y3{bottom:1022.760000px;}
.h4{height:20.160000px;}
.h11{height:27.382073px;}
.ha{height:27.641250px;}
.h9{height:28.597500px;}
.h2{height:33.644531px;}
.h16{height:33.783750px;}
.h12{height:38.902073px;}
.hd{height:42.820312px;}
.h5{height:42.997500px;}
.h8{height:43.942500px;}
.h14{height:44.148819px;}
.he{height:47.092073px;}
.h15{height:47.906193px;}
.h10{height:47.988281px;}
.h7{height:48.127064px;}
.h13{height:51.187500px;}
.h1{height:51.626953px;}
.hb{height:52.949531px;}
.h3{height:54.504000px;}
.hc{height:57.384000px;}
.hf{height:57.991818px;}
.h6{height:73.120781px;}
.h0{height:1093.500000px;}
.w1{width:0.720000px;}
.w2{width:1.080000px;}
.w0{width:774.000000px;}
.x0{left:0.000000px;}
.x3{left:84.960000px;}
.x29{left:88.560000px;}
.x17{left:89.640000px;}
.x32{left:90.720000px;}
.x2e{left:91.800000px;}
.x20{left:93.600000px;}
.x19{left:95.040000px;}
.x1c{left:96.840000px;}
.x27{left:97.920000px;}
.x3b{left:99.000000px;}
.x39{left:100.439850px;}
.x35{left:101.520000px;}
.x6{left:106.200000px;}
.x3e{left:111.240000px;}
.x4{left:115.200000px;}
.x23{left:116.640000px;}
.x1e{left:119.520000px;}
.x5{left:120.600000px;}
.x3d{left:124.920000px;}
.x45{left:127.439850px;}
.xa{left:136.800000px;}
.x9{left:142.920000px;}
.xe{left:149.400000px;}
.xf{left:152.280000px;}
.x24{left:174.600000px;}
.x2a{left:183.960000px;}
.x12{left:195.120000px;}
.x36{left:230.400000px;}
.x16{left:231.480000px;}
.xb{left:235.080000px;}
.x43{left:236.880000px;}
.x15{left:247.680000px;}
.x33{left:250.920000px;}
.x10{left:253.080000px;}
.x21{left:263.880000px;}
.x8{left:282.240000px;}
.x26{left:302.760000px;}
.xc{left:305.280000px;}
.x2b{left:313.920000px;}
.x11{left:318.240000px;}
.x41{left:322.920000px;}
.x30{left:327.600000px;}
.x1d{left:338.760000px;}
.x44{left:342.000000px;}
.x1{left:349.560000px;}
.x3f{left:351.720000px;}
.x2c{left:363.960000px;}
.x1a{left:365.760000px;}
.x7{left:386.640000px;}
.x13{left:397.440000px;}
.x1b{left:547.920000px;}
.x2{left:584.640000px;}
.x25{left:586.800000px;}
.x22{left:608.760000px;}
.x31{left:648.720000px;}
.x34{left:650.160000px;}
.x37{left:652.680000px;}
.x38{left:654.840000px;}
.x2d{left:666.360000px;}
.x2f{left:669.240000px;}
.x18{left:671.400000px;}
.x40{left:678.960000px;}
.x42{left:683.640000px;}
.x3a{left:686.160000px;}
.xd{left:688.680000px;}
.x1f{left:695.160000px;}
.x28{left:697.320000px;}
.x14{left:705.600000px;}
.x3c{left:718.920000px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v4{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v5{vertical-align:10.240000pt;}
.v1{vertical-align:12.800000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.041476pt;}
.ls3{letter-spacing:0.048002pt;}
.lsc{letter-spacing:0.093000pt;}
.ls0{letter-spacing:0.142597pt;}
.ls8{letter-spacing:0.185860pt;}
.lsb{letter-spacing:0.186626pt;}
.ls2{letter-spacing:0.313862pt;}
.ls5{letter-spacing:0.323841pt;}
.lsa{letter-spacing:0.576000pt;}
.lsf{letter-spacing:7.213943pt;}
.lsd{letter-spacing:8.493559pt;}
.ls9{letter-spacing:9.926274pt;}
.ls4{letter-spacing:15.044738pt;}
.lse{letter-spacing:23.848952pt;}
.ls6{letter-spacing:34.238980pt;}
.ws0{word-spacing:-16.332800pt;}
.ws1{word-spacing:-12.953483pt;}
.ws2{word-spacing:-11.827200pt;}
.ws6{word-spacing:-10.700683pt;}
.ws3{word-spacing:-9.292800pt;}
.ws5{word-spacing:-8.166400pt;}
.ws7{word-spacing:-7.040000pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-13.515057pt;}
._24{margin-left:-3.937482pt;}
._12{margin-left:-2.636918pt;}
._1{margin-left:-1.698166pt;}
._0{width:1.098240pt;}
._7{width:2.212726pt;}
._5{width:3.279360pt;}
._6{width:4.277071pt;}
._4{width:6.016097pt;}
._3{width:7.365120pt;}
._a{width:8.674857pt;}
._8{width:9.739126pt;}
._9{width:10.667520pt;}
._1d{width:11.770085pt;}
._f{width:13.290884pt;}
._2{width:14.192640pt;}
._20{width:15.946997pt;}
._d{width:17.273724pt;}
._e{width:18.219617pt;}
._10{width:19.201775pt;}
._21{width:20.164668pt;}
._1f{width:21.299903pt;}
._1c{width:22.248941pt;}
._25{width:23.146959pt;}
._1b{width:24.178412pt;}
._23{width:26.026827pt;}
._1a{width:27.257563pt;}
._22{width:28.234128pt;}
._16{width:29.161483pt;}
._15{width:30.221686pt;}
._14{width:31.347690pt;}
._13{width:32.293221pt;}
._b{width:33.384960pt;}
._c{width:34.584832pt;}
._26{width:40.094972pt;}
._27{width:41.215627pt;}
._28{width:42.319722pt;}
._18{width:45.480960pt;}
._19{width:46.609920pt;}
._17{width:47.716726pt;}
._29{width:537.574256pt;}
._11{width:651.733095pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs7{font-size:48.639467pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:58.879467pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.840000pt;}
.y2{bottom:49.920000pt;}
.y60{bottom:78.080000pt;}
.y11f{bottom:78.720000pt;}
.y158{bottom:79.040000pt;}
.y168{bottom:85.759867pt;}
.y104{bottom:86.720000pt;}
.y12a{bottom:91.200000pt;}
.y159{bottom:91.520000pt;}
.y94{bottom:92.160000pt;}
.y135{bottom:93.759867pt;}
.y5f{bottom:94.720000pt;}
.ybb{bottom:95.360000pt;}
.y11e{bottom:96.000000pt;}
.y167{bottom:99.840000pt;}
.ya8{bottom:102.400000pt;}
.y14d{bottom:103.040000pt;}
.y103{bottom:104.000000pt;}
.yd8{bottom:106.240000pt;}
.y129{bottom:106.880000pt;}
.y157{bottom:107.200000pt;}
.y5e{bottom:107.520000pt;}
.y93{bottom:108.800000pt;}
.y134{bottom:109.440000pt;}
.yba{bottom:110.720000pt;}
.ye2{bottom:112.320000pt;}
.y11d{bottom:113.279867pt;}
.y166{bottom:113.920000pt;}
.ya7{bottom:119.680000pt;}
.y92{bottom:120.320000pt;}
.y102{bottom:121.279867pt;}
.y128{bottom:122.560000pt;}
.yd7{bottom:122.880000pt;}
.yb9{bottom:123.200000pt;}
.y133{bottom:125.120000pt;}
.y111{bottom:125.440000pt;}
.ye1{bottom:128.000000pt;}
.y11c{bottom:130.240000pt;}
.y14a{bottom:132.480000pt;}
.yd6{bottom:134.400000pt;}
.y127{bottom:135.040000pt;}
.y91{bottom:136.960000pt;}
.y132{bottom:137.600000pt;}
.y101{bottom:138.560000pt;}
.ye0{bottom:140.480000pt;}
.y5d{bottom:140.800000pt;}
.y165{bottom:142.080000pt;}
.y8b{bottom:142.400000pt;}
.y110{bottom:142.720000pt;}
.y11b{bottom:145.600000pt;}
.y156{bottom:148.160000pt;}
.yd5{bottom:148.480000pt;}
.y14c{bottom:149.440000pt;}
.y90{bottom:149.760000pt;}
.yf1{bottom:151.040000pt;}
.ya6{bottom:154.240000pt;}
.y100{bottom:155.520000pt;}
.y164{bottom:156.160000pt;}
.y5c{bottom:158.080000pt;}
.y11a{bottom:158.400000pt;}
.y8a{bottom:159.680000pt;}
.y10f{bottom:160.000000pt;}
.yd4{bottom:162.560000pt;}
.y155{bottom:163.840000pt;}
.y149{bottom:166.720000pt;}
.yf0{bottom:168.320000pt;}
.y163{bottom:170.240000pt;}
.ya5{bottom:171.200000pt;}
.yff{bottom:172.800000pt;}
.y5b{bottom:175.360000pt;}
.y154{bottom:176.320000pt;}
.yd3{bottom:176.640000pt;}
.y89{bottom:176.960000pt;}
.y10e{bottom:177.280000pt;}
.y148{bottom:184.000000pt;}
.yef{bottom:185.280000pt;}
.ya4{bottom:188.480000pt;}
.yfe{bottom:190.080000pt;}
.y5a{bottom:192.640000pt;}
.yd2{bottom:193.280000pt;}
.y8f{bottom:193.600000pt;}
.y88{bottom:193.920000pt;}
.y10d{bottom:194.240000pt;}
.y162{bottom:198.080000pt;}
.y147{bottom:201.280000pt;}
.yee{bottom:202.560000pt;}
.yd1{bottom:204.800000pt;}
.ya3{bottom:205.760000pt;}
.yfd{bottom:207.040000pt;}
.y59{bottom:209.600000pt;}
.y87{bottom:211.200000pt;}
.y10c{bottom:211.520000pt;}
.y161{bottom:212.160000pt;}
.y146{bottom:218.560000pt;}
.yed{bottom:219.840000pt;}
.yd0{bottom:221.440000pt;}
.ya2{bottom:223.040000pt;}
.yfc{bottom:224.320000pt;}
.y160{bottom:226.240000pt;}
.y58{bottom:226.560000pt;}
.y8e{bottom:226.880000pt;}
.y2f{bottom:228.160000pt;}
.y86{bottom:228.480000pt;}
.y10b{bottom:228.800000pt;}
.ycf{bottom:234.240000pt;}
.y145{bottom:235.520000pt;}
.yec{bottom:236.800000pt;}
.y8d{bottom:239.360000pt;}
.ya1{bottom:240.000000pt;}
.y15f{bottom:240.320000pt;}
.yfb{bottom:241.600000pt;}
.y57{bottom:242.240000pt;}
.y2e{bottom:243.840000pt;}
.y85{bottom:245.760000pt;}
.y144{bottom:252.800000pt;}
.yeb{bottom:254.080000pt;}
.y15e{bottom:254.400000pt;}
.ya0{bottom:257.280000pt;}
.y56{bottom:257.920000pt;}
.yfa{bottom:258.880000pt;}
.y2d{bottom:259.520000pt;}
.yce{bottom:260.800000pt;}
.y84{bottom:262.720000pt;}
.y10a{bottom:263.040000pt;}
.y15d{bottom:268.480000pt;}
.y143{bottom:270.080000pt;}
.yea{bottom:271.360000pt;}
.y55{bottom:273.600000pt;}
.y9f{bottom:274.560000pt;}
.y2c{bottom:275.200000pt;}
.yf9{bottom:275.840000pt;}
.ycd{bottom:277.760000pt;}
.y83{bottom:280.000000pt;}
.y109{bottom:280.320000pt;}
.y15c{bottom:282.880000pt;}
.y142{bottom:287.040000pt;}
.ye9{bottom:288.640000pt;}
.y54{bottom:289.280000pt;}
.y2b{bottom:290.880000pt;}
.y9e{bottom:291.840000pt;}
.yf8{bottom:293.120000pt;}
.ycc{bottom:295.040000pt;}
.y82{bottom:297.280000pt;}
.y108{bottom:297.600000pt;}
.y15b{bottom:298.560000pt;}
.y141{bottom:304.320000pt;}
.y53{bottom:304.640000pt;}
.ye8{bottom:305.920000pt;}
.y2a{bottom:306.240000pt;}
.y9d{bottom:308.800000pt;}
.yf7{bottom:310.400000pt;}
.ycb{bottom:312.320000pt;}
.y81{bottom:314.560000pt;}
.y52{bottom:320.320000pt;}
.y140{bottom:321.600000pt;}
.y29{bottom:321.920000pt;}
.ye7{bottom:324.160000pt;}
.y9c{bottom:326.080000pt;}
.yf6{bottom:327.360000pt;}
.yca{bottom:329.280000pt;}
.y80{bottom:331.520000pt;}
.y107{bottom:332.160000pt;}
.y51{bottom:336.000000pt;}
.y28{bottom:337.600000pt;}
.y13f{bottom:338.880000pt;}
.ye6{bottom:339.840000pt;}
.yb8{bottom:342.720000pt;}
.yf5{bottom:343.040000pt;}
.y9b{bottom:343.360000pt;}
.yc9{bottom:346.560000pt;}
.y7f{bottom:348.800000pt;}
.y106{bottom:350.400000pt;}
.y50{bottom:351.680000pt;}
.y27{bottom:353.280000pt;}
.ye5{bottom:355.520000pt;}
.y13e{bottom:355.840000pt;}
.yf4{bottom:358.400000pt;}
.yb7{bottom:360.000000pt;}
.y9a{bottom:360.320000pt;}
.yc8{bottom:363.840000pt;}
.y7e{bottom:366.080000pt;}
.y4f{bottom:367.360000pt;}
.y26{bottom:368.960000pt;}
.ye4{bottom:371.200000pt;}
.y13d{bottom:373.120000pt;}
.yf3{bottom:374.080000pt;}
.yb6{bottom:377.280000pt;}
.y99{bottom:377.600000pt;}
.yc7{bottom:381.120000pt;}
.y105{bottom:381.760000pt;}
.y4e{bottom:383.040000pt;}
.y15a{bottom:383.360000pt;}
.ye3{bottom:383.680000pt;}
.y25{bottom:384.640000pt;}
.yf2{bottom:386.560000pt;}
.y13c{bottom:390.400000pt;}
.yb5{bottom:394.240000pt;}
.y98{bottom:394.880000pt;}
.yc6{bottom:398.080000pt;}
.y4d{bottom:398.400000pt;}
.y24{bottom:400.000000pt;}
.y7d{bottom:400.320000pt;}
.y13b{bottom:407.360000pt;}
.y119{bottom:407.680000pt;}
.yb4{bottom:411.520000pt;}
.y97{bottom:412.480000pt;}
.y4c{bottom:414.080000pt;}
.yc5{bottom:415.360000pt;}
.y23{bottom:415.680000pt;}
.y7c{bottom:417.600000pt;}
.y13a{bottom:423.040000pt;}
.y118{bottom:426.240000pt;}
.yb3{bottom:428.800000pt;}
.y4b{bottom:429.760000pt;}
.y96{bottom:430.400000pt;}
.y22{bottom:431.360000pt;}
.yc4{bottom:432.640000pt;}
.ydf{bottom:434.560000pt;}
.y7b{bottom:434.880000pt;}
.y139{bottom:438.400000pt;}
.y126{bottom:438.720000pt;}
.y95{bottom:442.880000pt;}
.y117{bottom:443.520000pt;}
.y4a{bottom:445.440000pt;}
.yb2{bottom:446.080000pt;}
.y131{bottom:446.720000pt;}
.y21{bottom:447.040000pt;}
.yc3{bottom:449.920000pt;}
.y7a{bottom:451.840000pt;}
.y138{bottom:454.080000pt;}
.y125{bottom:455.680000pt;}
.y116{bottom:460.480000pt;}
.y49{bottom:461.120000pt;}
.y20{bottom:462.720000pt;}
.yb1{bottom:463.040000pt;}
.y130{bottom:465.280000pt;}
.y137{bottom:466.560000pt;}
.yc2{bottom:466.880000pt;}
.y79{bottom:469.120000pt;}
.y124{bottom:472.640000pt;}
.y48{bottom:476.800000pt;}
.y115{bottom:477.440000pt;}
.y1f{bottom:478.400000pt;}
.yb0{bottom:480.320000pt;}
.y12f{bottom:482.240000pt;}
.y153{bottom:483.520000pt;}
.yc1{bottom:484.160000pt;}
.yde{bottom:486.080000pt;}
.y78{bottom:486.400000pt;}
.y123{bottom:488.320000pt;}
.y47{bottom:492.480000pt;}
.y114{bottom:493.120000pt;}
.y1e{bottom:494.080000pt;}
.yaf{bottom:497.600000pt;}
.y12e{bottom:497.920000pt;}
.y152{bottom:499.520000pt;}
.yc0{bottom:501.440000pt;}
.ydd{bottom:503.360000pt;}
.y77{bottom:503.680000pt;}
.y122{bottom:504.000000pt;}
.y46{bottom:507.840000pt;}
.y113{bottom:508.800000pt;}
.y1d{bottom:509.440000pt;}
.y12d{bottom:513.280000pt;}
.yae{bottom:514.880000pt;}
.y151{bottom:518.400000pt;}
.ybf{bottom:518.720000pt;}
.y121{bottom:519.680000pt;}
.y76{bottom:520.640000pt;}
.y112{bottom:521.280000pt;}
.y45{bottom:523.520000pt;}
.y1c{bottom:525.120000pt;}
.y12c{bottom:528.960000pt;}
.yad{bottom:531.840000pt;}
.y120{bottom:532.160000pt;}
.ybe{bottom:535.360000pt;}
.y150{bottom:536.640000pt;}
.y75{bottom:537.920000pt;}
.y44{bottom:539.200000pt;}
.y1b{bottom:540.800000pt;}
.y12b{bottom:541.760000pt;}
.yac{bottom:548.800000pt;}
.ybd{bottom:551.040000pt;}
.y14f{bottom:552.000000pt;}
.ydc{bottom:554.560000pt;}
.y43{bottom:554.880000pt;}
.y74{bottom:555.200000pt;}
.y1a{bottom:556.480000pt;}
.ybc{bottom:563.520000pt;}
.yab{bottom:564.480000pt;}
.y14e{bottom:567.680000pt;}
.ydb{bottom:570.240000pt;}
.y42{bottom:570.560000pt;}
.y19{bottom:572.160000pt;}
.y73{bottom:572.480000pt;}
.yaa{bottom:580.160000pt;}
.yda{bottom:582.720000pt;}
.y41{bottom:586.240000pt;}
.y18{bottom:587.840000pt;}
.y72{bottom:589.440000pt;}
.ya9{bottom:592.640000pt;}
.y40{bottom:601.920000pt;}
.y17{bottom:603.200000pt;}
.y71{bottom:606.720000pt;}
.y3f{bottom:617.280000pt;}
.y16{bottom:618.880000pt;}
.y8c{bottom:622.720000pt;}
.y70{bottom:624.000000pt;}
.y3e{bottom:632.960000pt;}
.y15{bottom:634.560000pt;}
.y6f{bottom:640.960000pt;}
.y3d{bottom:648.640000pt;}
.y14{bottom:650.240000pt;}
.y6e{bottom:658.240000pt;}
.y3c{bottom:664.320000pt;}
.y13{bottom:665.920000pt;}
.y6d{bottom:675.520000pt;}
.y3b{bottom:680.000000pt;}
.y12{bottom:681.600000pt;}
.y6c{bottom:692.800000pt;}
.y3a{bottom:695.680000pt;}
.y176{bottom:697.920000pt;}
.y11{bottom:700.160000pt;}
.y6b{bottom:709.760000pt;}
.y39{bottom:711.040000pt;}
.y10{bottom:715.840000pt;}
.y175{bottom:716.800000pt;}
.y6a{bottom:727.040000pt;}
.yf{bottom:728.320000pt;}
.y174{bottom:729.600000pt;}
.y38{bottom:729.920000pt;}
.y173{bottom:743.680000pt;}
.y69{bottom:744.320000pt;}
.y37{bottom:745.600000pt;}
.ye{bottom:747.200000pt;}
.y172{bottom:757.760000pt;}
.y36{bottom:758.080000pt;}
.yd{bottom:759.680000pt;}
.y68{bottom:761.600000pt;}
.y171{bottom:771.840000pt;}
.y35{bottom:773.760000pt;}
.yc{bottom:775.680000pt;}
.y67{bottom:778.560000pt;}
.y170{bottom:785.920000pt;}
.y34{bottom:792.640000pt;}
.yb{bottom:793.600000pt;}
.y66{bottom:795.840000pt;}
.y16f{bottom:800.000000pt;}
.y33{bottom:805.120000pt;}
.y136{bottom:811.840000pt;}
.y65{bottom:813.120000pt;}
.y16e{bottom:814.080000pt;}
.ya{bottom:815.360000pt;}
.y32{bottom:822.400000pt;}
.y16d{bottom:828.160000pt;}
.y64{bottom:830.400000pt;}
.y9{bottom:836.160000pt;}
.y31{bottom:840.640000pt;}
.y16c{bottom:842.240000pt;}
.y63{bottom:847.360000pt;}
.yd9{bottom:849.920000pt;}
.y8{bottom:851.840000pt;}
.y16b{bottom:856.320000pt;}
.y30{bottom:862.400000pt;}
.y62{bottom:864.640000pt;}
.y7{bottom:867.520000pt;}
.y16a{bottom:870.400000pt;}
.y14b{bottom:880.640000pt;}
.y61{bottom:881.920000pt;}
.y6{bottom:883.200000pt;}
.y169{bottom:884.480000pt;}
.y4{bottom:905.280000pt;}
.y1{bottom:908.480000pt;}
.y3{bottom:909.120000pt;}
.h4{height:17.920000pt;}
.h11{height:24.339621pt;}
.ha{height:24.570000pt;}
.h9{height:25.420000pt;}
.h2{height:29.906250pt;}
.h16{height:30.030000pt;}
.h12{height:34.579621pt;}
.hd{height:38.062500pt;}
.h5{height:38.220000pt;}
.h8{height:39.060000pt;}
.h14{height:39.243395pt;}
.he{height:41.859621pt;}
.h15{height:42.583283pt;}
.h10{height:42.656250pt;}
.h7{height:42.779612pt;}
.h13{height:45.500000pt;}
.h1{height:45.890625pt;}
.hb{height:47.066250pt;}
.h3{height:48.448000pt;}
.hc{height:51.008000pt;}
.hf{height:51.548283pt;}
.h6{height:64.996250pt;}
.h0{height:972.000000pt;}
.w1{width:0.640000pt;}
.w2{width:0.960000pt;}
.w0{width:688.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.520000pt;}
.x29{left:78.720000pt;}
.x17{left:79.680000pt;}
.x32{left:80.640000pt;}
.x2e{left:81.600000pt;}
.x20{left:83.200000pt;}
.x19{left:84.480000pt;}
.x1c{left:86.080000pt;}
.x27{left:87.040000pt;}
.x3b{left:88.000000pt;}
.x39{left:89.279867pt;}
.x35{left:90.240000pt;}
.x6{left:94.400000pt;}
.x3e{left:98.880000pt;}
.x4{left:102.400000pt;}
.x23{left:103.680000pt;}
.x1e{left:106.240000pt;}
.x5{left:107.200000pt;}
.x3d{left:111.040000pt;}
.x45{left:113.279867pt;}
.xa{left:121.600000pt;}
.x9{left:127.040000pt;}
.xe{left:132.800000pt;}
.xf{left:135.360000pt;}
.x24{left:155.200000pt;}
.x2a{left:163.520000pt;}
.x12{left:173.440000pt;}
.x36{left:204.800000pt;}
.x16{left:205.760000pt;}
.xb{left:208.960000pt;}
.x43{left:210.560000pt;}
.x15{left:220.160000pt;}
.x33{left:223.040000pt;}
.x10{left:224.960000pt;}
.x21{left:234.560000pt;}
.x8{left:250.880000pt;}
.x26{left:269.120000pt;}
.xc{left:271.360000pt;}
.x2b{left:279.040000pt;}
.x11{left:282.880000pt;}
.x41{left:287.040000pt;}
.x30{left:291.200000pt;}
.x1d{left:301.120000pt;}
.x44{left:304.000000pt;}
.x1{left:310.720000pt;}
.x3f{left:312.640000pt;}
.x2c{left:323.520000pt;}
.x1a{left:325.120000pt;}
.x7{left:343.680000pt;}
.x13{left:353.280000pt;}
.x1b{left:487.040000pt;}
.x2{left:519.680000pt;}
.x25{left:521.600000pt;}
.x22{left:541.120000pt;}
.x31{left:576.640000pt;}
.x34{left:577.920000pt;}
.x37{left:580.160000pt;}
.x38{left:582.080000pt;}
.x2d{left:592.320000pt;}
.x2f{left:594.880000pt;}
.x18{left:596.800000pt;}
.x40{left:603.520000pt;}
.x42{left:607.680000pt;}
.x3a{left:609.920000pt;}
.xd{left:612.160000pt;}
.x1f{left:617.920000pt;}
.x28{left:619.840000pt;}
.x14{left:627.200000pt;}
.x3c{left:639.040000pt;}
}




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