
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_256c8fdfbc940c169d677a6f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_1fb09b5b671d050bd6b93f20.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_dc7acf5ff199d67036820810.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_2f5a562d93f5ab4166b7fb8a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_c38f3c8ee1752e929886d94e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_c4c6de6386761d8c2c9367e9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.m1{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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls22{letter-spacing:-0.444600px;}
.ls17{letter-spacing:-0.444000px;}
.ls10{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.ls15{letter-spacing:-0.133200px;}
.ls1c{letter-spacing:-0.128400px;}
.lsb{letter-spacing:-0.121200px;}
.ls20{letter-spacing:-0.093000px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls7{letter-spacing:-0.054000px;}
.ls11{letter-spacing:-0.049680px;}
.ls19{letter-spacing:-0.006120px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls1d{letter-spacing:0.060600px;}
.ls12{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.115800px;}
.ls16{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.160800px;}
.lsf{letter-spacing:0.173400px;}
.ls1e{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.199200px;}
.ls1f{letter-spacing:0.213600px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.425520px;}
.ls23{letter-spacing:47.726640px;}
.ls13{letter-spacing:63.566640px;}
.ls21{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.wse{word-spacing:-13.387200px;}
.wsd{word-spacing:-13.369800px;}
.ws10{word-spacing:-13.342200px;}
.ws11{word-spacing:-13.287000px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.220280px;}
.wsb{word-spacing:-13.176720px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._b{margin-left:-4.043975px;}
._5{margin-left:-2.809705px;}
._4{margin-left:-1.069535px;}
._0{width:1.122000px;}
._6{width:2.565600px;}
._9{width:4.148400px;}
._8{width:5.170200px;}
._c{width:6.288840px;}
._3{width:7.299983px;}
._2{width:9.157188px;}
._1{width:10.401036px;}
._a{width:11.422800px;}
._d{width:14.473560px;}
._7{width:15.631200px;}
._13{width:16.653240px;}
._15{width:18.577080px;}
._16{width:19.586495px;}
._14{width:20.861640px;}
._17{width:21.913560px;}
._18{width:23.176440px;}
._1a{width:24.558840px;}
._10{width:25.791480px;}
._1b{width:26.897400px;}
._1c{width:27.932040px;}
._12{width:29.218320px;}
._19{width:38.139840px;}
._e{width:75.150000px;}
._11{width:80.053200px;}
._f{width:195.450120px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y61{bottom:7.830000px;}
.y100{bottom:7.860000px;}
.y64{bottom:7.920000px;}
.y9d{bottom:21.510000px;}
.yc2{bottom:25.470000px;}
.yd8{bottom:29.970000px;}
.y5f{bottom:35.190000px;}
.ya0{bottom:35.280000px;}
.yc0{bottom:52.830000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y106{bottom:76.140000px;}
.ya4{bottom:76.230000px;}
.y1{bottom:101.640000px;}
.yfc{bottom:103.590000px;}
.yd9{bottom:113.250000px;}
.y150{bottom:113.790000px;}
.y71{bottom:120.000000px;}
.yb6{bottom:127.830000px;}
.y14f{bottom:131.340000px;}
.y99{bottom:135.210000px;}
.y70{bottom:137.640000px;}
.y28{bottom:140.520000px;}
.yb5{bottom:145.380000px;}
.y14e{bottom:148.980000px;}
.y196{bottom:151.680000px;}
.y98{bottom:152.760000px;}
.y6f{bottom:155.190000px;}
.y124{bottom:155.280000px;}
.y27{bottom:158.160000px;}
.y170{bottom:161.580000px;}
.yb4{bottom:162.930000px;}
.y14d{bottom:166.530000px;}
.yd7{bottom:167.880000px;}
.y195{bottom:169.320000px;}
.y97{bottom:170.400000px;}
.y6e{bottom:172.740000px;}
.y123{bottom:172.920000px;}
.y26{bottom:175.710000px;}
.yf9{bottom:176.610000px;}
.y16f{bottom:179.220000px;}
.y14c{bottom:184.170000px;}
.y194{bottom:186.870000px;}
.y96{bottom:187.950000px;}
.y6d{bottom:190.380000px;}
.y122{bottom:190.470000px;}
.y16e{bottom:196.770000px;}
.yb3{bottom:198.570000px;}
.y14b{bottom:201.720000px;}
.y95{bottom:205.500000px;}
.y6c{bottom:207.930000px;}
.y121{bottom:208.110000px;}
.y25{bottom:211.260000px;}
.yf8{bottom:212.160000px;}
.y193{bottom:213.510000px;}
.yd6{bottom:217.290000px;}
.y94{bottom:223.140000px;}
.y16d{bottom:223.320000px;}
.y120{bottom:225.660000px;}
.y14a{bottom:228.630000px;}
.y24{bottom:228.900000px;}
.yb2{bottom:230.790000px;}
.y192{bottom:231.060000px;}
.y6b{bottom:234.570000px;}
.y16c{bottom:240.960000px;}
.y11f{bottom:243.210000px;}
.yd5{bottom:244.650000px;}
.y23{bottom:246.450000px;}
.yf7{bottom:247.800000px;}
.y191{bottom:248.610000px;}
.y93{bottom:249.690000px;}
.y11e{bottom:260.850000px;}
.y22{bottom:264.090000px;}
.y6a{bottom:267.510000px;}
.yd4{bottom:272.010000px;}
.y190{bottom:275.250000px;}
.y149{bottom:276.870000px;}
.y11d{bottom:278.400000px;}
.y21{bottom:281.640000px;}
.yf6{bottom:283.350000px;}
.y16b{bottom:285.150000px;}
.y92{bottom:285.330000px;}
.y18f{bottom:292.800000px;}
.y148{bottom:294.510000px;}
.y69{bottom:294.870000px;}
.y11c{bottom:296.040000px;}
.y20{bottom:299.190000px;}
.yd3{bottom:299.280000px;}
.y91{bottom:302.880000px;}
.y18e{bottom:310.440000px;}
.y16a{bottom:311.700000px;}
.y147{bottom:312.060000px;}
.yf5{bottom:318.900000px;}
.y90{bottom:320.430000px;}
.y68{bottom:322.140000px;}
.y55{bottom:325.650000px;}
.y1f{bottom:326.100000px;}
.yd2{bottom:326.640000px;}
.y169{bottom:329.250000px;}
.y146{bottom:329.610000px;}
.y11b{bottom:331.590000px;}
.y18d{bottom:336.990000px;}
.y8f{bottom:338.070000px;}
.y54{bottom:343.200000px;}
.y145{bottom:347.250000px;}
.y11a{bottom:349.140000px;}
.y67{bottom:349.500000px;}
.yd1{bottom:354.000000px;}
.yf4{bottom:354.540000px;}
.y168{bottom:355.890000px;}
.y53{bottom:360.840000px;}
.y144{bottom:364.800000px;}
.y8e{bottom:364.980000px;}
.y119{bottom:366.780000px;}
.yf3{bottom:372.090000px;}
.y18c{bottom:372.180000px;}
.y167{bottom:373.440000px;}
.y1e{bottom:374.700000px;}
.y66{bottom:376.860000px;}
.y52{bottom:378.390000px;}
.y143{bottom:382.440000px;}
.y118{bottom:384.330000px;}
.yf2{bottom:389.730000px;}
.y166{bottom:391.080000px;}
.y51{bottom:395.940000px;}
.y18b{bottom:398.730000px;}
.yd0{bottom:398.910000px;}
.y142{bottom:399.990000px;}
.y117{bottom:401.880000px;}
.y65{bottom:404.220000px;}
.yf1{bottom:407.280000px;}
.y1d{bottom:411.780000px;}
.y8d{bottom:413.220000px;}
.y50{bottom:413.580000px;}
.y18a{bottom:416.370000px;}
.y141{bottom:417.540000px;}
.y165{bottom:417.630000px;}
.y116{bottom:419.520000px;}
.yf0{bottom:424.830000px;}
.ycf{bottom:426.270000px;}
.y1c{bottom:429.330000px;}
.y8c{bottom:430.770000px;}
.y4f{bottom:431.130000px;}
.y63{bottom:431.490000px;}
.y140{bottom:435.180000px;}
.y115{bottom:437.070000px;}
.yef{bottom:442.470000px;}
.y189{bottom:442.920000px;}
.y1b{bottom:446.880000px;}
.y8b{bottom:448.410000px;}
.y4e{bottom:448.770000px;}
.y13f{bottom:452.730000px;}
.y164{bottom:452.820000px;}
.yce{bottom:453.540000px;}
.y114{bottom:454.710000px;}
.y62{bottom:458.850000px;}
.y188{bottom:460.470000px;}
.y1a{bottom:464.520000px;}
.y4d{bottom:466.320000px;}
.yee{bottom:469.020000px;}
.y113{bottom:472.290000px;}
.y8a{bottom:474.990000px;}
.y163{bottom:479.400000px;}
.ycd{bottom:480.930000px;}
.y19{bottom:482.100000px;}
.y4c{bottom:483.900000px;}
.y5e{bottom:486.240000px;}
.y187{bottom:487.140000px;}
.y13e{bottom:488.400000px;}
.y162{bottom:497.040000px;}
.y112{bottom:499.200000px;}
.y18{bottom:499.740000px;}
.y4b{bottom:501.540000px;}
.yed{bottom:503.880000px;}
.y186{bottom:504.690000px;}
.y13d{bottom:505.950000px;}
.ycc{bottom:508.290000px;}
.y89{bottom:510.540000px;}
.y60{bottom:513.600000px;}
.y161{bottom:514.590000px;}
.yec{bottom:516.120000px;}
.y17{bottom:517.290000px;}
.y4a{bottom:519.090000px;}
.y13c{bottom:523.500000px;}
.y88{bottom:528.990000px;}
.y185{bottom:531.330000px;}
.y16{bottom:534.840000px;}
.ycb{bottom:535.560000px;}
.y49{bottom:536.730000px;}
.y13b{bottom:541.140000px;}
.y160{bottom:541.500000px;}
.yeb{bottom:543.480000px;}
.y10c{bottom:544.830000px;}
.y87{bottom:547.350000px;}
.y184{bottom:548.880000px;}
.y15{bottom:552.480000px;}
.y13a{bottom:558.690000px;}
.y5d{bottom:562.290000px;}
.yca{bottom:562.920000px;}
.y48{bottom:563.280000px;}
.y183{bottom:566.430000px;}
.y14{bottom:570.030000px;}
.yea{bottom:570.750000px;}
.y111{bottom:572.190000px;}
.yb1{bottom:576.150000px;}
.y139{bottom:576.330000px;}
.y86{bottom:583.800000px;}
.y13{bottom:587.670000px;}
.y15f{bottom:589.740000px;}
.y182{bottom:593.070000px;}
.yb0{bottom:593.700000px;}
.y138{bottom:593.880000px;}
.y5c{bottom:597.840000px;}
.ye9{bottom:598.110000px;}
.y47{bottom:599.190000px;}
.y110{bottom:599.550000px;}
.y85{bottom:601.440000px;}
.y12{bottom:605.220000px;}
.yc9{bottom:607.830000px;}
.y181{bottom:610.620000px;}
.yaf{bottom:611.340000px;}
.y137{bottom:611.430000px;}
.y5b{bottom:615.390000px;}
.y15e{bottom:616.650000px;}
.y11{bottom:622.770000px;}
.ye8{bottom:625.470000px;}
.y10f{bottom:626.910000px;}
.yae{bottom:628.890000px;}
.y5a{bottom:633.030000px;}
.y84{bottom:633.930000px;}
.yc8{bottom:635.190000px;}
.y180{bottom:637.260000px;}
.yad{bottom:646.530000px;}
.y136{bottom:647.070000px;}
.y46{bottom:647.430000px;}
.y10{bottom:649.770000px;}
.y59{bottom:650.580000px;}
.y83{bottom:652.380000px;}
.ye7{bottom:652.740000px;}
.y15d{bottom:653.730000px;}
.y10e{bottom:654.180000px;}
.y17f{bottom:654.810000px;}
.yc7{bottom:662.550000px;}
.yac{bottom:664.080000px;}
.y135{bottom:664.620000px;}
.y45{bottom:665.070000px;}
.y82{bottom:670.830000px;}
.y17e{bottom:672.360000px;}
.y58{bottom:677.220000px;}
.ye6{bottom:680.100000px;}
.y15c{bottom:680.640000px;}
.y10d{bottom:681.540000px;}
.y134{bottom:682.260000px;}
.y44{bottom:682.620000px;}
.yc6{bottom:689.910000px;}
.yab{bottom:690.630000px;}
.yf{bottom:696.480000px;}
.y17d{bottom:699.000000px;}
.y133{bottom:699.810000px;}
.y43{bottom:700.260000px;}
.y81{bottom:707.280000px;}
.ye5{bottom:707.460000px;}
.y105{bottom:708.900000px;}
.y57{bottom:712.770000px;}
.y17c{bottom:716.550000px;}
.yc5{bottom:717.180000px;}
.y132{bottom:717.360000px;}
.y15b{bottom:717.630000px;}
.y42{bottom:717.810000px;}
.y80{bottom:724.830000px;}
.yaa{bottom:725.550000px;}
.ye{bottom:732.030000px;}
.y131{bottom:735.000000px;}
.y15a{bottom:735.180000px;}
.y41{bottom:735.360000px;}
.y10b{bottom:736.170000px;}
.ya3{bottom:737.700000px;}
.y17b{bottom:743.190000px;}
.yc4{bottom:744.540000px;}
.y56{bottom:744.990000px;}
.y130{bottom:752.550000px;}
.y159{bottom:752.820000px;}
.y40{bottom:753.000000px;}
.ye4{bottom:756.870000px;}
.y7f{bottom:757.320000px;}
.y17a{bottom:760.740000px;}
.y10a{bottom:763.530000px;}
.ya9{bottom:765.060000px;}
.yd{bottom:767.850000px;}
.y12f{bottom:770.190000px;}
.y158{bottom:770.370000px;}
.y3f{bottom:770.550000px;}
.yc3{bottom:771.900000px;}
.y7e{bottom:775.770000px;}
.y179{bottom:778.290000px;}
.y12e{bottom:787.740000px;}
.y157{bottom:787.920000px;}
.y3e{bottom:788.190000px;}
.y109{bottom:790.890000px;}
.ya8{bottom:792.420000px;}
.y7d{bottom:794.220000px;}
.ybf{bottom:799.170000px;}
.y178{bottom:804.930000px;}
.y12d{bottom:805.290000px;}
.y3d{bottom:805.740000px;}
.ye3{bottom:806.280000px;}
.yc{bottom:807.630000px;}
.y7c{bottom:812.670000px;}
.y156{bottom:814.830000px;}
.y108{bottom:818.250000px;}
.ya7{bottom:819.690000px;}
.y177{bottom:822.480000px;}
.y12c{bottom:822.930000px;}
.y3c{bottom:823.290000px;}
.yb{bottom:825.630000px;}
.yc1{bottom:826.530000px;}
.y176{bottom:840.030000px;}
.y12b{bottom:840.480000px;}
.y3b{bottom:840.930000px;}
.ya{bottom:843.630000px;}
.y107{bottom:845.520000px;}
.ya6{bottom:847.050000px;}
.y7b{bottom:849.030000px;}
.y155{bottom:851.910000px;}
.ye2{bottom:855.690000px;}
.y12a{bottom:858.030000px;}
.y3a{bottom:858.480000px;}
.y9{bottom:861.630000px;}
.y7a{bottom:866.670000px;}
.y154{bottom:869.460000px;}
.yfb{bottom:872.880000px;}
.ya5{bottom:874.410000px;}
.y129{bottom:875.670000px;}
.y39{bottom:876.030000px;}
.y8{bottom:879.630000px;}
.ye1{bottom:883.050000px;}
.y175{bottom:884.220000px;}
.y153{bottom:887.100000px;}
.ybe{bottom:892.860000px;}
.y128{bottom:893.220000px;}
.y38{bottom:893.670000px;}
.y7{bottom:897.630000px;}
.y104{bottom:900.240000px;}
.y9f{bottom:901.680000px;}
.y174{bottom:901.860000px;}
.y79{bottom:902.220000px;}
.ye0{bottom:910.410000px;}
.y127{bottom:910.860000px;}
.y37{bottom:911.220000px;}
.y152{bottom:914.010000px;}
.y78{bottom:919.860000px;}
.y103{bottom:927.600000px;}
.ybd{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.ya2{bottom:929.040000px;}
.y6{bottom:929.940000px;}
.y77{bottom:937.410000px;}
.ybc{bottom:945.960000px;}
.y35{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y151{bottom:951.270000px;}
.y102{bottom:954.870000px;}
.y76{bottom:954.960000px;}
.ydf{bottom:955.320000px;}
.ya1{bottom:956.400000px;}
.ybb{bottom:963.600000px;}
.y34{bottom:963.960000px;}
.y75{bottom:972.600000px;}
.yba{bottom:981.150000px;}
.y126{bottom:981.600000px;}
.y101{bottom:982.230000px;}
.yde{bottom:982.680000px;}
.y9c{bottom:983.760000px;}
.y4{bottom:987.630000px;}
.y74{bottom:990.150000px;}
.y125{bottom:999.150000px;}
.y33{bottom:999.600000px;}
.y73{bottom:1007.790000px;}
.yff{bottom:1009.590000px;}
.ydd{bottom:1009.980000px;}
.y9e{bottom:1011.060000px;}
.y3{bottom:1012.320000px;}
.yb9{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.y72{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.yfe{bottom:1036.890000px;}
.y9b{bottom:1038.420000px;}
.y173{bottom:1043.370000px;}
.yb8{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.ydc{bottom:1054.890000px;}
.y172{bottom:1060.920000px;}
.yfd{bottom:1064.250000px;}
.yb7{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y171{bottom:1078.560000px;}
.ydb{bottom:1082.250000px;}
.y9a{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.yfa{bottom:1091.610000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.yda{bottom:1127.160000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.550000px;}
.he{height:26.580000px;}
.hf{height:26.640000px;}
.h17{height:26.670000px;}
.h2{height:31.901133px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h14{height:41.661211px;}
.h16{height:44.190000px;}
.h18{height:48.690000px;}
.h7{height:52.311445px;}
.hb{height:52.781133px;}
.hc{height:53.910000px;}
.h11{height:53.940000px;}
.h5{height:57.323320px;}
.h8{height:57.838008px;}
.h10{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h15{height:71.550000px;}
.h4{height:72.985430px;}
.h12{height:81.270000px;}
.h13{height:163.260000px;}
.h19{height:218.010000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w15{width:16.380000px;}
.w16{width:17.640000px;}
.w17{width:17.730000px;}
.w1d{width:22.140000px;}
.w19{width:23.940000px;}
.w1a{width:26.730000px;}
.w1e{width:29.070000px;}
.w18{width:29.700000px;}
.w1c{width:30.240000px;}
.w1f{width:30.780000px;}
.w1b{width:43.740000px;}
.wc{width:47.070000px;}
.wa{width:49.140000px;}
.w5{width:65.520000px;}
.w7{width:79.050000px;}
.w12{width:83.700000px;}
.w3{width:88.110000px;}
.wb{width:89.730000px;}
.w13{width:95.940000px;}
.wd{width:96.930000px;}
.w11{width:107.310000px;}
.w10{width:109.710000px;}
.w14{width:114.390000px;}
.w23{width:115.380000px;}
.w6{width:116.280000px;}
.w9{width:116.310000px;}
.we{width:117.000000px;}
.w22{width:127.110000px;}
.w25{width:159.390000px;}
.w24{width:160.290000px;}
.w4{width:196.140000px;}
.w8{width:214.650000px;}
.wf{width:248.700000px;}
.w21{width:320.490000px;}
.w20{width:763.620000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.960000px;}
.x15{left:64.800000px;}
.x1{left:68.040000px;}
.xb{left:95.039987px;}
.x26{left:111.239987px;}
.x21{left:122.759987px;}
.x22{left:164.370000px;}
.x5{left:175.169987px;}
.xc{left:186.690000px;}
.x14{left:193.169987px;}
.x2{left:202.799987px;}
.x6{left:271.020000px;}
.x11{left:284.340000px;}
.x12{left:307.559987px;}
.x16{left:314.220000px;}
.x25{left:325.470000px;}
.x8{left:359.850000px;}
.xd{left:402.150000px;}
.x17{left:424.740000px;}
.xa{left:476.940000px;}
.x23{left:485.580000px;}
.xe{left:519.180000px;}
.x18{left:532.860000px;}
.x1b{left:549.960000px;}
.x9{left:556.710000px;}
.xf{left:569.040000px;}
.x1c{left:586.860000px;}
.x24{left:613.500000px;}
.x19{left:617.370000px;}
.x1d{left:642.030000px;}
.x10{left:659.490000px;}
.x1e{left:669.570000px;}
.x1a{left:714.030000px;}
.x13{left:718.889987px;}
.x4{left:745.889987px;}
.x1f{left:767.850000px;}
.x3{left:792.059987px;}
.x20{left:797.640000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls22{letter-spacing:-0.395200pt;}
.ls17{letter-spacing:-0.394667pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls15{letter-spacing:-0.118400pt;}
.ls1c{letter-spacing:-0.114133pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls20{letter-spacing:-0.082667pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls7{letter-spacing:-0.048000pt;}
.ls11{letter-spacing:-0.044160pt;}
.ls19{letter-spacing:-0.005440pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls1d{letter-spacing:0.053867pt;}
.ls12{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.102933pt;}
.ls16{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.142933pt;}
.lsf{letter-spacing:0.154133pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.177067pt;}
.ls1f{letter-spacing:0.189867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.378240pt;}
.ls23{letter-spacing:42.423680pt;}
.ls13{letter-spacing:56.503680pt;}
.ls21{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.899733pt;}
.wsd{word-spacing:-11.884267pt;}
.ws10{word-spacing:-11.859733pt;}
.ws11{word-spacing:-11.810667pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.751360pt;}
.wsb{word-spacing:-11.712640pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._b{margin-left:-3.594644pt;}
._5{margin-left:-2.497516pt;}
._4{margin-left:-0.950697pt;}
._0{width:0.997333pt;}
._6{width:2.280533pt;}
._9{width:3.687467pt;}
._8{width:4.595733pt;}
._c{width:5.590080pt;}
._3{width:6.488873pt;}
._2{width:8.139723pt;}
._1{width:9.245365pt;}
._a{width:10.153600pt;}
._d{width:12.865387pt;}
._7{width:13.894400pt;}
._13{width:14.802880pt;}
._15{width:16.512960pt;}
._16{width:17.410217pt;}
._14{width:18.543680pt;}
._17{width:19.478720pt;}
._18{width:20.601280pt;}
._1a{width:21.830080pt;}
._10{width:22.925760pt;}
._1b{width:23.908800pt;}
._1c{width:24.828480pt;}
._12{width:25.971840pt;}
._19{width:33.902080pt;}
._e{width:66.800000pt;}
._11{width:71.158400pt;}
._f{width:173.733440pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:6.960000pt;}
.y100{bottom:6.986667pt;}
.y64{bottom:7.040000pt;}
.y9d{bottom:19.120000pt;}
.yc2{bottom:22.640000pt;}
.yd8{bottom:26.640000pt;}
.y5f{bottom:31.280000pt;}
.ya0{bottom:31.360000pt;}
.yc0{bottom:46.960000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y106{bottom:67.680000pt;}
.ya4{bottom:67.760000pt;}
.y1{bottom:90.346667pt;}
.yfc{bottom:92.080000pt;}
.yd9{bottom:100.666667pt;}
.y150{bottom:101.146667pt;}
.y71{bottom:106.666667pt;}
.yb6{bottom:113.626667pt;}
.y14f{bottom:116.746667pt;}
.y99{bottom:120.186667pt;}
.y70{bottom:122.346667pt;}
.y28{bottom:124.906667pt;}
.yb5{bottom:129.226667pt;}
.y14e{bottom:132.426667pt;}
.y196{bottom:134.826667pt;}
.y98{bottom:135.786667pt;}
.y6f{bottom:137.946667pt;}
.y124{bottom:138.026667pt;}
.y27{bottom:140.586667pt;}
.y170{bottom:143.626667pt;}
.yb4{bottom:144.826667pt;}
.y14d{bottom:148.026667pt;}
.yd7{bottom:149.226667pt;}
.y195{bottom:150.506667pt;}
.y97{bottom:151.466667pt;}
.y6e{bottom:153.546667pt;}
.y123{bottom:153.706667pt;}
.y26{bottom:156.186667pt;}
.yf9{bottom:156.986667pt;}
.y16f{bottom:159.306667pt;}
.y14c{bottom:163.706667pt;}
.y194{bottom:166.106667pt;}
.y96{bottom:167.066667pt;}
.y6d{bottom:169.226667pt;}
.y122{bottom:169.306667pt;}
.y16e{bottom:174.906667pt;}
.yb3{bottom:176.506667pt;}
.y14b{bottom:179.306667pt;}
.y95{bottom:182.666667pt;}
.y6c{bottom:184.826667pt;}
.y121{bottom:184.986667pt;}
.y25{bottom:187.786667pt;}
.yf8{bottom:188.586667pt;}
.y193{bottom:189.786667pt;}
.yd6{bottom:193.146667pt;}
.y94{bottom:198.346667pt;}
.y16d{bottom:198.506667pt;}
.y120{bottom:200.586667pt;}
.y14a{bottom:203.226667pt;}
.y24{bottom:203.466667pt;}
.yb2{bottom:205.146667pt;}
.y192{bottom:205.386667pt;}
.y6b{bottom:208.506667pt;}
.y16c{bottom:214.186667pt;}
.y11f{bottom:216.186667pt;}
.yd5{bottom:217.466667pt;}
.y23{bottom:219.066667pt;}
.yf7{bottom:220.266667pt;}
.y191{bottom:220.986667pt;}
.y93{bottom:221.946667pt;}
.y11e{bottom:231.866667pt;}
.y22{bottom:234.746667pt;}
.y6a{bottom:237.786667pt;}
.yd4{bottom:241.786667pt;}
.y190{bottom:244.666667pt;}
.y149{bottom:246.106667pt;}
.y11d{bottom:247.466667pt;}
.y21{bottom:250.346667pt;}
.yf6{bottom:251.866667pt;}
.y16b{bottom:253.466667pt;}
.y92{bottom:253.626667pt;}
.y18f{bottom:260.266667pt;}
.y148{bottom:261.786667pt;}
.y69{bottom:262.106667pt;}
.y11c{bottom:263.146667pt;}
.y20{bottom:265.946667pt;}
.yd3{bottom:266.026667pt;}
.y91{bottom:269.226667pt;}
.y18e{bottom:275.946667pt;}
.y16a{bottom:277.066667pt;}
.y147{bottom:277.386667pt;}
.yf5{bottom:283.466667pt;}
.y90{bottom:284.826667pt;}
.y68{bottom:286.346667pt;}
.y55{bottom:289.466667pt;}
.y1f{bottom:289.866667pt;}
.yd2{bottom:290.346667pt;}
.y169{bottom:292.666667pt;}
.y146{bottom:292.986667pt;}
.y11b{bottom:294.746667pt;}
.y18d{bottom:299.546667pt;}
.y8f{bottom:300.506667pt;}
.y54{bottom:305.066667pt;}
.y145{bottom:308.666667pt;}
.y11a{bottom:310.346667pt;}
.y67{bottom:310.666667pt;}
.yd1{bottom:314.666667pt;}
.yf4{bottom:315.146667pt;}
.y168{bottom:316.346667pt;}
.y53{bottom:320.746667pt;}
.y144{bottom:324.266667pt;}
.y8e{bottom:324.426667pt;}
.y119{bottom:326.026667pt;}
.yf3{bottom:330.746667pt;}
.y18c{bottom:330.826667pt;}
.y167{bottom:331.946667pt;}
.y1e{bottom:333.066667pt;}
.y66{bottom:334.986667pt;}
.y52{bottom:336.346667pt;}
.y143{bottom:339.946667pt;}
.y118{bottom:341.626667pt;}
.yf2{bottom:346.426667pt;}
.y166{bottom:347.626667pt;}
.y51{bottom:351.946667pt;}
.y18b{bottom:354.426667pt;}
.yd0{bottom:354.586667pt;}
.y142{bottom:355.546667pt;}
.y117{bottom:357.226667pt;}
.y65{bottom:359.306667pt;}
.yf1{bottom:362.026667pt;}
.y1d{bottom:366.026667pt;}
.y8d{bottom:367.306667pt;}
.y50{bottom:367.626667pt;}
.y18a{bottom:370.106667pt;}
.y141{bottom:371.146667pt;}
.y165{bottom:371.226667pt;}
.y116{bottom:372.906667pt;}
.yf0{bottom:377.626667pt;}
.ycf{bottom:378.906667pt;}
.y1c{bottom:381.626667pt;}
.y8c{bottom:382.906667pt;}
.y4f{bottom:383.226667pt;}
.y63{bottom:383.546667pt;}
.y140{bottom:386.826667pt;}
.y115{bottom:388.506667pt;}
.yef{bottom:393.306667pt;}
.y189{bottom:393.706667pt;}
.y1b{bottom:397.226667pt;}
.y8b{bottom:398.586667pt;}
.y4e{bottom:398.906667pt;}
.y13f{bottom:402.426667pt;}
.y164{bottom:402.506667pt;}
.yce{bottom:403.146667pt;}
.y114{bottom:404.186667pt;}
.y62{bottom:407.866667pt;}
.y188{bottom:409.306667pt;}
.y1a{bottom:412.906667pt;}
.y4d{bottom:414.506667pt;}
.yee{bottom:416.906667pt;}
.y113{bottom:419.813333pt;}
.y8a{bottom:422.213333pt;}
.y163{bottom:426.133333pt;}
.ycd{bottom:427.493333pt;}
.y19{bottom:428.533333pt;}
.y4c{bottom:430.133333pt;}
.y5e{bottom:432.213333pt;}
.y187{bottom:433.013333pt;}
.y13e{bottom:434.133333pt;}
.y162{bottom:441.813333pt;}
.y112{bottom:443.733333pt;}
.y18{bottom:444.213333pt;}
.y4b{bottom:445.813333pt;}
.yed{bottom:447.893333pt;}
.y186{bottom:448.613333pt;}
.y13d{bottom:449.733333pt;}
.ycc{bottom:451.813333pt;}
.y89{bottom:453.813333pt;}
.y60{bottom:456.533333pt;}
.y161{bottom:457.413333pt;}
.yec{bottom:458.773333pt;}
.y17{bottom:459.813333pt;}
.y4a{bottom:461.413333pt;}
.y13c{bottom:465.333333pt;}
.y88{bottom:470.213333pt;}
.y185{bottom:472.293333pt;}
.y16{bottom:475.413333pt;}
.ycb{bottom:476.053333pt;}
.y49{bottom:477.093333pt;}
.y13b{bottom:481.013333pt;}
.y160{bottom:481.333333pt;}
.yeb{bottom:483.093333pt;}
.y10c{bottom:484.293333pt;}
.y87{bottom:486.533333pt;}
.y184{bottom:487.893333pt;}
.y15{bottom:491.093333pt;}
.y13a{bottom:496.613333pt;}
.y5d{bottom:499.813333pt;}
.yca{bottom:500.373333pt;}
.y48{bottom:500.693333pt;}
.y183{bottom:503.493333pt;}
.y14{bottom:506.693333pt;}
.yea{bottom:507.333333pt;}
.y111{bottom:508.613333pt;}
.yb1{bottom:512.133333pt;}
.y139{bottom:512.293333pt;}
.y86{bottom:518.933333pt;}
.y13{bottom:522.373333pt;}
.y15f{bottom:524.213333pt;}
.y182{bottom:527.173333pt;}
.yb0{bottom:527.733333pt;}
.y138{bottom:527.893333pt;}
.y5c{bottom:531.413333pt;}
.ye9{bottom:531.653333pt;}
.y47{bottom:532.613333pt;}
.y110{bottom:532.933333pt;}
.y85{bottom:534.613333pt;}
.y12{bottom:537.973333pt;}
.yc9{bottom:540.293333pt;}
.y181{bottom:542.773333pt;}
.yaf{bottom:543.413333pt;}
.y137{bottom:543.493333pt;}
.y5b{bottom:547.013333pt;}
.y15e{bottom:548.133333pt;}
.y11{bottom:553.573333pt;}
.ye8{bottom:555.973333pt;}
.y10f{bottom:557.253333pt;}
.yae{bottom:559.013333pt;}
.y5a{bottom:562.693333pt;}
.y84{bottom:563.493333pt;}
.yc8{bottom:564.613333pt;}
.y180{bottom:566.453333pt;}
.yad{bottom:574.693333pt;}
.y136{bottom:575.173333pt;}
.y46{bottom:575.493333pt;}
.y10{bottom:577.573333pt;}
.y59{bottom:578.293333pt;}
.y83{bottom:579.893333pt;}
.ye7{bottom:580.213333pt;}
.y15d{bottom:581.093333pt;}
.y10e{bottom:581.493333pt;}
.y17f{bottom:582.053333pt;}
.yc7{bottom:588.933333pt;}
.yac{bottom:590.293333pt;}
.y135{bottom:590.773333pt;}
.y45{bottom:591.173333pt;}
.y82{bottom:596.293333pt;}
.y17e{bottom:597.653333pt;}
.y58{bottom:601.973333pt;}
.ye6{bottom:604.533333pt;}
.y15c{bottom:605.013333pt;}
.y10d{bottom:605.813333pt;}
.y134{bottom:606.453333pt;}
.y44{bottom:606.773333pt;}
.yc6{bottom:613.253333pt;}
.yab{bottom:613.893333pt;}
.yf{bottom:619.093333pt;}
.y17d{bottom:621.333333pt;}
.y133{bottom:622.053333pt;}
.y43{bottom:622.453333pt;}
.y81{bottom:628.693333pt;}
.ye5{bottom:628.853333pt;}
.y105{bottom:630.133333pt;}
.y57{bottom:633.573333pt;}
.y17c{bottom:636.933333pt;}
.yc5{bottom:637.493333pt;}
.y132{bottom:637.653333pt;}
.y15b{bottom:637.893333pt;}
.y42{bottom:638.053333pt;}
.y80{bottom:644.293333pt;}
.yaa{bottom:644.933333pt;}
.ye{bottom:650.693333pt;}
.y131{bottom:653.333333pt;}
.y15a{bottom:653.493333pt;}
.y41{bottom:653.653333pt;}
.y10b{bottom:654.373333pt;}
.ya3{bottom:655.733333pt;}
.y17b{bottom:660.613333pt;}
.yc4{bottom:661.813333pt;}
.y56{bottom:662.213333pt;}
.y130{bottom:668.933333pt;}
.y159{bottom:669.173333pt;}
.y40{bottom:669.333333pt;}
.ye4{bottom:672.773333pt;}
.y7f{bottom:673.173333pt;}
.y17a{bottom:676.213333pt;}
.y10a{bottom:678.693333pt;}
.ya9{bottom:680.053333pt;}
.yd{bottom:682.533333pt;}
.y12f{bottom:684.613333pt;}
.y158{bottom:684.773333pt;}
.y3f{bottom:684.933333pt;}
.yc3{bottom:686.133333pt;}
.y7e{bottom:689.573333pt;}
.y179{bottom:691.813333pt;}
.y12e{bottom:700.213333pt;}
.y157{bottom:700.373333pt;}
.y3e{bottom:700.613333pt;}
.y109{bottom:703.013333pt;}
.ya8{bottom:704.373333pt;}
.y7d{bottom:705.973333pt;}
.ybf{bottom:710.373333pt;}
.y178{bottom:715.493333pt;}
.y12d{bottom:715.813333pt;}
.y3d{bottom:716.213333pt;}
.ye3{bottom:716.693333pt;}
.yc{bottom:717.893333pt;}
.y7c{bottom:722.373333pt;}
.y156{bottom:724.293333pt;}
.y108{bottom:727.333333pt;}
.ya7{bottom:728.613333pt;}
.y177{bottom:731.093333pt;}
.y12c{bottom:731.493333pt;}
.y3c{bottom:731.813333pt;}
.yb{bottom:733.893333pt;}
.yc1{bottom:734.693333pt;}
.y176{bottom:746.693333pt;}
.y12b{bottom:747.093333pt;}
.y3b{bottom:747.493333pt;}
.ya{bottom:749.893333pt;}
.y107{bottom:751.573333pt;}
.ya6{bottom:752.933333pt;}
.y7b{bottom:754.693333pt;}
.y155{bottom:757.253333pt;}
.ye2{bottom:760.613333pt;}
.y12a{bottom:762.693333pt;}
.y3a{bottom:763.093333pt;}
.y9{bottom:765.893333pt;}
.y7a{bottom:770.373333pt;}
.y154{bottom:772.853333pt;}
.yfb{bottom:775.893333pt;}
.ya5{bottom:777.253333pt;}
.y129{bottom:778.373333pt;}
.y39{bottom:778.693333pt;}
.y8{bottom:781.893333pt;}
.ye1{bottom:784.933333pt;}
.y175{bottom:785.973333pt;}
.y153{bottom:788.533333pt;}
.ybe{bottom:793.653333pt;}
.y128{bottom:793.973333pt;}
.y38{bottom:794.373333pt;}
.y7{bottom:797.893333pt;}
.y104{bottom:800.213333pt;}
.y9f{bottom:801.493333pt;}
.y174{bottom:801.653333pt;}
.y79{bottom:801.973333pt;}
.ye0{bottom:809.253333pt;}
.y127{bottom:809.653333pt;}
.y37{bottom:809.973333pt;}
.y152{bottom:812.453333pt;}
.y78{bottom:817.653333pt;}
.y103{bottom:824.533333pt;}
.ybd{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.ya2{bottom:825.813333pt;}
.y6{bottom:826.613333pt;}
.y77{bottom:833.253333pt;}
.ybc{bottom:840.853333pt;}
.y35{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y151{bottom:845.573333pt;}
.y102{bottom:848.773333pt;}
.y76{bottom:848.853333pt;}
.ydf{bottom:849.173333pt;}
.ya1{bottom:850.133333pt;}
.ybb{bottom:856.533333pt;}
.y34{bottom:856.853333pt;}
.y75{bottom:864.533333pt;}
.yba{bottom:872.133333pt;}
.y126{bottom:872.533333pt;}
.y101{bottom:873.093333pt;}
.yde{bottom:873.493333pt;}
.y9c{bottom:874.453333pt;}
.y4{bottom:877.893333pt;}
.y74{bottom:880.133333pt;}
.y125{bottom:888.133333pt;}
.y33{bottom:888.533333pt;}
.y73{bottom:895.813333pt;}
.yff{bottom:897.413333pt;}
.ydd{bottom:897.760000pt;}
.y9e{bottom:898.720000pt;}
.y3{bottom:899.840000pt;}
.yb9{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.y72{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.yfe{bottom:921.680000pt;}
.y9b{bottom:923.040000pt;}
.y173{bottom:927.440000pt;}
.yb8{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.ydc{bottom:937.680000pt;}
.y172{bottom:943.040000pt;}
.yfd{bottom:946.000000pt;}
.yb7{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y171{bottom:958.720000pt;}
.ydb{bottom:962.000000pt;}
.y9a{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.yfa{bottom:970.320000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.yda{bottom:1001.920000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.he{height:23.626667pt;}
.hf{height:23.680000pt;}
.h17{height:23.706667pt;}
.h2{height:28.356562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h14{height:37.032187pt;}
.h16{height:39.280000pt;}
.h18{height:43.280000pt;}
.h7{height:46.499062pt;}
.hb{height:46.916562pt;}
.hc{height:47.920000pt;}
.h11{height:47.946667pt;}
.h5{height:50.954062pt;}
.h8{height:51.411562pt;}
.h10{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h15{height:63.600000pt;}
.h4{height:64.875937pt;}
.h12{height:72.240000pt;}
.h13{height:145.120000pt;}
.h19{height:193.786667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w15{width:14.560000pt;}
.w16{width:15.680000pt;}
.w17{width:15.760000pt;}
.w1d{width:19.680000pt;}
.w19{width:21.280000pt;}
.w1a{width:23.760000pt;}
.w1e{width:25.840000pt;}
.w18{width:26.400000pt;}
.w1c{width:26.880000pt;}
.w1f{width:27.360000pt;}
.w1b{width:38.880000pt;}
.wc{width:41.840000pt;}
.wa{width:43.680000pt;}
.w5{width:58.240000pt;}
.w7{width:70.266667pt;}
.w12{width:74.400000pt;}
.w3{width:78.320000pt;}
.wb{width:79.760000pt;}
.w13{width:85.280000pt;}
.wd{width:86.160000pt;}
.w11{width:95.386667pt;}
.w10{width:97.520000pt;}
.w14{width:101.680000pt;}
.w23{width:102.560000pt;}
.w6{width:103.360000pt;}
.w9{width:103.386667pt;}
.we{width:104.000000pt;}
.w22{width:112.986667pt;}
.w25{width:141.680000pt;}
.w24{width:142.480000pt;}
.w4{width:174.346667pt;}
.w8{width:190.800000pt;}
.wf{width:221.066667pt;}
.w21{width:284.880000pt;}
.w20{width:678.773333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.520000pt;}
.x15{left:57.600000pt;}
.x1{left:60.480000pt;}
.xb{left:84.479988pt;}
.x26{left:98.879988pt;}
.x21{left:109.119988pt;}
.x22{left:146.106667pt;}
.x5{left:155.706655pt;}
.xc{left:165.946667pt;}
.x14{left:171.706655pt;}
.x2{left:180.266655pt;}
.x6{left:240.906667pt;}
.x11{left:252.746667pt;}
.x12{left:273.386655pt;}
.x16{left:279.306667pt;}
.x25{left:289.306667pt;}
.x8{left:319.866667pt;}
.xd{left:357.466667pt;}
.x17{left:377.546667pt;}
.xa{left:423.946667pt;}
.x23{left:431.626667pt;}
.xe{left:461.493333pt;}
.x18{left:473.653333pt;}
.x1b{left:488.853333pt;}
.x9{left:494.853333pt;}
.xf{left:505.813333pt;}
.x1c{left:521.653333pt;}
.x24{left:545.333333pt;}
.x19{left:548.773333pt;}
.x1d{left:570.693333pt;}
.x10{left:586.213333pt;}
.x1e{left:595.173333pt;}
.x1a{left:634.693333pt;}
.x13{left:639.013322pt;}
.x4{left:663.013322pt;}
.x1f{left:682.533333pt;}
.x3{left:704.053322pt;}
.x20{left:709.013333pt;}
}




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