
    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_a9f93baa5f6dcae266734022.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_a24f9c83dfbb366b92609b82.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_1487a61de9d34c7000e745dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_3d837d172bd5945c8a1f683d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927734;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_d8e1f3e36fd2bbb5649d0eeb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927734;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_53c7109ec93a4e6f73834060.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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:ff9;src:url('chunks/assets/font_a75b280ff764bcab0ca25b93.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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:ffa;src:url('chunks/assets/font_2b7d4a6694ff8438e2f8f36b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.870605;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:ffb;src:url('chunks/assets/font_e3dfeb9a65ae0fb4036a5701.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933594;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-40.320000px;}
.v3{vertical-align:-28.080000px;}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.265200px;}
.ls8{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.032400px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.005040px;}
.lsc{letter-spacing:0.052560px;}
.ls1{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.174000px;}
.ls10{letter-spacing:0.212400px;}
.ls4{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.ls13{letter-spacing:1.974720px;}
.ls11{letter-spacing:2.718720px;}
.ls2{letter-spacing:15.120000px;}
.ls12{letter-spacing:16.398720px;}
.lsa{letter-spacing:1322.250240px;}
.ls9{letter-spacing:1431.096000px;}
.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:-72.000000px;}
.wsc{word-spacing:-59.760000px;}
.wsd{word-spacing:-46.800720px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.352000px;}
.wsa{word-spacing:-15.152400px;}
.ws9{word-spacing:-15.030000px;}
.ws8{word-spacing:-14.945040px;}
.ws7{word-spacing:-14.907600px;}
.wsb{word-spacing:-14.674800px;}
.ws6{word-spacing:0.000000px;}
._26{margin-left:-214.685520px;}
._23{margin-left:-196.206720px;}
._27{margin-left:-56.850480px;}
._29{margin-left:-55.160640px;}
._24{margin-left:-50.834880px;}
._2d{margin-left:-47.386080px;}
._2e{margin-left:-27.329040px;}
._28{margin-left:-25.827120px;}
._2b{margin-left:-18.894960px;}
._2a{margin-left:-7.571520px;}
._2c{margin-left:-6.538320px;}
._25{margin-left:-4.145760px;}
._0{margin-left:-2.700000px;}
._1{margin-left:-1.026000px;}
._2{width:1.038000px;}
._7{width:2.897760px;}
._11{width:3.972480px;}
._10{width:5.256000px;}
._f{width:6.408000px;}
._1e{width:7.920000px;}
._12{width:9.288000px;}
._e{width:10.872000px;}
._c{width:11.880000px;}
._d{width:13.176000px;}
._13{width:15.168000px;}
._15{width:16.584000px;}
._30{width:19.872000px;}
._17{width:21.024000px;}
._39{width:22.320000px;}
._35{width:23.544000px;}
._34{width:24.552000px;}
._3c{width:25.932000px;}
._33{width:27.132000px;}
._1c{width:28.740000px;}
._4{width:29.754000px;}
._3d{width:31.176000px;}
._3b{width:32.796000px;}
._32{width:34.056000px;}
._19{width:35.298000px;}
._18{width:36.576000px;}
._1d{width:38.880000px;}
._2f{width:40.824000px;}
._20{width:42.624000px;}
._1b{width:44.136000px;}
._1a{width:45.144000px;}
._4a{width:48.168000px;}
._41{width:49.464000px;}
._40{width:51.552000px;}
._3f{width:52.632000px;}
._38{width:55.224000px;}
._14{width:56.880000px;}
._16{width:58.176000px;}
._3a{width:59.544000px;}
._31{width:60.768000px;}
._4d{width:62.208000px;}
._1f{width:63.432000px;}
._42{width:64.872000px;}
._3e{width:66.384000px;}
._37{width:67.896000px;}
._36{width:68.976000px;}
._b{width:71.352000px;}
._8{width:72.768000px;}
._4b{width:79.560000px;}
._47{width:80.928000px;}
._46{width:82.440000px;}
._9{width:85.188000px;}
._3{width:90.504000px;}
._43{width:97.848000px;}
._a{width:104.808000px;}
._49{width:124.566000px;}
._48{width:125.760000px;}
._44{width:139.824000px;}
._22{width:180.120720px;}
._4c{width:289.728000px;}
._45{width:340.056000px;}
._6{width:641.556000px;}
._21{width:1432.554240px;}
._5{width:1433.832000px;}
.fc7{color:rgb(5,99,193);}
.fc6{color:transparent;}
.fc3{color:rgb(19,20,74);}
.fc1{color:rgb(10,120,154);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:75.893905px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y40{bottom:-5.400000px;}
.y14a{bottom:-5.364000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:3.240000px;}
.ydc{bottom:3.420000px;}
.y3e{bottom:3.600000px;}
.ya0{bottom:3.960000px;}
.yde{bottom:4.680000px;}
.yda{bottom:5.760000px;}
.yd9{bottom:10.260000px;}
.ydd{bottom:10.440000px;}
.y153{bottom:12.780000px;}
.y151{bottom:12.960000px;}
.yb4{bottom:20.880000px;}
.yd5{bottom:21.630000px;}
.y14f{bottom:39.600000px;}
.y3c{bottom:56.160000px;}
.y6{bottom:57.600000px;}
.y147{bottom:59.580000px;}
.y3b{bottom:69.660000px;}
.y146{bottom:73.080000px;}
.y5{bottom:76.860000px;}
.y4{bottom:91.980000px;}
.y3d{bottom:98.280000px;}
.y148{bottom:101.736000px;}
.y3f{bottom:104.580000px;}
.y3{bottom:107.280000px;}
.y149{bottom:108.000000px;}
.y2{bottom:122.400000px;}
.y1{bottom:137.520000px;}
.y3a{bottom:148.500000px;}
.y145{bottom:149.436000px;}
.y9d{bottom:166.710000px;}
.y30{bottom:170.850000px;}
.yd3{bottom:171.570000px;}
.y38{bottom:173.370000px;}
.y6c{bottom:182.550000px;}
.yfe{bottom:182.910000px;}
.y120{bottom:185.790000px;}
.y9c{bottom:187.050000px;}
.y37{bottom:193.710000px;}
.ycb{bottom:200.910000px;}
.y2f{bottom:202.530000px;}
.y6b{bottom:202.890000px;}
.yfd{bottom:203.250000px;}
.y9b{bottom:207.390000px;}
.y11f{bottom:207.750000px;}
.y36{bottom:213.870000px;}
.yca{bottom:221.250000px;}
.y2e{bottom:222.870000px;}
.y6a{bottom:223.050000px;}
.y9a{bottom:227.550000px;}
.y11e{bottom:229.530000px;}
.yfc{bottom:232.410000px;}
.y35{bottom:234.210000px;}
.yc9{bottom:241.410000px;}
.y2d{bottom:243.210000px;}
.y69{bottom:243.390000px;}
.y99{bottom:247.890000px;}
.y11d{bottom:251.310000px;}
.yfb{bottom:252.750000px;}
.y34{bottom:254.370000px;}
.yc8{bottom:261.750000px;}
.y2c{bottom:263.370000px;}
.y68{bottom:263.550000px;}
.y98{bottom:268.050000px;}
.y161{bottom:271.695000px;}
.yfa{bottom:272.910000px;}
.y11c{bottom:273.270000px;}
.y33{bottom:274.710000px;}
.yc7{bottom:281.910000px;}
.y2b{bottom:283.710000px;}
.y67{bottom:283.890000px;}
.yf9{bottom:293.250000px;}
.y32{bottom:294.870000px;}
.y11b{bottom:295.050000px;}
.y97{bottom:297.210000px;}
.y160{bottom:300.855000px;}
.yd2{bottom:302.250000px;}
.y2a{bottom:303.870000px;}
.y66{bottom:304.050000px;}
.yc6{bottom:311.070000px;}
.y15f{bottom:317.415000px;}
.y96{bottom:317.550000px;}
.yd1{bottom:322.410000px;}
.y31{bottom:324.030000px;}
.y29{bottom:324.210000px;}
.y65{bottom:324.390000px;}
.y11a{bottom:328.890000px;}
.yc5{bottom:331.410000px;}
.y95{bottom:337.890000px;}
.yf8{bottom:342.750000px;}
.y15e{bottom:343.875000px;}
.y28{bottom:344.370000px;}
.y64{bottom:344.550000px;}
.y119{bottom:350.850000px;}
.yd0{bottom:351.570000px;}
.yc4{bottom:351.750000px;}
.y94{bottom:358.050000px;}
.yf7{bottom:362.910000px;}
.y27{bottom:364.710000px;}
.y63{bottom:364.890000px;}
.y15d{bottom:370.515000px;}
.yc3{bottom:371.910000px;}
.y118{bottom:372.630000px;}
.y93{bottom:378.390000px;}
.yf6{bottom:383.250000px;}
.y26{bottom:384.870000px;}
.y62{bottom:385.050000px;}
.yc2{bottom:392.250000px;}
.y117{bottom:394.590000px;}
.y15c{bottom:397.155000px;}
.y92{bottom:398.550000px;}
.y25{bottom:405.255000px;}
.y61{bottom:405.435000px;}
.ycf{bottom:412.455000px;}
.y91{bottom:418.935000px;}
.yc1{bottom:421.455000px;}
.y15b{bottom:423.795000px;}
.y116{bottom:424.515000px;}
.y24{bottom:425.415000px;}
.y60{bottom:425.595000px;}
.yce{bottom:432.795000px;}
.y90{bottom:439.095000px;}
.yc0{bottom:441.795000px;}
.y23{bottom:445.755000px;}
.y5f{bottom:445.935000px;}
.y15a{bottom:450.465000px;}
.ycd{bottom:452.955000px;}
.y115{bottom:456.195000px;}
.y8f{bottom:459.435000px;}
.ybf{bottom:461.955000px;}
.y22{bottom:465.915000px;}
.y5e{bottom:466.095000px;}
.ycc{bottom:473.295000px;}
.y114{bottom:476.535000px;}
.y159{bottom:477.105000px;}
.y8e{bottom:479.595000px;}
.yf5{bottom:482.115000px;}
.ybe{bottom:482.295000px;}
.y21{bottom:495.975000px;}
.y5d{bottom:496.155000px;}
.y113{bottom:496.875000px;}
.y8d{bottom:499.935000px;}
.ybd{bottom:502.455000px;}
.y158{bottom:503.745000px;}
.y112{bottom:517.035000px;}
.y8c{bottom:520.095000px;}
.ybc{bottom:522.795000px;}
.y20{bottom:527.835000px;}
.y5c{bottom:528.015000px;}
.y157{bottom:530.385000px;}
.y111{bottom:537.375000px;}
.y8b{bottom:540.435000px;}
.y5b{bottom:548.355000px;}
.ybb{bottom:551.955000px;}
.y1f{bottom:556.995000px;}
.y156{bottom:557.025000px;}
.y144{bottom:558.795000px;}
.y8a{bottom:560.595000px;}
.y110{bottom:566.535000px;}
.yf4{bottom:572.295000px;}
.y5a{bottom:577.515000px;}
.y138{bottom:580.755000px;}
.y89{bottom:580.935000px;}
.yba{bottom:581.115000px;}
.y155{bottom:583.665000px;}
.y10f{bottom:586.875000px;}
.y1e{bottom:592.455000px;}
.y143{bottom:592.815000px;}
.yb9{bottom:597.675000px;}
.y59{bottom:597.855000px;}
.y88{bottom:601.095000px;}
.y137{bottom:602.535000px;}
.y10e{bottom:607.035000px;}
.y154{bottom:610.305000px;}
.yf3{bottom:612.795000px;}
.y142{bottom:614.595000px;}
.yb8{bottom:615.315000px;}
.y1d{bottom:615.855000px;}
.y87{bottom:621.435000px;}
.y136{bottom:624.495000px;}
.y58{bottom:627.015000px;}
.y10d{bottom:627.375000px;}
.yb7{bottom:632.775000px;}
.y141{bottom:636.555000px;}
.y152{bottom:636.990000px;}
.y1c{bottom:639.075000px;}
.y86{bottom:641.595000px;}
.yf2{bottom:641.955000px;}
.y135{bottom:646.275000px;}
.yb6{bottom:650.445000px;}
.y57{bottom:656.205000px;}
.y10c{bottom:656.565000px;}
.y140{bottom:658.365000px;}
.y1b{bottom:662.325000px;}
.y14e{bottom:663.450000px;}
.yb5{bottom:668.085000px;}
.y85{bottom:670.785000px;}
.y10b{bottom:676.905000px;}
.y134{bottom:680.145000px;}
.yf1{bottom:682.485000px;}
.y56{bottom:685.545000px;}
.yb3{bottom:685.725000px;}
.y150{bottom:690.090000px;}
.y84{bottom:691.125000px;}
.y1a{bottom:691.485000px;}
.y10a{bottom:697.065000px;}
.y133{bottom:702.105000px;}
.y83{bottom:711.465000px;}
.yf0{bottom:711.645000px;}
.y19{bottom:711.825000px;}
.y13f{bottom:713.985000px;}
.y55{bottom:714.705000px;}
.y132{bottom:723.885000px;}
.y109{bottom:726.225000px;}
.y14d{bottom:730.410000px;}
.y82{bottom:731.625000px;}
.yef{bottom:731.985000px;}
.yb2{bottom:733.785000px;}
.y13e{bottom:735.945000px;}
.y18{bottom:740.985000px;}
.y54{bottom:744.045000px;}
.y131{bottom:745.845000px;}
.y108{bottom:746.565000px;}
.y81{bottom:751.965000px;}
.yee{bottom:752.325000px;}
.y13d{bottom:757.725000px;}
.y14c{bottom:759.570000px;}
.y17{bottom:761.325000px;}
.yb1{bottom:763.125000px;}
.y107{bottom:766.905000px;}
.y130{bottom:767.625000px;}
.y80{bottom:772.125000px;}
.yed{bottom:772.485000px;}
.y53{bottom:773.205000px;}
.y13c{bottom:779.685000px;}
.y16{bottom:781.485000px;}
.y106{bottom:787.065000px;}
.y14b{bottom:789.810000px;}
.yb0{bottom:792.285000px;}
.y7f{bottom:792.465000px;}
.y52{bottom:793.545000px;}
.y12f{bottom:801.465000px;}
.y15{bottom:801.825000px;}
.yec{bottom:802.545000px;}
.y7e{bottom:812.625000px;}
.y51{bottom:813.885000px;}
.y105{bottom:816.225000px;}
.y14{bottom:821.985000px;}
.y12e{bottom:823.245000px;}
.y7d{bottom:832.965000px;}
.y50{bottom:834.045000px;}
.yeb{bottom:834.225000px;}
.y13b{bottom:835.305000px;}
.y104{bottom:836.565000px;}
.yaf{bottom:841.785000px;}
.y13{bottom:842.325000px;}
.y12d{bottom:845.205000px;}
.y7c{bottom:853.125000px;}
.y4f{bottom:854.385000px;}
.yea{bottom:854.565000px;}
.y103{bottom:856.905000px;}
.y13a{bottom:857.265000px;}
.y12{bottom:862.485000px;}
.yae{bottom:871.125000px;}
.y7b{bottom:873.465000px;}
.y4e{bottom:874.545000px;}
.ye9{bottom:874.905000px;}
.y102{bottom:877.065000px;}
.y12c{bottom:879.045000px;}
.yad{bottom:887.505000px;}
.y11{bottom:892.545000px;}
.y7a{bottom:893.625000px;}
.ye8{bottom:895.065000px;}
.y12b{bottom:900.870000px;}
.y4d{bottom:904.650000px;}
.yac{bottom:905.190000px;}
.y101{bottom:906.270000px;}
.y79{bottom:914.010000px;}
.ye7{bottom:915.450000px;}
.yab{bottom:922.830000px;}
.y10{bottom:924.450000px;}
.y100{bottom:926.610000px;}
.y78{bottom:934.170000px;}
.y12a{bottom:934.710000px;}
.ye6{bottom:935.610000px;}
.y4c{bottom:936.330000px;}
.yaa{bottom:940.470000px;}
.yff{bottom:946.950000px;}
.yf{bottom:953.610000px;}
.y77{bottom:954.510000px;}
.ye5{bottom:955.950000px;}
.y4b{bottom:956.670000px;}
.ya9{bottom:958.110000px;}
.ye{bottom:973.950000px;}
.y76{bottom:974.670000px;}
.ya8{bottom:975.750000px;}
.ye4{bottom:976.110000px;}
.y4a{bottom:977.010000px;}
.y129{bottom:978.450000px;}
.ya7{bottom:993.390000px;}
.y75{bottom:995.010000px;}
.ye3{bottom:996.450000px;}
.y49{bottom:997.170000px;}
.y128{bottom:1000.410000px;}
.yd{bottom:1003.110000px;}
.ya6{bottom:1010.850000px;}
.y74{bottom:1015.170000px;}
.y48{bottom:1017.510000px;}
.y127{bottom:1022.190000px;}
.ye2{bottom:1025.610000px;}
.ya5{bottom:1028.490000px;}
.yc{bottom:1032.450000px;}
.y73{bottom:1035.510000px;}
.ye1{bottom:1041.990000px;}
.ya4{bottom:1046.130000px;}
.y47{bottom:1046.670000px;}
.yb{bottom:1052.790000px;}
.y72{bottom:1055.670000px;}
.y126{bottom:1056.030000px;}
.ye0{bottom:1059.630000px;}
.ya3{bottom:1063.770000px;}
.y46{bottom:1067.010000px;}
.y71{bottom:1076.010000px;}
.ydf{bottom:1077.270000px;}
.y125{bottom:1077.990000px;}
.ya2{bottom:1081.410000px;}
.y45{bottom:1087.170000px;}
.ya{bottom:1095.090000px;}
.y70{bottom:1096.170000px;}
.ydb{bottom:1096.710000px;}
.ya1{bottom:1099.050000px;}
.y124{bottom:1099.770000px;}
.y44{bottom:1107.510000px;}
.yd7{bottom:1115.070000px;}
.y6f{bottom:1116.510000px;}
.y9f{bottom:1116.690000px;}
.y139{bottom:1121.550000px;}
.y9{bottom:1122.090000px;}
.y43{bottom:1127.670000px;}
.y123{bottom:1133.610000px;}
.yd4{bottom:1134.510000px;}
.y6e{bottom:1136.670000px;}
.y9e{bottom:1147.860000px;}
.y8{bottom:1149.120000px;}
.yd6{bottom:1152.180000px;}
.y122{bottom:1155.420000px;}
.y42{bottom:1156.860000px;}
.y6d{bottom:1157.040000px;}
.y41{bottom:1177.200000px;}
.y121{bottom:1177.380000px;}
.y7{bottom:1183.320000px;}
.y39{bottom:1196.820000px;}
.h10{height:10.620000px;}
.h13{height:16.740000px;}
.h11{height:16.920000px;}
.h14{height:16.956000px;}
.h1a{height:17.640000px;}
.h17{height:18.720000px;}
.he{height:22.500000px;}
.h1f{height:25.740000px;}
.h20{height:25.776000px;}
.h1e{height:25.920000px;}
.h21{height:25.956000px;}
.h15{height:33.840000px;}
.h16{height:34.596000px;}
.h19{height:35.194219px;}
.h2{height:36.571289px;}
.h3{height:37.599609px;}
.h12{height:40.472227px;}
.hc{height:41.610234px;}
.h9{height:48.761719px;}
.h5{height:50.132812px;}
.h18{height:50.364141px;}
.ha{height:51.398851px;}
.h1d{height:52.560000px;}
.h8{height:56.437031px;}
.hb{height:57.051211px;}
.hd{height:59.439023px;}
.h6{height:64.853086px;}
.h4{height:65.884219px;}
.h7{height:66.676641px;}
.hf{height:83.787539px;}
.h1b{height:892.980000px;}
.h1c{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.500000px;}
.w1e{width:53.640000px;}
.w1c{width:53.820000px;}
.w22{width:57.060000px;}
.w1f{width:57.240000px;}
.w20{width:57.276000px;}
.w21{width:57.420000px;}
.w1d{width:57.456000px;}
.w5{width:76.680000px;}
.w9{width:84.240000px;}
.w13{width:87.480000px;}
.w12{width:87.660000px;}
.we{width:87.696000px;}
.wf{width:91.080000px;}
.w11{width:104.796000px;}
.w10{width:104.976000px;}
.w18{width:106.596000px;}
.wc{width:153.360000px;}
.wb{width:178.920000px;}
.w8{width:179.670000px;}
.wa{width:191.055000px;}
.w7{width:221.790000px;}
.w19{width:329.970000px;}
.w1b{width:347.295000px;}
.w1a{width:347.430000px;}
.w6{width:421.455000px;}
.wd{width:567.285000px;}
.w4{width:719.640000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w17{width:1130.760000px;}
.w16{width:1262.879981px;}
.w14{width:1262.880000px;}
.w15{width:1263.000000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x10{left:10.836000px;}
.xf{left:13.500000px;}
.x21{left:21.060000px;}
.x22{left:60.660000px;}
.x26{left:64.260000px;}
.x2{left:84.995987px;}
.x4{left:124.595987px;}
.x3{left:137.375987px;}
.x5{left:144.575987px;}
.x13{left:163.290000px;}
.x1a{left:166.169987px;}
.x28{left:171.930000px;}
.x15{left:197.129987px;}
.x11{left:220.349987px;}
.x2b{left:226.470000px;}
.x7{left:236.369987px;}
.x1b{left:239.970000px;}
.x16{left:266.295000px;}
.x24{left:270.389981px;}
.x2c{left:281.010000px;}
.x1c{left:328.395000px;}
.x2d{left:335.550000px;}
.x17{left:351.435000px;}
.x6{left:359.534987px;}
.x9{left:387.794987px;}
.x2e{left:393.735000px;}
.xc{left:409.214987px;}
.x1d{left:420.195000px;}
.x27{left:424.694981px;}
.x18{left:436.395000px;}
.x8{left:446.504987px;}
.x2f{left:448.275000px;}
.xd{left:473.144987px;}
.x29{left:502.815000px;}
.x1e{left:525.885000px;}
.x30{left:560.775000px;}
.x14{left:585.465000px;}
.x31{left:618.945000px;}
.x19{left:628.350000px;}
.x1f{left:631.410000px;}
.x23{left:654.044981px;}
.xa{left:676.589987px;}
.xb{left:681.089987px;}
.x20{left:719.790000px;}
.x32{left:735.045000px;}
.x33{left:793.005000px;}
.x1{left:808.019987px;}
.xe{left:810.360000px;}
.x2a{left:851.145000px;}
.x34{left:909.150000px;}
.x35{left:967.110000px;}
.x36{left:1025.250000px;}
.x37{left:1083.390000px;}
.x38{left:1141.380000px;}
.x25{left:1201.500000px;}
@media print{
.v4{vertical-align:-35.840000pt;}
.v3{vertical-align:-24.960000pt;}
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.235733pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.028800pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.004480pt;}
.lsc{letter-spacing:0.046720pt;}
.ls1{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.154667pt;}
.ls10{letter-spacing:0.188800pt;}
.ls4{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls13{letter-spacing:1.755307pt;}
.ls11{letter-spacing:2.416640pt;}
.ls2{letter-spacing:13.440000pt;}
.ls12{letter-spacing:14.576640pt;}
.lsa{letter-spacing:1175.333547pt;}
.ls9{letter-spacing:1272.085333pt;}
.ws0{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.120000pt;}
.wsd{word-spacing:-41.600640pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.424000pt;}
.wsa{word-spacing:-13.468800pt;}
.ws9{word-spacing:-13.360000pt;}
.ws8{word-spacing:-13.284480pt;}
.ws7{word-spacing:-13.251200pt;}
.wsb{word-spacing:-13.044267pt;}
.ws6{word-spacing:0.000000pt;}
._26{margin-left:-190.831573pt;}
._23{margin-left:-174.405973pt;}
._27{margin-left:-50.533760pt;}
._29{margin-left:-49.031680pt;}
._24{margin-left:-45.186560pt;}
._2d{margin-left:-42.120960pt;}
._2e{margin-left:-24.292480pt;}
._28{margin-left:-22.957440pt;}
._2b{margin-left:-16.795520pt;}
._2a{margin-left:-6.730240pt;}
._2c{margin-left:-5.811840pt;}
._25{margin-left:-3.685120pt;}
._0{margin-left:-2.400000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.922667pt;}
._7{width:2.575787pt;}
._11{width:3.531093pt;}
._10{width:4.672000pt;}
._f{width:5.696000pt;}
._1e{width:7.040000pt;}
._12{width:8.256000pt;}
._e{width:9.664000pt;}
._c{width:10.560000pt;}
._d{width:11.712000pt;}
._13{width:13.482667pt;}
._15{width:14.741333pt;}
._30{width:17.664000pt;}
._17{width:18.688000pt;}
._39{width:19.840000pt;}
._35{width:20.928000pt;}
._34{width:21.824000pt;}
._3c{width:23.050667pt;}
._33{width:24.117333pt;}
._1c{width:25.546667pt;}
._4{width:26.448000pt;}
._3d{width:27.712000pt;}
._3b{width:29.152000pt;}
._32{width:30.272000pt;}
._19{width:31.376000pt;}
._18{width:32.512000pt;}
._1d{width:34.560000pt;}
._2f{width:36.288000pt;}
._20{width:37.888000pt;}
._1b{width:39.232000pt;}
._1a{width:40.128000pt;}
._4a{width:42.816000pt;}
._41{width:43.968000pt;}
._40{width:45.824000pt;}
._3f{width:46.784000pt;}
._38{width:49.088000pt;}
._14{width:50.560000pt;}
._16{width:51.712000pt;}
._3a{width:52.928000pt;}
._31{width:54.016000pt;}
._4d{width:55.296000pt;}
._1f{width:56.384000pt;}
._42{width:57.664000pt;}
._3e{width:59.008000pt;}
._37{width:60.352000pt;}
._36{width:61.312000pt;}
._b{width:63.424000pt;}
._8{width:64.682667pt;}
._4b{width:70.720000pt;}
._47{width:71.936000pt;}
._46{width:73.280000pt;}
._9{width:75.722667pt;}
._3{width:80.448000pt;}
._43{width:86.976000pt;}
._a{width:93.162667pt;}
._49{width:110.725333pt;}
._48{width:111.786667pt;}
._44{width:124.288000pt;}
._22{width:160.107307pt;}
._4c{width:257.536000pt;}
._45{width:302.272000pt;}
._6{width:570.272000pt;}
._21{width:1273.381547pt;}
._5{width:1274.517333pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:67.461249pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y40{bottom:-4.800000pt;}
.y14a{bottom:-4.768000pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:2.880000pt;}
.ydc{bottom:3.040000pt;}
.y3e{bottom:3.200000pt;}
.ya0{bottom:3.520000pt;}
.yde{bottom:4.160000pt;}
.yda{bottom:5.120000pt;}
.yd9{bottom:9.120000pt;}
.ydd{bottom:9.280000pt;}
.y153{bottom:11.360000pt;}
.y151{bottom:11.520000pt;}
.yb4{bottom:18.560000pt;}
.yd5{bottom:19.226667pt;}
.y14f{bottom:35.200000pt;}
.y3c{bottom:49.920000pt;}
.y6{bottom:51.200000pt;}
.y147{bottom:52.960000pt;}
.y3b{bottom:61.920000pt;}
.y146{bottom:64.960000pt;}
.y5{bottom:68.320000pt;}
.y4{bottom:81.760000pt;}
.y3d{bottom:87.360000pt;}
.y148{bottom:90.432000pt;}
.y3f{bottom:92.960000pt;}
.y3{bottom:95.360000pt;}
.y149{bottom:96.000000pt;}
.y2{bottom:108.800000pt;}
.y1{bottom:122.240000pt;}
.y3a{bottom:132.000000pt;}
.y145{bottom:132.832000pt;}
.y9d{bottom:148.186667pt;}
.y30{bottom:151.866667pt;}
.yd3{bottom:152.506667pt;}
.y38{bottom:154.106667pt;}
.y6c{bottom:162.266667pt;}
.yfe{bottom:162.586667pt;}
.y120{bottom:165.146667pt;}
.y9c{bottom:166.266667pt;}
.y37{bottom:172.186667pt;}
.ycb{bottom:178.586667pt;}
.y2f{bottom:180.026667pt;}
.y6b{bottom:180.346667pt;}
.yfd{bottom:180.666667pt;}
.y9b{bottom:184.346667pt;}
.y11f{bottom:184.666667pt;}
.y36{bottom:190.106667pt;}
.yca{bottom:196.666667pt;}
.y2e{bottom:198.106667pt;}
.y6a{bottom:198.266667pt;}
.y9a{bottom:202.266667pt;}
.y11e{bottom:204.026667pt;}
.yfc{bottom:206.586667pt;}
.y35{bottom:208.186667pt;}
.yc9{bottom:214.586667pt;}
.y2d{bottom:216.186667pt;}
.y69{bottom:216.346667pt;}
.y99{bottom:220.346667pt;}
.y11d{bottom:223.386667pt;}
.yfb{bottom:224.666667pt;}
.y34{bottom:226.106667pt;}
.yc8{bottom:232.666667pt;}
.y2c{bottom:234.106667pt;}
.y68{bottom:234.266667pt;}
.y98{bottom:238.266667pt;}
.y161{bottom:241.506667pt;}
.yfa{bottom:242.586667pt;}
.y11c{bottom:242.906667pt;}
.y33{bottom:244.186667pt;}
.yc7{bottom:250.586667pt;}
.y2b{bottom:252.186667pt;}
.y67{bottom:252.346667pt;}
.yf9{bottom:260.666667pt;}
.y32{bottom:262.106667pt;}
.y11b{bottom:262.266667pt;}
.y97{bottom:264.186667pt;}
.y160{bottom:267.426667pt;}
.yd2{bottom:268.666667pt;}
.y2a{bottom:270.106667pt;}
.y66{bottom:270.266667pt;}
.yc6{bottom:276.506667pt;}
.y15f{bottom:282.146667pt;}
.y96{bottom:282.266667pt;}
.yd1{bottom:286.586667pt;}
.y31{bottom:288.026667pt;}
.y29{bottom:288.186667pt;}
.y65{bottom:288.346667pt;}
.y11a{bottom:292.346667pt;}
.yc5{bottom:294.586667pt;}
.y95{bottom:300.346667pt;}
.yf8{bottom:304.666667pt;}
.y15e{bottom:305.666667pt;}
.y28{bottom:306.106667pt;}
.y64{bottom:306.266667pt;}
.y119{bottom:311.866667pt;}
.yd0{bottom:312.506667pt;}
.yc4{bottom:312.666667pt;}
.y94{bottom:318.266667pt;}
.yf7{bottom:322.586667pt;}
.y27{bottom:324.186667pt;}
.y63{bottom:324.346667pt;}
.y15d{bottom:329.346667pt;}
.yc3{bottom:330.586667pt;}
.y118{bottom:331.226667pt;}
.y93{bottom:336.346667pt;}
.yf6{bottom:340.666667pt;}
.y26{bottom:342.106667pt;}
.y62{bottom:342.266667pt;}
.yc2{bottom:348.666667pt;}
.y117{bottom:350.746667pt;}
.y15c{bottom:353.026667pt;}
.y92{bottom:354.266667pt;}
.y25{bottom:360.226667pt;}
.y61{bottom:360.386667pt;}
.ycf{bottom:366.626667pt;}
.y91{bottom:372.386667pt;}
.yc1{bottom:374.626667pt;}
.y15b{bottom:376.706667pt;}
.y116{bottom:377.346667pt;}
.y24{bottom:378.146667pt;}
.y60{bottom:378.306667pt;}
.yce{bottom:384.706667pt;}
.y90{bottom:390.306667pt;}
.yc0{bottom:392.706667pt;}
.y23{bottom:396.226667pt;}
.y5f{bottom:396.386667pt;}
.y15a{bottom:400.413333pt;}
.ycd{bottom:402.626667pt;}
.y115{bottom:405.506667pt;}
.y8f{bottom:408.386667pt;}
.ybf{bottom:410.626667pt;}
.y22{bottom:414.146667pt;}
.y5e{bottom:414.306667pt;}
.ycc{bottom:420.706667pt;}
.y114{bottom:423.586667pt;}
.y159{bottom:424.093333pt;}
.y8e{bottom:426.306667pt;}
.yf5{bottom:428.546667pt;}
.ybe{bottom:428.706667pt;}
.y21{bottom:440.866667pt;}
.y5d{bottom:441.026667pt;}
.y113{bottom:441.666667pt;}
.y8d{bottom:444.386667pt;}
.ybd{bottom:446.626667pt;}
.y158{bottom:447.773333pt;}
.y112{bottom:459.586667pt;}
.y8c{bottom:462.306667pt;}
.ybc{bottom:464.706667pt;}
.y20{bottom:469.186667pt;}
.y5c{bottom:469.346667pt;}
.y157{bottom:471.453333pt;}
.y111{bottom:477.666667pt;}
.y8b{bottom:480.386667pt;}
.y5b{bottom:487.426667pt;}
.ybb{bottom:490.626667pt;}
.y1f{bottom:495.106667pt;}
.y156{bottom:495.133333pt;}
.y144{bottom:496.706667pt;}
.y8a{bottom:498.306667pt;}
.y110{bottom:503.586667pt;}
.yf4{bottom:508.706667pt;}
.y5a{bottom:513.346667pt;}
.y138{bottom:516.226667pt;}
.y89{bottom:516.386667pt;}
.yba{bottom:516.546667pt;}
.y155{bottom:518.813333pt;}
.y10f{bottom:521.666667pt;}
.y1e{bottom:526.626667pt;}
.y143{bottom:526.946667pt;}
.yb9{bottom:531.266667pt;}
.y59{bottom:531.426667pt;}
.y88{bottom:534.306667pt;}
.y137{bottom:535.586667pt;}
.y10e{bottom:539.586667pt;}
.y154{bottom:542.493333pt;}
.yf3{bottom:544.706667pt;}
.y142{bottom:546.306667pt;}
.yb8{bottom:546.946667pt;}
.y1d{bottom:547.426667pt;}
.y87{bottom:552.386667pt;}
.y136{bottom:555.106667pt;}
.y58{bottom:557.346667pt;}
.y10d{bottom:557.666667pt;}
.yb7{bottom:562.466667pt;}
.y141{bottom:565.826667pt;}
.y152{bottom:566.213333pt;}
.y1c{bottom:568.066667pt;}
.y86{bottom:570.306667pt;}
.yf2{bottom:570.626667pt;}
.y135{bottom:574.466667pt;}
.yb6{bottom:578.173333pt;}
.y57{bottom:583.293333pt;}
.y10c{bottom:583.613333pt;}
.y140{bottom:585.213333pt;}
.y1b{bottom:588.733333pt;}
.y14e{bottom:589.733333pt;}
.yb5{bottom:593.853333pt;}
.y85{bottom:596.253333pt;}
.y10b{bottom:601.693333pt;}
.y134{bottom:604.573333pt;}
.yf1{bottom:606.653333pt;}
.y56{bottom:609.373333pt;}
.yb3{bottom:609.533333pt;}
.y150{bottom:613.413333pt;}
.y84{bottom:614.333333pt;}
.y1a{bottom:614.653333pt;}
.y10a{bottom:619.613333pt;}
.y133{bottom:624.093333pt;}
.y83{bottom:632.413333pt;}
.yf0{bottom:632.573333pt;}
.y19{bottom:632.733333pt;}
.y13f{bottom:634.653333pt;}
.y55{bottom:635.293333pt;}
.y132{bottom:643.453333pt;}
.y109{bottom:645.533333pt;}
.y14d{bottom:649.253333pt;}
.y82{bottom:650.333333pt;}
.yef{bottom:650.653333pt;}
.yb2{bottom:652.253333pt;}
.y13e{bottom:654.173333pt;}
.y18{bottom:658.653333pt;}
.y54{bottom:661.373333pt;}
.y131{bottom:662.973333pt;}
.y108{bottom:663.613333pt;}
.y81{bottom:668.413333pt;}
.yee{bottom:668.733333pt;}
.y13d{bottom:673.533333pt;}
.y14c{bottom:675.173333pt;}
.y17{bottom:676.733333pt;}
.yb1{bottom:678.333333pt;}
.y107{bottom:681.693333pt;}
.y130{bottom:682.333333pt;}
.y80{bottom:686.333333pt;}
.yed{bottom:686.653333pt;}
.y53{bottom:687.293333pt;}
.y13c{bottom:693.053333pt;}
.y16{bottom:694.653333pt;}
.y106{bottom:699.613333pt;}
.y14b{bottom:702.053333pt;}
.yb0{bottom:704.253333pt;}
.y7f{bottom:704.413333pt;}
.y52{bottom:705.373333pt;}
.y12f{bottom:712.413333pt;}
.y15{bottom:712.733333pt;}
.yec{bottom:713.373333pt;}
.y7e{bottom:722.333333pt;}
.y51{bottom:723.453333pt;}
.y105{bottom:725.533333pt;}
.y14{bottom:730.653333pt;}
.y12e{bottom:731.773333pt;}
.y7d{bottom:740.413333pt;}
.y50{bottom:741.373333pt;}
.yeb{bottom:741.533333pt;}
.y13b{bottom:742.493333pt;}
.y104{bottom:743.613333pt;}
.yaf{bottom:748.253333pt;}
.y13{bottom:748.733333pt;}
.y12d{bottom:751.293333pt;}
.y7c{bottom:758.333333pt;}
.y4f{bottom:759.453333pt;}
.yea{bottom:759.613333pt;}
.y103{bottom:761.693333pt;}
.y13a{bottom:762.013333pt;}
.y12{bottom:766.653333pt;}
.yae{bottom:774.333333pt;}
.y7b{bottom:776.413333pt;}
.y4e{bottom:777.373333pt;}
.ye9{bottom:777.693333pt;}
.y102{bottom:779.613333pt;}
.y12c{bottom:781.373333pt;}
.yad{bottom:788.893333pt;}
.y11{bottom:793.373333pt;}
.y7a{bottom:794.333333pt;}
.ye8{bottom:795.613333pt;}
.y12b{bottom:800.773333pt;}
.y4d{bottom:804.133333pt;}
.yac{bottom:804.613333pt;}
.y101{bottom:805.573333pt;}
.y79{bottom:812.453333pt;}
.ye7{bottom:813.733333pt;}
.yab{bottom:820.293333pt;}
.y10{bottom:821.733333pt;}
.y100{bottom:823.653333pt;}
.y78{bottom:830.373333pt;}
.y12a{bottom:830.853333pt;}
.ye6{bottom:831.653333pt;}
.y4c{bottom:832.293333pt;}
.yaa{bottom:835.973333pt;}
.yff{bottom:841.733333pt;}
.yf{bottom:847.653333pt;}
.y77{bottom:848.453333pt;}
.ye5{bottom:849.733333pt;}
.y4b{bottom:850.373333pt;}
.ya9{bottom:851.653333pt;}
.ye{bottom:865.733333pt;}
.y76{bottom:866.373333pt;}
.ya8{bottom:867.333333pt;}
.ye4{bottom:867.653333pt;}
.y4a{bottom:868.453333pt;}
.y129{bottom:869.733333pt;}
.ya7{bottom:883.013333pt;}
.y75{bottom:884.453333pt;}
.ye3{bottom:885.733333pt;}
.y49{bottom:886.373333pt;}
.y128{bottom:889.253333pt;}
.yd{bottom:891.653333pt;}
.ya6{bottom:898.533333pt;}
.y74{bottom:902.373333pt;}
.y48{bottom:904.453333pt;}
.y127{bottom:908.613333pt;}
.ye2{bottom:911.653333pt;}
.ya5{bottom:914.213333pt;}
.yc{bottom:917.733333pt;}
.y73{bottom:920.453333pt;}
.ye1{bottom:926.213333pt;}
.ya4{bottom:929.893333pt;}
.y47{bottom:930.373333pt;}
.yb{bottom:935.813333pt;}
.y72{bottom:938.373333pt;}
.y126{bottom:938.693333pt;}
.ye0{bottom:941.893333pt;}
.ya3{bottom:945.573333pt;}
.y46{bottom:948.453333pt;}
.y71{bottom:956.453333pt;}
.ydf{bottom:957.573333pt;}
.y125{bottom:958.213333pt;}
.ya2{bottom:961.253333pt;}
.y45{bottom:966.373333pt;}
.ya{bottom:973.413333pt;}
.y70{bottom:974.373333pt;}
.ydb{bottom:974.853333pt;}
.ya1{bottom:976.933333pt;}
.y124{bottom:977.573333pt;}
.y44{bottom:984.453333pt;}
.yd7{bottom:991.173333pt;}
.y6f{bottom:992.453333pt;}
.y9f{bottom:992.613333pt;}
.y139{bottom:996.933333pt;}
.y9{bottom:997.413333pt;}
.y43{bottom:1002.373333pt;}
.y123{bottom:1007.653333pt;}
.yd4{bottom:1008.453333pt;}
.y6e{bottom:1010.373333pt;}
.y9e{bottom:1020.320000pt;}
.y8{bottom:1021.440000pt;}
.yd6{bottom:1024.160000pt;}
.y122{bottom:1027.040000pt;}
.y42{bottom:1028.320000pt;}
.y6d{bottom:1028.480000pt;}
.y41{bottom:1046.400000pt;}
.y121{bottom:1046.560000pt;}
.y7{bottom:1051.840000pt;}
.y39{bottom:1063.840000pt;}
.h10{height:9.440000pt;}
.h13{height:14.880000pt;}
.h11{height:15.040000pt;}
.h14{height:15.072000pt;}
.h1a{height:15.680000pt;}
.h17{height:16.640000pt;}
.he{height:20.000000pt;}
.h1f{height:22.880000pt;}
.h20{height:22.912000pt;}
.h1e{height:23.040000pt;}
.h21{height:23.072000pt;}
.h15{height:30.080000pt;}
.h16{height:30.752000pt;}
.h19{height:31.283750pt;}
.h2{height:32.507812pt;}
.h3{height:33.421875pt;}
.h12{height:35.975313pt;}
.hc{height:36.986875pt;}
.h9{height:43.343750pt;}
.h5{height:44.562500pt;}
.h18{height:44.768125pt;}
.ha{height:45.687867pt;}
.h1d{height:46.720000pt;}
.h8{height:50.166250pt;}
.hb{height:50.712187pt;}
.hd{height:52.834688pt;}
.h6{height:57.647187pt;}
.h4{height:58.563750pt;}
.h7{height:59.268125pt;}
.hf{height:74.477812pt;}
.h1b{height:793.760000pt;}
.h1c{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.000000pt;}
.w1e{width:47.680000pt;}
.w1c{width:47.840000pt;}
.w22{width:50.720000pt;}
.w1f{width:50.880000pt;}
.w20{width:50.912000pt;}
.w21{width:51.040000pt;}
.w1d{width:51.072000pt;}
.w5{width:68.160000pt;}
.w9{width:74.880000pt;}
.w13{width:77.760000pt;}
.w12{width:77.920000pt;}
.we{width:77.952000pt;}
.wf{width:80.960000pt;}
.w11{width:93.152000pt;}
.w10{width:93.312000pt;}
.w18{width:94.752000pt;}
.wc{width:136.320000pt;}
.wb{width:159.040000pt;}
.w8{width:159.706667pt;}
.wa{width:169.826667pt;}
.w7{width:197.146667pt;}
.w19{width:293.306667pt;}
.w1b{width:308.706667pt;}
.w1a{width:308.826667pt;}
.w6{width:374.626667pt;}
.wd{width:504.253333pt;}
.w4{width:639.680000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w17{width:1005.120000pt;}
.w16{width:1122.559983pt;}
.w14{width:1122.560000pt;}
.w15{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x10{left:9.632000pt;}
.xf{left:12.000000pt;}
.x21{left:18.720000pt;}
.x22{left:53.920000pt;}
.x26{left:57.120000pt;}
.x2{left:75.551988pt;}
.x4{left:110.751988pt;}
.x3{left:122.111988pt;}
.x5{left:128.511988pt;}
.x13{left:145.146667pt;}
.x1a{left:147.706655pt;}
.x28{left:152.826667pt;}
.x15{left:175.226655pt;}
.x11{left:195.866655pt;}
.x2b{left:201.306667pt;}
.x7{left:210.106655pt;}
.x1b{left:213.306667pt;}
.x16{left:236.706667pt;}
.x24{left:240.346650pt;}
.x2c{left:249.786667pt;}
.x1c{left:291.906667pt;}
.x2d{left:298.266667pt;}
.x17{left:312.386667pt;}
.x6{left:319.586655pt;}
.x9{left:344.706655pt;}
.x2e{left:349.986667pt;}
.xc{left:363.746655pt;}
.x1d{left:373.506667pt;}
.x27{left:377.506650pt;}
.x18{left:387.906667pt;}
.x8{left:396.893322pt;}
.x2f{left:398.466667pt;}
.xd{left:420.573322pt;}
.x29{left:446.946667pt;}
.x1e{left:467.453333pt;}
.x30{left:498.466667pt;}
.x14{left:520.413333pt;}
.x31{left:550.173333pt;}
.x19{left:558.533333pt;}
.x1f{left:561.253333pt;}
.x23{left:581.373317pt;}
.xa{left:601.413322pt;}
.xb{left:605.413322pt;}
.x20{left:639.813333pt;}
.x32{left:653.373333pt;}
.x33{left:704.893333pt;}
.x1{left:718.239988pt;}
.xe{left:720.320000pt;}
.x2a{left:756.573333pt;}
.x34{left:808.133333pt;}
.x35{left:859.653333pt;}
.x36{left:911.333333pt;}
.x37{left:963.013333pt;}
.x38{left:1014.560000pt;}
.x25{left:1068.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; }
  