
    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_6d714fae1966cdf561269625.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_29cd6e8cd94781d73ceeae83.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_662b0d9ebb5d4a8673660654.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6e083e823101a7f7dde95f50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_b598247879753cb6ad41ada7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_35a3020bbe5ab9bc6811214b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_b7a41ea88d3c9eb6e9eda9f8.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.ls17{letter-spacing:-0.513600px;}
.ls7{letter-spacing:-0.427800px;}
.ls1d{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.270000px;}
.ls1c{letter-spacing:-0.252000px;}
.lsa{letter-spacing:-0.220200px;}
.ls4{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.166800px;}
.lsb{letter-spacing:-0.153600px;}
.ls5{letter-spacing:-0.126000px;}
.ls10{letter-spacing:-0.103800px;}
.ls11{letter-spacing:-0.090000px;}
.ls6{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.013320px;}
.ls3{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.090000px;}
.ls1e{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.139800px;}
.ls13{letter-spacing:0.161400px;}
.ls0{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.306600px;}
.ls12{letter-spacing:0.369600px;}
.lsd{letter-spacing:0.378600px;}
.lse{letter-spacing:0.540000px;}
.ls1{letter-spacing:8.820000px;}
.ls1a{letter-spacing:24.228000px;}
.ls8{letter-spacing:70.406640px;}
.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;}
}
.ws2{word-spacing:-41.040000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-15.210000px;}
.ws16{word-spacing:-15.169800px;}
.ws15{word-spacing:-15.102000px;}
.ws17{word-spacing:-15.083280px;}
.ws14{word-spacing:-15.043320px;}
.ws8{word-spacing:-15.030000px;}
.wsc{word-spacing:-14.876400px;}
.ws9{word-spacing:-14.850000px;}
.wsb{word-spacing:-14.809800px;}
.ws19{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.374000px;}
.ws18{word-spacing:-13.140000px;}
.ws10{word-spacing:-12.348600px;}
.ws11{word-spacing:-12.339600px;}
.wsf{word-spacing:-12.150000px;}
.ws12{word-spacing:-12.131400px;}
.wse{word-spacing:-11.970000px;}
.wsd{word-spacing:-11.866200px;}
.ws13{word-spacing:-11.790000px;}
.ws4{word-spacing:-10.530000px;}
.ws5{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._b{margin-left:-3.969960px;}
._4{margin-left:-2.472000px;}
._1{margin-left:-1.022040px;}
._0{width:1.190640px;}
._5{width:2.268000px;}
._6{width:3.348000px;}
._e{width:4.752720px;}
._d{width:5.828400px;}
._8{width:7.476000px;}
._7{width:8.586000px;}
._c{width:10.340640px;}
._13{width:11.674800px;}
._14{width:13.515480px;}
._a{width:15.020040px;}
._9{width:16.038000px;}
._12{width:17.523000px;}
._2{width:18.576000px;}
._3{width:19.872000px;}
._15{width:28.249200px;}
._16{width:36.149400px;}
._18{width:38.176200px;}
._19{width:39.844200px;}
._10{width:455.856000px;}
._f{width:551.820000px;}
._17{width:659.280000px;}
._11{width:733.260000px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y84{bottom:2.610000px;}
.y83{bottom:2.700000px;}
.y97{bottom:4.680000px;}
.y94{bottom:4.770000px;}
.y86{bottom:9.540000px;}
.y81{bottom:9.930000px;}
.y87{bottom:16.380000px;}
.ya7{bottom:16.470000px;}
.y96{bottom:17.910000px;}
.y93{bottom:18.000000px;}
.yb2{bottom:23.310000px;}
.ya9{bottom:23.400000px;}
.yab{bottom:30.240000px;}
.yb4{bottom:37.170000px;}
.yb3{bottom:44.010000px;}
.yaa{bottom:44.100000px;}
.y3{bottom:73.349908px;}
.ye6{bottom:95.669908px;}
.y107{bottom:97.739908px;}
.y71{bottom:98.369908px;}
.yce{bottom:105.479908px;}
.y56{bottom:109.169908px;}
.y2c{bottom:111.329908px;}
.ye5{bottom:115.469908px;}
.y106{bottom:115.559908px;}
.yc8{bottom:115.739908px;}
.y70{bottom:118.169908px;}
.ycd{bottom:125.369908px;}
.y55{bottom:128.969908px;}
.y2b{bottom:131.219908px;}
.y105{bottom:133.469908px;}
.ye4{bottom:135.359908px;}
.yc7{bottom:135.629908px;}
.y6f{bottom:137.969908px;}
.yb0{bottom:143.009908px;}
.ycc{bottom:145.169908px;}
.y54{bottom:148.859908px;}
.y2a{bottom:151.019908px;}
.ye3{bottom:155.159908px;}
.yc6{bottom:155.429908px;}
.y104{bottom:155.789908px;}
.y6e{bottom:157.859908px;}
.yaf{bottom:162.809908px;}
.ycb{bottom:164.969908px;}
.y53{bottom:168.659908px;}
.y29{bottom:170.909908px;}
.y103{bottom:173.609908px;}
.ye2{bottom:175.049908px;}
.yc5{bottom:175.319908px;}
.y6d{bottom:177.659908px;}
.yae{bottom:182.699908px;}
.yca{bottom:184.859908px;}
.y7e{bottom:186.659908px;}
.y28{bottom:190.709908px;}
.y102{bottom:191.519908px;}
.ye1{bottom:194.849908px;}
.yc4{bottom:195.119908px;}
.y52{bottom:197.549908px;}
.yad{bottom:202.499908px;}
.yc9{bottom:204.659908px;}
.y27{bottom:210.509908px;}
.y101{bottom:213.839908px;}
.ye0{bottom:214.649908px;}
.yc3{bottom:214.919908px;}
.yac{bottom:217.260000px;}
.y51{bottom:217.349908px;}
.y7d{bottom:224.549908px;}
.y6c{bottom:226.349908px;}
.y26{bottom:230.399908px;}
.y100{bottom:231.659908px;}
.ydf{bottom:234.539908px;}
.yc2{bottom:234.809908px;}
.y50{bottom:237.149908px;}
.y7c{bottom:244.349908px;}
.ya8{bottom:245.610000px;}
.y6b{bottom:246.149908px;}
.y25{bottom:250.199908px;}
.yff{bottom:254.069908px;}
.yde{bottom:254.339908px;}
.yc1{bottom:254.609908px;}
.y4f{bottom:257.039908px;}
.y7b{bottom:264.149908px;}
.y6a{bottom:266.039908px;}
.y24{bottom:270.089908px;}
.yfe{bottom:271.889908px;}
.ydd{bottom:274.229908px;}
.yc0{bottom:274.499908px;}
.y4e{bottom:276.839908px;}
.y9a{bottom:282.239908px;}
.y7a{bottom:284.039908px;}
.y69{bottom:285.839908px;}
.y23{bottom:289.889908px;}
.ydc{bottom:294.029908px;}
.yfd{bottom:294.209908px;}
.ybf{bottom:294.299908px;}
.y4d{bottom:296.729908px;}
.y99{bottom:298.169908px;}
.ya6{bottom:301.590000px;}
.y79{bottom:303.839908px;}
.y68{bottom:305.729908px;}
.y22{bottom:309.689908px;}
.yfc{bottom:312.119908px;}
.ydb{bottom:313.829908px;}
.y98{bottom:314.009908px;}
.ybe{bottom:314.099908px;}
.y4c{bottom:316.529908px;}
.y78{bottom:323.729908px;}
.y67{bottom:325.529908px;}
.y21{bottom:329.579908px;}
.ya4{bottom:329.940000px;}
.yda{bottom:333.749908px;}
.ybd{bottom:334.019908px;}
.y95{bottom:334.200000px;}
.yfb{bottom:334.469908px;}
.y4b{bottom:336.359908px;}
.y77{bottom:343.559908px;}
.ya5{bottom:344.550000px;}
.y66{bottom:345.359908px;}
.y20{bottom:349.409908px;}
.yfa{bottom:352.379908px;}
.yd9{bottom:353.549908px;}
.y4a{bottom:356.249908px;}
.y76{bottom:363.359908px;}
.y65{bottom:365.249908px;}
.y1f{bottom:369.299908px;}
.ybc{bottom:370.739908px;}
.ya3{bottom:372.809908px;}
.yd8{bottom:373.439908px;}
.y49{bottom:376.049908px;}
.yf9{bottom:379.739908px;}
.y75{bottom:383.249908px;}
.ybb{bottom:386.579908px;}
.y1e{bottom:389.099908px;}
.yd7{bottom:393.239908px;}
.y64{bottom:394.049908px;}
.y48{bottom:395.939908px;}
.y74{bottom:403.049908px;}
.yba{bottom:406.739908px;}
.ya2{bottom:407.729908px;}
.yf8{bottom:408.539908px;}
.yd6{bottom:413.039908px;}
.y63{bottom:413.939908px;}
.y1d{bottom:417.899908px;}
.y73{bottom:422.939908px;}
.y47{bottom:424.739908px;}
.ya1{bottom:427.529908px;}
.yf7{bottom:428.429908px;}
.yd5{bottom:432.929908px;}
.y62{bottom:433.739908px;}
.y72{bottom:442.739908px;}
.y1c{bottom:446.249908px;}
.yf6{bottom:448.229908px;}
.yd4{bottom:452.729908px;}
.y61{bottom:453.539908px;}
.y92{bottom:458.400000px;}
.y46{bottom:462.539908px;}
.ya0{bottom:464.339908px;}
.yf5{bottom:468.119908px;}
.yd3{bottom:472.619908px;}
.y1b{bottom:473.069908px;}
.y60{bottom:473.429908px;}
.y9f{bottom:480.179908px;}
.y45{bottom:482.429908px;}
.y1a{bottom:490.979908px;}
.yd2{bottom:492.419908px;}
.y5f{bottom:493.229908px;}
.yf4{bottom:496.919908px;}
.y9e{bottom:500.339908px;}
.y44{bottom:502.229908px;}
.y19{bottom:508.799908px;}
.yd1{bottom:512.219908px;}
.y5e{bottom:513.119908px;}
.y43{bottom:522.119908px;}
.y18{bottom:526.619908px;}
.y5d{bottom:532.919908px;}
.yf3{bottom:534.719908px;}
.y42{bottom:541.919908px;}
.y17{bottom:544.529908px;}
.yd0{bottom:549.029908px;}
.y5c{bottom:552.719908px;}
.yf2{bottom:554.609908px;}
.y41{bottom:561.719908px;}
.y16{bottom:562.349908px;}
.ycf{bottom:569.189908px;}
.y5b{bottom:572.609908px;}
.yf1{bottom:574.409908px;}
.y15{bottom:580.169908px;}
.y9d{bottom:581.339908px;}
.y40{bottom:581.609908px;}
.y5a{bottom:592.409908px;}
.yf0{bottom:594.299908px;}
.y14{bottom:598.079908px;}
.yb9{bottom:600.509908px;}
.y3f{bottom:601.409908px;}
.y59{bottom:612.299908px;}
.yef{bottom:614.099908px;}
.y13{bottom:615.899908px;}
.yb8{bottom:616.349908px;}
.y3e{bottom:621.299908px;}
.y58{bottom:632.129908px;}
.y12{bottom:633.749908px;}
.yee{bottom:633.929908px;}
.yb7{bottom:636.539908px;}
.y3d{bottom:641.129908px;}
.y11{bottom:651.659908px;}
.y57{bottom:651.929908px;}
.yed{bottom:653.819908px;}
.y3c{bottom:660.929908px;}
.y117{bottom:666.689908px;}
.y10{bottom:669.479908px;}
.yec{bottom:673.619908px;}
.y3b{bottom:680.819908px;}
.yf{bottom:687.299908px;}
.y116{bottom:687.479908px;}
.yeb{bottom:693.509908px;}
.y3a{bottom:700.619908px;}
.ye{bottom:705.209908px;}
.y91{bottom:707.459908px;}
.y115{bottom:709.889908px;}
.yea{bottom:713.309908px;}
.y39{bottom:720.509908px;}
.yd{bottom:723.029908px;}
.y90{bottom:727.349908px;}
.y114{bottom:727.709908px;}
.ye9{bottom:733.109908px;}
.y38{bottom:740.309908px;}
.y113{bottom:745.529908px;}
.y8f{bottom:747.149908px;}
.y9c{bottom:752.909908px;}
.ye8{bottom:752.999908px;}
.yc{bottom:759.479908px;}
.y37{bottom:760.109908px;}
.y8e{bottom:766.949908px;}
.y112{bottom:767.939908px;}
.y9b{bottom:779.009908px;}
.yb{bottom:779.279908px;}
.y36{bottom:779.999908px;}
.ye7{bottom:781.799908px;}
.y111{bottom:785.759908px;}
.y8d{bottom:786.839908px;}
.yb6{bottom:791.159908px;}
.ya{bottom:799.079908px;}
.y35{bottom:799.799908px;}
.y110{bottom:803.579908px;}
.yb5{bottom:805.920000px;}
.y8c{bottom:806.639908px;}
.y9{bottom:818.969908px;}
.y34{bottom:819.689908px;}
.y10f{bottom:821.489908px;}
.y8b{bottom:826.529908px;}
.yb1{bottom:834.270000px;}
.y8{bottom:838.769908px;}
.y33{bottom:839.489908px;}
.y10e{bottom:843.809908px;}
.y8a{bottom:846.329908px;}
.y32{bottom:859.289908px;}
.y89{bottom:861.090000px;}
.y10d{bottom:861.719908px;}
.y7{bottom:863.879908px;}
.y88{bottom:875.670000px;}
.y31{bottom:879.179908px;}
.y10c{bottom:879.539908px;}
.y85{bottom:890.250000px;}
.y6{bottom:897.089908px;}
.y30{bottom:898.979908px;}
.y10b{bottom:901.859908px;}
.y80{bottom:918.600000px;}
.y2f{bottom:918.869908px;}
.y10a{bottom:919.769908px;}
.y82{bottom:933.120000px;}
.y5{bottom:937.529908px;}
.y2e{bottom:938.699908px;}
.y109{bottom:942.119908px;}
.y2d{bottom:958.499908px;}
.y108{bottom:959.939908px;}
.y4{bottom:961.289908px;}
.y7f{bottom:961.379908px;}
.y2{bottom:999.539908px;}
.h1c{height:2.826563px;}
.h14{height:13.770000px;}
.h11{height:13.800000px;}
.h10{height:13.860000px;}
.h12{height:27.540000px;}
.h17{height:27.630000px;}
.hf{height:28.380000px;}
.h7{height:38.139609px;}
.h13{height:46.968223px;}
.h19{height:46.991602px;}
.he{height:48.254063px;}
.h1e{height:52.971680px;}
.h3{height:52.998047px;}
.hc{height:53.896641px;}
.ha{height:54.421875px;}
.h1a{height:55.170000px;}
.h18{height:55.260000px;}
.h1d{height:56.320312px;}
.h8{height:58.975137px;}
.h9{height:59.004492px;}
.hb{height:60.589687px;}
.hd{height:62.703281px;}
.h4{height:65.526152px;}
.h6{height:66.569063px;}
.h1b{height:70.664062px;}
.h5{height:72.562500px;}
.h16{height:124.200000px;}
.h15{height:243.300000px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.wd{width:115.410000px;}
.wa{width:117.570000px;}
.we{width:118.170000px;}
.wc{width:119.280000px;}
.wb{width:120.690000px;}
.w14{width:133.050000px;}
.wf{width:140.250000px;}
.w3{width:141.960000px;}
.w13{width:147.900000px;}
.w7{width:149.610000px;}
.w6{width:149.760000px;}
.w5{width:149.790000px;}
.w12{width:151.380000px;}
.w16{width:151.410000px;}
.w11{width:151.590000px;}
.w17{width:155.280000px;}
.w8{width:288.780000px;}
.w9{width:302.340000px;}
.w4{width:449.160000px;}
.w10{width:450.870000px;}
.w15{width:458.070000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.xf{left:4.230000px;}
.x1a{left:56.100000px;}
.x2{left:76.589989px;}
.x34{left:78.839989px;}
.xd{left:82.889989px;}
.x27{left:86.039989px;}
.x21{left:88.649989px;}
.x31{left:92.519989px;}
.x3{left:96.839989px;}
.xa{left:98.639989px;}
.x1{left:101.249989px;}
.xc{left:110.639989px;}
.x19{left:114.960000px;}
.x1e{left:117.390000px;}
.x1c{left:119.070000px;}
.x38{left:130.619989px;}
.x6{left:136.649989px;}
.x15{left:141.330000px;}
.x22{left:146.459989px;}
.x18{left:147.870000px;}
.xe{left:152.399989px;}
.x2b{left:158.249989px;}
.x28{left:160.409989px;}
.x32{left:164.819989px;}
.x37{left:167.789989px;}
.x11{left:184.440000px;}
.x2d{left:188.940000px;}
.x1b{left:194.160000px;}
.x24{left:206.669989px;}
.x2c{left:209.640000px;}
.x29{left:216.840000px;}
.x10{left:218.550000px;}
.x5{left:236.009989px;}
.x9{left:263.009989px;}
.x14{left:268.080000px;}
.x17{left:279.660000px;}
.x8{left:285.689989px;}
.x35{left:306.929989px;}
.x1d{left:314.850000px;}
.x7{left:326.399989px;}
.x4{left:333.689989px;}
.xb{left:335.399989px;}
.x2e{left:361.050000px;}
.x16{left:365.370000px;}
.x12{left:368.340000px;}
.x36{left:418.559989px;}
.x1f{left:434.130000px;}
.x23{left:480.659989px;}
.x2f{left:512.430000px;}
.x13{left:518.100000px;}
.x2a{left:519.810000px;}
.x20{left:549.540000px;}
.x26{left:577.439989px;}
.x25{left:633.599989px;}
.x30{left:649.889989px;}
.x33{left:656.819989px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.ls17{letter-spacing:-0.456533pt;}
.ls7{letter-spacing:-0.380267pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.240000pt;}
.ls1c{letter-spacing:-0.224000pt;}
.lsa{letter-spacing:-0.195733pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.148267pt;}
.lsb{letter-spacing:-0.136533pt;}
.ls5{letter-spacing:-0.112000pt;}
.ls10{letter-spacing:-0.092267pt;}
.ls11{letter-spacing:-0.080000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.011840pt;}
.ls3{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.080000pt;}
.ls1e{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.124267pt;}
.ls13{letter-spacing:0.143467pt;}
.ls0{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.272533pt;}
.ls12{letter-spacing:0.328533pt;}
.lsd{letter-spacing:0.336533pt;}
.lse{letter-spacing:0.480000pt;}
.ls1{letter-spacing:7.840000pt;}
.ls1a{letter-spacing:21.536000pt;}
.ls8{letter-spacing:62.583680pt;}
.ws2{word-spacing:-36.480000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-13.520000pt;}
.ws16{word-spacing:-13.484267pt;}
.ws15{word-spacing:-13.424000pt;}
.ws17{word-spacing:-13.407360pt;}
.ws14{word-spacing:-13.371840pt;}
.ws8{word-spacing:-13.360000pt;}
.wsc{word-spacing:-13.223467pt;}
.ws9{word-spacing:-13.200000pt;}
.wsb{word-spacing:-13.164267pt;}
.ws19{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.888000pt;}
.ws18{word-spacing:-11.680000pt;}
.ws10{word-spacing:-10.976533pt;}
.ws11{word-spacing:-10.968533pt;}
.wsf{word-spacing:-10.800000pt;}
.ws12{word-spacing:-10.783467pt;}
.wse{word-spacing:-10.640000pt;}
.wsd{word-spacing:-10.547733pt;}
.ws13{word-spacing:-10.480000pt;}
.ws4{word-spacing:-9.360000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._b{margin-left:-3.528853pt;}
._4{margin-left:-2.197333pt;}
._1{margin-left:-0.908480pt;}
._0{width:1.058347pt;}
._5{width:2.016000pt;}
._6{width:2.976000pt;}
._e{width:4.224640pt;}
._d{width:5.180800pt;}
._8{width:6.645333pt;}
._7{width:7.632000pt;}
._c{width:9.191680pt;}
._13{width:10.377600pt;}
._14{width:12.013760pt;}
._a{width:13.351147pt;}
._9{width:14.256000pt;}
._12{width:15.576000pt;}
._2{width:16.512000pt;}
._3{width:17.664000pt;}
._15{width:25.110400pt;}
._16{width:32.132800pt;}
._18{width:33.934400pt;}
._19{width:35.417067pt;}
._10{width:405.205333pt;}
._f{width:490.506667pt;}
._17{width:586.026667pt;}
._11{width:651.786667pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y84{bottom:2.320000pt;}
.y83{bottom:2.400000pt;}
.y97{bottom:4.160000pt;}
.y94{bottom:4.240000pt;}
.y86{bottom:8.480000pt;}
.y81{bottom:8.826667pt;}
.y87{bottom:14.560000pt;}
.ya7{bottom:14.640000pt;}
.y96{bottom:15.920000pt;}
.y93{bottom:16.000000pt;}
.yb2{bottom:20.720000pt;}
.ya9{bottom:20.800000pt;}
.yab{bottom:26.880000pt;}
.yb4{bottom:33.040000pt;}
.yb3{bottom:39.120000pt;}
.yaa{bottom:39.200000pt;}
.y3{bottom:65.199919pt;}
.ye6{bottom:85.039919pt;}
.y107{bottom:86.879919pt;}
.y71{bottom:87.439919pt;}
.yce{bottom:93.759919pt;}
.y56{bottom:97.039919pt;}
.y2c{bottom:98.959919pt;}
.ye5{bottom:102.639919pt;}
.y106{bottom:102.719919pt;}
.yc8{bottom:102.879919pt;}
.y70{bottom:105.039919pt;}
.ycd{bottom:111.439919pt;}
.y55{bottom:114.639919pt;}
.y2b{bottom:116.639919pt;}
.y105{bottom:118.639919pt;}
.ye4{bottom:120.319919pt;}
.yc7{bottom:120.559919pt;}
.y6f{bottom:122.639919pt;}
.yb0{bottom:127.119919pt;}
.ycc{bottom:129.039919pt;}
.y54{bottom:132.319919pt;}
.y2a{bottom:134.239919pt;}
.ye3{bottom:137.919919pt;}
.yc6{bottom:138.159919pt;}
.y104{bottom:138.479919pt;}
.y6e{bottom:140.319919pt;}
.yaf{bottom:144.719919pt;}
.ycb{bottom:146.639919pt;}
.y53{bottom:149.919919pt;}
.y29{bottom:151.919919pt;}
.y103{bottom:154.319919pt;}
.ye2{bottom:155.599919pt;}
.yc5{bottom:155.839919pt;}
.y6d{bottom:157.919919pt;}
.yae{bottom:162.399919pt;}
.yca{bottom:164.319919pt;}
.y7e{bottom:165.919919pt;}
.y28{bottom:169.519919pt;}
.y102{bottom:170.239919pt;}
.ye1{bottom:173.199919pt;}
.yc4{bottom:173.439919pt;}
.y52{bottom:175.599919pt;}
.yad{bottom:179.999919pt;}
.yc9{bottom:181.919919pt;}
.y27{bottom:187.119919pt;}
.y101{bottom:190.079919pt;}
.ye0{bottom:190.799919pt;}
.yc3{bottom:191.039919pt;}
.yac{bottom:193.120000pt;}
.y51{bottom:193.199919pt;}
.y7d{bottom:199.599919pt;}
.y6c{bottom:201.199919pt;}
.y26{bottom:204.799919pt;}
.y100{bottom:205.919919pt;}
.ydf{bottom:208.479919pt;}
.yc2{bottom:208.719919pt;}
.y50{bottom:210.799919pt;}
.y7c{bottom:217.199919pt;}
.ya8{bottom:218.320000pt;}
.y6b{bottom:218.799919pt;}
.y25{bottom:222.399919pt;}
.yff{bottom:225.839919pt;}
.yde{bottom:226.079919pt;}
.yc1{bottom:226.319919pt;}
.y4f{bottom:228.479919pt;}
.y7b{bottom:234.799919pt;}
.y6a{bottom:236.479919pt;}
.y24{bottom:240.079919pt;}
.yfe{bottom:241.679919pt;}
.ydd{bottom:243.759919pt;}
.yc0{bottom:243.999919pt;}
.y4e{bottom:246.079919pt;}
.y9a{bottom:250.879919pt;}
.y7a{bottom:252.479919pt;}
.y69{bottom:254.079919pt;}
.y23{bottom:257.679919pt;}
.ydc{bottom:261.359919pt;}
.yfd{bottom:261.519919pt;}
.ybf{bottom:261.599919pt;}
.y4d{bottom:263.759919pt;}
.y99{bottom:265.039919pt;}
.ya6{bottom:268.080000pt;}
.y79{bottom:270.079919pt;}
.y68{bottom:271.759919pt;}
.y22{bottom:275.279919pt;}
.yfc{bottom:277.439919pt;}
.ydb{bottom:278.959919pt;}
.y98{bottom:279.119919pt;}
.ybe{bottom:279.199919pt;}
.y4c{bottom:281.359919pt;}
.y78{bottom:287.759919pt;}
.y67{bottom:289.359919pt;}
.y21{bottom:292.959919pt;}
.ya4{bottom:293.280000pt;}
.yda{bottom:296.666585pt;}
.ybd{bottom:296.906585pt;}
.y95{bottom:297.066667pt;}
.yfb{bottom:297.306585pt;}
.y4b{bottom:298.986585pt;}
.y77{bottom:305.386585pt;}
.ya5{bottom:306.266667pt;}
.y66{bottom:306.986585pt;}
.y20{bottom:310.586585pt;}
.yfa{bottom:313.226585pt;}
.yd9{bottom:314.266585pt;}
.y4a{bottom:316.666585pt;}
.y76{bottom:322.986585pt;}
.y65{bottom:324.666585pt;}
.y1f{bottom:328.266585pt;}
.ybc{bottom:329.546585pt;}
.ya3{bottom:331.386585pt;}
.yd8{bottom:331.946585pt;}
.y49{bottom:334.266585pt;}
.yf9{bottom:337.546585pt;}
.y75{bottom:340.666585pt;}
.ybb{bottom:343.626585pt;}
.y1e{bottom:345.866585pt;}
.yd7{bottom:349.546585pt;}
.y64{bottom:350.266585pt;}
.y48{bottom:351.946585pt;}
.y74{bottom:358.266585pt;}
.yba{bottom:361.546585pt;}
.ya2{bottom:362.426585pt;}
.yf8{bottom:363.146585pt;}
.yd6{bottom:367.146585pt;}
.y63{bottom:367.946585pt;}
.y1d{bottom:371.466585pt;}
.y73{bottom:375.946585pt;}
.y47{bottom:377.546585pt;}
.ya1{bottom:380.026585pt;}
.yf7{bottom:380.826585pt;}
.yd5{bottom:384.826585pt;}
.y62{bottom:385.546585pt;}
.y72{bottom:393.546585pt;}
.y1c{bottom:396.666585pt;}
.yf6{bottom:398.426585pt;}
.yd4{bottom:402.426585pt;}
.y61{bottom:403.146585pt;}
.y92{bottom:407.466667pt;}
.y46{bottom:411.146585pt;}
.ya0{bottom:412.746585pt;}
.yf5{bottom:416.106585pt;}
.yd3{bottom:420.106585pt;}
.y1b{bottom:420.506585pt;}
.y60{bottom:420.826585pt;}
.y9f{bottom:426.826585pt;}
.y45{bottom:428.826585pt;}
.y1a{bottom:436.426585pt;}
.yd2{bottom:437.706585pt;}
.y5f{bottom:438.426585pt;}
.yf4{bottom:441.706585pt;}
.y9e{bottom:444.746585pt;}
.y44{bottom:446.426585pt;}
.y19{bottom:452.266585pt;}
.yd1{bottom:455.306585pt;}
.y5e{bottom:456.106585pt;}
.y43{bottom:464.106585pt;}
.y18{bottom:468.106585pt;}
.y5d{bottom:473.706585pt;}
.yf3{bottom:475.306585pt;}
.y42{bottom:481.706585pt;}
.y17{bottom:484.026585pt;}
.yd0{bottom:488.026585pt;}
.y5c{bottom:491.306585pt;}
.yf2{bottom:492.986585pt;}
.y41{bottom:499.306585pt;}
.y16{bottom:499.866585pt;}
.ycf{bottom:505.946585pt;}
.y5b{bottom:508.986585pt;}
.yf1{bottom:510.586585pt;}
.y15{bottom:515.706585pt;}
.y9d{bottom:516.746585pt;}
.y40{bottom:516.986585pt;}
.y5a{bottom:526.586585pt;}
.yf0{bottom:528.266585pt;}
.y14{bottom:531.626585pt;}
.yb9{bottom:533.786585pt;}
.y3f{bottom:534.586585pt;}
.y59{bottom:544.266585pt;}
.yef{bottom:545.866585pt;}
.y13{bottom:547.466585pt;}
.yb8{bottom:547.866585pt;}
.y3e{bottom:552.266585pt;}
.y58{bottom:561.893252pt;}
.y12{bottom:563.333252pt;}
.yee{bottom:563.493252pt;}
.yb7{bottom:565.813252pt;}
.y3d{bottom:569.893252pt;}
.y11{bottom:579.253252pt;}
.y57{bottom:579.493252pt;}
.yed{bottom:581.173252pt;}
.y3c{bottom:587.493252pt;}
.y117{bottom:592.613252pt;}
.y10{bottom:595.093252pt;}
.yec{bottom:598.773252pt;}
.y3b{bottom:605.173252pt;}
.yf{bottom:610.933252pt;}
.y116{bottom:611.093252pt;}
.yeb{bottom:616.453252pt;}
.y3a{bottom:622.773252pt;}
.ye{bottom:626.853252pt;}
.y91{bottom:628.853252pt;}
.y115{bottom:631.013252pt;}
.yea{bottom:634.053252pt;}
.y39{bottom:640.453252pt;}
.yd{bottom:642.693252pt;}
.y90{bottom:646.533252pt;}
.y114{bottom:646.853252pt;}
.ye9{bottom:651.653252pt;}
.y38{bottom:658.053252pt;}
.y113{bottom:662.693252pt;}
.y8f{bottom:664.133252pt;}
.y9c{bottom:669.253252pt;}
.ye8{bottom:669.333252pt;}
.yc{bottom:675.093252pt;}
.y37{bottom:675.653252pt;}
.y8e{bottom:681.733252pt;}
.y112{bottom:682.613252pt;}
.y9b{bottom:692.453252pt;}
.yb{bottom:692.693252pt;}
.y36{bottom:693.333252pt;}
.ye7{bottom:694.933252pt;}
.y111{bottom:698.453252pt;}
.y8d{bottom:699.413252pt;}
.yb6{bottom:703.253252pt;}
.ya{bottom:710.293252pt;}
.y35{bottom:710.933252pt;}
.y110{bottom:714.293252pt;}
.yb5{bottom:716.373333pt;}
.y8c{bottom:717.013252pt;}
.y9{bottom:727.973252pt;}
.y34{bottom:728.613252pt;}
.y10f{bottom:730.213252pt;}
.y8b{bottom:734.693252pt;}
.yb1{bottom:741.573333pt;}
.y8{bottom:745.573252pt;}
.y33{bottom:746.213252pt;}
.y10e{bottom:750.053252pt;}
.y8a{bottom:752.293252pt;}
.y32{bottom:763.813252pt;}
.y89{bottom:765.413333pt;}
.y10d{bottom:765.973252pt;}
.y7{bottom:767.893252pt;}
.y88{bottom:778.373333pt;}
.y31{bottom:781.493252pt;}
.y10c{bottom:781.813252pt;}
.y85{bottom:791.333333pt;}
.y6{bottom:797.413252pt;}
.y30{bottom:799.093252pt;}
.y10b{bottom:801.653252pt;}
.y80{bottom:816.533333pt;}
.y2f{bottom:816.773252pt;}
.y10a{bottom:817.573252pt;}
.y82{bottom:829.440000pt;}
.y5{bottom:833.359919pt;}
.y2e{bottom:834.399919pt;}
.y109{bottom:837.439919pt;}
.y2d{bottom:851.999919pt;}
.y108{bottom:853.279919pt;}
.y4{bottom:854.479919pt;}
.y7f{bottom:854.559919pt;}
.y2{bottom:888.479919pt;}
.h1c{height:2.512500pt;}
.h14{height:12.240000pt;}
.h11{height:12.266667pt;}
.h10{height:12.320000pt;}
.h12{height:24.480000pt;}
.h17{height:24.560000pt;}
.hf{height:25.226667pt;}
.h7{height:33.901875pt;}
.h13{height:41.749531pt;}
.h19{height:41.770312pt;}
.he{height:42.892500pt;}
.h1e{height:47.085938pt;}
.h3{height:47.109375pt;}
.hc{height:47.908125pt;}
.ha{height:48.375000pt;}
.h1a{height:49.040000pt;}
.h18{height:49.120000pt;}
.h1d{height:50.062500pt;}
.h8{height:52.422344pt;}
.h9{height:52.448437pt;}
.hb{height:53.857500pt;}
.hd{height:55.736250pt;}
.h4{height:58.245469pt;}
.h6{height:59.172500pt;}
.h1b{height:62.812500pt;}
.h5{height:64.500000pt;}
.h16{height:110.400000pt;}
.h15{height:216.266667pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.wd{width:102.586667pt;}
.wa{width:104.506667pt;}
.we{width:105.040000pt;}
.wc{width:106.026667pt;}
.wb{width:107.280000pt;}
.w14{width:118.266667pt;}
.wf{width:124.666667pt;}
.w3{width:126.186667pt;}
.w13{width:131.466667pt;}
.w7{width:132.986667pt;}
.w6{width:133.120000pt;}
.w5{width:133.146667pt;}
.w12{width:134.560000pt;}
.w16{width:134.586667pt;}
.w11{width:134.746667pt;}
.w17{width:138.026667pt;}
.w8{width:256.693333pt;}
.w9{width:268.746667pt;}
.w4{width:399.253333pt;}
.w10{width:400.773333pt;}
.w15{width:407.173333pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.xf{left:3.760000pt;}
.x1a{left:49.866667pt;}
.x2{left:68.079990pt;}
.x34{left:70.079990pt;}
.xd{left:73.679990pt;}
.x27{left:76.479990pt;}
.x21{left:78.799990pt;}
.x31{left:82.239990pt;}
.x3{left:86.079990pt;}
.xa{left:87.679990pt;}
.x1{left:89.999990pt;}
.xc{left:98.346657pt;}
.x19{left:102.186667pt;}
.x1e{left:104.346667pt;}
.x1c{left:105.840000pt;}
.x38{left:116.106657pt;}
.x6{left:121.466657pt;}
.x15{left:125.626667pt;}
.x22{left:130.186657pt;}
.x18{left:131.440000pt;}
.xe{left:135.466657pt;}
.x2b{left:140.666657pt;}
.x28{left:142.586657pt;}
.x32{left:146.506657pt;}
.x37{left:149.146657pt;}
.x11{left:163.946667pt;}
.x2d{left:167.946667pt;}
.x1b{left:172.586667pt;}
.x24{left:183.706657pt;}
.x2c{left:186.346667pt;}
.x29{left:192.746667pt;}
.x10{left:194.266667pt;}
.x5{left:209.786657pt;}
.x9{left:233.786657pt;}
.x14{left:238.293333pt;}
.x17{left:248.586667pt;}
.x8{left:253.946657pt;}
.x35{left:272.826657pt;}
.x1d{left:279.866667pt;}
.x7{left:290.133323pt;}
.x4{left:296.613323pt;}
.xb{left:298.133323pt;}
.x2e{left:320.933333pt;}
.x16{left:324.773333pt;}
.x12{left:327.413333pt;}
.x36{left:372.053323pt;}
.x1f{left:385.893333pt;}
.x23{left:427.253323pt;}
.x2f{left:455.493333pt;}
.x13{left:460.533333pt;}
.x2a{left:462.053333pt;}
.x20{left:488.480000pt;}
.x26{left:513.279990pt;}
.x25{left:563.199990pt;}
.x30{left:577.679990pt;}
.x33{left:583.839990pt;}
}




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