
    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_c8ba3f3856b09abca10727e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861328;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_dde691b95613eff5d7d2cc4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_9a0c45b93bdd3299c87e613c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_15eb15d6c233e40156989fca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_b46a94773593f2a730b55e42.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_2bf37f85b6e970d948273c8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_121a6a72077baf7f773aeb73.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_06e9f8dd46f49ea7020735c1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a5db5f3e28e92960d003c73e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694336;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_5bc0bc097e9d82af2e28676c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_aa4920f2ef1dd0613c280403.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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:ffc;src:url('chunks/assets/font_05625387418ae3e8b284daaa.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_24e4743d9fa9a793345000d9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861328;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);}
.v5{vertical-align:-9.360000px;}
.v2{vertical-align:-6.030000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.v4{vertical-align:41.760000px;}
.lsd{letter-spacing:-0.870000px;}
.ls6{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.262200px;}
.ls14{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000960px;}
.ls18{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.089280px;}
.ls9{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.049760px;}
.ls10{letter-spacing:2.880000px;}
.ls11{letter-spacing:11.520000px;}
.ls2{letter-spacing:105.132000px;}
.ls15{letter-spacing:194.376000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws3{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.wse{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.208000px;}
.ws7{word-spacing:-16.822200px;}
.wsd{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.297800px;}
.ws9{word-spacing:-16.254600px;}
.wsb{word-spacing:-15.690000px;}
.ws8{word-spacing:-10.440000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.600560px;}
._1{width:1.080000px;}
._3{width:2.592000px;}
._2{width:3.600000px;}
._6{width:5.112000px;}
._b{width:6.552000px;}
._8{width:7.848000px;}
._7{width:9.000000px;}
._e{width:10.417680px;}
._9{width:12.168000px;}
._4{width:14.040000px;}
._5{width:15.048000px;}
._a{width:16.128000px;}
._1a{width:17.388000px;}
._1b{width:19.152000px;}
._1d{width:20.208000px;}
._16{width:21.472560px;}
._14{width:22.519440px;}
._13{width:23.704560px;}
._c{width:26.064000px;}
._d{width:27.160560px;}
._f{width:29.880000px;}
._10{width:30.904560px;}
._1c{width:32.832000px;}
._12{width:34.704000px;}
._19{width:36.720000px;}
._15{width:55.440000px;}
._18{width:71.512560px;}
._11{width:153.964560px;}
._17{width:194.400000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.yb7{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y33{bottom:3.684000px;}
.yb9{bottom:4.140000px;}
.y61{bottom:4.485000px;}
.y4d{bottom:4.500000px;}
.ybd{bottom:4.530000px;}
.ye{bottom:6.120000px;}
.y12{bottom:8.100000px;}
.yaa{bottom:8.625000px;}
.y8c{bottom:8.640000px;}
.ya7{bottom:8.805000px;}
.y89{bottom:8.820000px;}
.ya5{bottom:8.850000px;}
.y4e{bottom:14.760000px;}
.y5d{bottom:16.725000px;}
.y58{bottom:17.100000px;}
.y53{bottom:17.280000px;}
.yb8{bottom:23.580000px;}
.y5f{bottom:25.185000px;}
.y4c{bottom:25.200000px;}
.y5a{bottom:31.305000px;}
.y55{bottom:31.500000px;}
.y50{bottom:31.680000px;}
.y11{bottom:31.905000px;}
.y4b{bottom:32.430000px;}
.y88{bottom:32.580000px;}
.y10{bottom:33.345000px;}
.y5c{bottom:37.425000px;}
.y57{bottom:37.800000px;}
.y52{bottom:37.980000px;}
.y32{bottom:39.706350px;}
.y6a{bottom:39.706427px;}
.yb{bottom:40.860000px;}
.y60{bottom:45.885000px;}
.y4a{bottom:53.130000px;}
.y47{bottom:53.280000px;}
.y5b{bottom:58.170000px;}
.y56{bottom:58.500000px;}
.y51{bottom:58.680000px;}
.y48{bottom:63.750000px;}
.ya{bottom:64.620000px;}
.y46{bottom:74.010000px;}
.yc{bottom:85.500000px;}
.y9{bottom:87.840000px;}
.y4{bottom:93.060000px;}
.y8{bottom:109.980000px;}
.yd0{bottom:122.400000px;}
.yb4{bottom:122.940000px;}
.y85{bottom:125.280000px;}
.y31{bottom:130.140000px;}
.yd9{bottom:130.680000px;}
.yc6{bottom:131.040000px;}
.yf3{bottom:133.020000px;}
.y7{bottom:138.420000px;}
.yb3{bottom:145.620000px;}
.ycf{bottom:146.160000px;}
.y84{bottom:149.040000px;}
.y30{bottom:153.900000px;}
.yd8{bottom:154.440000px;}
.yc5{bottom:155.340000px;}
.yf2{bottom:156.780000px;}
.y68{bottom:162.540000px;}
.y107{bottom:164.160000px;}
.yb2{bottom:165.420000px;}
.y6{bottom:166.140000px;}
.yce{bottom:169.920000px;}
.y83{bottom:173.160000px;}
.yc4{bottom:174.780000px;}
.y2f{bottom:177.840000px;}
.yd7{bottom:178.200000px;}
.yb1{bottom:179.820000px;}
.yf1{bottom:180.540000px;}
.y67{bottom:186.300000px;}
.y106{bottom:187.920000px;}
.ycd{bottom:193.710000px;}
.y5{bottom:194.040000px;}
.y82{bottom:197.130000px;}
.y3{bottom:199.800000px;}
.y2e{bottom:201.630000px;}
.yd6{bottom:201.990000px;}
.yf0{bottom:204.330000px;}
.yb0{bottom:204.345000px;}
.y66{bottom:210.090000px;}
.y105{bottom:211.710000px;}
.ycc{bottom:217.830000px;}
.y81{bottom:220.890000px;}
.y2d{bottom:225.390000px;}
.yd5{bottom:226.110000px;}
.yef{bottom:228.270000px;}
.yaf{bottom:228.825000px;}
.y65{bottom:234.030000px;}
.y104{bottom:235.650000px;}
.ycb{bottom:241.950000px;}
.y80{bottom:244.650000px;}
.y2c{bottom:249.150000px;}
.yd4{bottom:250.230000px;}
.yee{bottom:252.030000px;}
.yae{bottom:253.305000px;}
.y64{bottom:257.790000px;}
.y103{bottom:259.410000px;}
.y7f{bottom:268.410000px;}
.yca{bottom:268.770000px;}
.y2b{bottom:273.090000px;}
.yed{bottom:275.790000px;}
.yd3{bottom:276.870000px;}
.yad{bottom:277.785000px;}
.y63{bottom:281.550000px;}
.y102{bottom:283.170000px;}
.y7e{bottom:292.350000px;}
.y2a{bottom:296.850000px;}
.yec{bottom:299.550000px;}
.yac{bottom:302.265000px;}
.y62{bottom:305.310000px;}
.y101{bottom:306.930000px;}
.y7d{bottom:316.110000px;}
.y29{bottom:320.610000px;}
.y5e{bottom:322.605000px;}
.yeb{bottom:323.490000px;}
.yab{bottom:326.745000px;}
.y100{bottom:330.690000px;}
.y7c{bottom:339.870000px;}
.y28{bottom:344.370000px;}
.yea{bottom:347.250000px;}
.ya9{bottom:351.225000px;}
.yff{bottom:354.630000px;}
.y7b{bottom:363.270000px;}
.y27{bottom:368.130000px;}
.ye9{bottom:371.010000px;}
.ya8{bottom:375.525000px;}
.yfe{bottom:378.390000px;}
.y59{bottom:385.425000px;}
.y7a{bottom:387.030000px;}
.y26{bottom:392.070000px;}
.ye8{bottom:394.770000px;}
.ya6{bottom:400.005000px;}
.yfd{bottom:402.150000px;}
.y79{bottom:411.330000px;}
.y25{bottom:415.830000px;}
.ye7{bottom:418.710000px;}
.ya4{bottom:424.485000px;}
.yfc{bottom:425.910000px;}
.y78{bottom:435.135000px;}
.y24{bottom:439.635000px;}
.ye6{bottom:442.515000px;}
.ya3{bottom:448.995000px;}
.yfb{bottom:449.895000px;}
.y77{bottom:458.895000px;}
.y54{bottom:460.695000px;}
.y23{bottom:463.395000px;}
.ye5{bottom:466.275000px;}
.ya2{bottom:473.475000px;}
.yfa{bottom:473.655000px;}
.y76{bottom:482.655000px;}
.y22{bottom:487.335000px;}
.ye4{bottom:490.035000px;}
.yf9{bottom:497.415000px;}
.ya1{bottom:497.955000px;}
.y75{bottom:506.595000px;}
.y21{bottom:510.735000px;}
.ye3{bottom:513.435000px;}
.yf8{bottom:521.175000px;}
.ya0{bottom:522.435000px;}
.y74{bottom:530.355000px;}
.y20{bottom:534.855000px;}
.yc3{bottom:535.035000px;}
.y4f{bottom:536.115000px;}
.ye2{bottom:537.375000px;}
.yf7{bottom:545.115000px;}
.y9f{bottom:546.915000px;}
.y73{bottom:554.115000px;}
.yc2{bottom:556.815000px;}
.y1f{bottom:558.615000px;}
.ye1{bottom:561.495000px;}
.yf6{bottom:568.875000px;}
.y9e{bottom:571.395000px;}
.yc1{bottom:572.475000px;}
.y72{bottom:577.875000px;}
.y1e{bottom:582.195000px;}
.ye0{bottom:585.255000px;}
.yf5{bottom:592.635000px;}
.yc0{bottom:595.695000px;}
.y9d{bottom:595.875000px;}
.y71{bottom:601.815000px;}
.y1d{bottom:606.315000px;}
.ydf{bottom:609.015000px;}
.y45{bottom:611.895000px;}
.yf4{bottom:616.395000px;}
.ybf{bottom:618.915000px;}
.y9c{bottom:620.355000px;}
.y70{bottom:625.575000px;}
.y1c{bottom:630.075000px;}
.yde{bottom:632.955000px;}
.yd2{bottom:640.335000px;}
.ybe{bottom:642.315000px;}
.y9b{bottom:644.835000px;}
.y6f{bottom:649.335000px;}
.y1b{bottom:653.835000px;}
.y49{bottom:654.015000px;}
.ydd{bottom:656.715000px;}
.yd1{bottom:664.095000px;}
.ybc{bottom:665.535000px;}
.y9a{bottom:669.345000px;}
.y6e{bottom:672.765000px;}
.y1a{bottom:677.805000px;}
.ydc{bottom:680.505000px;}
.yc9{bottom:687.885000px;}
.ybb{bottom:688.785000px;}
.y99{bottom:693.825000px;}
.y6d{bottom:696.705000px;}
.y19{bottom:701.565000px;}
.ydb{bottom:704.265000px;}
.yc8{bottom:711.645000px;}
.yba{bottom:712.005000px;}
.y98{bottom:718.125000px;}
.y6c{bottom:720.825000px;}
.yda{bottom:723.885000px;}
.y18{bottom:725.325000px;}
.yb6{bottom:735.225000px;}
.yc7{bottom:735.585000px;}
.y6b{bottom:740.445000px;}
.y97{bottom:742.605000px;}
.y17{bottom:749.085000px;}
.y44{bottom:759.345000px;}
.y96{bottom:767.085000px;}
.y16{bottom:773.025000px;}
.y43{bottom:783.105000px;}
.y95{bottom:791.565000px;}
.y15{bottom:796.785000px;}
.y42{bottom:806.865000px;}
.y94{bottom:816.045000px;}
.y14{bottom:820.185000px;}
.yb5{bottom:830.265000px;}
.y41{bottom:830.625000px;}
.y93{bottom:840.525000px;}
.y40{bottom:854.565000px;}
.y13{bottom:859.425000px;}
.y92{bottom:865.005000px;}
.yf{bottom:875.085000px;}
.y3f{bottom:878.325000px;}
.y91{bottom:889.485000px;}
.y3e{bottom:902.085000px;}
.y90{bottom:914.010000px;}
.yd{bottom:923.370000px;}
.y3d{bottom:925.890000px;}
.y8f{bottom:938.490000px;}
.y2{bottom:943.170000px;}
.y3c{bottom:949.830000px;}
.y8e{bottom:962.970000px;}
.y3b{bottom:973.590000px;}
.y8d{bottom:987.450000px;}
.y3a{bottom:997.350000px;}
.y8b{bottom:1011.930000px;}
.y39{bottom:1021.110000px;}
.y8a{bottom:1036.230000px;}
.y38{bottom:1045.050000px;}
.y87{bottom:1060.710000px;}
.y37{bottom:1068.810000px;}
.y36{bottom:1092.570000px;}
.y35{bottom:1116.330000px;}
.y86{bottom:1139.910000px;}
.y34{bottom:1140.270000px;}
.y1{bottom:1194.300000px;}
.y69{bottom:1207.786474px;}
.hf{height:15.960000px;}
.h9{height:19.785000px;}
.h26{height:22.485000px;}
.h24{height:22.500000px;}
.h25{height:22.530000px;}
.h1c{height:23.565000px;}
.h1f{height:23.580000px;}
.h20{height:23.610000px;}
.h1b{height:23.745000px;}
.h1e{height:23.760000px;}
.h21{height:23.781000px;}
.h1d{height:23.782500px;}
.h22{height:23.796000px;}
.h10{height:33.328125px;}
.h23{height:39.780000px;}
.h14{height:41.385000px;}
.h2{height:45.895781px;}
.h19{height:47.505000px;}
.hb{height:48.262500px;}
.h27{height:50.027344px;}
.ha{height:58.621992px;}
.h4{height:58.651172px;}
.hd{height:58.766484px;}
.h18{height:62.085000px;}
.h7{height:64.978594px;}
.h1a{height:65.010937px;}
.h8{height:70.628906px;}
.hc{height:70.664062px;}
.he{height:72.562500px;}
.h17{height:74.361000px;}
.h16{height:74.685000px;}
.h15{height:74.865000px;}
.h6{height:81.736875px;}
.h5{height:84.898125px;}
.h13{height:97.050000px;}
.h12{height:112.424063px;}
.h11{height:139.170000px;}
.h3{height:213.510000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:18.000000px;}
.w16{width:63.036000px;}
.w12{width:67.534500px;}
.w4{width:68.421000px;}
.w6{width:70.009500px;}
.w1a{width:71.085000px;}
.w17{width:73.605000px;}
.w19{width:73.641000px;}
.w18{width:73.785000px;}
.w15{width:73.800000px;}
.w1e{width:74.016000px;}
.w20{width:84.621000px;}
.w1f{width:84.765000px;}
.wa{width:84.949500px;}
.w14{width:84.981000px;}
.w5{width:88.545000px;}
.w1d{width:99.720000px;}
.w1c{width:101.361000px;}
.we{width:106.200000px;}
.w11{width:108.651000px;}
.wb{width:114.141000px;}
.w2{width:114.469500px;}
.w13{width:115.545000px;}
.w10{width:120.081000px;}
.wd{width:125.265000px;}
.wf{width:139.356000px;}
.w1b{width:160.009500px;}
.w8{width:361.090500px;}
.wc{width:367.275000px;}
.w3{width:408.120000px;}
.w7{width:609.570000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.089500px;}
.x6{left:10.785000px;}
.x3a{left:12.960000px;}
.x36{left:14.400000px;}
.xf{left:16.365000px;}
.x41{left:17.625000px;}
.x15{left:18.889500px;}
.x38{left:20.325000px;}
.x1e{left:21.585000px;}
.x30{left:22.680000px;}
.x9{left:24.105000px;}
.x33{left:25.365000px;}
.x2e{left:26.820000px;}
.x1b{left:29.880000px;}
.x20{left:31.849500px;}
.x2b{left:33.105000px;}
.x39{left:34.590000px;}
.x37{left:36.570000px;}
.x1f{left:39.600000px;}
.xa{left:41.025000px;}
.x7{left:42.465000px;}
.x26{left:43.920000px;}
.x17{left:46.065000px;}
.x23{left:48.765000px;}
.x25{left:53.640000px;}
.x27{left:55.980000px;}
.x21{left:58.320000px;}
.x22{left:59.925000px;}
.x24{left:62.640000px;}
.x8{left:68.430000px;}
.xd{left:77.760000px;}
.x2a{left:91.441500px;}
.x14{left:99.586500px;}
.x1{left:106.236000px;}
.x3{left:113.743500px;}
.x19{left:131.400000px;}
.x13{left:133.236000px;}
.x42{left:135.936000px;}
.x10{left:159.330000px;}
.xe{left:176.265000px;}
.x16{left:185.265000px;}
.x5{left:203.970000px;}
.x4{left:220.725000px;}
.x11{left:264.741000px;}
.x3b{left:265.905000px;}
.x2c{left:275.985000px;}
.x18{left:300.315000px;}
.x2d{left:361.875000px;}
.x3c{left:367.815000px;}
.x28{left:390.964508px;}
.x1c{left:407.415000px;}
.x2f{left:436.395000px;}
.x3d{left:467.895000px;}
.x31{left:500.160000px;}
.x3e{left:542.280000px;}
.x1d{left:547.500000px;}
.x32{left:574.500000px;}
.x3f{left:627.420000px;}
.xb{left:628.860000px;}
.x34{left:649.020000px;}
.x1a{left:668.310000px;}
.xc{left:697.290000px;}
.x40{left:712.410000px;}
.x35{left:723.390000px;}
.x12{left:764.580000px;}
.x29{left:785.850000px;}
.x43{left:788.010000px;}
@media print{
.v5{vertical-align:-8.320000pt;}
.v2{vertical-align:-5.360000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.v4{vertical-align:37.120000pt;}
.lsd{letter-spacing:-0.773333pt;}
.ls6{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.233067pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000853pt;}
.ls18{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.079360pt;}
.ls9{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls8{letter-spacing:0.933120pt;}
.ls10{letter-spacing:2.560000pt;}
.ls11{letter-spacing:10.240000pt;}
.ls2{letter-spacing:93.450667pt;}
.ls15{letter-spacing:172.778667pt;}
.ws5{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.296000pt;}
.ws7{word-spacing:-14.953067pt;}
.wsd{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.486933pt;}
.ws9{word-spacing:-14.448533pt;}
.wsb{word-spacing:-13.946667pt;}
.ws8{word-spacing:-9.280000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.422720pt;}
._1{width:0.960000pt;}
._3{width:2.304000pt;}
._2{width:3.200000pt;}
._6{width:4.544000pt;}
._b{width:5.824000pt;}
._8{width:6.976000pt;}
._7{width:8.000000pt;}
._e{width:9.260160pt;}
._9{width:10.816000pt;}
._4{width:12.480000pt;}
._5{width:13.376000pt;}
._a{width:14.336000pt;}
._1a{width:15.456000pt;}
._1b{width:17.024000pt;}
._1d{width:17.962667pt;}
._16{width:19.086720pt;}
._14{width:20.017280pt;}
._13{width:21.070720pt;}
._c{width:23.168000pt;}
._d{width:24.142720pt;}
._f{width:26.560000pt;}
._10{width:27.470720pt;}
._1c{width:29.184000pt;}
._12{width:30.848000pt;}
._19{width:32.640000pt;}
._15{width:49.280000pt;}
._18{width:63.566720pt;}
._11{width:136.857387pt;}
._17{width:172.800000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.yb7{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:3.274667pt;}
.yb9{bottom:3.680000pt;}
.y61{bottom:3.986667pt;}
.y4d{bottom:4.000000pt;}
.ybd{bottom:4.026667pt;}
.ye{bottom:5.440000pt;}
.y12{bottom:7.200000pt;}
.yaa{bottom:7.666667pt;}
.y8c{bottom:7.680000pt;}
.ya7{bottom:7.826667pt;}
.y89{bottom:7.840000pt;}
.ya5{bottom:7.866667pt;}
.y4e{bottom:13.120000pt;}
.y5d{bottom:14.866667pt;}
.y58{bottom:15.200000pt;}
.y53{bottom:15.360000pt;}
.yb8{bottom:20.960000pt;}
.y5f{bottom:22.386667pt;}
.y4c{bottom:22.400000pt;}
.y5a{bottom:27.826667pt;}
.y55{bottom:28.000000pt;}
.y50{bottom:28.160000pt;}
.y11{bottom:28.360000pt;}
.y4b{bottom:28.826667pt;}
.y88{bottom:28.960000pt;}
.y10{bottom:29.640000pt;}
.y5c{bottom:33.266667pt;}
.y57{bottom:33.600000pt;}
.y52{bottom:33.760000pt;}
.y32{bottom:35.294533pt;}
.y6a{bottom:35.294602pt;}
.yb{bottom:36.320000pt;}
.y60{bottom:40.786667pt;}
.y4a{bottom:47.226667pt;}
.y47{bottom:47.360000pt;}
.y5b{bottom:51.706667pt;}
.y56{bottom:52.000000pt;}
.y51{bottom:52.160000pt;}
.y48{bottom:56.666667pt;}
.ya{bottom:57.440000pt;}
.y46{bottom:65.786667pt;}
.yc{bottom:76.000000pt;}
.y9{bottom:78.080000pt;}
.y4{bottom:82.720000pt;}
.y8{bottom:97.760000pt;}
.yd0{bottom:108.800000pt;}
.yb4{bottom:109.280000pt;}
.y85{bottom:111.360000pt;}
.y31{bottom:115.680000pt;}
.yd9{bottom:116.160000pt;}
.yc6{bottom:116.480000pt;}
.yf3{bottom:118.240000pt;}
.y7{bottom:123.040000pt;}
.yb3{bottom:129.440000pt;}
.ycf{bottom:129.920000pt;}
.y84{bottom:132.480000pt;}
.y30{bottom:136.800000pt;}
.yd8{bottom:137.280000pt;}
.yc5{bottom:138.080000pt;}
.yf2{bottom:139.360000pt;}
.y68{bottom:144.480000pt;}
.y107{bottom:145.920000pt;}
.yb2{bottom:147.040000pt;}
.y6{bottom:147.680000pt;}
.yce{bottom:151.040000pt;}
.y83{bottom:153.920000pt;}
.yc4{bottom:155.360000pt;}
.y2f{bottom:158.080000pt;}
.yd7{bottom:158.400000pt;}
.yb1{bottom:159.840000pt;}
.yf1{bottom:160.480000pt;}
.y67{bottom:165.600000pt;}
.y106{bottom:167.040000pt;}
.ycd{bottom:172.186667pt;}
.y5{bottom:172.480000pt;}
.y82{bottom:175.226667pt;}
.y3{bottom:177.600000pt;}
.y2e{bottom:179.226667pt;}
.yd6{bottom:179.546667pt;}
.yf0{bottom:181.626667pt;}
.yb0{bottom:181.640000pt;}
.y66{bottom:186.746667pt;}
.y105{bottom:188.186667pt;}
.ycc{bottom:193.626667pt;}
.y81{bottom:196.346667pt;}
.y2d{bottom:200.346667pt;}
.yd5{bottom:200.986667pt;}
.yef{bottom:202.906667pt;}
.yaf{bottom:203.400000pt;}
.y65{bottom:208.026667pt;}
.y104{bottom:209.466667pt;}
.ycb{bottom:215.066667pt;}
.y80{bottom:217.466667pt;}
.y2c{bottom:221.466667pt;}
.yd4{bottom:222.426667pt;}
.yee{bottom:224.026667pt;}
.yae{bottom:225.160000pt;}
.y64{bottom:229.146667pt;}
.y103{bottom:230.586667pt;}
.y7f{bottom:238.586667pt;}
.yca{bottom:238.906667pt;}
.y2b{bottom:242.746667pt;}
.yed{bottom:245.146667pt;}
.yd3{bottom:246.106667pt;}
.yad{bottom:246.920000pt;}
.y63{bottom:250.266667pt;}
.y102{bottom:251.706667pt;}
.y7e{bottom:259.866667pt;}
.y2a{bottom:263.866667pt;}
.yec{bottom:266.266667pt;}
.yac{bottom:268.680000pt;}
.y62{bottom:271.386667pt;}
.y101{bottom:272.826667pt;}
.y7d{bottom:280.986667pt;}
.y29{bottom:284.986667pt;}
.y5e{bottom:286.760000pt;}
.yeb{bottom:287.546667pt;}
.yab{bottom:290.440000pt;}
.y100{bottom:293.946667pt;}
.y7c{bottom:302.106667pt;}
.y28{bottom:306.106667pt;}
.yea{bottom:308.666667pt;}
.ya9{bottom:312.200000pt;}
.yff{bottom:315.226667pt;}
.y7b{bottom:322.906667pt;}
.y27{bottom:327.226667pt;}
.ye9{bottom:329.786667pt;}
.ya8{bottom:333.800000pt;}
.yfe{bottom:336.346667pt;}
.y59{bottom:342.600000pt;}
.y7a{bottom:344.026667pt;}
.y26{bottom:348.506667pt;}
.ye8{bottom:350.906667pt;}
.ya6{bottom:355.560000pt;}
.yfd{bottom:357.466667pt;}
.y79{bottom:365.626667pt;}
.y25{bottom:369.626667pt;}
.ye7{bottom:372.186667pt;}
.ya4{bottom:377.320000pt;}
.yfc{bottom:378.586667pt;}
.y78{bottom:386.786667pt;}
.y24{bottom:390.786667pt;}
.ye6{bottom:393.346667pt;}
.ya3{bottom:399.106667pt;}
.yfb{bottom:399.906667pt;}
.y77{bottom:407.906667pt;}
.y54{bottom:409.506667pt;}
.y23{bottom:411.906667pt;}
.ye5{bottom:414.466667pt;}
.ya2{bottom:420.866667pt;}
.yfa{bottom:421.026667pt;}
.y76{bottom:429.026667pt;}
.y22{bottom:433.186667pt;}
.ye4{bottom:435.586667pt;}
.yf9{bottom:442.146667pt;}
.ya1{bottom:442.626667pt;}
.y75{bottom:450.306667pt;}
.y21{bottom:453.986667pt;}
.ye3{bottom:456.386667pt;}
.yf8{bottom:463.266667pt;}
.ya0{bottom:464.386667pt;}
.y74{bottom:471.426667pt;}
.y20{bottom:475.426667pt;}
.yc3{bottom:475.586667pt;}
.y4f{bottom:476.546667pt;}
.ye2{bottom:477.666667pt;}
.yf7{bottom:484.546667pt;}
.y9f{bottom:486.146667pt;}
.y73{bottom:492.546667pt;}
.yc2{bottom:494.946667pt;}
.y1f{bottom:496.546667pt;}
.ye1{bottom:499.106667pt;}
.yf6{bottom:505.666667pt;}
.y9e{bottom:507.906667pt;}
.yc1{bottom:508.866667pt;}
.y72{bottom:513.666667pt;}
.y1e{bottom:517.506667pt;}
.ye0{bottom:520.226667pt;}
.yf5{bottom:526.786667pt;}
.yc0{bottom:529.506667pt;}
.y9d{bottom:529.666667pt;}
.y71{bottom:534.946667pt;}
.y1d{bottom:538.946667pt;}
.ydf{bottom:541.346667pt;}
.y45{bottom:543.906667pt;}
.yf4{bottom:547.906667pt;}
.ybf{bottom:550.146667pt;}
.y9c{bottom:551.426667pt;}
.y70{bottom:556.066667pt;}
.y1c{bottom:560.066667pt;}
.yde{bottom:562.626667pt;}
.yd2{bottom:569.186667pt;}
.ybe{bottom:570.946667pt;}
.y9b{bottom:573.186667pt;}
.y6f{bottom:577.186667pt;}
.y1b{bottom:581.186667pt;}
.y49{bottom:581.346667pt;}
.ydd{bottom:583.746667pt;}
.yd1{bottom:590.306667pt;}
.ybc{bottom:591.586667pt;}
.y9a{bottom:594.973333pt;}
.y6e{bottom:598.013333pt;}
.y1a{bottom:602.493333pt;}
.ydc{bottom:604.893333pt;}
.yc9{bottom:611.453333pt;}
.ybb{bottom:612.253333pt;}
.y99{bottom:616.733333pt;}
.y6d{bottom:619.293333pt;}
.y19{bottom:623.613333pt;}
.ydb{bottom:626.013333pt;}
.yc8{bottom:632.573333pt;}
.yba{bottom:632.893333pt;}
.y98{bottom:638.333333pt;}
.y6c{bottom:640.733333pt;}
.yda{bottom:643.453333pt;}
.y18{bottom:644.733333pt;}
.yb6{bottom:653.533333pt;}
.yc7{bottom:653.853333pt;}
.y6b{bottom:658.173333pt;}
.y97{bottom:660.093333pt;}
.y17{bottom:665.853333pt;}
.y44{bottom:674.973333pt;}
.y96{bottom:681.853333pt;}
.y16{bottom:687.133333pt;}
.y43{bottom:696.093333pt;}
.y95{bottom:703.613333pt;}
.y15{bottom:708.253333pt;}
.y42{bottom:717.213333pt;}
.y94{bottom:725.373333pt;}
.y14{bottom:729.053333pt;}
.yb5{bottom:738.013333pt;}
.y41{bottom:738.333333pt;}
.y93{bottom:747.133333pt;}
.y40{bottom:759.613333pt;}
.y13{bottom:763.933333pt;}
.y92{bottom:768.893333pt;}
.yf{bottom:777.853333pt;}
.y3f{bottom:780.733333pt;}
.y91{bottom:790.653333pt;}
.y3e{bottom:801.853333pt;}
.y90{bottom:812.453333pt;}
.yd{bottom:820.773333pt;}
.y3d{bottom:823.013333pt;}
.y8f{bottom:834.213333pt;}
.y2{bottom:838.373333pt;}
.y3c{bottom:844.293333pt;}
.y8e{bottom:855.973333pt;}
.y3b{bottom:865.413333pt;}
.y8d{bottom:877.733333pt;}
.y3a{bottom:886.533333pt;}
.y8b{bottom:899.493333pt;}
.y39{bottom:907.653333pt;}
.y8a{bottom:921.093333pt;}
.y38{bottom:928.933333pt;}
.y87{bottom:942.853333pt;}
.y37{bottom:950.053333pt;}
.y36{bottom:971.173333pt;}
.y35{bottom:992.293333pt;}
.y86{bottom:1013.253333pt;}
.y34{bottom:1013.573333pt;}
.y1{bottom:1061.600000pt;}
.y69{bottom:1073.587977pt;}
.hf{height:14.186667pt;}
.h9{height:17.586667pt;}
.h26{height:19.986667pt;}
.h24{height:20.000000pt;}
.h25{height:20.026667pt;}
.h1c{height:20.946667pt;}
.h1f{height:20.960000pt;}
.h20{height:20.986667pt;}
.h1b{height:21.106667pt;}
.h1e{height:21.120000pt;}
.h21{height:21.138667pt;}
.h1d{height:21.140000pt;}
.h22{height:21.152000pt;}
.h10{height:29.625000pt;}
.h23{height:35.360000pt;}
.h14{height:36.786667pt;}
.h2{height:40.796250pt;}
.h19{height:42.226667pt;}
.hb{height:42.900000pt;}
.h27{height:44.468750pt;}
.ha{height:52.108438pt;}
.h4{height:52.134375pt;}
.hd{height:52.236875pt;}
.h18{height:55.186667pt;}
.h7{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h8{height:62.781250pt;}
.hc{height:62.812500pt;}
.he{height:64.500000pt;}
.h17{height:66.098667pt;}
.h16{height:66.386667pt;}
.h15{height:66.546667pt;}
.h6{height:72.655000pt;}
.h5{height:75.465000pt;}
.h13{height:86.266667pt;}
.h12{height:99.932500pt;}
.h11{height:123.706667pt;}
.h3{height:189.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:16.000000pt;}
.w16{width:56.032000pt;}
.w12{width:60.030667pt;}
.w4{width:60.818667pt;}
.w6{width:62.230667pt;}
.w1a{width:63.186667pt;}
.w17{width:65.426667pt;}
.w19{width:65.458667pt;}
.w18{width:65.586667pt;}
.w15{width:65.600000pt;}
.w1e{width:65.792000pt;}
.w20{width:75.218667pt;}
.w1f{width:75.346667pt;}
.wa{width:75.510667pt;}
.w14{width:75.538667pt;}
.w5{width:78.706667pt;}
.w1d{width:88.640000pt;}
.w1c{width:90.098667pt;}
.we{width:94.400000pt;}
.w11{width:96.578667pt;}
.wb{width:101.458667pt;}
.w2{width:101.750667pt;}
.w13{width:102.706667pt;}
.w10{width:106.738667pt;}
.wd{width:111.346667pt;}
.wf{width:123.872000pt;}
.w1b{width:142.230667pt;}
.w8{width:320.969333pt;}
.wc{width:326.466667pt;}
.w3{width:362.773333pt;}
.w7{width:541.840000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.190667pt;}
.x6{left:9.586667pt;}
.x3a{left:11.520000pt;}
.x36{left:12.800000pt;}
.xf{left:14.546667pt;}
.x41{left:15.666667pt;}
.x15{left:16.790667pt;}
.x38{left:18.066667pt;}
.x1e{left:19.186667pt;}
.x30{left:20.160000pt;}
.x9{left:21.426667pt;}
.x33{left:22.546667pt;}
.x2e{left:23.840000pt;}
.x1b{left:26.560000pt;}
.x20{left:28.310667pt;}
.x2b{left:29.426667pt;}
.x39{left:30.746667pt;}
.x37{left:32.506667pt;}
.x1f{left:35.200000pt;}
.xa{left:36.466667pt;}
.x7{left:37.746667pt;}
.x26{left:39.040000pt;}
.x17{left:40.946667pt;}
.x23{left:43.346667pt;}
.x25{left:47.680000pt;}
.x27{left:49.760000pt;}
.x21{left:51.840000pt;}
.x22{left:53.266667pt;}
.x24{left:55.680000pt;}
.x8{left:60.826667pt;}
.xd{left:69.120000pt;}
.x2a{left:81.281333pt;}
.x14{left:88.521333pt;}
.x1{left:94.432000pt;}
.x3{left:101.105333pt;}
.x19{left:116.800000pt;}
.x13{left:118.432000pt;}
.x42{left:120.832000pt;}
.x10{left:141.626667pt;}
.xe{left:156.680000pt;}
.x16{left:164.680000pt;}
.x5{left:181.306667pt;}
.x4{left:196.200000pt;}
.x11{left:235.325333pt;}
.x3b{left:236.360000pt;}
.x2c{left:245.320000pt;}
.x18{left:266.946667pt;}
.x2d{left:321.666667pt;}
.x3c{left:326.946667pt;}
.x28{left:347.524007pt;}
.x1c{left:362.146667pt;}
.x2f{left:387.906667pt;}
.x3d{left:415.906667pt;}
.x31{left:444.586667pt;}
.x3e{left:482.026667pt;}
.x1d{left:486.666667pt;}
.x32{left:510.666667pt;}
.x3f{left:557.706667pt;}
.xb{left:558.986667pt;}
.x34{left:576.906667pt;}
.x1a{left:594.053333pt;}
.xc{left:619.813333pt;}
.x40{left:633.253333pt;}
.x35{left:643.013333pt;}
.x12{left:679.626667pt;}
.x29{left:698.533333pt;}
.x43{left:700.453333pt;}
}




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