
    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_53d0ce0071dfc0cbe0ba125c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.890000;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_b4e0e829673516b724639f7e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_9fdc832213d62e691307b198.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.301000;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_049b369f34ba3f718cdf4621.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.055000;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_744fc194d66742b20261928c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_c38d5a0a3827c971eeffe75c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_7bcc4aefb38a705c1eaac688.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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;}
.ma{transform:matrix(0.000000,0.249887,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249887,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249887,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,0.249873,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249873,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249873,-0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,0.249807,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249807,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249807,-0.250000,0.000000,0,0);}
.m9{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.v3{vertical-align:9.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.086400px;}
.ls3{letter-spacing:1.036800px;}
.ls1{letter-spacing:34.360860px;}
.ls4{letter-spacing:70.389600px;}
.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:-15.000000px;}
.ws2{word-spacing:-8.642742px;}
.ws8{word-spacing:-8.336664px;}
.ws4{word-spacing:-7.857948px;}
.ws5{word-spacing:-7.757034px;}
.ws3{word-spacing:-7.662792px;}
.ws7{word-spacing:-7.391742px;}
.ws6{word-spacing:-6.502698px;}
.ws9{word-spacing:-5.557776px;}
.wsc{word-spacing:-2.110152px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:126.480046px;}
.wsb{word-spacing:182.565024px;}
.wsa{word-spacing:193.452672px;}
._29{margin-left:-283.890470px;}
._11{margin-left:-5.523300px;}
._1{margin-left:-3.633600px;}
._4{margin-left:-1.644000px;}
._2{width:1.108800px;}
._3{width:2.119200px;}
._5{width:3.534360px;}
._6{width:5.307660px;}
._8{width:6.652920px;}
._7{width:7.678440px;}
._c{width:8.697600px;}
._d{width:9.900000px;}
._16{width:11.258280px;}
._10{width:12.898560px;}
._31{width:16.021080px;}
._f{width:17.220900px;}
._e{width:18.384060px;}
._18{width:20.148000px;}
._15{width:21.443220px;}
._17{width:23.301600px;}
._23{width:24.523920px;}
._1a{width:26.140920px;}
._1b{width:27.736920px;}
._22{width:29.672100px;}
._1c{width:30.727260px;}
._19{width:33.662760px;}
._a{width:35.914500px;}
._34{width:37.038720px;}
._b{width:38.828820px;}
._33{width:40.041120px;}
._14{width:41.534460px;}
._13{width:42.562860px;}
._12{width:44.750400px;}
._2e{width:45.832800px;}
._2a{width:47.620800px;}
._32{width:48.873780px;}
._1f{width:50.085600px;}
._21{width:51.130560px;}
._20{width:54.055200px;}
._0{width:57.057600px;}
._35{width:60.201600px;}
._25{width:63.363240px;}
._24{width:66.470400px;}
._9{width:69.067200px;}
._26{width:72.175200px;}
._2c{width:74.474460px;}
._2d{width:75.927360px;}
._36{width:83.664120px;}
._2f{width:117.940800px;}
._30{width:120.994440px;}
._27{width:133.975437px;}
._2b{width:135.273600px;}
._1d{width:142.008060px;}
._1e{width:144.461580px;}
._28{width:205.706035px;}
.fc2{color:transparent;}
.fc1{color:rgb(79,23,126);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:19.992000px;}
.fsc{font-size:23.391000px;}
.fsa{font-size:26.589000px;}
.fs6{font-size:27.564000px;}
.fs9{font-size:27.903000px;}
.fs7{font-size:28.266000px;}
.fsb{font-size:29.988000px;}
.fs5{font-size:31.089000px;}
.fs8{font-size:34.794000px;}
.fs2{font-size:39.000000px;}
.fs4{font-size:41.448000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:2.250000px;}
.y5{bottom:3.750000px;}
.y9b{bottom:118.500000px;}
.y60{bottom:126.000000px;}
.y14f{bottom:126.750000px;}
.yff{bottom:127.500000px;}
.y9a{bottom:135.750000px;}
.ye4{bottom:141.750000px;}
.y5f{bottom:143.250000px;}
.y14e{bottom:144.000000px;}
.yfe{bottom:144.750000px;}
.y3d{bottom:150.000000px;}
.y99{bottom:153.000000px;}
.ye3{bottom:159.000000px;}
.y5e{bottom:160.500000px;}
.y14d{bottom:161.250000px;}
.yfd{bottom:162.000000px;}
.y3c{bottom:167.250000px;}
.y98{bottom:170.250000px;}
.ye2{bottom:176.250000px;}
.y5d{bottom:177.750000px;}
.y14c{bottom:178.500000px;}
.yfc{bottom:179.250000px;}
.y3b{bottom:184.500000px;}
.y97{bottom:187.500000px;}
.ye1{bottom:193.500000px;}
.y5c{bottom:195.000000px;}
.y14b{bottom:195.750000px;}
.yfb{bottom:196.500000px;}
.y96{bottom:204.750000px;}
.y3a{bottom:207.000000px;}
.ye0{bottom:210.750000px;}
.y5b{bottom:212.250000px;}
.y14a{bottom:213.000000px;}
.y95{bottom:222.000000px;}
.yfa{bottom:227.250000px;}
.ydf{bottom:228.000000px;}
.y5a{bottom:229.500000px;}
.y39{bottom:230.250000px;}
.y94{bottom:239.250000px;}
.yf9{bottom:244.500000px;}
.yde{bottom:245.250000px;}
.y59{bottom:246.750000px;}
.y149{bottom:247.500000px;}
.y38{bottom:253.500000px;}
.y93{bottom:256.500000px;}
.yf8{bottom:261.750000px;}
.ydd{bottom:262.500000px;}
.y58{bottom:264.000000px;}
.y148{bottom:264.750000px;}
.y37{bottom:270.000000px;}
.y92{bottom:273.750000px;}
.yf7{bottom:279.000000px;}
.ydc{bottom:279.750000px;}
.y57{bottom:281.250000px;}
.y147{bottom:282.000000px;}
.y91{bottom:291.000000px;}
.y36{bottom:293.250000px;}
.ydb{bottom:297.000000px;}
.y56{bottom:298.500000px;}
.y146{bottom:299.250000px;}
.y90{bottom:308.250000px;}
.y35{bottom:309.750000px;}
.yda{bottom:314.250000px;}
.y55{bottom:315.750000px;}
.y145{bottom:316.500000px;}
.y8f{bottom:325.500000px;}
.yf6{bottom:327.000000px;}
.yd9{bottom:331.500000px;}
.y34{bottom:333.000000px;}
.y144{bottom:333.750000px;}
.y8e{bottom:342.750000px;}
.yd8{bottom:348.750000px;}
.y33{bottom:350.250000px;}
.y143{bottom:351.000000px;}
.yf5{bottom:357.750000px;}
.y8d{bottom:360.000000px;}
.yd7{bottom:366.000000px;}
.y32{bottom:367.500000px;}
.y142{bottom:368.250000px;}
.yf4{bottom:375.000000px;}
.y8c{bottom:377.250000px;}
.yd6{bottom:383.250000px;}
.y31{bottom:384.750000px;}
.y141{bottom:385.500000px;}
.yf3{bottom:392.250000px;}
.y8b{bottom:394.500000px;}
.yd5{bottom:400.500000px;}
.y54{bottom:402.000000px;}
.y140{bottom:402.750000px;}
.y30{bottom:408.000000px;}
.yf2{bottom:409.500000px;}
.y8a{bottom:411.750000px;}
.yd4{bottom:417.750000px;}
.y53{bottom:419.250000px;}
.y13f{bottom:420.000000px;}
.y2f{bottom:424.500000px;}
.yf1{bottom:426.750000px;}
.y89{bottom:429.000000px;}
.yd3{bottom:435.000000px;}
.y52{bottom:436.500000px;}
.y13e{bottom:437.250000px;}
.yf0{bottom:444.000000px;}
.y88{bottom:444.750000px;}
.y2e{bottom:447.750000px;}
.yd2{bottom:452.250000px;}
.y51{bottom:453.750000px;}
.y13d{bottom:454.500000px;}
.y87{bottom:456.750000px;}
.yef{bottom:461.250000px;}
.y2d{bottom:465.000000px;}
.yd1{bottom:469.500000px;}
.y50{bottom:471.000000px;}
.y13c{bottom:471.750000px;}
.yee{bottom:478.500000px;}
.yd0{bottom:486.750000px;}
.y2c{bottom:487.500000px;}
.y4f{bottom:488.250000px;}
.y13b{bottom:489.000000px;}
.y81{bottom:494.250000px;}
.yed{bottom:495.750000px;}
.ycf{bottom:504.000000px;}
.y4e{bottom:505.500000px;}
.y13a{bottom:506.250000px;}
.y2b{bottom:510.750000px;}
.y84{bottom:512.250000px;}
.yec{bottom:513.000000px;}
.y83{bottom:520.500000px;}
.yce{bottom:521.250000px;}
.y4d{bottom:522.750000px;}
.y139{bottom:523.500000px;}
.y2a{bottom:528.000000px;}
.y82{bottom:528.750000px;}
.yeb{bottom:530.250000px;}
.y86{bottom:531.750000px;}
.ycd{bottom:538.500000px;}
.y4c{bottom:540.000000px;}
.y138{bottom:540.750000px;}
.y29{bottom:545.250000px;}
.yea{bottom:547.500000px;}
.y85{bottom:548.250000px;}
.ycc{bottom:555.750000px;}
.y4b{bottom:557.250000px;}
.y137{bottom:558.000000px;}
.y28{bottom:562.500000px;}
.ycb{bottom:573.000000px;}
.y4a{bottom:574.500000px;}
.y136{bottom:575.250000px;}
.ye9{bottom:578.250000px;}
.y27{bottom:579.750000px;}
.y7d{bottom:590.250000px;}
.y49{bottom:591.750000px;}
.y135{bottom:592.500000px;}
.ye8{bottom:595.500000px;}
.y26{bottom:597.000000px;}
.y7c{bottom:599.250000px;}
.yca{bottom:607.500000px;}
.y48{bottom:609.000000px;}
.y79{bottom:609.750000px;}
.ye7{bottom:612.750000px;}
.y25{bottom:614.250000px;}
.yc9{bottom:624.750000px;}
.y47{bottom:626.250000px;}
.y134{bottom:627.000000px;}
.y7f{bottom:628.500000px;}
.ye6{bottom:630.000000px;}
.y24{bottom:631.500000px;}
.y80{bottom:638.250000px;}
.y7b{bottom:641.250000px;}
.yc8{bottom:642.000000px;}
.y46{bottom:643.500000px;}
.y133{bottom:644.250000px;}
.ye5{bottom:647.250000px;}
.y23{bottom:648.750000px;}
.y7a{bottom:650.250000px;}
.yc7{bottom:659.250000px;}
.y45{bottom:660.750000px;}
.y132{bottom:661.500000px;}
.y22{bottom:666.000000px;}
.y7e{bottom:674.250000px;}
.yc6{bottom:676.500000px;}
.y44{bottom:678.000000px;}
.y131{bottom:678.750000px;}
.y21{bottom:683.250000px;}
.yc5{bottom:693.750000px;}
.y43{bottom:695.250000px;}
.y130{bottom:696.000000px;}
.y20{bottom:700.500000px;}
.yc4{bottom:711.000000px;}
.y42{bottom:712.500000px;}
.y12f{bottom:713.250000px;}
.y1f{bottom:717.750000px;}
.yc3{bottom:728.250000px;}
.y78{bottom:729.750000px;}
.y12e{bottom:730.500000px;}
.y1e{bottom:735.000000px;}
.y41{bottom:735.750000px;}
.yc2{bottom:745.500000px;}
.y77{bottom:747.000000px;}
.y12d{bottom:747.750000px;}
.y1d{bottom:752.250000px;}
.yc1{bottom:762.750000px;}
.y76{bottom:764.250000px;}
.y12c{bottom:765.000000px;}
.y1c{bottom:769.500000px;}
.y40{bottom:775.500000px;}
.yc0{bottom:780.000000px;}
.y75{bottom:781.500000px;}
.y12b{bottom:782.250000px;}
.y1b{bottom:786.750000px;}
.ybf{bottom:797.250000px;}
.y3f{bottom:798.750000px;}
.y12a{bottom:799.500000px;}
.y1a{bottom:804.000000px;}
.ybe{bottom:814.500000px;}
.y3e{bottom:815.250000px;}
.y74{bottom:816.000000px;}
.y129{bottom:816.750000px;}
.y19{bottom:821.250000px;}
.ybd{bottom:831.750000px;}
.y73{bottom:833.250000px;}
.y18{bottom:838.500000px;}
.ybc{bottom:849.000000px;}
.y128{bottom:849.750000px;}
.y72{bottom:850.500000px;}
.y17{bottom:856.500000px;}
.y127{bottom:862.500000px;}
.ybb{bottom:866.250000px;}
.y71{bottom:867.750000px;}
.y16{bottom:875.250000px;}
.y101{bottom:876.750000px;}
.y103{bottom:878.250000px;}
.y123{bottom:880.500000px;}
.yba{bottom:883.500000px;}
.y70{bottom:885.000000px;}
.y15{bottom:891.000000px;}
.y102{bottom:891.750000px;}
.y11c{bottom:894.000000px;}
.yb9{bottom:900.750000px;}
.y6f{bottom:902.250000px;}
.y14{bottom:906.750000px;}
.y11d{bottom:915.000000px;}
.yb8{bottom:918.000000px;}
.y6e{bottom:919.500000px;}
.y13{bottom:922.500000px;}
.y10f{bottom:923.250000px;}
.y10e{bottom:925.500000px;}
.yb7{bottom:935.250000px;}
.y6d{bottom:936.750000px;}
.y12{bottom:937.500000px;}
.y110{bottom:944.250000px;}
.y119{bottom:951.000000px;}
.yb6{bottom:952.500000px;}
.y11{bottom:953.250000px;}
.y6c{bottom:954.000000px;}
.y11b{bottom:960.000000px;}
.y121{bottom:960.750000px;}
.y11a{bottom:964.500000px;}
.y10b{bottom:967.500000px;}
.y126{bottom:968.250000px;}
.y10{bottom:969.000000px;}
.yb5{bottom:969.750000px;}
.y6b{bottom:971.250000px;}
.y10c{bottom:972.750000px;}
.y118{bottom:975.000000px;}
.yf{bottom:984.000000px;}
.y100{bottom:987.000000px;}
.y120{bottom:987.750000px;}
.y6a{bottom:988.500000px;}
.yb4{bottom:989.250000px;}
.y10a{bottom:990.000000px;}
.y125{bottom:993.000000px;}
.y10d{bottom:996.000000px;}
.y108{bottom:996.750000px;}
.ye{bottom:999.750000px;}
.y122{bottom:1001.250000px;}
.y69{bottom:1005.750000px;}
.y11f{bottom:1007.250000px;}
.yb3{bottom:1008.000000px;}
.y109{bottom:1012.500000px;}
.y11e{bottom:1014.750000px;}
.yd{bottom:1016.250000px;}
.yae{bottom:1018.500000px;}
.ya0{bottom:1020.750000px;}
.yac{bottom:1021.500000px;}
.y68{bottom:1023.000000px;}
.yb0{bottom:1026.000000px;}
.ya3{bottom:1026.750000px;}
.y107{bottom:1029.750000px;}
.y112{bottom:1031.250000px;}
.yc{bottom:1032.750000px;}
.y116{bottom:1034.250000px;}
.y104{bottom:1035.750000px;}
.y117{bottom:1036.500000px;}
.y111{bottom:1039.500000px;}
.y67{bottom:1040.250000px;}
.ya2{bottom:1044.750000px;}
.ya1{bottom:1045.500000px;}
.y113{bottom:1046.250000px;}
.ya5{bottom:1047.000000px;}
.yb{bottom:1047.750000px;}
.y114{bottom:1051.500000px;}
.y106{bottom:1056.000000px;}
.y66{bottom:1057.500000px;}
.y124{bottom:1063.500000px;}
.yb2{bottom:1064.250000px;}
.y105{bottom:1065.000000px;}
.yab{bottom:1066.500000px;}
.yad{bottom:1067.250000px;}
.ya{bottom:1071.000000px;}
.y65{bottom:1074.750000px;}
.y115{bottom:1080.000000px;}
.y9{bottom:1081.500000px;}
.y9c{bottom:1082.250000px;}
.ya9{bottom:1084.500000px;}
.y64{bottom:1092.000000px;}
.yaa{bottom:1098.000000px;}
.y8{bottom:1099.500000px;}
.ya8{bottom:1100.250000px;}
.ya7{bottom:1108.500000px;}
.y63{bottom:1109.250000px;}
.yb1{bottom:1112.250000px;}
.ya4{bottom:1114.500000px;}
.ya6{bottom:1116.750000px;}
.y7{bottom:1119.750000px;}
.y62{bottom:1126.500000px;}
.y9f{bottom:1130.250000px;}
.y9e{bottom:1138.500000px;}
.y6{bottom:1140.000000px;}
.y61{bottom:1143.750000px;}
.y9d{bottom:1146.750000px;}
.y2{bottom:1174.500000px;}
.y4{bottom:1192.500000px;}
.y3{bottom:1196.250000px;}
.y1{bottom:1197.000000px;}
.h12{height:9.000000px;}
.h16{height:14.814072px;}
.h4{height:16.500000px;}
.h15{height:17.332731px;}
.h13{height:19.702449px;}
.he{height:20.424924px;}
.h11{height:20.676123px;}
.h17{height:20.814072px;}
.hf{height:20.945106px;}
.h14{height:22.221108px;}
.hd{height:23.036949px;}
.h10{height:25.782354px;}
.h7{height:26.637000px;}
.h18{height:28.702449px;}
.hc{height:30.712968px;}
.h8{height:36.882000px;}
.ha{height:37.152000px;}
.h1{height:40.980000px;}
.h3{height:41.280000px;}
.hb{height:44.460000px;}
.h2{height:49.536000px;}
.h9{height:51.840000px;}
.h6{height:57.600000px;}
.h5{height:69.120000px;}
.h0{height:1263.000000px;}
.w1{width:0.750000px;}
.w2{width:1.500000px;}
.w3{width:3.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:106.500000px;}
.x18{left:116.250000px;}
.x3{left:121.500000px;}
.xa{left:127.500166px;}
.x4{left:129.000000px;}
.x10{left:133.500657px;}
.x19{left:136.499951px;}
.x1e{left:141.749930px;}
.x1f{left:143.999986px;}
.x1d{left:147.000000px;}
.x21{left:158.250000px;}
.x7{left:160.500000px;}
.x66{left:177.750000px;}
.x1a{left:222.750000px;}
.x17{left:234.750000px;}
.x1b{left:241.500000px;}
.x1c{left:245.997968px;}
.x8{left:280.500000px;}
.x15{left:290.250000px;}
.x16{left:292.500032px;}
.x14{left:309.000000px;}
.x13{left:326.999943px;}
.x12{left:336.750000px;}
.x1{left:352.500000px;}
.x9{left:360.000053px;}
.x5{left:393.749634px;}
.x11{left:404.250000px;}
.x6{left:417.000000px;}
.x20{left:424.500000px;}
.xb{left:467.997116px;}
.x61{left:479.250000px;}
.x27{left:481.500000px;}
.x5d{left:484.499324px;}
.xc{left:488.996922px;}
.xd{left:494.994476px;}
.x3d{left:505.500000px;}
.x3e{left:515.250000px;}
.x41{left:521.999486px;}
.x62{left:523.500000px;}
.x2c{left:526.500000px;}
.x4b{left:533.250000px;}
.x3c{left:539.250000px;}
.x47{left:543.000000px;}
.x64{left:544.500000px;}
.x39{left:551.250000px;}
.x5c{left:554.250021px;}
.x51{left:556.499704px;}
.x55{left:558.749703px;}
.x37{left:564.750000px;}
.x4c{left:566.250000px;}
.x53{left:570.749699px;}
.x43{left:574.500000px;}
.x38{left:579.000000px;}
.x63{left:580.500000px;}
.x48{left:583.500000px;}
.x2a{left:585.000057px;}
.x52{left:587.249693px;}
.x34{left:588.750000px;}
.x3f{left:590.250000px;}
.x40{left:594.000000px;}
.x29{left:597.000040px;}
.x46{left:598.500000px;}
.x3a{left:605.999974px;}
.x5b{left:609.000000px;}
.x24{left:611.999397px;}
.x23{left:614.250000px;}
.x25{left:618.749302px;}
.x50{left:620.249981px;}
.x2b{left:624.000005px;}
.x35{left:630.000000px;}
.x33{left:631.500000px;}
.x54{left:634.499676px;}
.x4e{left:636.749975px;}
.x22{left:639.000000px;}
.x28{left:644.999986px;}
.x26{left:657.750000px;}
.x4f{left:660.749966px;}
.x56{left:662.999066px;}
.x60{left:664.500000px;}
.x44{left:672.000000px;}
.x3b{left:686.250000px;}
.x4d{left:689.250106px;}
.x5f{left:690.750000px;}
.x5a{left:698.250000px;}
.x36{left:708.750000px;}
.x59{left:713.250000px;}
.x4a{left:719.250001px;}
.x49{left:720.750000px;}
.x57{left:731.999041px;}
.x5e{left:733.500000px;}
.x45{left:738.000000px;}
.x31{left:743.247871px;}
.x2f{left:744.749858px;}
.x2d{left:746.250000px;}
.x30{left:749.998526px;}
.x2e{left:755.249908px;}
.x58{left:760.499031px;}
.xe{left:771.750000px;}
.x42{left:774.750000px;}
.x32{left:779.250000px;}
.xf{left:786.750000px;}
.x65{left:789.750000px;}
@media print{
.v1{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.v3{vertical-align:8.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.076800pt;}
.ls3{letter-spacing:0.921600pt;}
.ls1{letter-spacing:30.542987pt;}
.ls4{letter-spacing:62.568533pt;}
.ws0{word-spacing:-13.333333pt;}
.ws2{word-spacing:-7.682437pt;}
.ws8{word-spacing:-7.410368pt;}
.ws4{word-spacing:-6.984843pt;}
.ws5{word-spacing:-6.895141pt;}
.ws3{word-spacing:-6.811371pt;}
.ws7{word-spacing:-6.570437pt;}
.ws6{word-spacing:-5.780176pt;}
.ws9{word-spacing:-4.940245pt;}
.wsc{word-spacing:-1.875691pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:112.426708pt;}
.wsb{word-spacing:162.280021pt;}
.wsa{word-spacing:171.957931pt;}
._29{margin-left:-252.347085pt;}
._11{margin-left:-4.909600pt;}
._1{margin-left:-3.229867pt;}
._4{margin-left:-1.461333pt;}
._2{width:0.985600pt;}
._3{width:1.883733pt;}
._5{width:3.141653pt;}
._6{width:4.717920pt;}
._8{width:5.913707pt;}
._7{width:6.825280pt;}
._c{width:7.731200pt;}
._d{width:8.800000pt;}
._16{width:10.007360pt;}
._10{width:11.465387pt;}
._31{width:14.240960pt;}
._f{width:15.307467pt;}
._e{width:16.341387pt;}
._18{width:17.909333pt;}
._15{width:19.060640pt;}
._17{width:20.712533pt;}
._23{width:21.799040pt;}
._1a{width:23.236373pt;}
._1b{width:24.655040pt;}
._22{width:26.375200pt;}
._1c{width:27.313120pt;}
._19{width:29.922453pt;}
._a{width:31.924000pt;}
._34{width:32.923307pt;}
._b{width:34.514507pt;}
._33{width:35.592107pt;}
._14{width:36.919520pt;}
._13{width:37.833653pt;}
._12{width:39.778133pt;}
._2e{width:40.740267pt;}
._2a{width:42.329600pt;}
._32{width:43.443360pt;}
._1f{width:44.520533pt;}
._21{width:45.449387pt;}
._20{width:48.049067pt;}
._0{width:50.717867pt;}
._35{width:53.512533pt;}
._25{width:56.322880pt;}
._24{width:59.084800pt;}
._9{width:61.393067pt;}
._26{width:64.155733pt;}
._2c{width:66.199520pt;}
._2d{width:67.490987pt;}
._36{width:74.368107pt;}
._2f{width:104.836267pt;}
._30{width:107.550613pt;}
._27{width:119.089277pt;}
._2b{width:120.243200pt;}
._1d{width:126.229387pt;}
._1e{width:128.410293pt;}
._28{width:182.849809pt;}
.fsd{font-size:17.770667pt;}
.fsc{font-size:20.792000pt;}
.fsa{font-size:23.634667pt;}
.fs6{font-size:24.501333pt;}
.fs9{font-size:24.802667pt;}
.fs7{font-size:25.125333pt;}
.fsb{font-size:26.656000pt;}
.fs5{font-size:27.634667pt;}
.fs8{font-size:30.928000pt;}
.fs2{font-size:34.666667pt;}
.fs4{font-size:36.842667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:2.000000pt;}
.y5{bottom:3.333333pt;}
.y9b{bottom:105.333333pt;}
.y60{bottom:112.000000pt;}
.y14f{bottom:112.666667pt;}
.yff{bottom:113.333333pt;}
.y9a{bottom:120.666667pt;}
.ye4{bottom:126.000000pt;}
.y5f{bottom:127.333333pt;}
.y14e{bottom:128.000000pt;}
.yfe{bottom:128.666667pt;}
.y3d{bottom:133.333333pt;}
.y99{bottom:136.000000pt;}
.ye3{bottom:141.333333pt;}
.y5e{bottom:142.666667pt;}
.y14d{bottom:143.333333pt;}
.yfd{bottom:144.000000pt;}
.y3c{bottom:148.666667pt;}
.y98{bottom:151.333333pt;}
.ye2{bottom:156.666667pt;}
.y5d{bottom:158.000000pt;}
.y14c{bottom:158.666667pt;}
.yfc{bottom:159.333333pt;}
.y3b{bottom:164.000000pt;}
.y97{bottom:166.666667pt;}
.ye1{bottom:172.000000pt;}
.y5c{bottom:173.333333pt;}
.y14b{bottom:174.000000pt;}
.yfb{bottom:174.666667pt;}
.y96{bottom:182.000000pt;}
.y3a{bottom:184.000000pt;}
.ye0{bottom:187.333333pt;}
.y5b{bottom:188.666667pt;}
.y14a{bottom:189.333333pt;}
.y95{bottom:197.333333pt;}
.yfa{bottom:202.000000pt;}
.ydf{bottom:202.666667pt;}
.y5a{bottom:204.000000pt;}
.y39{bottom:204.666667pt;}
.y94{bottom:212.666667pt;}
.yf9{bottom:217.333333pt;}
.yde{bottom:218.000000pt;}
.y59{bottom:219.333333pt;}
.y149{bottom:220.000000pt;}
.y38{bottom:225.333333pt;}
.y93{bottom:228.000000pt;}
.yf8{bottom:232.666667pt;}
.ydd{bottom:233.333333pt;}
.y58{bottom:234.666667pt;}
.y148{bottom:235.333333pt;}
.y37{bottom:240.000000pt;}
.y92{bottom:243.333333pt;}
.yf7{bottom:248.000000pt;}
.ydc{bottom:248.666667pt;}
.y57{bottom:250.000000pt;}
.y147{bottom:250.666667pt;}
.y91{bottom:258.666667pt;}
.y36{bottom:260.666667pt;}
.ydb{bottom:264.000000pt;}
.y56{bottom:265.333333pt;}
.y146{bottom:266.000000pt;}
.y90{bottom:274.000000pt;}
.y35{bottom:275.333333pt;}
.yda{bottom:279.333333pt;}
.y55{bottom:280.666667pt;}
.y145{bottom:281.333333pt;}
.y8f{bottom:289.333333pt;}
.yf6{bottom:290.666667pt;}
.yd9{bottom:294.666667pt;}
.y34{bottom:296.000000pt;}
.y144{bottom:296.666667pt;}
.y8e{bottom:304.666667pt;}
.yd8{bottom:310.000000pt;}
.y33{bottom:311.333333pt;}
.y143{bottom:312.000000pt;}
.yf5{bottom:318.000000pt;}
.y8d{bottom:320.000000pt;}
.yd7{bottom:325.333333pt;}
.y32{bottom:326.666667pt;}
.y142{bottom:327.333333pt;}
.yf4{bottom:333.333333pt;}
.y8c{bottom:335.333333pt;}
.yd6{bottom:340.666667pt;}
.y31{bottom:342.000000pt;}
.y141{bottom:342.666667pt;}
.yf3{bottom:348.666667pt;}
.y8b{bottom:350.666667pt;}
.yd5{bottom:356.000000pt;}
.y54{bottom:357.333333pt;}
.y140{bottom:358.000000pt;}
.y30{bottom:362.666667pt;}
.yf2{bottom:364.000000pt;}
.y8a{bottom:366.000000pt;}
.yd4{bottom:371.333333pt;}
.y53{bottom:372.666667pt;}
.y13f{bottom:373.333333pt;}
.y2f{bottom:377.333333pt;}
.yf1{bottom:379.333333pt;}
.y89{bottom:381.333333pt;}
.yd3{bottom:386.666667pt;}
.y52{bottom:388.000000pt;}
.y13e{bottom:388.666667pt;}
.yf0{bottom:394.666667pt;}
.y88{bottom:395.333333pt;}
.y2e{bottom:398.000000pt;}
.yd2{bottom:402.000000pt;}
.y51{bottom:403.333333pt;}
.y13d{bottom:404.000000pt;}
.y87{bottom:406.000000pt;}
.yef{bottom:410.000000pt;}
.y2d{bottom:413.333333pt;}
.yd1{bottom:417.333333pt;}
.y50{bottom:418.666667pt;}
.y13c{bottom:419.333333pt;}
.yee{bottom:425.333333pt;}
.yd0{bottom:432.666667pt;}
.y2c{bottom:433.333333pt;}
.y4f{bottom:434.000000pt;}
.y13b{bottom:434.666667pt;}
.y81{bottom:439.333333pt;}
.yed{bottom:440.666667pt;}
.ycf{bottom:448.000000pt;}
.y4e{bottom:449.333333pt;}
.y13a{bottom:450.000000pt;}
.y2b{bottom:454.000000pt;}
.y84{bottom:455.333333pt;}
.yec{bottom:456.000000pt;}
.y83{bottom:462.666667pt;}
.yce{bottom:463.333333pt;}
.y4d{bottom:464.666667pt;}
.y139{bottom:465.333333pt;}
.y2a{bottom:469.333333pt;}
.y82{bottom:470.000000pt;}
.yeb{bottom:471.333333pt;}
.y86{bottom:472.666667pt;}
.ycd{bottom:478.666667pt;}
.y4c{bottom:480.000000pt;}
.y138{bottom:480.666667pt;}
.y29{bottom:484.666667pt;}
.yea{bottom:486.666667pt;}
.y85{bottom:487.333333pt;}
.ycc{bottom:494.000000pt;}
.y4b{bottom:495.333333pt;}
.y137{bottom:496.000000pt;}
.y28{bottom:500.000000pt;}
.ycb{bottom:509.333333pt;}
.y4a{bottom:510.666667pt;}
.y136{bottom:511.333333pt;}
.ye9{bottom:514.000000pt;}
.y27{bottom:515.333333pt;}
.y7d{bottom:524.666667pt;}
.y49{bottom:526.000000pt;}
.y135{bottom:526.666667pt;}
.ye8{bottom:529.333333pt;}
.y26{bottom:530.666667pt;}
.y7c{bottom:532.666667pt;}
.yca{bottom:540.000000pt;}
.y48{bottom:541.333333pt;}
.y79{bottom:542.000000pt;}
.ye7{bottom:544.666667pt;}
.y25{bottom:546.000000pt;}
.yc9{bottom:555.333333pt;}
.y47{bottom:556.666667pt;}
.y134{bottom:557.333333pt;}
.y7f{bottom:558.666667pt;}
.ye6{bottom:560.000000pt;}
.y24{bottom:561.333333pt;}
.y80{bottom:567.333333pt;}
.y7b{bottom:570.000000pt;}
.yc8{bottom:570.666667pt;}
.y46{bottom:572.000000pt;}
.y133{bottom:572.666667pt;}
.ye5{bottom:575.333333pt;}
.y23{bottom:576.666667pt;}
.y7a{bottom:578.000000pt;}
.yc7{bottom:586.000000pt;}
.y45{bottom:587.333333pt;}
.y132{bottom:588.000000pt;}
.y22{bottom:592.000000pt;}
.y7e{bottom:599.333333pt;}
.yc6{bottom:601.333333pt;}
.y44{bottom:602.666667pt;}
.y131{bottom:603.333333pt;}
.y21{bottom:607.333333pt;}
.yc5{bottom:616.666667pt;}
.y43{bottom:618.000000pt;}
.y130{bottom:618.666667pt;}
.y20{bottom:622.666667pt;}
.yc4{bottom:632.000000pt;}
.y42{bottom:633.333333pt;}
.y12f{bottom:634.000000pt;}
.y1f{bottom:638.000000pt;}
.yc3{bottom:647.333333pt;}
.y78{bottom:648.666667pt;}
.y12e{bottom:649.333333pt;}
.y1e{bottom:653.333333pt;}
.y41{bottom:654.000000pt;}
.yc2{bottom:662.666667pt;}
.y77{bottom:664.000000pt;}
.y12d{bottom:664.666667pt;}
.y1d{bottom:668.666667pt;}
.yc1{bottom:678.000000pt;}
.y76{bottom:679.333333pt;}
.y12c{bottom:680.000000pt;}
.y1c{bottom:684.000000pt;}
.y40{bottom:689.333333pt;}
.yc0{bottom:693.333333pt;}
.y75{bottom:694.666667pt;}
.y12b{bottom:695.333333pt;}
.y1b{bottom:699.333333pt;}
.ybf{bottom:708.666667pt;}
.y3f{bottom:710.000000pt;}
.y12a{bottom:710.666667pt;}
.y1a{bottom:714.666667pt;}
.ybe{bottom:724.000000pt;}
.y3e{bottom:724.666667pt;}
.y74{bottom:725.333333pt;}
.y129{bottom:726.000000pt;}
.y19{bottom:730.000000pt;}
.ybd{bottom:739.333333pt;}
.y73{bottom:740.666667pt;}
.y18{bottom:745.333333pt;}
.ybc{bottom:754.666667pt;}
.y128{bottom:755.333333pt;}
.y72{bottom:756.000000pt;}
.y17{bottom:761.333333pt;}
.y127{bottom:766.666667pt;}
.ybb{bottom:770.000000pt;}
.y71{bottom:771.333333pt;}
.y16{bottom:778.000000pt;}
.y101{bottom:779.333333pt;}
.y103{bottom:780.666667pt;}
.y123{bottom:782.666667pt;}
.yba{bottom:785.333333pt;}
.y70{bottom:786.666667pt;}
.y15{bottom:792.000000pt;}
.y102{bottom:792.666667pt;}
.y11c{bottom:794.666667pt;}
.yb9{bottom:800.666667pt;}
.y6f{bottom:802.000000pt;}
.y14{bottom:806.000000pt;}
.y11d{bottom:813.333333pt;}
.yb8{bottom:816.000000pt;}
.y6e{bottom:817.333333pt;}
.y13{bottom:820.000000pt;}
.y10f{bottom:820.666667pt;}
.y10e{bottom:822.666667pt;}
.yb7{bottom:831.333333pt;}
.y6d{bottom:832.666667pt;}
.y12{bottom:833.333333pt;}
.y110{bottom:839.333333pt;}
.y119{bottom:845.333333pt;}
.yb6{bottom:846.666667pt;}
.y11{bottom:847.333333pt;}
.y6c{bottom:848.000000pt;}
.y11b{bottom:853.333333pt;}
.y121{bottom:854.000000pt;}
.y11a{bottom:857.333333pt;}
.y10b{bottom:860.000000pt;}
.y126{bottom:860.666667pt;}
.y10{bottom:861.333333pt;}
.yb5{bottom:862.000000pt;}
.y6b{bottom:863.333333pt;}
.y10c{bottom:864.666667pt;}
.y118{bottom:866.666667pt;}
.yf{bottom:874.666667pt;}
.y100{bottom:877.333333pt;}
.y120{bottom:878.000000pt;}
.y6a{bottom:878.666667pt;}
.yb4{bottom:879.333333pt;}
.y10a{bottom:880.000000pt;}
.y125{bottom:882.666667pt;}
.y10d{bottom:885.333333pt;}
.y108{bottom:886.000000pt;}
.ye{bottom:888.666667pt;}
.y122{bottom:890.000000pt;}
.y69{bottom:894.000000pt;}
.y11f{bottom:895.333333pt;}
.yb3{bottom:896.000000pt;}
.y109{bottom:900.000000pt;}
.y11e{bottom:902.000000pt;}
.yd{bottom:903.333333pt;}
.yae{bottom:905.333333pt;}
.ya0{bottom:907.333333pt;}
.yac{bottom:908.000000pt;}
.y68{bottom:909.333333pt;}
.yb0{bottom:912.000000pt;}
.ya3{bottom:912.666667pt;}
.y107{bottom:915.333333pt;}
.y112{bottom:916.666667pt;}
.yc{bottom:918.000000pt;}
.y116{bottom:919.333333pt;}
.y104{bottom:920.666667pt;}
.y117{bottom:921.333333pt;}
.y111{bottom:924.000000pt;}
.y67{bottom:924.666667pt;}
.ya2{bottom:928.666667pt;}
.ya1{bottom:929.333333pt;}
.y113{bottom:930.000000pt;}
.ya5{bottom:930.666667pt;}
.yb{bottom:931.333333pt;}
.y114{bottom:934.666667pt;}
.y106{bottom:938.666667pt;}
.y66{bottom:940.000000pt;}
.y124{bottom:945.333333pt;}
.yb2{bottom:946.000000pt;}
.y105{bottom:946.666667pt;}
.yab{bottom:948.000000pt;}
.yad{bottom:948.666667pt;}
.ya{bottom:952.000000pt;}
.y65{bottom:955.333333pt;}
.y115{bottom:960.000000pt;}
.y9{bottom:961.333333pt;}
.y9c{bottom:962.000000pt;}
.ya9{bottom:964.000000pt;}
.y64{bottom:970.666667pt;}
.yaa{bottom:976.000000pt;}
.y8{bottom:977.333333pt;}
.ya8{bottom:978.000000pt;}
.ya7{bottom:985.333333pt;}
.y63{bottom:986.000000pt;}
.yb1{bottom:988.666667pt;}
.ya4{bottom:990.666667pt;}
.ya6{bottom:992.666667pt;}
.y7{bottom:995.333333pt;}
.y62{bottom:1001.333333pt;}
.y9f{bottom:1004.666667pt;}
.y9e{bottom:1012.000000pt;}
.y6{bottom:1013.333333pt;}
.y61{bottom:1016.666667pt;}
.y9d{bottom:1019.333333pt;}
.y2{bottom:1044.000000pt;}
.y4{bottom:1060.000000pt;}
.y3{bottom:1063.333333pt;}
.y1{bottom:1064.000000pt;}
.h12{height:8.000000pt;}
.h16{height:13.168064pt;}
.h4{height:14.666667pt;}
.h15{height:15.406872pt;}
.h13{height:17.513288pt;}
.he{height:18.155488pt;}
.h11{height:18.378776pt;}
.h17{height:18.501397pt;}
.hf{height:18.617872pt;}
.h14{height:19.752096pt;}
.hd{height:20.477288pt;}
.h10{height:22.917648pt;}
.h7{height:23.677333pt;}
.h18{height:25.513288pt;}
.hc{height:27.300416pt;}
.h8{height:32.784000pt;}
.ha{height:33.024000pt;}
.h1{height:36.426667pt;}
.h3{height:36.693333pt;}
.hb{height:39.520000pt;}
.h2{height:44.032000pt;}
.h9{height:46.080000pt;}
.h6{height:51.200000pt;}
.h5{height:61.440000pt;}
.h0{height:1122.666667pt;}
.w1{width:0.666667pt;}
.w2{width:1.333333pt;}
.w3{width:2.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:94.666667pt;}
.x18{left:103.333333pt;}
.x3{left:108.000000pt;}
.xa{left:113.333481pt;}
.x4{left:114.666667pt;}
.x10{left:118.667251pt;}
.x19{left:121.333290pt;}
.x1e{left:125.999938pt;}
.x1f{left:127.999987pt;}
.x1d{left:130.666667pt;}
.x21{left:140.666667pt;}
.x7{left:142.666667pt;}
.x66{left:158.000000pt;}
.x1a{left:198.000000pt;}
.x17{left:208.666667pt;}
.x1b{left:214.666667pt;}
.x1c{left:218.664860pt;}
.x8{left:249.333333pt;}
.x15{left:258.000000pt;}
.x16{left:260.000028pt;}
.x14{left:274.666667pt;}
.x13{left:290.666616pt;}
.x12{left:299.333333pt;}
.x1{left:313.333333pt;}
.x9{left:320.000047pt;}
.x5{left:349.999675pt;}
.x11{left:359.333333pt;}
.x6{left:370.666667pt;}
.x20{left:377.333333pt;}
.xb{left:415.997436pt;}
.x61{left:426.000000pt;}
.x27{left:428.000000pt;}
.x5d{left:430.666066pt;}
.xc{left:434.663931pt;}
.xd{left:439.995089pt;}
.x3d{left:449.333333pt;}
.x3e{left:458.000000pt;}
.x41{left:463.999543pt;}
.x62{left:465.333333pt;}
.x2c{left:468.000000pt;}
.x4b{left:474.000000pt;}
.x3c{left:479.333333pt;}
.x47{left:482.666667pt;}
.x64{left:484.000000pt;}
.x39{left:490.000000pt;}
.x5c{left:492.666685pt;}
.x51{left:494.666403pt;}
.x55{left:496.666403pt;}
.x37{left:502.000000pt;}
.x4c{left:503.333333pt;}
.x53{left:507.333065pt;}
.x43{left:510.666667pt;}
.x38{left:514.666667pt;}
.x63{left:516.000000pt;}
.x48{left:518.666667pt;}
.x2a{left:520.000051pt;}
.x52{left:521.999727pt;}
.x34{left:523.333333pt;}
.x3f{left:524.666667pt;}
.x40{left:528.000000pt;}
.x29{left:530.666702pt;}
.x46{left:532.000000pt;}
.x3a{left:538.666644pt;}
.x5b{left:541.333333pt;}
.x24{left:543.999464pt;}
.x23{left:546.000000pt;}
.x25{left:549.999380pt;}
.x50{left:551.333316pt;}
.x2b{left:554.666671pt;}
.x35{left:560.000000pt;}
.x33{left:561.333333pt;}
.x54{left:563.999712pt;}
.x4e{left:565.999977pt;}
.x22{left:568.000000pt;}
.x28{left:573.333321pt;}
.x26{left:584.666667pt;}
.x4f{left:587.333303pt;}
.x56{left:589.332503pt;}
.x60{left:590.666667pt;}
.x44{left:597.333333pt;}
.x3b{left:610.000000pt;}
.x4d{left:612.666761pt;}
.x5f{left:614.000000pt;}
.x5a{left:620.666667pt;}
.x36{left:630.000000pt;}
.x59{left:634.000000pt;}
.x4a{left:639.333334pt;}
.x49{left:640.666667pt;}
.x57{left:650.665814pt;}
.x5e{left:652.000000pt;}
.x45{left:656.000000pt;}
.x31{left:660.664775pt;}
.x2f{left:661.999874pt;}
.x2d{left:663.333333pt;}
.x30{left:666.665357pt;}
.x2e{left:671.333252pt;}
.x58{left:675.999138pt;}
.xe{left:686.000000pt;}
.x42{left:688.666667pt;}
.x32{left:692.666667pt;}
.xf{left:699.333333pt;}
.x65{left:702.000000pt;}
}




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