
    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_30cfce00e1fb5625bf7c86ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976074;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_aedb454cfc516e91129bb42e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.166504;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_8473dddc631a4e35bf51b4e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_3ea3bbf8f519899e0d47bb65.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_95cce6093a5b66df99f27aa6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.812012;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_18012ef9a8394386eb4d742f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7c97a8f8adfa5b77fd59333b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f1dfabe0f13cb3156a52de9a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976074;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_ada11265acba0f041723d900.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_6807edb4d903cf129dd4f9f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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:-19.620000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:75.024000px;}
.lse{letter-spacing:-4.578000px;}
.ls21{letter-spacing:-1.014000px;}
.ls34{letter-spacing:-0.475200px;}
.ls37{letter-spacing:-0.457800px;}
.ls18{letter-spacing:-0.451200px;}
.ls3{letter-spacing:-0.423600px;}
.ls35{letter-spacing:-0.414600px;}
.ls28{letter-spacing:-0.372000px;}
.ls30{letter-spacing:-0.305400px;}
.ls24{letter-spacing:-0.296400px;}
.ls22{letter-spacing:-0.294600px;}
.ls3f{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.274800px;}
.lsd{letter-spacing:-0.259200px;}
.ls27{letter-spacing:-0.175800px;}
.lsc{letter-spacing:-0.172800px;}
.ls29{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.136200px;}
.lsb{letter-spacing:-0.126600px;}
.ls2f{letter-spacing:-0.109200px;}
.ls14{letter-spacing:-0.079200px;}
.ls12{letter-spacing:-0.057300px;}
.ls11{letter-spacing:-0.034560px;}
.ls10{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.005904px;}
.lsf{letter-spacing:0.008640px;}
.ls23{letter-spacing:0.020160px;}
.ls9{letter-spacing:0.048240px;}
.ls16{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.081600px;}
.ls3c{letter-spacing:0.101400px;}
.ls1d{letter-spacing:0.106200px;}
.ls26{letter-spacing:0.144000px;}
.ls31{letter-spacing:0.147600px;}
.ls7{letter-spacing:0.148200px;}
.ls2b{letter-spacing:0.151200px;}
.ls25{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.191520px;}
.ls1f{letter-spacing:0.192000px;}
.ls33{letter-spacing:0.195600px;}
.ls17{letter-spacing:0.196200px;}
.ls4{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.222600px;}
.ls41{letter-spacing:0.224400px;}
.ls3d{letter-spacing:0.232200px;}
.ls2a{letter-spacing:0.238200px;}
.ls32{letter-spacing:0.244800px;}
.ls2c{letter-spacing:0.262080px;}
.ls38{letter-spacing:0.262200px;}
.ls39{letter-spacing:0.265200px;}
.ls36{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.282000px;}
.ls5{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.296400px;}
.ls2e{letter-spacing:0.305400px;}
.ls13{letter-spacing:0.696000px;}
.ls8{letter-spacing:0.726000px;}
.ls1a{letter-spacing:0.852480px;}
.ls3e{letter-spacing:64.476000px;}
.ls6{letter-spacing:75.729600px;}
.ls19{letter-spacing:101.844000px;}
.ls40{letter-spacing:101.856000px;}
.ls1b{letter-spacing:101.937600px;}
.ls3b{letter-spacing:105.825600px;}
.ls3a{letter-spacing:105.876000px;}
.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;}
}
.ws3a{word-spacing:-113.904000px;}
.ws9{word-spacing:-49.248000px;}
.ws20{word-spacing:-42.324480px;}
.ws35{word-spacing:-40.043520px;}
.ws2e{word-spacing:-39.225168px;}
.ws38{word-spacing:-39.187368px;}
.ws3{word-spacing:-38.955168px;}
.ws27{word-spacing:-38.016000px;}
.ws1{word-spacing:-33.899040px;}
.ws39{word-spacing:-33.864408px;}
.ws7{word-spacing:-33.855720px;}
.ws37{word-spacing:-33.808920px;}
.ws1e{word-spacing:-33.758208px;}
.ws1c{word-spacing:-33.755760px;}
.ws8{word-spacing:-33.707520px;}
.ws1d{word-spacing:-33.580920px;}
.ws1b{word-spacing:-33.571320px;}
.ws34{word-spacing:-33.412920px;}
.ws1f{word-spacing:-32.693520px;}
.ws36{word-spacing:-29.703168px;}
.ws4{word-spacing:-29.652480px;}
.ws19{word-spacing:-26.661312px;}
.ws18{word-spacing:-26.621280px;}
.ws5{word-spacing:-25.560000px;}
.ws0{word-spacing:-25.344000px;}
.ws17{word-spacing:-21.617280px;}
.ws1a{word-spacing:-21.600012px;}
.ws23{word-spacing:-20.304000px;}
.ws10{word-spacing:-20.056032px;}
.wsa{word-spacing:-20.016000px;}
.ws21{word-spacing:-19.880232px;}
.ws22{word-spacing:-19.872000px;}
.ws33{word-spacing:-19.224000px;}
.ws29{word-spacing:-18.720120px;}
.ws32{word-spacing:-18.719952px;}
.ws28{word-spacing:-18.696720px;}
.ws31{word-spacing:-18.676920px;}
.ws2d{word-spacing:-18.659520px;}
.ws30{word-spacing:-18.567120px;}
.ws2c{word-spacing:-18.414720px;}
.ws2a{word-spacing:-18.305520px;}
.ws2b{word-spacing:-18.109320px;}
.ws2f{word-spacing:-17.956920px;}
.ws24{word-spacing:-17.218680px;}
.ws26{word-spacing:-17.182368px;}
.ws25{word-spacing:-17.031168px;}
.ws16{word-spacing:-16.980480px;}
.wse{word-spacing:-16.012800px;}
.wsc{word-spacing:-15.840000px;}
.ws6{word-spacing:-2.916720px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:2.023200px;}
.wsd{word-spacing:2.160000px;}
.ws14{word-spacing:2.908800px;}
.ws12{word-spacing:3.254400px;}
.wsf{word-spacing:3.888000px;}
.ws15{word-spacing:4.125600px;}
.ws13{word-spacing:5.126400px;}
.ws11{word-spacing:12.322800px;}
._8{margin-left:-3809.856000px;}
._5{margin-left:-16.596720px;}
._10{margin-left:-14.555520px;}
._e{margin-left:-13.506240px;}
._4{margin-left:-9.324000px;}
._2{margin-left:-7.560000px;}
._3{margin-left:-5.364000px;}
._1{margin-left:-3.816000px;}
._0{margin-left:-1.800000px;}
._6{width:1.251360px;}
._b{width:2.415720px;}
._a{width:3.659520px;}
._d{width:19.288800px;}
._9{width:134.706000px;}
._11{width:1649.399328px;}
._c{width:2349.828000px;}
._f{width:2361.172992px;}
._7{width:2384.388000px;}
.fc8{color:transparent;}
.fc6{color:rgb(0,118,60);}
.fc7{color:rgb(0,77,96);}
.fc5{color:rgb(0,30,38);}
.fc4{color:rgb(0,125,89);}
.fc1{color:rgb(0,40,50);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:48.240000px;}
.fs13{font-size:48.384000px;}
.fs7{font-size:54.000000px;}
.fsd{font-size:57.600000px;}
.fs15{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs14{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fsf{font-size:77.760000px;}
.fs11{font-size:77.904000px;}
.fs9{font-size:84.240000px;}
.fsa{font-size:84.384000px;}
.fs4{font-size:95.760000px;}
.fs10{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fsc{font-size:108.144000px;}
.fs6{font-size:113.760000px;}
.fs5{font-size:113.904000px;}
.fs3{font-size:120.240000px;}
.fs12{font-size:120.384000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:5.580000px;}
.y9{bottom:15.336000px;}
.y97{bottom:29.088000px;}
.yc4{bottom:39.888000px;}
.y67{bottom:40.860000px;}
.ya6{bottom:43.380000px;}
.yc5{bottom:43.812000px;}
.y47{bottom:44.064000px;}
.y96{bottom:48.888000px;}
.y68{bottom:57.492000px;}
.y37{bottom:61.740000px;}
.y66{bottom:63.648000px;}
.y3b{bottom:64.080000px;}
.y81{bottom:66.996000px;}
.y57{bottom:68.580000px;}
.y95{bottom:68.688000px;}
.y53{bottom:69.660000px;}
.y6a{bottom:69.696000px;}
.y16{bottom:70.740000px;}
.ya5{bottom:72.180000px;}
.y39{bottom:74.952000px;}
.ydb{bottom:76.500000px;}
.y23{bottom:79.452000px;}
.y65{bottom:85.428000px;}
.y80{bottom:86.796000px;}
.y1{bottom:87.552000px;}
.y94{bottom:88.488000px;}
.y41{bottom:90.972000px;}
.y3a{bottom:92.880000px;}
.yc1{bottom:95.904000px;}
.ya7{bottom:99.540000px;}
.y45{bottom:100.728000px;}
.y52{bottom:101.160000px;}
.y7f{bottom:106.632000px;}
.y64{bottom:107.028000px;}
.ya4{bottom:107.568000px;}
.y93{bottom:108.288000px;}
.y60{bottom:110.376000px;}
.y99{bottom:117.612000px;}
.y7e{bottom:126.432000px;}
.yc0{bottom:127.404000px;}
.y92{bottom:128.088000px;}
.y63{bottom:128.628000px;}
.yda{bottom:130.572000px;}
.y56{bottom:131.616000px;}
.y51{bottom:132.660000px;}
.yae{bottom:132.732000px;}
.y15{bottom:132.768000px;}
.y5f{bottom:143.316000px;}
.y9f{bottom:145.980000px;}
.y7d{bottom:146.232000px;}
.y91{bottom:147.924000px;}
.y29{bottom:149.112000px;}
.y62{bottom:150.225000px;}
.ya9{bottom:152.430000px;}
.y46{bottom:155.415000px;}
.y36{bottom:157.650000px;}
.ybf{bottom:158.910000px;}
.ye0{bottom:160.230000px;}
.yd9{bottom:162.075000px;}
.y55{bottom:163.110000px;}
.y50{bottom:164.160000px;}
.y5a{bottom:164.235000px;}
.y14{bottom:164.265000px;}
.y7c{bottom:166.035000px;}
.y90{bottom:167.730000px;}
.y61{bottom:171.870000px;}
.y9e{bottom:174.780000px;}
.y35{bottom:179.250000px;}
.y98{bottom:180.615000px;}
.yb8{bottom:180.930000px;}
.ya8{bottom:181.230000px;}
.y5{bottom:181.515000px;}
.y19{bottom:182.805000px;}
.ydf{bottom:184.170000px;}
.y7b{bottom:185.835000px;}
.y8f{bottom:187.530000px;}
.ycb{bottom:194.760000px;}
.y1f{bottom:195.045000px;}
.y4f{bottom:195.690000px;}
.y2e{bottom:195.735000px;}
.y40{bottom:197.430000px;}
.y1b{bottom:202.065000px;}
.y3d{bottom:202.860000px;}
.y7a{bottom:205.635000px;}
.y8e{bottom:207.330000px;}
.y11{bottom:210.630000px;}
.yaa{bottom:211.530000px;}
.y28{bottom:212.115000px;}
.yb7{bottom:212.430000px;}
.yd2{bottom:218.235000px;}
.ybe{bottom:221.940000px;}
.y34{bottom:223.890000px;}
.yd8{bottom:225.105000px;}
.y79{bottom:225.435000px;}
.y3f{bottom:226.260000px;}
.y8d{bottom:227.130000px;}
.y4e{bottom:227.190000px;}
.y2d{bottom:227.235000px;}
.y3c{bottom:231.660000px;}
.yde{bottom:232.230000px;}
.y5e{bottom:234.435000px;}
.y1e{bottom:236.955000px;}
.y43{bottom:241.230000px;}
.yb6{bottom:243.975000px;}
.y78{bottom:245.265000px;}
.y33{bottom:245.520000px;}
.y8c{bottom:246.930000px;}
.y9d{bottom:248.580000px;}
.y18{bottom:248.940000px;}
.yd1{bottom:249.735000px;}
.y4{bottom:251.385000px;}
.ybd{bottom:253.440000px;}
.ydd{bottom:256.170000px;}
.yd7{bottom:256.605000px;}
.yca{bottom:257.760000px;}
.y4d{bottom:258.690000px;}
.y59{bottom:258.765000px;}
.y77{bottom:265.065000px;}
.y8b{bottom:266.730000px;}
.y5d{bottom:267.375000px;}
.y27{bottom:275.145000px;}
.yb5{bottom:275.475000px;}
.y10{bottom:277.170000px;}
.y9c{bottom:277.380000px;}
.y17{bottom:280.440000px;}
.y76{bottom:284.865000px;}
.y8a{bottom:286.560000px;}
.yd6{bottom:288.105000px;}
.yc9{bottom:289.290000px;}
.y32{bottom:289.770000px;}
.y4c{bottom:290.190000px;}
.y2c{bottom:290.265000px;}
.y20{bottom:294.585000px;}
.y3{bottom:296.430000px;}
.yb9{bottom:302.295000px;}
.y75{bottom:304.665000px;}
.y89{bottom:306.360000px;}
.yb4{bottom:306.975000px;}
.y31{bottom:311.370000px;}
.y44{bottom:312.120000px;}
.yd0{bottom:312.765000px;}
.yad{bottom:313.740000px;}
.ybc{bottom:316.440000px;}
.yd5{bottom:319.605000px;}
.yc8{bottom:320.790000px;}
.y4b{bottom:321.735000px;}
.y54{bottom:321.765000px;}
.y74{bottom:324.465000px;}
.y88{bottom:326.160000px;}
.ydc{bottom:330.450000px;}
.y26{bottom:338.145000px;}
.yb3{bottom:338.475000px;}
.y42{bottom:339.765000px;}
.y13{bottom:339.990000px;}
.y2{bottom:341.430000px;}
.y73{bottom:344.265000px;}
.y87{bottom:345.960000px;}
.yac{bottom:347.610000px;}
.ya1{bottom:348.450000px;}
.yd4{bottom:351.150000px;}
.yc7{bottom:352.290000px;}
.y3e{bottom:352.980000px;}
.y30{bottom:353.055000px;}
.y4a{bottom:353.235000px;}
.y2b{bottom:353.265000px;}
.y1a{bottom:354.495000px;}
.y5c{bottom:358.455000px;}
.y72{bottom:364.110000px;}
.y86{bottom:365.760000px;}
.yb2{bottom:370.005000px;}
.y12{bottom:371.520000px;}
.y2f{bottom:375.450000px;}
.yab{bottom:376.410000px;}
.ya0{bottom:377.250000px;}
.ybb{bottom:379.470000px;}
.y71{bottom:383.910000px;}
.y49{bottom:384.735000px;}
.y2a{bottom:384.810000px;}
.y85{bottom:385.560000px;}
.y5b{bottom:391.395000px;}
.yd{bottom:392.970000px;}
.yb1{bottom:401.505000px;}
.y70{bottom:403.710000px;}
.y84{bottom:405.390000px;}
.ycf{bottom:407.310000px;}
.yc{bottom:412.770000px;}
.ya3{bottom:413.460000px;}
.yd3{bottom:414.150000px;}
.yc6{bottom:415.335000px;}
.y25{bottom:416.310000px;}
.yf{bottom:423.330000px;}
.y6f{bottom:423.510000px;}
.y1d{bottom:425.190000px;}
.ycd{bottom:426.990000px;}
.y6{bottom:432.510000px;}
.yb{bottom:432.570000px;}
.yce{bottom:438.810000px;}
.yb0{bottom:440.790000px;}
.y38{bottom:441.870000px;}
.yba{bottom:442.470000px;}
.y6e{bottom:443.310000px;}
.y83{bottom:444.990000px;}
.y1c{bottom:446.835000px;}
.y48{bottom:447.735000px;}
.y24{bottom:447.810000px;}
.y9b{bottom:450.210000px;}
.ya{bottom:452.370000px;}
.ye{bottom:454.830000px;}
.ycc{bottom:458.490000px;}
.y6d{bottom:463.110000px;}
.y82{bottom:464.790000px;}
.y22{bottom:472.890000px;}
.y9a{bottom:479.010000px;}
.ya2{bottom:479.055000px;}
.y6c{bottom:482.910000px;}
.y21{bottom:494.490000px;}
.y6b{bottom:502.740000px;}
.y69{bottom:505.050000px;}
.yaf{bottom:508.110000px;}
.yc3{bottom:509.040000px;}
.y8{bottom:509.865000px;}
.yc2{bottom:546.660000px;}
.y7{bottom:547.530000px;}
.h13{height:36.886641px;}
.h1d{height:36.996750px;}
.h8{height:41.291016px;}
.h24{height:43.246406px;}
.h9{height:50.650312px;}
.h1{height:55.054688px;}
.hc{height:55.164797px;}
.h25{height:59.439023px;}
.h26{height:59.459063px;}
.h27{height:59.569172px;}
.h12{height:60.075000px;}
.ha{height:64.413984px;}
.hb{height:64.524094px;}
.h1f{height:69.086250px;}
.h20{height:69.236437px;}
.h5{height:73.222734px;}
.h1a{height:73.332844px;}
.h10{height:75.093750px;}
.h11{height:75.243937px;}
.h22{height:75.519844px;}
.h23{height:75.648938px;}
.he{height:76.542539px;}
.h14{height:81.101250px;}
.h17{height:81.251437px;}
.h1e{height:82.582031px;}
.h1c{height:82.692141px;}
.h18{height:85.847344px;}
.h19{height:85.976438px;}
.h7{height:86.986406px;}
.h6{height:87.096516px;}
.h4{height:91.941328px;}
.h1b{height:92.051438px;}
.h15{height:99.874688px;}
.h16{height:100.024875px;}
.hd{height:107.563148px;}
.hf{height:110.109375px;}
.h3{height:110.583984px;}
.h21{height:111.910641px;}
.h2{height:147.445312px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x34{left:62.027984px;}
.x2{left:63.791984px;}
.xb{left:65.987984px;}
.x2c{left:70.811984px;}
.x13{left:95.615984px;}
.x4b{left:97.631984px;}
.x3d{left:102.671984px;}
.x25{left:104.399984px;}
.x2b{left:106.235984px;}
.x43{left:111.491984px;}
.x2d{left:113.291984px;}
.x1f{left:116.711984px;}
.x53{left:117.791984px;}
.x4d{left:123.803984px;}
.x4c{left:140.111984px;}
.x1e{left:147.131984px;}
.x9{left:148.283984px;}
.xa{left:150.989984px;}
.x3{left:189.254984px;}
.xd{left:192.419984px;}
.xc{left:194.969984px;}
.x20{left:274.604984px;}
.x6{left:285.044984px;}
.x4{left:298.184984px;}
.x5{left:314.024984px;}
.x30{left:322.664984px;}
.x50{left:328.529984px;}
.x2f{left:331.274984px;}
.x4a{left:337.604984px;}
.x40{left:343.364984px;}
.x2a{left:348.554984px;}
.x47{left:352.229984px;}
.x2e{left:360.974984px;}
.xf{left:370.109984px;}
.x7{left:375.944984px;}
.x28{left:404.849984px;}
.x32{left:450.644984px;}
.x33{left:453.449984px;}
.x29{left:469.334984px;}
.x21{left:470.984984px;}
.x1b{left:498.494984px;}
.x31{left:506.264984px;}
.x26{left:518.039984px;}
.x36{left:546.869984px;}
.x51{left:550.904984px;}
.x35{left:565.094984px;}
.xe{left:586.364984px;}
.x3a{left:599.219984px;}
.x37{left:613.409984px;}
.x54{left:623.774984px;}
.x45{left:626.474984px;}
.x49{left:627.809984px;}
.x3b{left:629.129984px;}
.x46{left:637.994984px;}
.x39{left:639.359984px;}
.x3c{left:652.889984px;}
.x38{left:656.639984px;}
.x12{left:659.339984px;}
.x23{left:662.069984px;}
.x1d{left:684.209984px;}
.x52{left:688.394984px;}
.x22{left:695.909984px;}
.x1c{left:699.584984px;}
.x14{left:708.584984px;}
.x16{left:713.009984px;}
.x17{left:714.089984px;}
.x19{left:719.489984px;}
.x4e{left:721.799984px;}
.x15{left:725.249984px;}
.x18{left:763.949984px;}
.x1a{left:769.529984px;}
.x4f{left:775.799984px;}
.x24{left:791.129984px;}
.x10{left:827.384984px;}
.x11{left:833.429984px;}
.x44{left:849.989984px;}
.x41{left:852.329984px;}
.x3f{left:862.559984px;}
.x3e{left:870.659984px;}
.x42{left:904.709984px;}
.x1{left:907.409984px;}
.x27{left:912.599984px;}
.x48{left:999.029984px;}
.x8{left:1007.669984px;}
@media print{
.v2{vertical-align:-17.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:66.688000pt;}
.lse{letter-spacing:-4.069333pt;}
.ls21{letter-spacing:-0.901333pt;}
.ls34{letter-spacing:-0.422400pt;}
.ls37{letter-spacing:-0.406933pt;}
.ls18{letter-spacing:-0.401067pt;}
.ls3{letter-spacing:-0.376533pt;}
.ls35{letter-spacing:-0.368533pt;}
.ls28{letter-spacing:-0.330667pt;}
.ls30{letter-spacing:-0.271467pt;}
.ls24{letter-spacing:-0.263467pt;}
.ls22{letter-spacing:-0.261867pt;}
.ls3f{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.244267pt;}
.lsd{letter-spacing:-0.230400pt;}
.ls27{letter-spacing:-0.156267pt;}
.lsc{letter-spacing:-0.153600pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.121067pt;}
.lsb{letter-spacing:-0.112533pt;}
.ls2f{letter-spacing:-0.097067pt;}
.ls14{letter-spacing:-0.070400pt;}
.ls12{letter-spacing:-0.050933pt;}
.ls11{letter-spacing:-0.030720pt;}
.ls10{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.005248pt;}
.lsf{letter-spacing:0.007680pt;}
.ls23{letter-spacing:0.017920pt;}
.ls9{letter-spacing:0.042880pt;}
.ls16{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.072533pt;}
.ls3c{letter-spacing:0.090133pt;}
.ls1d{letter-spacing:0.094400pt;}
.ls26{letter-spacing:0.128000pt;}
.ls31{letter-spacing:0.131200pt;}
.ls7{letter-spacing:0.131733pt;}
.ls2b{letter-spacing:0.134400pt;}
.ls25{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.170240pt;}
.ls1f{letter-spacing:0.170667pt;}
.ls33{letter-spacing:0.173867pt;}
.ls17{letter-spacing:0.174400pt;}
.ls4{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.197867pt;}
.ls41{letter-spacing:0.199467pt;}
.ls3d{letter-spacing:0.206400pt;}
.ls2a{letter-spacing:0.211733pt;}
.ls32{letter-spacing:0.217600pt;}
.ls2c{letter-spacing:0.232960pt;}
.ls38{letter-spacing:0.233067pt;}
.ls39{letter-spacing:0.235733pt;}
.ls36{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.250667pt;}
.ls5{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.263467pt;}
.ls2e{letter-spacing:0.271467pt;}
.ls13{letter-spacing:0.618667pt;}
.ls8{letter-spacing:0.645333pt;}
.ls1a{letter-spacing:0.757760pt;}
.ls3e{letter-spacing:57.312000pt;}
.ls6{letter-spacing:67.315200pt;}
.ls19{letter-spacing:90.528000pt;}
.ls40{letter-spacing:90.538667pt;}
.ls1b{letter-spacing:90.611200pt;}
.ls3b{letter-spacing:94.067200pt;}
.ls3a{letter-spacing:94.112000pt;}
.ws3a{word-spacing:-101.248000pt;}
.ws9{word-spacing:-43.776000pt;}
.ws20{word-spacing:-37.621760pt;}
.ws35{word-spacing:-35.594240pt;}
.ws2e{word-spacing:-34.866816pt;}
.ws38{word-spacing:-34.833216pt;}
.ws3{word-spacing:-34.626816pt;}
.ws27{word-spacing:-33.792000pt;}
.ws1{word-spacing:-30.132480pt;}
.ws39{word-spacing:-30.101696pt;}
.ws7{word-spacing:-30.093973pt;}
.ws37{word-spacing:-30.052373pt;}
.ws1e{word-spacing:-30.007296pt;}
.ws1c{word-spacing:-30.005120pt;}
.ws8{word-spacing:-29.962240pt;}
.ws1d{word-spacing:-29.849707pt;}
.ws1b{word-spacing:-29.841173pt;}
.ws34{word-spacing:-29.700373pt;}
.ws1f{word-spacing:-29.060907pt;}
.ws36{word-spacing:-26.402816pt;}
.ws4{word-spacing:-26.357760pt;}
.ws19{word-spacing:-23.698944pt;}
.ws18{word-spacing:-23.663360pt;}
.ws5{word-spacing:-22.720000pt;}
.ws0{word-spacing:-22.528000pt;}
.ws17{word-spacing:-19.215360pt;}
.ws1a{word-spacing:-19.200011pt;}
.ws23{word-spacing:-18.048000pt;}
.ws10{word-spacing:-17.827584pt;}
.wsa{word-spacing:-17.792000pt;}
.ws21{word-spacing:-17.671317pt;}
.ws22{word-spacing:-17.664000pt;}
.ws33{word-spacing:-17.088000pt;}
.ws29{word-spacing:-16.640107pt;}
.ws32{word-spacing:-16.639957pt;}
.ws28{word-spacing:-16.619307pt;}
.ws31{word-spacing:-16.601707pt;}
.ws2d{word-spacing:-16.586240pt;}
.ws30{word-spacing:-16.504107pt;}
.ws2c{word-spacing:-16.368640pt;}
.ws2a{word-spacing:-16.271573pt;}
.ws2b{word-spacing:-16.097173pt;}
.ws2f{word-spacing:-15.961707pt;}
.ws24{word-spacing:-15.305493pt;}
.ws26{word-spacing:-15.273216pt;}
.ws25{word-spacing:-15.138816pt;}
.ws16{word-spacing:-15.093760pt;}
.wse{word-spacing:-14.233600pt;}
.wsc{word-spacing:-14.080000pt;}
.ws6{word-spacing:-2.592640pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:1.798400pt;}
.wsd{word-spacing:1.920000pt;}
.ws14{word-spacing:2.585600pt;}
.ws12{word-spacing:2.892800pt;}
.wsf{word-spacing:3.456000pt;}
.ws15{word-spacing:3.667200pt;}
.ws13{word-spacing:4.556800pt;}
.ws11{word-spacing:10.953600pt;}
._8{margin-left:-3386.538667pt;}
._5{margin-left:-14.752640pt;}
._10{margin-left:-12.938240pt;}
._e{margin-left:-12.005547pt;}
._4{margin-left:-8.288000pt;}
._2{margin-left:-6.720000pt;}
._3{margin-left:-4.768000pt;}
._1{margin-left:-3.392000pt;}
._0{margin-left:-1.600000pt;}
._6{width:1.112320pt;}
._b{width:2.147307pt;}
._a{width:3.252907pt;}
._d{width:17.145600pt;}
._9{width:119.738667pt;}
._11{width:1466.132736pt;}
._c{width:2088.736000pt;}
._f{width:2098.820437pt;}
._7{width:2119.456000pt;}
.fse{font-size:42.880000pt;}
.fs13{font-size:43.008000pt;}
.fs7{font-size:48.000000pt;}
.fsd{font-size:51.200000pt;}
.fs15{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs14{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fsf{font-size:69.120000pt;}
.fs11{font-size:69.248000pt;}
.fs9{font-size:74.880000pt;}
.fsa{font-size:75.008000pt;}
.fs4{font-size:85.120000pt;}
.fs10{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fsc{font-size:96.128000pt;}
.fs6{font-size:101.120000pt;}
.fs5{font-size:101.248000pt;}
.fs3{font-size:106.880000pt;}
.fs12{font-size:107.008000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:4.960000pt;}
.y9{bottom:13.632000pt;}
.y97{bottom:25.856000pt;}
.yc4{bottom:35.456000pt;}
.y67{bottom:36.320000pt;}
.ya6{bottom:38.560000pt;}
.yc5{bottom:38.944000pt;}
.y47{bottom:39.168000pt;}
.y96{bottom:43.456000pt;}
.y68{bottom:51.104000pt;}
.y37{bottom:54.880000pt;}
.y66{bottom:56.576000pt;}
.y3b{bottom:56.960000pt;}
.y81{bottom:59.552000pt;}
.y57{bottom:60.960000pt;}
.y95{bottom:61.056000pt;}
.y53{bottom:61.920000pt;}
.y6a{bottom:61.952000pt;}
.y16{bottom:62.880000pt;}
.ya5{bottom:64.160000pt;}
.y39{bottom:66.624000pt;}
.ydb{bottom:68.000000pt;}
.y23{bottom:70.624000pt;}
.y65{bottom:75.936000pt;}
.y80{bottom:77.152000pt;}
.y1{bottom:77.824000pt;}
.y94{bottom:78.656000pt;}
.y41{bottom:80.864000pt;}
.y3a{bottom:82.560000pt;}
.yc1{bottom:85.248000pt;}
.ya7{bottom:88.480000pt;}
.y45{bottom:89.536000pt;}
.y52{bottom:89.920000pt;}
.y7f{bottom:94.784000pt;}
.y64{bottom:95.136000pt;}
.ya4{bottom:95.616000pt;}
.y93{bottom:96.256000pt;}
.y60{bottom:98.112000pt;}
.y99{bottom:104.544000pt;}
.y7e{bottom:112.384000pt;}
.yc0{bottom:113.248000pt;}
.y92{bottom:113.856000pt;}
.y63{bottom:114.336000pt;}
.yda{bottom:116.064000pt;}
.y56{bottom:116.992000pt;}
.y51{bottom:117.920000pt;}
.yae{bottom:117.984000pt;}
.y15{bottom:118.016000pt;}
.y5f{bottom:127.392000pt;}
.y9f{bottom:129.760000pt;}
.y7d{bottom:129.984000pt;}
.y91{bottom:131.488000pt;}
.y29{bottom:132.544000pt;}
.y62{bottom:133.533333pt;}
.ya9{bottom:135.493333pt;}
.y46{bottom:138.146667pt;}
.y36{bottom:140.133333pt;}
.ybf{bottom:141.253333pt;}
.ye0{bottom:142.426667pt;}
.yd9{bottom:144.066667pt;}
.y55{bottom:144.986667pt;}
.y50{bottom:145.920000pt;}
.y5a{bottom:145.986667pt;}
.y14{bottom:146.013333pt;}
.y7c{bottom:147.586667pt;}
.y90{bottom:149.093333pt;}
.y61{bottom:152.773333pt;}
.y9e{bottom:155.360000pt;}
.y35{bottom:159.333333pt;}
.y98{bottom:160.546667pt;}
.yb8{bottom:160.826667pt;}
.ya8{bottom:161.093333pt;}
.y5{bottom:161.346667pt;}
.y19{bottom:162.493333pt;}
.ydf{bottom:163.706667pt;}
.y7b{bottom:165.186667pt;}
.y8f{bottom:166.693333pt;}
.ycb{bottom:173.120000pt;}
.y1f{bottom:173.373333pt;}
.y4f{bottom:173.946667pt;}
.y2e{bottom:173.986667pt;}
.y40{bottom:175.493333pt;}
.y1b{bottom:179.613333pt;}
.y3d{bottom:180.320000pt;}
.y7a{bottom:182.786667pt;}
.y8e{bottom:184.293333pt;}
.y11{bottom:187.226667pt;}
.yaa{bottom:188.026667pt;}
.y28{bottom:188.546667pt;}
.yb7{bottom:188.826667pt;}
.yd2{bottom:193.986667pt;}
.ybe{bottom:197.280000pt;}
.y34{bottom:199.013333pt;}
.yd8{bottom:200.093333pt;}
.y79{bottom:200.386667pt;}
.y3f{bottom:201.120000pt;}
.y8d{bottom:201.893333pt;}
.y4e{bottom:201.946667pt;}
.y2d{bottom:201.986667pt;}
.y3c{bottom:205.920000pt;}
.yde{bottom:206.426667pt;}
.y5e{bottom:208.386667pt;}
.y1e{bottom:210.626667pt;}
.y43{bottom:214.426667pt;}
.yb6{bottom:216.866667pt;}
.y78{bottom:218.013333pt;}
.y33{bottom:218.240000pt;}
.y8c{bottom:219.493333pt;}
.y9d{bottom:220.960000pt;}
.y18{bottom:221.280000pt;}
.yd1{bottom:221.986667pt;}
.y4{bottom:223.453333pt;}
.ybd{bottom:225.280000pt;}
.ydd{bottom:227.706667pt;}
.yd7{bottom:228.093333pt;}
.yca{bottom:229.120000pt;}
.y4d{bottom:229.946667pt;}
.y59{bottom:230.013333pt;}
.y77{bottom:235.613333pt;}
.y8b{bottom:237.093333pt;}
.y5d{bottom:237.666667pt;}
.y27{bottom:244.573333pt;}
.yb5{bottom:244.866667pt;}
.y10{bottom:246.373333pt;}
.y9c{bottom:246.560000pt;}
.y17{bottom:249.280000pt;}
.y76{bottom:253.213333pt;}
.y8a{bottom:254.720000pt;}
.yd6{bottom:256.093333pt;}
.yc9{bottom:257.146667pt;}
.y32{bottom:257.573333pt;}
.y4c{bottom:257.946667pt;}
.y2c{bottom:258.013333pt;}
.y20{bottom:261.853333pt;}
.y3{bottom:263.493333pt;}
.yb9{bottom:268.706667pt;}
.y75{bottom:270.813333pt;}
.y89{bottom:272.320000pt;}
.yb4{bottom:272.866667pt;}
.y31{bottom:276.773333pt;}
.y44{bottom:277.440000pt;}
.yd0{bottom:278.013333pt;}
.yad{bottom:278.880000pt;}
.ybc{bottom:281.280000pt;}
.yd5{bottom:284.093333pt;}
.yc8{bottom:285.146667pt;}
.y4b{bottom:285.986667pt;}
.y54{bottom:286.013333pt;}
.y74{bottom:288.413333pt;}
.y88{bottom:289.920000pt;}
.ydc{bottom:293.733333pt;}
.y26{bottom:300.573333pt;}
.yb3{bottom:300.866667pt;}
.y42{bottom:302.013333pt;}
.y13{bottom:302.213333pt;}
.y2{bottom:303.493333pt;}
.y73{bottom:306.013333pt;}
.y87{bottom:307.520000pt;}
.yac{bottom:308.986667pt;}
.ya1{bottom:309.733333pt;}
.yd4{bottom:312.133333pt;}
.yc7{bottom:313.146667pt;}
.y3e{bottom:313.760000pt;}
.y30{bottom:313.826667pt;}
.y4a{bottom:313.986667pt;}
.y2b{bottom:314.013333pt;}
.y1a{bottom:315.106667pt;}
.y5c{bottom:318.626667pt;}
.y72{bottom:323.653333pt;}
.y86{bottom:325.120000pt;}
.yb2{bottom:328.893333pt;}
.y12{bottom:330.240000pt;}
.y2f{bottom:333.733333pt;}
.yab{bottom:334.586667pt;}
.ya0{bottom:335.333333pt;}
.ybb{bottom:337.306667pt;}
.y71{bottom:341.253333pt;}
.y49{bottom:341.986667pt;}
.y2a{bottom:342.053333pt;}
.y85{bottom:342.720000pt;}
.y5b{bottom:347.906667pt;}
.yd{bottom:349.306667pt;}
.yb1{bottom:356.893333pt;}
.y70{bottom:358.853333pt;}
.y84{bottom:360.346667pt;}
.ycf{bottom:362.053333pt;}
.yc{bottom:366.906667pt;}
.ya3{bottom:367.520000pt;}
.yd3{bottom:368.133333pt;}
.yc6{bottom:369.186667pt;}
.y25{bottom:370.053333pt;}
.yf{bottom:376.293333pt;}
.y6f{bottom:376.453333pt;}
.y1d{bottom:377.946667pt;}
.ycd{bottom:379.546667pt;}
.y6{bottom:384.453333pt;}
.yb{bottom:384.506667pt;}
.yce{bottom:390.053333pt;}
.yb0{bottom:391.813333pt;}
.y38{bottom:392.773333pt;}
.yba{bottom:393.306667pt;}
.y6e{bottom:394.053333pt;}
.y83{bottom:395.546667pt;}
.y1c{bottom:397.186667pt;}
.y48{bottom:397.986667pt;}
.y24{bottom:398.053333pt;}
.y9b{bottom:400.186667pt;}
.ya{bottom:402.106667pt;}
.ye{bottom:404.293333pt;}
.ycc{bottom:407.546667pt;}
.y6d{bottom:411.653333pt;}
.y82{bottom:413.146667pt;}
.y22{bottom:420.346667pt;}
.y9a{bottom:425.786667pt;}
.ya2{bottom:425.826667pt;}
.y6c{bottom:429.253333pt;}
.y21{bottom:439.546667pt;}
.y6b{bottom:446.880000pt;}
.y69{bottom:448.933333pt;}
.yaf{bottom:451.653333pt;}
.yc3{bottom:452.480000pt;}
.y8{bottom:453.213333pt;}
.yc2{bottom:485.920000pt;}
.y7{bottom:486.693333pt;}
.h13{height:32.788125pt;}
.h1d{height:32.886000pt;}
.h8{height:36.703125pt;}
.h24{height:38.441250pt;}
.h9{height:45.022500pt;}
.h1{height:48.937500pt;}
.hc{height:49.035375pt;}
.h25{height:52.834688pt;}
.h26{height:52.852500pt;}
.h27{height:52.950375pt;}
.h12{height:53.400000pt;}
.ha{height:57.256875pt;}
.hb{height:57.354750pt;}
.h1f{height:61.410000pt;}
.h20{height:61.543500pt;}
.h5{height:65.086875pt;}
.h1a{height:65.184750pt;}
.h10{height:66.750000pt;}
.h11{height:66.883500pt;}
.h22{height:67.128750pt;}
.h23{height:67.243500pt;}
.he{height:68.037813pt;}
.h14{height:72.090000pt;}
.h17{height:72.223500pt;}
.h1e{height:73.406250pt;}
.h1c{height:73.504125pt;}
.h18{height:76.308750pt;}
.h19{height:76.423500pt;}
.h7{height:77.321250pt;}
.h6{height:77.419125pt;}
.h4{height:81.725625pt;}
.h1b{height:81.823500pt;}
.h15{height:88.777500pt;}
.h16{height:88.911000pt;}
.hd{height:95.611688pt;}
.hf{height:97.875000pt;}
.h3{height:98.296875pt;}
.h21{height:99.476125pt;}
.h2{height:131.062500pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x34{left:55.135986pt;}
.x2{left:56.703986pt;}
.xb{left:58.655986pt;}
.x2c{left:62.943986pt;}
.x13{left:84.991986pt;}
.x4b{left:86.783986pt;}
.x3d{left:91.263986pt;}
.x25{left:92.799986pt;}
.x2b{left:94.431986pt;}
.x43{left:99.103986pt;}
.x2d{left:100.703986pt;}
.x1f{left:103.743986pt;}
.x53{left:104.703986pt;}
.x4d{left:110.047986pt;}
.x4c{left:124.543986pt;}
.x1e{left:130.783986pt;}
.x9{left:131.807986pt;}
.xa{left:134.213319pt;}
.x3{left:168.226652pt;}
.xd{left:171.039986pt;}
.xc{left:173.306652pt;}
.x20{left:244.093319pt;}
.x6{left:253.373319pt;}
.x4{left:265.053319pt;}
.x5{left:279.133319pt;}
.x30{left:286.813319pt;}
.x50{left:292.026652pt;}
.x2f{left:294.466652pt;}
.x4a{left:300.093319pt;}
.x40{left:305.213319pt;}
.x2a{left:309.826652pt;}
.x47{left:313.093319pt;}
.x2e{left:320.866652pt;}
.xf{left:328.986652pt;}
.x7{left:334.173319pt;}
.x28{left:359.866652pt;}
.x32{left:400.573319pt;}
.x33{left:403.066652pt;}
.x29{left:417.186652pt;}
.x21{left:418.653319pt;}
.x1b{left:443.106652pt;}
.x31{left:450.013319pt;}
.x26{left:460.479986pt;}
.x36{left:486.106652pt;}
.x51{left:489.693319pt;}
.x35{left:502.306652pt;}
.xe{left:521.213319pt;}
.x3a{left:532.639986pt;}
.x37{left:545.253319pt;}
.x54{left:554.466652pt;}
.x45{left:556.866652pt;}
.x49{left:558.053319pt;}
.x3b{left:559.226652pt;}
.x46{left:567.106652pt;}
.x39{left:568.319986pt;}
.x3c{left:580.346652pt;}
.x38{left:583.679986pt;}
.x12{left:586.079986pt;}
.x23{left:588.506652pt;}
.x1d{left:608.186652pt;}
.x52{left:611.906652pt;}
.x22{left:618.586652pt;}
.x1c{left:621.853319pt;}
.x14{left:629.853319pt;}
.x16{left:633.786652pt;}
.x17{left:634.746652pt;}
.x19{left:639.546652pt;}
.x4e{left:641.599986pt;}
.x15{left:644.666652pt;}
.x18{left:679.066652pt;}
.x1a{left:684.026652pt;}
.x4f{left:689.599986pt;}
.x24{left:703.226652pt;}
.x10{left:735.453319pt;}
.x11{left:740.826652pt;}
.x44{left:755.546652pt;}
.x41{left:757.626652pt;}
.x3f{left:766.719986pt;}
.x3e{left:773.919986pt;}
.x42{left:804.186652pt;}
.x1{left:806.586652pt;}
.x27{left:811.199986pt;}
.x48{left:888.026652pt;}
.x8{left:895.706652pt;}
}




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