
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7c47d3d83317b502dfa06734.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090820;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_fdaa753a89ca39e60e1b7861.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_89420bc7b51c23902fb33e03.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090820;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_6ed886cb071c1791b09994d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050293;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_c96f1c55d3c379fd2872da8e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.909180;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_9d6ebf988a370dc00dfb5db2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_b00605cc4d948345071ebb8d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_513965c7c702851a43c19c1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_953f86fb59794efa718b7660.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.748535;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;}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,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);}
.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);}
.v9{vertical-align:-23.040000px;}
.v2{vertical-align:-18.000000px;}
.v7{vertical-align:-15.120000px;}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v8{vertical-align:15.840000px;}
.v1{vertical-align:18.000000px;}
.va{vertical-align:22.320000px;}
.v6{vertical-align:62.640000px;}
.v5{vertical-align:77.760000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.460200px;}
.ls1a{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.153360px;}
.ls17{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.229680px;}
.ls4{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.518400px;}
.ls8{letter-spacing:0.866880px;}
.ls9{letter-spacing:1.572480px;}
.lse{letter-spacing:1.944000px;}
.ls15{letter-spacing:2.158560px;}
.ls1c{letter-spacing:2.340000px;}
.ls13{letter-spacing:2.576160px;}
.ls14{letter-spacing:2.664000px;}
.ls16{letter-spacing:3.133440px;}
.ls18{letter-spacing:3.296160px;}
.lsb{letter-spacing:3.398400px;}
.lsf{letter-spacing:4.104000px;}
.lsa{letter-spacing:4.118400px;}
.ls19{letter-spacing:4.500000px;}
.ls11{letter-spacing:4.824000px;}
.ls1e{letter-spacing:8.100000px;}
.ls10{letter-spacing:14.198400px;}
.lsd{letter-spacing:94.104000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.146400px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.147200px;}
.ws6{word-spacing:-9.187200px;}
.ws2{word-spacing:-9.000000px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-5.619840px;}
._12{margin-left:-4.226640px;}
._4{margin-left:-3.149520px;}
._3{margin-left:-2.112000px;}
._1{margin-left:-1.068480px;}
._0{width:1.627920px;}
._2{width:3.360000px;}
._9{width:5.318640px;}
._8{width:6.834240px;}
._6{width:7.873920px;}
._7{width:8.978400px;}
._b{width:10.398240px;}
._a{width:11.473920px;}
._c{width:12.512400px;}
._5{width:13.740240px;}
._e{width:16.843440px;}
._11{width:18.346320px;}
._15{width:19.558080px;}
._1a{width:21.379680px;}
._14{width:22.649040px;}
._13{width:23.664960px;}
._1e{width:25.349280px;}
._16{width:32.880720px;}
._18{width:39.919680px;}
._17{width:41.712480px;}
._19{width:45.158880px;}
._f{width:60.290400px;}
._1b{width:63.510480px;}
._10{width:114.544080px;}
._1d{width:133.862400px;}
._1c{width:134.878320px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y152{bottom:1.800150px;}
.y4{bottom:5.760000px;}
.y16{bottom:6.300000px;}
.y13{bottom:7.380000px;}
.y38{bottom:9.540000px;}
.y151{bottom:10.979850px;}
.y60{bottom:14.040000px;}
.y6{bottom:20.880000px;}
.y12{bottom:22.860000px;}
.y61{bottom:27.720000px;}
.y37{bottom:29.160000px;}
.y5f{bottom:33.480000px;}
.y3{bottom:34.020000px;}
.y11{bottom:38.340000px;}
.y10{bottom:54.045000px;}
.yf{bottom:69.525000px;}
.y118{bottom:78.156000px;}
.y58{bottom:79.776000px;}
.ye7{bottom:88.596000px;}
.yae{bottom:89.316000px;}
.ye{bottom:94.005000px;}
.y14a{bottom:98.316000px;}
.y117{bottom:104.436000px;}
.y57{bottom:106.236000px;}
.yad{bottom:106.416000px;}
.yd{bottom:109.485000px;}
.ye6{bottom:114.876000px;}
.y149{bottom:115.596000px;}
.yac{bottom:123.696000px;}
.y56{bottom:123.876000px;}
.yc{bottom:125.145000px;}
.y116{bottom:130.716000px;}
.ye5{bottom:132.156000px;}
.y148{bottom:137.376000px;}
.yb{bottom:140.625000px;}
.yab{bottom:140.976000px;}
.y55{bottom:141.336000px;}
.ye4{bottom:149.436000px;}
.y147{bottom:154.650000px;}
.ya{bottom:156.105000px;}
.y115{bottom:156.810000px;}
.yaa{bottom:158.250000px;}
.y54{bottom:158.430000px;}
.ye3{bottom:166.710000px;}
.y9{bottom:171.585000px;}
.ya9{bottom:175.530000px;}
.y53{bottom:175.710000px;}
.y146{bottom:176.430000px;}
.y114{bottom:183.090000px;}
.ye2{bottom:183.990000px;}
.y8{bottom:191.745000px;}
.ya8{bottom:192.810000px;}
.y52{bottom:192.990000px;}
.y145{bottom:193.710000px;}
.y113{bottom:200.370000px;}
.ye1{bottom:201.090000px;}
.y81{bottom:201.270000px;}
.ya7{bottom:209.910000px;}
.y51{bottom:210.270000px;}
.y35{bottom:212.790000px;}
.y144{bottom:215.310000px;}
.y112{bottom:226.650000px;}
.ya6{bottom:227.190000px;}
.ye0{bottom:227.370000px;}
.y50{bottom:227.550000px;}
.y34{bottom:230.070000px;}
.y143{bottom:232.590000px;}
.ya5{bottom:244.470000px;}
.y4f{bottom:244.830000px;}
.y33{bottom:247.350000px;}
.y111{bottom:252.930000px;}
.ydf{bottom:253.650000px;}
.y142{bottom:254.370000px;}
.ya4{bottom:261.750000px;}
.y4e{bottom:261.930000px;}
.y32{bottom:264.630000px;}
.y110{bottom:270.210000px;}
.yde{bottom:270.930000px;}
.y141{bottom:271.650000px;}
.ya3{bottom:279.030000px;}
.y4d{bottom:279.210000px;}
.y31{bottom:281.910000px;}
.y10f{bottom:287.310000px;}
.ydd{bottom:288.210000px;}
.y140{bottom:293.430000px;}
.ya2{bottom:296.310000px;}
.y4c{bottom:296.490000px;}
.y30{bottom:299.010000px;}
.y10e{bottom:304.590000px;}
.ydc{bottom:305.310000px;}
.ya1{bottom:313.410000px;}
.y4b{bottom:313.770000px;}
.y13f{bottom:315.030000px;}
.y2f{bottom:316.290000px;}
.y10d{bottom:321.870000px;}
.ydb{bottom:322.590000px;}
.ya0{bottom:330.690000px;}
.y4a{bottom:331.050000px;}
.y13e{bottom:332.310000px;}
.y2e{bottom:333.570000px;}
.y10c{bottom:339.195000px;}
.yda{bottom:339.915000px;}
.y9f{bottom:348.015000px;}
.y80{bottom:348.195000px;}
.y49{bottom:348.375000px;}
.y2d{bottom:350.895000px;}
.y13d{bottom:354.135000px;}
.y10b{bottom:356.475000px;}
.yd9{bottom:357.195000px;}
.y9e{bottom:365.295000px;}
.y48{bottom:365.475000px;}
.y2c{bottom:368.175000px;}
.y13c{bottom:371.415000px;}
.y10a{bottom:373.755000px;}
.yd8{bottom:374.475000px;}
.y9d{bottom:382.575000px;}
.y47{bottom:382.755000px;}
.y2b{bottom:385.455000px;}
.y109{bottom:390.855000px;}
.yd7{bottom:391.755000px;}
.y13b{bottom:393.195000px;}
.y46{bottom:400.035000px;}
.y2a{bottom:402.555000px;}
.y108{bottom:408.135000px;}
.y9c{bottom:408.675000px;}
.yd6{bottom:408.855000px;}
.y13a{bottom:414.975000px;}
.y45{bottom:417.315000px;}
.y29{bottom:419.835000px;}
.y107{bottom:425.415000px;}
.y9b{bottom:425.955000px;}
.yd5{bottom:426.135000px;}
.y139{bottom:432.255000px;}
.y7f{bottom:434.595000px;}
.y28{bottom:437.115000px;}
.y106{bottom:442.695000px;}
.y9a{bottom:443.235000px;}
.yd4{bottom:443.415000px;}
.y44{bottom:446.475000px;}
.y138{bottom:453.855000px;}
.y27{bottom:454.395000px;}
.y105{bottom:459.975000px;}
.y99{bottom:460.515000px;}
.y7e{bottom:460.695000px;}
.y137{bottom:471.135000px;}
.y26{bottom:471.675000px;}
.y43{bottom:472.575000px;}
.y98{bottom:477.795000px;}
.y7d{bottom:477.975000px;}
.y104{bottom:486.075000px;}
.yd3{bottom:486.975000px;}
.y136{bottom:492.915000px;}
.y97{bottom:495.075000px;}
.y7c{bottom:495.255000px;}
.y25{bottom:497.775000px;}
.y103{bottom:503.355000px;}
.y135{bottom:510.195000px;}
.y96{bottom:512.175000px;}
.y7b{bottom:512.535000px;}
.yd2{bottom:513.075000px;}
.y102{bottom:520.635000px;}
.y24{bottom:524.055000px;}
.y95{bottom:529.455000px;}
.y7a{bottom:529.815000px;}
.y134{bottom:531.975000px;}
.y101{bottom:537.915000px;}
.yd1{bottom:539.355000px;}
.y23{bottom:541.335000px;}
.y94{bottom:546.735000px;}
.y79{bottom:547.095000px;}
.y133{bottom:549.255000px;}
.y100{bottom:555.195000px;}
.yd0{bottom:556.635000px;}
.y93{bottom:564.015000px;}
.y78{bottom:564.195000px;}
.y22{bottom:567.615000px;}
.y132{bottom:570.855000px;}
.yff{bottom:572.475000px;}
.ycf{bottom:573.915000px;}
.y92{bottom:581.295000px;}
.y77{bottom:581.475000px;}
.y21{bottom:584.895000px;}
.yfe{bottom:589.755000px;}
.yce{bottom:591.195000px;}
.y131{bottom:592.635000px;}
.y91{bottom:598.575000px;}
.y76{bottom:598.755000px;}
.y20{bottom:602.175000px;}
.yfd{bottom:606.885000px;}
.ycd{bottom:608.505000px;}
.y130{bottom:609.945000px;}
.y90{bottom:615.705000px;}
.y75{bottom:616.065000px;}
.y1f{bottom:619.305000px;}
.yfc{bottom:624.165000px;}
.ycc{bottom:625.785000px;}
.y12f{bottom:631.725000px;}
.y8f{bottom:632.985000px;}
.y74{bottom:633.345000px;}
.y1e{bottom:636.585000px;}
.yfb{bottom:641.445000px;}
.ycb{bottom:642.885000px;}
.y12e{bottom:649.005000px;}
.y8e{bottom:650.265000px;}
.y73{bottom:650.445000px;}
.y1d{bottom:653.865000px;}
.yfa{bottom:658.725000px;}
.yca{bottom:660.165000px;}
.y8d{bottom:667.545000px;}
.y72{bottom:667.725000px;}
.y12d{bottom:670.605000px;}
.y1c{bottom:671.145000px;}
.yf9{bottom:676.005000px;}
.yc9{bottom:677.445000px;}
.y8c{bottom:684.825000px;}
.y71{bottom:685.005000px;}
.y12c{bottom:687.885000px;}
.y1b{bottom:688.425000px;}
.yf8{bottom:693.105000px;}
.yc8{bottom:694.725000px;}
.y8b{bottom:702.105000px;}
.y70{bottom:702.285000px;}
.y1a{bottom:705.705000px;}
.y12b{bottom:709.665000px;}
.yf7{bottom:710.385000px;}
.yc7{bottom:712.005000px;}
.y8a{bottom:719.205000px;}
.y6f{bottom:719.565000px;}
.y19{bottom:722.805000px;}
.y12a{bottom:726.945000px;}
.yf6{bottom:727.665000px;}
.yc6{bottom:729.105000px;}
.y89{bottom:736.485000px;}
.y6e{bottom:736.845000px;}
.y18{bottom:740.085000px;}
.y150{bottom:744.225000px;}
.yf5{bottom:744.945000px;}
.yc5{bottom:746.385000px;}
.y129{bottom:748.725000px;}
.y88{bottom:753.765000px;}
.y6d{bottom:753.945000px;}
.y17{bottom:757.365000px;}
.yf4{bottom:762.225000px;}
.yc4{bottom:763.665000px;}
.y14f{bottom:765.825000px;}
.y128{bottom:766.005000px;}
.y87{bottom:771.045000px;}
.y6c{bottom:771.225000px;}
.y42{bottom:776.445000px;}
.yf3{bottom:779.505000px;}
.yc3{bottom:780.945000px;}
.y15{bottom:781.125000px;}
.y14e{bottom:783.105000px;}
.y127{bottom:787.605000px;}
.y86{bottom:788.325000px;}
.y41{bottom:793.725000px;}
.yf2{bottom:796.605000px;}
.y6b{bottom:797.505000px;}
.yc2{bottom:798.225000px;}
.y126{bottom:804.885000px;}
.y14{bottom:805.245000px;}
.y85{bottom:805.425000px;}
.y40{bottom:810.825000px;}
.y6a{bottom:814.785000px;}
.yc1{bottom:815.505000px;}
.y14d{bottom:822.165000px;}
.yf1{bottom:822.885000px;}
.y7{bottom:826.485000px;}
.y125{bottom:826.665000px;}
.y3f{bottom:828.105000px;}
.y84{bottom:831.705000px;}
.y69{bottom:832.065000px;}
.yc0{bottom:832.605000px;}
.y124{bottom:843.945000px;}
.y3e{bottom:845.385000px;}
.yf0{bottom:849.165000px;}
.y68{bottom:849.345000px;}
.ybf{bottom:849.885000px;}
.y83{bottom:861.045000px;}
.y3d{bottom:862.665000px;}
.y123{bottom:865.725000px;}
.y67{bottom:866.445000px;}
.ybe{bottom:867.165000px;}
.y3c{bottom:879.990000px;}
.y122{bottom:883.050000px;}
.y66{bottom:883.770000px;}
.y82{bottom:883.950000px;}
.ybd{bottom:884.490000px;}
.y3b{bottom:897.270000px;}
.y65{bottom:901.050000px;}
.ybc{bottom:901.770000px;}
.y121{bottom:904.650000px;}
.yef{bottom:918.150000px;}
.ybb{bottom:919.050000px;}
.y120{bottom:921.930000px;}
.y3a{bottom:926.430000px;}
.y64{bottom:929.490000px;}
.yee{bottom:935.430000px;}
.yba{bottom:936.150000px;}
.y11f{bottom:943.710000px;}
.y63{bottom:949.650000px;}
.y39{bottom:952.350000px;}
.yed{bottom:952.710000px;}
.yb9{bottom:953.430000px;}
.y11e{bottom:960.990000px;}
.y62{bottom:969.270000px;}
.yec{bottom:969.990000px;}
.yb8{bottom:970.710000px;}
.y11d{bottom:982.770000px;}
.yeb{bottom:987.270000px;}
.yb7{bottom:987.990000px;}
.y5e{bottom:995.550000px;}
.y11c{bottom:1000.050000px;}
.yea{bottom:1004.550000px;}
.yb6{bottom:1005.270000px;}
.ye9{bottom:1021.650000px;}
.yb5{bottom:1022.550000px;}
.y5{bottom:1036.050000px;}
.ye8{bottom:1038.930000px;}
.yb4{bottom:1039.650000px;}
.y14c{bottom:1043.430000px;}
.yb3{bottom:1056.930000px;}
.y11b{bottom:1060.710000px;}
.y5d{bottom:1065.210000px;}
.yb2{bottom:1074.210000px;}
.y11a{bottom:1077.990000px;}
.y5c{bottom:1082.490000px;}
.y2{bottom:1089.330000px;}
.yb1{bottom:1091.490000px;}
.y119{bottom:1099.590000px;}
.y5b{bottom:1099.770000px;}
.yb0{bottom:1108.770000px;}
.y5a{bottom:1116.870000px;}
.y14b{bottom:1121.370000px;}
.yaf{bottom:1125.870000px;}
.y59{bottom:1143.180000px;}
.y36{bottom:1161.720000px;}
.y1{bottom:1161.900000px;}
.h15{height:20.700000px;}
.hc{height:21.240000px;}
.hd{height:23.400000px;}
.ha{height:30.041016px;}
.h11{height:43.302656px;}
.h14{height:43.506914px;}
.h9{height:45.061523px;}
.hb{height:48.041016px;}
.h8{height:49.500000px;}
.he{height:49.868086px;}
.h5{height:52.290000px;}
.h6{height:52.380000px;}
.h12{height:54.360000px;}
.h16{height:57.446719px;}
.hf{height:60.082031px;}
.h2{height:65.884219px;}
.h3{height:68.076000px;}
.h10{height:74.116406px;}
.h4{height:83.790000px;}
.h13{height:151.876406px;}
.h7{height:208.830000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:44.496000px;}
.wf{width:76.320000px;}
.w4{width:89.496000px;}
.wb{width:114.516000px;}
.w8{width:117.396000px;}
.wd{width:117.900000px;}
.wc{width:120.456000px;}
.w9{width:122.256000px;}
.wa{width:132.660000px;}
.w7{width:352.875000px;}
.w6{width:372.315000px;}
.w5{width:635.685000px;}
.we{width:689.010000px;}
.w3{width:725.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.496000px;}
.x1f{left:17.820000px;}
.x5{left:21.276000px;}
.x18{left:29.520000px;}
.x1{left:63.899987px;}
.x14{left:82.656000px;}
.x2{left:83.880000px;}
.xe{left:85.139987px;}
.x1b{left:102.455987px;}
.x1d{left:109.835987px;}
.x9{left:120.450000px;}
.x1c{left:136.295987px;}
.x3{left:159.330000px;}
.x6{left:173.370000px;}
.x11{left:197.849987px;}
.xa{left:201.270000px;}
.x13{left:225.929987px;}
.x1a{left:239.609987px;}
.x4{left:250.095000px;}
.x15{left:269.355000px;}
.xb{left:323.535000px;}
.x1e{left:424.335000px;}
.x16{left:429.765000px;}
.xf{left:437.654987px;}
.x8{left:456.195000px;}
.xc{left:570.705000px;}
.x10{left:618.764987px;}
.x12{left:620.924987px;}
.x19{left:662.009987px;}
.xd{left:691.170000px;}
.x17{left:752.910000px;}
@media print{
.v9{vertical-align:-20.480000pt;}
.v2{vertical-align:-16.000000pt;}
.v7{vertical-align:-13.440000pt;}
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v8{vertical-align:14.080000pt;}
.v1{vertical-align:16.000000pt;}
.va{vertical-align:19.840000pt;}
.v6{vertical-align:55.680000pt;}
.v5{vertical-align:69.120000pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.409067pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.136320pt;}
.ls17{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.204160pt;}
.ls4{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.460800pt;}
.ls8{letter-spacing:0.770560pt;}
.ls9{letter-spacing:1.397760pt;}
.lse{letter-spacing:1.728000pt;}
.ls15{letter-spacing:1.918720pt;}
.ls1c{letter-spacing:2.080000pt;}
.ls13{letter-spacing:2.289920pt;}
.ls14{letter-spacing:2.368000pt;}
.ls16{letter-spacing:2.785280pt;}
.ls18{letter-spacing:2.929920pt;}
.lsb{letter-spacing:3.020800pt;}
.lsf{letter-spacing:3.648000pt;}
.lsa{letter-spacing:3.660800pt;}
.ls19{letter-spacing:4.000000pt;}
.ls11{letter-spacing:4.288000pt;}
.ls1e{letter-spacing:7.200000pt;}
.ls10{letter-spacing:12.620800pt;}
.lsd{letter-spacing:83.648000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.463467pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.686400pt;}
.ws6{word-spacing:-8.166400pt;}
.ws2{word-spacing:-8.000000pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-4.995413pt;}
._12{margin-left:-3.757013pt;}
._4{margin-left:-2.799573pt;}
._3{margin-left:-1.877333pt;}
._1{margin-left:-0.949760pt;}
._0{width:1.447040pt;}
._2{width:2.986667pt;}
._9{width:4.727680pt;}
._8{width:6.074880pt;}
._6{width:6.999040pt;}
._7{width:7.980800pt;}
._b{width:9.242880pt;}
._a{width:10.199040pt;}
._c{width:11.122133pt;}
._5{width:12.213547pt;}
._e{width:14.971947pt;}
._11{width:16.307840pt;}
._15{width:17.384960pt;}
._1a{width:19.004160pt;}
._14{width:20.132480pt;}
._13{width:21.035520pt;}
._1e{width:22.532693pt;}
._16{width:29.227307pt;}
._18{width:35.484160pt;}
._17{width:37.077760pt;}
._19{width:40.141227pt;}
._f{width:53.591467pt;}
._1b{width:56.453760pt;}
._10{width:101.816960pt;}
._1d{width:118.988800pt;}
._1c{width:119.891840pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y152{bottom:1.600133pt;}
.y4{bottom:5.120000pt;}
.y16{bottom:5.600000pt;}
.y13{bottom:6.560000pt;}
.y38{bottom:8.480000pt;}
.y151{bottom:9.759867pt;}
.y60{bottom:12.480000pt;}
.y6{bottom:18.560000pt;}
.y12{bottom:20.320000pt;}
.y61{bottom:24.640000pt;}
.y37{bottom:25.920000pt;}
.y5f{bottom:29.760000pt;}
.y3{bottom:30.240000pt;}
.y11{bottom:34.080000pt;}
.y10{bottom:48.040000pt;}
.yf{bottom:61.800000pt;}
.y118{bottom:69.472000pt;}
.y58{bottom:70.912000pt;}
.ye7{bottom:78.752000pt;}
.yae{bottom:79.392000pt;}
.ye{bottom:83.560000pt;}
.y14a{bottom:87.392000pt;}
.y117{bottom:92.832000pt;}
.y57{bottom:94.432000pt;}
.yad{bottom:94.592000pt;}
.yd{bottom:97.320000pt;}
.ye6{bottom:102.112000pt;}
.y149{bottom:102.752000pt;}
.yac{bottom:109.952000pt;}
.y56{bottom:110.112000pt;}
.yc{bottom:111.240000pt;}
.y116{bottom:116.192000pt;}
.ye5{bottom:117.472000pt;}
.y148{bottom:122.112000pt;}
.yb{bottom:125.000000pt;}
.yab{bottom:125.312000pt;}
.y55{bottom:125.632000pt;}
.ye4{bottom:132.832000pt;}
.y147{bottom:137.466667pt;}
.ya{bottom:138.760000pt;}
.y115{bottom:139.386667pt;}
.yaa{bottom:140.666667pt;}
.y54{bottom:140.826667pt;}
.ye3{bottom:148.186667pt;}
.y9{bottom:152.520000pt;}
.ya9{bottom:156.026667pt;}
.y53{bottom:156.186667pt;}
.y146{bottom:156.826667pt;}
.y114{bottom:162.746667pt;}
.ye2{bottom:163.546667pt;}
.y8{bottom:170.440000pt;}
.ya8{bottom:171.386667pt;}
.y52{bottom:171.546667pt;}
.y145{bottom:172.186667pt;}
.y113{bottom:178.106667pt;}
.ye1{bottom:178.746667pt;}
.y81{bottom:178.906667pt;}
.ya7{bottom:186.586667pt;}
.y51{bottom:186.906667pt;}
.y35{bottom:189.146667pt;}
.y144{bottom:191.386667pt;}
.y112{bottom:201.466667pt;}
.ya6{bottom:201.946667pt;}
.ye0{bottom:202.106667pt;}
.y50{bottom:202.266667pt;}
.y34{bottom:204.506667pt;}
.y143{bottom:206.746667pt;}
.ya5{bottom:217.306667pt;}
.y4f{bottom:217.626667pt;}
.y33{bottom:219.866667pt;}
.y111{bottom:224.826667pt;}
.ydf{bottom:225.466667pt;}
.y142{bottom:226.106667pt;}
.ya4{bottom:232.666667pt;}
.y4e{bottom:232.826667pt;}
.y32{bottom:235.226667pt;}
.y110{bottom:240.186667pt;}
.yde{bottom:240.826667pt;}
.y141{bottom:241.466667pt;}
.ya3{bottom:248.026667pt;}
.y4d{bottom:248.186667pt;}
.y31{bottom:250.586667pt;}
.y10f{bottom:255.386667pt;}
.ydd{bottom:256.186667pt;}
.y140{bottom:260.826667pt;}
.ya2{bottom:263.386667pt;}
.y4c{bottom:263.546667pt;}
.y30{bottom:265.786667pt;}
.y10e{bottom:270.746667pt;}
.ydc{bottom:271.386667pt;}
.ya1{bottom:278.586667pt;}
.y4b{bottom:278.906667pt;}
.y13f{bottom:280.026667pt;}
.y2f{bottom:281.146667pt;}
.y10d{bottom:286.106667pt;}
.ydb{bottom:286.746667pt;}
.ya0{bottom:293.946667pt;}
.y4a{bottom:294.266667pt;}
.y13e{bottom:295.386667pt;}
.y2e{bottom:296.506667pt;}
.y10c{bottom:301.506667pt;}
.yda{bottom:302.146667pt;}
.y9f{bottom:309.346667pt;}
.y80{bottom:309.506667pt;}
.y49{bottom:309.666667pt;}
.y2d{bottom:311.906667pt;}
.y13d{bottom:314.786667pt;}
.y10b{bottom:316.866667pt;}
.yd9{bottom:317.506667pt;}
.y9e{bottom:324.706667pt;}
.y48{bottom:324.866667pt;}
.y2c{bottom:327.266667pt;}
.y13c{bottom:330.146667pt;}
.y10a{bottom:332.226667pt;}
.yd8{bottom:332.866667pt;}
.y9d{bottom:340.066667pt;}
.y47{bottom:340.226667pt;}
.y2b{bottom:342.626667pt;}
.y109{bottom:347.426667pt;}
.yd7{bottom:348.226667pt;}
.y13b{bottom:349.506667pt;}
.y46{bottom:355.586667pt;}
.y2a{bottom:357.826667pt;}
.y108{bottom:362.786667pt;}
.y9c{bottom:363.266667pt;}
.yd6{bottom:363.426667pt;}
.y13a{bottom:368.866667pt;}
.y45{bottom:370.946667pt;}
.y29{bottom:373.186667pt;}
.y107{bottom:378.146667pt;}
.y9b{bottom:378.626667pt;}
.yd5{bottom:378.786667pt;}
.y139{bottom:384.226667pt;}
.y7f{bottom:386.306667pt;}
.y28{bottom:388.546667pt;}
.y106{bottom:393.506667pt;}
.y9a{bottom:393.986667pt;}
.yd4{bottom:394.146667pt;}
.y44{bottom:396.866667pt;}
.y138{bottom:403.426667pt;}
.y27{bottom:403.906667pt;}
.y105{bottom:408.866667pt;}
.y99{bottom:409.346667pt;}
.y7e{bottom:409.506667pt;}
.y137{bottom:418.786667pt;}
.y26{bottom:419.266667pt;}
.y43{bottom:420.066667pt;}
.y98{bottom:424.706667pt;}
.y7d{bottom:424.866667pt;}
.y104{bottom:432.066667pt;}
.yd3{bottom:432.866667pt;}
.y136{bottom:438.146667pt;}
.y97{bottom:440.066667pt;}
.y7c{bottom:440.226667pt;}
.y25{bottom:442.466667pt;}
.y103{bottom:447.426667pt;}
.y135{bottom:453.506667pt;}
.y96{bottom:455.266667pt;}
.y7b{bottom:455.586667pt;}
.yd2{bottom:456.066667pt;}
.y102{bottom:462.786667pt;}
.y24{bottom:465.826667pt;}
.y95{bottom:470.626667pt;}
.y7a{bottom:470.946667pt;}
.y134{bottom:472.866667pt;}
.y101{bottom:478.146667pt;}
.yd1{bottom:479.426667pt;}
.y23{bottom:481.186667pt;}
.y94{bottom:485.986667pt;}
.y79{bottom:486.306667pt;}
.y133{bottom:488.226667pt;}
.y100{bottom:493.506667pt;}
.yd0{bottom:494.786667pt;}
.y93{bottom:501.346667pt;}
.y78{bottom:501.506667pt;}
.y22{bottom:504.546667pt;}
.y132{bottom:507.426667pt;}
.yff{bottom:508.866667pt;}
.ycf{bottom:510.146667pt;}
.y92{bottom:516.706667pt;}
.y77{bottom:516.866667pt;}
.y21{bottom:519.906667pt;}
.yfe{bottom:524.226667pt;}
.yce{bottom:525.506667pt;}
.y131{bottom:526.786667pt;}
.y91{bottom:532.066667pt;}
.y76{bottom:532.226667pt;}
.y20{bottom:535.266667pt;}
.yfd{bottom:539.453333pt;}
.ycd{bottom:540.893333pt;}
.y130{bottom:542.173333pt;}
.y90{bottom:547.293333pt;}
.y75{bottom:547.613333pt;}
.y1f{bottom:550.493333pt;}
.yfc{bottom:554.813333pt;}
.ycc{bottom:556.253333pt;}
.y12f{bottom:561.533333pt;}
.y8f{bottom:562.653333pt;}
.y74{bottom:562.973333pt;}
.y1e{bottom:565.853333pt;}
.yfb{bottom:570.173333pt;}
.ycb{bottom:571.453333pt;}
.y12e{bottom:576.893333pt;}
.y8e{bottom:578.013333pt;}
.y73{bottom:578.173333pt;}
.y1d{bottom:581.213333pt;}
.yfa{bottom:585.533333pt;}
.yca{bottom:586.813333pt;}
.y8d{bottom:593.373333pt;}
.y72{bottom:593.533333pt;}
.y12d{bottom:596.093333pt;}
.y1c{bottom:596.573333pt;}
.yf9{bottom:600.893333pt;}
.yc9{bottom:602.173333pt;}
.y8c{bottom:608.733333pt;}
.y71{bottom:608.893333pt;}
.y12c{bottom:611.453333pt;}
.y1b{bottom:611.933333pt;}
.yf8{bottom:616.093333pt;}
.yc8{bottom:617.533333pt;}
.y8b{bottom:624.093333pt;}
.y70{bottom:624.253333pt;}
.y1a{bottom:627.293333pt;}
.y12b{bottom:630.813333pt;}
.yf7{bottom:631.453333pt;}
.yc7{bottom:632.893333pt;}
.y8a{bottom:639.293333pt;}
.y6f{bottom:639.613333pt;}
.y19{bottom:642.493333pt;}
.y12a{bottom:646.173333pt;}
.yf6{bottom:646.813333pt;}
.yc6{bottom:648.093333pt;}
.y89{bottom:654.653333pt;}
.y6e{bottom:654.973333pt;}
.y18{bottom:657.853333pt;}
.y150{bottom:661.533333pt;}
.yf5{bottom:662.173333pt;}
.yc5{bottom:663.453333pt;}
.y129{bottom:665.533333pt;}
.y88{bottom:670.013333pt;}
.y6d{bottom:670.173333pt;}
.y17{bottom:673.213333pt;}
.yf4{bottom:677.533333pt;}
.yc4{bottom:678.813333pt;}
.y14f{bottom:680.733333pt;}
.y128{bottom:680.893333pt;}
.y87{bottom:685.373333pt;}
.y6c{bottom:685.533333pt;}
.y42{bottom:690.173333pt;}
.yf3{bottom:692.893333pt;}
.yc3{bottom:694.173333pt;}
.y15{bottom:694.333333pt;}
.y14e{bottom:696.093333pt;}
.y127{bottom:700.093333pt;}
.y86{bottom:700.733333pt;}
.y41{bottom:705.533333pt;}
.yf2{bottom:708.093333pt;}
.y6b{bottom:708.893333pt;}
.yc2{bottom:709.533333pt;}
.y126{bottom:715.453333pt;}
.y14{bottom:715.773333pt;}
.y85{bottom:715.933333pt;}
.y40{bottom:720.733333pt;}
.y6a{bottom:724.253333pt;}
.yc1{bottom:724.893333pt;}
.y14d{bottom:730.813333pt;}
.yf1{bottom:731.453333pt;}
.y7{bottom:734.653333pt;}
.y125{bottom:734.813333pt;}
.y3f{bottom:736.093333pt;}
.y84{bottom:739.293333pt;}
.y69{bottom:739.613333pt;}
.yc0{bottom:740.093333pt;}
.y124{bottom:750.173333pt;}
.y3e{bottom:751.453333pt;}
.yf0{bottom:754.813333pt;}
.y68{bottom:754.973333pt;}
.ybf{bottom:755.453333pt;}
.y83{bottom:765.373333pt;}
.y3d{bottom:766.813333pt;}
.y123{bottom:769.533333pt;}
.y67{bottom:770.173333pt;}
.ybe{bottom:770.813333pt;}
.y3c{bottom:782.213333pt;}
.y122{bottom:784.933333pt;}
.y66{bottom:785.573333pt;}
.y82{bottom:785.733333pt;}
.ybd{bottom:786.213333pt;}
.y3b{bottom:797.573333pt;}
.y65{bottom:800.933333pt;}
.ybc{bottom:801.573333pt;}
.y121{bottom:804.133333pt;}
.yef{bottom:816.133333pt;}
.ybb{bottom:816.933333pt;}
.y120{bottom:819.493333pt;}
.y3a{bottom:823.493333pt;}
.y64{bottom:826.213333pt;}
.yee{bottom:831.493333pt;}
.yba{bottom:832.133333pt;}
.y11f{bottom:838.853333pt;}
.y63{bottom:844.133333pt;}
.y39{bottom:846.533333pt;}
.yed{bottom:846.853333pt;}
.yb9{bottom:847.493333pt;}
.y11e{bottom:854.213333pt;}
.y62{bottom:861.573333pt;}
.yec{bottom:862.213333pt;}
.yb8{bottom:862.853333pt;}
.y11d{bottom:873.573333pt;}
.yeb{bottom:877.573333pt;}
.yb7{bottom:878.213333pt;}
.y5e{bottom:884.933333pt;}
.y11c{bottom:888.933333pt;}
.yea{bottom:892.933333pt;}
.yb6{bottom:893.573333pt;}
.ye9{bottom:908.133333pt;}
.yb5{bottom:908.933333pt;}
.y5{bottom:920.933333pt;}
.ye8{bottom:923.493333pt;}
.yb4{bottom:924.133333pt;}
.y14c{bottom:927.493333pt;}
.yb3{bottom:939.493333pt;}
.y11b{bottom:942.853333pt;}
.y5d{bottom:946.853333pt;}
.yb2{bottom:954.853333pt;}
.y11a{bottom:958.213333pt;}
.y5c{bottom:962.213333pt;}
.y2{bottom:968.293333pt;}
.yb1{bottom:970.213333pt;}
.y119{bottom:977.413333pt;}
.y5b{bottom:977.573333pt;}
.yb0{bottom:985.573333pt;}
.y5a{bottom:992.773333pt;}
.y14b{bottom:996.773333pt;}
.yaf{bottom:1000.773333pt;}
.y59{bottom:1016.160000pt;}
.y36{bottom:1032.640000pt;}
.y1{bottom:1032.800000pt;}
.h15{height:18.400000pt;}
.hc{height:18.880000pt;}
.hd{height:20.800000pt;}
.ha{height:26.703125pt;}
.h11{height:38.491250pt;}
.h14{height:38.672812pt;}
.h9{height:40.054688pt;}
.hb{height:42.703125pt;}
.h8{height:44.000000pt;}
.he{height:44.327188pt;}
.h5{height:46.480000pt;}
.h6{height:46.560000pt;}
.h12{height:48.320000pt;}
.h16{height:51.063750pt;}
.hf{height:53.406250pt;}
.h2{height:58.563750pt;}
.h3{height:60.512000pt;}
.h10{height:65.881250pt;}
.h4{height:74.480000pt;}
.h13{height:135.001250pt;}
.h7{height:185.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:39.552000pt;}
.wf{width:67.840000pt;}
.w4{width:79.552000pt;}
.wb{width:101.792000pt;}
.w8{width:104.352000pt;}
.wd{width:104.800000pt;}
.wc{width:107.072000pt;}
.w9{width:108.672000pt;}
.wa{width:117.920000pt;}
.w7{width:313.666667pt;}
.w6{width:330.946667pt;}
.w5{width:565.053333pt;}
.we{width:612.453333pt;}
.w3{width:644.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.552000pt;}
.x1f{left:15.840000pt;}
.x5{left:18.912000pt;}
.x18{left:26.240000pt;}
.x1{left:56.799988pt;}
.x14{left:73.472000pt;}
.x2{left:74.560000pt;}
.xe{left:75.679988pt;}
.x1b{left:91.071988pt;}
.x1d{left:97.631988pt;}
.x9{left:107.066667pt;}
.x1c{left:121.151988pt;}
.x3{left:141.626667pt;}
.x6{left:154.106667pt;}
.x11{left:175.866655pt;}
.xa{left:178.906667pt;}
.x13{left:200.826655pt;}
.x1a{left:212.986655pt;}
.x4{left:222.306667pt;}
.x15{left:239.426667pt;}
.xb{left:287.586667pt;}
.x1e{left:377.186667pt;}
.x16{left:382.013333pt;}
.xf{left:389.026655pt;}
.x8{left:405.506667pt;}
.xc{left:507.293333pt;}
.x10{left:550.013322pt;}
.x12{left:551.933322pt;}
.x19{left:588.453322pt;}
.xd{left:614.373333pt;}
.x17{left:669.253333pt;}
}




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