
    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_a996a1477b92da40ed733c2e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_2d8b071aafa84cecb8cb96c2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_e0cf6bb93bd3b8bbc39058d2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_421948c4b06810401c0241c0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_af5906817d2e2d16e157b168.woff')format("woff");}.ff5{font-family:ff5;line-height:0.896484;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);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.lsa{letter-spacing:-1.728000px;}
.ls10{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.296000px;}
.lsb{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.251856px;}
.lsc{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.722304px;}
.ls5{letter-spacing:846.000000px;}
.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;}
}
.ws5{word-spacing:-18.648000px;}
.ws7{word-spacing:-18.504000px;}
.wsb{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.496000px;}
.ws4{word-spacing:-17.352000px;}
.wsd{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.272000px;}
.ws0{word-spacing:-12.602304px;}
.wsa{word-spacing:-11.628144px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-16.560000px;}
._a{margin-left:-15.120000px;}
._b{margin-left:-13.083264px;}
._9{margin-left:-11.596896px;}
._5{margin-left:-9.843264px;}
._c{margin-left:-7.467264px;}
._8{margin-left:-5.929632px;}
._7{margin-left:-2.812896px;}
._0{margin-left:-1.512000px;}
._1{width:1.177632px;}
._2{width:2.422080px;}
._f{width:43.920000px;}
._13{width:58.366368px;}
._3{width:71.686368px;}
._4{width:74.088000px;}
._12{width:78.932736px;}
._e{width:96.377472px;}
._10{width:124.843104px;}
._14{width:172.095840px;}
._11{width:193.767840px;}
._d{width:846.000000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(12,15,25);}
.fc4{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:4.358700px;}
.y147{bottom:4.598700px;}
.y133{bottom:4.658700px;}
.y131{bottom:4.718700px;}
.y13f{bottom:4.778700px;}
.y13b{bottom:4.838700px;}
.y13d{bottom:5.378700px;}
.y139{bottom:5.438700px;}
.y149{bottom:5.498700px;}
.y135{bottom:5.558700px;}
.y3{bottom:5.618700px;}
.y12f{bottom:5.678700px;}
.y14d{bottom:5.858700px;}
.y154{bottom:6.458700px;}
.y150{bottom:6.518700px;}
.y101{bottom:6.698700px;}
.y39{bottom:6.818700px;}
.yff{bottom:7.118700px;}
.y54{bottom:7.418700px;}
.y42{bottom:7.598700px;}
.y72{bottom:7.778700px;}
.y89{bottom:7.838700px;}
.y4b{bottom:7.898700px;}
.y31{bottom:8.018700px;}
.yf5{bottom:8.138700px;}
.y137{bottom:8.858700px;}
.y12b{bottom:9.338700px;}
.y12d{bottom:9.458700px;}
.y142{bottom:9.758700px;}
.y14b{bottom:10.358700px;}
.y129{bottom:13.898700px;}
.y155{bottom:16.898700px;}
.y151{bottom:16.958700px;}
.y7d{bottom:25.238700px;}
.y153{bottom:27.338700px;}
.y14f{bottom:27.398700px;}
.y5e{bottom:27.698700px;}
.yfe{bottom:27.998700px;}
.y38{bottom:28.058700px;}
.y44{bottom:28.118700px;}
.y55{bottom:28.298700px;}
.y49{bottom:28.418700px;}
.y41{bottom:28.478700px;}
.y53{bottom:28.658700px;}
.y4a{bottom:28.778700px;}
.y88{bottom:29.078700px;}
.y7c{bottom:45.758700px;}
.y3a{bottom:48.218700px;}
.y37{bottom:48.578700px;}
.y43{bottom:48.998700px;}
.y52{bottom:49.178700px;}
.y8a{bottom:49.238700px;}
.y4c{bottom:49.298700px;}
.y40{bottom:49.358700px;}
.y71{bottom:49.538700px;}
.y87{bottom:49.598700px;}
.y48{bottom:49.658700px;}
.y7b{bottom:66.638700px;}
.y3b{bottom:69.098700px;}
.y36{bottom:69.458700px;}
.y45{bottom:69.518700px;}
.y5a{bottom:69.698700px;}
.y3f{bottom:69.878700px;}
.y51{bottom:70.058700px;}
.y47{bottom:70.178700px;}
.y86{bottom:70.478700px;}
.y7a{bottom:87.158700px;}
.y81{bottom:89.618700px;}
.y35{bottom:89.978700px;}
.y56{bottom:90.218700px;}
.y3e{bottom:90.398700px;}
.y50{bottom:90.578700px;}
.yfb{bottom:90.758700px;}
.y85{bottom:90.998700px;}
.y79{bottom:108.038700px;}
.y3c{bottom:110.498700px;}
.y34{bottom:110.858700px;}
.y73{bottom:111.000000px;}
.y1d{bottom:111.038700px;}
.y57{bottom:111.098700px;}
.yfa{bottom:111.278700px;}
.y4f{bottom:111.458700px;}
.y84{bottom:111.878700px;}
.y116{bottom:119.318700px;}
.y9f{bottom:123.638700px;}
.y78{bottom:128.558700px;}
.y33{bottom:131.378700px;}
.y5b{bottom:131.618700px;}
.y4e{bottom:131.978700px;}
.yf9{bottom:132.158700px;}
.y83{bottom:132.398700px;}
.yf1{bottom:138.398700px;}
.yd7{bottom:145.598700px;}
.y77{bottom:149.438700px;}
.y115{bottom:150.638700px;}
.y10d{bottom:150.998700px;}
.y80{bottom:151.898700px;}
.y6c{bottom:152.258700px;}
.y59{bottom:152.498700px;}
.yf8{bottom:152.678700px;}
.y70{bottom:152.858700px;}
.y1c{bottom:153.878700px;}
.y69{bottom:154.418700px;}
.y9e{bottom:154.598700px;}
.ybb{bottom:160.718700px;}
.yf0{bottom:169.718700px;}
.y76{bottom:169.958700px;}
.y6b{bottom:172.778700px;}
.y6f{bottom:173.378700px;}
.y68{bottom:175.658700px;}
.yd6{bottom:176.558700px;}
.y114{bottom:181.598700px;}
.y173{bottom:183.758700px;}
.y9d{bottom:185.918700px;}
.y75{bottom:190.838700px;}
.yba{bottom:191.678700px;}
.y6e{bottom:193.898700px;}
.y10c{bottom:194.198700px;}
.y6a{bottom:195.818700px;}
.y67{bottom:196.178700px;}
.y1b{bottom:197.078700px;}
.yef{bottom:200.678700px;}
.yd5{bottom:207.878700px;}
.y74{bottom:211.358700px;}
.y113{bottom:212.558700px;}
.y172{bottom:214.718700px;}
.y9c{bottom:216.878700px;}
.y66{bottom:217.058700px;}
.yb9{bottom:222.638700px;}
.y10b{bottom:225.158700px;}
.y17e{bottom:226.598700px;}
.y65{bottom:237.578700px;}
.yd4{bottom:238.838700px;}
.y1a{bottom:239.918700px;}
.y112{bottom:243.518700px;}
.yee{bottom:243.878700px;}
.y171{bottom:245.678700px;}
.y9b{bottom:247.838700px;}
.yb8{bottom:253.598700px;}
.y10a{bottom:256.118700px;}
.y17d{bottom:257.918700px;}
.y64{bottom:258.458700px;}
.y181{bottom:264.758700px;}
.yd3{bottom:269.798700px;}
.yed{bottom:274.838700px;}
.y170{bottom:276.998700px;}
.y9a{bottom:278.798700px;}
.y63{bottom:278.978700px;}
.y19{bottom:283.118700px;}
.yb7{bottom:284.918700px;}
.y109{bottom:295.358700px;}
.y62{bottom:299.858700px;}
.y17c{bottom:300.758700px;}
.yec{bottom:305.798700px;}
.y180{bottom:307.958700px;}
.y16f{bottom:310.838700px;}
.yd2{bottom:312.998700px;}
.yb6{bottom:315.878700px;}
.y61{bottom:320.378700px;}
.y99{bottom:321.998700px;}
.y18{bottom:325.958700px;}
.y159{bottom:327.038700px;}
.y17b{bottom:332.078700px;}
.y5d{bottom:334.958700px;}
.yeb{bottom:336.758700px;}
.y6d{bottom:340.500000px;}
.y60{bottom:340.898700px;}
.y16e{bottom:341.798700px;}
.yd1{bottom:343.958700px;}
.yb5{bottom:346.838700px;}
.y17f{bottom:350.798700px;}
.y98{bottom:352.958700px;}
.y17{bottom:357.278700px;}
.y17a{bottom:363.038700px;}
.y111{bottom:367.718700px;}
.yea{bottom:368.078700px;}
.y158{bottom:370.238700px;}
.yd0{bottom:374.918700px;}
.y5c{bottom:377.798700px;}
.y97{bottom:384.278700px;}
.y16{bottom:388.238700px;}
.y16d{bottom:391.118700px;}
.y179{bottom:393.998700px;}
.y58{bottom:394.500000px;}
.ye9{bottom:399.038700px;}
.yb4{bottom:409.118700px;}
.y157{bottom:413.078700px;}
.y96{bottom:415.238700px;}
.ycf{bottom:418.118700px;}
.y15{bottom:419.198700px;}
.ye8{bottom:429.998700px;}
.y16c{bottom:433.958700px;}
.y178{bottom:437.198700px;}
.yb3{bottom:440.078700px;}
.y95{bottom:446.198700px;}
.yce{bottom:449.078700px;}
.y156{bottom:456.278700px;}
.ye7{bottom:460.958700px;}
.y14{bottom:462.398700px;}
.y2e{bottom:463.838700px;}
.y16b{bottom:464.918700px;}
.y177{bottom:468.158700px;}
.yb2{bottom:471.038700px;}
.y152{bottom:472.500000px;}
.y94{bottom:477.158700px;}
.ycd{bottom:480.038700px;}
.ye6{bottom:491.918700px;}
.y16a{bottom:496.238700px;}
.y176{bottom:499.118700px;}
.yb1{bottom:501.998700px;}
.y127{bottom:504.158700px;}
.y13{bottom:505.598700px;}
.y2d{bottom:506.678700px;}
.y93{bottom:508.118700px;}
.ycc{bottom:510.998700px;}
.y103{bottom:513.878700px;}
.y14e{bottom:516.000000px;}
.ye5{bottom:523.238700px;}
.y169{bottom:527.198700px;}
.y175{bottom:530.078700px;}
.yb0{bottom:533.318700px;}
.ycb{bottom:542.318700px;}
.y126{bottom:546.998700px;}
.y12{bottom:549.878700px;}
.y92{bottom:551.318700px;}
.y5f{bottom:553.500000px;}
.ye4{bottom:554.198700px;}
.y102{bottom:557.078700px;}
.y14c{bottom:559.500000px;}
.y174{bottom:561.398700px;}
.yaf{bottom:564.278700px;}
.y4d{bottom:565.500000px;}
.y168{bottom:570.398700px;}
.yca{bottom:573.278700px;}
.y100{bottom:574.500000px;}
.y125{bottom:578.318700px;}
.y14a{bottom:582.000000px;}
.y91{bottom:582.278700px;}
.ye3{bottom:585.158700px;}
.y2c{bottom:592.718700px;}
.y11{bottom:593.798700px;}
.yae{bottom:595.238700px;}
.yfd{bottom:600.000000px;}
.y167{bottom:601.358700px;}
.yc9{bottom:604.238700px;}
.y124{bottom:609.278700px;}
.y108{bottom:613.238700px;}
.y148{bottom:613.500000px;}
.y90{bottom:613.598700px;}
.ye2{bottom:616.118700px;}
.yad{bottom:626.198700px;}
.y2b{bottom:631.598700px;}
.yc8{bottom:635.198700px;}
.y146{bottom:636.000000px;}
.y10{bottom:638.078700px;}
.y123{bottom:640.238700px;}
.y107{bottom:644.198700px;}
.y8f{bottom:644.558700px;}
.yfc{bottom:646.500000px;}
.ye1{bottom:647.438700px;}
.y145{bottom:657.000000px;}
.y110{bottom:665.438700px;}
.yc7{bottom:666.518700px;}
.yac{bottom:669.398700px;}
.y2a{bottom:670.118700px;}
.y122{bottom:671.198700px;}
.y8e{bottom:675.518700px;}
.ye0{bottom:678.398700px;}
.y144{bottom:679.500000px;}
.yf{bottom:682.358700px;}
.y106{bottom:693.518700px;}
.yc6{bottom:697.478700px;}
.yab{bottom:700.358700px;}
.y143{bottom:700.500000px;}
.y121{bottom:702.518700px;}
.y166{bottom:706.478700px;}
.y10f{bottom:708.278700px;}
.y29{bottom:708.638700px;}
.ydf{bottom:709.358700px;}
.yf7{bottom:714.000000px;}
.y46{bottom:715.500000px;}
.y141{bottom:723.000000px;}
.y8d{bottom:724.478700px;}
.ye{bottom:725.558700px;}
.yc5{bottom:728.438700px;}
.yaa{bottom:731.318700px;}
.y120{bottom:733.478700px;}
.y165{bottom:737.438700px;}
.yde{bottom:740.318700px;}
.y28{bottom:747.158700px;}
.y10e{bottom:747.878700px;}
.y140{bottom:753.000000px;}
.y105{bottom:755.438700px;}
.y8c{bottom:755.798700px;}
.ya9{bottom:762.638700px;}
.y11f{bottom:764.438700px;}
.yc4{bottom:771.638700px;}
.yd{bottom:774.518700px;}
.y13e{bottom:775.500000px;}
.y164{bottom:780.638700px;}
.ydd{bottom:783.518700px;}
.y27{bottom:785.678700px;}
.y8b{bottom:786.758700px;}
.ya8{bottom:793.598700px;}
.y104{bottom:795.038700px;}
.y11e{bottom:795.398700px;}
.y13c{bottom:796.500000px;}
.yc3{bottom:802.598700px;}
.y3d{bottom:804.000000px;}
.y163{bottom:811.598700px;}
.ydc{bottom:814.478700px;}
.yc{bottom:817.718700px;}
.y13a{bottom:819.000000px;}
.y26{bottom:824.198700px;}
.ya7{bottom:824.558700px;}
.y11d{bottom:826.718700px;}
.yc2{bottom:833.558700px;}
.y82{bottom:834.000000px;}
.y138{bottom:840.000000px;}
.y162{bottom:842.558700px;}
.ydb{bottom:845.438700px;}
.yb{bottom:854.438700px;}
.ya6{bottom:855.518700px;}
.y11c{bottom:857.678700px;}
.y136{bottom:862.500000px;}
.y25{bottom:862.718700px;}
.yc1{bottom:864.518700px;}
.yda{bottom:876.758700px;}
.yf6{bottom:885.000000px;}
.y161{bottom:885.758700px;}
.ya5{bottom:886.838700px;}
.y11b{bottom:888.638700px;}
.y134{bottom:891.000000px;}
.ya{bottom:891.878700px;}
.yc0{bottom:895.838700px;}
.y24{bottom:901.238700px;}
.yd9{bottom:907.718700px;}
.y32{bottom:913.500000px;}
.y160{bottom:916.718700px;}
.ya4{bottom:917.798700px;}
.y11a{bottom:919.598700px;}
.ybf{bottom:926.798700px;}
.y9{bottom:928.598700px;}
.y132{bottom:934.500000px;}
.yd8{bottom:938.678700px;}
.y23{bottom:939.758700px;}
.y15f{bottom:947.678700px;}
.y119{bottom:950.918700px;}
.ya3{bottom:951.638700px;}
.yf4{bottom:952.500000px;}
.y130{bottom:957.000000px;}
.ybe{bottom:969.638700px;}
.y8{bottom:971.798700px;}
.y12e{bottom:978.000000px;}
.y22{bottom:978.278700px;}
.y15e{bottom:978.638700px;}
.y118{bottom:981.878700px;}
.y7f{bottom:985.500000px;}
.yf3{bottom:994.838700px;}
.y12c{bottom:1000.500000px;}
.ya2{bottom:1000.958700px;}
.y15d{bottom:1009.958700px;}
.y117{bottom:1012.838700px;}
.y7{bottom:1014.638700px;}
.y21{bottom:1016.798700px;}
.yf2{bottom:1025.798700px;}
.y12a{bottom:1030.500000px;}
.ybd{bottom:1031.918700px;}
.y15c{bottom:1040.918700px;}
.ya1{bottom:1043.798700px;}
.y6{bottom:1045.598700px;}
.y20{bottom:1055.318700px;}
.y128{bottom:1060.500000px;}
.ybc{bottom:1062.878700px;}
.y30{bottom:1063.500000px;}
.y15b{bottom:1071.878700px;}
.ya0{bottom:1075.118700px;}
.y5{bottom:1088.798700px;}
.y1f{bottom:1093.838700px;}
.y15a{bottom:1103.198700px;}
.y2f{bottom:1106.078700px;}
.y4{bottom:1134.518700px;}
.y1e{bottom:1137.038700px;}
.y2{bottom:1186.500000px;}
.y1{bottom:1192.478700px;}
.h3{height:22.500000px;}
.h18{height:24.000000px;}
.h16{height:27.000000px;}
.h9{height:28.500000px;}
.h19{height:30.000000px;}
.h17{height:31.500000px;}
.h1a{height:33.000000px;}
.h7{height:33.018047px;}
.h1b{height:45.000000px;}
.h15{height:48.000000px;}
.h5{height:48.796875px;}
.h13{height:49.007813px;}
.h8{height:49.992188px;}
.h2{height:50.027344px;}
.h4{height:56.604375px;}
.h6{height:57.498047px;}
.h14{height:69.000000px;}
.hc{height:90.000000px;}
.hb{height:111.000000px;}
.ha{height:151.500000px;}
.h12{height:153.000000px;}
.h11{height:169.500000px;}
.hd{height:172.500000px;}
.hf{height:214.500000px;}
.h10{height:231.000000px;}
.he{height:361.500000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:64.500000px;}
.wb{width:66.000000px;}
.wd{width:73.500000px;}
.wf{width:75.000000px;}
.w3{width:112.500000px;}
.w6{width:115.500000px;}
.w8{width:117.000000px;}
.w7{width:141.000000px;}
.w4{width:145.500000px;}
.w5{width:169.500000px;}
.w9{width:258.000000px;}
.wa{width:306.000000px;}
.we{width:451.500000px;}
.wc{width:613.500000px;}
.w10{width:669.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.795850px;}
.x24{left:21.395850px;}
.x20{left:25.355850px;}
.x1e{left:28.955850px;}
.x25{left:33.275850px;}
.x3{left:55.175850px;}
.x1{left:108.875850px;}
.x26{left:110.315850px;}
.x8{left:118.955850px;}
.x6{left:135.515850px;}
.xb{left:157.115850px;}
.xe{left:162.875850px;}
.x17{left:172.500000px;}
.xa{left:181.235850px;}
.x1c{left:191.315850px;}
.x11{left:219.000000px;}
.x15{left:223.500000px;}
.x23{left:253.235850px;}
.x27{left:259.715850px;}
.x22{left:293.915850px;}
.x4{left:313.355850px;}
.x12{left:363.000000px;}
.x19{left:376.355850px;}
.xf{left:378.515850px;}
.x9{left:388.235850px;}
.xd{left:399.035850px;}
.x7{left:403.715850px;}
.x1b{left:406.595850px;}
.x1a{left:446.195850px;}
.x5{left:447.275850px;}
.xc{left:474.275850px;}
.x16{left:480.000000px;}
.x13{left:531.000000px;}
.x1d{left:558.000000px;}
.x1f{left:630.000000px;}
.x14{left:645.000000px;}
.x21{left:702.000000px;}
.x18{left:712.500000px;}
.x2{left:721.500000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.lsa{letter-spacing:-1.536000pt;}
.ls10{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.152000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.223872pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.642048pt;}
.ls5{letter-spacing:752.000000pt;}
.ws5{word-spacing:-16.576000pt;}
.ws7{word-spacing:-16.448000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.552000pt;}
.ws4{word-spacing:-15.424000pt;}
.wsd{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.464000pt;}
.ws0{word-spacing:-11.202048pt;}
.wsa{word-spacing:-10.336128pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-14.720000pt;}
._a{margin-left:-13.440000pt;}
._b{margin-left:-11.629568pt;}
._9{margin-left:-10.308352pt;}
._5{margin-left:-8.749568pt;}
._c{margin-left:-6.637568pt;}
._8{margin-left:-5.270784pt;}
._7{margin-left:-2.500352pt;}
._0{margin-left:-1.344000pt;}
._1{width:1.046784pt;}
._2{width:2.152960pt;}
._f{width:39.040000pt;}
._13{width:51.881216pt;}
._3{width:63.721216pt;}
._4{width:65.856000pt;}
._12{width:70.162432pt;}
._e{width:85.668864pt;}
._10{width:110.971648pt;}
._14{width:152.974080pt;}
._11{width:172.238080pt;}
._d{width:752.000000pt;}
.fs2{font-size:42.240000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:3.874400pt;}
.y147{bottom:4.087733pt;}
.y133{bottom:4.141067pt;}
.y131{bottom:4.194400pt;}
.y13f{bottom:4.247733pt;}
.y13b{bottom:4.301067pt;}
.y13d{bottom:4.781067pt;}
.y139{bottom:4.834400pt;}
.y149{bottom:4.887733pt;}
.y135{bottom:4.941067pt;}
.y3{bottom:4.994400pt;}
.y12f{bottom:5.047733pt;}
.y14d{bottom:5.207733pt;}
.y154{bottom:5.741067pt;}
.y150{bottom:5.794400pt;}
.y101{bottom:5.954400pt;}
.y39{bottom:6.061067pt;}
.yff{bottom:6.327733pt;}
.y54{bottom:6.594400pt;}
.y42{bottom:6.754400pt;}
.y72{bottom:6.914400pt;}
.y89{bottom:6.967733pt;}
.y4b{bottom:7.021067pt;}
.y31{bottom:7.127733pt;}
.yf5{bottom:7.234400pt;}
.y137{bottom:7.874400pt;}
.y12b{bottom:8.301067pt;}
.y12d{bottom:8.407733pt;}
.y142{bottom:8.674400pt;}
.y14b{bottom:9.207733pt;}
.y129{bottom:12.354400pt;}
.y155{bottom:15.021067pt;}
.y151{bottom:15.074400pt;}
.y7d{bottom:22.434400pt;}
.y153{bottom:24.301067pt;}
.y14f{bottom:24.354400pt;}
.y5e{bottom:24.621067pt;}
.yfe{bottom:24.887733pt;}
.y38{bottom:24.941067pt;}
.y44{bottom:24.994400pt;}
.y55{bottom:25.154400pt;}
.y49{bottom:25.261067pt;}
.y41{bottom:25.314400pt;}
.y53{bottom:25.474400pt;}
.y4a{bottom:25.581067pt;}
.y88{bottom:25.847733pt;}
.y7c{bottom:40.674400pt;}
.y3a{bottom:42.861067pt;}
.y37{bottom:43.181067pt;}
.y43{bottom:43.554400pt;}
.y52{bottom:43.714400pt;}
.y8a{bottom:43.767733pt;}
.y4c{bottom:43.821067pt;}
.y40{bottom:43.874400pt;}
.y71{bottom:44.034400pt;}
.y87{bottom:44.087733pt;}
.y48{bottom:44.141067pt;}
.y7b{bottom:59.234400pt;}
.y3b{bottom:61.421067pt;}
.y36{bottom:61.741067pt;}
.y45{bottom:61.794400pt;}
.y5a{bottom:61.954400pt;}
.y3f{bottom:62.114400pt;}
.y51{bottom:62.274400pt;}
.y47{bottom:62.381067pt;}
.y86{bottom:62.647733pt;}
.y7a{bottom:77.474400pt;}
.y81{bottom:79.661067pt;}
.y35{bottom:79.981067pt;}
.y56{bottom:80.194400pt;}
.y3e{bottom:80.354400pt;}
.y50{bottom:80.514400pt;}
.yfb{bottom:80.674400pt;}
.y85{bottom:80.887733pt;}
.y79{bottom:96.034400pt;}
.y3c{bottom:98.221067pt;}
.y34{bottom:98.541067pt;}
.y73{bottom:98.666667pt;}
.y1d{bottom:98.701067pt;}
.y57{bottom:98.754400pt;}
.yfa{bottom:98.914400pt;}
.y4f{bottom:99.074400pt;}
.y84{bottom:99.447733pt;}
.y116{bottom:106.061067pt;}
.y9f{bottom:109.901067pt;}
.y78{bottom:114.274400pt;}
.y33{bottom:116.781067pt;}
.y5b{bottom:116.994400pt;}
.y4e{bottom:117.314400pt;}
.yf9{bottom:117.474400pt;}
.y83{bottom:117.687733pt;}
.yf1{bottom:123.021067pt;}
.yd7{bottom:129.421067pt;}
.y77{bottom:132.834400pt;}
.y115{bottom:133.901067pt;}
.y10d{bottom:134.221067pt;}
.y80{bottom:135.021067pt;}
.y6c{bottom:135.341067pt;}
.y59{bottom:135.554400pt;}
.yf8{bottom:135.714400pt;}
.y70{bottom:135.874400pt;}
.y1c{bottom:136.781067pt;}
.y69{bottom:137.261067pt;}
.y9e{bottom:137.421067pt;}
.ybb{bottom:142.861067pt;}
.yf0{bottom:150.861067pt;}
.y76{bottom:151.074400pt;}
.y6b{bottom:153.581067pt;}
.y6f{bottom:154.114400pt;}
.y68{bottom:156.141067pt;}
.yd6{bottom:156.941067pt;}
.y114{bottom:161.421067pt;}
.y173{bottom:163.341067pt;}
.y9d{bottom:165.261067pt;}
.y75{bottom:169.634400pt;}
.yba{bottom:170.381067pt;}
.y6e{bottom:172.354400pt;}
.y10c{bottom:172.621067pt;}
.y6a{bottom:174.061067pt;}
.y67{bottom:174.381067pt;}
.y1b{bottom:175.181067pt;}
.yef{bottom:178.381067pt;}
.yd5{bottom:184.781067pt;}
.y74{bottom:187.874400pt;}
.y113{bottom:188.941067pt;}
.y172{bottom:190.861067pt;}
.y9c{bottom:192.781067pt;}
.y66{bottom:192.941067pt;}
.yb9{bottom:197.901067pt;}
.y10b{bottom:200.141067pt;}
.y17e{bottom:201.421067pt;}
.y65{bottom:211.181067pt;}
.yd4{bottom:212.301067pt;}
.y1a{bottom:213.261067pt;}
.y112{bottom:216.461067pt;}
.yee{bottom:216.781067pt;}
.y171{bottom:218.381067pt;}
.y9b{bottom:220.301067pt;}
.yb8{bottom:225.421067pt;}
.y10a{bottom:227.661067pt;}
.y17d{bottom:229.261067pt;}
.y64{bottom:229.741067pt;}
.y181{bottom:235.341067pt;}
.yd3{bottom:239.821067pt;}
.yed{bottom:244.301067pt;}
.y170{bottom:246.221067pt;}
.y9a{bottom:247.821067pt;}
.y63{bottom:247.981067pt;}
.y19{bottom:251.661067pt;}
.yb7{bottom:253.261067pt;}
.y109{bottom:262.541067pt;}
.y62{bottom:266.541067pt;}
.y17c{bottom:267.341067pt;}
.yec{bottom:271.821067pt;}
.y180{bottom:273.741067pt;}
.y16f{bottom:276.301067pt;}
.yd2{bottom:278.221067pt;}
.yb6{bottom:280.781067pt;}
.y61{bottom:284.781067pt;}
.y99{bottom:286.221067pt;}
.y18{bottom:289.741067pt;}
.y159{bottom:290.701067pt;}
.y17b{bottom:295.181067pt;}
.y5d{bottom:297.741067pt;}
.yeb{bottom:299.341067pt;}
.y6d{bottom:302.666667pt;}
.y60{bottom:303.021067pt;}
.y16e{bottom:303.821067pt;}
.yd1{bottom:305.741067pt;}
.yb5{bottom:308.301067pt;}
.y17f{bottom:311.821067pt;}
.y98{bottom:313.741067pt;}
.y17{bottom:317.581067pt;}
.y17a{bottom:322.701067pt;}
.y111{bottom:326.861067pt;}
.yea{bottom:327.181067pt;}
.y158{bottom:329.101067pt;}
.yd0{bottom:333.261067pt;}
.y5c{bottom:335.821067pt;}
.y97{bottom:341.581067pt;}
.y16{bottom:345.101067pt;}
.y16d{bottom:347.661067pt;}
.y179{bottom:350.221067pt;}
.y58{bottom:350.666667pt;}
.ye9{bottom:354.701067pt;}
.yb4{bottom:363.661067pt;}
.y157{bottom:367.181067pt;}
.y96{bottom:369.101067pt;}
.ycf{bottom:371.661067pt;}
.y15{bottom:372.621067pt;}
.ye8{bottom:382.221067pt;}
.y16c{bottom:385.741067pt;}
.y178{bottom:388.621067pt;}
.yb3{bottom:391.181067pt;}
.y95{bottom:396.621067pt;}
.yce{bottom:399.181067pt;}
.y156{bottom:405.581067pt;}
.ye7{bottom:409.741067pt;}
.y14{bottom:411.021067pt;}
.y2e{bottom:412.301067pt;}
.y16b{bottom:413.261067pt;}
.y177{bottom:416.141067pt;}
.yb2{bottom:418.701067pt;}
.y152{bottom:420.000000pt;}
.y94{bottom:424.141067pt;}
.ycd{bottom:426.701067pt;}
.ye6{bottom:437.261067pt;}
.y16a{bottom:441.101067pt;}
.y176{bottom:443.661067pt;}
.yb1{bottom:446.221067pt;}
.y127{bottom:448.141067pt;}
.y13{bottom:449.421067pt;}
.y2d{bottom:450.381067pt;}
.y93{bottom:451.661067pt;}
.ycc{bottom:454.221067pt;}
.y103{bottom:456.781067pt;}
.y14e{bottom:458.666667pt;}
.ye5{bottom:465.101067pt;}
.y169{bottom:468.621067pt;}
.y175{bottom:471.181067pt;}
.yb0{bottom:474.061067pt;}
.ycb{bottom:482.061067pt;}
.y126{bottom:486.221067pt;}
.y12{bottom:488.781067pt;}
.y92{bottom:490.061067pt;}
.y5f{bottom:492.000000pt;}
.ye4{bottom:492.621067pt;}
.y102{bottom:495.181067pt;}
.y14c{bottom:497.333333pt;}
.y174{bottom:499.021067pt;}
.yaf{bottom:501.581067pt;}
.y4d{bottom:502.666667pt;}
.y168{bottom:507.021067pt;}
.yca{bottom:509.581067pt;}
.y100{bottom:510.666667pt;}
.y125{bottom:514.061067pt;}
.y14a{bottom:517.333333pt;}
.y91{bottom:517.581067pt;}
.ye3{bottom:520.141067pt;}
.y2c{bottom:526.861067pt;}
.y11{bottom:527.821067pt;}
.yae{bottom:529.101067pt;}
.yfd{bottom:533.333333pt;}
.y167{bottom:534.541067pt;}
.yc9{bottom:537.101067pt;}
.y124{bottom:541.581067pt;}
.y108{bottom:545.101067pt;}
.y148{bottom:545.333333pt;}
.y90{bottom:545.421067pt;}
.ye2{bottom:547.661067pt;}
.yad{bottom:556.621067pt;}
.y2b{bottom:561.421067pt;}
.yc8{bottom:564.621067pt;}
.y146{bottom:565.333333pt;}
.y10{bottom:567.181067pt;}
.y123{bottom:569.101067pt;}
.y107{bottom:572.621067pt;}
.y8f{bottom:572.941067pt;}
.yfc{bottom:574.666667pt;}
.ye1{bottom:575.501067pt;}
.y145{bottom:584.000000pt;}
.y110{bottom:591.501067pt;}
.yc7{bottom:592.461067pt;}
.yac{bottom:595.021067pt;}
.y2a{bottom:595.661067pt;}
.y122{bottom:596.621067pt;}
.y8e{bottom:600.461067pt;}
.ye0{bottom:603.021067pt;}
.y144{bottom:604.000000pt;}
.yf{bottom:606.541067pt;}
.y106{bottom:616.461067pt;}
.yc6{bottom:619.981067pt;}
.yab{bottom:622.541067pt;}
.y143{bottom:622.666667pt;}
.y121{bottom:624.461067pt;}
.y166{bottom:627.981067pt;}
.y10f{bottom:629.581067pt;}
.y29{bottom:629.901067pt;}
.ydf{bottom:630.541067pt;}
.yf7{bottom:634.666667pt;}
.y46{bottom:636.000000pt;}
.y141{bottom:642.666667pt;}
.y8d{bottom:643.981067pt;}
.ye{bottom:644.941067pt;}
.yc5{bottom:647.501067pt;}
.yaa{bottom:650.061067pt;}
.y120{bottom:651.981067pt;}
.y165{bottom:655.501067pt;}
.yde{bottom:658.061067pt;}
.y28{bottom:664.141067pt;}
.y10e{bottom:664.781067pt;}
.y140{bottom:669.333333pt;}
.y105{bottom:671.501067pt;}
.y8c{bottom:671.821067pt;}
.ya9{bottom:677.901067pt;}
.y11f{bottom:679.501067pt;}
.yc4{bottom:685.901067pt;}
.yd{bottom:688.461067pt;}
.y13e{bottom:689.333333pt;}
.y164{bottom:693.901067pt;}
.ydd{bottom:696.461067pt;}
.y27{bottom:698.381067pt;}
.y8b{bottom:699.341067pt;}
.ya8{bottom:705.421067pt;}
.y104{bottom:706.701067pt;}
.y11e{bottom:707.021067pt;}
.y13c{bottom:708.000000pt;}
.yc3{bottom:713.421067pt;}
.y3d{bottom:714.666667pt;}
.y163{bottom:721.421067pt;}
.ydc{bottom:723.981067pt;}
.yc{bottom:726.861067pt;}
.y13a{bottom:728.000000pt;}
.y26{bottom:732.621067pt;}
.ya7{bottom:732.941067pt;}
.y11d{bottom:734.861067pt;}
.yc2{bottom:740.941067pt;}
.y82{bottom:741.333333pt;}
.y138{bottom:746.666667pt;}
.y162{bottom:748.941067pt;}
.ydb{bottom:751.501067pt;}
.yb{bottom:759.501067pt;}
.ya6{bottom:760.461067pt;}
.y11c{bottom:762.381067pt;}
.y136{bottom:766.666667pt;}
.y25{bottom:766.861067pt;}
.yc1{bottom:768.461067pt;}
.yda{bottom:779.341067pt;}
.yf6{bottom:786.666667pt;}
.y161{bottom:787.341067pt;}
.ya5{bottom:788.301067pt;}
.y11b{bottom:789.901067pt;}
.y134{bottom:792.000000pt;}
.ya{bottom:792.781067pt;}
.yc0{bottom:796.301067pt;}
.y24{bottom:801.101067pt;}
.yd9{bottom:806.861067pt;}
.y32{bottom:812.000000pt;}
.y160{bottom:814.861067pt;}
.ya4{bottom:815.821067pt;}
.y11a{bottom:817.421067pt;}
.ybf{bottom:823.821067pt;}
.y9{bottom:825.421067pt;}
.y132{bottom:830.666667pt;}
.yd8{bottom:834.381067pt;}
.y23{bottom:835.341067pt;}
.y15f{bottom:842.381067pt;}
.y119{bottom:845.261067pt;}
.ya3{bottom:845.901067pt;}
.yf4{bottom:846.666667pt;}
.y130{bottom:850.666667pt;}
.ybe{bottom:861.901067pt;}
.y8{bottom:863.821067pt;}
.y12e{bottom:869.333333pt;}
.y22{bottom:869.581067pt;}
.y15e{bottom:869.901067pt;}
.y118{bottom:872.781067pt;}
.y7f{bottom:876.000000pt;}
.yf3{bottom:884.301067pt;}
.y12c{bottom:889.333333pt;}
.ya2{bottom:889.741067pt;}
.y15d{bottom:897.741067pt;}
.y117{bottom:900.301067pt;}
.y7{bottom:901.901067pt;}
.y21{bottom:903.821067pt;}
.yf2{bottom:911.821067pt;}
.y12a{bottom:916.000000pt;}
.ybd{bottom:917.261067pt;}
.y15c{bottom:925.261067pt;}
.ya1{bottom:927.821067pt;}
.y6{bottom:929.421067pt;}
.y20{bottom:938.061067pt;}
.y128{bottom:942.666667pt;}
.ybc{bottom:944.781067pt;}
.y30{bottom:945.333333pt;}
.y15b{bottom:952.781067pt;}
.ya0{bottom:955.661067pt;}
.y5{bottom:967.821067pt;}
.y1f{bottom:972.301067pt;}
.y15a{bottom:980.621067pt;}
.y2f{bottom:983.181067pt;}
.y4{bottom:1008.461067pt;}
.y1e{bottom:1010.701067pt;}
.y2{bottom:1054.666667pt;}
.y1{bottom:1059.981067pt;}
.h3{height:20.000000pt;}
.h18{height:21.333333pt;}
.h16{height:24.000000pt;}
.h9{height:25.333333pt;}
.h19{height:26.666667pt;}
.h17{height:28.000000pt;}
.h1a{height:29.333333pt;}
.h7{height:29.349375pt;}
.h1b{height:40.000000pt;}
.h15{height:42.666667pt;}
.h5{height:43.375000pt;}
.h13{height:43.562500pt;}
.h8{height:44.437500pt;}
.h2{height:44.468750pt;}
.h4{height:50.315000pt;}
.h6{height:51.109375pt;}
.h14{height:61.333333pt;}
.hc{height:80.000000pt;}
.hb{height:98.666667pt;}
.ha{height:134.666667pt;}
.h12{height:136.000000pt;}
.h11{height:150.666667pt;}
.hd{height:153.333333pt;}
.hf{height:190.666667pt;}
.h10{height:205.333333pt;}
.he{height:321.333333pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:57.333333pt;}
.wb{width:58.666667pt;}
.wd{width:65.333333pt;}
.wf{width:66.666667pt;}
.w3{width:100.000000pt;}
.w6{width:102.666667pt;}
.w8{width:104.000000pt;}
.w7{width:125.333333pt;}
.w4{width:129.333333pt;}
.w5{width:150.666667pt;}
.w9{width:229.333333pt;}
.wa{width:272.000000pt;}
.we{width:401.333333pt;}
.wc{width:545.333333pt;}
.w10{width:594.666667pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.818533pt;}
.x24{left:19.018533pt;}
.x20{left:22.538533pt;}
.x1e{left:25.738533pt;}
.x25{left:29.578533pt;}
.x3{left:49.045200pt;}
.x1{left:96.778533pt;}
.x26{left:98.058533pt;}
.x8{left:105.738533pt;}
.x6{left:120.458533pt;}
.xb{left:139.658533pt;}
.xe{left:144.778533pt;}
.x17{left:153.333333pt;}
.xa{left:161.098533pt;}
.x1c{left:170.058533pt;}
.x11{left:194.666667pt;}
.x15{left:198.666667pt;}
.x23{left:225.098533pt;}
.x27{left:230.858533pt;}
.x22{left:261.258533pt;}
.x4{left:278.538533pt;}
.x12{left:322.666667pt;}
.x19{left:334.538533pt;}
.xf{left:336.458533pt;}
.x9{left:345.098533pt;}
.xd{left:354.698533pt;}
.x7{left:358.858533pt;}
.x1b{left:361.418533pt;}
.x1a{left:396.618533pt;}
.x5{left:397.578533pt;}
.xc{left:421.578533pt;}
.x16{left:426.666667pt;}
.x13{left:472.000000pt;}
.x1d{left:496.000000pt;}
.x1f{left:560.000000pt;}
.x14{left:573.333333pt;}
.x21{left:624.000000pt;}
.x18{left:633.333333pt;}
.x2{left:641.333333pt;}
}




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