
    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_b90942c37e8c8b867bc0ff48.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_34edaecf5bc2deade079110f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b0ec4be9b6592868280a7f0d.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_979c69d0357a5539d5a69f0d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4cd3041b7aeee0305ed781ac.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dfebc97f1c78579b9dbc0867.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_96109553b74785ad347be99a.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_eae1eae0543a280ba4e1ce6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.970703;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_f9211ddc67e93417c14ee2d6.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:-75.600000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.978000px;}
.ls22{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.259800px;}
.ls26{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.052560px;}
.lsf{letter-spacing:-0.000003px;}
.lse{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.149760px;}
.ls1f{letter-spacing:0.152640px;}
.ls4{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls23{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.540000px;}
.ls1e{letter-spacing:0.720000px;}
.ls6{letter-spacing:1.026720px;}
.ls19{letter-spacing:2.160000px;}
.ls1d{letter-spacing:3.600000px;}
.lsc{letter-spacing:5.189760px;}
.ls24{letter-spacing:7.380000px;}
.ls7{letter-spacing:8.100000px;}
.ls20{letter-spacing:8.640000px;}
.ls1c{letter-spacing:11.520000px;}
.ls8{letter-spacing:13.140000px;}
.ls21{letter-spacing:15.120000px;}
.ls18{letter-spacing:15.840000px;}
.lsa{letter-spacing:18.900000px;}
.ls16{letter-spacing:20.880000px;}
.ls9{letter-spacing:26.820000px;}
.ls1b{letter-spacing:28.080000px;}
.lsd{letter-spacing:54.149760px;}
.ls1a{letter-spacing:84.240000px;}
.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;}
}
.wsc{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.639997px;}
.ws5{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.962000px;}
.wsa{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.113200px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._1d{margin-left:-4.570560px;}
._9{margin-left:-3.299760px;}
._7{margin-left:-2.198160px;}
._1{margin-left:-1.088640px;}
._0{width:1.020000px;}
._4{width:2.163600px;}
._c{width:3.886320px;}
._b{width:5.497920px;}
._8{width:6.910320px;}
._3{width:8.426160px;}
._5{width:9.740880px;}
._13{width:11.246640px;}
._6{width:12.967920px;}
._14{width:14.204160px;}
._22{width:15.321120px;}
._25{width:16.403040px;}
._a{width:17.817360px;}
._11{width:18.978240px;}
._e{width:20.130960px;}
._d{width:21.453840px;}
._21{width:22.616640px;}
._17{width:24.478320px;}
._10{width:25.520400px;}
._f{width:26.892000px;}
._1e{width:28.087200px;}
._1a{width:29.278080px;}
._24{width:32.271120px;}
._15{width:33.782400px;}
._16{width:35.479440px;}
._20{width:36.523440px;}
._1f{width:37.570320px;}
._23{width:40.671360px;}
._18{width:43.320960px;}
._19{width:44.951760px;}
._12{width:52.414080px;}
._2{width:53.603040px;}
._28{width:70.581360px;}
._27{width:71.652240px;}
._1c{width:83.596800px;}
._1b{width:85.130640px;}
._29{width:143.483760px;}
._26{width:149.156880px;}
.fc6{color:rgb(238,0,0);}
.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);}
.fs9{font-size:5.760000px;}
.fs5{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y4b{bottom:-114.129000px;}
.y4a{bottom:-109.629000px;}
.y49{bottom:-94.149000px;}
.y48{bottom:-78.489000px;}
.y47{bottom:-63.009000px;}
.y46{bottom:-47.529000px;}
.y45{bottom:-32.049000px;}
.y44{bottom:-16.569000px;}
.y43{bottom:-0.915000px;}
.y0{bottom:0.000000px;}
.y14{bottom:2.880000px;}
.y7{bottom:5.751000px;}
.y4e{bottom:6.291000px;}
.y8{bottom:7.731000px;}
.y4f{bottom:8.631000px;}
.y4{bottom:13.140000px;}
.y27{bottom:13.500000px;}
.y42{bottom:14.565000px;}
.y2{bottom:15.300000px;}
.y50{bottom:24.156000px;}
.y13{bottom:25.380000px;}
.y9{bottom:25.776000px;}
.y41{bottom:30.045000px;}
.y26{bottom:30.780000px;}
.y37{bottom:31.320000px;}
.y4d{bottom:36.765000px;}
.y6{bottom:41.265000px;}
.y12{bottom:42.480000px;}
.y40{bottom:45.525000px;}
.y25{bottom:48.060000px;}
.y36{bottom:48.600000px;}
.ye{bottom:49.320000px;}
.y11{bottom:53.280000px;}
.y3f{bottom:61.185000px;}
.y24{bottom:65.340000px;}
.y35{bottom:65.700000px;}
.y10{bottom:66.960000px;}
.yd{bottom:68.760000px;}
.y3e{bottom:76.665000px;}
.y23{bottom:82.440000px;}
.y34{bottom:82.980000px;}
.yc{bottom:89.460000px;}
.y3d{bottom:92.145000px;}
.y22{bottom:99.720000px;}
.y33{bottom:100.260000px;}
.y3c{bottom:107.625000px;}
.y87{bottom:113.076000px;}
.y110{bottom:113.256000px;}
.ydc{bottom:115.236000px;}
.y21{bottom:117.000000px;}
.ybe{bottom:117.036000px;}
.y32{bottom:117.540000px;}
.y3b{bottom:123.330000px;}
.y14a{bottom:125.316000px;}
.y10f{bottom:130.536000px;}
.y86{bottom:132.156000px;}
.ydb{bottom:134.136000px;}
.y20{bottom:134.280000px;}
.y31{bottom:134.820000px;}
.ybd{bottom:135.936000px;}
.y3a{bottom:139.350000px;}
.y149{bottom:142.596000px;}
.y10e{bottom:147.636000px;}
.y85{bottom:151.410000px;}
.y1f{bottom:151.560000px;}
.y30{bottom:152.100000px;}
.yda{bottom:153.210000px;}
.ybc{bottom:154.830000px;}
.y39{bottom:156.450000px;}
.y148{bottom:159.870000px;}
.y38{bottom:163.665000px;}
.y10d{bottom:164.910000px;}
.y1e{bottom:168.660000px;}
.y2f{bottom:169.200000px;}
.y84{bottom:170.490000px;}
.yd9{bottom:172.110000px;}
.ybb{bottom:173.910000px;}
.y147{bottom:176.970000px;}
.y10c{bottom:182.190000px;}
.y1d{bottom:185.940000px;}
.y2e{bottom:186.480000px;}
.y83{bottom:189.390000px;}
.yd8{bottom:191.190000px;}
.yba{bottom:192.810000px;}
.y146{bottom:194.250000px;}
.y10b{bottom:199.470000px;}
.y1c{bottom:203.220000px;}
.y2d{bottom:203.760000px;}
.y82{bottom:208.290000px;}
.yd7{bottom:210.090000px;}
.y145{bottom:211.530000px;}
.yb9{bottom:211.890000px;}
.y10a{bottom:216.750000px;}
.y1b{bottom:220.500000px;}
.y2c{bottom:221.040000px;}
.y81{bottom:227.370000px;}
.y144{bottom:228.810000px;}
.yd6{bottom:228.990000px;}
.ye3{bottom:229.170000px;}
.yb8{bottom:230.790000px;}
.y109{bottom:234.030000px;}
.y1a{bottom:237.825000px;}
.y2b{bottom:238.350000px;}
.y143{bottom:246.090000px;}
.y80{bottom:246.270000px;}
.yd5{bottom:248.070000px;}
.yb7{bottom:249.690000px;}
.y108{bottom:251.130000px;}
.y19{bottom:255.105000px;}
.y2a{bottom:255.630000px;}
.y142{bottom:263.190000px;}
.y7f{bottom:265.350000px;}
.yd4{bottom:266.970000px;}
.y107{bottom:268.410000px;}
.yb6{bottom:268.770000px;}
.y18{bottom:272.205000px;}
.y29{bottom:272.370000px;}
.y141{bottom:280.470000px;}
.y7e{bottom:284.295000px;}
.y106{bottom:285.735000px;}
.yd3{bottom:286.095000px;}
.yb5{bottom:287.715000px;}
.y17{bottom:289.485000px;}
.y140{bottom:297.795000px;}
.y105{bottom:303.015000px;}
.y7d{bottom:303.195000px;}
.yd2{bottom:304.995000px;}
.y16{bottom:306.405000px;}
.yb4{bottom:306.795000px;}
.y13f{bottom:315.075000px;}
.y104{bottom:320.295000px;}
.y7c{bottom:322.275000px;}
.yd1{bottom:323.535000px;}
.yb3{bottom:325.695000px;}
.y13e{bottom:332.355000px;}
.y28{bottom:333.615000px;}
.y103{bottom:337.575000px;}
.y7b{bottom:341.175000px;}
.yd0{bottom:342.975000px;}
.yb2{bottom:344.595000px;}
.y13d{bottom:349.635000px;}
.y102{bottom:354.675000px;}
.y7a{bottom:360.255000px;}
.ycf{bottom:361.875000px;}
.yb1{bottom:363.675000px;}
.y13c{bottom:366.735000px;}
.y101{bottom:371.955000px;}
.y79{bottom:379.155000px;}
.yce{bottom:380.955000px;}
.yb0{bottom:382.575000px;}
.y13b{bottom:384.015000px;}
.y100{bottom:389.235000px;}
.y78{bottom:398.235000px;}
.ycd{bottom:399.855000px;}
.y13a{bottom:401.295000px;}
.yaf{bottom:401.655000px;}
.yff{bottom:406.515000px;}
.y77{bottom:417.135000px;}
.y139{bottom:418.575000px;}
.ycc{bottom:418.935000px;}
.yae{bottom:420.555000px;}
.yfe{bottom:423.795000px;}
.y138{bottom:435.855000px;}
.y76{bottom:436.035000px;}
.ycb{bottom:437.835000px;}
.yad{bottom:439.455000px;}
.yfd{bottom:440.895000px;}
.y137{bottom:453.135000px;}
.y75{bottom:455.115000px;}
.yca{bottom:456.735000px;}
.yfc{bottom:458.175000px;}
.yac{bottom:458.535000px;}
.y136{bottom:470.235000px;}
.y74{bottom:474.015000px;}
.yfb{bottom:475.455000px;}
.yc9{bottom:475.815000px;}
.yab{bottom:477.435000px;}
.y135{bottom:487.515000px;}
.yfa{bottom:492.735000px;}
.y73{bottom:493.095000px;}
.yc8{bottom:494.715000px;}
.yaa{bottom:496.155000px;}
.ydf{bottom:496.515000px;}
.y134{bottom:504.795000px;}
.yf9{bottom:510.015000px;}
.y72{bottom:511.995000px;}
.yc7{bottom:513.795000px;}
.ya9{bottom:515.055000px;}
.yde{bottom:515.415000px;}
.y133{bottom:522.075000px;}
.yf8{bottom:527.295000px;}
.y71{bottom:530.895000px;}
.yc6{bottom:532.695000px;}
.ya8{bottom:534.495000px;}
.y132{bottom:539.355000px;}
.yf7{bottom:544.395000px;}
.y70{bottom:549.975000px;}
.yc5{bottom:551.595000px;}
.ya7{bottom:553.395000px;}
.y131{bottom:556.635000px;}
.yf6{bottom:561.675000px;}
.y6f{bottom:568.905000px;}
.yc4{bottom:570.705000px;}
.ya6{bottom:572.325000px;}
.y130{bottom:573.765000px;}
.yf5{bottom:578.985000px;}
.y6e{bottom:587.985000px;}
.yc3{bottom:589.245000px;}
.ye2{bottom:591.045000px;}
.ya5{bottom:591.405000px;}
.yf4{bottom:596.265000px;}
.y6d{bottom:606.885000px;}
.y12f{bottom:608.325000px;}
.yc2{bottom:608.685000px;}
.ya4{bottom:610.305000px;}
.yf3{bottom:613.545000px;}
.y15{bottom:619.845000px;}
.y12e{bottom:625.605000px;}
.y6c{bottom:625.785000px;}
.yc1{bottom:629.025000px;}
.ya3{bottom:629.385000px;}
.yf2{bottom:630.825000px;}
.y12d{bottom:642.885000px;}
.y6b{bottom:644.865000px;}
.yf1{bottom:647.925000px;}
.ya2{bottom:648.285000px;}
.y12c{bottom:659.985000px;}
.y6a{bottom:663.405000px;}
.yf0{bottom:665.205000px;}
.ya1{bottom:667.185000px;}
.y12b{bottom:677.265000px;}
.yef{bottom:682.485000px;}
.y69{bottom:682.845000px;}
.ya0{bottom:686.265000px;}
.y12a{bottom:694.545000px;}
.yee{bottom:699.765000px;}
.y68{bottom:703.185000px;}
.y9f{bottom:705.165000px;}
.y129{bottom:711.825000px;}
.yed{bottom:717.045000px;}
.y67{bottom:722.445000px;}
.y9e{bottom:724.245000px;}
.y128{bottom:729.105000px;}
.yec{bottom:734.325000px;}
.y66{bottom:741.345000px;}
.y9d{bottom:743.145000px;}
.y127{bottom:746.385000px;}
.yeb{bottom:751.425000px;}
.y65{bottom:760.425000px;}
.y9c{bottom:762.045000px;}
.y126{bottom:763.485000px;}
.yea{bottom:768.705000px;}
.y64{bottom:779.325000px;}
.y9b{bottom:780.765000px;}
.yc0{bottom:781.125000px;}
.ye9{bottom:785.985000px;}
.y125{bottom:798.045000px;}
.y63{bottom:798.405000px;}
.ydd{bottom:799.665000px;}
.y9a{bottom:800.025000px;}
.ye8{bottom:803.265000px;}
.y124{bottom:815.325000px;}
.y62{bottom:817.305000px;}
.y99{bottom:819.105000px;}
.ye7{bottom:820.905000px;}
.y123{bottom:832.605000px;}
.y61{bottom:836.205000px;}
.y98{bottom:838.005000px;}
.ye6{bottom:841.425000px;}
.y122{bottom:849.930000px;}
.y60{bottom:855.330000px;}
.y97{bottom:856.950000px;}
.ye5{bottom:860.190000px;}
.y121{bottom:867.030000px;}
.y5f{bottom:874.230000px;}
.ye1{bottom:875.670000px;}
.y96{bottom:876.030000px;}
.ye4{bottom:877.110000px;}
.y120{bottom:884.310000px;}
.y5e{bottom:893.310000px;}
.ye0{bottom:894.570000px;}
.y95{bottom:894.930000px;}
.y11f{bottom:901.590000px;}
.y5d{bottom:912.210000px;}
.y94{bottom:914.010000px;}
.y11e{bottom:918.870000px;}
.y5c{bottom:931.290000px;}
.y93{bottom:932.910000px;}
.y11d{bottom:936.150000px;}
.yf{bottom:940.110000px;}
.y5b{bottom:950.190000px;}
.y92{bottom:951.990000px;}
.y11c{bottom:953.430000px;}
.y5a{bottom:969.090000px;}
.y11b{bottom:970.530000px;}
.y91{bottom:970.890000px;}
.y11a{bottom:987.810000px;}
.y59{bottom:988.170000px;}
.y90{bottom:989.790000px;}
.y119{bottom:1005.090000px;}
.y58{bottom:1007.070000px;}
.y8f{bottom:1008.870000px;}
.y118{bottom:1022.370000px;}
.yb{bottom:1024.530000px;}
.y57{bottom:1026.150000px;}
.y8e{bottom:1027.770000px;}
.y117{bottom:1039.650000px;}
.y56{bottom:1045.050000px;}
.y8d{bottom:1046.850000px;}
.y116{bottom:1056.750000px;}
.y55{bottom:1063.950000px;}
.y8c{bottom:1065.750000px;}
.y115{bottom:1074.030000px;}
.y54{bottom:1083.030000px;}
.y8b{bottom:1084.650000px;}
.y114{bottom:1091.310000px;}
.y53{bottom:1101.930000px;}
.y8a{bottom:1103.730000px;}
.y113{bottom:1108.590000px;}
.y52{bottom:1121.010000px;}
.y89{bottom:1122.630000px;}
.y112{bottom:1125.870000px;}
.ya{bottom:1134.720000px;}
.y51{bottom:1140.120000px;}
.y88{bottom:1141.380000px;}
.ybf{bottom:1141.740000px;}
.y111{bottom:1143.180000px;}
.y5{bottom:1144.440000px;}
.y3{bottom:1155.240000px;}
.y1{bottom:1188.360000px;}
.y4c{bottom:1196.280000px;}
.h1b{height:5.805000px;}
.h7{height:21.231000px;}
.h1c{height:22.131000px;}
.hb{height:29.678906px;}
.h2{height:32.040000px;}
.h4{height:32.400000px;}
.h5{height:34.020000px;}
.h11{height:38.158594px;}
.hf{height:40.985156px;}
.h10{height:45.004219px;}
.h6{height:47.344922px;}
.h19{height:52.971680px;}
.h1a{height:52.998047px;}
.h14{height:53.573906px;}
.h3{height:54.000000px;}
.h1d{height:55.503491px;}
.h8{height:58.621992px;}
.h9{height:58.651172px;}
.h1e{height:59.383125px;}
.h13{height:60.226875px;}
.h20{height:61.734375px;}
.h1f{height:64.978594px;}
.h15{height:65.010937px;}
.ha{height:65.884219px;}
.h17{height:66.757500px;}
.hd{height:72.562500px;}
.he{height:84.420000px;}
.hc{height:106.050000px;}
.h18{height:169.935000px;}
.h16{height:286.230000px;}
.h12{height:320.250000px;}
.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;}
.xd{left:18.720000px;}
.x7{left:89.094000px;}
.x5{left:95.805000px;}
.x1{left:106.425000px;}
.xb{left:141.834000px;}
.x9{left:152.814000px;}
.x10{left:159.330000px;}
.xc{left:161.814000px;}
.x8{left:344.019000px;}
.xa{left:345.639000px;}
.x4{left:446.475000px;}
.x6{left:754.890000px;}
.xe{left:758.670000px;}
.xf{left:786.750000px;}
@media print{
.v3{vertical-align:-67.200000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.869333pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.230933pt;}
.ls26{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.046720pt;}
.lsf{letter-spacing:-0.000003pt;}
.lse{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133120pt;}
.ls1f{letter-spacing:0.135680pt;}
.ls4{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls23{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.912640pt;}
.ls19{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:3.200000pt;}
.lsc{letter-spacing:4.613120pt;}
.ls24{letter-spacing:6.560000pt;}
.ls7{letter-spacing:7.200000pt;}
.ls20{letter-spacing:7.680000pt;}
.ls1c{letter-spacing:10.240000pt;}
.ls8{letter-spacing:11.680000pt;}
.ls21{letter-spacing:13.440000pt;}
.ls18{letter-spacing:14.080000pt;}
.lsa{letter-spacing:16.800000pt;}
.ls16{letter-spacing:18.560000pt;}
.ls9{letter-spacing:23.840000pt;}
.ls1b{letter-spacing:24.960000pt;}
.lsd{letter-spacing:48.133120pt;}
.ls1a{letter-spacing:74.880000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.679997pt;}
.ws5{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws3{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.410667pt;}
.wsa{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.878400pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._1d{margin-left:-4.062720pt;}
._9{margin-left:-2.933120pt;}
._7{margin-left:-1.953920pt;}
._1{margin-left:-0.967680pt;}
._0{width:0.906667pt;}
._4{width:1.923200pt;}
._c{width:3.454507pt;}
._b{width:4.887040pt;}
._8{width:6.142507pt;}
._3{width:7.489920pt;}
._5{width:8.658560pt;}
._13{width:9.997013pt;}
._6{width:11.527040pt;}
._14{width:12.625920pt;}
._22{width:13.618773pt;}
._25{width:14.580480pt;}
._a{width:15.837653pt;}
._11{width:16.869547pt;}
._e{width:17.894187pt;}
._d{width:19.070080pt;}
._21{width:20.103680pt;}
._17{width:21.758507pt;}
._10{width:22.684800pt;}
._f{width:23.904000pt;}
._1e{width:24.966400pt;}
._1a{width:26.024960pt;}
._24{width:28.685440pt;}
._15{width:30.028800pt;}
._16{width:31.537280pt;}
._20{width:32.465280pt;}
._1f{width:33.395840pt;}
._23{width:36.152320pt;}
._18{width:38.507520pt;}
._19{width:39.957120pt;}
._12{width:46.590293pt;}
._2{width:47.647147pt;}
._28{width:62.738987pt;}
._27{width:63.690880pt;}
._1c{width:74.308267pt;}
._1b{width:75.671680pt;}
._29{width:127.541120pt;}
._26{width:132.583893pt;}
.fs9{font-size:5.120000pt;}
.fs5{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y4b{bottom:-101.448000pt;}
.y4a{bottom:-97.448000pt;}
.y49{bottom:-83.688000pt;}
.y48{bottom:-69.768000pt;}
.y47{bottom:-56.008000pt;}
.y46{bottom:-42.248000pt;}
.y45{bottom:-28.488000pt;}
.y44{bottom:-14.728000pt;}
.y43{bottom:-0.813333pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:2.560000pt;}
.y7{bottom:5.112000pt;}
.y4e{bottom:5.592000pt;}
.y8{bottom:6.872000pt;}
.y4f{bottom:7.672000pt;}
.y4{bottom:11.680000pt;}
.y27{bottom:12.000000pt;}
.y42{bottom:12.946667pt;}
.y2{bottom:13.600000pt;}
.y50{bottom:21.472000pt;}
.y13{bottom:22.560000pt;}
.y9{bottom:22.912000pt;}
.y41{bottom:26.706667pt;}
.y26{bottom:27.360000pt;}
.y37{bottom:27.840000pt;}
.y4d{bottom:32.680000pt;}
.y6{bottom:36.680000pt;}
.y12{bottom:37.760000pt;}
.y40{bottom:40.466667pt;}
.y25{bottom:42.720000pt;}
.y36{bottom:43.200000pt;}
.ye{bottom:43.840000pt;}
.y11{bottom:47.360000pt;}
.y3f{bottom:54.386667pt;}
.y24{bottom:58.080000pt;}
.y35{bottom:58.400000pt;}
.y10{bottom:59.520000pt;}
.yd{bottom:61.120000pt;}
.y3e{bottom:68.146667pt;}
.y23{bottom:73.280000pt;}
.y34{bottom:73.760000pt;}
.yc{bottom:79.520000pt;}
.y3d{bottom:81.906667pt;}
.y22{bottom:88.640000pt;}
.y33{bottom:89.120000pt;}
.y3c{bottom:95.666667pt;}
.y87{bottom:100.512000pt;}
.y110{bottom:100.672000pt;}
.ydc{bottom:102.432000pt;}
.y21{bottom:104.000000pt;}
.ybe{bottom:104.032000pt;}
.y32{bottom:104.480000pt;}
.y3b{bottom:109.626667pt;}
.y14a{bottom:111.392000pt;}
.y10f{bottom:116.032000pt;}
.y86{bottom:117.472000pt;}
.ydb{bottom:119.232000pt;}
.y20{bottom:119.360000pt;}
.y31{bottom:119.840000pt;}
.ybd{bottom:120.832000pt;}
.y3a{bottom:123.866667pt;}
.y149{bottom:126.752000pt;}
.y10e{bottom:131.232000pt;}
.y85{bottom:134.586667pt;}
.y1f{bottom:134.720000pt;}
.y30{bottom:135.200000pt;}
.yda{bottom:136.186667pt;}
.ybc{bottom:137.626667pt;}
.y39{bottom:139.066667pt;}
.y148{bottom:142.106667pt;}
.y38{bottom:145.480000pt;}
.y10d{bottom:146.586667pt;}
.y1e{bottom:149.920000pt;}
.y2f{bottom:150.400000pt;}
.y84{bottom:151.546667pt;}
.yd9{bottom:152.986667pt;}
.ybb{bottom:154.586667pt;}
.y147{bottom:157.306667pt;}
.y10c{bottom:161.946667pt;}
.y1d{bottom:165.280000pt;}
.y2e{bottom:165.760000pt;}
.y83{bottom:168.346667pt;}
.yd8{bottom:169.946667pt;}
.yba{bottom:171.386667pt;}
.y146{bottom:172.666667pt;}
.y10b{bottom:177.306667pt;}
.y1c{bottom:180.640000pt;}
.y2d{bottom:181.120000pt;}
.y82{bottom:185.146667pt;}
.yd7{bottom:186.746667pt;}
.y145{bottom:188.026667pt;}
.yb9{bottom:188.346667pt;}
.y10a{bottom:192.666667pt;}
.y1b{bottom:196.000000pt;}
.y2c{bottom:196.480000pt;}
.y81{bottom:202.106667pt;}
.y144{bottom:203.386667pt;}
.yd6{bottom:203.546667pt;}
.ye3{bottom:203.706667pt;}
.yb8{bottom:205.146667pt;}
.y109{bottom:208.026667pt;}
.y1a{bottom:211.400000pt;}
.y2b{bottom:211.866667pt;}
.y143{bottom:218.746667pt;}
.y80{bottom:218.906667pt;}
.yd5{bottom:220.506667pt;}
.yb7{bottom:221.946667pt;}
.y108{bottom:223.226667pt;}
.y19{bottom:226.760000pt;}
.y2a{bottom:227.226667pt;}
.y142{bottom:233.946667pt;}
.y7f{bottom:235.866667pt;}
.yd4{bottom:237.306667pt;}
.y107{bottom:238.586667pt;}
.yb6{bottom:238.906667pt;}
.y18{bottom:241.960000pt;}
.y29{bottom:242.106667pt;}
.y141{bottom:249.306667pt;}
.y7e{bottom:252.706667pt;}
.y106{bottom:253.986667pt;}
.yd3{bottom:254.306667pt;}
.yb5{bottom:255.746667pt;}
.y17{bottom:257.320000pt;}
.y140{bottom:264.706667pt;}
.y105{bottom:269.346667pt;}
.y7d{bottom:269.506667pt;}
.yd2{bottom:271.106667pt;}
.y16{bottom:272.360000pt;}
.yb4{bottom:272.706667pt;}
.y13f{bottom:280.066667pt;}
.y104{bottom:284.706667pt;}
.y7c{bottom:286.466667pt;}
.yd1{bottom:287.586667pt;}
.yb3{bottom:289.506667pt;}
.y13e{bottom:295.426667pt;}
.y28{bottom:296.546667pt;}
.y103{bottom:300.066667pt;}
.y7b{bottom:303.266667pt;}
.yd0{bottom:304.866667pt;}
.yb2{bottom:306.306667pt;}
.y13d{bottom:310.786667pt;}
.y102{bottom:315.266667pt;}
.y7a{bottom:320.226667pt;}
.ycf{bottom:321.666667pt;}
.yb1{bottom:323.266667pt;}
.y13c{bottom:325.986667pt;}
.y101{bottom:330.626667pt;}
.y79{bottom:337.026667pt;}
.yce{bottom:338.626667pt;}
.yb0{bottom:340.066667pt;}
.y13b{bottom:341.346667pt;}
.y100{bottom:345.986667pt;}
.y78{bottom:353.986667pt;}
.ycd{bottom:355.426667pt;}
.y13a{bottom:356.706667pt;}
.yaf{bottom:357.026667pt;}
.yff{bottom:361.346667pt;}
.y77{bottom:370.786667pt;}
.y139{bottom:372.066667pt;}
.ycc{bottom:372.386667pt;}
.yae{bottom:373.826667pt;}
.yfe{bottom:376.706667pt;}
.y138{bottom:387.426667pt;}
.y76{bottom:387.586667pt;}
.ycb{bottom:389.186667pt;}
.yad{bottom:390.626667pt;}
.yfd{bottom:391.906667pt;}
.y137{bottom:402.786667pt;}
.y75{bottom:404.546667pt;}
.yca{bottom:405.986667pt;}
.yfc{bottom:407.266667pt;}
.yac{bottom:407.586667pt;}
.y136{bottom:417.986667pt;}
.y74{bottom:421.346667pt;}
.yfb{bottom:422.626667pt;}
.yc9{bottom:422.946667pt;}
.yab{bottom:424.386667pt;}
.y135{bottom:433.346667pt;}
.yfa{bottom:437.986667pt;}
.y73{bottom:438.306667pt;}
.yc8{bottom:439.746667pt;}
.yaa{bottom:441.026667pt;}
.ydf{bottom:441.346667pt;}
.y134{bottom:448.706667pt;}
.yf9{bottom:453.346667pt;}
.y72{bottom:455.106667pt;}
.yc7{bottom:456.706667pt;}
.ya9{bottom:457.826667pt;}
.yde{bottom:458.146667pt;}
.y133{bottom:464.066667pt;}
.yf8{bottom:468.706667pt;}
.y71{bottom:471.906667pt;}
.yc6{bottom:473.506667pt;}
.ya8{bottom:475.106667pt;}
.y132{bottom:479.426667pt;}
.yf7{bottom:483.906667pt;}
.y70{bottom:488.866667pt;}
.yc5{bottom:490.306667pt;}
.ya7{bottom:491.906667pt;}
.y131{bottom:494.786667pt;}
.yf6{bottom:499.266667pt;}
.y6f{bottom:505.693333pt;}
.yc4{bottom:507.293333pt;}
.ya6{bottom:508.733333pt;}
.y130{bottom:510.013333pt;}
.yf5{bottom:514.653333pt;}
.y6e{bottom:522.653333pt;}
.yc3{bottom:523.773333pt;}
.ye2{bottom:525.373333pt;}
.ya5{bottom:525.693333pt;}
.yf4{bottom:530.013333pt;}
.y6d{bottom:539.453333pt;}
.y12f{bottom:540.733333pt;}
.yc2{bottom:541.053333pt;}
.ya4{bottom:542.493333pt;}
.yf3{bottom:545.373333pt;}
.y15{bottom:550.973333pt;}
.y12e{bottom:556.093333pt;}
.y6c{bottom:556.253333pt;}
.yc1{bottom:559.133333pt;}
.ya3{bottom:559.453333pt;}
.yf2{bottom:560.733333pt;}
.y12d{bottom:571.453333pt;}
.y6b{bottom:573.213333pt;}
.yf1{bottom:575.933333pt;}
.ya2{bottom:576.253333pt;}
.y12c{bottom:586.653333pt;}
.y6a{bottom:589.693333pt;}
.yf0{bottom:591.293333pt;}
.ya1{bottom:593.053333pt;}
.y12b{bottom:602.013333pt;}
.yef{bottom:606.653333pt;}
.y69{bottom:606.973333pt;}
.ya0{bottom:610.013333pt;}
.y12a{bottom:617.373333pt;}
.yee{bottom:622.013333pt;}
.y68{bottom:625.053333pt;}
.y9f{bottom:626.813333pt;}
.y129{bottom:632.733333pt;}
.yed{bottom:637.373333pt;}
.y67{bottom:642.173333pt;}
.y9e{bottom:643.773333pt;}
.y128{bottom:648.093333pt;}
.yec{bottom:652.733333pt;}
.y66{bottom:658.973333pt;}
.y9d{bottom:660.573333pt;}
.y127{bottom:663.453333pt;}
.yeb{bottom:667.933333pt;}
.y65{bottom:675.933333pt;}
.y9c{bottom:677.373333pt;}
.y126{bottom:678.653333pt;}
.yea{bottom:683.293333pt;}
.y64{bottom:692.733333pt;}
.y9b{bottom:694.013333pt;}
.yc0{bottom:694.333333pt;}
.ye9{bottom:698.653333pt;}
.y125{bottom:709.373333pt;}
.y63{bottom:709.693333pt;}
.ydd{bottom:710.813333pt;}
.y9a{bottom:711.133333pt;}
.ye8{bottom:714.013333pt;}
.y124{bottom:724.733333pt;}
.y62{bottom:726.493333pt;}
.y99{bottom:728.093333pt;}
.ye7{bottom:729.693333pt;}
.y123{bottom:740.093333pt;}
.y61{bottom:743.293333pt;}
.y98{bottom:744.893333pt;}
.ye6{bottom:747.933333pt;}
.y122{bottom:755.493333pt;}
.y60{bottom:760.293333pt;}
.y97{bottom:761.733333pt;}
.ye5{bottom:764.613333pt;}
.y121{bottom:770.693333pt;}
.y5f{bottom:777.093333pt;}
.ye1{bottom:778.373333pt;}
.y96{bottom:778.693333pt;}
.ye4{bottom:779.653333pt;}
.y120{bottom:786.053333pt;}
.y5e{bottom:794.053333pt;}
.ye0{bottom:795.173333pt;}
.y95{bottom:795.493333pt;}
.y11f{bottom:801.413333pt;}
.y5d{bottom:810.853333pt;}
.y94{bottom:812.453333pt;}
.y11e{bottom:816.773333pt;}
.y5c{bottom:827.813333pt;}
.y93{bottom:829.253333pt;}
.y11d{bottom:832.133333pt;}
.yf{bottom:835.653333pt;}
.y5b{bottom:844.613333pt;}
.y92{bottom:846.213333pt;}
.y11c{bottom:847.493333pt;}
.y5a{bottom:861.413333pt;}
.y11b{bottom:862.693333pt;}
.y91{bottom:863.013333pt;}
.y11a{bottom:878.053333pt;}
.y59{bottom:878.373333pt;}
.y90{bottom:879.813333pt;}
.y119{bottom:893.413333pt;}
.y58{bottom:895.173333pt;}
.y8f{bottom:896.773333pt;}
.y118{bottom:908.773333pt;}
.yb{bottom:910.693333pt;}
.y57{bottom:912.133333pt;}
.y8e{bottom:913.573333pt;}
.y117{bottom:924.133333pt;}
.y56{bottom:928.933333pt;}
.y8d{bottom:930.533333pt;}
.y116{bottom:939.333333pt;}
.y55{bottom:945.733333pt;}
.y8c{bottom:947.333333pt;}
.y115{bottom:954.693333pt;}
.y54{bottom:962.693333pt;}
.y8b{bottom:964.133333pt;}
.y114{bottom:970.053333pt;}
.y53{bottom:979.493333pt;}
.y8a{bottom:981.093333pt;}
.y113{bottom:985.413333pt;}
.y52{bottom:996.453333pt;}
.y89{bottom:997.893333pt;}
.y112{bottom:1000.773333pt;}
.ya{bottom:1008.640000pt;}
.y51{bottom:1013.440000pt;}
.y88{bottom:1014.560000pt;}
.ybf{bottom:1014.880000pt;}
.y111{bottom:1016.160000pt;}
.y5{bottom:1017.280000pt;}
.y3{bottom:1026.880000pt;}
.y1{bottom:1056.320000pt;}
.y4c{bottom:1063.360000pt;}
.h1b{height:5.160000pt;}
.h7{height:18.872000pt;}
.h1c{height:19.672000pt;}
.hb{height:26.381250pt;}
.h2{height:28.480000pt;}
.h4{height:28.800000pt;}
.h5{height:30.240000pt;}
.h11{height:33.918750pt;}
.hf{height:36.431250pt;}
.h10{height:40.003750pt;}
.h6{height:42.084375pt;}
.h19{height:47.085938pt;}
.h1a{height:47.109375pt;}
.h14{height:47.621250pt;}
.h3{height:48.000000pt;}
.h1d{height:49.336436pt;}
.h8{height:52.108438pt;}
.h9{height:52.134375pt;}
.h1e{height:52.785000pt;}
.h13{height:53.535000pt;}
.h20{height:54.875000pt;}
.h1f{height:57.758750pt;}
.h15{height:57.787500pt;}
.ha{height:58.563750pt;}
.h17{height:59.340000pt;}
.hd{height:64.500000pt;}
.he{height:75.040000pt;}
.hc{height:94.266667pt;}
.h18{height:151.053333pt;}
.h16{height:254.426667pt;}
.h12{height:284.666667pt;}
.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;}
.xd{left:16.640000pt;}
.x7{left:79.194667pt;}
.x5{left:85.160000pt;}
.x1{left:94.600000pt;}
.xb{left:126.074667pt;}
.x9{left:135.834667pt;}
.x10{left:141.626667pt;}
.xc{left:143.834667pt;}
.x8{left:305.794667pt;}
.xa{left:307.234667pt;}
.x4{left:396.866667pt;}
.x6{left:671.013333pt;}
.xe{left:674.373333pt;}
.xf{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; }
  