
    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_72b3332321d6e1779ee6d233.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_5cfaec2a2025728a65e9622d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008789;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_aaa00a01ac9c0f6ab779da59.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6d187c131a1bdc84cc2592e5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8e6d1702b1dc52328b403c15.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6209c354c1f85729769d1226.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bbf85a764fa8dfb6bff2f4ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_e308cc22b3886a83e4534638.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.073242;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_2cd83c323b6c4b03f1b6dccf.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2ccab0509c17c21dcc7a45f3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_44e447de31231b016cfdecb0.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v3{vertical-align:-69.120000px;}
.v4{vertical-align:-61.920000px;}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls11{letter-spacing:-0.262200px;}
.lsd{letter-spacing:-0.052560px;}
.lsc{letter-spacing:-0.000003px;}
.lsb{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.093600px;}
.lsf{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.298800px;}
.lse{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.666000px;}
.ls12{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.900000px;}
.ls9{letter-spacing:3.774240px;}
.ls8{letter-spacing:4.500000px;}
.ls5{letter-spacing:19.614240px;}
.lsa{letter-spacing:28.980000px;}
.ls4{letter-spacing:1335.216000px;}
.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;}
}
.ws7{word-spacing:-66.240000px;}
.ws9{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.639997px;}
.wse{word-spacing:-17.280000px;}
.wsa{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.297800px;}
.ws2{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws1{word-spacing:-11.113200px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._17{margin-left:-5.251200px;}
._4{margin-left:-3.983040px;}
._3{margin-left:-2.980800px;}
._1{margin-left:-1.088640px;}
._0{width:1.020000px;}
._5{width:2.782080px;}
._16{width:3.948960px;}
._10{width:4.959360px;}
._f{width:6.624000px;}
._c{width:7.816320px;}
._e{width:8.927520px;}
._12{width:10.465920px;}
._9{width:12.108000px;}
._a{width:13.437120px;}
._b{width:14.592000px;}
._20{width:15.947760px;}
._1b{width:17.577600px;}
._11{width:18.713280px;}
._15{width:19.810080px;}
._6{width:21.064320px;}
._7{width:22.484160px;}
._8{width:23.606880px;}
._d{width:24.980640px;}
._18{width:26.988480px;}
._19{width:28.175040px;}
._1a{width:29.724480px;}
._1f{width:34.546080px;}
._1e{width:35.599680px;}
._1d{width:36.968160px;}
._1c{width:38.021760px;}
._13{width:42.194880px;}
._14{width:43.880160px;}
._21{width:45.596880px;}
._2{width:54.217920px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.y4a{bottom:-116.505000px;}
.y49{bottom:-100.989000px;}
.y48{bottom:-85.509000px;}
.y47{bottom:-69.849000px;}
.y46{bottom:-54.369000px;}
.y45{bottom:-38.889000px;}
.y17{bottom:-26.820000px;}
.y44{bottom:-23.409000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.751000px;}
.y4e{bottom:6.291000px;}
.y8{bottom:7.731000px;}
.y16{bottom:7.740000px;}
.y4f{bottom:8.631000px;}
.y39{bottom:9.765000px;}
.y4{bottom:13.140000px;}
.y2{bottom:15.300000px;}
.y28{bottom:21.240000px;}
.y43{bottom:23.211000px;}
.y50{bottom:24.156000px;}
.y9{bottom:25.776000px;}
.y38{bottom:27.225000px;}
.y15{bottom:30.060000px;}
.y10{bottom:35.100000px;}
.y4d{bottom:36.765000px;}
.y42{bottom:38.691000px;}
.y27{bottom:38.700000px;}
.y6{bottom:41.265000px;}
.y37{bottom:46.305000px;}
.y14{bottom:47.340000px;}
.yf{bottom:54.000000px;}
.y41{bottom:54.345000px;}
.y26{bottom:57.780000px;}
.y13{bottom:64.800000px;}
.y36{bottom:64.845000px;}
.y40{bottom:70.185000px;}
.ye{bottom:72.360000px;}
.y25{bottom:76.320000px;}
.y12{bottom:82.980000px;}
.y35{bottom:84.105000px;}
.y3f{bottom:87.465000px;}
.yd{bottom:90.360000px;}
.y24{bottom:95.760000px;}
.y34{bottom:103.185000px;}
.y3e{bottom:104.745000px;}
.y3a{bottom:110.385000px;}
.yc{bottom:111.060000px;}
.y23{bottom:114.660000px;}
.y87{bottom:115.236000px;}
.ybe{bottom:117.036000px;}
.ye2{bottom:118.476000px;}
.y3d{bottom:122.025000px;}
.y33{bottom:122.085000px;}
.y11c{bottom:125.316000px;}
.y22{bottom:133.560000px;}
.y86{bottom:134.136000px;}
.ye1{bottom:135.576000px;}
.ybd{bottom:135.936000px;}
.y3c{bottom:139.305000px;}
.y32{bottom:141.165000px;}
.y11b{bottom:142.596000px;}
.y21{bottom:152.640000px;}
.ye0{bottom:152.850000px;}
.y85{bottom:153.210000px;}
.ybc{bottom:154.830000px;}
.y3b{bottom:156.585000px;}
.y11a{bottom:159.870000px;}
.y31{bottom:160.065000px;}
.ydf{bottom:170.130000px;}
.y20{bottom:171.540000px;}
.y84{bottom:172.110000px;}
.ybb{bottom:173.910000px;}
.y119{bottom:176.970000px;}
.y30{bottom:178.965000px;}
.yde{bottom:187.410000px;}
.y1f{bottom:190.620000px;}
.y83{bottom:191.190000px;}
.yba{bottom:192.810000px;}
.y118{bottom:194.250000px;}
.y2f{bottom:198.045000px;}
.ydd{bottom:204.690000px;}
.y1e{bottom:209.520000px;}
.y82{bottom:210.090000px;}
.y117{bottom:211.530000px;}
.yb9{bottom:211.890000px;}
.y2e{bottom:216.945000px;}
.ydc{bottom:221.970000px;}
.y1d{bottom:228.420000px;}
.y116{bottom:228.810000px;}
.y81{bottom:228.990000px;}
.yc3{bottom:230.430000px;}
.yb8{bottom:230.790000px;}
.y2d{bottom:236.025000px;}
.ydb{bottom:239.070000px;}
.y115{bottom:246.090000px;}
.y1c{bottom:247.500000px;}
.y80{bottom:248.070000px;}
.yc2{bottom:249.330000px;}
.yb7{bottom:249.690000px;}
.y142{bottom:252.930000px;}
.y2c{bottom:254.925000px;}
.yda{bottom:256.350000px;}
.y114{bottom:263.190000px;}
.y1b{bottom:266.445000px;}
.y7f{bottom:266.610000px;}
.yb6{bottom:268.770000px;}
.y141{bottom:270.210000px;}
.yd9{bottom:273.630000px;}
.y2b{bottom:274.005000px;}
.y29{bottom:280.470000px;}
.y1a{bottom:285.525000px;}
.y7e{bottom:286.095000px;}
.y140{bottom:286.995000px;}
.yb5{bottom:287.715000px;}
.yd8{bottom:290.955000px;}
.y2a{bottom:292.575000px;}
.y113{bottom:297.795000px;}
.y13f{bottom:302.475000px;}
.y19{bottom:304.065000px;}
.y7d{bottom:304.995000px;}
.yb4{bottom:306.795000px;}
.yd7{bottom:308.235000px;}
.y112{bottom:315.075000px;}
.y13e{bottom:318.135000px;}
.y7c{bottom:323.895000px;}
.yd6{bottom:325.335000px;}
.yb3{bottom:325.695000px;}
.y111{bottom:332.355000px;}
.y13d{bottom:333.615000px;}
.yd5{bottom:342.615000px;}
.y7b{bottom:342.975000px;}
.yb2{bottom:344.595000px;}
.y13c{bottom:349.095000px;}
.y110{bottom:349.635000px;}
.yd4{bottom:359.895000px;}
.y7a{bottom:361.875000px;}
.yb1{bottom:363.675000px;}
.y13b{bottom:364.575000px;}
.y10f{bottom:366.735000px;}
.yd3{bottom:377.175000px;}
.y13a{bottom:380.235000px;}
.y79{bottom:380.955000px;}
.yb0{bottom:382.215000px;}
.yc1{bottom:382.575000px;}
.y10e{bottom:384.015000px;}
.yd2{bottom:394.455000px;}
.y139{bottom:395.715000px;}
.y78{bottom:399.855000px;}
.y10d{bottom:401.295000px;}
.yaf{bottom:401.655000px;}
.y138{bottom:411.195000px;}
.yd1{bottom:411.735000px;}
.y10c{bottom:418.575000px;}
.y77{bottom:418.935000px;}
.yae{bottom:420.555000px;}
.y137{bottom:426.675000px;}
.yd0{bottom:428.835000px;}
.y10b{bottom:435.855000px;}
.y76{bottom:437.835000px;}
.yc5{bottom:439.095000px;}
.yad{bottom:439.455000px;}
.y136{bottom:442.155000px;}
.ycf{bottom:446.115000px;}
.y10a{bottom:453.135000px;}
.y75{bottom:456.735000px;}
.y135{bottom:457.815000px;}
.yc4{bottom:458.175000px;}
.yac{bottom:458.535000px;}
.yce{bottom:463.395000px;}
.y109{bottom:470.235000px;}
.y134{bottom:473.295000px;}
.y74{bottom:475.815000px;}
.yab{bottom:477.435000px;}
.ycd{bottom:480.675000px;}
.y108{bottom:487.515000px;}
.y133{bottom:488.775000px;}
.y73{bottom:494.715000px;}
.yaa{bottom:496.515000px;}
.ycc{bottom:497.955000px;}
.y132{bottom:504.255000px;}
.y107{bottom:504.795000px;}
.y72{bottom:513.795000px;}
.ycb{bottom:515.235000px;}
.ya9{bottom:515.415000px;}
.y131{bottom:519.915000px;}
.y106{bottom:522.075000px;}
.y71{bottom:532.695000px;}
.yca{bottom:532.875000px;}
.ya8{bottom:534.495000px;}
.y130{bottom:535.395000px;}
.y105{bottom:539.355000px;}
.y12f{bottom:550.875000px;}
.y70{bottom:551.595000px;}
.yc9{bottom:553.035000px;}
.ya7{bottom:553.395000px;}
.y104{bottom:556.635000px;}
.y12e{bottom:566.385000px;}
.y6f{bottom:570.705000px;}
.ya6{bottom:572.325000px;}
.y103{bottom:573.765000px;}
.y12d{bottom:582.045000px;}
.y18{bottom:588.345000px;}
.y6e{bottom:589.605000px;}
.yc7{bottom:591.045000px;}
.ya5{bottom:591.405000px;}
.y12c{bottom:597.525000px;}
.y102{bottom:608.325000px;}
.y6d{bottom:608.685000px;}
.ya4{bottom:610.305000px;}
.y12b{bottom:613.005000px;}
.y101{bottom:625.605000px;}
.y6c{bottom:627.585000px;}
.y12a{bottom:628.485000px;}
.ya3{bottom:629.385000px;}
.y100{bottom:642.885000px;}
.y129{bottom:644.145000px;}
.y6b{bottom:646.485000px;}
.ya2{bottom:648.285000px;}
.y128{bottom:659.625000px;}
.yff{bottom:659.985000px;}
.y6a{bottom:665.565000px;}
.ya1{bottom:667.185000px;}
.y127{bottom:675.105000px;}
.yfe{bottom:677.265000px;}
.y69{bottom:684.105000px;}
.ya0{bottom:686.265000px;}
.y126{bottom:690.585000px;}
.yfd{bottom:694.545000px;}
.y68{bottom:703.545000px;}
.y9f{bottom:705.165000px;}
.y125{bottom:706.245000px;}
.yfc{bottom:711.825000px;}
.y124{bottom:721.725000px;}
.y67{bottom:722.445000px;}
.y9e{bottom:724.245000px;}
.yfb{bottom:729.105000px;}
.y123{bottom:737.205000px;}
.y66{bottom:741.345000px;}
.y9d{bottom:743.145000px;}
.yfa{bottom:746.385000px;}
.y122{bottom:752.685000px;}
.y65{bottom:760.425000px;}
.y9c{bottom:762.045000px;}
.yf9{bottom:763.485000px;}
.y121{bottom:768.345000px;}
.y64{bottom:779.325000px;}
.yf8{bottom:780.765000px;}
.y9b{bottom:781.125000px;}
.y120{bottom:784.725000px;}
.yf7{bottom:798.045000px;}
.y63{bottom:798.405000px;}
.y9a{bottom:800.025000px;}
.y11f{bottom:805.785000px;}
.yf6{bottom:815.325000px;}
.y62{bottom:817.305000px;}
.y99{bottom:818.745000px;}
.yc0{bottom:819.105000px;}
.y11e{bottom:826.485000px;}
.yf5{bottom:832.605000px;}
.y61{bottom:836.205000px;}
.ybf{bottom:837.645000px;}
.y98{bottom:838.005000px;}
.y11d{bottom:847.185000px;}
.yf4{bottom:849.930000px;}
.y60{bottom:855.330000px;}
.y97{bottom:856.950000px;}
.yf3{bottom:867.030000px;}
.y5f{bottom:874.230000px;}
.y96{bottom:876.030000px;}
.yf2{bottom:884.310000px;}
.y5e{bottom:893.310000px;}
.yc8{bottom:894.570000px;}
.y95{bottom:894.930000px;}
.yf1{bottom:901.590000px;}
.y11{bottom:907.710000px;}
.y5d{bottom:912.210000px;}
.y94{bottom:914.010000px;}
.yf0{bottom:918.870000px;}
.y5c{bottom:931.290000px;}
.y93{bottom:932.910000px;}
.yef{bottom:936.150000px;}
.y5b{bottom:950.190000px;}
.y92{bottom:951.990000px;}
.yee{bottom:953.430000px;}
.y5a{bottom:969.090000px;}
.yed{bottom:970.530000px;}
.y91{bottom:970.890000px;}
.yec{bottom:987.810000px;}
.y59{bottom:988.170000px;}
.y90{bottom:989.790000px;}
.yb{bottom:1002.930000px;}
.yeb{bottom:1005.090000px;}
.y58{bottom:1007.070000px;}
.y8f{bottom:1008.870000px;}
.yea{bottom:1022.370000px;}
.y57{bottom:1026.150000px;}
.y8e{bottom:1027.770000px;}
.ye9{bottom:1039.650000px;}
.y56{bottom:1045.050000px;}
.y8d{bottom:1046.850000px;}
.ye8{bottom:1056.750000px;}
.y55{bottom:1063.950000px;}
.y8c{bottom:1065.750000px;}
.ye7{bottom:1074.030000px;}
.y54{bottom:1083.030000px;}
.y8b{bottom:1084.650000px;}
.ye6{bottom:1091.310000px;}
.y53{bottom:1101.930000px;}
.y8a{bottom:1103.730000px;}
.ye5{bottom:1108.590000px;}
.y52{bottom:1121.010000px;}
.y89{bottom:1122.630000px;}
.ye4{bottom:1125.870000px;}
.ya{bottom:1134.720000px;}
.y51{bottom:1140.120000px;}
.yc6{bottom:1141.380000px;}
.y88{bottom:1141.740000px;}
.ye3{bottom:1143.180000px;}
.y5{bottom:1144.440000px;}
.y3{bottom:1155.240000px;}
.y4c{bottom:1179.000000px;}
.y1{bottom:1188.360000px;}
.y4b{bottom:1196.280000px;}
.h7{height:21.231000px;}
.h1e{height:22.131000px;}
.hb{height:29.678906px;}
.h2{height:32.040000px;}
.h4{height:32.400000px;}
.h5{height:34.020000px;}
.h14{height:38.158594px;}
.h13{height:40.985156px;}
.h12{height:45.004219px;}
.h6{height:47.344922px;}
.h1d{height:52.971680px;}
.h1c{height:52.998047px;}
.h21{height:53.573906px;}
.h3{height:54.000000px;}
.h1f{height:55.503491px;}
.h8{height:58.621992px;}
.h9{height:58.651172px;}
.h19{height:59.383125px;}
.h1b{height:59.439023px;}
.he{height:60.226875px;}
.h20{height:64.978594px;}
.hf{height:65.010937px;}
.ha{height:65.884219px;}
.h16{height:66.757500px;}
.h22{height:70.664062px;}
.hd{height:72.562500px;}
.h17{height:82.676953px;}
.h10{height:93.983203px;}
.h11{height:95.220000px;}
.hc{height:127.650000px;}
.h1a{height:170.091000px;}
.h18{height:307.875000px;}
.h15{height:319.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:28.785000px;}
.w7{width:30.405000px;}
.w6{width:652.410000px;}
.w3{width:659.070000px;}
.w2{width:680.310000px;}
.w5{width:691.305000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.091000px;}
.x2{left:15.291000px;}
.xf{left:18.720000px;}
.xe{left:33.660000px;}
.xa{left:36.900000px;}
.x7{left:47.694000px;}
.x8{left:62.634000px;}
.x5{left:95.805000px;}
.x1{left:106.425000px;}
.x10{left:108.936000px;}
.x14{left:159.330000px;}
.xd{left:161.274000px;}
.xb{left:192.459000px;}
.xc{left:197.319000px;}
.x9{left:344.019000px;}
.x4{left:446.475000px;}
.x11{left:562.065000px;}
.x6{left:754.890000px;}
.x12{left:758.670000px;}
.x13{left:786.750000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v4{vertical-align:-55.040000pt;}
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls11{letter-spacing:-0.233067pt;}
.lsd{letter-spacing:-0.046720pt;}
.lsc{letter-spacing:-0.000003pt;}
.lsb{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.083200pt;}
.lsf{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.592000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls9{letter-spacing:3.354880pt;}
.ls8{letter-spacing:4.000000pt;}
.ls5{letter-spacing:17.434880pt;}
.lsa{letter-spacing:25.760000pt;}
.ls4{letter-spacing:1186.858667pt;}
.ws7{word-spacing:-58.880000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.679997pt;}
.wse{word-spacing:-15.360000pt;}
.wsa{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.486933pt;}
.ws2{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws1{word-spacing:-9.878400pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._17{margin-left:-4.667733pt;}
._4{margin-left:-3.540480pt;}
._3{margin-left:-2.649600pt;}
._1{margin-left:-0.967680pt;}
._0{width:0.906667pt;}
._5{width:2.472960pt;}
._16{width:3.510187pt;}
._10{width:4.408320pt;}
._f{width:5.888000pt;}
._c{width:6.947840pt;}
._e{width:7.935573pt;}
._12{width:9.303040pt;}
._9{width:10.762667pt;}
._a{width:11.944107pt;}
._b{width:12.970667pt;}
._20{width:14.175787pt;}
._1b{width:15.624533pt;}
._11{width:16.634027pt;}
._15{width:17.608960pt;}
._6{width:18.723840pt;}
._7{width:19.985920pt;}
._8{width:20.983893pt;}
._d{width:22.205013pt;}
._18{width:23.989760pt;}
._19{width:25.044480pt;}
._1a{width:26.421760pt;}
._1f{width:30.707627pt;}
._1e{width:31.644160pt;}
._1d{width:32.860587pt;}
._1c{width:33.797120pt;}
._13{width:37.506560pt;}
._14{width:39.004587pt;}
._21{width:40.530560pt;}
._2{width:48.193707pt;}
.fs5{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.y4a{bottom:-103.560000pt;}
.y49{bottom:-89.768000pt;}
.y48{bottom:-76.008000pt;}
.y47{bottom:-62.088000pt;}
.y46{bottom:-48.328000pt;}
.y45{bottom:-34.568000pt;}
.y17{bottom:-23.840000pt;}
.y44{bottom:-20.808000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.112000pt;}
.y4e{bottom:5.592000pt;}
.y8{bottom:6.872000pt;}
.y16{bottom:6.880000pt;}
.y4f{bottom:7.672000pt;}
.y39{bottom:8.680000pt;}
.y4{bottom:11.680000pt;}
.y2{bottom:13.600000pt;}
.y28{bottom:18.880000pt;}
.y43{bottom:20.632000pt;}
.y50{bottom:21.472000pt;}
.y9{bottom:22.912000pt;}
.y38{bottom:24.200000pt;}
.y15{bottom:26.720000pt;}
.y10{bottom:31.200000pt;}
.y4d{bottom:32.680000pt;}
.y42{bottom:34.392000pt;}
.y27{bottom:34.400000pt;}
.y6{bottom:36.680000pt;}
.y37{bottom:41.160000pt;}
.y14{bottom:42.080000pt;}
.yf{bottom:48.000000pt;}
.y41{bottom:48.306667pt;}
.y26{bottom:51.360000pt;}
.y13{bottom:57.600000pt;}
.y36{bottom:57.640000pt;}
.y40{bottom:62.386667pt;}
.ye{bottom:64.320000pt;}
.y25{bottom:67.840000pt;}
.y12{bottom:73.760000pt;}
.y35{bottom:74.760000pt;}
.y3f{bottom:77.746667pt;}
.yd{bottom:80.320000pt;}
.y24{bottom:85.120000pt;}
.y34{bottom:91.720000pt;}
.y3e{bottom:93.106667pt;}
.y3a{bottom:98.120000pt;}
.yc{bottom:98.720000pt;}
.y23{bottom:101.920000pt;}
.y87{bottom:102.432000pt;}
.ybe{bottom:104.032000pt;}
.ye2{bottom:105.312000pt;}
.y3d{bottom:108.466667pt;}
.y33{bottom:108.520000pt;}
.y11c{bottom:111.392000pt;}
.y22{bottom:118.720000pt;}
.y86{bottom:119.232000pt;}
.ye1{bottom:120.512000pt;}
.ybd{bottom:120.832000pt;}
.y3c{bottom:123.826667pt;}
.y32{bottom:125.480000pt;}
.y11b{bottom:126.752000pt;}
.y21{bottom:135.680000pt;}
.ye0{bottom:135.866667pt;}
.y85{bottom:136.186667pt;}
.ybc{bottom:137.626667pt;}
.y3b{bottom:139.186667pt;}
.y11a{bottom:142.106667pt;}
.y31{bottom:142.280000pt;}
.ydf{bottom:151.226667pt;}
.y20{bottom:152.480000pt;}
.y84{bottom:152.986667pt;}
.ybb{bottom:154.586667pt;}
.y119{bottom:157.306667pt;}
.y30{bottom:159.080000pt;}
.yde{bottom:166.586667pt;}
.y1f{bottom:169.440000pt;}
.y83{bottom:169.946667pt;}
.yba{bottom:171.386667pt;}
.y118{bottom:172.666667pt;}
.y2f{bottom:176.040000pt;}
.ydd{bottom:181.946667pt;}
.y1e{bottom:186.240000pt;}
.y82{bottom:186.746667pt;}
.y117{bottom:188.026667pt;}
.yb9{bottom:188.346667pt;}
.y2e{bottom:192.840000pt;}
.ydc{bottom:197.306667pt;}
.y1d{bottom:203.040000pt;}
.y116{bottom:203.386667pt;}
.y81{bottom:203.546667pt;}
.yc3{bottom:204.826667pt;}
.yb8{bottom:205.146667pt;}
.y2d{bottom:209.800000pt;}
.ydb{bottom:212.506667pt;}
.y115{bottom:218.746667pt;}
.y1c{bottom:220.000000pt;}
.y80{bottom:220.506667pt;}
.yc2{bottom:221.626667pt;}
.yb7{bottom:221.946667pt;}
.y142{bottom:224.826667pt;}
.y2c{bottom:226.600000pt;}
.yda{bottom:227.866667pt;}
.y114{bottom:233.946667pt;}
.y1b{bottom:236.840000pt;}
.y7f{bottom:236.986667pt;}
.yb6{bottom:238.906667pt;}
.y141{bottom:240.186667pt;}
.yd9{bottom:243.226667pt;}
.y2b{bottom:243.560000pt;}
.y29{bottom:249.306667pt;}
.y1a{bottom:253.800000pt;}
.y7e{bottom:254.306667pt;}
.y140{bottom:255.106667pt;}
.yb5{bottom:255.746667pt;}
.yd8{bottom:258.626667pt;}
.y2a{bottom:260.066667pt;}
.y113{bottom:264.706667pt;}
.y13f{bottom:268.866667pt;}
.y19{bottom:270.280000pt;}
.y7d{bottom:271.106667pt;}
.yb4{bottom:272.706667pt;}
.yd7{bottom:273.986667pt;}
.y112{bottom:280.066667pt;}
.y13e{bottom:282.786667pt;}
.y7c{bottom:287.906667pt;}
.yd6{bottom:289.186667pt;}
.yb3{bottom:289.506667pt;}
.y111{bottom:295.426667pt;}
.y13d{bottom:296.546667pt;}
.yd5{bottom:304.546667pt;}
.y7b{bottom:304.866667pt;}
.yb2{bottom:306.306667pt;}
.y13c{bottom:310.306667pt;}
.y110{bottom:310.786667pt;}
.yd4{bottom:319.906667pt;}
.y7a{bottom:321.666667pt;}
.yb1{bottom:323.266667pt;}
.y13b{bottom:324.066667pt;}
.y10f{bottom:325.986667pt;}
.yd3{bottom:335.266667pt;}
.y13a{bottom:337.986667pt;}
.y79{bottom:338.626667pt;}
.yb0{bottom:339.746667pt;}
.yc1{bottom:340.066667pt;}
.y10e{bottom:341.346667pt;}
.yd2{bottom:350.626667pt;}
.y139{bottom:351.746667pt;}
.y78{bottom:355.426667pt;}
.y10d{bottom:356.706667pt;}
.yaf{bottom:357.026667pt;}
.y138{bottom:365.506667pt;}
.yd1{bottom:365.986667pt;}
.y10c{bottom:372.066667pt;}
.y77{bottom:372.386667pt;}
.yae{bottom:373.826667pt;}
.y137{bottom:379.266667pt;}
.yd0{bottom:381.186667pt;}
.y10b{bottom:387.426667pt;}
.y76{bottom:389.186667pt;}
.yc5{bottom:390.306667pt;}
.yad{bottom:390.626667pt;}
.y136{bottom:393.026667pt;}
.ycf{bottom:396.546667pt;}
.y10a{bottom:402.786667pt;}
.y75{bottom:405.986667pt;}
.y135{bottom:406.946667pt;}
.yc4{bottom:407.266667pt;}
.yac{bottom:407.586667pt;}
.yce{bottom:411.906667pt;}
.y109{bottom:417.986667pt;}
.y134{bottom:420.706667pt;}
.y74{bottom:422.946667pt;}
.yab{bottom:424.386667pt;}
.ycd{bottom:427.266667pt;}
.y108{bottom:433.346667pt;}
.y133{bottom:434.466667pt;}
.y73{bottom:439.746667pt;}
.yaa{bottom:441.346667pt;}
.ycc{bottom:442.626667pt;}
.y132{bottom:448.226667pt;}
.y107{bottom:448.706667pt;}
.y72{bottom:456.706667pt;}
.ycb{bottom:457.986667pt;}
.ya9{bottom:458.146667pt;}
.y131{bottom:462.146667pt;}
.y106{bottom:464.066667pt;}
.y71{bottom:473.506667pt;}
.yca{bottom:473.666667pt;}
.ya8{bottom:475.106667pt;}
.y130{bottom:475.906667pt;}
.y105{bottom:479.426667pt;}
.y12f{bottom:489.666667pt;}
.y70{bottom:490.306667pt;}
.yc9{bottom:491.586667pt;}
.ya7{bottom:491.906667pt;}
.y104{bottom:494.786667pt;}
.y12e{bottom:503.453333pt;}
.y6f{bottom:507.293333pt;}
.ya6{bottom:508.733333pt;}
.y103{bottom:510.013333pt;}
.y12d{bottom:517.373333pt;}
.y18{bottom:522.973333pt;}
.y6e{bottom:524.093333pt;}
.yc7{bottom:525.373333pt;}
.ya5{bottom:525.693333pt;}
.y12c{bottom:531.133333pt;}
.y102{bottom:540.733333pt;}
.y6d{bottom:541.053333pt;}
.ya4{bottom:542.493333pt;}
.y12b{bottom:544.893333pt;}
.y101{bottom:556.093333pt;}
.y6c{bottom:557.853333pt;}
.y12a{bottom:558.653333pt;}
.ya3{bottom:559.453333pt;}
.y100{bottom:571.453333pt;}
.y129{bottom:572.573333pt;}
.y6b{bottom:574.653333pt;}
.ya2{bottom:576.253333pt;}
.y128{bottom:586.333333pt;}
.yff{bottom:586.653333pt;}
.y6a{bottom:591.613333pt;}
.ya1{bottom:593.053333pt;}
.y127{bottom:600.093333pt;}
.yfe{bottom:602.013333pt;}
.y69{bottom:608.093333pt;}
.ya0{bottom:610.013333pt;}
.y126{bottom:613.853333pt;}
.yfd{bottom:617.373333pt;}
.y68{bottom:625.373333pt;}
.y9f{bottom:626.813333pt;}
.y125{bottom:627.773333pt;}
.yfc{bottom:632.733333pt;}
.y124{bottom:641.533333pt;}
.y67{bottom:642.173333pt;}
.y9e{bottom:643.773333pt;}
.yfb{bottom:648.093333pt;}
.y123{bottom:655.293333pt;}
.y66{bottom:658.973333pt;}
.y9d{bottom:660.573333pt;}
.yfa{bottom:663.453333pt;}
.y122{bottom:669.053333pt;}
.y65{bottom:675.933333pt;}
.y9c{bottom:677.373333pt;}
.yf9{bottom:678.653333pt;}
.y121{bottom:682.973333pt;}
.y64{bottom:692.733333pt;}
.yf8{bottom:694.013333pt;}
.y9b{bottom:694.333333pt;}
.y120{bottom:697.533333pt;}
.yf7{bottom:709.373333pt;}
.y63{bottom:709.693333pt;}
.y9a{bottom:711.133333pt;}
.y11f{bottom:716.253333pt;}
.yf6{bottom:724.733333pt;}
.y62{bottom:726.493333pt;}
.y99{bottom:727.773333pt;}
.yc0{bottom:728.093333pt;}
.y11e{bottom:734.653333pt;}
.yf5{bottom:740.093333pt;}
.y61{bottom:743.293333pt;}
.ybf{bottom:744.573333pt;}
.y98{bottom:744.893333pt;}
.y11d{bottom:753.053333pt;}
.yf4{bottom:755.493333pt;}
.y60{bottom:760.293333pt;}
.y97{bottom:761.733333pt;}
.yf3{bottom:770.693333pt;}
.y5f{bottom:777.093333pt;}
.y96{bottom:778.693333pt;}
.yf2{bottom:786.053333pt;}
.y5e{bottom:794.053333pt;}
.yc8{bottom:795.173333pt;}
.y95{bottom:795.493333pt;}
.yf1{bottom:801.413333pt;}
.y11{bottom:806.853333pt;}
.y5d{bottom:810.853333pt;}
.y94{bottom:812.453333pt;}
.yf0{bottom:816.773333pt;}
.y5c{bottom:827.813333pt;}
.y93{bottom:829.253333pt;}
.yef{bottom:832.133333pt;}
.y5b{bottom:844.613333pt;}
.y92{bottom:846.213333pt;}
.yee{bottom:847.493333pt;}
.y5a{bottom:861.413333pt;}
.yed{bottom:862.693333pt;}
.y91{bottom:863.013333pt;}
.yec{bottom:878.053333pt;}
.y59{bottom:878.373333pt;}
.y90{bottom:879.813333pt;}
.yb{bottom:891.493333pt;}
.yeb{bottom:893.413333pt;}
.y58{bottom:895.173333pt;}
.y8f{bottom:896.773333pt;}
.yea{bottom:908.773333pt;}
.y57{bottom:912.133333pt;}
.y8e{bottom:913.573333pt;}
.ye9{bottom:924.133333pt;}
.y56{bottom:928.933333pt;}
.y8d{bottom:930.533333pt;}
.ye8{bottom:939.333333pt;}
.y55{bottom:945.733333pt;}
.y8c{bottom:947.333333pt;}
.ye7{bottom:954.693333pt;}
.y54{bottom:962.693333pt;}
.y8b{bottom:964.133333pt;}
.ye6{bottom:970.053333pt;}
.y53{bottom:979.493333pt;}
.y8a{bottom:981.093333pt;}
.ye5{bottom:985.413333pt;}
.y52{bottom:996.453333pt;}
.y89{bottom:997.893333pt;}
.ye4{bottom:1000.773333pt;}
.ya{bottom:1008.640000pt;}
.y51{bottom:1013.440000pt;}
.yc6{bottom:1014.560000pt;}
.y88{bottom:1014.880000pt;}
.ye3{bottom:1016.160000pt;}
.y5{bottom:1017.280000pt;}
.y3{bottom:1026.880000pt;}
.y4c{bottom:1048.000000pt;}
.y1{bottom:1056.320000pt;}
.y4b{bottom:1063.360000pt;}
.h7{height:18.872000pt;}
.h1e{height:19.672000pt;}
.hb{height:26.381250pt;}
.h2{height:28.480000pt;}
.h4{height:28.800000pt;}
.h5{height:30.240000pt;}
.h14{height:33.918750pt;}
.h13{height:36.431250pt;}
.h12{height:40.003750pt;}
.h6{height:42.084375pt;}
.h1d{height:47.085938pt;}
.h1c{height:47.109375pt;}
.h21{height:47.621250pt;}
.h3{height:48.000000pt;}
.h1f{height:49.336436pt;}
.h8{height:52.108438pt;}
.h9{height:52.134375pt;}
.h19{height:52.785000pt;}
.h1b{height:52.834688pt;}
.he{height:53.535000pt;}
.h20{height:57.758750pt;}
.hf{height:57.787500pt;}
.ha{height:58.563750pt;}
.h16{height:59.340000pt;}
.h22{height:62.812500pt;}
.hd{height:64.500000pt;}
.h17{height:73.490625pt;}
.h10{height:83.540625pt;}
.h11{height:84.640000pt;}
.hc{height:113.466667pt;}
.h1a{height:151.192000pt;}
.h18{height:273.666667pt;}
.h15{height:283.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:25.586667pt;}
.w7{width:27.026667pt;}
.w6{width:579.920000pt;}
.w3{width:585.840000pt;}
.w2{width:604.720000pt;}
.w5{width:614.493333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.192000pt;}
.x2{left:13.592000pt;}
.xf{left:16.640000pt;}
.xe{left:29.920000pt;}
.xa{left:32.800000pt;}
.x7{left:42.394667pt;}
.x8{left:55.674667pt;}
.x5{left:85.160000pt;}
.x1{left:94.600000pt;}
.x10{left:96.832000pt;}
.x14{left:141.626667pt;}
.xd{left:143.354667pt;}
.xb{left:171.074667pt;}
.xc{left:175.394667pt;}
.x9{left:305.794667pt;}
.x4{left:396.866667pt;}
.x11{left:499.613333pt;}
.x6{left:671.013333pt;}
.x12{left:674.373333pt;}
.x13{left:699.333333pt;}
}




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