
    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_b45f2ac76888442f750b087f.woff2')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_5888227fde04a439de66e786.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_6fd7c2e1a9813d0985b5478a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_e36aaefd2e863e04c8f4cf26.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_e8a9fbe08b6caabc761454d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_a5c0707218332c3581d9a19a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5c833d8c1eb08f984b71e8f5.woff2')format("woff");}.ff8{font-family:ff8;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1c{letter-spacing:-0.444600px;}
.ls14{letter-spacing:-0.310800px;}
.ls1a{letter-spacing:-0.243600px;}
.ls10{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.004680px;}
.ls4{letter-spacing:0.014760px;}
.ls11{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.095400px;}
.ls19{letter-spacing:0.098400px;}
.ls3{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.118200px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:47.726640px;}
.lse{letter-spacing:63.566640px;}
.ls17{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;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.344600px;}
.wse{word-spacing:-13.324800px;}
.wsd{word-spacing:-13.321800px;}
.ws8{word-spacing:-13.275360px;}
.wsb{word-spacing:-13.231080px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.982800px;}
.wsc{word-spacing:-12.915600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._4{margin-left:-3.585000px;}
._3{margin-left:-2.246400px;}
._0{margin-left:-1.110000px;}
._2{width:1.258200px;}
._7{width:2.673000px;}
._6{width:3.907800px;}
._5{width:5.170200px;}
._b{width:6.525000px;}
._a{width:7.603200px;}
._9{width:9.406800px;}
._c{width:10.853399px;}
._f{width:12.015963px;}
._12{width:14.428800px;}
._10{width:15.871680px;}
._d{width:17.374680px;}
._e{width:18.905520px;}
._8{width:21.523200px;}
._11{width:22.711316px;}
._14{width:23.799143px;}
._1{width:25.164000px;}
._15{width:26.273040px;}
._13{width:27.294480px;}
._16{width:29.481000px;}
._17{width:168.630960px;}
.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;}
.y9b{bottom:7.830000px;}
.y9d{bottom:7.920000px;}
.yb4{bottom:25.380000px;}
.y9a{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y92{bottom:113.790000px;}
.yf9{bottom:123.060000px;}
.y91{bottom:131.340000px;}
.y148{bottom:131.700000px;}
.y5e{bottom:132.510000px;}
.yf8{bottom:140.610000px;}
.y29{bottom:142.860000px;}
.y90{bottom:148.980000px;}
.y147{bottom:149.250000px;}
.y5d{bottom:150.060000px;}
.yf7{bottom:158.250000px;}
.y28{bottom:160.500000px;}
.y8f{bottom:166.530000px;}
.y120{bottom:170.040000px;}
.yd0{bottom:170.940000px;}
.yf6{bottom:175.800000px;}
.y146{bottom:175.890000px;}
.y5c{bottom:176.700000px;}
.y27{bottom:178.050000px;}
.y8e{bottom:184.170000px;}
.yad{bottom:184.620000px;}
.ycf{bottom:188.490000px;}
.yf5{bottom:193.440000px;}
.y26{bottom:195.600000px;}
.y8d{bottom:201.720000px;}
.yac{bottom:202.260000px;}
.y11f{bottom:205.680000px;}
.yf4{bottom:210.990000px;}
.y5b{bottom:212.250000px;}
.y25{bottom:213.240000px;}
.y8c{bottom:219.270000px;}
.y145{bottom:220.080000px;}
.y11e{bottom:223.230000px;}
.yce{bottom:224.040000px;}
.yf3{bottom:228.540000px;}
.y5a{bottom:229.800000px;}
.y24{bottom:230.790000px;}
.y8b{bottom:236.910000px;}
.y144{bottom:237.630000px;}
.yab{bottom:237.810000px;}
.ycd{bottom:241.680000px;}
.y59{bottom:248.250000px;}
.y23{bottom:248.340000px;}
.y8a{bottom:254.460000px;}
.y143{bottom:255.180000px;}
.yaa{bottom:255.360000px;}
.ycc{bottom:259.230000px;}
.yf2{bottom:264.180000px;}
.y58{bottom:265.800000px;}
.y22{bottom:265.980000px;}
.y89{bottom:272.100000px;}
.ya9{bottom:273.000000px;}
.ycb{bottom:276.870000px;}
.y11d{bottom:277.680000px;}
.yf1{bottom:281.730000px;}
.y142{bottom:281.820000px;}
.y21{bottom:283.530000px;}
.y57{bottom:284.250000px;}
.y88{bottom:289.650000px;}
.ya8{bottom:290.550000px;}
.yca{bottom:294.420000px;}
.y11c{bottom:295.230000px;}
.yf0{bottom:299.370000px;}
.y20{bottom:301.170000px;}
.y56{bottom:301.800000px;}
.y11b{bottom:313.680000px;}
.y87{bottom:316.200000px;}
.yef{bottom:316.920000px;}
.y141{bottom:317.010000px;}
.y1f{bottom:318.720000px;}
.ya7{bottom:323.580000px;}
.yc9{bottom:327.360000px;}
.y11a{bottom:331.230000px;}
.yee{bottom:334.470000px;}
.y1e{bottom:336.270000px;}
.y55{bottom:338.250000px;}
.y140{bottom:343.560000px;}
.ya6{bottom:350.850000px;}
.y86{bottom:351.840000px;}
.yed{bottom:352.110000px;}
.yc8{bottom:354.720000px;}
.y54{bottom:355.800000px;}
.y13f{bottom:361.110000px;}
.y1d{bottom:363.180000px;}
.y119{bottom:367.680000px;}
.y85{bottom:369.390000px;}
.yec{bottom:369.660000px;}
.y53{bottom:373.440000px;}
.ya5{bottom:378.210000px;}
.y13e{bottom:378.750000px;}
.yc7{bottom:382.080000px;}
.y84{bottom:386.940000px;}
.yeb{bottom:387.300000px;}
.y52{bottom:390.990000px;}
.y118{bottom:394.500000px;}
.y83{bottom:404.580000px;}
.yea{bottom:404.850000px;}
.y13d{bottom:405.300000px;}
.ya4{bottom:405.570000px;}
.y51{bottom:408.540000px;}
.yc6{bottom:409.440000px;}
.y1c{bottom:411.510000px;}
.y82{bottom:422.130000px;}
.ye9{bottom:422.400000px;}
.y13c{bottom:422.940000px;}
.y50{bottom:426.180000px;}
.y1b{bottom:429.420000px;}
.y117{bottom:431.580000px;}
.ya3{bottom:432.840000px;}
.y81{bottom:439.770000px;}
.ye8{bottom:440.040000px;}
.y13b{bottom:440.490000px;}
.y4f{bottom:443.730000px;}
.y116{bottom:449.130000px;}
.y80{bottom:457.320000px;}
.ye7{bottom:457.590000px;}
.yc5{bottom:458.130000px;}
.ya2{bottom:460.200000px;}
.y4e{bottom:461.370000px;}
.y1a{bottom:466.410000px;}
.y115{bottom:466.770000px;}
.y13a{bottom:467.040000px;}
.y7f{bottom:474.900000px;}
.ye6{bottom:475.260000px;}
.y4d{bottom:478.950000px;}
.y19{bottom:484.080000px;}
.y114{bottom:484.350000px;}
.y139{bottom:484.710000px;}
.ya1{bottom:487.590000px;}
.y7e{bottom:492.540000px;}
.ye5{bottom:492.810000px;}
.yc4{bottom:493.710000px;}
.y4c{bottom:496.500000px;}
.y18{bottom:501.630000px;}
.y113{bottom:501.900000px;}
.y7d{bottom:510.090000px;}
.ye4{bottom:510.360000px;}
.yc3{bottom:511.260000px;}
.y4b{bottom:514.140000px;}
.ya0{bottom:514.950000px;}
.y17{bottom:519.180000px;}
.y112{bottom:519.540000px;}
.y7c{bottom:527.730000px;}
.y138{bottom:528.900000px;}
.y4a{bottom:531.690000px;}
.y16{bottom:536.820000px;}
.y111{bottom:537.090000px;}
.ye3{bottom:537.270000px;}
.y9f{bottom:542.220000px;}
.y7b{bottom:545.280000px;}
.yc2{bottom:546.900000px;}
.y15{bottom:554.370000px;}
.y110{bottom:554.730000px;}
.y137{bottom:555.450000px;}
.yc1{bottom:564.450000px;}
.y49{bottom:567.330000px;}
.y7a{bottom:571.830000px;}
.y14{bottom:571.920000px;}
.y10f{bottom:572.280000px;}
.y136{bottom:573.000000px;}
.yc0{bottom:582.090000px;}
.y48{bottom:584.880000px;}
.ye2{bottom:585.600000px;}
.y9e{bottom:587.130000px;}
.y13{bottom:589.560000px;}
.y10e{bottom:589.830000px;}
.y135{bottom:590.640000px;}
.ybf{bottom:599.640000px;}
.y47{bottom:602.430000px;}
.ye1{bottom:603.150000px;}
.y12{bottom:607.110000px;}
.y79{bottom:607.470000px;}
.y9c{bottom:614.490000px;}
.ybe{bottom:617.190000px;}
.y46{bottom:620.070000px;}
.ye0{bottom:620.700000px;}
.y11{bottom:624.750000px;}
.y78{bottom:625.020000px;}
.y10d{bottom:634.380000px;}
.ybd{bottom:634.830000px;}
.y45{bottom:637.620000px;}
.ydf{bottom:638.340000px;}
.y99{bottom:641.850000px;}
.y10{bottom:642.300000px;}
.y77{bottom:642.660000px;}
.y134{bottom:643.830000px;}
.ybc{bottom:652.380000px;}
.y44{bottom:655.260000px;}
.yde{bottom:655.890000px;}
.yf{bottom:659.850000px;}
.y76{bottom:660.210000px;}
.y133{bottom:661.380000px;}
.ybb{bottom:670.020000px;}
.y43{bottom:672.810000px;}
.ydd{bottom:673.530000px;}
.ye{bottom:677.490000px;}
.y75{bottom:677.760000px;}
.y132{bottom:678.930000px;}
.y10c{bottom:682.620000px;}
.y42{bottom:690.360000px;}
.ydc{bottom:691.080000px;}
.yd{bottom:695.040000px;}
.y74{bottom:695.400000px;}
.y10b{bottom:700.260000px;}
.yba{bottom:702.960000px;}
.y131{bottom:705.570000px;}
.y98{bottom:708.090000px;}
.ydb{bottom:708.630000px;}
.yc{bottom:712.680000px;}
.y73{bottom:712.950000px;}
.y41{bottom:717.000000px;}
.y10a{bottom:717.810000px;}
.y130{bottom:723.120000px;}
.yb{bottom:730.230000px;}
.yb9{bottom:730.320000px;}
.y72{bottom:730.590000px;}
.y109{bottom:735.360000px;}
.yda{bottom:743.550000px;}
.y97{bottom:743.730000px;}
.y71{bottom:748.140000px;}
.y12f{bottom:749.670000px;}
.y40{bottom:752.550000px;}
.y108{bottom:753.000000px;}
.yd9{bottom:755.700000px;}
.ya{bottom:757.140000px;}
.yb8{bottom:757.590000px;}
.y96{bottom:761.280000px;}
.y70{bottom:765.690000px;}
.y12e{bottom:767.310000px;}
.y3f{bottom:770.190000px;}
.y107{bottom:770.550000px;}
.yd8{bottom:783.060000px;}
.y6f{bottom:783.330000px;}
.y3e{bottom:787.740000px;}
.y95{bottom:788.190000px;}
.y12d{bottom:793.860000px;}
.y6e{bottom:800.880000px;}
.yb7{bottom:802.500000px;}
.y3d{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.y106{bottom:805.740000px;}
.yd7{bottom:810.420000px;}
.y12c{bottom:811.500000px;}
.y6d{bottom:818.520000px;}
.y3c{bottom:822.930000px;}
.y105{bottom:823.290000px;}
.yb6{bottom:829.860000px;}
.y94{bottom:836.520000px;}
.yd6{bottom:837.690000px;}
.y12b{bottom:838.050000px;}
.y3b{bottom:840.480000px;}
.y104{bottom:840.930000px;}
.y8{bottom:841.200000px;}
.y6c{bottom:854.070000px;}
.y12a{bottom:855.600000px;}
.yb5{bottom:857.220000px;}
.y3a{bottom:858.030000px;}
.y103{bottom:858.480000px;}
.y6b{bottom:871.620000px;}
.y39{bottom:875.670000px;}
.y102{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.y129{bottom:882.240000px;}
.yd5{bottom:882.600000px;}
.yb3{bottom:884.580000px;}
.y6a{bottom:889.260000px;}
.y101{bottom:893.670000px;}
.y128{bottom:899.790000px;}
.y150{bottom:901.860000px;}
.y69{bottom:906.810000px;}
.yd4{bottom:909.960000px;}
.y38{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y68{bottom:924.450000px;}
.y127{bottom:926.430000px;}
.y14f{bottom:928.410000px;}
.y37{bottom:928.860000px;}
.yb2{bottom:929.490000px;}
.yd3{bottom:937.320000px;}
.y67{bottom:942.000000px;}
.y126{bottom:943.980000px;}
.y14e{bottom:945.960000px;}
.y36{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y66{bottom:959.550000px;}
.y35{bottom:963.960000px;}
.yd2{bottom:964.680000px;}
.y125{bottom:970.530000px;}
.y14d{bottom:972.600000px;}
.yb1{bottom:974.400000px;}
.y65{bottom:977.190000px;}
.y34{bottom:981.600000px;}
.y100{bottom:981.960000px;}
.y4{bottom:987.630000px;}
.y124{bottom:988.170000px;}
.y14c{bottom:990.150000px;}
.yd1{bottom:991.950000px;}
.y64{bottom:994.740000px;}
.y33{bottom:999.150000px;}
.yff{bottom:999.600000px;}
.y14b{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y123{bottom:1015.110000px;}
.y32{bottom:1016.820000px;}
.yfe{bottom:1017.180000px;}
.yb0{bottom:1019.340000px;}
.y63{bottom:1029.960000px;}
.y31{bottom:1034.370000px;}
.yfd{bottom:1034.820000px;}
.yaf{bottom:1046.700000px;}
.y62{bottom:1047.510000px;}
.y30{bottom:1051.920000px;}
.yfc{bottom:1052.370000px;}
.y93{bottom:1056.870000px;}
.y122{bottom:1063.350000px;}
.y61{bottom:1065.150000px;}
.y2f{bottom:1069.560000px;}
.yfb{bottom:1069.920000px;}
.yae{bottom:1073.970000px;}
.y14a{bottom:1078.560000px;}
.yfa{bottom:1087.560000px;}
.y121{bottom:1090.260000px;}
.y60{bottom:1091.700000px;}
.y149{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y5f{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hb{height:26.640000px;}
.hd{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h10{height:40.539023px;}
.hf{height:44.100000px;}
.ha{height:44.190000px;}
.he{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:61.793886px;}
.h7{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:40.950000px;}
.we{width:43.470000px;}
.wf{width:51.750000px;}
.w5{width:53.190000px;}
.wa{width:53.280000px;}
.w21{width:56.970000px;}
.w10{width:59.160000px;}
.w20{width:59.580000px;}
.w1e{width:59.670000px;}
.w19{width:59.760000px;}
.w1f{width:60.420000px;}
.w1b{width:64.890000px;}
.w13{width:66.690000px;}
.w7{width:70.560000px;}
.wb{width:71.280000px;}
.w1c{width:73.350000px;}
.w6{width:73.440000px;}
.w22{width:82.890000px;}
.w1a{width:86.340000px;}
.w12{width:93.240000px;}
.w17{width:106.560000px;}
.w14{width:107.220000px;}
.w18{width:139.860000px;}
.wd{width:183.360000px;}
.w15{width:197.550000px;}
.w11{width:212.580000px;}
.w1d{width:212.760000px;}
.w4{width:514.410000px;}
.w9{width:516.660000px;}
.w16{width:534.540000px;}
.w8{width:556.170000px;}
.wc{width:558.420000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x7{left:110.520000px;}
.xd{left:116.640000px;}
.x5{left:122.039987px;}
.x14{left:178.590000px;}
.x2{left:202.799987px;}
.x15{left:272.550000px;}
.x19{left:285.870000px;}
.xe{left:300.810000px;}
.x16{left:340.050000px;}
.xf{left:354.810000px;}
.x1e{left:392.070000px;}
.x10{left:399.000000px;}
.x17{left:407.550000px;}
.x21{left:418.439987px;}
.x1a{left:426.450000px;}
.x11{left:451.560000px;}
.x1b{left:486.930000px;}
.x12{left:504.030000px;}
.x1f{left:513.690000px;}
.x18{left:515.580000px;}
.x13{left:564.000000px;}
.x1c{left:574.080000px;}
.x8{left:625.740000px;}
.xb{left:627.900000px;}
.x20{left:631.770000px;}
.x1d{left:639.690000px;}
.x9{left:679.740000px;}
.xc{left:681.900000px;}
.xa{left:753.900000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1c{letter-spacing:-0.395200pt;}
.ls14{letter-spacing:-0.276267pt;}
.ls1a{letter-spacing:-0.216533pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.004160pt;}
.ls4{letter-spacing:0.013120pt;}
.ls11{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.084800pt;}
.ls19{letter-spacing:0.087467pt;}
.ls3{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.105067pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:42.423680pt;}
.lse{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.861867pt;}
.wse{word-spacing:-11.844267pt;}
.wsd{word-spacing:-11.841600pt;}
.ws8{word-spacing:-11.800320pt;}
.wsb{word-spacing:-11.760960pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.540267pt;}
.wsc{word-spacing:-11.480533pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._4{margin-left:-3.186667pt;}
._3{margin-left:-1.996800pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.118400pt;}
._7{width:2.376000pt;}
._6{width:3.473600pt;}
._5{width:4.595733pt;}
._b{width:5.800000pt;}
._a{width:6.758400pt;}
._9{width:8.361600pt;}
._c{width:9.647466pt;}
._f{width:10.680856pt;}
._12{width:12.825600pt;}
._10{width:14.108160pt;}
._d{width:15.444160pt;}
._e{width:16.804907pt;}
._8{width:19.131734pt;}
._11{width:20.187837pt;}
._14{width:21.154793pt;}
._1{width:22.368000pt;}
._15{width:23.353813pt;}
._13{width:24.261760pt;}
._16{width:26.205333pt;}
._17{width:149.894187pt;}
.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;}
.y9b{bottom:6.960000pt;}
.y9d{bottom:7.040000pt;}
.yb4{bottom:22.560000pt;}
.y9a{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y92{bottom:101.146667pt;}
.yf9{bottom:109.386667pt;}
.y91{bottom:116.746667pt;}
.y148{bottom:117.066667pt;}
.y5e{bottom:117.786667pt;}
.yf8{bottom:124.986667pt;}
.y29{bottom:126.986667pt;}
.y90{bottom:132.426667pt;}
.y147{bottom:132.666667pt;}
.y5d{bottom:133.386667pt;}
.yf7{bottom:140.666667pt;}
.y28{bottom:142.666667pt;}
.y8f{bottom:148.026667pt;}
.y120{bottom:151.146667pt;}
.yd0{bottom:151.946667pt;}
.yf6{bottom:156.266667pt;}
.y146{bottom:156.346667pt;}
.y5c{bottom:157.066667pt;}
.y27{bottom:158.266667pt;}
.y8e{bottom:163.706667pt;}
.yad{bottom:164.106667pt;}
.ycf{bottom:167.546667pt;}
.yf5{bottom:171.946667pt;}
.y26{bottom:173.866667pt;}
.y8d{bottom:179.306667pt;}
.yac{bottom:179.786667pt;}
.y11f{bottom:182.826667pt;}
.yf4{bottom:187.546667pt;}
.y5b{bottom:188.666667pt;}
.y25{bottom:189.546667pt;}
.y8c{bottom:194.906667pt;}
.y145{bottom:195.626667pt;}
.y11e{bottom:198.426667pt;}
.yce{bottom:199.146667pt;}
.yf3{bottom:203.146667pt;}
.y5a{bottom:204.266667pt;}
.y24{bottom:205.146667pt;}
.y8b{bottom:210.586667pt;}
.y144{bottom:211.226667pt;}
.yab{bottom:211.386667pt;}
.ycd{bottom:214.826667pt;}
.y59{bottom:220.666667pt;}
.y23{bottom:220.746667pt;}
.y8a{bottom:226.186667pt;}
.y143{bottom:226.826667pt;}
.yaa{bottom:226.986667pt;}
.ycc{bottom:230.426667pt;}
.yf2{bottom:234.826667pt;}
.y58{bottom:236.266667pt;}
.y22{bottom:236.426667pt;}
.y89{bottom:241.866667pt;}
.ya9{bottom:242.666667pt;}
.ycb{bottom:246.106667pt;}
.y11d{bottom:246.826667pt;}
.yf1{bottom:250.426667pt;}
.y142{bottom:250.506667pt;}
.y21{bottom:252.026667pt;}
.y57{bottom:252.666667pt;}
.y88{bottom:257.466667pt;}
.ya8{bottom:258.266667pt;}
.yca{bottom:261.706667pt;}
.y11c{bottom:262.426667pt;}
.yf0{bottom:266.106667pt;}
.y20{bottom:267.706667pt;}
.y56{bottom:268.266667pt;}
.y11b{bottom:278.826667pt;}
.y87{bottom:281.066667pt;}
.yef{bottom:281.706667pt;}
.y141{bottom:281.786667pt;}
.y1f{bottom:283.306667pt;}
.ya7{bottom:287.626667pt;}
.yc9{bottom:290.986667pt;}
.y11a{bottom:294.426667pt;}
.yee{bottom:297.306667pt;}
.y1e{bottom:298.906667pt;}
.y55{bottom:300.666667pt;}
.y140{bottom:305.386667pt;}
.ya6{bottom:311.866667pt;}
.y86{bottom:312.746667pt;}
.yed{bottom:312.986667pt;}
.yc8{bottom:315.306667pt;}
.y54{bottom:316.266667pt;}
.y13f{bottom:320.986667pt;}
.y1d{bottom:322.826667pt;}
.y119{bottom:326.826667pt;}
.y85{bottom:328.346667pt;}
.yec{bottom:328.586667pt;}
.y53{bottom:331.946667pt;}
.ya5{bottom:336.186667pt;}
.y13e{bottom:336.666667pt;}
.yc7{bottom:339.626667pt;}
.y84{bottom:343.946667pt;}
.yeb{bottom:344.266667pt;}
.y52{bottom:347.546667pt;}
.y118{bottom:350.666667pt;}
.y83{bottom:359.626667pt;}
.yea{bottom:359.866667pt;}
.y13d{bottom:360.266667pt;}
.ya4{bottom:360.506667pt;}
.y51{bottom:363.146667pt;}
.yc6{bottom:363.946667pt;}
.y1c{bottom:365.786667pt;}
.y82{bottom:375.226667pt;}
.ye9{bottom:375.466667pt;}
.y13c{bottom:375.946667pt;}
.y50{bottom:378.826667pt;}
.y1b{bottom:381.706667pt;}
.y117{bottom:383.626667pt;}
.ya3{bottom:384.746667pt;}
.y81{bottom:390.906667pt;}
.ye8{bottom:391.146667pt;}
.y13b{bottom:391.546667pt;}
.y4f{bottom:394.426667pt;}
.y116{bottom:399.226667pt;}
.y80{bottom:406.506667pt;}
.ye7{bottom:406.746667pt;}
.yc5{bottom:407.226667pt;}
.ya2{bottom:409.066667pt;}
.y4e{bottom:410.106667pt;}
.y1a{bottom:414.586667pt;}
.y115{bottom:414.906667pt;}
.y13a{bottom:415.146667pt;}
.y7f{bottom:422.133333pt;}
.ye6{bottom:422.453333pt;}
.y4d{bottom:425.733333pt;}
.y19{bottom:430.293333pt;}
.y114{bottom:430.533333pt;}
.y139{bottom:430.853333pt;}
.ya1{bottom:433.413333pt;}
.y7e{bottom:437.813333pt;}
.ye5{bottom:438.053333pt;}
.yc4{bottom:438.853333pt;}
.y4c{bottom:441.333333pt;}
.y18{bottom:445.893333pt;}
.y113{bottom:446.133333pt;}
.y7d{bottom:453.413333pt;}
.ye4{bottom:453.653333pt;}
.yc3{bottom:454.453333pt;}
.y4b{bottom:457.013333pt;}
.ya0{bottom:457.733333pt;}
.y17{bottom:461.493333pt;}
.y112{bottom:461.813333pt;}
.y7c{bottom:469.093333pt;}
.y138{bottom:470.133333pt;}
.y4a{bottom:472.613333pt;}
.y16{bottom:477.173333pt;}
.y111{bottom:477.413333pt;}
.ye3{bottom:477.573333pt;}
.y9f{bottom:481.973333pt;}
.y7b{bottom:484.693333pt;}
.yc2{bottom:486.133333pt;}
.y15{bottom:492.773333pt;}
.y110{bottom:493.093333pt;}
.y137{bottom:493.733333pt;}
.yc1{bottom:501.733333pt;}
.y49{bottom:504.293333pt;}
.y7a{bottom:508.293333pt;}
.y14{bottom:508.373333pt;}
.y10f{bottom:508.693333pt;}
.y136{bottom:509.333333pt;}
.yc0{bottom:517.413333pt;}
.y48{bottom:519.893333pt;}
.ye2{bottom:520.533333pt;}
.y9e{bottom:521.893333pt;}
.y13{bottom:524.053333pt;}
.y10e{bottom:524.293333pt;}
.y135{bottom:525.013333pt;}
.ybf{bottom:533.013333pt;}
.y47{bottom:535.493333pt;}
.ye1{bottom:536.133333pt;}
.y12{bottom:539.653333pt;}
.y79{bottom:539.973333pt;}
.y9c{bottom:546.213333pt;}
.ybe{bottom:548.613333pt;}
.y46{bottom:551.173333pt;}
.ye0{bottom:551.733333pt;}
.y11{bottom:555.333333pt;}
.y78{bottom:555.573333pt;}
.y10d{bottom:563.893333pt;}
.ybd{bottom:564.293333pt;}
.y45{bottom:566.773333pt;}
.ydf{bottom:567.413333pt;}
.y99{bottom:570.533333pt;}
.y10{bottom:570.933333pt;}
.y77{bottom:571.253333pt;}
.y134{bottom:572.293333pt;}
.ybc{bottom:579.893333pt;}
.y44{bottom:582.453333pt;}
.yde{bottom:583.013333pt;}
.yf{bottom:586.533333pt;}
.y76{bottom:586.853333pt;}
.y133{bottom:587.893333pt;}
.ybb{bottom:595.573333pt;}
.y43{bottom:598.053333pt;}
.ydd{bottom:598.693333pt;}
.ye{bottom:602.213333pt;}
.y75{bottom:602.453333pt;}
.y132{bottom:603.493333pt;}
.y10c{bottom:606.773333pt;}
.y42{bottom:613.653333pt;}
.ydc{bottom:614.293333pt;}
.yd{bottom:617.813333pt;}
.y74{bottom:618.133333pt;}
.y10b{bottom:622.453333pt;}
.yba{bottom:624.853333pt;}
.y131{bottom:627.173333pt;}
.y98{bottom:629.413333pt;}
.ydb{bottom:629.893333pt;}
.yc{bottom:633.493333pt;}
.y73{bottom:633.733333pt;}
.y41{bottom:637.333333pt;}
.y10a{bottom:638.053333pt;}
.y130{bottom:642.773333pt;}
.yb{bottom:649.093333pt;}
.yb9{bottom:649.173333pt;}
.y72{bottom:649.413333pt;}
.y109{bottom:653.653333pt;}
.yda{bottom:660.933333pt;}
.y97{bottom:661.093333pt;}
.y71{bottom:665.013333pt;}
.y12f{bottom:666.373333pt;}
.y40{bottom:668.933333pt;}
.y108{bottom:669.333333pt;}
.yd9{bottom:671.733333pt;}
.ya{bottom:673.013333pt;}
.yb8{bottom:673.413333pt;}
.y96{bottom:676.693333pt;}
.y70{bottom:680.613333pt;}
.y12e{bottom:682.053333pt;}
.y3f{bottom:684.613333pt;}
.y107{bottom:684.933333pt;}
.yd8{bottom:696.053333pt;}
.y6f{bottom:696.293333pt;}
.y3e{bottom:700.213333pt;}
.y95{bottom:700.613333pt;}
.y12d{bottom:705.653333pt;}
.y6e{bottom:711.893333pt;}
.yb7{bottom:713.333333pt;}
.y3d{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.y106{bottom:716.213333pt;}
.yd7{bottom:720.373333pt;}
.y12c{bottom:721.333333pt;}
.y6d{bottom:727.573333pt;}
.y3c{bottom:731.493333pt;}
.y105{bottom:731.813333pt;}
.yb6{bottom:737.653333pt;}
.y94{bottom:743.573333pt;}
.yd6{bottom:744.613333pt;}
.y12b{bottom:744.933333pt;}
.y3b{bottom:747.093333pt;}
.y104{bottom:747.493333pt;}
.y8{bottom:747.733333pt;}
.y6c{bottom:759.173333pt;}
.y12a{bottom:760.533333pt;}
.yb5{bottom:761.973333pt;}
.y3a{bottom:762.693333pt;}
.y103{bottom:763.093333pt;}
.y6b{bottom:774.773333pt;}
.y39{bottom:778.373333pt;}
.y102{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.y129{bottom:784.213333pt;}
.yd5{bottom:784.533333pt;}
.yb3{bottom:786.293333pt;}
.y6a{bottom:790.453333pt;}
.y101{bottom:794.373333pt;}
.y128{bottom:799.813333pt;}
.y150{bottom:801.653333pt;}
.y69{bottom:806.053333pt;}
.yd4{bottom:808.853333pt;}
.y38{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y68{bottom:821.733333pt;}
.y127{bottom:823.493333pt;}
.y14f{bottom:825.253333pt;}
.y37{bottom:825.653333pt;}
.yb2{bottom:826.213333pt;}
.yd3{bottom:833.173333pt;}
.y67{bottom:837.333333pt;}
.y126{bottom:839.093333pt;}
.y14e{bottom:840.853333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y66{bottom:852.933333pt;}
.y35{bottom:856.853333pt;}
.yd2{bottom:857.493333pt;}
.y125{bottom:862.693333pt;}
.y14d{bottom:864.533333pt;}
.yb1{bottom:866.133333pt;}
.y65{bottom:868.613333pt;}
.y34{bottom:872.533333pt;}
.y100{bottom:872.853333pt;}
.y4{bottom:877.893333pt;}
.y124{bottom:878.373333pt;}
.y14c{bottom:880.133333pt;}
.yd1{bottom:881.733333pt;}
.y64{bottom:884.213333pt;}
.y33{bottom:888.133333pt;}
.yff{bottom:888.533333pt;}
.y14b{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y123{bottom:902.320000pt;}
.y32{bottom:903.840000pt;}
.yfe{bottom:904.160000pt;}
.yb0{bottom:906.080000pt;}
.y63{bottom:915.520000pt;}
.y31{bottom:919.440000pt;}
.yfd{bottom:919.840000pt;}
.yaf{bottom:930.400000pt;}
.y62{bottom:931.120000pt;}
.y30{bottom:935.040000pt;}
.yfc{bottom:935.440000pt;}
.y93{bottom:939.440000pt;}
.y122{bottom:945.200000pt;}
.y61{bottom:946.800000pt;}
.y2f{bottom:950.720000pt;}
.yfb{bottom:951.040000pt;}
.yae{bottom:954.640000pt;}
.y14a{bottom:958.720000pt;}
.yfa{bottom:966.720000pt;}
.y121{bottom:969.120000pt;}
.y60{bottom:970.400000pt;}
.y149{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y5f{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hb{height:23.680000pt;}
.hd{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h10{height:36.034687pt;}
.hf{height:39.200000pt;}
.ha{height:39.280000pt;}
.he{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.927899pt;}
.h7{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:36.400000pt;}
.we{width:38.640000pt;}
.wf{width:46.000000pt;}
.w5{width:47.280000pt;}
.wa{width:47.360000pt;}
.w21{width:50.640000pt;}
.w10{width:52.586667pt;}
.w20{width:52.960000pt;}
.w1e{width:53.040000pt;}
.w19{width:53.120000pt;}
.w1f{width:53.706667pt;}
.w1b{width:57.680000pt;}
.w13{width:59.280000pt;}
.w7{width:62.720000pt;}
.wb{width:63.360000pt;}
.w1c{width:65.200000pt;}
.w6{width:65.280000pt;}
.w22{width:73.680000pt;}
.w1a{width:76.746667pt;}
.w12{width:82.880000pt;}
.w17{width:94.720000pt;}
.w14{width:95.306667pt;}
.w18{width:124.320000pt;}
.wd{width:162.986667pt;}
.w15{width:175.600000pt;}
.w11{width:188.960000pt;}
.w1d{width:189.120000pt;}
.w4{width:457.253333pt;}
.w9{width:459.253333pt;}
.w16{width:475.146667pt;}
.w8{width:494.373333pt;}
.wc{width:496.373333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x7{left:98.240000pt;}
.xd{left:103.680000pt;}
.x5{left:108.479988pt;}
.x14{left:158.746667pt;}
.x2{left:180.266655pt;}
.x15{left:242.266667pt;}
.x19{left:254.106667pt;}
.xe{left:267.386667pt;}
.x16{left:302.266667pt;}
.xf{left:315.386667pt;}
.x1e{left:348.506667pt;}
.x10{left:354.666667pt;}
.x17{left:362.266667pt;}
.x21{left:371.946655pt;}
.x1a{left:379.066667pt;}
.x11{left:401.386667pt;}
.x1b{left:432.826667pt;}
.x12{left:448.026667pt;}
.x1f{left:456.613333pt;}
.x18{left:458.293333pt;}
.x13{left:501.333333pt;}
.x1c{left:510.293333pt;}
.x8{left:556.213333pt;}
.xb{left:558.133333pt;}
.x20{left:561.573333pt;}
.x1d{left:568.613333pt;}
.x9{left:604.213333pt;}
.xc{left:606.133333pt;}
.xa{left:670.133333pt;}
.x3{left:704.053322pt;}
}




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