
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cf22cea063e17d668dcbc41f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dd45547fd72c22612ac4818e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_d640f98ebdd6ba2bd968b9a6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_f7471f0bad0abcfcb4ceac33.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_76e0cdb2d330c3b0c7c82c43.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_e4b405ebd5bef70a204edca6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_07c7b33a53c88db7c66178fb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c5cb89e0565d9d9080f974bf.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_370e170fcf405788b09bf17c.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_71496814329c5fec46991e3d.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.m2{transform:matrix(0.288430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288430,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls14{letter-spacing:-2.149467px;}
.lse{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.lsf{letter-spacing:-0.063600px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.107473px;}
.ls5{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.161210px;}
.lsd{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.813600px;}
.ls15{letter-spacing:4.773600px;}
.ls17{letter-spacing:6.213600px;}
.ls19{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls18{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.595377px;}
.wsc{word-spacing:-13.541640px;}
.wsb{word-spacing:-13.434167px;}
.ws6{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.162800px;}
.ws7{word-spacing:-13.039800px;}
.wse{word-spacing:-11.284700px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._10{margin-left:-4.513880px;}
._a{margin-left:-3.334200px;}
._9{margin-left:-2.136600px;}
._0{margin-left:-1.110000px;}
._3{width:1.091363px;}
._2{width:2.934710px;}
._1{width:3.942612px;}
._7{width:5.470800px;}
._6{width:7.515000px;}
._b{width:9.198600px;}
._c{width:11.084797px;}
._d{width:12.173285px;}
._8{width:14.248200px;}
._4{width:15.751200px;}
._5{width:16.834201px;}
._11{width:18.365879px;}
._e{width:22.484880px;}
._f{width:23.719680px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:49.437733px;}
.fs8{font-size:53.736667px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:2.955522px;}
.y9c{bottom:2.955530px;}
.y101{bottom:3.089849px;}
.yff{bottom:3.089852px;}
.y103{bottom:3.089854px;}
.y97{bottom:3.089860px;}
.y95{bottom:3.089863px;}
.yb8{bottom:3.089864px;}
.y99{bottom:3.089865px;}
.y8c{bottom:3.089872px;}
.y105{bottom:3.089873px;}
.y92{bottom:3.089884px;}
.yb1{bottom:3.123446px;}
.yaf{bottom:3.123449px;}
.yb3{bottom:3.123451px;}
.yad{bottom:3.123457px;}
.yb5{bottom:3.123470px;}
.y8f{bottom:18.539163px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y51{bottom:121.440000px;}
.y88{bottom:137.640000px;}
.y10e{bottom:138.180000px;}
.y50{bottom:138.990000px;}
.y29{bottom:142.860000px;}
.y4f{bottom:156.540000px;}
.y11c{bottom:160.050000px;}
.y28{bottom:160.500000px;}
.y142{bottom:169.320000px;}
.y10d{bottom:170.400000px;}
.y87{bottom:173.280000px;}
.y4e{bottom:174.180000px;}
.y27{bottom:178.050000px;}
.y86{bottom:190.830000px;}
.y4d{bottom:191.730000px;}
.y11b{bottom:192.270000px;}
.y26{bottom:195.600000px;}
.y141{bottom:195.870000px;}
.y85{bottom:208.380000px;}
.y4c{bottom:209.370000px;}
.y25{bottom:213.240000px;}
.y140{bottom:213.420000px;}
.y7c{bottom:215.130000px;}
.y84{bottom:226.020000px;}
.y24{bottom:230.790000px;}
.y7b{bottom:232.770000px;}
.y4b{bottom:235.920000px;}
.y13f{bottom:240.060000px;}
.y83{bottom:243.570000px;}
.y23{bottom:248.340000px;}
.y7a{bottom:250.320000px;}
.y13e{bottom:257.610000px;}
.y82{bottom:261.210000px;}
.y22{bottom:265.980000px;}
.y79{bottom:267.960000px;}
.y4a{bottom:271.470000px;}
.y21{bottom:283.530000px;}
.y13d{bottom:284.250000px;}
.y78{bottom:285.510000px;}
.y49{bottom:289.110000px;}
.y81{bottom:296.760000px;}
.y20{bottom:301.170000px;}
.y13c{bottom:301.800000px;}
.y48{bottom:306.660000px;}
.y77{bottom:312.060000px;}
.y1f{bottom:318.720000px;}
.y47{bottom:324.300000px;}
.y13b{bottom:328.350000px;}
.y80{bottom:328.980000px;}
.y1e{bottom:336.270000px;}
.y46{bottom:341.850000px;}
.y13a{bottom:345.990000px;}
.y76{bottom:347.970000px;}
.y1d{bottom:353.910000px;}
.y45{bottom:359.400000px;}
.y117{bottom:365.250000px;}
.y1c{bottom:371.460000px;}
.y139{bottom:372.540000px;}
.y44{bottom:377.040000px;}
.y1b{bottom:389.100000px;}
.y138{bottom:390.090000px;}
.y43{bottom:394.590000px;}
.y75{bottom:396.300000px;}
.y116{bottom:400.890000px;}
.y1a{bottom:406.650000px;}
.y42{bottom:412.230000px;}
.y74{bottom:413.850000px;}
.y137{bottom:416.730000px;}
.y19{bottom:424.200000px;}
.y41{bottom:429.780000px;}
.y115{bottom:433.110000px;}
.y136{bottom:434.280000px;}
.y73{bottom:440.400000px;}
.y40{bottom:447.330000px;}
.y18{bottom:451.110000px;}
.y135{bottom:460.920000px;}
.y8a{bottom:465.717776px;}
.y3f{bottom:474.000000px;}
.y72{bottom:475.980000px;}
.y134{bottom:487.500000px;}
.y71{bottom:494.430000px;}
.y17{bottom:499.740000px;}
.y133{bottom:505.050000px;}
.y3e{bottom:509.550000px;}
.y70{bottom:512.880000px;}
.y3d{bottom:527.100000px;}
.y132{bottom:531.690000px;}
.y16{bottom:536.820000px;}
.y3c{bottom:544.740000px;}
.y131{bottom:549.240000px;}
.y6f{bottom:549.330000px;}
.y15{bottom:554.370000px;}
.y3b{bottom:562.290000px;}
.y14{bottom:571.920000px;}
.y6e{bottom:575.880000px;}
.y3a{bottom:579.930000px;}
.y13{bottom:589.560000px;}
.y39{bottom:597.480000px;}
.y130{bottom:602.430000px;}
.y12{bottom:607.110000px;}
.y10c{bottom:608.010000px;}
.y6d{bottom:611.430000px;}
.y38{bottom:624.030000px;}
.y11{bottom:624.750000px;}
.y12f{bottom:628.980000px;}
.y6c{bottom:629.070000px;}
.y10{bottom:642.300000px;}
.y10b{bottom:643.560000px;}
.y6b{bottom:646.620000px;}
.y11a{bottom:654.720000px;}
.y37{bottom:659.670000px;}
.yf{bottom:659.850000px;}
.y6a{bottom:664.260000px;}
.y12e{bottom:673.170000px;}
.y7f{bottom:674.340000px;}
.y36{bottom:677.220000px;}
.ye{bottom:677.490000px;}
.y10a{bottom:678.750000px;}
.y69{bottom:681.810000px;}
.y119{bottom:690.270000px;}
.y12d{bottom:690.810000px;}
.y35{bottom:694.860000px;}
.yd{bottom:695.040000px;}
.y68{bottom:699.360000px;}
.y7e{bottom:709.980000px;}
.yc{bottom:712.680000px;}
.y67{bottom:717.000000px;}
.y12c{bottom:717.720000px;}
.y34{bottom:721.410000px;}
.y118{bottom:722.490000px;}
.y7d{bottom:728.700000px;}
.y89{bottom:728.715000px;}
.y104{bottom:729.721822px;}
.y102{bottom:729.721848px;}
.y100{bottom:729.721861px;}
.yfe{bottom:729.721874px;}
.yfd{bottom:729.721887px;}
.yb{bottom:739.590000px;}
.y66{bottom:743.550000px;}
.yfc{bottom:747.212648px;}
.yfb{bottom:747.212674px;}
.yfa{bottom:747.212687px;}
.yf9{bottom:747.212700px;}
.yf8{bottom:747.212713px;}
.y33{bottom:753.990000px;}
.yf7{bottom:764.542723px;}
.yf6{bottom:764.542749px;}
.yf5{bottom:764.542762px;}
.yf4{bottom:764.542775px;}
.yf3{bottom:764.542788px;}
.y12b{bottom:765.960000px;}
.y65{bottom:779.190000px;}
.yf2{bottom:782.007139px;}
.yf1{bottom:782.007166px;}
.yf0{bottom:782.007179px;}
.yef{bottom:782.007192px;}
.yee{bottom:782.007205px;}
.ya{bottom:787.830000px;}
.y32{bottom:789.540000px;}
.y12a{bottom:792.870000px;}
.y64{bottom:796.740000px;}
.yed{bottom:799.337214px;}
.yec{bottom:799.337241px;}
.yeb{bottom:799.337254px;}
.yea{bottom:799.337267px;}
.ye9{bottom:799.337280px;}
.y63{bottom:814.290000px;}
.ye8{bottom:816.801631px;}
.ye7{bottom:816.801657px;}
.ye6{bottom:816.801670px;}
.ye5{bottom:816.801684px;}
.ye4{bottom:816.801697px;}
.y31{bottom:821.760000px;}
.y9{bottom:823.380000px;}
.y129{bottom:829.860000px;}
.y62{bottom:831.930000px;}
.ye3{bottom:834.292916px;}
.ye2{bottom:834.292942px;}
.ye1{bottom:834.292955px;}
.ye0{bottom:834.292969px;}
.ydf{bottom:834.292982px;}
.y128{bottom:847.500000px;}
.y61{bottom:849.480000px;}
.yde{bottom:851.626350px;}
.ydd{bottom:851.626376px;}
.ydc{bottom:851.626389px;}
.ydb{bottom:851.626402px;}
.yda{bottom:851.626415px;}
.y8{bottom:859.200000px;}
.y127{bottom:865.050000px;}
.y60{bottom:867.030000px;}
.yd9{bottom:869.090766px;}
.yd8{bottom:869.090792px;}
.yd7{bottom:869.090806px;}
.yd6{bottom:869.090819px;}
.yd5{bottom:869.090832px;}
.yd4{bottom:886.420841px;}
.yd3{bottom:886.420867px;}
.yd2{bottom:886.420881px;}
.yd1{bottom:886.420894px;}
.yd0{bottom:886.420907px;}
.y126{bottom:891.960000px;}
.y5f{bottom:893.670000px;}
.y7{bottom:895.200000px;}
.y114{bottom:902.220000px;}
.ycf{bottom:903.885258px;}
.yce{bottom:903.885284px;}
.ycd{bottom:903.885297px;}
.ycc{bottom:903.885310px;}
.ycb{bottom:903.885324px;}
.y6{bottom:913.200000px;}
.y113{bottom:919.860000px;}
.yca{bottom:923.387190px;}
.yc9{bottom:923.387216px;}
.yc8{bottom:923.387229px;}
.yc7{bottom:923.387242px;}
.yc6{bottom:923.387255px;}
.y5e{bottom:929.220000px;}
.y125{bottom:929.310000px;}
.y112{bottom:937.410000px;}
.yc5{bottom:940.717265px;}
.yc4{bottom:940.717291px;}
.yc3{bottom:940.717304px;}
.yc2{bottom:940.717317px;}
.yc1{bottom:940.717330px;}
.y5d{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.y111{bottom:954.960000px;}
.yc0{bottom:958.181681px;}
.ybf{bottom:958.181708px;}
.ybe{bottom:958.181721px;}
.ybd{bottom:958.181734px;}
.ybc{bottom:958.181747px;}
.y5c{bottom:964.410000px;}
.y110{bottom:972.600000px;}
.ybb{bottom:975.511756px;}
.yba{bottom:975.511783px;}
.yb9{bottom:975.511796px;}
.yb7{bottom:975.511809px;}
.yb6{bottom:975.511822px;}
.y124{bottom:977.550000px;}
.y5b{bottom:981.960000px;}
.y4{bottom:987.630000px;}
.yb4{bottom:992.976173px;}
.yb2{bottom:992.976199px;}
.yb0{bottom:992.976212px;}
.yae{bottom:992.976226px;}
.yac{bottom:992.976239px;}
.y123{bottom:995.190000px;}
.y10f{bottom:999.150000px;}
.y5a{bottom:999.600000px;}
.yab{bottom:1010.339834px;}
.yaa{bottom:1010.339860px;}
.ya9{bottom:1010.339873px;}
.ya8{bottom:1010.339886px;}
.ya7{bottom:1010.339899px;}
.y3{bottom:1012.320000px;}
.y122{bottom:1012.770000px;}
.y59{bottom:1017.180000px;}
.ya6{bottom:1027.804250px;}
.ya5{bottom:1027.804276px;}
.ya4{bottom:1027.804289px;}
.ya3{bottom:1027.804303px;}
.ya2{bottom:1027.804316px;}
.y30{bottom:1029.960000px;}
.y121{bottom:1030.320000px;}
.y58{bottom:1034.820000px;}
.ya1{bottom:1045.268667px;}
.ya0{bottom:1045.268693px;}
.y9f{bottom:1045.268706px;}
.y9d{bottom:1045.268719px;}
.y9b{bottom:1045.268732px;}
.y2f{bottom:1047.510000px;}
.y120{bottom:1047.960000px;}
.y109{bottom:1051.920000px;}
.y57{bottom:1052.370000px;}
.y9a{bottom:1064.613867px;}
.y98{bottom:1064.613893px;}
.y96{bottom:1064.613906px;}
.y94{bottom:1064.613919px;}
.y93{bottom:1064.613932px;}
.y2e{bottom:1065.150000px;}
.y11f{bottom:1065.510000px;}
.y108{bottom:1069.560000px;}
.y56{bottom:1069.920000px;}
.y91{bottom:1082.100674px;}
.y90{bottom:1082.100700px;}
.y8e{bottom:1082.100713px;}
.y8d{bottom:1082.100726px;}
.y8b{bottom:1082.100739px;}
.y11e{bottom:1083.150000px;}
.y107{bottom:1087.110000px;}
.y55{bottom:1087.560000px;}
.y2d{bottom:1091.700000px;}
.y11d{bottom:1100.700000px;}
.y106{bottom:1104.750000px;}
.y54{bottom:1105.110000px;}
.y53{bottom:1122.750000px;}
.y2c{bottom:1127.610000px;}
.y52{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h12{height:15.449305px;}
.h13{height:15.449318px;}
.h17{height:15.476173px;}
.h18{height:15.476186px;}
.h14{height:17.464430px;}
.h16{height:17.464443px;}
.h19{height:17.491298px;}
.h1a{height:17.491311px;}
.h2{height:30.022383px;}
.hf{height:30.898597px;}
.h11{height:30.898609px;}
.h3{height:39.155273px;}
.he{height:49.172199px;}
.ha{height:50.902383px;}
.h6{height:52.311445px;}
.h10{height:52.739600px;}
.h15{height:54.156484px;}
.h7{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.hc{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:72.985430px;}
.hd{height:390.217761px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:107.285836px;}
.w5{width:107.409830px;}
.w4{width:109.455732px;}
.w7{width:214.690500px;}
.w3{width:672.176810px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.989555px;}
.x18{left:42.002978px;}
.x17{left:43.087926px;}
.x14{left:49.752605px;}
.x15{left:64.471730px;}
.x1{left:68.040000px;}
.x2{left:70.200000px;}
.x12{left:72.841327px;}
.x16{left:79.970984px;}
.x13{left:91.639339px;}
.x7{left:95.039987px;}
.xb{left:110.437500px;}
.xd{left:120.821990px;}
.x3{left:211.079987px;}
.x20{left:225.569987px;}
.xe{left:231.672654px;}
.x6{left:234.839987px;}
.xa{left:238.079987px;}
.x1c{left:240.149987px;}
.x1a{left:270.209987px;}
.xf{left:340.317258px;}
.x10{left:448.850783px;}
.x11{left:557.371393px;}
.x5{left:722.309987px;}
.x19{left:727.889987px;}
.x1e{left:740.309987px;}
.x1f{left:750.389987px;}
.x1d{left:753.809987px;}
.x1b{left:759.389987px;}
.x9{left:779.639987px;}
.x8{left:782.789987px;}
.x4{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-1.910637pt;}
.lse{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.lsf{letter-spacing:-0.056533pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.095532pt;}
.ls5{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.143298pt;}
.lsd{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.723200pt;}
.ls15{letter-spacing:4.243200pt;}
.ls17{letter-spacing:5.523200pt;}
.ls19{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsd{word-spacing:-12.084779pt;}
.wsc{word-spacing:-12.037013pt;}
.wsb{word-spacing:-11.941481pt;}
.ws6{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.700267pt;}
.ws7{word-spacing:-11.590933pt;}
.wse{word-spacing:-10.030844pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._10{margin-left:-4.012338pt;}
._a{margin-left:-2.963733pt;}
._9{margin-left:-1.899200pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.970100pt;}
._2{width:2.608631pt;}
._1{width:3.504544pt;}
._7{width:4.862933pt;}
._6{width:6.680000pt;}
._b{width:8.176534pt;}
._c{width:9.853153pt;}
._d{width:10.820698pt;}
._8{width:12.665066pt;}
._4{width:14.001066pt;}
._5{width:14.963734pt;}
._11{width:16.325226pt;}
._e{width:19.986560pt;}
._f{width:21.084160pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:43.944652pt;}
.fs8{font-size:47.765926pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:2.627131pt;}
.y9c{bottom:2.627138pt;}
.y101{bottom:2.746532pt;}
.yff{bottom:2.746535pt;}
.y103{bottom:2.746537pt;}
.y97{bottom:2.746542pt;}
.y95{bottom:2.746544pt;}
.yb8{bottom:2.746545pt;}
.y99{bottom:2.746547pt;}
.y8c{bottom:2.746552pt;}
.y105{bottom:2.746554pt;}
.y92{bottom:2.746564pt;}
.yb1{bottom:2.776396pt;}
.yaf{bottom:2.776399pt;}
.yb3{bottom:2.776401pt;}
.yad{bottom:2.776406pt;}
.yb5{bottom:2.776418pt;}
.y8f{bottom:16.479256pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y51{bottom:107.946667pt;}
.y88{bottom:122.346667pt;}
.y10e{bottom:122.826667pt;}
.y50{bottom:123.546667pt;}
.y29{bottom:126.986667pt;}
.y4f{bottom:139.146667pt;}
.y11c{bottom:142.266667pt;}
.y28{bottom:142.666667pt;}
.y142{bottom:150.506667pt;}
.y10d{bottom:151.466667pt;}
.y87{bottom:154.026667pt;}
.y4e{bottom:154.826667pt;}
.y27{bottom:158.266667pt;}
.y86{bottom:169.626667pt;}
.y4d{bottom:170.426667pt;}
.y11b{bottom:170.906667pt;}
.y26{bottom:173.866667pt;}
.y141{bottom:174.106667pt;}
.y85{bottom:185.226667pt;}
.y4c{bottom:186.106667pt;}
.y25{bottom:189.546667pt;}
.y140{bottom:189.706667pt;}
.y7c{bottom:191.226667pt;}
.y84{bottom:200.906667pt;}
.y24{bottom:205.146667pt;}
.y7b{bottom:206.906667pt;}
.y4b{bottom:209.706667pt;}
.y13f{bottom:213.386667pt;}
.y83{bottom:216.506667pt;}
.y23{bottom:220.746667pt;}
.y7a{bottom:222.506667pt;}
.y13e{bottom:228.986667pt;}
.y82{bottom:232.186667pt;}
.y22{bottom:236.426667pt;}
.y79{bottom:238.186667pt;}
.y4a{bottom:241.306667pt;}
.y21{bottom:252.026667pt;}
.y13d{bottom:252.666667pt;}
.y78{bottom:253.786667pt;}
.y49{bottom:256.986667pt;}
.y81{bottom:263.786667pt;}
.y20{bottom:267.706667pt;}
.y13c{bottom:268.266667pt;}
.y48{bottom:272.586667pt;}
.y77{bottom:277.386667pt;}
.y1f{bottom:283.306667pt;}
.y47{bottom:288.266667pt;}
.y13b{bottom:291.866667pt;}
.y80{bottom:292.426667pt;}
.y1e{bottom:298.906667pt;}
.y46{bottom:303.866667pt;}
.y13a{bottom:307.546667pt;}
.y76{bottom:309.306667pt;}
.y1d{bottom:314.586667pt;}
.y45{bottom:319.466667pt;}
.y117{bottom:324.666667pt;}
.y1c{bottom:330.186667pt;}
.y139{bottom:331.146667pt;}
.y44{bottom:335.146667pt;}
.y1b{bottom:345.866667pt;}
.y138{bottom:346.746667pt;}
.y43{bottom:350.746667pt;}
.y75{bottom:352.266667pt;}
.y116{bottom:356.346667pt;}
.y1a{bottom:361.466667pt;}
.y42{bottom:366.426667pt;}
.y74{bottom:367.866667pt;}
.y137{bottom:370.426667pt;}
.y19{bottom:377.066667pt;}
.y41{bottom:382.026667pt;}
.y115{bottom:384.986667pt;}
.y136{bottom:386.026667pt;}
.y73{bottom:391.466667pt;}
.y40{bottom:397.626667pt;}
.y18{bottom:400.986667pt;}
.y135{bottom:409.706667pt;}
.y8a{bottom:413.971357pt;}
.y3f{bottom:421.333333pt;}
.y72{bottom:423.093333pt;}
.y134{bottom:433.333333pt;}
.y71{bottom:439.493333pt;}
.y17{bottom:444.213333pt;}
.y133{bottom:448.933333pt;}
.y3e{bottom:452.933333pt;}
.y70{bottom:455.893333pt;}
.y3d{bottom:468.533333pt;}
.y132{bottom:472.613333pt;}
.y16{bottom:477.173333pt;}
.y3c{bottom:484.213333pt;}
.y131{bottom:488.213333pt;}
.y6f{bottom:488.293333pt;}
.y15{bottom:492.773333pt;}
.y3b{bottom:499.813333pt;}
.y14{bottom:508.373333pt;}
.y6e{bottom:511.893333pt;}
.y3a{bottom:515.493333pt;}
.y13{bottom:524.053333pt;}
.y39{bottom:531.093333pt;}
.y130{bottom:535.493333pt;}
.y12{bottom:539.653333pt;}
.y10c{bottom:540.453333pt;}
.y6d{bottom:543.493333pt;}
.y38{bottom:554.693333pt;}
.y11{bottom:555.333333pt;}
.y12f{bottom:559.093333pt;}
.y6c{bottom:559.173333pt;}
.y10{bottom:570.933333pt;}
.y10b{bottom:572.053333pt;}
.y6b{bottom:574.773333pt;}
.y11a{bottom:581.973333pt;}
.y37{bottom:586.373333pt;}
.yf{bottom:586.533333pt;}
.y6a{bottom:590.453333pt;}
.y12e{bottom:598.373333pt;}
.y7f{bottom:599.413333pt;}
.y36{bottom:601.973333pt;}
.ye{bottom:602.213333pt;}
.y10a{bottom:603.333333pt;}
.y69{bottom:606.053333pt;}
.y119{bottom:613.573333pt;}
.y12d{bottom:614.053333pt;}
.y35{bottom:617.653333pt;}
.yd{bottom:617.813333pt;}
.y68{bottom:621.653333pt;}
.y7e{bottom:631.093333pt;}
.yc{bottom:633.493333pt;}
.y67{bottom:637.333333pt;}
.y12c{bottom:637.973333pt;}
.y34{bottom:641.253333pt;}
.y118{bottom:642.213333pt;}
.y7d{bottom:647.733333pt;}
.y89{bottom:647.746667pt;}
.y104{bottom:648.641619pt;}
.y102{bottom:648.641643pt;}
.y100{bottom:648.641654pt;}
.yfe{bottom:648.641666pt;}
.yfd{bottom:648.641678pt;}
.yb{bottom:657.413333pt;}
.y66{bottom:660.933333pt;}
.yfc{bottom:664.189020pt;}
.yfb{bottom:664.189044pt;}
.yfa{bottom:664.189055pt;}
.yf9{bottom:664.189067pt;}
.yf8{bottom:664.189079pt;}
.y33{bottom:670.213333pt;}
.yf7{bottom:679.593531pt;}
.yf6{bottom:679.593555pt;}
.yf5{bottom:679.593566pt;}
.yf4{bottom:679.593578pt;}
.yf3{bottom:679.593590pt;}
.y12b{bottom:680.853333pt;}
.y65{bottom:692.613333pt;}
.yf2{bottom:695.117457pt;}
.yf1{bottom:695.117481pt;}
.yf0{bottom:695.117492pt;}
.yef{bottom:695.117504pt;}
.yee{bottom:695.117516pt;}
.ya{bottom:700.293333pt;}
.y32{bottom:701.813333pt;}
.y12a{bottom:704.773333pt;}
.y64{bottom:708.213333pt;}
.yed{bottom:710.521968pt;}
.yec{bottom:710.521992pt;}
.yeb{bottom:710.522003pt;}
.yea{bottom:710.522015pt;}
.ye9{bottom:710.522027pt;}
.y63{bottom:723.813333pt;}
.ye8{bottom:726.045894pt;}
.ye7{bottom:726.045918pt;}
.ye6{bottom:726.045929pt;}
.ye5{bottom:726.045941pt;}
.ye4{bottom:726.045953pt;}
.y31{bottom:730.453333pt;}
.y9{bottom:731.893333pt;}
.y129{bottom:737.653333pt;}
.y62{bottom:739.493333pt;}
.ye3{bottom:741.593703pt;}
.ye2{bottom:741.593726pt;}
.ye1{bottom:741.593738pt;}
.ye0{bottom:741.593750pt;}
.ydf{bottom:741.593762pt;}
.y128{bottom:753.333333pt;}
.y61{bottom:755.093333pt;}
.yde{bottom:757.001200pt;}
.ydd{bottom:757.001223pt;}
.ydc{bottom:757.001235pt;}
.ydb{bottom:757.001246pt;}
.yda{bottom:757.001258pt;}
.y8{bottom:763.733333pt;}
.y127{bottom:768.933333pt;}
.y60{bottom:770.693333pt;}
.yd9{bottom:772.525126pt;}
.yd8{bottom:772.525149pt;}
.yd7{bottom:772.525161pt;}
.yd6{bottom:772.525172pt;}
.yd5{bottom:772.525184pt;}
.yd4{bottom:787.929637pt;}
.yd3{bottom:787.929660pt;}
.yd2{bottom:787.929672pt;}
.yd1{bottom:787.929683pt;}
.yd0{bottom:787.929695pt;}
.y126{bottom:792.853333pt;}
.y5f{bottom:794.373333pt;}
.y7{bottom:795.733333pt;}
.y114{bottom:801.973333pt;}
.ycf{bottom:803.453563pt;}
.yce{bottom:803.453586pt;}
.ycd{bottom:803.453598pt;}
.ycc{bottom:803.453609pt;}
.ycb{bottom:803.453621pt;}
.y6{bottom:811.733333pt;}
.y113{bottom:817.653333pt;}
.yca{bottom:820.788613pt;}
.yc9{bottom:820.788636pt;}
.yc8{bottom:820.788648pt;}
.yc7{bottom:820.788660pt;}
.yc6{bottom:820.788672pt;}
.y5e{bottom:825.973333pt;}
.y125{bottom:826.053333pt;}
.y112{bottom:833.253333pt;}
.yc5{bottom:836.193124pt;}
.yc4{bottom:836.193148pt;}
.yc3{bottom:836.193159pt;}
.yc2{bottom:836.193171pt;}
.yc1{bottom:836.193183pt;}
.y5d{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.y111{bottom:848.853333pt;}
.yc0{bottom:851.717050pt;}
.ybf{bottom:851.717073pt;}
.ybe{bottom:851.717085pt;}
.ybd{bottom:851.717097pt;}
.ybc{bottom:851.717109pt;}
.y5c{bottom:857.253333pt;}
.y110{bottom:864.533333pt;}
.ybb{bottom:867.121561pt;}
.yba{bottom:867.121585pt;}
.yb9{bottom:867.121596pt;}
.yb7{bottom:867.121608pt;}
.yb6{bottom:867.121620pt;}
.y124{bottom:868.933333pt;}
.y5b{bottom:872.853333pt;}
.y4{bottom:877.893333pt;}
.yb4{bottom:882.645487pt;}
.yb2{bottom:882.645510pt;}
.yb0{bottom:882.645522pt;}
.yae{bottom:882.645534pt;}
.yac{bottom:882.645546pt;}
.y123{bottom:884.613333pt;}
.y10f{bottom:888.133333pt;}
.y5a{bottom:888.533333pt;}
.yab{bottom:898.079852pt;}
.yaa{bottom:898.079875pt;}
.ya9{bottom:898.079887pt;}
.ya8{bottom:898.079899pt;}
.ya7{bottom:898.079910pt;}
.y3{bottom:899.840000pt;}
.y122{bottom:900.240000pt;}
.y59{bottom:904.160000pt;}
.ya6{bottom:913.603778pt;}
.ya5{bottom:913.603801pt;}
.ya4{bottom:913.603813pt;}
.ya3{bottom:913.603825pt;}
.ya2{bottom:913.603836pt;}
.y30{bottom:915.520000pt;}
.y121{bottom:915.840000pt;}
.y58{bottom:919.840000pt;}
.ya1{bottom:929.127704pt;}
.ya0{bottom:929.127727pt;}
.y9f{bottom:929.127739pt;}
.y9d{bottom:929.127750pt;}
.y9b{bottom:929.127762pt;}
.y2f{bottom:931.120000pt;}
.y120{bottom:931.520000pt;}
.y109{bottom:935.040000pt;}
.y57{bottom:935.440000pt;}
.y9a{bottom:946.323437pt;}
.y98{bottom:946.323460pt;}
.y96{bottom:946.323472pt;}
.y94{bottom:946.323484pt;}
.y93{bottom:946.323496pt;}
.y2e{bottom:946.800000pt;}
.y11f{bottom:947.120000pt;}
.y108{bottom:950.720000pt;}
.y56{bottom:951.040000pt;}
.y91{bottom:961.867266pt;}
.y90{bottom:961.867289pt;}
.y8e{bottom:961.867300pt;}
.y8d{bottom:961.867312pt;}
.y8b{bottom:961.867324pt;}
.y11e{bottom:962.800000pt;}
.y107{bottom:966.320000pt;}
.y55{bottom:966.720000pt;}
.y2d{bottom:970.400000pt;}
.y11d{bottom:978.400000pt;}
.y106{bottom:982.000000pt;}
.y54{bottom:982.320000pt;}
.y53{bottom:998.000000pt;}
.y2c{bottom:1002.320000pt;}
.y52{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h12{height:13.732715pt;}
.h13{height:13.732727pt;}
.h17{height:13.756598pt;}
.h18{height:13.756610pt;}
.h14{height:15.523938pt;}
.h16{height:15.523949pt;}
.h19{height:15.547821pt;}
.h1a{height:15.547832pt;}
.h2{height:26.686562pt;}
.hf{height:27.465419pt;}
.h11{height:27.465431pt;}
.h3{height:34.804688pt;}
.he{height:43.708621pt;}
.ha{height:45.246562pt;}
.h6{height:46.499062pt;}
.h10{height:46.879644pt;}
.h15{height:48.139097pt;}
.h7{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.hc{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:64.875937pt;}
.hd{height:346.860232pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:95.365188pt;}
.w5{width:95.475405pt;}
.w4{width:97.293984pt;}
.w7{width:190.836000pt;}
.w3{width:597.490498pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.990716pt;}
.x18{left:37.335981pt;}
.x17{left:38.300379pt;}
.x14{left:44.224538pt;}
.x15{left:57.308205pt;}
.x1{left:60.480000pt;}
.x2{left:62.400000pt;}
.x12{left:64.747846pt;}
.x16{left:71.085319pt;}
.x13{left:81.457190pt;}
.x7{left:84.479988pt;}
.xb{left:98.166667pt;}
.xd{left:107.397325pt;}
.x3{left:187.626655pt;}
.x20{left:200.506655pt;}
.xe{left:205.931248pt;}
.x6{left:208.746655pt;}
.xa{left:211.626655pt;}
.x1c{left:213.466655pt;}
.x1a{left:240.186655pt;}
.xf{left:302.504229pt;}
.x10{left:398.978474pt;}
.x11{left:495.441238pt;}
.x5{left:642.053322pt;}
.x19{left:647.013322pt;}
.x1e{left:658.053322pt;}
.x1f{left:667.013322pt;}
.x1d{left:670.053322pt;}
.x1b{left:675.013322pt;}
.x9{left:693.013322pt;}
.x8{left:695.813322pt;}
.x4{left:711.413322pt;}
}




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