
    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_8bd45b8dbd86b4946c8b1b68.woff')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_b9d613f1f79ba07260cad7d0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5623dad7355e0b13e16edd81.woff')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_cfadfc789cff2187e250f041.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_ad4d558eff8f273b21cfc1b4.woff')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_0aa5b97613222e6fd52d2a75.woff')format("woff");}.ff7{font-family:ff7;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0c819f590cdf70c20a06447e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ce0d5e271a958dff2882219f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_168f196e17ce898d24ee370c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_afced36d0140b16781d5d775.woff')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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_44cca5c04cad8f6091921f96.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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);}
.m4{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256950,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260875,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);}
.va{vertical-align:-84.960000px;}
.v7{vertical-align:-82.260000px;}
.v9{vertical-align:-79.200000px;}
.v6{vertical-align:-76.320000px;}
.vb{vertical-align:-72.000000px;}
.vc{vertical-align:-58.320000px;}
.v8{vertical-align:-55.440000px;}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-5.760000px;}
.v3{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.ls1b{letter-spacing:-1.026000px;}
.ls8{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.262200px;}
.ls14{letter-spacing:-0.226200px;}
.ls1f{letter-spacing:-0.109200px;}
.ls3{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.089400px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.080400px;}
.ls0{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.109200px;}
.lsc{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.150000px;}
.ls11{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.262200px;}
.ls17{letter-spacing:0.265200px;}
.ls6{letter-spacing:0.305400px;}
.ls16{letter-spacing:0.375600px;}
.ls18{letter-spacing:0.513600px;}
.lsb{letter-spacing:1.440000px;}
.ls1e{letter-spacing:12.545280px;}
.ls19{letter-spacing:90.000000px;}
.ls10{letter-spacing:607.656000px;}
.lsf{letter-spacing:1064.316000px;}
.ls1d{letter-spacing:1115.436000px;}
.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;}
}
.ws1a{word-spacing:-44.712000px;}
.ws8{word-spacing:-37.359360px;}
.ws4{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.073600px;}
.wsa{word-spacing:-16.865400px;}
.ws10{word-spacing:-16.822200px;}
.ws1b{word-spacing:-16.712400px;}
.ws9{word-spacing:-16.669200px;}
.ws12{word-spacing:-16.640400px;}
.ws7{word-spacing:-16.560000px;}
.ws19{word-spacing:-16.450800px;}
.ws11{word-spacing:-16.297800px;}
.wsb{word-spacing:-16.254600px;}
.wsd{word-spacing:-16.145400px;}
.ws16{word-spacing:-16.102200px;}
.ws18{word-spacing:-15.948000px;}
.wsf{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.732000px;}
.ws17{word-spacing:-15.534000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.392000px;}
.ws6{word-spacing:-12.060000px;}
.ws5{word-spacing:-10.440000px;}
.ws14{word-spacing:-10.350600px;}
.ws13{word-spacing:-10.213800px;}
.wse{word-spacing:0.000000px;}
._0{margin-left:-1.245120px;}
._1{width:1.074000px;}
._b{width:2.572800px;}
._f{width:3.862080px;}
._d{width:5.299200px;}
._a{width:6.756480px;}
._c{width:8.544960px;}
._5{width:9.584640px;}
._1b{width:11.145840px;}
._8{width:13.049280px;}
._9{width:14.241600px;}
._e{width:15.367200px;}
._10{width:18.186240px;}
._11{width:19.553280px;}
._12{width:22.919040px;}
._1c{width:24.128640px;}
._6{width:25.700160px;}
._7{width:26.894400px;}
._14{width:31.149120px;}
._13{width:32.590080px;}
._2d{width:48.544320px;}
._1f{width:51.101280px;}
._25{width:60.421920px;}
._2c{width:67.102560px;}
._1e{width:70.950720px;}
._29{width:78.573600px;}
._2a{width:92.131200px;}
._2b{width:98.062320px;}
._30{width:99.610080px;}
._2e{width:102.055440px;}
._39{width:107.235840px;}
._16{width:169.324080px;}
._19{width:175.452240px;}
._1a{width:177.587520px;}
._2{width:180.435120px;}
._18{width:181.715520px;}
._17{width:183.835200px;}
._28{width:186.765600px;}
._31{width:237.016560px;}
._15{width:246.187440px;}
._33{width:298.501920px;}
._38{width:302.101920px;}
._36{width:326.560800px;}
._3{width:342.180000px;}
._34{width:381.329280px;}
._37{width:384.404160px;}
._32{width:421.380000px;}
._35{width:424.479840px;}
._22{width:697.741920px;}
._21{width:705.356640px;}
._1d{width:759.310591px;}
._20{width:873.660000px;}
._24{width:1000.074720px;}
._27{width:1061.975520px;}
._26{width:1069.175520px;}
._3b{width:1077.800160px;}
._3a{width:1088.796000px;}
._4{width:1164.545760px;}
._2f{width:1230.599040px;}
._23{width:1339.194720px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y105{bottom:5.040000px;}
.y71{bottom:13.500000px;}
.y6a{bottom:13.680000px;}
.y6e{bottom:16.920000px;}
.y7c{bottom:17.100000px;}
.y10e{bottom:25.374000px;}
.y109{bottom:25.380000px;}
.y10b{bottom:25.560000px;}
.y107{bottom:25.605000px;}
.y103{bottom:26.280000px;}
.y77{bottom:29.700000px;}
.y7a{bottom:30.600000px;}
.y70{bottom:33.120000px;}
.y79{bottom:34.020000px;}
.y6b{bottom:34.200000px;}
.y74{bottom:37.440000px;}
.y6c{bottom:37.620000px;}
.y75{bottom:38.340000px;}
.y69{bottom:49.500000px;}
.y7d{bottom:54.540000px;}
.y73{bottom:57.960000px;}
.y9{bottom:58.320000px;}
.y68{bottom:70.020000px;}
.y8{bottom:76.896000px;}
.y110{bottom:113.436000px;}
.yc1{bottom:115.056000px;}
.y39{bottom:117.576000px;}
.y60{bottom:118.296000px;}
.ye6{bottom:125.676000px;}
.y11f{bottom:129.096000px;}
.y10f{bottom:132.516000px;}
.y38{bottom:136.476000px;}
.y5f{bottom:137.376000px;}
.yc0{bottom:147.456000px;}
.y11e{bottom:148.176000px;}
.ye5{bottom:148.356000px;}
.y10d{bottom:148.536000px;}
.y37{bottom:155.550000px;}
.y5e{bottom:156.270000px;}
.y11d{bottom:167.070000px;}
.ye4{bottom:168.150000px;}
.y36{bottom:174.450000px;}
.y5d{bottom:175.350000px;}
.ybf{bottom:180.030000px;}
.y11c{bottom:185.970000px;}
.ye3{bottom:187.230000px;}
.y10c{bottom:190.110000px;}
.y35{bottom:193.530000px;}
.y5c{bottom:194.250000px;}
.y8b{bottom:195.870000px;}
.ybe{bottom:200.010000px;}
.y11b{bottom:205.050000px;}
.ye2{bottom:206.130000px;}
.y34{bottom:212.430000px;}
.y5b{bottom:213.150000px;}
.ya6{bottom:214.410000px;}
.y8a{bottom:214.950000px;}
.y11a{bottom:223.950000px;}
.ye1{bottom:226.470000px;}
.y33{bottom:231.330000px;}
.y10a{bottom:231.870000px;}
.ya5{bottom:233.670000px;}
.y89{bottom:234.030000px;}
.ybd{bottom:237.090000px;}
.y119{bottom:239.250000px;}
.ye0{bottom:243.570000px;}
.y5a{bottom:244.110000px;}
.y32{bottom:250.410000px;}
.y88{bottom:252.930000px;}
.ya4{bottom:254.010000px;}
.ybc{bottom:256.170000px;}
.y59{bottom:263.190000px;}
.y31{bottom:269.310000px;}
.y87{bottom:270.390000px;}
.y108{bottom:273.630000px;}
.ybb{bottom:275.970000px;}
.ydf{bottom:281.910000px;}
.y58{bottom:282.090000px;}
.ya3{bottom:286.410000px;}
.y30{bottom:288.390000px;}
.y86{bottom:296.850000px;}
.yde{bottom:298.830000px;}
.y57{bottom:301.170000px;}
.y2f{bottom:307.290000px;}
.yba{bottom:313.050000px;}
.y106{bottom:315.210000px;}
.ya2{bottom:315.390000px;}
.y56{bottom:320.070000px;}
.y85{bottom:320.610000px;}
.y2e{bottom:326.370000px;}
.yb9{bottom:331.950000px;}
.y55{bottom:339.195000px;}
.y84{bottom:339.555000px;}
.ya1{bottom:340.635000px;}
.ydd{bottom:341.715000px;}
.y2d{bottom:345.315000px;}
.yb8{bottom:351.795000px;}
.y102{bottom:357.015000px;}
.y54{bottom:358.095000px;}
.y83{bottom:358.635000px;}
.y2c{bottom:364.215000px;}
.ya0{bottom:369.615000px;}
.y82{bottom:376.095000px;}
.y53{bottom:376.995000px;}
.y81{bottom:377.535000px;}
.y104{bottom:378.255000px;}
.y2b{bottom:383.295000px;}
.yb7{bottom:386.355000px;}
.y80{bottom:395.535000px;}
.y52{bottom:396.075000px;}
.y7f{bottom:396.975000px;}
.ydc{bottom:398.775000px;}
.y2a{bottom:402.195000px;}
.y101{bottom:403.095000px;}
.yb6{bottom:408.855000px;}
.y9f{bottom:409.755000px;}
.y51{bottom:414.975000px;}
.ydb{bottom:419.295000px;}
.y29{bottom:421.275000px;}
.yb5{bottom:428.655000px;}
.y7e{bottom:429.555000px;}
.y50{bottom:435.315000px;}
.y9e{bottom:438.735000px;}
.yda{bottom:439.815000px;}
.y28{bottom:440.175000px;}
.y100{bottom:441.075000px;}
.y7b{bottom:445.755000px;}
.yb4{bottom:447.735000px;}
.y4f{bottom:455.835000px;}
.y27{bottom:459.075000px;}
.yff{bottom:460.155000px;}
.yd9{bottom:463.395000px;}
.y4e{bottom:472.755000px;}
.y26{bottom:478.155000px;}
.yfe{bottom:479.055000px;}
.yd8{bottom:480.495000px;}
.yb3{bottom:486.615000px;}
.y9d{bottom:490.215000px;}
.y25{bottom:497.055000px;}
.yfd{bottom:497.955000px;}
.y133{bottom:503.175000px;}
.yb2{bottom:505.515000px;}
.y9c{bottom:509.475000px;}
.yfc{bottom:517.035000px;}
.y78{bottom:519.915000px;}
.y132{bottom:522.255000px;}
.y24{bottom:533.595000px;}
.yfb{bottom:535.935000px;}
.y9b{bottom:540.255000px;}
.yd7{bottom:540.435000px;}
.y131{bottom:541.155000px;}
.yb1{bottom:543.855000px;}
.y23{bottom:552.675000px;}
.yfa{bottom:555.015000px;}
.y9a{bottom:559.335000px;}
.y130{bottom:560.055000px;}
.yd6{bottom:560.415000px;}
.y76{bottom:570.135000px;}
.y22{bottom:571.575000px;}
.yf9{bottom:573.915000px;}
.y99{bottom:578.415000px;}
.y12f{bottom:579.135000px;}
.yd5{bottom:579.495000px;}
.y21{bottom:591.375000px;}
.yb0{bottom:591.735000px;}
.yf8{bottom:592.815000px;}
.y118{bottom:595.155000px;}
.y98{bottom:597.315000px;}
.y12e{bottom:598.035000px;}
.yd4{bottom:598.395000px;}
.y20{bottom:610.845000px;}
.y117{bottom:614.085000px;}
.y97{bottom:616.245000px;}
.y12d{bottom:617.145000px;}
.yd3{bottom:617.505000px;}
.y72{bottom:619.665000px;}
.yf7{bottom:621.825000px;}
.yaf{bottom:622.005000px;}
.y1f{bottom:629.745000px;}
.y116{bottom:633.165000px;}
.y96{bottom:635.325000px;}
.y12c{bottom:636.045000px;}
.yd2{bottom:638.565000px;}
.yae{bottom:647.205000px;}
.y1e{bottom:648.645000px;}
.y115{bottom:652.065000px;}
.y95{bottom:654.225000px;}
.y12b{bottom:654.945000px;}
.yd1{bottom:660.165000px;}
.yf6{bottom:664.125000px;}
.y1d{bottom:667.725000px;}
.y94{bottom:669.705000px;}
.y4d{bottom:670.245000px;}
.y114{bottom:670.965000px;}
.y12a{bottom:674.025000px;}
.yd0{bottom:677.445000px;}
.yf5{bottom:683.205000px;}
.yad{bottom:686.265000px;}
.y1c{bottom:686.625000px;}
.y4c{bottom:689.325000px;}
.y113{bottom:690.045000px;}
.y93{bottom:692.205000px;}
.y129{bottom:692.925000px;}
.y6f{bottom:693.825000px;}
.yf4{bottom:699.945000px;}
.yac{bottom:705.165000px;}
.y1b{bottom:705.705000px;}
.y4b{bottom:708.225000px;}
.y112{bottom:708.945000px;}
.y92{bottom:711.105000px;}
.y128{bottom:712.005000px;}
.ycf{bottom:720.285000px;}
.yab{bottom:724.245000px;}
.y111{bottom:724.425000px;}
.y1a{bottom:724.605000px;}
.y4a{bottom:727.125000px;}
.y91{bottom:730.185000px;}
.yce{bottom:737.205000px;}
.yf3{bottom:739.545000px;}
.y6d{bottom:743.145000px;}
.y19{bottom:743.505000px;}
.y49{bottom:746.205000px;}
.y127{bottom:749.805000px;}
.y90{bottom:750.525000px;}
.y18{bottom:762.585000px;}
.yaa{bottom:763.485000px;}
.y48{bottom:765.105000px;}
.y126{bottom:768.885000px;}
.yf2{bottom:770.685000px;}
.y8f{bottom:770.865000px;}
.ycd{bottom:776.085000px;}
.y67{bottom:776.265000px;}
.ya9{bottom:782.385000px;}
.y17{bottom:782.565000px;}
.y47{bottom:784.185000px;}
.y125{bottom:787.785000px;}
.y8e{bottom:791.385000px;}
.ycc{bottom:794.985000px;}
.yf1{bottom:797.505000px;}
.ya8{bottom:802.725000px;}
.y46{bottom:803.085000px;}
.y124{bottom:806.865000px;}
.y16{bottom:807.585000px;}
.ycb{bottom:813.885000px;}
.yf0{bottom:814.425000px;}
.y45{bottom:821.985000px;}
.y8d{bottom:823.785000px;}
.y123{bottom:825.765000px;}
.y15{bottom:826.485000px;}
.ya7{bottom:831.885000px;}
.yca{bottom:833.685000px;}
.y44{bottom:841.065000px;}
.y14{bottom:845.565000px;}
.y8c{bottom:852.945000px;}
.yef{bottom:853.305000px;}
.yc9{bottom:853.665000px;}
.y13{bottom:858.525000px;}
.y43{bottom:860.865000px;}
.y122{bottom:863.745000px;}
.yee{bottom:873.150000px;}
.yc8{bottom:873.690000px;}
.y42{bottom:880.710000px;}
.y121{bottom:882.690000px;}
.y12{bottom:884.670000px;}
.y66{bottom:888.090000px;}
.yed{bottom:892.230000px;}
.yc7{bottom:895.650000px;}
.y11{bottom:898.350000px;}
.y41{bottom:900.690000px;}
.y120{bottom:901.770000px;}
.yec{bottom:911.130000px;}
.yc6{bottom:915.630000px;}
.y10{bottom:917.250000px;}
.y65{bottom:919.050000px;}
.y40{bottom:920.670000px;}
.yc5{bottom:932.550000px;}
.yeb{bottom:933.090000px;}
.yf{bottom:936.150000px;}
.y64{bottom:938.130000px;}
.y3f{bottom:939.750000px;}
.yea{bottom:952.350000px;}
.ye{bottom:955.230000px;}
.y63{bottom:957.210000px;}
.y3e{bottom:958.650000px;}
.yd{bottom:974.130000px;}
.ye9{bottom:974.310000px;}
.y62{bottom:976.110000px;}
.y3d{bottom:977.550000px;}
.yc4{bottom:992.490000px;}
.yc{bottom:993.210000px;}
.ye8{bottom:993.390000px;}
.y61{bottom:996.450000px;}
.y3c{bottom:996.630000px;}
.yb{bottom:1012.470000px;}
.yc3{bottom:1013.010000px;}
.ye7{bottom:1015.350000px;}
.y3b{bottom:1015.530000px;}
.ya{bottom:1033.170000px;}
.yc2{bottom:1034.430000px;}
.y3a{bottom:1034.610000px;}
.y7{bottom:1054.410000px;}
.y6{bottom:1074.030000px;}
.y5{bottom:1095.270000px;}
.y4{bottom:1114.890000px;}
.y3{bottom:1155.600000px;}
.y2{bottom:1174.680000px;}
.y1{bottom:1193.580000px;}
.h18{height:20.520000px;}
.he{height:32.400000px;}
.h15{height:35.194219px;}
.h1a{height:40.860000px;}
.h14{height:40.985156px;}
.h1b{height:41.040000px;}
.h19{height:41.076000px;}
.hb{height:41.250937px;}
.h17{height:41.760000px;}
.ha{height:47.344922px;}
.hf{height:48.600000px;}
.h11{height:48.636000px;}
.h12{height:49.500000px;}
.h1c{height:50.229844px;}
.h6{height:52.998047px;}
.h13{height:55.825312px;}
.hc{height:64.978594px;}
.h2{height:65.010937px;}
.h5{height:65.884219px;}
.h8{height:66.757500px;}
.h9{height:67.824844px;}
.h16{height:68.084282px;}
.h4{height:70.664062px;}
.h7{height:72.562500px;}
.h10{height:73.440000px;}
.h3{height:84.898125px;}
.hd{height:85.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:32.040000px;}
.wd{width:48.420000px;}
.wb{width:52.560000px;}
.wc{width:52.596000px;}
.w4{width:58.356000px;}
.wa{width:60.840000px;}
.w7{width:62.280000px;}
.w3{width:113.040000px;}
.w6{width:173.010000px;}
.w5{width:189.750000px;}
.w9{width:696.705000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.734000px;}
.x19{left:12.960000px;}
.x24{left:20.385000px;}
.x27{left:22.320000px;}
.x1a{left:25.065000px;}
.x22{left:26.460000px;}
.x2c{left:33.885000px;}
.x1b{left:42.165000px;}
.x2f{left:44.100000px;}
.x23{left:52.374000px;}
.x1f{left:64.260000px;}
.x1d{left:72.540000px;}
.x26{left:77.580000px;}
.x25{left:86.040000px;}
.x20{left:99.540000px;}
.x28{left:101.520000px;}
.x50{left:103.854000px;}
.x2b{left:106.200000px;}
.x1{left:108.035987px;}
.x2{left:111.455987px;}
.x2a{left:114.660000px;}
.x6{left:120.275987px;}
.x29{left:123.300000px;}
.x2e{left:127.800000px;}
.x48{left:133.235987px;}
.x62{left:135.035987px;}
.x2d{left:136.260000px;}
.x5d{left:143.135987px;}
.x16{left:146.916000px;}
.xd{left:155.549987px;}
.x60{left:162.029987px;}
.xf{left:163.289987px;}
.x31{left:165.285000px;}
.x4a{left:169.229987px;}
.x30{left:173.550000px;}
.x7{left:185.249987px;}
.x51{left:194.610000px;}
.x44{left:232.589987px;}
.x52{left:247.890000px;}
.x3b{left:256.889987px;}
.x18{left:260.670000px;}
.x61{left:263.009987px;}
.x10{left:275.789987px;}
.x4f{left:280.694987px;}
.x15{left:282.494987px;}
.x47{left:285.194987px;}
.x41{left:298.514987px;}
.x53{left:301.215000px;}
.x4b{left:312.374987px;}
.x1c{left:319.755000px;}
.x4e{left:336.494987px;}
.x13{left:337.754987px;}
.xe{left:339.914987px;}
.x32{left:349.634987px;}
.x5e{left:350.714987px;}
.x35{left:352.514987px;}
.x33{left:355.034987px;}
.x36{left:362.414987px;}
.x37{left:367.454987px;}
.x34{left:374.654987px;}
.xc{left:377.714987px;}
.xa{left:378.974987px;}
.x11{left:380.594987px;}
.x3f{left:382.214987px;}
.x5{left:385.454987px;}
.x9{left:388.694987px;}
.xb{left:391.394987px;}
.x14{left:394.274987px;}
.x8{left:396.434987px;}
.x38{left:397.874987px;}
.x54{left:407.955000px;}
.x39{left:427.214987px;}
.x3{left:446.474987px;}
.x55{left:461.235000px;}
.x3e{left:471.704987px;}
.x46{left:474.404987px;}
.x43{left:476.024987px;}
.x49{left:484.304987px;}
.x3d{left:486.104987px;}
.x4d{left:487.904987px;}
.x3c{left:489.704987px;}
.x42{left:493.304987px;}
.x1e{left:510.225000px;}
.x56{left:514.545000px;}
.x4{left:518.504987px;}
.x3a{left:544.964987px;}
.x57{left:568.005000px;}
.x12{left:586.004987px;}
.x4c{left:600.944987px;}
.x45{left:606.704987px;}
.x58{left:621.285000px;}
.x40{left:636.224987px;}
.x59{left:674.610000px;}
.x21{left:683.970000px;}
.x5f{left:715.109987px;}
.x5c{left:723.029987px;}
.x5a{left:727.890000px;}
.x5b{left:781.350000px;}
@media print{
.va{vertical-align:-75.520000pt;}
.v7{vertical-align:-73.120000pt;}
.v9{vertical-align:-70.400000pt;}
.v6{vertical-align:-67.840000pt;}
.vb{vertical-align:-64.000000pt;}
.vc{vertical-align:-51.840000pt;}
.v8{vertical-align:-49.280000pt;}
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-5.120000pt;}
.v3{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.ls1b{letter-spacing:-0.912000pt;}
.ls8{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls14{letter-spacing:-0.201067pt;}
.ls1f{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.079467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.071467pt;}
.ls0{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.097067pt;}
.lsc{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.133333pt;}
.ls11{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.233067pt;}
.ls17{letter-spacing:0.235733pt;}
.ls6{letter-spacing:0.271467pt;}
.ls16{letter-spacing:0.333867pt;}
.ls18{letter-spacing:0.456533pt;}
.lsb{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:11.151360pt;}
.ls19{letter-spacing:80.000000pt;}
.ls10{letter-spacing:540.138667pt;}
.lsf{letter-spacing:946.058667pt;}
.ls1d{letter-spacing:991.498667pt;}
.ws1a{word-spacing:-39.744000pt;}
.ws8{word-spacing:-33.208320pt;}
.ws4{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.176533pt;}
.wsa{word-spacing:-14.991467pt;}
.ws10{word-spacing:-14.953067pt;}
.ws1b{word-spacing:-14.855467pt;}
.ws9{word-spacing:-14.817067pt;}
.ws12{word-spacing:-14.791467pt;}
.ws7{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.622933pt;}
.ws11{word-spacing:-14.486933pt;}
.wsb{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.351467pt;}
.ws16{word-spacing:-14.313067pt;}
.ws18{word-spacing:-14.176000pt;}
.wsf{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.984000pt;}
.ws17{word-spacing:-13.808000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.904000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws14{word-spacing:-9.200533pt;}
.ws13{word-spacing:-9.078933pt;}
.wse{word-spacing:0.000000pt;}
._0{margin-left:-1.106773pt;}
._1{width:0.954667pt;}
._b{width:2.286933pt;}
._f{width:3.432960pt;}
._d{width:4.710400pt;}
._a{width:6.005760pt;}
._c{width:7.595520pt;}
._5{width:8.519680pt;}
._1b{width:9.907413pt;}
._8{width:11.599360pt;}
._9{width:12.659200pt;}
._e{width:13.659733pt;}
._10{width:16.165547pt;}
._11{width:17.380693pt;}
._12{width:20.372480pt;}
._1c{width:21.447680pt;}
._6{width:22.844587pt;}
._7{width:23.906133pt;}
._14{width:27.688107pt;}
._13{width:28.968960pt;}
._2d{width:43.150507pt;}
._1f{width:45.423360pt;}
._25{width:53.708373pt;}
._2c{width:59.646720pt;}
._1e{width:63.067307pt;}
._29{width:69.843200pt;}
._2a{width:81.894400pt;}
._2b{width:87.166507pt;}
._30{width:88.542293pt;}
._2e{width:90.715947pt;}
._39{width:95.320747pt;}
._16{width:150.510293pt;}
._19{width:155.957547pt;}
._1a{width:157.855573pt;}
._2{width:160.386773pt;}
._18{width:161.524907pt;}
._17{width:163.409067pt;}
._28{width:166.013867pt;}
._31{width:210.681387pt;}
._15{width:218.833280pt;}
._33{width:265.335040pt;}
._38{width:268.535040pt;}
._36{width:290.276267pt;}
._3{width:304.160000pt;}
._34{width:338.959360pt;}
._37{width:341.692587pt;}
._32{width:374.560000pt;}
._35{width:377.315413pt;}
._22{width:620.215040pt;}
._21{width:626.983680pt;}
._1d{width:674.942748pt;}
._20{width:776.586667pt;}
._24{width:888.955307pt;}
._27{width:943.978240pt;}
._26{width:950.378240pt;}
._3b{width:958.044587pt;}
._3a{width:967.818667pt;}
._4{width:1035.151787pt;}
._2f{width:1093.865813pt;}
._23{width:1190.395307pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:4.480000pt;}
.y71{bottom:12.000000pt;}
.y6a{bottom:12.160000pt;}
.y6e{bottom:15.040000pt;}
.y7c{bottom:15.200000pt;}
.y10e{bottom:22.554667pt;}
.y109{bottom:22.560000pt;}
.y10b{bottom:22.720000pt;}
.y107{bottom:22.760000pt;}
.y103{bottom:23.360000pt;}
.y77{bottom:26.400000pt;}
.y7a{bottom:27.200000pt;}
.y70{bottom:29.440000pt;}
.y79{bottom:30.240000pt;}
.y6b{bottom:30.400000pt;}
.y74{bottom:33.280000pt;}
.y6c{bottom:33.440000pt;}
.y75{bottom:34.080000pt;}
.y69{bottom:44.000000pt;}
.y7d{bottom:48.480000pt;}
.y73{bottom:51.520000pt;}
.y9{bottom:51.840000pt;}
.y68{bottom:62.240000pt;}
.y8{bottom:68.352000pt;}
.y110{bottom:100.832000pt;}
.yc1{bottom:102.272000pt;}
.y39{bottom:104.512000pt;}
.y60{bottom:105.152000pt;}
.ye6{bottom:111.712000pt;}
.y11f{bottom:114.752000pt;}
.y10f{bottom:117.792000pt;}
.y38{bottom:121.312000pt;}
.y5f{bottom:122.112000pt;}
.yc0{bottom:131.072000pt;}
.y11e{bottom:131.712000pt;}
.ye5{bottom:131.872000pt;}
.y10d{bottom:132.032000pt;}
.y37{bottom:138.266667pt;}
.y5e{bottom:138.906667pt;}
.y11d{bottom:148.506667pt;}
.ye4{bottom:149.466667pt;}
.y36{bottom:155.066667pt;}
.y5d{bottom:155.866667pt;}
.ybf{bottom:160.026667pt;}
.y11c{bottom:165.306667pt;}
.ye3{bottom:166.426667pt;}
.y10c{bottom:168.986667pt;}
.y35{bottom:172.026667pt;}
.y5c{bottom:172.666667pt;}
.y8b{bottom:174.106667pt;}
.ybe{bottom:177.786667pt;}
.y11b{bottom:182.266667pt;}
.ye2{bottom:183.226667pt;}
.y34{bottom:188.826667pt;}
.y5b{bottom:189.466667pt;}
.ya6{bottom:190.586667pt;}
.y8a{bottom:191.066667pt;}
.y11a{bottom:199.066667pt;}
.ye1{bottom:201.306667pt;}
.y33{bottom:205.626667pt;}
.y10a{bottom:206.106667pt;}
.ya5{bottom:207.706667pt;}
.y89{bottom:208.026667pt;}
.ybd{bottom:210.746667pt;}
.y119{bottom:212.666667pt;}
.ye0{bottom:216.506667pt;}
.y5a{bottom:216.986667pt;}
.y32{bottom:222.586667pt;}
.y88{bottom:224.826667pt;}
.ya4{bottom:225.786667pt;}
.ybc{bottom:227.706667pt;}
.y59{bottom:233.946667pt;}
.y31{bottom:239.386667pt;}
.y87{bottom:240.346667pt;}
.y108{bottom:243.226667pt;}
.ybb{bottom:245.306667pt;}
.ydf{bottom:250.586667pt;}
.y58{bottom:250.746667pt;}
.ya3{bottom:254.586667pt;}
.y30{bottom:256.346667pt;}
.y86{bottom:263.866667pt;}
.yde{bottom:265.626667pt;}
.y57{bottom:267.706667pt;}
.y2f{bottom:273.146667pt;}
.yba{bottom:278.266667pt;}
.y106{bottom:280.186667pt;}
.ya2{bottom:280.346667pt;}
.y56{bottom:284.506667pt;}
.y85{bottom:284.986667pt;}
.y2e{bottom:290.106667pt;}
.yb9{bottom:295.066667pt;}
.y55{bottom:301.506667pt;}
.y84{bottom:301.826667pt;}
.ya1{bottom:302.786667pt;}
.ydd{bottom:303.746667pt;}
.y2d{bottom:306.946667pt;}
.yb8{bottom:312.706667pt;}
.y102{bottom:317.346667pt;}
.y54{bottom:318.306667pt;}
.y83{bottom:318.786667pt;}
.y2c{bottom:323.746667pt;}
.ya0{bottom:328.546667pt;}
.y82{bottom:334.306667pt;}
.y53{bottom:335.106667pt;}
.y81{bottom:335.586667pt;}
.y104{bottom:336.226667pt;}
.y2b{bottom:340.706667pt;}
.yb7{bottom:343.426667pt;}
.y80{bottom:351.586667pt;}
.y52{bottom:352.066667pt;}
.y7f{bottom:352.866667pt;}
.ydc{bottom:354.466667pt;}
.y2a{bottom:357.506667pt;}
.y101{bottom:358.306667pt;}
.yb6{bottom:363.426667pt;}
.y9f{bottom:364.226667pt;}
.y51{bottom:368.866667pt;}
.ydb{bottom:372.706667pt;}
.y29{bottom:374.466667pt;}
.yb5{bottom:381.026667pt;}
.y7e{bottom:381.826667pt;}
.y50{bottom:386.946667pt;}
.y9e{bottom:389.986667pt;}
.yda{bottom:390.946667pt;}
.y28{bottom:391.266667pt;}
.y100{bottom:392.066667pt;}
.y7b{bottom:396.226667pt;}
.yb4{bottom:397.986667pt;}
.y4f{bottom:405.186667pt;}
.y27{bottom:408.066667pt;}
.yff{bottom:409.026667pt;}
.yd9{bottom:411.906667pt;}
.y4e{bottom:420.226667pt;}
.y26{bottom:425.026667pt;}
.yfe{bottom:425.826667pt;}
.yd8{bottom:427.106667pt;}
.yb3{bottom:432.546667pt;}
.y9d{bottom:435.746667pt;}
.y25{bottom:441.826667pt;}
.yfd{bottom:442.626667pt;}
.y133{bottom:447.266667pt;}
.yb2{bottom:449.346667pt;}
.y9c{bottom:452.866667pt;}
.yfc{bottom:459.586667pt;}
.y78{bottom:462.146667pt;}
.y132{bottom:464.226667pt;}
.y24{bottom:474.306667pt;}
.yfb{bottom:476.386667pt;}
.y9b{bottom:480.226667pt;}
.yd7{bottom:480.386667pt;}
.y131{bottom:481.026667pt;}
.yb1{bottom:483.426667pt;}
.y23{bottom:491.266667pt;}
.yfa{bottom:493.346667pt;}
.y9a{bottom:497.186667pt;}
.y130{bottom:497.826667pt;}
.yd6{bottom:498.146667pt;}
.y76{bottom:506.786667pt;}
.y22{bottom:508.066667pt;}
.yf9{bottom:510.146667pt;}
.y99{bottom:514.146667pt;}
.y12f{bottom:514.786667pt;}
.yd5{bottom:515.106667pt;}
.y21{bottom:525.666667pt;}
.yb0{bottom:525.986667pt;}
.yf8{bottom:526.946667pt;}
.y118{bottom:529.026667pt;}
.y98{bottom:530.946667pt;}
.y12e{bottom:531.586667pt;}
.yd4{bottom:531.906667pt;}
.y20{bottom:542.973333pt;}
.y117{bottom:545.853333pt;}
.y97{bottom:547.773333pt;}
.y12d{bottom:548.573333pt;}
.yd3{bottom:548.893333pt;}
.y72{bottom:550.813333pt;}
.yf7{bottom:552.733333pt;}
.yaf{bottom:552.893333pt;}
.y1f{bottom:559.773333pt;}
.y116{bottom:562.813333pt;}
.y96{bottom:564.733333pt;}
.y12c{bottom:565.373333pt;}
.yd2{bottom:567.613333pt;}
.yae{bottom:575.293333pt;}
.y1e{bottom:576.573333pt;}
.y115{bottom:579.613333pt;}
.y95{bottom:581.533333pt;}
.y12b{bottom:582.173333pt;}
.yd1{bottom:586.813333pt;}
.yf6{bottom:590.333333pt;}
.y1d{bottom:593.533333pt;}
.y94{bottom:595.293333pt;}
.y4d{bottom:595.773333pt;}
.y114{bottom:596.413333pt;}
.y12a{bottom:599.133333pt;}
.yd0{bottom:602.173333pt;}
.yf5{bottom:607.293333pt;}
.yad{bottom:610.013333pt;}
.y1c{bottom:610.333333pt;}
.y4c{bottom:612.733333pt;}
.y113{bottom:613.373333pt;}
.y93{bottom:615.293333pt;}
.y129{bottom:615.933333pt;}
.y6f{bottom:616.733333pt;}
.yf4{bottom:622.173333pt;}
.yac{bottom:626.813333pt;}
.y1b{bottom:627.293333pt;}
.y4b{bottom:629.533333pt;}
.y112{bottom:630.173333pt;}
.y92{bottom:632.093333pt;}
.y128{bottom:632.893333pt;}
.ycf{bottom:640.253333pt;}
.yab{bottom:643.773333pt;}
.y111{bottom:643.933333pt;}
.y1a{bottom:644.093333pt;}
.y4a{bottom:646.333333pt;}
.y91{bottom:649.053333pt;}
.yce{bottom:655.293333pt;}
.yf3{bottom:657.373333pt;}
.y6d{bottom:660.573333pt;}
.y19{bottom:660.893333pt;}
.y49{bottom:663.293333pt;}
.y127{bottom:666.493333pt;}
.y90{bottom:667.133333pt;}
.y18{bottom:677.853333pt;}
.yaa{bottom:678.653333pt;}
.y48{bottom:680.093333pt;}
.y126{bottom:683.453333pt;}
.yf2{bottom:685.053333pt;}
.y8f{bottom:685.213333pt;}
.ycd{bottom:689.853333pt;}
.y67{bottom:690.013333pt;}
.ya9{bottom:695.453333pt;}
.y17{bottom:695.613333pt;}
.y47{bottom:697.053333pt;}
.y125{bottom:700.253333pt;}
.y8e{bottom:703.453333pt;}
.ycc{bottom:706.653333pt;}
.yf1{bottom:708.893333pt;}
.ya8{bottom:713.533333pt;}
.y46{bottom:713.853333pt;}
.y124{bottom:717.213333pt;}
.y16{bottom:717.853333pt;}
.ycb{bottom:723.453333pt;}
.yf0{bottom:723.933333pt;}
.y45{bottom:730.653333pt;}
.y8d{bottom:732.253333pt;}
.y123{bottom:734.013333pt;}
.y15{bottom:734.653333pt;}
.ya7{bottom:739.453333pt;}
.yca{bottom:741.053333pt;}
.y44{bottom:747.613333pt;}
.y14{bottom:751.613333pt;}
.y8c{bottom:758.173333pt;}
.yef{bottom:758.493333pt;}
.yc9{bottom:758.813333pt;}
.y13{bottom:763.133333pt;}
.y43{bottom:765.213333pt;}
.y122{bottom:767.773333pt;}
.yee{bottom:776.133333pt;}
.yc8{bottom:776.613333pt;}
.y42{bottom:782.853333pt;}
.y121{bottom:784.613333pt;}
.y12{bottom:786.373333pt;}
.y66{bottom:789.413333pt;}
.yed{bottom:793.093333pt;}
.yc7{bottom:796.133333pt;}
.y11{bottom:798.533333pt;}
.y41{bottom:800.613333pt;}
.y120{bottom:801.573333pt;}
.yec{bottom:809.893333pt;}
.yc6{bottom:813.893333pt;}
.y10{bottom:815.333333pt;}
.y65{bottom:816.933333pt;}
.y40{bottom:818.373333pt;}
.yc5{bottom:828.933333pt;}
.yeb{bottom:829.413333pt;}
.yf{bottom:832.133333pt;}
.y64{bottom:833.893333pt;}
.y3f{bottom:835.333333pt;}
.yea{bottom:846.533333pt;}
.ye{bottom:849.093333pt;}
.y63{bottom:850.853333pt;}
.y3e{bottom:852.133333pt;}
.yd{bottom:865.893333pt;}
.ye9{bottom:866.053333pt;}
.y62{bottom:867.653333pt;}
.y3d{bottom:868.933333pt;}
.yc4{bottom:882.213333pt;}
.yc{bottom:882.853333pt;}
.ye8{bottom:883.013333pt;}
.y61{bottom:885.733333pt;}
.y3c{bottom:885.893333pt;}
.yb{bottom:899.973333pt;}
.yc3{bottom:900.453333pt;}
.ye7{bottom:902.533333pt;}
.y3b{bottom:902.693333pt;}
.ya{bottom:918.373333pt;}
.yc2{bottom:919.493333pt;}
.y3a{bottom:919.653333pt;}
.y7{bottom:937.253333pt;}
.y6{bottom:954.693333pt;}
.y5{bottom:973.573333pt;}
.y4{bottom:991.013333pt;}
.y3{bottom:1027.200000pt;}
.y2{bottom:1044.160000pt;}
.y1{bottom:1060.960000pt;}
.h18{height:18.240000pt;}
.he{height:28.800000pt;}
.h15{height:31.283750pt;}
.h1a{height:36.320000pt;}
.h14{height:36.431250pt;}
.h1b{height:36.480000pt;}
.h19{height:36.512000pt;}
.hb{height:36.667500pt;}
.h17{height:37.120000pt;}
.ha{height:42.084375pt;}
.hf{height:43.200000pt;}
.h11{height:43.232000pt;}
.h12{height:44.000000pt;}
.h1c{height:44.648750pt;}
.h6{height:47.109375pt;}
.h13{height:49.622500pt;}
.hc{height:57.758750pt;}
.h2{height:57.787500pt;}
.h5{height:58.563750pt;}
.h8{height:59.340000pt;}
.h9{height:60.288750pt;}
.h16{height:60.519362pt;}
.h4{height:62.812500pt;}
.h7{height:64.500000pt;}
.h10{height:65.280000pt;}
.h3{height:75.465000pt;}
.hd{height:76.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:28.480000pt;}
.wd{width:43.040000pt;}
.wb{width:46.720000pt;}
.wc{width:46.752000pt;}
.w4{width:51.872000pt;}
.wa{width:54.080000pt;}
.w7{width:55.360000pt;}
.w3{width:100.480000pt;}
.w6{width:153.786667pt;}
.w5{width:168.666667pt;}
.w9{width:619.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.874667pt;}
.x19{left:11.520000pt;}
.x24{left:18.120000pt;}
.x27{left:19.840000pt;}
.x1a{left:22.280000pt;}
.x22{left:23.520000pt;}
.x2c{left:30.120000pt;}
.x1b{left:37.480000pt;}
.x2f{left:39.200000pt;}
.x23{left:46.554667pt;}
.x1f{left:57.120000pt;}
.x1d{left:64.480000pt;}
.x26{left:68.960000pt;}
.x25{left:76.480000pt;}
.x20{left:88.480000pt;}
.x28{left:90.240000pt;}
.x50{left:92.314667pt;}
.x2b{left:94.400000pt;}
.x1{left:96.031988pt;}
.x2{left:99.071988pt;}
.x2a{left:101.920000pt;}
.x6{left:106.911988pt;}
.x29{left:109.600000pt;}
.x2e{left:113.600000pt;}
.x48{left:118.431988pt;}
.x62{left:120.031988pt;}
.x2d{left:121.120000pt;}
.x5d{left:127.231988pt;}
.x16{left:130.592000pt;}
.xd{left:138.266655pt;}
.x60{left:144.026655pt;}
.xf{left:145.146655pt;}
.x31{left:146.920000pt;}
.x4a{left:150.426655pt;}
.x30{left:154.266667pt;}
.x7{left:164.666655pt;}
.x51{left:172.986667pt;}
.x44{left:206.746655pt;}
.x52{left:220.346667pt;}
.x3b{left:228.346655pt;}
.x18{left:231.706667pt;}
.x61{left:233.786655pt;}
.x10{left:245.146655pt;}
.x4f{left:249.506655pt;}
.x15{left:251.106655pt;}
.x47{left:253.506655pt;}
.x41{left:265.346655pt;}
.x53{left:267.746667pt;}
.x4b{left:277.666655pt;}
.x1c{left:284.226667pt;}
.x4e{left:299.106655pt;}
.x13{left:300.226655pt;}
.xe{left:302.146655pt;}
.x32{left:310.786655pt;}
.x5e{left:311.746655pt;}
.x35{left:313.346655pt;}
.x33{left:315.586655pt;}
.x36{left:322.146655pt;}
.x37{left:326.626655pt;}
.x34{left:333.026655pt;}
.xc{left:335.746655pt;}
.xa{left:336.866655pt;}
.x11{left:338.306655pt;}
.x3f{left:339.746655pt;}
.x5{left:342.626655pt;}
.x9{left:345.506655pt;}
.xb{left:347.906655pt;}
.x14{left:350.466655pt;}
.x8{left:352.386655pt;}
.x38{left:353.666655pt;}
.x54{left:362.626667pt;}
.x39{left:379.746655pt;}
.x3{left:396.866655pt;}
.x55{left:409.986667pt;}
.x3e{left:419.293322pt;}
.x46{left:421.693322pt;}
.x43{left:423.133322pt;}
.x49{left:430.493322pt;}
.x3d{left:432.093322pt;}
.x4d{left:433.693322pt;}
.x3c{left:435.293322pt;}
.x42{left:438.493322pt;}
.x1e{left:453.533333pt;}
.x56{left:457.373333pt;}
.x4{left:460.893322pt;}
.x3a{left:484.413322pt;}
.x57{left:504.893333pt;}
.x12{left:520.893322pt;}
.x4c{left:534.173322pt;}
.x45{left:539.293322pt;}
.x58{left:552.253333pt;}
.x40{left:565.533322pt;}
.x59{left:599.653333pt;}
.x21{left:607.973333pt;}
.x5f{left:635.653322pt;}
.x5c{left:642.693322pt;}
.x5a{left:647.013333pt;}
.x5b{left:694.533333pt;}
}




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